blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
df908f3fcffeec3df8a89ad7168e75d1d0ad6922 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/CH2/EX2.2/exa2_2.sce | 6f359877ae6fc0e1abfabed489fb3f513b6662ed | [] | 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 | 158 | sce | exa2_2.sce | //Example 2-2//
//Binary to Decimal Conversion//
a=bin2dec('1011101001')
//Decimal equivalent of the binary number//
disp(a)
//answer in decimal form//
|
74db4c660d2efbdb5e50d6bc7497704f9f283651 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1739/CH6/EX6.12/Exa6_12.sce | 04470e90662465dac718aaef90ee1b7db729e1dd | [] | 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 | 425 | sce | Exa6_12.sce | //Exa 6.12
clc;
clear;
close;
//given data :
format('v',5);
ETAext=1.5;//in %
I=25;//in mA
V=4;//in Volt
F=0.8;//Transmission factor at crystal-air interface
nm=3.6;//refractive index of GaAs;unitless
n=1;//refractive index of air ;unitless
disp("ETAext=Pint*100*F*n^2/(4*P*nm^2)");
//P=V*I
Pint=(ETAext*4*V*I*10^-3*nm^2)/(F*100);//in watts
disp(Pint*1000,"Optical power generated in the device in mWatts : "); |
7ed2f5257434d58f07c2361af8bddff6b9784270 | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH5/EX5.3/Example_5_3.sci | c7947ba01485d35e81738418e36a1542c572a67c | [] | 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 | 932 | sci | Example_5_3.sci | clear;
clc;
printf("\t Example 5.3 ");
//Assumption: Resistance force F on an isolated sphere is given by Stoke's law:F = 3*%pi(meu)d*u
C = poly([0],'C');
x=roots(-4.8*C+(1-C));
printf("\n concentration is:%.3f",x);
//terminal falling velocity u can be calculated by force balance
//u = d^2*g/(18*meu)*(ps-p)
function[u]=terminal_velocity()
d = 10^(-4); //diameter is in meters
g = 9.81; //acceleration due to gravity is in m/sec^2
meu = 10^(-3); //viscosity is in N.s/m^2
ps = 2600; //density is in kg/m^3
p = 1000; //density is in kg/m^3
u = (d^2)*g*(ps-p)/(18*meu);
funcprot(0);
endfunction
function[si]=si_max()
u=terminal_velocity()
printf("\n The terminal falling velocity is %.5f m/sec",u);
si=u*x*(1-x)^(4.8);
funcprot(0);
endfunction
si = si_max();
printf("\nThe maximum value is %f*10^(-4) m^3/m^2sec",si*10^4)
|
278280b7501ae8bc181337b755c4a736654a6851 | 592b1b7dfaefd62d755737ac7b6e81f44f7786ba | /10a Program for Uniform distribution..sce | aadfe56fd6fd100ebca6e3f307d379759a05716d | [] | no_license | muitnet/Numerical-and-Statistical-Methods-sem2-fybscit-mumbai-university | 841143b72d52229c68bcd0666ed10c844c02f507 | 2d1c638b881f3e418a982baa02632effd03ae5fe | refs/heads/master | 2021-01-19T07:23:05.463429 | 2017-04-07T11:54:24 | 2017-04-07T11:54:24 | 87,540,712 | 6 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | 10a Program for Uniform distribution..sce | function [expfre]=unifit(x, obsfre)
n=length(x)-1;
N=sum(obsfre);
xbar=sum(x*obsfre')/N;
prob(1)=1/(n+1);
for r=0:n
prob(r+1)=1/(n+1);
end
expfre=round(prob*N);
printf('expected frequencies\n');
printf('------------------------------\n');
return(expfre);
endfunction
x=[0,1,2,3,4,5];
obsfre=[12,50,100,80,45,5];
unifit(x,obsfre)
|
3938cc11a547aa4f59cfec5754ae53c8587eb325 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH12/EX12.2/Ch12Ex2.sci | 43d681d7e18d8c3823e9296732bb62b5f7f53156 | [] | 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 | 433 | sci | Ch12Ex2.sci | // Scilab Code Ex12.2 Rate of fission of U-235: Pg:246 (2008)
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
E1 = 32e+06; // Energy released per second, J
E2 = 200e+06; // Energy released per fission, J
N = E1/E2; // Number of atoms undergoing fission per second
printf("\nThe number of atoms undergoing fission per second = %1.0e", N/e);
// Result
// The number of atoms undergoing fission per second = 1e+018 |
94cdde177d8bafb3e2ce81256e61e7383c802de1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH32/EX32.3/Ex32_3.sce | 54d07d800a7ea03986c57f72e0740835bbe3d3f1 | [] | 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 | 359 | sce | Ex32_3.sce | //Example 32.3
m_prod=94.919388+139.921610+3*(1.008665);//Total mass of products (Sr 95, Xe 140, n)(u)
delta_m=238.050784-m_prod;//Mass lost (u)
E=delta_m*931.5;//Energy released (MeV)
//E=delta_m*(931.5MeV/c^2)/u*c^2
printf('Energy released = %0.1f MeV',E)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
a6e37fb010db39261558214ddcb18b34a91dcd8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH7/EX7.5/Ex7_5.sce | 2ad5a181b7f6eb0d189c24decdaf16cbf8ae6c58 | [] | 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 | 469 | sce | Ex7_5.sce | //Example 7_5
clc();
clear;
//To find the angular acceleration and angular velocity of one wheel
vtf=20 //units in meters/sec
r=0.4 //units in meters
wf=vtf/r //units in rad/sec
vf=20 //units in meters/sec
v0=0 //units in meters/sec^2
t=9 //units in sec
a=(vf-v0)/t //units in meters/sec^2
alpha=a/r //units in rad/sec^2
printf("Angular accelertion is a=%.2f meters/sec^2\n",a)
printf("Angular velocity is alpha=%.2f rad/sec^2",alpha)
|
be6645d70eafa97d299b155e0aacf86ad93293d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH14/EX14.3/example14_3.sce | 343f921cf4c1976fe8cc4ba91a0f7187d5ee1666 | [] | 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,595 | sce | example14_3.sce | //Chapter 14
//Example 14_3
//Page 360
clear;clc;
r=0.1;
x=0.15;
Vb=200+%i*0;
i1=100;
pf2=0.8;
i2=100;
pf1=0.6;
z=r*2+%i*x*2;
Zam=z/2;
Zmb=z/2;
printf("Impedance of distributor/km = %.2f+j(%.2f) ohm \n\n", real(z), imag(z));
printf("Impedance of section AC = Zac = %.2f+j(%.2f) ohm \n", real(Zam), imag(Zam));
printf("Impedance of section CB = Zcb = %.2f+j(%.2f) ohm \n\n\n", real(Zmb), imag(Zmb));
//part 1
I2=i2*(pf2-%i*sin(acos(pf2)));
printf("(i)Load current at point B = %.2f+j(%.2f) A \n", real(I2), imag(I2));
Imb=I2;
printf("Current in section MB = %.2f+j(%.2f) A \n", real(Imb), imag(Imb));
Vmb=Imb*Zmb;
printf("Voltage drop in section MB = %.2f+j(%.2f) A \n", real(Vmb), imag(Vmb));
Vm=Vb+Vmb;
printf("Voltage at point M = %.2f+j(%.2f) \n", real(Vm), imag(Vm));
printf("Magnitude of Vm = %.2f V \n", abs(Vm));
alpha=atan(imag(Vm)/abs(Vm));
printf("Phase angle between Vm and Vb = %.2f degrees \n\n\n", alpha*180/%pi);
//part 2
phi1=acos(pf1)-alpha;
printf("Phase angle between I1 and Vb = %.2f degrees \n", phi1*180/%pi);
I1=i1*(cos(phi1)-%i*sin(phi1));
printf("(ii)Load current at point M = %.2f+j(%.2f) A \n", real(I1), imag(I1));
Iam=I1+I2;
printf("Current in section AM = %.2f+j(%.2f) A \n", real(Iam), imag(Iam));
Vam=Iam*Zam;
printf("Voltage drop in section AM = %.2f+j(%.2f) A \n", real(Vam), imag(Vam));
Va=Vm+Vam;
printf("Sending end voltage = %.2f+j(%.2f) \n", real(Va), imag(Va));
printf("Magnitude of sending end voltage = %.2f V \n\n\n", abs(Va));
pd=atan(imag(Va)/abs(Va));
printf("(iii)The phase difference between Va and Vb = %.2f degrees \n\n", pd*180/%pi);
|
a4a8566797e7baa7c1a6da4f61f507accac5206d | 952f05b9b2293792559cddaf7ee402ccc22b0b8d | /icclim/test-cases/test-cases-opendap/dtr-index-03.tst | 96a83f76919c40be78c675ae03d6e975bf5611f0 | [
"Apache-2.0"
] | permissive | ptrgast/icclim | a5c768bde9f5ce0562ef8250262ca1d70213c461 | 1c43cc7fc5d779f04fb72361a80bde3b232a9580 | refs/heads/master | 2020-05-18T18:44:15.153378 | 2020-02-04T07:46:40 | 2020-02-04T07:46:40 | 184,594,303 | 0 | 0 | NOASSERTION | 2020-02-04T07:46:41 | 2019-05-02T14:19:16 | Python | UTF-8 | Scilab | false | false | 354 | tst | dtr-index-03.tst | [DTR-index-test-via-opendap] # DTR index
indice_name: DTR
in_files: [['http://opendap.knmi.nl/knmi/thredds/dodsC/IS-ENES/TESTSETS/tasmax_day_EC-EARTH_rcp26_r8i1p1_20060101-20251231.nc'], ['http://opendap.knmi.nl/knmi/thredds/dodsC/IS-ENES/TESTSETS/tasmin_day_EC-EARTH_rcp26_r8i1p1_20060101-20251231.nc']]
dt1: 2022-01-01
dt2: 2022-12-31
slice_mode: JJA
|
5a954545d365f6679e99aa096454bdbae4940e04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH12/EX12.12/example_12_12.sce | 91bebd074ca3eaf9ba709e098420e40ec43ae67c | [] | 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 | 107 | sce | example_12_12.sce | s=%s;
sys1=syslin('c',k*(0.05*s+1)*(1+s)/((10*s+1)*(s-1)))
nyquist(sys1)
show_margins(sys1,'nyquist')
|
226cc438258491cac07d6ee5a1cbb4105c52d3e0 | fd53e4d4cb8520b84e44cf3729508c4b479fac3a | /1547.1/Tests/SS_mid.tst | a57abefe2a98ee668c0a4831eb5608943a349465 | [] | no_license | FREA-ENT/svp_1547.1 | ea1b7feb92671c3f5a3bbb503f39f76cc655fe59 | 728cde3b52bfd65db1eeecb05d62003d25aff9dc | refs/heads/master | 2020-05-23T21:28:02.374723 | 2019-05-07T22:24:02 | 2019-05-07T22:24:02 | 186,955,692 | 0 | 0 | null | 2019-05-16T05:13:03 | 2019-05-16T05:13:03 | null | UTF-8 | Scilab | false | false | 1,317 | tst | SS_mid.tst | <scriptConfig name="SS_mid" script="SA11_ramp_rate">
<params>
<param name="rr.n_r" type="int">1</param>
<param name="eut.rr_up_min" type="float">1.0</param>
<param name="eut.i_low" type="float">1.0</param>
<param name="eut.rr_msa" type="int">5</param>
<param name="eut.t_dwell" type="float">5.0</param>
<param name="eut.i_rated" type="float">10.0</param>
<param name="rr.t_reconnect" type="float">60.0</param>
<param name="eut.rr_up_max" type="float">100.0</param>
<param name="eut.v_nom" type="float">120.0</param>
<param name="rr.v_trip" type="float">120.0</param>
<param name="pvsim.mode" type="string">Disabled</param>
<param name="das_das_wf.mode" type="string">Disabled</param>
<param name="gridsim.mode" type="string">Disabled</param>
<param name="loadsim.mode" type="string">Disabled</param>
<param name="der.mode" type="string">Disabled</param>
<param name="rr.rr_max" type="string">Disabled</param>
<param name="das_das_rms.mode" type="string">Disabled</param>
<param name="gridsim.auto_config" type="string">Disabled</param>
<param name="rr.rr_min" type="string">Disabled</param>
<param name="rr.soft_start" type="string">Enabled</param>
<param name="rr.rr_mid" type="string">Enabled</param>
</params>
</scriptConfig>
|
535b5b91abedaa2a4a4780c9cab58e7be5ce0b39 | a45f93853fdb67523e71e3e7fb88c4298eae1ef7 | /Screens/Display Options Screen.tst | e68a168603d435d451771e2e5099f9f566ee5ca3 | [] | no_license | voarsh/Disney-Treasure-Planet-Battle-at-Procyon | 68192cbfdf8b823bc8399e3ea1e62d4976b74aed | 99cbbc70701ef6e8f9d95eba1052635de992910f | refs/heads/master | 2020-04-16T01:44:03.761947 | 2016-06-08T10:25:05 | 2016-06-08T10:25:05 | 38,745,932 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,520 | tst | Display Options Screen.tst | ScreenName String 'Display Options Screen'
ImplName String 'NULL SCREEN'
ElementChunkArray Int 26
ScreenElementType Int 0
ImplName String 'Front End Screen Backdrop'
TabIndex Int 1
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 113, 800, 507 ) # left,top,right,bottom
ScreenElementType Int 1
ImplName String 'Open Prev Arrow Button'
TabIndex Int 5
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 349, 500, 451, 602 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_CANCEL'
Color Colour( 255.000000, 255.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Model Scrollbar Button'
TabIndex Int 6
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 320, 640, 355 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Effect Scrollbar Button'
TabIndex Int 7
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 230, 640, 265 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Texture Scrollbar Button'
TabIndex Int 8
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 275, 640, 310 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Video Modes Toggle Button'
TabIndex Int 9
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 185, 640, 220 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Render Background Toggle Button'
TabIndex Int 10
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 410, 640, 445 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Restore Default Settings Button'
TabIndex Int 42
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 69, 530, 279, 574 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RESTORE_DEFAULTS'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 2
ImplName String 'Detail Model Label'
TabIndex Int 20
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 324, 320, 356 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
ScreenElementType Int 2
ImplName String 'Detail Texture Label'
TabIndex Int 22
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 280, 320, 314 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
ScreenElementType Int 2
ImplName String 'Detail Effect Label'
TabIndex Int 24
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 236, 320, 261 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
ScreenElementType Int 1
ImplName String 'Apply Render Device Changes'
TabIndex Int 42
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 656, 180, 785, 224 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT02_APPLY_CHANGES'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Terrain Toggle Button'
TabIndex Int 43
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 365, 640, 400 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_CREW'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Render Flag Button'
TabIndex Int 46
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 360, 455, 640, 490 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_SHIPS'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Open Next Screen Button'
TabIndex Int 49
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 521, 530, 731, 574 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT01_ADVANCED_OPTIONS'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 50
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 4, 126, 800, 165 ) # left,top,right,bottom
Font String 'BlackChancery22'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_DISPLAY_OPTIONS'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 51
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 0, 127, 800, 161 ) # left,top,right,bottom
Font String 'BlackChancery22'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_DISPLAY_OPTIONS'
Color Colour( 1.000000, 0.796100, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 52
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 193, 322, 220 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDERER_AND_BIT_DEPTH'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 53
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 3, 191, 320, 215 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDERER_AND_BIT_DEPTH'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 54
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 371, 322, 410 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT02_TERRAIN_VISIBILITY'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 55
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 369, 320, 393 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT02_TERRAIN_VISIBILITY'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 56
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 417, 322, 453 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDER_BACKGROUND'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 57
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 415, 320, 441 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDER_BACKGROUND'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 58
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 463, 322, 514 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT02_FLAG_WAVING'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 59
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 461, 320, 500 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT02_FLAG_WAVING'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'FrontEnd Animated Backdrop'
TabIndex Int 1
Selectable Bool False
Enabled Bool False
ReferenceArea Rect( 0, 113, 800, 507 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1 |
e09adb4c32dcf2ebf0d28b0f6800e2d22b1af726 | 72d93987c9ed2c03635870ef77825b5c30cf4b06 | /Normal Form.sce | 19244d538590d5e94d99ec3797ac8e735415922f | [] | no_license | Abilityguy/Linear-Algebra-Scilab | cc6026f7de6e373d99bd1afba2ae34e6eec24fc4 | 82458ca42a076192cbf38dc076b1d3b50d6609af | refs/heads/master | 2020-04-26T05:37:37.432560 | 2019-06-19T14:15:14 | 2019-06-19T14:15:14 | 173,340,616 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | Normal Form.sce | //Program to find the solution to a system of equations through the normal equation of a matrix
A = input("Enter matrix A: ")
b = input("Enter matrix b: ")
//normal equation - A'.A.x = A'.b
//Solving for x = inv(A'.A)A'.b
disp("X: ")
disp(inv(A'*A)*A'*b)
|
eb818e4b6675a6c98181e857bc1ee571faa952dd | 77dace712a0cfc3334d8447c1eab838505efcd67 | /L3_TSI_Photoshop/Photoshop/app.sce | a507e918fc9a4950e75d692fb6bbf94e0ccf60a4 | [] | no_license | dianaheddadji/Project | 2a9a3e40278b68e1aa3e73114ae08d730ed09a67 | ac689ca896ad0137c6df17efb353bcc88e314778 | refs/heads/master | 2020-04-25T07:15:31.450109 | 2020-01-07T19:16:06 | 2020-01-07T19:16:06 | 172,608,699 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,846 | sce | app.sce | //Configuration
formats = ["JPG/JPEG format","*.jp*g";"*.png","PNG format"];
window = figure();
window.background = color(50, 50, 50);
window.figure_name = gettext("MyPhotoshop Cc");
handle.Axesl = newaxes();
handle.Axesl.margins = [0 0 0 0];
handle.Axesl.axes_bounds = [0.05, 0.2, 0.66, 0.5];
handle.Axesl.background = color(30, 30, 30);
handle.Axesl.auto_clear = 'on';
//Création d'un module pour charger l'image via chargement_image
h1= uimenu("parent",window,"label",gettext("Charger une image"),"callback","chargement_image(formats)");
//Cacher les menu
delmenu(window.figure_id,gettext("&File"));
delmenu(window.figure_id,gettext("&Tools"));
delmenu(window.figure_id,gettext("&Edit"));
delmenu(window.figure_id,gettext("&?"));
delmenu(window.figure_id,gettext("off"));
//Textes
//Photoshop CC
photoshopCc = uicontrol(window,"style","text");
photoshopCc.string = "Photoshop CC";
photoshopCc.fontweight = "bold";
photoshopCc.position = [160 370 150 25];
photoshopCc.BackgroundColor = [0.20 0.20 0.20];
photoshopCc.ForegroundColor = [1 0 0.4];
photoshopCc.HorizontalAlignment = "center";
//Filtres
filtres = uicontrol(window,"style","text");
filtres.string = "Filtres";
filtres.fontweight = "bold";
filtres.position = [448 320 130 25];
filtres.BackgroundColor = [0.12 0.12 0.12];
filtres.ForegroundColor = [1 0 0.4];
filtres.HorizontalAlignment = "center";
//La Filtre Box
filtres_box=uicontrol(window,"style","listbox");
filtres_box.BackgroundColor=[0.12 0.12 0.12];
filtres_box.ForegroundColor=[0.25 0.25 0.25];
filtres_box.Position = [448 170 130 150];
filtres_box.String = ["Canny","Bonus","Horizontal","Vertical","Horivertical","Gaussien","N/B","Negatif","Prewitt","Sobel","Rouge","Vert","Bleu", "Cyan","Jaune","Violet"];
filtres_box.Value = 1;
//Les bouttons
//quitter
quitter = uicontrol(window,"style","pushbutton");
quitter.String = "Quitter";
quitter.BackgroundColor=[0.12 0.12 0.12];
quitter.ForegroundColor=[1 0 0.4];
quitter.Position = [28 75 130 50];
quitter.Callback = "delete(window)";
//cleaner
cleaner = uicontrol(window,"style","pushbutton");
cleaner.String = "Cleaner";
cleaner.BackgroundColor=[0.12 0.12 0.12];
cleaner.ForegroundColor=[1 0 0.4];
cleaner.Position = [168 75 130 50];
cleaner.Callback = "[current_ns_image] = cleaner_picture(handle);";
//sauvegarder
sauvegarder = uicontrol(window,"style","pushbutton");
sauvegarder.String = "Sauvegarder";
sauvegarder.BackgroundColor=[0.12 0.12 0.12];
sauvegarder.ForegroundColor=[1 0 0.4];
sauvegarder.Position = [308 75 130 50];
sauvegarder.Callback = "sauvegarder_image(formats,handle)";
//etaler
etaler = uicontrol(window,"style","pushbutton");
etaler.String = "Étaler";
etaler.BackgroundColor=[0.12 0.12 0.12];
etaler.ForegroundColor=[1 0 0.4];
etaler.Position = [448 75 130 50];
etaler.Callback = "[current_s_image] = etaler_filtre(filtres_box,handle)";
|
4f1979a8fecccbd5aec2a97d07f4a9d4bf57fce0 | 69147dbbf89bfbceb8875e0e1545e513ebfaf1be | /TopArtists_7.tst | b6419b6021cd55f0081b9e018e863e65832be881 | [] | no_license | Cbro/Oracle-scripts | 225e7121f3e8b6d77d9da786ddbad58502486989 | 97769548e7a2794d6cc75a1ac46821f58d347dec | refs/heads/master | 2020-12-24T14:36:20.643782 | 2011-05-07T18:55:51 | 2011-05-07T18:55:51 | 667,071 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 930 | tst | TopArtists_7.tst | PL/SQL Developer Test script 3.0
36
-- Created on 11/04/2008 by MKAUL
declare
-- Local variables here
i integer;
vTrackID track.id%type;
vRankNum INTEGER;
begin
for x in (
-- Test statements here
select x.artist_id,
x.rank_num
from
(
select /*+ FIRST_ROWS */ v.artist_id artist_id,
row_number() over ( order by v.play_count desc ) rank_num
from artist a,
service_artist sa,
v_artist_count_forever v
where a.id = v.artist_id
and sa.service_id = v.service_id
and sa.artist_id = a.id
and sa.service_id = :sid
and (a.first_release_date is null or a.first_release_date < sysdate)
) x
where x.rank_num <= :topCount;
) loop
dbms_output.put_line('Rel ID : '|| x.artist_id );
dbms_output.put_line('Rank : '|| x.rank_num );
end loop;
end;
2
sid
1
50
3
topCount
1
20
3
0
|
86018c23ccb82e9e5e8e3eb532da54b8321fbaba | b387571bdd041f3b3d606bee94a06f97e87cab34 | /Calculo Numerico/Scilab/Triangulação/Metodo Gaus&Jordan.sce | 288d2e57de79ae31a2f4695f7890d7bae64d3a3b | [] | no_license | GuilhermeGueds/Faculdade | 6704a9ce91f7cc7874e3fbaefa28555076fab7d7 | 6f84829ea031f80eb04ea2acf78af834d25cd4f9 | refs/heads/master | 2020-03-13T17:52:39.274865 | 2018-08-31T17:00:27 | 2018-08-31T17:00:27 | 131,225,712 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 872 | sce | Metodo Gaus&Jordan.sce |
clear
clc
Ab = input("Entre com a matriz : ");
disp("entrada")
disp(Ab)
n = size(Ab,1)
// Determina a triangulação Gaus&Jordan
for j = n: -1:1
for i = (j-1):-1:1
//verifica se a diogonal não possui 0
if (Ab(j,j)== 0) then
y=Ab(1,:)
Ab(n,:)=Ab(n-1,:)
Ab(n-1,:)=y
end
m(i,j) = Ab(i,j)/Ab(j,j);
Ab(i,:) = m(i,j) * Ab(j,:) - Ab(i,:)
disp(Ab)
end
end
disp("Metodo Gaus&Jordan")
disp(Ab)
//Faz divisao de A e B para encontrar resultado
for i = 1:n
for j = 1:n
A(i,j)= Ab(i,j)
B(i,1)= Ab(i,(n+1))
end
end
disp("Metodo Gaus&Jordan")
disp(Ab)
//Faz divisao de A e B para encontrar resultado
for i = 1:n
for j = 1:n
A(i,j)= Ab(i,j)
B(i,1)= Ab(i,(n+1))
end
end
disp("Resultado final")
C= rref([A,B]);disp(C)
|
174d5362a9b373863fcdb874602b4bcb9a4d4701 | efa427de3490f3bb884d8ac0a7d78829ec7990f9 | /square.sce | d1435a2007af1a40109969bb12f05e655a52c0b6 | [] | no_license | letyrobueno/Scilab | a47648473aa681556561d5cea20659d143e4f492 | 2f23623dccea89a3ab2db12ec1f615186f785aa4 | refs/heads/master | 2020-09-01T19:00:30.804237 | 2019-11-01T17:45:22 | 2019-11-01T17:45:22 | 219,031,973 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 199 | sce | square.sce | x = input("Give the square side length: ")
area = x^2
perimeter = 4*x
diagonal = sqrt(2)*x
printf("The area is %2.2f\n The perimeter is %2.2f\n The diagonal is %2.2f",area,perimeter,diagonal)
|
b9480681a7f812c172ee2fbbdee3d148fd981dff | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH7/EX7.23/ex23.sce | 0108a3efc2ba968878f5742c83d13d094dd3bb84 | [] | 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 | 408 | sce | ex23.sce | //ques23
//Reducing the Pressure Setting to Reduce Cost
clear
clc
Preduced=885.6;//reduced pressure
P1=85.6;//initial pressure in kPa
P2=985.6;//final pressure in kPa
n=1.4;
f=1-((Preduced/P1)^((n-1)/n)-1)/((P2/P1)^(1-1/n)-1);//The fraction of energy saved as a result of reducing the pressure setting
Cc=12000;//current cost in $/yr
Csaving=Cc*f;
printf('Cost saving = $%.0f/yr \n',Csaving);
|
208f957456fba07d8c13ef2daa4416c9338073c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH39/EX39.9/Example39_9.sce | b86bfc686b3fab0ec5def982360abd9fbbbc8710 | [] | 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 | 867 | sce | Example39_9.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART IV : UTILIZATION AND TRACTION
// CHAPTER 1: INDUSTRIAL APPLICATIONS OF ELECTRIC MOTORS
// EXAMPLE : 1.9 :
// Page number 686-687
clear ; clc ; close ; // Clear the work space and console
// Given data
I_f1 = 25.0 // Current without diverter(A)
N_1 = 500.0 // Speed of dc series motor without diverter(rpm)
// Calculations
I_a2 = ((3.0/2)**0.5*I_f1**2*3/2)**0.5 // Field current with diverter(A)
N_2 = I_f1*N_1*3/(2*I_a2) // Speed with diverter(rpm)
// Results
disp("PART IV - EXAMPLE : 1.9 : SOLUTION :-")
printf("\nSpeed when field winding is shunted by a diverter, N_2 = %.f rpm", N_2)
printf("\nCurrent when field winding is shunted by a diverter, I_a2 = %.1f A", I_a2)
|
c925a24b2cc080b23d12acab3dc31ad48556f8c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH11/EX11.12/11_12.sce | 4a40a2a624a752db37f4f9c8d0831dda66359586 | [] | 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 | 852 | sce | 11_12.sce | //chapter 11
//example 11.12
//page 338
clear all;
clc ;
//given
Rl=50;//load resistance in kohm
Vcc=12;//supply voltage V
f1=150;//lower cutoff frequency Hz
Vp=50;////op voltage mV
hfe=70;
ip=Vp/Rl;
Ie2=2;//Ie2>ip
Ve2=5;
R4=Ve2/Ie2;
printf("\nR4= %.1f kohm ,use standard value 2.2 kohm",R4);R4=2.2;
Ic2=2;
Ic1=Ic2;
VR1=Vcc-(Ve2+0.7);
R1=VR1/Ic1;
printf("\nR1= %.2f kohm,use standard value 3.3 kohm ",R1);R1=3.3;
Ib1=1000*Ic1/hfe;
R23=1000*(Ve2-0.7)/Ib1;
R2=47;
R3=R23-R2;
hfe1=100;hie1=1;
Zi=1000*(R2*hie1)/(R2+hie1);
XC1=Zi/10;
C1=10^6/(2*%pi*f1*XC1);
printf("\nC1=%.1f microF,use standard value 15 microF",C1);
XC2=floor(R3/100);
C2=10^3/(2*%pi*f1*XC2);
printf("\nC2=%.2f microF,use standard value 1.2 microF",(C2));
XC3=Rl;
C3=10^6/(2*%pi*f1*XC3);
printf("\nC3=%.1f microF,use standard value 22 microF",(C3));
|
997c2b4ba227e610e20d572e850eb76c8404b325 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH3/EX3.16/Chapter3_Example16.sce | ac816744601fbae04796d0011b98b06218947c96 | [] | 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 | 487 | sce | Chapter3_Example16.sce | clc
clear
//INPUT DATA
//continous flow calorimeter
r=120/60;//rate of flow of water in gm/sec
T1=27.30;//temperature at initial in deg.C
T2=33.75;//temperature at final in deg.C
v=12.64;//potential drop in volts
s=1;//specific heat of water in kj/kg-K
i=4.35;//current through the heating element in amp
//CALCULATIONS
J=(v*i)/(r*s*(T2-T1));//the mechanical equivalent of heat in joule/calorie
//OUTPUT
mprintf('the mechanical equivalent of heat is %3.2f j/cal',J)
|
afab24c74666dde2fa48e6fbaf3bb5ae921883ba | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH2/EX2.45/Ex2_45.sce | df58a22228afefa3af831a5d0c242cdab6934a3c | [] | 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 | 265 | sce | Ex2_45.sce | errcatch(-1,"stop");mode(2);//Caption:Find the no load speed
//Exa:2.45
;
;
V=220;//in volts
R_a=2.5;//in ohms
N_1=859;//in rpm
I_ao=0;
I_a=8;//in amperes
E_b1=V-I_a*R_a;
E_bo=V-I_ao*R_a;
N_o=N_1*E_bo/E_b1;
disp(N_o,'No Load Speed (in RPM)=')
exit();
|
355b7c8931442149e206ffc7547181f828c6b2fa | 60acf54211c534dae12601541518c7f3692c9899 | /Linux/scripts/hs.search.kate.sce | 915dcef727c80a2fefdeaae8d29d1461b0eecf68 | [
"MIT"
] | permissive | webappcreations/dotLinux | 67159a42510e60d18f059f7c9ac955eee1c3e4f2 | aac20d0ed2ff28b2701febbe49a0152cb94f50da | refs/heads/master | 2021-05-09T10:35:02.938723 | 2018-03-19T16:14:37 | 2018-03-19T16:14:37 | 118,967,881 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 559 | sce | hs.search.kate.sce | 400 kate historysave_7.txt
409 sudo kate /opt/lampp/etc/extra/httpd-vhosts.conf
400 kate historysave_7.txt
409 sudo kate /opt/lampp/etc/extra/httpd-vhosts.conf
400 kate historysave_7.txt
409 sudo kate /opt/lampp/etc/extra/httpd-vhosts.conf
407 sudo kate /opt/lampp/etc/httpd.conf
409 sudo kate /opt/lampp/etc/httpd.conf
407 sudo kate /opt/lampp/etc/httpd.conf
409 sudo kate /opt/lampp/etc/httpd.conf
405 kate apt.conf.d/
406 sudo kate apt.conf.d/
240 sudo kate /etc/apt/apt.conf
403 sudo kate /etc/apt/apt.conf
|
c304a3b6fad281fb2e9f1cdce30130b4ebdde909 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH3/EX3.1/Exa3_1.sce | 2909faac5e5eb03aade1eea9d8504ec6366c4b01 | [] | 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 | 602 | sce | Exa3_1.sce | //Exa 3.2
clc;
clear;
close;
//Given data
ib=10;//in uA
ic=1;//in mA
ic=ic*10^3;//in uA
vi=0.02;//in Volt
RC=5;//in kohm
RL=10;//in kohm
//Part (i)
Ai=-ic/ib;//unitless
Beta=Ai;//unitless
disp(Ai,"Current gain : ");
//Part (ii)
Rie=vi/(ib*10^-6);//in Ohm
disp(Rie*10^-3,"Input impedence in kohm :");
//Part (iii)
Rac=RC*RL/(RC+RL);//in kohm
disp(Rac,"AC load in kohm : ");
//Part (iv)
Av=-Rac*10^3*Beta/Rie;//unitless
disp(Av,"Voltage gain : ");
//Part (v)
PowerGain=Av*Ai;//unitless
disp(PowerGain,"Power Gain is : ");
//Note : Ans of Av and Power gain is wrong in the book. |
8af87b449b68a2f4fbfab1a53c42a52dba3756ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH14/EX14.10/C14P10.sce | 9313024fc9ef1fa166fbe4ad6f6a6875d9a45e61 | [] | 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,880 | sce | C14P10.sce | clear
clc
//to find energy,period,semimajor axis of B before and after burn
// GIVEN:
//refer to figure 14-19 from page no. 315
//mass of spacecraft
m = 3250//in Kg
//height above Earth
h = 270//in Km
//radius of earth
RE = 6370//in Km
//mass of earth
ME = 5.98e24//in Kg
//decrease in velocity after burn
d = 0.95//in percent
//Gravitational constant
G = 6.67e-11//in N.m^2/Kg^2
// SOLUTION:
//before burn
//semimajor axis before burn
a = RE+h//in Km
//energy before burn
E = -(G*m*ME)/(2*a*(1000))//in J
//period before burn
//applying Krpler's law of peroids
T = ((4*(%pi^2)*((a*1000)^3))/(G*ME))^(1/2)//in seconds
//kinetic energy before burn
K = -(E)//in J
//velocity before burn
v = sqrt((2*K)/m)//in m/s
//after burn
//velocity after burn
v_dash = (1-(d*0.01))*v//in m/s
//kinetic energy after burn
K_dash = 1/2*(m)*(v_dash)^2//in J
//potential energy after burn
U_dash = -(K)//in J
//total energy after burn
E_dash = K_dash+(2*U_dash)//in J
//semimajor axis after burn
a_dash = -((G*m*ME)/(2*E_dash))//in meters
//period after burn
T_dash = ((4*(%pi^2)*((a_dash)^3))/(G*ME))^(1/2)//in seconds
T = nearfloat("pred",5381)
E_dash = nearfloat("succ",-9.94e10)
T_dash = nearfloat("succ",5240)
printf ("\n\n Semimajor axis before burn a = \n\n %4i Km",a)
printf ("\n\n Energy before burn E = \n\n %.2e J",E)
printf ("\n\n Period before burn T = \n\n %4i s",T)
printf ("\n\n Kinetic energy before burn K = \n\n %.2e J",K)
printf ("\n\n Velocity before burn v = \n\n %.2e m/s",v)
printf ("\n\n Velocity after burn v_dash = \n\n %.2e m/s",v_dash)
printf ("\n\n Kinetic energy after burn K_dash = \n\n %.2e J",K_dash)
printf ("\n\n Total energy after burn E_dash = \n\n %.2e J",E_dash)
printf ("\n\n Semimajor axis after burn a_dash = \n\n %.2e m",a_dash)
printf ("\n\n Period after burn T_dash = \n\n %4i s",T_dash)
|
6c99a004c04a8b0094ae54e52a97edb0c808dda0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH13/EX13.2/Ex13_2.sce | 051a9aaa2f39ce7c4c433dbc13706d46a90aa9d5 | [] | 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,151 | sce | Ex13_2.sce |
clear//
//
//Variable Declaration
E_st=200 //Youngs Modulus of Steel in GPa
sigma_st_yp=290 //Yielding Stress in MPa
E_al=70 //Youngs Modulus of Aluminium in GPa
sigma_al_yp=330 //Yielding Stresss of Aluminium in MPa
A_st=900 //Area of steel rod in mm^2
A_al=600 //Area of Aluminium rod in mm^2
L_st=350 //Length of the steel rod in mm
L_al=250 //Length of the aluminium rod in mm
//Calculations
//Limit Load
P_st=sigma_st_yp*A_st*10**-3 //Load in limiting condition in kN
P_al=sigma_al_yp*A_al*10**-3 //Load in limiting condition in kN
P_L=P_st+2*P_al //Total Loading in kN
//Elastic Unloading
//Solving for Pst and Pal using matri approach
A=([[1,2;L_st*(E_st*A_st)**-1,-L_al*(E_al*A_al)**-1]])
B=([P_L;0])
C=linsolve(A,B) //Loading in kN
//Residual Stresses
P_res_st=-C(1)-P_st //Residual Load in kN
P_res_al=-C(2)-P_al //Residual Load in kN
sigma_st=P_res_st/A_st //residual Stress in Steel in MPa
sigma_al=P_res_al/A_al //residual Stress in Aluminium in MPa
//Result
printf("\n The Residual stresses are as follows")
printf("\n Sigma_st= %0.1f MPa and sigma_al= %0.1f MPa",sigma_st*10**3,sigma_al*10**3)
|
85fbb989fbc1d27a1eb61e1e972b2b14c7ae17a0 | b846ffaa3e3e3311c37e95270bbe930fdf91a314 | /matricMultiplication.sci | c81fed6f5220042dd2d6999cae0ac39d0b442363 | [] | no_license | rahulgarg28071998/mathlab-practical-scilab | 100a15f74f94942d32a8be8125b4020a7e265ede | a83cc6b817fcca9268a59583eab372109552f2f8 | refs/heads/master | 2020-03-11T15:22:05.161498 | 2018-04-18T15:19:11 | 2018-04-18T15:19:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 665 | sci | matricMultiplication.sci | clc
clear
m=input("input the number of rows")
n=input("input the number of column")
disp("Enter elements of first matrix:")
for i=1:m
for j=1:n
A(i,j)=input("")
end
end
disp(A);
p=input("input the number of rows")
q=input("input the number of column")
disp("Enter elements of second matrix:")
for i=1:p
for j=1:q
B(i,j)=input("")
end
end
disp(B);
if n==p then
for i=1:m
for j=1:q C(i,j)=0
for k=1:p
C(i,j)=C(i,j)+(A(i,k)*B(k,j))
end
end
end
disp(C);;;
else
disp("matrix multiplication not possible") ;;
end
|
f745bf33bd2805b778f2864e5887a718e0a0611d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH1/EX1.a.17/Example_a_1_17.sce | 77d92666bb1f82766b2c696243fbf890e98bbaae | [] | 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 | 441 | sce | Example_a_1_17.sce | //Example 1_17 page no:34
clc;
Va=1;//here Va is assumed to be one hence it will canceled out in calculation
R=1;//here R is assumed to be one it will be assigned correct value on the flow of calculation
V10=Va*(10/15);
Vr=Va*R/(20+R);
R=(10/15)*(20*3);//here 3 is included to show that R is canceled in calculation
//hence 3R-2R=R for simplicity we introduced 3 in calculation
disp(R,"the resistance R in the circuit is(in ohm)");
|
46fa53335bd5080defad028f53ba5a46d19c66e7 | 3c04496d3626c5310982c0ede8e76f7cfa27f198 | /EigenfaceCore.sci | 552111404bf724275bb25219f0791ac6541e9c0c | [] | no_license | manojgudi/pca_in_scilab | 1b649a165e96f1c60e9ce2acd20f50797fe33c1d | 6879df90ba9243c173807e6dba200ff900fdfa7e | HEAD | 2016-09-05T17:01:36.757345 | 2012-10-07T17:07:59 | 2012-10-07T17:07:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,710 | sci | EigenfaceCore.sci | function [m, A, Eigenfaces] = EigenfaceCore(T)
// Use Principle Component Analysis (PCA) to determine the most
// discriminating features between images of faces.
//
// Description: This function gets a 2D matrix, containing all training image vectors
// and returns 3 outputs which are extracted from training database.
//
// Argument: T - A 2D matrix, containing all 1D image vectors.
// Suppose all P images in the training database
// have the same size of MxN. So the length of 1D
// column vectors is M*N and 'T' will be a MNxP 2D matrix.
//
// Returns: m - (M*Nx1) Mean of the training database
// Eigenfaces - (M*Nx(P-1)) Eigen vectors of the covariance matrix of the training database
// A - (M*NxP) Matrix of centered image vectors
//
//
// Calculating the mean image
S=uint16(T);
for i=1:36000
su=sum(S(i,:));
m(i)=su/80;// Computing the average face image m = (1/P)*sum(Tj's) (j = 1 : P)
end
Train_Number = size(T,2);
// Calculating the deviation of each image from mean image
A = [];
for i = 1 : Train_Number
temp = uint16(T(:,i)) - m; // Computing the difference image for each image in the training set Ai = Ti - m
A = [A temp]; // Merging all centered images
end
// Snapshot method of Eigenface methos
// We know from linear algebra theory that for a PxQ matrix, the maximum
// number of non-zero eigenvalues that the matrix can have is min(P-1,Q-1).
// Since the number of training images (P) is usually less than the number
// of pixels (M*N), the most non-zero eigenvalues that can be found are equal
// to P-1. So we can calculate eigenvalues of A'*A (a PxP matrix) instead of
// A*A' (a M*NxM*N matrix). It is clear that the dimensions of A*A' is much
// larger that A'*A. So the dimensionality will decrease.
L = A'*A; // L is the surrogate of covariance matrix C=A*A'.
[R,diagevals]=spec(L) // Diagonal elements of D are the eigenvalues for both L=A'*A and C=A*A'.
// Sorting and eliminating eigenvalues
// All eigenvalues of matrix L are sorted and those who are less than a
// specified threshold, are eliminated. So the number of non-zero
// eigenvectors may be less than (P-1).
L_eig_vec = [];
for i = 1 : size(V,2)
if( S(i,i)>1 )
L_eig_vec = [L_eig_vec V(:,i)];
end
end
// Calculating the eigenvectors of covariance matrix 'C'
// Eigenvectors of covariance matrix C (or so-called "Eigenfaces")
// can be recovered from L's eiegnvectors.
Eigenfaces = A * L_eig_vec; // A: centered image vectors
endfunction |
418f68e7a499a7842c11c7a8bfa1205d78725c1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3547/CH9/EX9.7/EX9_7.sce | f7b4827e9e387a14bc273ec31cc20d5b0578ee3f | [] | 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 | 578 | sce | EX9_7.sce | // Example 9.7
// Calculation of the (a) the total data rate and (b) the spectral efficiency.
// Page no 413
clc;
clear;
close;
//Given data
M=16;
np=2; // No of polarization
nc=24; // No of channels
bs=28*10^9; // Symbol rate per polarization
// (a) The total data rate
B=bs*log2(M);
T=B*np*nc;
// (b) The spectral efficiency
N=bs*nc;
s=T/N;
//Displaying results in the command window
printf("\n The total data rate = %0.3f Tb/s ",T*10^-12);
printf("\n The spectral efficiency = %0.1f b/s/Hz ",s);
|
8687d58c9c162efca648ee75cb006eb2de38bfac | 9733f939913e963ec556f5f89248dacb75801a8d | /scilab/divbzeroconstruction.sci | 1cf11218ba8f1bb87d2070b1cb9fb971ff65588d | [] | no_license | mikeg64/solar | 4546c0182bb7f7cde21bc7f102e659ff7a488ad8 | 46ab043441a4f2523daa7cfaf5008c959f61d7d6 | refs/heads/master | 2023-08-22T04:29:33.974673 | 2023-08-19T09:19:40 | 2023-08-19T09:19:40 | 17,345,330 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 691 | sci | divbzeroconstruction.sci | m=.05; //m=%pi.*a.^2.*I/c ring current I radius a
len=0.1;
b0=1.0;
wid=1.0;
shift=0.5;
x=-1.0:0.05:1.0;
y=0.1:0.1:2.0;
[X1,Y1]=meshgrid(x-shift,y);
[X2,Y2]=meshgrid(x+shift,y);
//bx1=-0.1*(X1./sqrt(X1.^2))-2.0.*b0*X1.*exp(-wid.*(X1.^2)./len);
bx1=-2.0.*b0*X1.*exp(-wid.*(X1.^2)./len);
by1=+b0.*exp(-wid.*(X1.^2)./len);
//bx2=0.1*(X2./sqrt(X2.^2))+2.0.*b0*X2.*exp(-wid.*(X2.^2)./len);
bx2=+2.0.*b0*X2.*exp(-wid.*(X2.^2)./len);
by2=-b0.*exp(-wid.*(X2.^2)./len);
bx=bx1+bx2;
by=by1+by2;
bmag=sqrt(bx.^2+by.^2);
contour(x,y,bmag',[0.005 0.006 0.007 0.008 0.009 0.01 0.05 0.1 0.15 0.2 0.25 0.3 .35 .4 .45 2]);
//hold on
//quiver(X(8:20,:),Y(8:20,:),bx(8:20,:),by(8:20,:),3);
//hold off
|
ff7ce341b57141b9f0cdf910e85367c049046768 | d145a801b8f64afaf9dd0330b93936ca3343cbdb | /test_suite/bigsfls.tst | 711fced6574e23dd82bf3fe5f761f7fa2c927b65 | [] | no_license | ChemCryst/crystals | 0fff27ff8576b7c7199e1eaa671407d50132b98e | 8087c68d7f05b903473cee1cb131c06f819dc660 | refs/heads/master | 2023-08-17T16:36:03.675124 | 2023-06-26T10:54:29 | 2023-06-26T10:54:29 | 152,602,292 | 2 | 0 | null | 2023-06-26T10:54:30 | 2018-10-11T14:09:45 | Roff | UTF-8 | Scilab | false | false | 171,736 | tst | bigsfls.tst | \ set time slow
\rele print CROUTPUT:
\
\SET CACH ON
\ THIS TAKES SEVERAL HOURS ON A VAX 11/750
\ IT TAKES SEVERAL SECONDS ON A PENTIUM III
\
\TITLE LARGE TEST JOB FOR CYBER
\SET TIME SLOW
\DISK
EXTEND SIZE=0
END
\LIST 1
REAL a = 14.5430 b = 15.6710 c = 18.7790
CONTINUE alpha = 69.2700 beta = 68.3900 gamma = 78.4800
END
\SPACE GROUP
SYMBOL P -1
END
\LIST 3
READ NSCATTER = 7
SCATT IR -2.066 7.990 27.3049 1.59279 16.7296 8.86553 15.6115
CONT 0.417916 5.83377 45.0011 11.4722
SCATT AU -2.688 8.798 16.8819 0.461100 18.5913 8.62160 25.5582
CONT 1.48260 5.86000 36.3956 12.0658
SCATT P 0.090 0.095 6.43450 1.90670 4.17910 27.1570 1.78000
CONT 0.526000 1.49080 68.1645 1.11490
SCATT F 0.014 0.010 3.53920 10.2825 2.64120 4.29440 1.51700
CONT 0.261500 1.02430 26.1476 0.277600
SCATT O 0.008 0.006 3.04850 13.2771 2.28680 5.70110 1.54630
CONT 0.323900 0.867000 32.9089 0.250800
SCATT C 0.002 0.002 2.31000 20.8439 1.02000 10.2075 1.58860
CONT 0.568700 0.865000 51.6512 0.215600
SCATT H 0.0 0.0 0.493002 10.5109 0.322912 26.1257 0.140191
CONT 3.14236 0.040810 57.7997 0.003038
END
\LIST 4
END
\LIST 16
PLANAR C(111) UNTIL C(116)
DISTANCES 1.395 , 0.02= C(111) TO C(112) , C(112) TO C(113)
CONT C(113) TO C(114) , C(114) TO C(115) , C(115) TO C(116) , C(116) TO C(111)
ANGLES 120.0 , 3.0= C(116) TO C(111) TO C(112) , C(111) TO C(112) TO C(113)
CONT C(112) TO C(113) TO C(114) , C(113) TO C(114) TO C(115)
CONT C(114) TO C(115) TO C(116) , C(115) TO C(116) TO C(111)
PLANAR C(121) UNTIL C(126)
DISTANCES 1.395 , 0.02= C(121) TO C(122) , C(122) TO C(123)
CONT C(123) TO C(124) , C(124) TO C(125) , C(125) TO C(126) , C(126) TO C(121)
ANGLES 120.0 , 3.0= C(126) TO C(121) TO C(122) , C(121) TO C(122) TO C(123)
CONT C(122) TO C(123) TO C(124) , C(123) TO C(124) TO C(125)
CONT C(124) TO C(125) TO C(126) , C(125) TO C(126) TO C(121)
PLANAR C(131) UNTIL C(136)
DISTANCES 1.395 , 0.02= C(131) TO C(132) , C(132) TO C(133)
CONT C(133) TO C(134) , C(134) TO C(135) , C(135) TO C(136) , C(136) TO C(131)
ANGLES 120.0 , 3.0= C(136) TO C(131) TO C(132) , C(131) TO C(132) TO C(133)
CONT C(132) TO C(133) TO C(134) , C(133) TO C(134) TO C(135)
CONT C(134) TO C(135) TO C(136) , C(135) TO C(136) TO C(131)
PLANAR C(211) UNTIL C(216)
DISTANCES 1.395 , 0.02= C(211) TO C(212) , C(212) TO C(213)
CONT C(213) TO C(214) , C(214) TO C(215) , C(215) TO C(216) , C(216) TO C(211)
ANGLES 120.0 , 3.0= C(216) TO C(211) TO C(212) , C(211) TO C(212) TO C(213)
CONT C(212) TO C(213) TO C(214) , C(213) TO C(214) TO C(215)
CONT C(214) TO C(215) TO C(216) , C(215) TO C(216) TO C(211)
PLANAR C(221) UNTIL C(226)
DISTANCES 1.395 , 0.02= C(221) TO C(222) , C(222) TO C(223)
CONT C(223) TO C(224) , C(224) TO C(225) , C(225) TO C(226) , C(226) TO C(221)
ANGLES 120.0 , 3.0= C(226) TO C(221) TO C(222) , C(221) TO C(222) TO C(223)
CONT C(222) TO C(223) TO C(224) , C(223) TO C(224) TO C(225)
CONT C(224) TO C(225) TO C(226) , C(225) TO C(226) TO C(221)
PLANAR C(231) UNTIL C(236)
DISTANCES 1.395 , 0.02= C(231) TO C(232) , C(232) TO C(233)
CONT C(233) TO C(234) , C(234) TO C(235) , C(235) TO C(236) , C(236) TO C(231)
ANGLES 120.0 , 3.0= C(236) TO C(231) TO C(232) , C(231) TO C(232) TO C(233)
CONT C(232) TO C(233) TO C(234) , C(233) TO C(234) TO C(235)
CONT C(234) TO C(235) TO C(236) , C(235) TO C(236) TO C(231)
PLANAR C(311) UNTIL C(316)
DISTANCES 1.395 , 0.02= C(311) TO C(312) , C(312) TO C(313)
CONT C(313) TO C(314) , C(314) TO C(315) , C(315) TO C(316) , C(316) TO C(311)
ANGLES 120.0 , 3.0= C(316) TO C(311) TO C(312) , C(311) TO C(312) TO C(313)
CONT C(312) TO C(313) TO C(314) , C(313) TO C(314) TO C(315)
CONT C(314) TO C(315) TO C(316) , C(315) TO C(316) TO C(311)
PLANAR C(321) UNTIL C(326)
DISTANCES 1.395 , 0.02= C(321) TO C(322) , C(322) TO C(323)
CONT C(323) TO C(324) , C(324) TO C(325) , C(325) TO C(326) , C(326) TO C(321)
ANGLES 120.0 , 3.0= C(326) TO C(321) TO C(322) , C(321) TO C(322) TO C(323)
CONT C(322) TO C(323) TO C(324) , C(323) TO C(324) TO C(325)
CONT C(324) TO C(325) TO C(326) , C(325) TO C(326) TO C(321)
PLANAR C(331) UNTIL C(336)
DISTANCES 1.395 , 0.02= C(331) TO C(332) , C(332) TO C(333)
CONT C(333) TO C(334) , C(334) TO C(335) , C(335) TO C(336) , C(336) TO C(331)
ANGLES 120.0 , 3.0= C(336) TO C(331) TO C(332) , C(331) TO C(332) TO C(333)
CONT C(332) TO C(333) TO C(334) , C(333) TO C(334) TO C(335)
CONT C(334) TO C(335) TO C(336) , C(335) TO C(336) TO C(331)
PLANAR C(411) UNTIL C(416)
DISTANCES 1.395 , 0.02= C(411) TO C(412) , C(412) TO C(413)
CONT C(413) TO C(414) , C(414) TO C(415) , C(415) TO C(416) , C(416) TO C(411)
ANGLES 120.0 , 3.0= C(416) TO C(411) TO C(412) , C(411) TO C(412) TO C(413)
CONT C(412) TO C(413) TO C(414) , C(413) TO C(414) TO C(415)
CONT C(414) TO C(415) TO C(416) , C(415) TO C(416) TO C(411)
PLANAR C(421) UNTIL C(426)
DISTANCES 1.395 , 0.02= C(421) TO C(422) , C(422) TO C(423)
CONT C(423) TO C(424) , C(424) TO C(425) , C(425) TO C(426) , C(426) TO C(421)
ANGLES 120.0 , 3.0= C(426) TO C(421) TO C(422) , C(421) TO C(422) TO C(423)
CONT C(422) TO C(423) TO C(424) , C(423) TO C(424) TO C(425)
CONT C(424) TO C(425) TO C(426) , C(425) TO C(426) TO C(421)
PLANAR C(431) UNTIL C(436)
DISTANCES 1.395 , 0.02= C(431) TO C(432) , C(432) TO C(433)
CONT C(433) TO C(434) , C(434) TO C(435) , C(435) TO C(436) , C(436) TO C(431)
ANGLES 120.0 , 3.0= C(436) TO C(431) TO C(432) , C(431) TO C(432) TO C(433)
CONT C(432) TO C(433) TO C(434) , C(433) TO C(434) TO C(435)
CONT C(434) TO C(435) TO C(436) , C(435) TO C(436) TO C(431)
END
\LIST 23
MODIFY ANOM=YES EXTINCT=YES
MINIM REFL=YES REST=YES
END
\LIST 29
READ NELEM=12
ELEM PT 1.5000 1.5000 0.6000 0.000 0.0 0.0000
ELEM IR 1.5000 1.5000 0.6000 0.000 0.0 0.0000
ELEM AU 1.4000 1.5000 0.6000 0.000 0.0 0.0000
ELEM P 1.2000 1.5000 0.6000 0.000 0.0 0.0000
ELEM CL 1.2000 1.5000 0.6000 0.000 0.0 0.0000
ELEM S 1.2000 1.5000 0.6000 0.000 0.0 0.0000
ELEM C 0.8000 1.5000 0.6000 0.000 0.0 0.0000
ELEM N 0.7000 1.5000 0.6000 0.000 0.0 0.0000
ELEM O 0.6600 1.5000 0.6000 0.000 0.0 0.0000
ELEM F 0.6600 1.5000 0.6000 0.000 0.0 0.0000
ELEM H 0.2800 1.5000 0.6000 0.000 0.0 0.0000
ELEM PEAK 1.5000 1.5000 0.6000 0.000 0.0 0.0000
END
#
# Punched on 16-JAN87 at 15:59:05
#
# Punched on 28/01/11 at 14:14:55
#
#LIST 5
READ NATOM = 148, NLAYER = 0, NELEMENT = 0, NBATCH = 0
OVERALL 0.909262 0.021674 0.050000 1.000000 0.000000 113.1696625
ATOM IR 1.000000 1.000000 0.000000 0.251079 0.374585 0.300281
CON U[11]= 0.024021 0.027206 0.027862 -0.008651 -0.006840 -0.004387
CON SPARE= 0.00 0 0 0
ATOM AU 1.000000 1.000000 0.000000 0.079894 0.354308 0.289144
CON U[11]= 0.029608 0.036157 0.043692 -0.009513 -0.015078 -0.005667
CON SPARE= 0.00 0 0 0
ATOM P 1.000000 1.000000 0.000000 0.421568 0.385630 0.282991
CON U[11]= 0.025998 0.035642 0.030611 -0.012456 -0.007545 -0.003987
CON SPARE= 0.00 0 0 0
ATOM P 2.000000 1.000000 0.000000 0.190673 0.528069 0.268263
CON U[11]= 0.029327 0.030435 0.035618 -0.010690 -0.009860 -0.002318
CON SPARE= 0.00 0 0 0
ATOM P 3.000000 1.000000 0.000000 0.225418 0.220830 0.378478
CON U[11]= 0.034424 0.028668 0.036202 -0.009383 -0.009969 -0.004448
CON SPARE= 0.00 0 0 0
ATOM P 4.000000 1.000000 0.000000 -0.041663 0.326871 0.251422
CON U[11]= 0.035022 0.040772 0.052489 -0.008817 -0.021112 -0.007330
CON SPARE= 0.00 0 0 0
ATOM P 5.000000 1.000000 0.000000 0.604783 -0.174116 0.238618
CON U[11]= 0.106712 0.108646 0.114879 -0.066825 -0.056100 0.020168
CON SPARE= 0.00 0 0 0
ATOM F 1.000000 1.000000 0.000000 0.574748 -0.279289 0.269088
CON U[11]= 0.158394 0.135425 0.201293 -0.088815 -0.029709 -0.012361
CON SPARE= 0.00 0 0 0
ATOM F 2.000000 1.000000 0.000000 0.515551 -0.146724 0.204580
CON U[11]= 0.136944 0.220001 0.149104 -0.072522 -0.076943 0.013224
CON SPARE= 0.00 0 0 0
ATOM F 3.000000 1.000000 0.000000 0.677275 -0.191561 0.158970
CON U[11]= 0.162684 0.158070 0.102940 -0.054046 -0.002408 -0.009180
CON SPARE= 0.00 0 0 0
ATOM F 4.000000 1.000000 0.000000 0.528012 -0.165303 0.322413
CON U[11]= 0.149954 0.209662 0.165304 -0.133294 -0.059517 0.038554
CON SPARE= 0.00 0 0 0
ATOM F 5.000000 1.000000 0.000000 0.687711 -0.214308 0.279138
CON U[11]= 0.121006 0.185670 0.167397 -0.077929 -0.077840 0.025672
CON SPARE= 0.00 0 0 0
ATOM F 6.000000 1.000000 0.000000 0.629407 -0.078821 0.214369
CON U[11]= 0.216064 0.090403 0.362878 -0.084910 -0.010716 -0.051003
CON SPARE= 0.00 0 0 0
ATOM C 1.000000 1.000000 0.000000 0.285888 0.371724 0.192210
CON U[11]= 0.036051 0.044682 0.039122 -0.017600 -0.006604 -0.012701
CON SPARE= 0.00 0 0 0
ATOM O 1.000000 1.000000 0.000000 0.306096 0.375252 0.127090
CON U[11]= 0.055864 0.077965 0.035536 -0.020863 -0.006959 -0.018525
CON SPARE= 0.00 0 0 0
ATOM C 111.000000 1.000000 1.000000 0.477884 0.483307 0.197125
CON U[11]= 0.033403 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 112.000000 1.000000 1.000000 0.481503 0.568182 0.205361
CON U[11]= 0.039816 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 113.000000 1.000000 1.000000 0.521858 0.639563 0.136530
CON U[11]= 0.045756 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 114.000000 1.000000 1.000000 0.557510 0.628064 0.062171
CON U[11]= 0.050761 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 115.000000 1.000000 1.000000 0.553957 0.545608 0.053410
CON U[11]= 0.048402 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 116.000000 1.000000 1.000000 0.514767 0.473901 0.120234
CON U[11]= 0.040372 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 121.000000 1.000000 1.000000 0.507946 0.290520 0.253490
CON U[11]= 0.035931 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 122.000000 1.000000 1.000000 0.483905 0.238576 0.217353
CON U[11]= 0.048056 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 123.000000 1.000000 1.000000 0.547747 0.166135 0.196721
CON U[11]= 0.061756 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 124.000000 1.000000 1.000000 0.635272 0.143093 0.212579
CON U[11]= 0.071979 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 125.000000 1.000000 1.000000 0.661318 0.195448 0.247910
CON U[11]= 0.070071 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 126.000000 1.000000 1.000000 0.598526 0.268134 0.268392
CON U[11]= 0.052742 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 131.000000 1.000000 1.000000 0.454332 0.392727 0.366144
CON U[11]= 0.034885 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 132.000000 1.000000 1.000000 0.539669 0.431460 0.354301
CON U[11]= 0.043036 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 133.000000 1.000000 1.000000 0.562360 0.426837 0.422053
CON U[11]= 0.053991 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 134.000000 1.000000 1.000000 0.504389 0.385303 0.499056
CON U[11]= 0.056414 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 135.000000 1.000000 1.000000 0.419395 0.347886 0.511607
CON U[11]= 0.048721 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 136.000000 1.000000 1.000000 0.394391 0.352224 0.444745
CON U[11]= 0.038978 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 211.000000 1.000000 1.000000 0.246770 0.603455 0.294023
CON U[11]= 0.035867 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 212.000000 1.000000 1.000000 0.269732 0.567121 0.365390
CON U[11]= 0.039848 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 213.000000 1.000000 1.000000 0.309250 0.620515 0.390152
CON U[11]= 0.053371 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 214.000000 1.000000 1.000000 0.329033 0.709393 0.343240
CON U[11]= 0.060933 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 215.000000 1.000000 1.000000 0.305486 0.746720 0.274140
CON U[11]= 0.065844 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 216.000000 1.000000 1.000000 0.261686 0.694581 0.249492
CON U[11]= 0.050798 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 221.000000 1.000000 1.000000 0.060252 0.559101 0.319888
CON U[11]= 0.040715 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 222.000000 1.000000 1.000000 0.007436 0.500044 0.392372
CON U[11]= 0.053615 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 223.000000 1.000000 1.000000 -0.088776 0.524656 0.434194
CON U[11]= 0.076306 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 224.000000 1.000000 1.000000 -0.130350 0.610378 0.402780
CON U[11]= 0.072287 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 225.000000 1.000000 1.000000 -0.081849 0.669812 0.333209
CON U[11]= 0.079659 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 226.000000 1.000000 1.000000 0.014388 0.645003 0.292279
CON U[11]= 0.062633 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 231.000000 1.000000 1.000000 0.202222 0.579107 0.162394
CON U[11]= 0.039074 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 232.000000 1.000000 1.000000 0.290627 0.613283 0.105100
CON U[11]= 0.048558 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 233.000000 1.000000 1.000000 0.300542 0.648667 0.023572
CON U[11]= 0.065653 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 234.000000 1.000000 1.000000 0.226949 0.642796 -0.002056
CON U[11]= 0.077032 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 235.000000 1.000000 1.000000 0.138541 0.606091 0.053599
CON U[11]= 0.075786 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 236.000000 1.000000 1.000000 0.126543 0.575349 0.135391
CON U[11]= 0.057494 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 311.000000 1.000000 1.000000 0.294795 0.167253 0.451068
CON U[11]= 0.041138 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 312.000000 1.000000 1.000000 0.395496 0.142470 0.423285
CON U[11]= 0.050814 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 313.000000 1.000000 1.000000 0.450963 0.110175 0.474845
CON U[11]= 0.063788 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 314.000000 1.000000 1.000000 0.405314 0.101997 0.555541
CON U[11]= 0.072971 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 315.000000 1.000000 1.000000 0.304898 0.124311 0.585330
CON U[11]= 0.067946 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 316.000000 1.000000 1.000000 0.249641 0.157636 0.532809
CON U[11]= 0.055051 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 321.000000 1.000000 1.000000 0.097610 0.204117 0.446634
CON U[11]= 0.040110 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 322.000000 1.000000 1.000000 0.049919 0.261747 0.494237
CON U[11]= 0.050358 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 323.000000 1.000000 1.000000 -0.045731 0.247979 0.548032
CON U[11]= 0.064642 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 324.000000 1.000000 1.000000 -0.094704 0.175812 0.555667
CON U[11]= 0.069454 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 325.000000 1.000000 1.000000 -0.049695 0.119668 0.508976
CON U[11]= 0.067405 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 326.000000 1.000000 1.000000 0.046459 0.133047 0.454412
CON U[11]= 0.051639 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 331.000000 1.000000 1.000000 0.250891 0.137492 0.323816
CON U[11]= 0.042306 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 332.000000 1.000000 1.000000 0.294432 0.050317 0.349223
CON U[11]= 0.061409 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 333.000000 1.000000 1.000000 0.317383 -0.010561 0.304813
CON U[11]= 0.073241 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 334.000000 1.000000 1.000000 0.296365 0.017211 0.234025
CON U[11]= 0.088745 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 335.000000 1.000000 1.000000 0.249896 0.102407 0.209132
CON U[11]= 0.076940 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 336.000000 1.000000 1.000000 0.229030 0.162042 0.252374
CON U[11]= 0.056289 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 411.000000 1.000000 1.000000 -0.126378 0.426660 0.225783
CON U[11]= 0.043426 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 412.000000 1.000000 1.000000 -0.206412 0.571697 0.240622
CON U[11]= 0.069015 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 413.000000 1.000000 1.000000 -0.256722 0.576928 0.189865
CON U[11]= 0.064918 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 414.000000 1.000000 1.000000 -0.141678 0.496228 0.258097
CON U[11]= 0.056284 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 415.000000 1.000000 1.000000 -0.243070 0.507474 0.157509
CON U[11]= 0.064844 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 416.000000 1.000000 1.000000 -0.178801 0.431846 0.174705
CON U[11]= 0.059754 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 421.000000 1.000000 1.000000 0.015063 0.293774 0.160018
CON U[11]= 0.050373 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 422.000000 1.000000 1.000000 0.103145 0.330734 0.106184
CON U[11]= 0.065357 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 423.000000 1.000000 1.000000 0.148973 0.310793 0.035376
CON U[11]= 0.091406 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 424.000000 1.000000 1.000000 0.108697 0.254274 0.016536
CON U[11]= 0.101787 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 425.000000 1.000000 1.000000 0.021549 0.217031 0.067367
CON U[11]= 0.092210 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 426.000000 1.000000 1.000000 -0.026492 0.237453 0.140319
CON U[11]= 0.069390 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 431.000000 1.000000 1.000000 -0.122564 0.237294 0.322750
CON U[11]= 0.047647 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 432.000000 1.000000 1.000000 -0.216736 0.259281 0.369897
CON U[11]= 0.062324 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 433.000000 1.000000 1.000000 -0.280225 0.190645 0.424204
CON U[11]= 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 434.000000 1.000000 1.000000 -0.246944 0.100742 0.428814
CON U[11]= 0.078984 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 435.000000 1.000000 1.000000 -0.153479 0.077866 0.383898
CON U[11]= 0.078071 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM C 436.000000 1.000000 1.000000 -0.089755 0.145575 0.332551
CON U[11]= 0.067507 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 1.000000 1.000000 1.000000 0.213716 0.397889 0.377500
CON U[11]= 0.051673 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 116.000000 1.000000 1.000000 0.513466 0.412883 0.114365
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 115.000000 1.000000 1.000000 0.579459 0.536282 -0.000454
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 114.000000 1.000000 1.000000 0.586380 0.680645 0.013332
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 113.000000 1.000000 1.000000 0.523898 0.699865 0.143049
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 112.000000 1.000000 1.000000 0.455636 0.575997 0.259534
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 126.000000 1.000000 1.000000 0.617775 0.304447 0.293826
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 125.000000 1.000000 1.000000 0.725568 0.178754 0.258779
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 124.000000 1.000000 1.000000 0.681780 0.089668 0.198916
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 123.000000 1.000000 1.000000 0.528682 0.128368 0.172046
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 122.000000 1.000000 1.000000 0.420582 0.254118 0.205175
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 136.000000 1.000000 1.000000 0.333151 0.326757 0.453393
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 135.000000 1.000000 1.000000 0.376818 0.318319 0.566167
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 134.000000 1.000000 1.000000 0.522346 0.382284 0.545416
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 133.000000 1.000000 1.000000 0.622992 0.455539 0.413559
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 132.000000 1.000000 1.000000 0.582432 0.460900 0.299755
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 216.000000 1.000000 1.000000 0.241683 0.723098 0.199929
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 215.000000 1.000000 1.000000 0.316144 0.811438 0.242218
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 214.000000 1.000000 1.000000 0.358737 0.747795 0.360275
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 213.000000 1.000000 1.000000 0.324181 0.595079 0.441489
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 212.000000 1.000000 1.000000 0.258477 0.502650 0.397883
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 226.000000 1.000000 1.000000 0.053170 0.688885 0.240487
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 225.000000 1.000000 1.000000 -0.115494 0.731284 0.311727
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 224.000000 1.000000 1.000000 -0.199764 0.629432 0.433423
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 223.000000 1.000000 1.000000 -0.129246 0.481729 0.485413
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 222.000000 1.000000 1.000000 0.040255 0.438699 0.413786
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 236.000000 1.000000 1.000000 0.062106 0.553914 0.174351
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 235.000000 1.000000 1.000000 0.086691 0.604250 0.031538
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 234.000000 1.000000 1.000000 0.236386 0.666437 -0.060506
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 233.000000 1.000000 1.000000 0.363305 0.677595 -0.016343
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 232.000000 1.000000 1.000000 0.346538 0.614719 0.122708
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 316.000000 1.000000 1.000000 0.177161 0.174572 0.553995
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 315.000000 1.000000 1.000000 0.272955 0.116577 0.643185
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 314.000000 1.000000 1.000000 0.445634 0.078796 0.593329
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 313.000000 1.000000 1.000000 0.522852 0.090860 0.455778
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 312.000000 1.000000 1.000000 0.427890 0.147983 0.365017
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 326.000000 1.000000 1.000000 0.079214 0.092033 0.420731
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 325.000000 1.000000 1.000000 -0.086431 0.070100 0.513899
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 324.000000 1.000000 1.000000 -0.164159 0.168330 0.593644
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 323.000000 1.000000 1.000000 -0.077983 0.288459 0.582669
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 322.000000 1.000000 1.000000 0.085293 0.312832 0.488593
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 336.000000 1.000000 1.000000 0.196966 0.223867 0.233692
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 335.000000 1.000000 1.000000 0.232662 0.119211 0.158761
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 334.000000 1.000000 1.000000 0.314000 -0.026904 0.202207
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 333.000000 1.000000 1.000000 0.350348 -0.072505 0.323197
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 332.000000 1.000000 1.000000 0.310161 0.030948 0.400130
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 413.000000 1.000000 1.000000 -0.299680 0.597212 0.154967
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 415.000000 1.000000 1.000000 -0.291210 0.543126 0.127940
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 416.000000 1.000000 1.000000 -0.170444 0.381441 0.152232
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 412.000000 1.000000 1.000000 -0.205964 0.612068 0.271098
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 414.000000 1.000000 1.000000 -0.097459 0.475394 0.292459
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 426.000000 1.000000 1.000000 -0.090409 0.209233 0.178672
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 425.000000 1.000000 1.000000 -0.008573 0.171709 0.054735
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 424.000000 1.000000 1.000000 0.145082 0.232935 -0.033150
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 423.000000 1.000000 1.000000 0.212288 0.335375 -0.003008
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 422.000000 1.000000 1.000000 0.133904 0.371798 0.119448
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 436.000000 1.000000 1.000000 -0.020386 0.128078 0.300480
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 435.000000 1.000000 1.000000 -0.131634 0.010345 0.391555
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 434.000000 1.000000 1.000000 -0.292280 0.051126 0.465970
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 433.000000 1.000000 1.000000 -0.346494 0.204701 0.461669
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
ATOM H 432.000000 1.000000 1.000000 -0.241059 0.326195 0.363940
CON U[11]= 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 0.00 0 0 0
END
\DISK
RETAIN 5
END
#
# Punched on 16-JAN87 at 15:59:13
#
#LIST 6
READ NCOEFFICIENT = 5, TYPE = COMPRESSED, UNIT = DATAFILE
INPUT H K L /FO/ RATIO
MULTIPLIERS 1.0 1.0 1.0 2.843942642 3.768115520
END
0 0 1 189 584 2 99 176 3 36 44 4 449 699 5 421 571 6 677 854 7 189 176 8 57 42 9
55 35 10 100 72 11 83 57 12 292 196 13 83 47 16 89 40 18 151 57 512 1 0 -17 146
76 -14 112 75 -13 119 74 -12 256 168 -11 326 251 -10 44 19 -9 48 27 -8 196 170
-7 267 278 -6 315 373 -5 578 803 -4 197 268 -3 476 843 -2 96 150 -1 331 796 0
609 361 1 662 361 2 37 57 3 162 236 4 313 448 5 336 430 6 396 468 7 451 494 8
127 85 9 95 68 10 213 151 11 147 90 12 159 85 13 174 91 14 54 18 15 73 30 16 166
75 17 81 28 18 102 40 512 2 0 -17 145 78 -14 91 50 -13 214 125 -12 52 21 -11 388
305 -10 158 97 -9 39 17 -8 176 140 -7 505 554 -6 179 177 -5 335 424 -4 200 250
-3 415 645 -2 469 796 -1 408 725 0 217 369 1 177 283 2 244 380 3 53 54 4 266 343
5 487 610 6 91 72 7 299 300 8 182 143 9 59 37 10 207 145 11 312 229 13 127 81 14
59 21 16 143 69 17 176 80 512 3 0 -16 84 35 -13 191 100 -12 240 150 -11 124 83
-10 146 85 -7 342 344 -6 447 497 -5 76 71 -4 183 198 -3 100 89 -2 220 283 -1 556
816 0 369 532 1 73 72 2 170 196 3 238 286 4 102 80 5 596 699 6 429 461 7 157 121
9 99 71 10 51 23 11 275 188 12 241 147 15 60 20 17 151 82 18 119 53 512 4 0 -17
87 32 -14 66 26 -13 76 36 -12 239 147 -11 159 87 -9 46 21 -8 184 135 -7 76 65 -6
514 533 -5 219 212 -4 115 93 -3 239 258 -2 361 430 -1 39 28 0 884 262 1 106 84 2
63 65 3 373 430 4 292 311 5 250 244 6 699 716 7 127 80 9 224 158 10 343 257 11
68 35 12 335 221 13 96 57 15 64 21 16 163 83 512 5 0 -17 127 63 -16 49 12 -13
110 68 -12 142 89 -11 198 113 -10 96 72 -9 141 79 -8 214 157 -7 286 238 -6 214
174 -5 445 447 -4 53 40 -3 152 124 -2 533 586 -1 632 712 0 370 400 1 452 500 2
147 119 3 148 121 4 306 300 5 221 190 6 285 246 7 223 168 10 302 205 11 225 133
12 100 64 13 175 80 16 160 69 17 147 59 512 6 0 -13 202 95 -12 85 44 -11 112 81
-9 43 15 -8 176 107 -7 398 332 -6 115 86 -5 211 164 -3 68 55 -2 271 247 -1 678
697 0 211 183 1 338 328 3 168 132 4 175 133 5 579 534 6 193 135 7 89 72 9 82 51
10 193 108 11 339 213 12 130 63 13 75 31 16 69 20 17 189 90 512 7 0 -15 64 20
-13 160 71 -12 243 130 -9 128 80 -7 211 134 -6 313 240 -3 99 75 -2 125 90 -1 449
413 0 474 442 1 92 66 3 228 176 4 160 104 5 407 338 6 388 305 7 106 70 9 150 83
10 64 28 11 212 107 12 198 95 13 58 18 14 54 14 15 98 43 17 111 45 512 8 0 -14
117 59 -12 229 111 -11 96 50 -9 100 67 -8 298 194 -7 82 49 -6 270 182 -5 189 119
-4 39 14 -3 183 121 -2 322 252 -1 69 46 0 458 390 1 178 121 3 267 198 4 409 327
6 372 271 7 176 97 8 99 63 9 151 79 10 253 139 11 68 28 12 156 79 13 93 43 15
112 51 16 183 92 512 9 0 -14 92 38 -13 133 75 -12 104 50 -11 154 69 -8 247 141
-7 308 194 -5 251 158 -3 52 23 -2 329 239 -1 475 378 0 90 67 1 103 78 2 76 50 3
54 26 4 336 240 5 370 267 6 123 66 7 72 37 8 77 41 10 236 121 11 237 113 13 61
18 16 142 58 512 10 0 -13 158 80 -12 70 23 -9 68 28 -8 51 17 -7 308 187 -6 181
90 -5 120 66 -2 121 78 -1 395 284 0 199 118 2 147 88 3 68 36 4 157 89 5 418 287
6 141 70 8 165 77 9 209 100 10 79 34 11 258 121 12 65 20 14 78 26 15 113 46 512
11 0 -13 68 18 -12 150 76 -10 63 21 -9 119 67 -8 80 37 -7 124 79 -6 247 133 -4
51 18 -3 130 86 -2 143 73 -1 135 81 0 275 170 1 61 28 3 183 95 4 150 77 5 242
132 6 192 97 8 82 40 9 230 109 10 158 82 11 152 82 12 159 75 15 122 48 512 12 0
-12 94 34 -9 96 43 -8 158 81 -7 56 17 -6 167 79 -5 65 27 -3 150 73 -2 328 195 -1
105 64 0 173 88 3 172 77 4 345 209 5 67 28 6 135 85 9 118 64 10 249 115 11 55 13
12 131 66 512 13 0 -8 140 80 -7 158 65 -6 51 14 -5 70 27 -4 81 37 -2 282 150 -1
317 176 1 85 46 2 86 47 3 73 34 4 248 129 5 294 161 8 96 44 10 141 69 11 168 76
512 14 0 -9 94 34 -7 185 78 -6 72 23 -4 87 37 -3 171 76 -1 262 131 0 133 77 2 66
26 3 192 86 5 240 113 6 128 75 9 121 59 11 146 73 512 15 0 -9 93 31 -8 131 61 -6
145 73 -3 149 75 -2 176 78 0 147 75 3 153 80 4 220 93 5 66 21 6 78 29 9 113 49
10 127 57 512 16 0 -8 121 47 -7 77 23 -6 75 23 -2 167 88 -1 90 37 0 60 17 3 90
36 4 223 89 5 61 17 7 56 14 8 77 25 9 62 15 10 195 89 512 17 0 -7 131 56 -4 64
17 -3 75 23 -2 97 37 -1 109 49 2 101 44 4 131 67 5 135 68 8 106 42 9 79 22 10
114 40 512 18 0 -4 57 12 -3 143 67 -1 122 54 3 148 77 5 104 39 512 19 0 -3 133
55 -2 132 54 3 119 47 4 142 64 512
-19 1 -3 123 49 -2 62 14 1 127 52 512 -18 1 -5 80 22 -4 150 57 -2 67 18 1 107 42
2 171 70 4 71 18 512 -17 1 -9 95 29 -4 169 75 -3 113 50 0 55 13 2 168 81 3 105
40 6 97 32 512 -16 1 -11 93 28 -9 156 66 -5 179 89 -3 142 78 -2 85 32 0 68 21 1
102 44 2 58 15 3 115 55 6 94 33 7 107 40 9 103 35 512 -15 1 -11 129 54 -10 83 26
-9 98 38 -8 78 26 -5 224 93 -4 149 75 -3 83 33 -2 95 45 1 178 80 2 82 31 3 87 34
7 162 91 512 -14 1 -11 85 27 -10 157 82 -5 188 77 -4 289 145 -2 76 32 0 93 46 1
126 70 2 264 125 6 100 44 7 123 59 8 147 70 11 59 13 512 -13 1 -12 107 42 -10
148 63 -9 121 62 -7 67 23 -6 144 67 -4 256 135 -3 159 76 -2 52 17 0 212 105 1 92
47 2 322 176 3 196 86 6 186 83 8 156 64 9 83 29 12 126 52 512 -12 1 -12 96 35
-11 202 86 -9 188 86 -8 70 25 -6 202 95 -5 304 172 -3 199 102 -1 73 36 0 159 83
1 374 229 2 62 23 3 192 91 4 66 27 5 72 30 6 132 67 7 240 112 9 108 51 12 115 49
13 102 37 512 -11 1 -15 77 21 -11 237 98 -10 159 80 -9 73 29 -8 96 53 -5 300 177
-4 325 199 1 395 260 2 257 145 5 114 72 7 228 112 8 175 83 11 69 23 13 116 51
512 -10 1 -12 128 67 -11 104 49 -10 291 148 -9 79 37 -8 86 47 -7 81 41 -6 174 83
-5 78 41 -4 407 273 -3 86 52 0 144 80 1 195 109 2 335 224 3 136 69 5 193 96 6
169 89 7 129 80 8 194 90 9 90 47 11 119 66 12 140 80 14 83 28 512 -9 1 -16 121
49 -15 135 65 -13 51 12 -12 182 84 -11 84 36 -10 199 93 -9 185 87 -7 124 82 -6
310 200 -5 218 130 -4 196 115 -3 227 146 -1 85 61 0 403 310 1 128 71 2 188 111 3
157 84 5 131 87 6 367 243 7 89 52 8 193 94 9 53 18 11 49 13 12 226 99 13 78 28
512 -8 1 -15 112 49 -12 136 78 -11 195 88 -9 162 88 -8 46 15 -7 66 33 -6 254 167
-5 428 329 -3 160 95 -2 104 78 -1 98 67 0 358 291 1 578 486 2 43 17 3 110 85 4
68 41 5 126 83 6 259 164 7 304 196 9 76 39 10 81 43 11 120 74 12 140 74 13 187
76 512 -7 1 -17 137 61 -16 147 77 -11 235 126 -10 219 124 -8 72 41 -7 186 112 -6
57 29 -5 452 372 -4 251 191 -3 57 35 -1 202 153 0 133 83 1 527 474 2 351 292 3
83 63 4 75 53 5 249 179 6 104 82 7 316 222 8 193 110 10 61 27 11 180 90 13 166
76 14 120 66 512 -6 1 -16 183 81 -13 98 50 -12 194 93 -11 85 46 -10 285 183 -9
120 81 -8 120 80 -7 292 220 -6 361 299 -5 76 59 -4 355 318 -1 311 292 0 499 495
1 196 159 2 520 498 3 108 70 4 125 87 5 209 154 6 398 326 7 68 40 8 175 104 9
119 77 10 53 22 11 160 76 12 186 92 14 105 56 512 -5 1 -17 94 33 -16 116 54 -15
59 18 -12 295 176 -11 206 112 -10 178 96 -9 151 82 -7 130 76 -6 554 518 -5 358
337 -4 119 81 -3 178 150 -2 261 263 -1 192 176 0 643 710 1 367 373 2 201 175 3
94 70 4 177 140 5 36 15 6 527 484 7 325 266 9 52 24 10 75 46 11 58 26 12 215 119
13 113 72 512 -4 1 -17 190 76 -14 72 28 -13 128 73 -12 191 98 -11 336 233 -10 64
34 -9 200 130 -8 42 19 -7 244 203 -6 232 199 -5 496 524 -4 95 80 -3 73 67 -2 201
208 -1 335 396 0 426 512 1 604 720 2 390 432 3 101 76 4 228 215 5 239 223 6 292
271 7 520 500 8 93 84 9 80 60 10 67 40 11 200 123 12 108 72 13 193 100 16 93 43
17 80 29 512 -3 1 -17 143 67 -16 147 75 -13 201 104 -12 83 47 -11 226 139 -10
261 184 -9 37 13 -8 100 80 -7 259 232 -6 409 423 -5 132 107 -4 419 507 -3 211
246 -2 201 242 -1 722 243 0 250 328 1 705 964 2 311 375 3 62 59 4 321 365 5 425
486 6 100 73 7 461 470 8 118 84 10 71 46 11 315 235 12 116 68 13 139 72 14 112
72 16 68 23 17 148 78 512 -2 1 -16 120 63 -15 72 29 -13 132 89 -12 258 162 -10
182 116 -9 73 53 -8 58 40 -7 325 317 -6 388 430 -5 116 98 -4 170 188 -3 143 168
-2 606 986 -1 262 438 0 509 895 1 134 174 2 228 304 3 155 171 4 95 77 5 277 330
6 457 541 7 200 182 8 145 106 9 95 68 11 257 183 12 326 229 14 114 78 17 107 50
18 152 81 512 -1 1 -17 139 72 -12 241 152 -11 204 125 -10 40 15 -8 165 125 -7
164 136 -6 513 603 -5 239 280 -3 107 124 -2 37 50 -1 161 320 0 610 337 1 638 298
2 135 188 3 85 83 4 336 501 5 75 84 6 593 756 7 314 340 8 44 26 9 36 16 10 285
238 12 330 239 13 197 113 16 106 57 18 118 53 512 0 1 -17 181 74 -16 51 13 -14
89 48 -13 141 72 -12 96 54 -11 286 206 -10 123 74 -9 62 42 -8 158 117 -7 233 225
-6 326 340 -5 588 783 -4 278 395 -3 460 788 -2 400 817 -1 502 303 0 406 331 1
688 486 2 314 729 3 258 471 4 482 778 5 552 787 6 331 402 7 436 500 8 168 141 9
121 88 10 244 191 11 293 223 12 99 73 13 229 138 14 54 19 16 116 66 17 163 75
512 1 1 -17 115 53 -16 79 31 -13 203 108 -12 120 78 -11 199 125 -10 242 181 -9
61 41 -8 76 66 -7 434 473 -6 281 318 -5 301 381 -4 292 416 -3 84 91 -2 106 166
-1 830 480 0 512 364 1 345 871 2 165 262 3 163 231 4 65 73 5 610 831 6 478 585 7
178 162 8 160 125 10 93 77 11 282 206 12 155 78 13 107 80 16 59 18 17 176 73 18
99 40 512 2 1 -14 102 58 -13 137 69 -12 293 194 -10 141 82 -9 77 61 -8 72 61 -7
257 252 -6 495 581 -5 209 240 -4 123 128 -3 66 75 -2 104 139 -1 292 573 0 785
385 1 44 75 2 52 60 3 37 34 5 275 321 6 683 801 7 220 200 9 109 77 10 88 70 11
87 60 12 282 189 13 47 17 14 45 13 15 52 15 16 74 28 17 92 37 18 138 71 512 3 1
-17 101 41 -14 143 64 -12 263 168 -11 267 184 -8 188 150 -7 178 147 -6 273 289
-5 416 502 -4 276 341 -2 69 84 -1 543 888 0 96 110 1 276 409 2 215 273 3 152 158
4 435 524 5 158 140 6 527 573 7 253 225 8 111 75 9 126 84 10 340 266 11 162 91
12 259 162 13 169 98 14 54 19 15 78 34 16 186 87 18 106 43 512 4 1 -17 116 54
-14 105 59 -13 159 81 -12 51 18 -11 290 201 -9 89 74 -8 191 145 -7 496 491 -5
411 459 -4 202 211 -3 62 65 -2 77 81 -1 678 939 1 266 325 2 156 150 3 45 33 4
368 402 5 626 671 6 139 98 7 305 274 8 92 84 10 284 204 11 372 267 12 53 21 13
151 77 16 138 63 17 184 78 512 5 1 -13 153 76 -12 128 79 -11 72 38 -10 91 56 -8
110 70 -7 438 402 -6 374 354 -5 284 275 -4 37 21 -3 118 92 -2 96 84 -1 841 323 0
539 641 1 125 99 3 286 286 4 89 83 5 572 567 6 421 386 7 108 80 8 185 124 9 192
121 11 379 259 12 229 127 15 110 59 17 166 69 18 116 48 512 6 1 -14 71 28 -13 46
12 -12 227 120 -11 102 73 -9 133 78 -8 92 72 -7 171 111 -6 440 395 -3 145 108 -2
342 343 -1 338 342 0 574 614 1 204 181 2 156 120 3 209 180 4 257 225 5 291 244 6
526 463 7 102 71 9 245 160 10 186 102 11 169 81 12 310 184 13 63 25 15 128 75 16
156 80 512 7 1 -14 126 74 -13 89 40 -12 186 88 -11 145 73 -10 87 55 -9 114 67 -8
294 206 -7 149 82 -6 291 224 -5 169 114 -3 239 197 -2 424 393 -1 232 197 0 307
281 1 270 242 3 48 27 4 316 265 5 417 347 6 254 185 7 223 148 9 118 79 10 271
165 11 121 86 12 173 90 13 98 50 15 83 31 16 175 75 17 110 43 512 8 1 -14 107 53
-13 205 86 -11 146 86 -8 155 78 -7 332 234 -6 44 16 -5 132 83 -4 39 16 -2 134 82
-1 551 489 0 72 53 1 285 231 2 90 80 4 247 180 5 596 485 6 157 88 7 85 55 9 56
22 10 154 79 11 288 160 12 68 26 16 125 59 17 159 78 512 9 1 -13 183 81 -12 169
84 -9 88 49 -8 105 70 -7 265 161 -6 345 240 -5 48 19 -4 48 20 -3 179 110 -2 102
69 -1 355 277 0 379 302 1 106 69 2 48 23 3 290 210 5 399 295 6 391 279 7 56 23 8
99 66 9 216 112 10 96 55 11 227 111 12 157 76 14 56 14 15 151 73 17 121 49 512
10 1 -14 79 26 -12 195 76 -11 51 14 -9 91 49 -8 194 93 -6 300 186 -5 106 78 -3
131 70 -2 312 213 0 245 164 1 115 74 3 235 143 4 335 228 5 115 64 6 260 159 9
253 135 10 238 116 12 160 74 15 146 71 16 142 65 512 11 1 -14 86 28 -13 78 24
-12 79 27 -8 205 98 -7 125 58 -6 125 81 -5 103 59 -4 48 17 -2 296 186 -1 277 172
0 101 72 1 75 42 3 66 32 4 440 302 5 195 98 6 69 32 8 174 78 9 98 55 10 239 112
11 176 88 12 93 38 16 143 64 512 12 1 -13 128 57 -8 84 35 -7 210 94 -5 64 26 -4
90 50 -3 76 38 -2 124 64 -1 380 245 0 56 22 1 88 52 3 103 67 4 150 72 5 306 180
6 104 63 7 54 18 8 176 78 9 129 82 10 93 39 11 270 120 12 67 20 14 95 34 15 113
42 512 13 1 -12 91 29 -9 91 37 -7 167 90 -6 139 83 -4 103 59 -3 220 107 -2 107
64 -1 269 144 0 209 106 1 93 54 3 294 168 4 138 80 5 190 87 6 204 95 8 70 25 9
193 79 10 98 41 11 157 76 12 113 50 512 14 1 -9 99 40 -8 155 86 -6 148 62 -3 197
84 -2 279 142 0 161 76 2 62 24 3 173 87 4 309 168 5 87 40 6 112 60 9 92 37 10
171 66 512 15 1 -8 127 58 -7 153 83 -2 196 76 -1 199 90 2 113 62 4 246 114 5 222
95 8 88 35 10 149 77 11 114 48 512 16 1 -9 75 19 -7 150 72 -6 74 22 -4 57 15 -3
133 72 -1 156 83 2 108 54 3 125 67 4 80 29 5 188 82 8 95 38 9 101 39 11 126 54
512 17 1 -7 78 21 -6 80 23 -3 122 56 -2 107 45 3 163 76 4 74 24 5 80 27 7 75 23
9 159 72 10 103 37 11 83 24 512 18 1 -6 69 16 -2 158 74 3 95 35 4 144 66 7 68 18
9 91 28 512 19 1 -2 118 47 -1 99 34 2 101 37 4 121 49 5 88 28 512
-18 2 -4 127 54 -3 135 61 0 84 26 2 120 46 3 150 72 512 -17 2 -8 69 17 -5 146 74
-3 93 34 1 143 73 3 121 51 7 120 44 512 -16 2 -10 127 50 -8 106 40 -5 158 80 -4
192 78 -2 57 15 1 146 70 2 145 75 7 129 54 8 108 38 512 -15 2 -10 166 72 -9 78
23 -6 74 24 -4 238 101 -3 96 43 0 85 34 2 181 86 3 81 29 5 76 25 6 87 31 8 150
73 512 -14 2 -11 87 28 -10 104 40 -9 110 47 -6 129 58 -5 144 66 -4 129 65 -3 111
60 0 161 80 1 118 64 2 98 44 3 151 68 6 126 66 7 93 35 8 106 44 9 96 35 512 -13
2 -11 157 83 -9 96 39 -6 118 64 -5 297 152 -4 46 12 -3 120 78 -2 72 31 -1 78 36
0 111 67 1 308 169 2 106 59 3 153 64 4 60 20 5 62 20 6 64 20 7 208 81 512 -12 2
-12 60 14 -11 144 70 -10 173 70 -5 253 131 -4 230 119 -1 151 73 1 276 153 2 372
220 4 54 17 5 99 54 6 129 72 7 191 79 8 213 89 11 69 20 12 62 15 13 97 34 512
-11 2 -12 168 70 -10 244 110 -9 151 74 -6 236 121 -4 245 136 -3 187 92 -1 76 40
0 207 107 2 296 174 3 150 73 6 228 110 8 211 90 9 120 64 11 74 24 12 128 61 14
66 16 512 -10 2 -15 92 29 -12 155 76 -11 211 87 -10 116 62 -9 209 95 -6 207 106
-5 312 193 -3 151 85 -2 48 17 0 250 153 1 325 213 3 94 58 6 241 129 7 241 121 9
89 41 12 126 64 13 132 66 512 -9 2 -15 64 16 -13 60 16 -11 266 130 -10 118 69 -9
141 73 -7 58 23 -5 428 299 -4 227 136 -3 92 65 -2 47 19 0 63 33 1 497 379 2 174
95 4 80 44 5 131 78 6 148 74 7 333 200 8 144 74 10 62 21 11 129 77 13 189 85 512
-8 2 -16 140 64 -13 90 38 -12 78 31 -11 127 77 -10 214 109 -7 111 73 -6 171 93
-5 236 149 -4 334 250 -1 171 110 0 149 88 1 255 184 2 337 251 3 67 39 4 68 38 5
304 202 6 168 82 7 241 140 8 260 148 10 71 32 11 220 106 12 175 78 13 117 61 14
121 63 512 -7 2 -16 121 52 -15 123 61 -13 59 17 -12 174 85 -11 83 40 -10 209 112
-9 124 88 -8 104 77 -7 227 144 -6 374 286 -5 71 45 -4 200 132 -3 123 81 -1 229
178 0 430 378 1 263 202 2 186 125 3 201 138 4 60 32 5 160 90 6 381 272 7 63 30 8
201 113 9 78 43 10 89 51 11 93 52 12 266 138 14 124 69 512 -6 2 -15 78 28 -12
177 89 -11 254 142 -9 89 59 -7 65 37 -6 328 263 -5 443 384 -3 122 78 -1 103 77 0
538 526 1 598 578 2 95 92 3 94 74 4 191 132 5 112 87 6 305 225 7 376 280 10 159
80 11 64 29 12 181 86 13 181 93 512 -5 2 -17 176 90 -16 93 35 -13 158 74 -11 337
218 -10 207 120 -9 67 37 -8 128 76 -7 237 179 -5 506 486 -4 185 149 -3 56 43 -2
99 73 -1 414 438 1 704 749 2 532 537 4 128 80 5 333 281 6 40 16 7 463 382 8 237
168 9 153 96 10 98 72 11 202 113 13 183 86 14 78 34 16 56 15 17 111 49 512 -4 2
-17 86 27 -16 146 86 -13 174 82 -12 206 108 -11 132 72 -10 339 243 -8 55 29 -7
303 258 -6 459 443 -5 199 174 -4 286 293 -3 231 239 -2 105 76 -1 478 580 0 361
420 2 318 335 3 72 66 4 48 30 5 324 295 6 451 414 7 90 77 8 319 262 9 103 81 10
47 20 11 271 183 12 192 104 13 64 26 14 82 40 17 151 80 512 -3 2 -16 85 32 -14
58 18 -13 66 26 -12 296 185 -11 162 81 -10 239 158 -9 111 92 -6 593 616 -5 304
316 -4 170 168 -3 371 459 -2 135 134 -1 179 211 0 742 242 1 679 918 2 209 220 3
70 72 4 320 322 5 213 192 6 568 578 7 212 175 8 82 71 10 138 90 11 126 70 12 299
203 13 106 76 14 55 20 17 79 28 18 159 83 512 -2 2 -17 181 79 -14 59 20 -12 168
82 -11 313 219 -8 126 86 -7 169 135 -6 270 267 -5 441 507 -4 93 81 -3 76 86 -2
72 81 -1 564 927 0 274 439 1 89 92 2 347 466 3 113 93 4 396 449 5 250 259 6 467
518 7 421 444 8 56 39 9 34 13 10 275 219 11 187 118 12 230 148 13 218 129 14 43
13 16 114 66 17 93 39 18 64 17 512 -1 2 -17 168 74 -16 130 75 -13 146 81 -11 280
194 -10 208 140 -9 77 57 -8 195 153 -7 376 379 -5 509 630 -4 225 272 -3 208 281
-2 209 321 -1 773 343 0 160 298 1 228 431 2 87 101 3 229 277 4 55 57 5 610 811 7
392 442 8 114 80 9 47 27 10 213 162 11 404 334 12 90 63 13 257 166 14 100 62 16
63 21 17 194 79 18 66 18 512 0 2 -16 115 60 -13 161 88 -12 248 154 -11 101 71
-10 146 83 -7 391 404 -6 270 284 -5 218 247 -4 381 528 -3 30 24 -2 247 430 -1
489 243 0 999 577 1 247 600 2 118 213 3 145 210 4 127 157 5 586 853 6 560 729 7
107 81 8 168 144 9 124 80 11 308 238 12 313 226 13 70 36 14 84 45 15 100 58 17
128 66 18 175 80 512 1 2 -17 72 21 -14 85 40 -12 291 193 -11 148 79 -10 76 51 -9
59 36 -8 180 139 -7 122 86 -6 565 661 -5 141 132 -4 162 188 -3 298 463 -2 318
579 -1 183 371 0 938 556 1 428 254 2 335 704 3 230 320 4 448 592 5 49 45 6 764
951 7 396 437 8 58 44 9 189 144 10 253 199 11 55 28 12 249 164 13 100 70 15 128
77 16 124 73 18 149 66 512 2 2 -17 117 55 -14 146 76 -13 125 90 -12 138 81 -11
330 245 -9 74 55 -8 262 228 -7 257 247 -6 192 185 -5 316 382 -4 106 96 -3 252
361 -2 334 569 -1 263 501 0 118 203 1 424 900 2 52 75 3 151 173 4 494 612 5 436
505 6 287 301 7 394 408 8 199 163 9 111 82 10 290 229 11 217 144 12 77 47 13 137
73 14 66 28 15 90 45 16 164 83 17 133 77 18 74 23 512 3 2 -17 101 42 -14 70 28
-13 234 129 -12 82 46 -11 238 157 -10 116 79 -8 133 84 -7 449 457 -6 327 343 -5
205 213 -4 299 372 -3 109 107 -2 69 78 -1 837 329 0 39 52 1 59 77 2 183 245 3
372 476 4 223 229 5 677 758 6 301 286 7 210 179 8 46 25 9 109 73 10 159 94 11
362 265 12 151 85 13 109 77 16 96 45 17 179 76 512 4 2 -13 169 89 -12 246 146
-10 132 78 -9 63 37 -8 141 87 -7 364 345 -6 448 470 -5 37 20 -4 57 56 -3 58 61
-2 146 156 -1 489 707 0 383 552 1 433 610 2 232 275 3 74 75 4 274 283 5 473 489
6 579 574 7 101 77 9 290 223 10 168 95 11 293 199 12 346 233 15 107 57 16 90 40
17 106 47 18 123 57 512 5 2 -14 83 38 -12 250 145 -11 131 90 -9 86 63 -8 214 154
-6 372 358 -5 186 161 -3 38 24 -2 420 508 -1 131 118 0 497 627 1 204 218 2 156
140 3 281 288 4 409 419 5 34 15 6 518 477 7 190 135 8 50 24 9 264 186 10 372 271
12 289 174 13 96 57 14 57 19 15 119 68 16 206 86 17 73 23 18 101 38 512 6 2 -14
70 26 -13 135 79 -12 87 45 -11 146 80 -10 87 58 -9 84 57 -8 231 162 -7 266 209
-6 118 78 -5 262 235 -3 139 110 -2 475 523 -1 716 818 0 179 156 1 407 440 2 207
187 3 46 29 4 315 291 5 400 358 6 160 102 7 134 87 8 70 44 10 279 180 11 255 151
12 54 19 13 119 73 16 157 80 17 185 70 512 7 2 -13 194 87 -12 116 59 -11 80 39
-8 145 84 -7 258 185 -6 111 80 -5 177 123 -4 90 75 -3 41 21 -2 148 105 -1 658
676 0 151 113 1 130 88 2 75 61 3 354 323 4 85 75 5 632 554 6 285 217 7 52 25 8
71 42 9 217 128 11 312 188 12 118 75 15 100 46 17 170 79 18 65 15 512 8 2 -15 71
22 -13 140 66 -12 246 124 -9 166 85 -8 169 90 -7 129 80 -6 271 195 -4 146 93 -3
139 83 -2 308 261 -1 205 158 0 324 281 1 73 58 2 138 86 3 102 65 4 370 301 5 319
233 6 451 349 7 80 52 9 154 84 10 234 131 11 169 86 12 218 106 13 59 18 14 50 12
15 141 71 16 95 35 17 79 23 512 9 2 -14 108 47 -12 205 88 -11 96 47 -8 282 176
-7 128 90 -6 295 201 -5 108 89 -4 75 49 -3 94 68 -2 402 324 -1 224 162 0 279 214
2 96 65 3 99 72 4 402 311 5 280 191 6 322 223 7 65 30 9 65 27 10 305 176 11 116
71 12 129 77 13 50 13 15 128 64 16 157 67 512 10 2 -14 88 31 -13 151 90 -11 68
24 -9 81 38 -8 118 83 -7 320 201 -5 139 77 -2 272 182 -1 418 320 1 108 72 2 130
73 3 136 78 4 316 219 5 418 295 8 170 81 9 51 16 10 249 129 11 240 113 14 93 37
16 109 40 17 132 54 512 11 2 -13 127 59 -12 97 40 -10 63 21 -9 101 54 -7 218 110
-6 167 90 -5 45 14 -4 43 14 -3 77 42 -1 262 165 0 224 138 2 94 64 3 133 77 4 100
67 5 313 199 6 69 33 8 145 70 9 224 112 10 48 14 11 208 89 12 132 74 14 97 37 15
156 72 512 12 2 -12 116 52 -9 112 60 -8 107 57 -7 80 34 -6 191 90 -4 60 24 -3
167 77 -2 236 131 -1 68 31 0 176 89 2 58 24 3 170 82 4 324 200 5 101 62 6 127 73
9 225 104 10 194 77 11 104 48 12 185 76 15 134 59 16 145 62 512 13 2 -12 58 13
-9 72 24 -8 133 67 -6 118 59 -3 92 50 -2 314 183 -1 178 81 0 193 94 3 51 17 4
391 240 5 142 63 6 131 74 8 113 65 9 75 27 10 250 112 11 111 50 12 89 34 512 14
2 -8 91 37 -7 185 79 -4 91 42 -3 67 24 -2 165 78 -1 300 165 1 66 27 2 111 68 3
140 82 4 177 78 5 306 167 6 74 31 8 108 55 9 101 47 10 102 44 11 171 70 14 109
40 512 15 2 -9 94 34 -7 157 67 -6 103 46 -4 73 26 -3 192 77 -1 196 83 0 128 73 2
77 34 3 163 72 4 91 42 5 181 85 6 127 75 9 155 79 11 93 34 512 16 2 -8 141 66 -6
117 51 -3 121 61 -2 203 81 0 90 38 3 167 70 4 210 90 6 69 23 7 65 20 9 125 60 10
156 84 512 17 2 -8 113 40 -7 76 20 -2 142 73 -1 111 52 2 72 23 4 170 78 5 118 58
8 92 34 10 180 67 11 81 23 512 18 2 -4 80 23 -3 101 37 -1 111 47 2 97 40 3 97 37
5 122 56 8 108 41 9 106 37 10 82 23 512 19 2 -3 131 57 -2 67 16 -1 96 34 3 147
65 4 69 17 5 72 19 512 20 2 3 80 22 4 136 58 512
-18 3 -5 125 49 -4 58 11 1 144 68 2 91 28 4 73 18 512 -17 3 -5 62 14 -4 174 80 1
88 29 2 168 72 512 -16 3 -9 115 43 -6 57 13 -5 77 23 -4 140 72 -3 128 64 -2 54
13 0 88 33 2 166 83 3 126 58 6 125 55 8 109 38 512 -15 3 -9 151 74 -6 67 19 -5
225 88 -3 108 49 -2 91 37 1 165 78 3 77 26 6 101 41 7 138 66 9 84 24 512 -14 3
-11 117 44 -10 83 24 -9 62 15 -5 235 98 -4 154 75 -3 55 16 -2 62 20 1 203 86 2
153 75 5 68 21 7 157 74 8 110 45 11 73 18 512 -13 3 -10 168 59 -6 98 44 -5 102
47 -4 235 110 -2 76 34 0 163 76 1 126 78 2 267 130 3 85 38 5 69 23 6 124 65 7 78
27 8 168 71 11 67 16 12 115 43 512 -12 3 -12 104 38 -10 146 73 -9 120 59 -8 50
12 -7 63 20 -6 214 99 -5 113 64 -4 179 76 -3 110 59 0 282 155 1 166 79 2 252 131
3 158 73 6 210 90 7 129 70 8 128 67 9 100 42 12 133 58 512 -11 3 -12 83 27 -11
224 87 -9 154 84 -8 71 27 -6 167 92 -5 322 187 -3 111 70 0 176 84 1 436 281 2 80
39 3 135 72 5 130 74 6 108 62 7 294 147 8 58 16 9 92 40 12 69 19 13 99 35 512
-10 3 -13 85 29 -11 229 95 -10 208 87 -7 88 46 -6 106 65 -5 301 177 -4 263 154 1
322 205 2 258 151 3 80 43 5 163 83 7 212 97 8 237 112 11 109 53 13 99 38 14 86
28 512 -9 3 -13 81 29 -12 179 87 -10 298 156 -9 90 46 -7 89 50 -6 328 205 -4 315
209 -3 142 78 -2 54 23 -1 95 66 0 301 207 1 65 32 2 181 99 3 161 83 4 48 17 5
167 93 6 259 142 7 90 47 8 196 93 9 70 29 11 144 80 12 185 82 14 121 58 512 -8 3
-15 85 27 -12 163 70 -11 147 81 -10 119 76 -9 97 57 -6 325 217 -5 257 166 -4 136
77 -3 144 88 0 363 281 1 340 256 2 119 69 3 60 31 5 61 28 6 390 259 7 178 99 8
90 50 9 74 35 10 65 27 12 237 107 13 139 67 14 78 28 512 -7 3 -12 63 21 -11 234
115 -10 53 18 -7 52 21 -6 206 128 -5 375 291 -3 48 23 -2 75 56 0 193 136 1 594
520 2 174 112 4 114 81 5 205 125 6 119 76 7 403 274 8 69 32 9 75 39 10 169 78 11
129 80 12 98 48 13 228 101 512 -6 3 -16 149 78 -13 92 42 -12 86 40 -11 203 101
-10 230 130 -8 128 90 -7 205 127 -6 116 92 -5 343 284 -4 280 232 -3 127 93 -2
100 63 -1 260 225 0 197 156 1 481 447 2 403 357 4 81 60 5 387 296 6 216 138 7
287 194 8 259 161 10 51 18 11 238 135 12 97 52 13 149 83 14 102 50 17 107 44 512
-5 3 -16 137 68 -13 110 59 -12 222 112 -10 299 192 -9 68 35 -8 99 78 -7 281 213
-6 429 370 -4 403 382 -1 388 402 0 671 720 2 332 313 4 190 139 5 208 146 6 495
396 7 70 41 8 185 108 9 109 74 10 43 15 11 163 80 12 235 130 14 67 24 17 77 25
512 -4 3 -14 68 23 -12 253 138 -11 254 153 -10 155 93 -9 173 98 -8 70 44 -6 451
419 -5 377 366 -4 317 315 -3 74 76 0 506 595 1 470 538 2 88 64 4 173 132 5 117
75 6 448 378 7 442 362 8 45 20 10 39 13 11 71 38 12 242 145 13 187 95 16 79 32
512 -3 3 -17 161 79 -14 82 36 -13 120 76 -12 86 46 -11 333 226 -10 84 55 -9 73
45 -8 126 83 -7 203 158 -6 45 24 -5 428 449 -4 142 121 -3 120 101 -2 83 73 -1
387 504 0 248 302 1 419 540 2 270 304 3 97 83 4 257 240 5 272 236 6 88 75 7 568
512 8 170 113 9 60 36 10 178 113 11 234 159 12 71 38 13 204 114 16 117 67 17 125
63 512 -2 3 -17 99 38 -16 132 70 -13 129 62 -12 147 76 -11 212 125 -10 228 150
-9 78 53 -8 105 77 -7 306 276 -6 343 339 -5 121 95 -4 254 284 -3 140 140 -2 417
580 -1 355 519 0 490 759 1 95 94 2 169 200 3 229 263 4 104 81 5 403 394 6 270
244 7 353 332 8 108 83 9 131 81 10 90 73 11 336 262 12 160 88 13 92 60 14 78 39
16 60 20 17 166 80 18 97 40 512 -1 3 -16 103 46 -13 62 24 -12 252 150 -11 69 37
-10 166 95 -7 253 228 -6 548 593 -5 204 207 -4 165 175 -3 49 52 -2 253 359 -1
342 563 0 658 274 1 404 723 2 215 333 3 281 397 5 241 225 6 587 648 7 124 92 9
129 89 10 268 215 11 202 132 12 351 265 13 83 51 14 61 25 15 59 21 16 92 46 17
60 17 18 165 89 512 0 3 -17 168 82 -14 53 16 -12 192 99 -11 288 196 -9 93 78 -8
207 162 -7 101 84 -6 395 426 -5 458 552 -4 75 58 -3 143 164 -2 530 870 -1 30 32
0 454 919 1 439 914 2 140 229 3 228 343 4 99 96 5 336 349 6 594 784 7 319 359 8
148 122 10 359 319 11 167 99 12 301 217 13 246 156 15 60 22 16 160 82 17 127 70
18 111 52 512 1 3 -17 139 71 -14 88 43 -13 142 77 -11 307 213 -10 140 87 -9 60
35 -8 261 228 -7 367 361 -6 166 144 -5 358 427 -4 74 73 -3 85 87 -2 357 587 -1
329 616 0 135 248 1 373 820 2 187 356 3 405 730 4 111 114 5 768 862 6 52 41 7
264 268 8 250 230 10 291 237 11 336 268 13 214 127 16 121 70 17 198 80 512 2 3
-13 209 109 -12 186 96 -11 155 80 -10 118 73 -8 52 31 -7 362 356 -6 366 393 -5
59 59 -3 135 151 -2 138 178 -1 720 305 0 740 342 1 252 497 2 194 339 3 371 596 5
613 678 6 537 554 7 42 23 8 187 150 9 69 51 10 40 16 11 250 176 12 235 150 13 47
17 15 74 32 17 159 70 18 124 63 512 3 3 -14 86 39 -13 105 63 -12 284 175 -11 119
73 -10 103 73 -9 87 64 -8 143 89 -6 548 594 -5 325 367 -3 77 83 -2 363 537 -1
157 215 0 905 369 1 410 716 2 366 592 3 343 480 4 283 325 5 276 272 6 634 634 7
235 197 9 87 68 10 246 175 12 297 200 13 130 79 14 73 35 15 121 70 16 145 72 18
137 63 512 4 3 -14 118 69 -13 82 38 -12 200 101 -11 308 211 -10 73 43 -9 67 40
-8 278 231 -7 352 326 -6 300 291 -5 455 508 -4 134 118 -3 82 79 -2 507 704 -1 57
71 0 131 149 1 462 693 2 150 173 3 40 30 4 441 499 5 339 334 6 356 328 7 370 323
8 99 67 9 41 17 10 416 319 11 251 161 12 232 135 13 172 83 15 88 41 16 208 92 17
115 56 18 97 38 512 5 3 -14 68 24 -13 169 85 -12 50 15 -11 191 105 -9 84 60 -8
225 161 -7 403 365 -6 38 17 -5 274 266 -4 55 46 -3 98 82 -2 137 125 -1 473 613 0
290 362 2 184 191 3 154 139 4 274 268 5 621 617 6 73 57 7 106 70 8 165 103 9 142
88 10 265 172 11 472 332 12 52 18 13 105 68 14 75 33 15 58 18 16 110 54 17 208
80 512 6 3 -13 124 77 -12 184 87 -9 77 48 -7 309 253 -6 250 205 -5 113 83 -3 125
93 -2 30 14 -1 508 592 0 470 546 1 102 85 2 95 79 3 35 18 4 75 68 5 489 455 6
388 326 7 54 28 8 156 86 9 273 181 10 87 52 11 338 216 12 269 153 13 57 21 15
160 84 16 92 37 17 134 68 18 133 62 512 7 3 -14 65 21 -12 180 78 -11 81 40 -10
82 48 -9 88 58 -8 202 125 -6 300 243 -5 70 52 -3 339 326 -2 416 418 -1 150 113 0
528 558 1 188 161 2 50 33 3 272 243 4 270 226 5 47 24 6 383 310 7 84 61 9 239
146 10 277 164 12 231 121 15 154 74 16 215 83 18 107 40 512 8 3 -14 108 51 -13
136 83 -12 105 55 -11 137 68 -9 112 78 -8 272 176 -7 237 157 -6 156 88 -5 148 89
-4 101 70 -3 114 73 -2 569 535 -1 301 266 0 237 199 1 323 288 2 184 138 3 35 14
4 455 387 5 454 372 6 46 19 7 164 92 8 98 70 9 47 16 10 214 112 11 237 127 12 98
56 13 77 31 16 186 72 17 136 65 512 9 3 -13 196 80 -12 78 30 -11 109 61 -9 112
76 -8 104 61 -7 359 251 -6 119 83 -5 95 72 -3 130 84 -2 204 139 -1 399 337 0 218
160 1 84 69 3 231 163 4 159 93 5 576 453 6 311 215 7 91 63 8 77 43 9 194 100 10
48 15 11 382 222 12 77 32 14 101 44 15 96 38 16 69 19 17 136 60 512 10 3 -13 126
63 -12 174 85 -9 180 83 -8 137 86 -7 240 140 -6 313 205 -3 199 122 -2 216 136 -1
208 137 0 332 252 1 93 72 2 125 92 3 217 140 4 215 136 5 334 227 6 317 210 8 99
63 9 176 81 10 110 66 11 223 104 12 177 84 14 106 47 15 163 71 17 82 23 512 11 3
-12 104 44 -9 76 31 -8 216 105 -6 182 91 -5 77 41 -3 140 74 -2 356 247 -1 154 83
0 203 120 2 123 84 3 235 145 4 320 208 5 53 20 6 131 83 7 64 28 9 165 80 10 249
127 12 144 78 15 100 38 16 179 92 512 12 3 -13 109 44 -8 157 77 -7 198 91 -6 77
36 -4 90 52 -2 301 182 -1 273 165 0 52 13 3 65 30 4 288 173 5 257 147 6 58 23 8
149 81 10 275 139 11 211 85 12 55 14 14 134 67 16 139 60 512 13 3 -12 55 11 -10
64 18 -9 65 20 -7 215 96 -4 135 72 -3 166 86 -2 66 28 -1 293 171 1 134 71 2 75
37 3 245 136 5 320 190 8 141 88 9 198 95 10 60 17 11 262 117 12 52 12 14 133 62
15 146 67 512 14 3 -9 106 44 -8 70 22 -7 105 47 -6 108 55 -4 84 36 -3 217 102 -2
147 78 -1 157 72 0 170 81 1 68 29 3 248 130 4 291 159 5 121 66 6 178 77 9 193 78
10 164 72 11 81 28 12 85 30 15 115 42 512 15 3 -8 141 72 -7 61 16 -6 104 47 -3
101 47 -2 233 107 0 106 60 2 44 12 3 146 84 4 279 142 5 141 66 10 205 77 11 92
34 512 16 3 -8 93 31 -7 144 63 -4 77 26 -3 77 26 -2 141 77 -1 181 81 2 121 69 4
188 77 5 195 91 8 104 47 10 116 50 11 129 58 512 17 3 -7 134 57 -4 89 32 -3 134
68 -1 117 57 2 92 39 3 162 88 5 128 59 8 97 38 9 138 69 11 115 43 512 18 3 -3
104 40 -2 143 72 3 138 68 4 132 67 7 97 37 9 142 65 10 145 66 512 19 3 -4 61 13
-2 129 55 2 79 25 4 146 75 7 72 19 8 73 19 512 20 3 -1 71 11 2 108 39 3 65 15 5
84 25 512
-18 4 -3 77 20 2 152 69 512 -17 4 -6 59 12 -5 86 25 -4 82 23 -3 120 51 0 91 31 1
99 35 2 79 21 3 130 56 6 68 15 512 -16 4 -5 164 85 -4 84 27 -3 76 23 1 172 81 7
141 62 512 -15 4 -8 77 21 -5 108 45 -4 193 78 1 135 72 2 179 71 7 123 54 8 136
58 512 -14 4 -10 124 51 -9 82 25 -6 122 60 -4 174 75 -3 104 48 0 95 41 2 170 81
3 109 52 5 68 21 6 114 52 8 166 71 512 -13 4 -12 65 15 -11 112 42 -9 125 61 -6
154 78 -5 198 78 -4 87 37 -3 122 71 0 178 84 1 190 79 3 110 57 6 123 64 7 143 70
9 88 31 12 119 43 512 -12 4 -11 143 70 -10 95 35 -9 73 23 -6 67 22 -5 278 138 -4
103 57 -3 121 75 -1 129 76 0 77 34 1 329 182 2 175 75 3 62 22 5 101 52 7 249 114
8 105 45 11 80 24 13 125 48 512 -11 4 -12 71 20 -11 104 41 -10 184 76 -7 61 20
-6 87 41 -5 191 84 -4 216 107 -3 48 15 -1 143 79 0 160 86 1 247 133 2 339 200 5
93 50 6 220 99 7 128 78 8 210 86 9 65 19 11 90 34 12 112 46 14 70 17 512 -10 4
-12 183 80 -10 206 81 -9 141 73 -7 60 22 -6 285 153 -5 100 59 -4 179 88 -3 158
84 -1 95 59 0 297 185 1 171 94 2 229 124 3 58 23 6 273 147 7 150 72 8 168 74 9
100 46 12 137 70 13 68 18 14 71 18 512 -9 4 -12 138 66 -11 226 94 -10 55 15 -9
171 81 -7 68 29 -6 205 107 -5 414 277 -3 160 83 -1 68 35 0 242 151 1 401 280 4
69 33 6 242 128 7 282 152 8 66 25 9 112 65 11 60 18 12 124 62 13 166 62 512 -8 4
-13 94 37 -11 223 102 -10 176 86 -7 176 86 -6 73 37 -5 322 215 -4 249 160 -3 68
38 -1 108 68 1 308 222 2 196 119 3 93 68 4 74 41 5 188 98 6 69 31 7 322 190 8
157 84 10 91 46 11 188 76 13 201 90 14 85 30 512 -7 4 -13 65 20 -12 104 53 -11
60 19 -10 222 111 -9 74 37 -8 66 31 -7 190 106 -6 237 149 -5 163 91 -4 242 168
-3 106 77 -1 212 151 0 299 234 1 67 41 2 216 150 3 71 46 4 77 50 5 235 147 6 264
159 7 176 83 8 143 77 10 54 19 11 191 81 12 212 92 13 83 31 14 136 78 512 -6 4
-15 76 23 -12 164 76 -11 104 55 -10 146 81 -9 59 26 -8 102 58 -7 86 56 -6 383
296 -5 77 52 -4 157 99 -3 51 28 -2 77 61 -1 188 141 0 606 574 1 289 242 2 184
131 4 107 85 6 412 297 7 243 146 8 149 86 10 135 67 11 61 24 12 240 118 13 115
64 14 76 28 512 -5 4 -13 67 23 -12 137 77 -11 289 169 -9 50 20 -7 117 83 -6 272
207 -5 440 393 -2 137 98 -1 111 82 0 434 438 1 528 536 2 51 33 3 156 111 4 153
102 5 181 121 6 233 154 7 480 352 8 100 69 10 166 95 11 165 76 12 119 65 13 196
93 16 101 46 17 86 31 512 -4 4 -16 84 28 -13 150 73 -12 63 23 -11 307 188 -10
168 84 -9 76 44 -7 344 278 -6 153 98 -5 413 387 -4 283 264 -3 60 49 -2 176 158
-1 491 556 0 108 84 1 385 423 2 258 259 3 65 55 4 110 77 5 199 147 6 153 86 7
269 182 8 337 238 10 55 23 11 267 165 12 129 67 13 151 72 14 70 29 16 84 35 17
172 86 512 -3 4 -16 79 25 -13 155 80 -12 243 130 -11 54 20 -10 200 116 -7 253
199 -6 492 466 -4 443 473 -3 225 231 -2 200 205 -1 315 377 0 540 690 2 286 320 3
52 41 4 56 42 5 343 314 6 422 356 7 81 58 8 205 135 11 156 80 12 336 229 14 63
26 17 143 67 18 138 69 512 -2 4 -12 252 141 -11 197 109 -10 117 83 -8 141 84 -6
509 503 -5 391 408 -4 90 67 -2 89 86 -1 130 130 0 660 954 1 351 485 2 36 29 3 86
80 4 276 299 5 196 171 6 523 477 7 337 271 8 45 21 9 237 179 10 209 144 12 324
237 13 142 89 15 56 19 16 98 50 18 137 76 512 -1 4 -14 65 22 -13 89 45 -12 93 52
-11 315 211 -10 67 36 -9 80 57 -8 182 125 -7 277 237 -6 211 180 -5 481 537 -4 71
69 -3 49 45 -2 408 564 -1 380 558 0 275 413 1 524 850 2 398 612 3 206 265 4 263
321 5 262 275 6 250 218 7 511 448 8 46 26 9 113 76 10 279 226 11 293 225 12 156
84 13 236 150 16 148 75 17 159 77 512 0 4 -16 100 42 -13 128 79 -12 127 71 -11
252 158 -10 141 85 -9 74 49 -8 123 81 -7 432 415 -6 231 211 -5 329 359 -4 170
174 -3 148 157 -2 295 415 -1 723 274 0 609 245 1 699 291 2 31 31 3 216 320 4 295
419 5 389 511 6 348 393 7 212 198 8 29 12 9 180 148 10 124 84 11 395 332 12 150
80 13 209 127 14 63 29 15 59 21 16 52 15 17 222 98 18 107 47 512 1 4 -16 74 25
-13 98 54 -12 275 170 -10 91 68 -7 317 292 -6 442 466 -5 75 83 -4 167 171 -3 313
420 -2 120 130 -1 663 260 0 478 872 1 313 582 2 451 834 3 27 23 4 163 212 5 333
450 6 673 779 7 166 120 8 99 73 9 182 136 10 123 79 11 209 142 12 350 260 15 126
90 16 99 51 17 122 65 18 188 80 512 2 4 -14 93 46 -12 224 124 -11 211 125 -9 115
79 -8 217 168 -7 66 49 -6 356 362 -5 233 240 -4 62 66 -3 201 247 -2 337 494 -1
107 124 0 361 633 1 236 411 2 349 617 3 127 163 4 426 625 5 95 82 6 490 503 7
365 323 8 59 38 9 83 68 10 291 221 11 103 79 12 247 161 13 136 70 15 133 71 16
178 78 18 139 76 512 3 4 -14 120 72 -13 156 74 -12 90 49 -11 247 155 -10 74 45
-8 229 173 -7 301 270 -5 436 489 -4 156 151 -3 85 75 -2 451 648 -1 624 985 0 47
61 1 272 442 3 52 66 4 276 346 5 445 510 7 333 285 8 79 60 10 183 109 11 312 222
13 162 78 15 78 34 16 146 67 17 156 74 18 55 13 512 4 4 -13 213 102 -12 136 83
-11 119 86 -10 105 70 -9 138 88 -7 445 414 -6 356 335 -5 379 397 -4 170 161 -3
62 66 -2 182 206 -1 678 988 0 422 623 1 290 414 2 65 64 3 92 76 4 64 71 5 578
633 6 383 363 7 87 76 8 52 27 9 238 164 10 41 14 11 324 219 12 207 113 13 74 37
14 87 47 17 196 90 512 5 4 -14 63 20 -13 90 43 -12 291 171 -9 210 137 -8 170 99
-7 150 90 -6 432 416 -5 42 23 -4 62 57 -3 115 91 -2 226 251 -1 297 366 0 416 550
1 96 87 2 101 82 3 154 147 4 182 169 5 431 436 6 442 405 7 238 183 8 45 19 9 331
236 10 189 104 11 196 101 12 394 253 13 72 33 14 60 22 15 152 80 16 157 78 17 85
32 18 129 63 512 6 4 -14 88 38 -13 82 37 -12 153 81 -11 129 85 -9 114 75 -8 202
132 -7 89 63 -6 302 258 -5 201 167 -3 164 139 -2 291 313 -1 173 168 0 228 245 1
154 144 2 188 183 3 206 197 4 445 455 5 171 130 6 207 152 7 190 129 8 72 45 9
173 96 10 377 256 11 114 71 12 265 147 13 92 49 15 86 35 16 251 111 17 131 66 18
86 28 512 7 4 -14 65 20 -13 152 64 -11 75 34 -8 185 109 -7 228 155 -5 191 138 -3
48 30 -2 378 381 -1 535 574 0 58 47 1 162 137 2 49 34 4 464 444 5 558 505 6 170
109 7 51 24 8 104 61 10 228 127 11 357 219 13 75 33 14 81 34 16 143 70 17 219 95
512 8 4 -13 153 61 -12 151 66 -9 67 33 -8 62 29 -7 267 183 -6 171 101 -5 58 32
-4 87 74 -3 264 220 -2 139 92 -1 527 516 0 268 242 1 142 101 2 65 50 3 370 329 4
70 50 5 488 411 6 373 286 7 69 41 8 59 28 9 187 96 10 100 63 11 285 161 12 179
76 14 79 30 15 162 87 17 154 81 18 77 21 512 9 4 -14 60 15 -12 214 96 -9 122 78
-8 213 118 -7 126 90 -6 349 256 -5 76 48 -4 99 67 -3 332 266 -2 331 272 -1 220
167 0 330 281 3 246 187 4 411 332 5 57 28 6 418 313 7 74 41 8 57 23 9 190 96 10
259 142 12 253 128 14 53 14 15 153 64 16 147 63 18 95 31 512 10 4 -14 122 55 -13
64 17 -12 137 75 -11 66 23 -8 235 127 -7 169 85 -6 211 118 -5 160 83 -4 59 29 -3
107 74 -2 354 272 -1 247 179 0 120 81 1 82 61 3 129 78 4 387 289 5 269 177 6 101
70 7 92 57 8 90 51 9 84 43 10 295 164 11 198 87 12 85 39 15 68 19 16 154 81 512
11 4 -13 137 64 -10 80 34 -8 111 65 -7 247 133 -6 78 40 -5 87 53 -3 57 25 -2 119
70 -1 286 193 0 165 91 2 89 63 4 255 158 5 310 200 6 110 72 8 141 86 10 189 83
11 283 142 12 83 34 14 130 67 15 82 26 16 85 26 17 134 54 512 12 4 -12 90 33 -9
112 60 -7 201 93 -6 152 72 -3 254 146 -2 55 20 -1 176 90 0 124 85 2 135 68 3 178
93 5 155 81 6 113 62 8 99 58 9 251 129 11 198 83 12 154 79 14 100 40 15 157 78
16 82 24 512 13 4 -12 84 28 -9 100 44 -8 131 75 -6 120 71 -3 225 118 -2 319 190
0 166 85 1 62 26 3 200 103 4 398 251 6 132 83 7 44 12 8 57 20 9 234 112 10 237
107 12 152 69 13 59 15 15 104 37 16 174 69 512 14 4 -8 144 78 -7 88 36 -6 66 22
-2 236 119 -1 185 84 0 107 67 1 55 19 2 117 75 4 326 185 5 227 109 6 58 20 8 133
74 10 223 95 11 173 83 14 111 43 512 15 4 -9 59 14 -7 171 69 -4 108 54 -3 134 82
-2 84 35 -1 188 80 2 119 67 3 118 71 5 275 141 6 102 51 8 95 44 9 133 72 11 191
79 14 123 50 512 16 4 -9 94 30 -8 73 19 -7 112 45 -6 99 40 -4 58 16 -3 180 84 -2
95 39 -1 134 77 0 82 34 2 67 23 3 231 105 4 105 50 5 107 53 6 70 24 8 55 14 9
162 81 10 116 52 512 17 4 -8 130 53 -6 76 22 -3 90 34 -2 184 73 3 129 70 4 206
81 7 59 15 8 61 17 9 113 49 10 190 88 512 18 4 -4 95 33 -2 105 41 -1 124 58 2 76
26 3 51 11 4 141 75 5 108 48 8 103 40 10 146 67 11 101 35 512 19 4 -4 70 17 -3
97 32 -1 119 50 2 98 37 3 129 60 5 90 32 8 134 59 9 115 43 512 20 4 3 133 58 4
100 35 512
-17 5 -4 94 29 1 143 64 2 120 46 512 -16 5 -6 82 24 -4 168 63 0 65 17 1 64 16 2
171 74 3 68 18 6 84 24 512 -15 5 -6 94 32 -5 121 53 -4 71 19 -3 131 64 0 103 44
1 65 12 2 111 47 3 102 41 6 107 41 7 58 12 8 77 20 9 84 23 512 -14 5 -9 97 33 -6
81 28 -5 202 86 -4 56 14 -3 99 42 -2 82 31 0 64 19 1 199 89 2 58 15 6 95 36 7
155 69 9 72 19 512 -13 5 -11 100 32 -10 111 40 -5 182 75 -4 168 80 -2 68 23 1
206 86 2 180 81 5 106 49 7 136 70 8 157 79 11 89 26 512 -12 5 -12 67 15 -10 165
76 -9 57 14 -7 62 18 -6 175 76 -4 213 92 -1 120 73 0 244 118 1 76 32 2 229 108 3
99 51 5 117 55 6 140 67 8 203 89 11 92 31 12 149 69 512 -11 5 -12 96 32 -11 112
47 -10 96 37 -9 115 55 -6 195 82 -5 124 66 -4 113 70 -3 131 85 0 300 171 1 202
96 2 90 48 3 137 70 4 65 26 6 207 91 7 202 99 9 69 20 12 126 54 13 90 27 512 -10
5 -12 68 18 -11 215 83 -9 100 47 -7 62 21 -6 126 76 -5 304 173 -4 123 77 -3 82
43 -1 53 20 0 192 96 1 445 289 2 152 74 3 46 13 5 140 69 6 78 35 7 274 138 8 124
60 13 138 63 512 -9 5 -13 109 44 -12 72 21 -11 184 76 -10 205 85 -7 150 71 -6
150 69 -5 239 130 -4 285 172 -2 49 18 -1 106 75 0 103 71 1 261 157 2 242 140 3
54 21 5 157 81 6 169 78 7 205 94 8 249 122 10 54 14 11 130 67 12 106 45 13 97 36
14 107 43 512 -8 5 -12 189 86 -10 238 113 -9 125 79 -7 130 78 -6 382 255 -5 111
73 -4 268 173 -3 120 82 -1 143 76 0 397 295 1 129 70 2 136 73 5 143 83 6 277 161
8 170 83 11 152 74 12 227 94 14 130 64 512 -7 5 -12 123 66 -11 165 70 -9 79 39
-6 270 172 -5 311 218 -4 81 53 -3 108 73 0 406 330 1 370 293 4 38 13 6 245 143 7
265 153 10 125 68 12 195 76 13 171 76 16 57 13 512 -6 5 -13 92 40 -11 204 95 -10
124 73 -8 98 66 -7 150 85 -6 70 38 -5 367 283 -4 148 86 -2 128 86 -1 272 222 0
129 76 1 542 490 2 134 93 3 80 62 4 148 87 5 217 140 6 106 75 7 372 245 8 156 90
9 81 40 10 178 80 11 206 95 13 222 97 14 65 20 16 74 23 17 113 46 512 -5 5 -13
108 55 -12 109 57 -11 147 66 -10 209 115 -9 62 28 -8 107 80 -7 270 187 -6 187
117 -5 267 206 -4 264 212 -2 126 80 -1 490 481 0 400 387 1 332 310 2 261 225 3
132 83 4 72 54 5 375 303 6 230 149 7 157 78 8 258 155 10 69 32 11 240 128 12 184
83 13 67 24 14 93 43 17 129 62 512 -4 5 -13 81 32 -12 257 133 -11 64 24 -10 152
80 -7 221 148 -6 411 346 -5 72 53 -4 260 226 -3 125 87 -2 139 104 -1 339 350 0
595 657 1 130 99 2 121 87 3 69 61 4 195 156 5 194 141 6 582 483 7 246 160 8 128
64 10 92 55 11 96 57 12 307 179 13 114 71 17 76 26 18 147 77 512 -3 5 -14 78 30
-12 232 115 -11 297 178 -8 132 75 -7 172 108 -6 236 187 -5 400 377 -4 69 59 -2
68 67 -1 290 320 0 570 690 1 326 376 2 106 79 4 95 75 6 372 318 7 513 412 8 65
34 10 144 75 11 129 88 12 203 109 13 221 117 15 70 28 16 113 62 17 66 21 18 106
47 512 -2 5 -14 65 21 -13 126 77 -11 294 182 -10 101 73 -8 119 75 -7 392 340 -6
114 70 -5 434 434 -4 244 236 -3 103 86 -2 241 266 -1 529 682 1 463 614 2 322 402
3 213 233 4 443 514 5 412 437 6 49 29 7 291 226 8 193 121 10 188 112 11 226 141
12 69 36 13 187 106 14 62 25 16 108 59 17 168 74 512 -1 5 -16 83 29 -13 108 61
-12 225 120 -11 131 62 -10 133 88 -9 63 34 -7 329 285 -6 396 377 -5 133 95 -4
233 237 -3 125 109 -2 165 177 -1 431 588 0 584 845 1 186 233 2 153 175 3 62 67 4
212 245 5 627 759 6 321 326 7 93 89 8 125 73 9 145 95 11 321 245 12 266 183 14
52 18 15 52 17 17 149 75 18 108 49 512 0 5 -16 79 26 -12 260 146 -11 96 62 -8 87
69 -7 136 85 -6 471 471 -5 240 234 -4 49 38 -3 48 41 -2 253 316 -1 315 441 0 503
774 1 404 630 2 307 463 3 241 333 4 228 292 5 212 246 6 616 753 7 187 168 8 127
87 9 179 140 10 283 240 11 96 80 12 379 296 13 122 71 15 92 50 16 147 64 18 164
72 512 1 5 -14 84 37 -13 109 64 -12 135 79 -11 266 168 -10 83 55 -9 80 54 -8 207
148 -7 188 139 -6 328 317 -5 288 294 -3 35 23 -2 344 464 -1 344 502 0 457 732 1
374 610 2 154 209 3 65 79 4 302 431 5 434 597 6 353 437 7 310 337 8 52 29 9 114
75 10 329 265 11 267 194 12 201 123 13 260 169 16 194 89 17 170 85 18 84 31 19
95 37 512 2 5 -14 56 17 -13 191 85 -12 59 21 -11 209 119 -10 63 33 -9 86 63 -8
127 81 -7 344 311 -6 77 68 -5 267 272 -4 35 20 -3 69 65 -2 240 308 -1 702 248 0
281 430 1 273 433 2 299 476 3 168 227 4 323 462 5 614 837 6 410 485 7 239 216 8
102 63 10 182 109 11 344 249 12 178 96 13 182 99 15 64 25 16 87 39 17 214 92 18
76 26 512 3 5 -15 50 12 -13 185 85 -12 237 129 -10 51 21 -9 68 38 -8 54 28 -7
222 174 -6 486 485 -5 85 84 -4 78 83 -3 49 45 -2 45 40 -1 471 685 0 660 323 2 33
29 3 267 378 4 206 254 5 462 577 6 641 722 7 157 112 8 144 86 9 131 76 10 129 76
11 214 125 12 298 191 15 144 90 16 83 35 17 134 58 18 123 61 512 4 5 -14 78 31
-12 296 173 -11 136 67 -10 65 34 -9 146 78 -8 290 223 -7 79 59 -6 458 444 -5 263
249 -4 135 107 -3 190 199 -2 417 534 -1 110 99 0 467 670 1 312 439 2 114 115 3
458 635 4 513 664 5 71 73 6 556 581 7 232 185 9 171 100 10 330 228 12 272 160 13
123 70 14 88 47 15 150 72 16 185 86 18 112 50 512 5 5 -14 97 44 -13 145 66 -12
143 88 -11 183 92 -8 338 267 -7 322 266 -6 124 87 -5 356 347 -4 77 75 -3 103 84
-2 412 496 -1 522 669 0 35 24 1 307 390 2 54 54 3 353 435 4 500 590 5 404 425 6
197 160 7 136 83 8 112 62 9 49 20 10 322 214 11 292 177 12 157 77 13 176 80 15
53 15 16 198 94 17 184 86 18 54 12 512 6 5 -13 179 87 -12 102 54 -11 75 34 -9 79
48 -8 73 45 -7 332 268 -6 133 88 -5 145 101 -4 63 50 -3 113 89 -2 160 141 -1 478
561 0 319 367 3 116 90 4 281 282 5 514 513 6 290 247 7 73 52 8 192 118 9 114 74
10 175 89 11 461 302 12 205 97 13 102 59 14 91 45 15 127 72 16 53 13 17 217 84
18 81 25 512 7 5 -13 81 32 -12 196 89 -9 95 67 -8 91 61 -7 152 87 -6 283 221 -4
80 70 -3 351 337 -2 135 98 -1 188 167 0 382 411 2 162 139 3 224 205 4 158 115 5
240 195 6 432 370 7 87 66 8 61 32 9 253 155 10 92 55 11 319 190 12 320 181 15
206 80 16 160 78 17 95 34 18 142 67 512 8 5 -14 77 25 -12 156 69 -11 66 25 -9
112 84 -8 145 79 -7 53 23 -6 256 182 -5 89 65 -3 283 237 -2 424 399 -1 159 119 0
433 429 1 98 68 2 110 78 3 258 220 4 545 500 5 166 107 6 210 142 7 65 36 8 58 27
9 194 102 10 297 178 11 92 48 12 167 80 15 112 53 16 245 98 18 89 28 512 9 5 -14
106 44 -13 139 72 -12 50 12 -11 109 60 -10 61 22 -8 191 104 -7 257 164 -6 94 66
-5 182 114 -4 121 84 -2 452 396 -1 379 333 0 165 115 1 122 76 2 209 155 3 133 78
4 485 407 5 436 350 6 76 49 7 157 85 8 73 38 9 69 33 10 204 96 11 358 210 14 67
21 16 155 75 17 138 64 512 10 5 -13 147 75 -12 95 40 -11 97 46 -10 58 19 -9 125
72 -7 301 191 -6 151 82 -5 77 45 -3 210 135 -2 36 12 -1 392 318 0 139 78 2 88 69
3 296 220 4 36 12 5 459 349 6 186 102 7 62 29 8 114 66 9 170 79 11 332 183 12
157 79 13 55 15 14 97 40 15 157 85 17 126 53 512 11 5 -13 82 27 -12 132 70 -9
131 69 -8 168 84 -7 154 75 -6 182 91 -3 154 79 -2 256 169 0 261 178 2 179 103 3
230 144 4 231 143 5 104 67 6 190 102 7 54 22 8 112 76 9 211 107 10 208 97 11 119
70 12 154 64 15 167 79 16 106 40 17 67 15 512 12 5 -8 195 84 -7 86 39 -6 134 65
-4 104 70 -3 154 82 -2 288 180 -1 187 99 0 109 70 2 82 50 3 197 107 4 264 161 5
206 110 6 64 29 9 123 69 10 321 171 11 96 44 12 92 40 14 102 41 15 72 20 16 168
72 512 13 5 -8 107 53 -7 188 77 -4 181 85 -3 77 37 -2 248 139 -1 297 177 1 77 41
2 188 94 3 62 26 4 271 159 5 230 122 7 52 18 8 199 95 9 95 48 10 207 90 11 192
76 14 163 76 15 70 18 16 100 31 512 14 5 -10 56 13 -9 82 29 -7 131 68 -4 139 78
-3 215 102 -1 237 123 1 75 37 2 114 69 3 284 159 4 81 38 5 227 114 6 55 19 8 123
77 9 211 90 11 170 67 12 72 23 14 113 47 15 157 75 512 15 5 -9 83 27 -8 95 36 -6
69 22 -3 184 90 -2 157 91 -1 99 52 0 53 17 1 55 19 3 227 108 4 239 118 6 117 71
7 49 13 9 151 77 10 217 83 13 55 12 15 108 37 512 16 5 -8 125 55 -7 66 18 -4 68
22 -2 176 75 -1 60 12 0 79 31 2 112 56 3 103 49 4 235 107 5 151 82 6 73 26 8 65
20 10 191 77 11 132 64 14 78 20 512 17 5 -7 133 59 -4 108 46 -3 105 45 -2 77 25
-1 150 84 2 127 70 3 111 52 4 85 32 5 142 79 8 104 44 9 94 36 10 65 17 11 134 63
512 18 5 -3 149 73 -1 110 47 2 95 39 3 170 82 4 71 22 8 78 25 9 153 67 10 82 24
11 71 18 512 19 5 -3 88 28 -2 121 50 3 115 48 4 137 67 7 86 28 9 119 46 10 135
58 512 20 5 -2 98 31 2 89 28 4 119 49 7 59 12 512
-17 6 0 87 26 2 148 66 3 80 21 512 -16 6 -6 83 23 -5 121 46 -3 100 34 0 92 32 1
134 60 3 106 39 512 -15 6 -5 156 79 -4 135 63 -3 64 17 1 171 78 2 108 43 7 128
51 8 87 25 512 -14 6 -4 178 69 1 72 23 2 175 69 3 70 21 5 56 14 6 72 21 7 103 39
8 133 60 512 -13 6 -10 104 35 -9 82 24 -7 61 15 -6 152 76 -5 87 32 -4 131 69 -3
104 47 0 169 71 1 97 42 2 121 61 3 72 24 6 149 76 8 127 58 512 -12 6 -11 138 60
-9 101 40 -6 142 79 -5 212 86 -3 125 73 0 181 84 1 255 121 3 86 36 5 52 13 6 131
73 7 191 79 512 -11 6 -11 121 50 -10 127 59 -7 51 13 -5 222 101 -4 101 54 -3 100
57 -1 161 81 1 330 185 2 199 92 5 138 72 7 204 84 8 187 90 11 89 30 13 112 39
512 -10 6 -12 87 28 -10 198 86 -7 84 36 -6 143 67 -5 89 43 -4 212 106 -3 64 27
-1 175 84 0 194 94 1 159 87 2 267 151 5 108 66 6 224 107 8 203 84 9 80 28 11 53
12 12 131 61 14 84 24 512 -9 6 -12 153 74 -11 84 29 -10 168 67 -9 102 49 -6 252
138 -5 202 101 -4 119 84 -3 160 88 -1 72 37 0 313 200 1 249 142 2 137 82 3 85 48
4 79 41 6 302 171 7 201 90 8 99 51 9 83 32 12 160 69 13 98 35 512 -8 6 -12 95 37
-11 232 100 -9 87 40 -7 94 54 -6 183 87 -5 387 256 -4 118 76 -3 112 86 -1 61 28
0 198 113 1 364 257 2 103 75 3 65 32 4 132 74 5 62 26 6 215 110 7 323 182 10 124
65 11 103 46 12 91 34 13 167 67 16 57 12 512 -7 6 -13 93 37 -12 60 17 -11 180 81
-10 196 88 -8 51 17 -7 223 123 -6 85 49 -5 264 167 -4 222 141 -2 44 17 -1 269
193 0 133 79 1 148 81 2 195 123 3 44 17 4 115 73 5 195 109 7 305 179 8 115 77 10
82 36 11 256 116 12 72 23 13 168 72 14 126 63 512 -6 6 -12 152 69 -10 168 81 -9
107 68 -8 50 18 -7 173 89 -6 299 202 -4 216 143 -3 84 63 -2 42 18 -1 355 294 0
440 382 1 96 76 2 159 98 3 50 25 4 168 102 5 190 115 6 346 232 8 138 71 11 175
81 12 228 99 14 119 58 512 -5 6 -12 180 77 -11 145 78 -9 53 20 -6 284 202 -5 241
174 -4 115 85 -3 47 23 -2 132 83 -1 56 34 0 565 544 1 398 366 2 175 128 4 139 83
5 72 48 6 406 306 7 410 288 9 102 63 10 106 66 12 216 98 13 179 81 16 101 43 512
-4 6 -13 82 32 -12 89 39 -11 271 147 -10 65 28 -8 137 87 -7 143 86 -6 96 75 -5
335 278 -4 64 43 -2 137 98 -1 291 277 0 240 221 1 521 543 2 33 15 3 80 69 4 280
245 5 242 189 6 195 128 7 493 381 8 184 100 9 53 20 10 152 76 11 181 80 12 79 36
13 229 108 16 111 55 17 129 64 512 -3 6 -13 164 73 -12 83 35 -11 215 105 -10 171
84 -8 95 62 -7 354 275 -6 253 192 -5 218 168 -4 289 259 -3 87 76 -2 171 144 -1
390 421 0 296 314 1 308 333 2 144 121 3 110 80 5 527 518 6 257 204 7 233 165 8
162 89 9 67 32 11 256 139 12 166 81 13 137 75 14 91 46 16 53 14 17 181 80 18 76
25 512 -2 6 -13 127 75 -12 230 112 -10 168 98 -8 98 67 -7 212 144 -6 464 412 -5
41 19 -4 303 289 -3 136 104 -2 123 96 -1 153 141 0 625 775 1 59 60 2 179 183 3
42 31 4 61 57 5 405 422 6 594 590 7 92 81 9 125 78 10 45 14 11 93 55 12 359 228
13 43 13 17 98 45 18 132 72 512 -1 6 -14 92 43 -12 206 96 -11 210 112 -10 57 26
-8 196 128 -7 119 85 -6 425 385 -5 330 311 -4 83 74 -3 64 60 -2 283 321 -1 195
211 0 397 512 1 402 530 3 198 225 4 144 137 6 387 406 7 416 407 9 298 213 10 160
77 11 67 32 12 305 205 13 171 89 15 63 25 16 162 78 18 93 38 512 0 6 -14 66 22
-13 110 61 -11 240 136 -9 52 22 -8 167 99 -7 251 199 -6 83 64 -5 408 411 -4 67
60 -3 159 149 -2 339 409 -1 478 636 0 40 31 1 469 669 2 204 252 3 110 102 4 487
649 5 311 374 6 39 25 7 374 397 8 34 15 9 37 15 10 310 200 11 300 236 12 111 81
13 181 104 16 178 81 17 199 84 19 80 27 512 1 6 -13 135 78 -12 176 79 -11 113 80
-10 62 31 -8 69 42 -7 278 226 -6 260 229 -5 187 156 -4 85 72 -3 127 107 -2 252
298 -1 635 886 0 375 531 1 219 295 2 27 18 3 299 419 4 334 457 5 686 928 6 376
458 7 177 169 8 68 61 9 145 98 10 73 39 11 435 329 12 179 102 13 108 71 15 120
72 17 238 112 18 141 80 512 2 6 -13 76 31 -12 247 135 -11 83 43 -9 115 75 -8 118
75 -7 139 97 -6 355 331 -5 123 83 -3 130 114 -2 251 300 -1 396 538 0 635 941 1
175 224 2 95 92 3 118 127 4 133 146 5 270 335 6 615 766 7 143 119 8 124 84 9 96
78 10 245 149 11 133 81 12 381 257 13 101 66 14 50 18 15 150 68 16 166 85 17 86
35 18 182 80 512 3 6 -14 86 37 -13 52 14 -12 215 107 -11 169 83 -9 64 35 -8 228
161 -7 134 78 -6 322 290 -5 294 283 -4 54 43 -3 120 93 -2 539 691 -1 357 470 0
569 821 1 292 408 2 46 51 3 215 280 4 569 789 5 380 475 6 209 213 7 310 309 8 48
27 9 94 74 10 232 140 11 211 109 12 181 86 13 209 108 15 125 79 16 198 84 17 99
46 18 96 39 512 4 6 -14 87 37 -13 192 83 -11 170 81 -9 99 75 -8 174 109 -7 397
340 -5 382 374 -4 36 19 -3 200 194 -2 347 418 -1 749 999 0 64 76 1 342 466 2 94
81 3 76 72 4 515 669 5 700 858 6 224 216 7 183 148 8 93 76 10 192 104 11 309 190
12 76 35 13 83 42 16 122 67 17 179 77 512 5 6 -13 193 81 -12 161 77 -11 108 67
-9 159 87 -8 41 15 -7 322 261 -6 391 347 -5 95 77 -3 81 88 -2 60 54 -1 542 673 0
556 718 2 84 84 3 258 306 4 138 123 5 585 661 6 349 340 7 64 47 8 171 113 9 205
126 11 302 177 12 214 102 14 87 39 15 134 76 17 173 80 18 104 43 512 6 6 -14 75
26 -12 197 91 -11 55 19 -9 134 70 -8 165 94 -6 398 342 -5 154 107 -3 278 266 -2
341 358 0 343 393 1 77 69 3 287 315 4 114 85 5 49 32 6 371 347 7 109 82 8 84 63
9 204 124 10 256 155 11 108 67 12 337 194 13 105 61 15 158 64 16 219 88 18 150
77 512 7 6 -14 79 27 -13 120 64 -12 74 29 -11 112 64 -9 69 36 -8 202 119 -7 180
109 -6 181 115 -5 139 83 -3 167 123 -2 457 468 -1 335 342 0 140 112 1 69 59 2 35
19 3 184 161 4 397 395 5 303 268 6 122 79 8 108 74 9 134 69 10 364 236 11 268
147 12 161 79 13 56 18 14 91 41 16 244 100 17 141 64 18 102 38 512 8 6 -13 167
70 -8 125 68 -7 222 139 -5 54 27 -4 145 89 -3 109 76 -2 206 169 -1 457 450 0 49
30 1 202 174 2 185 151 3 210 172 4 342 303 5 563 501 6 206 144 7 66 40 8 218 133
9 50 19 10 169 78 11 419 255 12 82 37 14 141 73 15 125 63 16 82 28 17 197 75 512
9 6 -13 125 62 -12 137 83 -9 115 76 -8 56 23 -7 190 106 -6 222 138 -4 196 129 -3
328 265 -2 99 70 -1 356 310 0 301 260 1 83 67 2 134 83 3 370 317 4 98 88 5 302
231 6 404 310 7 92 66 8 93 60 9 228 128 10 131 72 11 164 79 12 216 104 14 117 60
15 182 76 16 111 46 17 119 48 512 10 6 -12 126 65 -9 106 64 -8 193 94 -6 262 166
-5 100 75 -3 253 179 -2 322 249 0 340 278 2 88 70 3 369 294 4 343 259 5 37 12 6
207 124 9 174 84 10 271 149 11 139 72 12 121 69 14 55 14 15 122 59 16 203 80 18
68 15 512 11 6 -10 106 55 -8 187 84 -7 186 86 -5 111 83 -4 56 24 -3 60 29 -2 239
158 -1 228 149 0 53 24 1 89 64 3 110 82 4 396 287 5 276 181 7 55 22 8 131 74 10
258 133 11 288 149 16 151 76 17 107 38 512 12 6 -9 95 43 -8 68 24 -7 270 143 -6
96 55 -5 43 13 -4 91 55 -3 164 80 -1 214 124 0 126 75 2 103 75 3 69 36 4 71 36 5
306 191 6 93 56 8 184 89 9 177 78 10 88 43 11 303 152 14 129 64 15 133 64 17 150
68 512 13 6 -9 105 48 -8 72 25 -7 134 72 -6 167 81 -3 250 141 -2 231 123 -1 143
79 0 223 124 2 136 66 3 280 164 4 222 119 5 101 61 6 92 52 8 174 76 9 244 118 10
134 79 11 140 78 12 72 24 13 75 25 15 153 78 16 107 37 512 14 6 -8 133 73 -6 88
38 -3 170 84 -2 271 148 0 151 74 2 75 35 3 246 131 4 310 179 5 70 31 6 76 35 7
78 36 9 131 68 10 249 113 13 94 36 14 84 27 16 171 69 512 15 6 -8 96 37 -7 128
66 -4 148 73 -2 191 83 -1 114 68 0 80 37 1 56 12 2 169 88 4 182 89 5 222 105 8
130 64 10 171 70 11 168 73 13 66 18 14 124 51 512 16 6 -7 116 51 -4 116 59 -3
113 56 -1 159 78 2 137 60 3 236 109 5 204 86 7 55 15 8 101 44 9 165 73 11 137 70
14 87 26 512 17 6 -7 65 15 -6 77 22 -3 132 67 -2 134 70 -1 63 18 0 75 26 3 219
92 4 173 73 7 73 24 9 167 69 10 173 79 13 59 12 512 18 6 -4 96 34 -2 172 79 4
158 83 7 70 21 8 61 15 10 155 74 512 19 6 -4 100 33 -3 73 19 -1 122 54 2 110 46
3 60 15 4 77 24 7 80 26 8 117 47 512 20 6 -1 76 20 2 81 23 3 115 45 8 116 45 512
-16 7 -4 126 50 1 121 48 2 150 71 512 -15 7 -6 107 37 -4 157 78 -3 95 34 0 105
41 2 151 75 3 88 30 6 91 29 8 108 36 512 -14 7 -6 106 39 -5 143 68 -3 135 68 0
116 54 1 147 81 3 70 20 6 107 42 7 98 34 512 -13 7 -9 88 27 -5 199 85 -4 87 31
-3 76 25 0 65 19 1 224 93 2 98 40 6 72 22 7 168 80 10 58 12 11 65 14 512 -12 7
-10 148 70 -7 72 21 -6 62 16 -5 119 57 -4 170 86 -1 95 43 0 88 35 1 136 78 2 199
81 5 133 73 7 132 67 8 169 76 11 105 36 12 68 15 512 -11 7 -10 126 54 -9 84 29
-7 100 43 -6 193 76 -4 160 70 -3 56 17 -1 143 68 0 277 142 2 183 76 3 54 17 4 74
30 5 93 41 6 200 92 8 157 72 11 79 24 12 153 65 512 -10 7 -12 87 27 -11 133 61
-9 98 40 -6 155 73 -5 182 76 -3 121 73 0 252 135 1 289 160 3 61 23 4 57 20 6 202
85 7 261 117 12 106 40 13 133 55 512 -9 7 -11 189 94 -10 90 35 -9 63 19 -7 141
63 -5 266 146 -4 135 70 -3 56 21 -1 137 71 1 340 212 2 163 86 3 52 18 5 108 67 7
348 185 8 164 87 11 125 60 13 141 67 14 68 16 512 -8 7 -13 96 34 -12 88 29 -11
138 74 -10 206 84 -7 156 72 -6 200 97 -5 121 69 -4 274 165 -3 84 50 -1 182 98 0
266 167 1 77 41 2 234 137 4 53 20 5 203 105 6 201 100 7 159 73 8 177 76 11 162
76 12 157 72 14 82 24 512 -7 7 -12 159 66 -11 69 22 -10 167 73 -7 116 78 -6 308
192 -5 196 108 -4 211 122 -3 107 83 -1 123 74 0 425 324 1 227 147 2 110 65 5 244
144 6 306 189 7 141 75 8 109 66 10 69 26 11 114 54 12 221 86 14 82 26 512 -6 7
-12 90 35 -11 216 96 -8 113 77 -6 215 127 -5 335 235 -4 45 17 -3 47 20 -2 127 75
-1 80 57 0 297 229 1 357 288 2 122 75 4 110 75 6 253 155 7 335 218 9 97 54 10
143 64 11 125 73 12 164 71 13 208 79 16 100 36 17 86 26 512 -5 7 -13 82 29 -11
180 85 -10 139 66 -8 101 67 -7 191 104 -5 259 179 -4 135 82 -3 42 17 -2 140 84
-1 392 342 1 316 268 2 205 151 4 201 139 5 305 231 6 73 42 7 315 212 8 94 59 9
86 46 10 159 75 11 223 98 13 208 83 16 90 34 17 156 68 512 -4 7 -13 108 51 -12
159 73 -11 74 29 -10 127 83 -9 40 12 -7 228 142 -6 214 136 -5 112 67 -4 144 86
-2 93 76 -1 428 407 0 403 388 1 86 81 2 287 262 3 127 83 5 333 280 6 467 383 8
115 71 9 86 49 11 193 87 12 212 92 14 73 25 17 117 50 512 -3 7 -12 229 104 -11
90 43 -10 77 36 -8 100 72 -7 92 64 -6 312 242 -5 168 109 -4 100 65 -3 96 84 -2
114 80 -1 133 96 0 513 548 1 155 125 2 125 93 3 163 134 4 376 369 5 73 59 6 488
439 7 365 294 8 122 75 9 89 56 10 184 89 11 51 16 12 230 109 13 157 66 15 90 40
16 73 25 18 136 65 512 -2 7 -13 55 15 -12 167 88 -11 248 133 -9 52 21 -8 234 148
-7 260 183 -6 109 78 -5 398 355 -4 55 36 -3 73 65 -2 343 349 -1 274 279 0 204
197 1 367 414 3 28 13 4 285 291 5 222 200 6 248 215 7 351 307 8 86 69 10 223 125
11 168 83 12 67 25 13 216 107 15 93 46 16 119 68 17 129 73 512 -1 7 -13 148 70
-12 47 12 -11 205 102 -10 103 71 -9 63 30 -8 149 78 -7 390 313 -6 144 81 -5 283
243 -4 238 211 -2 189 175 -1 485 569 0 344 401 1 185 193 2 178 184 3 89 73 4 209
213 5 306 329 6 161 131 7 97 76 8 96 84 9 40 16 10 136 75 11 276 159 12 207 98
13 132 79 16 93 46 17 188 92 18 54 13 512 0 7 -14 52 14 -13 118 66 -12 195 88
-10 51 19 -9 82 51 -8 54 24 -7 212 143 -6 357 306 -4 143 106 -3 98 70 -2 103 85
-1 467 570 0 628 812 1 135 125 2 225 268 3 86 86 4 145 139 5 324 373 6 566 643 7
46 30 8 120 93 9 207 163 11 236 145 12 399 269 15 95 55 16 80 36 17 114 61 18
159 64 512 1 7 -14 87 36 -12 190 87 -11 179 85 -9 89 60 -8 162 94 -6 334 291 -5
124 92 -4 76 69 -3 125 98 -2 309 347 0 546 727 1 442 598 2 210 255 3 231 286 4
324 411 5 80 83 6 542 655 7 167 152 9 295 268 10 235 184 12 342 206 13 165 83 15
96 52 16 222 108 18 159 84 19 76 24 512 2 7 -14 69 22 -13 141 75 -11 169 78 -10
46 16 -8 174 104 -7 191 132 -6 110 75 -5 219 185 -4 49 32 -3 186 172 -2 501 605
-1 391 485 0 66 74 1 363 490 2 197 243 3 81 72 4 480 645 5 624 809 6 44 33 7 373
407 8 137 104 10 343 269 11 295 184 12 129 72 13 201 98 16 202 93 17 189 76 19
81 27 512 3 7 -13 184 86 -12 89 42 -11 100 60 -10 66 33 -9 96 70 -8 43 15 -7 285
219 -6 153 98 -5 217 182 -4 38 20 -3 62 54 -2 397 465 -1 492 625 0 301 382 1 235
294 2 124 123 3 65 82 4 200 231 5 594 755 6 417 483 7 99 73 9 191 137 10 66 36
11 340 218 12 253 134 14 75 34 15 97 48 17 203 86 18 100 42 512 4 7 -13 132 80
-12 224 113 -10 64 30 -9 163 91 -8 157 89 -7 237 170 -6 390 343 -5 47 25 -4 185
156 -3 259 261 -2 210 210 -1 308 360 0 487 626 2 144 151 3 384 496 4 249 288 5
259 287 6 516 580 7 77 76 9 212 147 10 224 136 11 148 85 12 318 181 13 133 82 14
77 32 15 197 82 16 113 57 17 90 36 18 144 66 512 5 7 -14 88 34 -12 205 94 -11 72
30 -10 58 23 -9 72 40 -8 230 153 -6 334 274 -5 271 233 -3 80 69 -2 393 430 -1
254 273 0 366 437 1 309 372 2 163 167 3 372 453 4 430 512 5 147 124 6 343 348 8
48 25 9 177 106 10 367 253 11 126 76 12 157 77 13 96 50 15 113 57 16 168 75 17
81 28 18 95 35 512 6 7 -14 70 21 -13 141 70 -11 90 46 -8 190 112 -7 298 223 -6
35 12 -5 153 102 -4 43 23 -2 206 185 -1 461 512 0 120 92 1 105 85 2 47 36 3 75
78 4 319 339 5 348 352 6 82 67 7 46 24 8 182 120 10 304 195 11 355 216 13 50 14
14 118 63 16 157 66 17 196 80 512 7 7 -13 155 76 -12 131 80 -9 77 41 -7 310 227
-6 224 156 -5 71 49 -4 81 69 -3 186 144 -1 392 399 0 300 304 1 55 43 2 53 40 3
151 120 4 43 25 5 316 294 6 200 154 8 174 106 9 231 141 10 139 78 11 368 225 12
180 92 14 123 68 15 194 87 17 192 74 18 94 32 512 8 7 -14 93 35 -12 168 82 -9
139 64 -8 135 77 -7 101 75 -6 250 170 -4 94 73 -3 312 264 -2 277 237 -1 139 93 0
380 372 1 63 50 2 43 23 3 352 332 4 400 373 5 223 174 6 314 256 9 355 241 10 214
116 11 126 79 12 209 98 15 216 84 16 185 73 17 67 17 18 130 54 512 9 7 -12 98 44
-11 64 22 -9 75 34 -8 221 122 -7 93 60 -6 200 117 -5 97 70 -3 191 127 -2 397 343
-1 121 80 0 262 219 1 88 79 2 136 87 3 144 92 4 552 490 5 277 211 6 160 96 7 64
36 8 72 39 9 126 84 10 365 228 11 213 105 12 85 40 14 52 14 16 212 76 17 97 34
18 96 32 512 10 7 -13 118 53 -11 63 20 -10 75 30 -8 122 81 -7 242 138 -5 85 54
-4 82 54 -3 109 73 -2 241 167 -1 359 291 0 63 39 1 56 31 2 192 131 3 120 72 4
332 254 5 487 386 7 49 19 8 158 76 9 64 27 10 138 74 11 321 178 12 93 49 14 107
52 15 59 15 16 103 40 17 164 75 512 11 7 -12 78 25 -10 78 31 -9 112 61 -7 258
140 -6 114 69 -4 61 28 -3 181 99 -2 84 55 -1 249 168 0 196 124 1 108 85 2 175
106 3 234 154 5 297 200 6 167 86 7 80 44 8 138 77 9 192 93 10 60 22 11 209 96 12
143 63 14 106 48 15 144 76 17 105 37 512 12 7 -12 100 38 -9 118 64 -8 184 89 -7
89 43 -6 189 90 -3 211 116 -2 231 136 0 188 103 2 75 43 3 212 122 4 257 155 6
126 71 7 77 39 9 249 131 10 265 135 11 52 15 12 79 30 15 139 67 16 141 67 512 13
7 -8 167 71 -7 105 53 -6 96 49 -4 115 76 -3 49 16 -2 242 135 -1 208 113 0 92 57
1 129 62 2 112 62 3 129 80 4 327 202 5 215 114 6 78 40 7 95 55 8 89 47 9 109 64
10 298 154 11 117 61 13 78 27 14 159 62 16 158 77 512 14 7 -8 69 21 -7 139 80 -4
134 73 -3 109 63 -2 144 72 -1 235 124 2 210 104 3 121 73 4 86 43 5 198 95 7 66
26 8 184 78 9 95 43 10 121 65 11 167 84 14 157 70 15 106 39 512 15 7 -9 85 29 -7
104 47 -6 53 14 -4 122 68 -3 178 83 -1 182 85 2 164 80 3 273 144 4 114 59 5 99
54 6 80 37 8 104 52 9 193 89 10 113 52 11 96 39 14 74 21 15 134 57 512 16 7 -8
99 36 -3 110 53 -2 155 76 0 94 44 1 103 52 2 68 23 3 194 82 4 253 121 6 108 55 7
115 61 9 116 54 10 223 87 512 17 7 -7 90 29 -4 97 37 -2 137 69 -1 115 57 2 164
73 4 189 84 5 135 57 6 89 36 8 125 62 10 165 64 11 113 47 512 18 7 -4 103 40 -3
119 52 -1 140 69 2 144 80 3 143 81 5 105 47 8 101 40 9 145 74 512 19 7 -3 120 48
-2 84 25 3 141 72 4 81 27 9 142 66 512 20 7 -2 119 45 1 82 24 3 64 15 4 97 33 7
82 24 512
-16 8 0 101 34 2 94 28 512 -15 8 -5 139 60 -3 85 24 0 83 25 1 148 72 3 60 12 7
124 47 512 -14 8 -5 139 62 -4 147 73 -2 64 17 -1 52 12 1 137 64 2 142 72 5 60 14
7 132 55 8 98 32 512 -13 8 -6 115 47 -4 165 83 -3 56 14 0 130 67 2 157 83 3 71
23 6 89 32 8 115 45 512 -12 8 -9 93 30 -6 163 65 -5 113 50 -4 84 30 -3 88 35 -1
73 25 0 197 85 1 156 74 2 74 26 3 78 28 6 153 71 7 89 32 8 72 20 12 129 50 512
-11 8 -6 112 54 -5 205 85 -3 59 19 0 143 76 1 266 129 2 52 14 3 49 12 4 67 23 5
88 37 6 111 54 7 203 76 8 84 30 10 70 19 13 145 59 512 -10 8 -11 112 43 -10 129
59 -7 95 41 -6 80 30 -5 143 78 -4 127 72 -1 198 92 0 62 23 1 229 112 2 198 90 3
58 21 5 151 65 6 83 32 7 175 73 8 207 83 11 102 40 13 96 30 14 101 32 512 -9 8
-12 97 33 -10 180 81 -7 107 55 -6 225 105 -4 164 82 -1 195 97 0 230 124 2 183 86
4 53 19 5 130 71 6 300 160 8 157 70 9 80 31 11 75 24 12 167 84 14 80 21 512 -8 8
-12 130 60 -11 120 55 -10 108 46 -9 66 21 -8 75 29 -6 232 116 -5 202 100 -4 48
15 -3 135 72 0 271 165 1 279 174 2 88 52 3 71 36 4 66 29 6 326 186 7 253 129 10
96 42 12 160 88 13 133 61 512 -7 8 -11 207 91 -10 55 14 -8 77 32 -7 146 67 -6 81
40 -5 327 208 -4 118 80 -1 149 82 1 303 204 2 103 69 4 118 84 5 125 77 6 104 66
7 296 168 9 66 26 10 129 65 11 161 80 13 181 66 14 55 12 16 73 18 512 -6 8 -13
62 16 -12 93 36 -11 137 68 -10 168 73 -7 190 96 -6 158 76 -5 202 107 -4 231 143
-2 55 26 -1 252 176 0 219 148 1 117 80 2 180 108 3 50 22 4 98 64 5 212 129 6 234
135 7 131 75 8 94 52 10 84 40 11 248 115 12 117 56 13 148 64 14 101 38 512 -5 8
-12 172 81 -11 62 18 -10 123 72 -8 45 14 -7 107 70 -6 241 145 -4 222 144 -3 51
23 -1 241 177 0 463 400 1 134 84 2 143 84 3 42 18 5 217 147 6 423 315 7 131 81 9
62 25 10 53 18 11 143 78 12 260 116 14 69 20 16 71 19 512 -4 8 -12 143 64 -11
192 81 -8 117 79 -6 207 127 -5 206 134 -3 73 50 -2 177 121 0 445 411 1 381 346 2
138 90 4 228 178 5 104 76 6 388 307 7 349 259 10 182 89 11 76 34 12 233 102 13
221 90 15 76 25 16 130 63 17 59 13 512 -3 8 -13 86 34 -11 220 103 -10 68 27 -8
124 67 -7 227 137 -5 271 198 -4 172 111 -2 308 269 -1 332 303 1 468 470 2 62 49
3 44 24 4 259 223 5 511 475 7 319 249 9 61 30 10 159 79 11 268 146 13 195 76 14
62 18 15 63 18 16 117 57 17 148 80 512 -2 8 -13 129 71 -12 138 86 -11 128 67 -10
143 67 -9 57 23 -8 56 24 -7 338 244 -6 318 240 -5 184 121 -4 204 152 -2 76 68 -1
401 405 0 399 415 1 213 198 2 152 124 3 217 197 4 53 38 5 469 468 6 408 381 7
130 91 9 124 70 11 258 145 12 275 146 17 139 75 18 95 37 512 -1 8 -13 78 28 -12
222 102 -11 60 20 -10 137 81 -9 61 27 -8 133 73 -7 125 65 -6 448 374 -5 58 32 -4
127 79 -3 48 28 -2 174 144 -1 167 141 0 376 407 1 271 286 2 69 70 3 98 79 4 79
70 5 75 58 6 580 600 7 193 155 9 257 200 10 140 83 11 126 76 12 377 226 13 98 50
15 95 45 16 90 42 18 114 54 512 0 8 -14 94 38 -13 49 12 -12 146 75 -11 221 112
-9 50 19 -8 201 122 -7 164 93 -6 324 257 -5 312 263 -3 49 31 -2 316 323 -1 212
202 0 217 219 1 367 430 2 156 148 3 175 178 4 207 210 5 97 85 6 260 257 7 288
273 9 142 88 10 298 236 11 55 26 12 250 152 13 197 88 15 87 47 16 212 105 17 129
77 18 79 29 19 85 32 512 1 8 -13 141 86 -11 157 76 -8 91 63 -7 236 164 -5 295
254 -4 149 106 -3 68 58 -2 317 333 -1 546 640 0 165 161 1 366 447 2 50 45 3 77
71 4 352 424 5 464 548 6 106 86 7 98 81 8 42 23 9 63 47 10 261 211 11 309 242 12
45 17 13 165 84 16 150 67 17 223 101 19 72 21 512 2 8 -13 125 67 -12 196 87 -10
58 23 -9 58 26 -7 217 147 -6 229 170 -3 127 91 -1 530 630 0 373 451 1 90 78 3
293 362 4 88 76 5 563 690 6 431 489 7 122 93 8 80 77 9 169 125 11 356 274 12 268
164 14 92 44 15 158 68 17 157 70 18 150 85 512 3 8 -14 64 18 -12 220 106 -11 107
62 -9 94 63 -8 157 84 -7 89 65 -6 312 253 -5 64 44 -4 80 54 -3 175 147 -2 336
356 -1 101 84 0 274 313 1 90 77 2 131 125 3 255 306 4 363 445 5 84 67 6 462 526
7 84 73 9 249 205 10 227 164 12 334 202 13 117 71 14 95 47 15 194 77 16 179 85
18 150 87 512 4 8 -14 96 39 -13 92 38 -12 143 73 -11 155 91 -8 249 165 -7 219
143 -6 293 233 -5 213 164 -4 95 79 -3 173 140 -2 388 416 -1 438 502 0 238 262 1
290 341 2 124 110 3 219 246 4 552 682 5 544 644 6 130 102 7 249 237 8 147 104 9
149 93 10 309 234 11 296 193 13 112 63 15 69 22 16 185 87 17 131 66 512 5 8 -13
160 80 -11 138 85 -10 65 28 -9 101 69 -8 125 87 -7 356 275 -6 84 61 -5 230 176
-3 152 114 -2 137 104 -1 429 475 0 174 162 1 358 418 2 29 15 3 64 67 4 271 294 5
631 719 6 295 291 7 83 73 8 108 79 9 119 70 10 172 98 11 403 267 12 180 82 14 99
51 15 142 83 16 75 25 17 170 70 18 67 18 512 6 8 -13 109 51 -12 155 83 -9 126 68
-8 45 16 -7 256 172 -6 343 269 -3 315 290 -2 92 85 -1 200 179 0 366 395 1 61 52
2 58 50 3 240 245 4 44 29 5 253 241 6 407 402 8 131 88 9 214 147 10 131 75 11
317 195 12 194 90 13 66 26 14 89 41 15 193 76 16 81 28 17 120 54 18 117 49 512 7
8 -12 131 73 -11 87 40 -9 101 63 -8 184 102 -6 277 199 -5 128 80 -3 206 160 -2
365 342 0 234 219 1 112 84 2 56 44 3 324 324 4 374 376 5 120 90 6 317 281 7 68
47 9 264 179 10 294 188 12 201 96 15 144 79 16 189 76 18 103 37 512 8 8 -13 142
77 -11 84 37 -9 43 12 -8 209 113 -7 185 102 -6 74 44 -5 67 40 -4 67 42 -3 80 60
-2 333 292 -1 415 392 0 132 88 1 120 78 2 146 99 3 138 94 4 471 450 5 407 372 6
36 14 8 200 127 9 161 84 10 326 206 11 288 162 12 88 44 14 160 82 16 192 78 17
166 68 512 9 8 -13 144 71 -12 71 23 -9 73 31 -8 71 31 -7 229 138 -6 92 61 -5 86
57 -4 226 153 -3 144 80 -2 117 76 -1 381 330 0 102 70 1 117 78 2 256 208 3 229
181 4 98 76 5 483 414 6 248 174 7 49 21 8 140 78 9 190 104 10 120 77 11 285 160
12 140 67 14 143 74 15 171 73 17 181 70 512 10 8 -12 99 42 -9 109 60 -8 96 51 -7
96 57 -6 186 99 -4 129 71 -3 274 192 -2 129 77 -1 143 85 0 280 217 1 70 47 2 123
87 3 414 344 4 280 210 5 205 132 6 241 157 9 251 144 10 198 98 11 94 50 12 156
68 14 66 21 15 159 73 16 148 76 17 92 32 512 11 8 -12 68 19 -9 101 51 -8 163 77
-7 82 38 -6 137 74 -4 45 16 -3 103 75 -2 273 182 0 146 78 2 70 42 3 205 133 4
446 337 5 107 74 6 170 89 7 70 35 8 107 75 9 114 78 10 307 173 11 129 83 13 56
16 15 78 26 16 164 69 512 12 8 -10 91 38 -8 147 67 -7 241 121 -6 55 18 -4 131 71
-3 116 83 -2 199 111 -1 201 115 2 113 71 4 206 117 5 299 188 8 174 82 9 63 24 10
216 101 11 254 121 14 107 47 15 55 13 16 106 40 17 105 37 512 13 8 -10 63 17 -9
101 45 -7 211 92 -6 76 31 -5 46 13 -4 67 28 -3 211 110 -2 82 44 -1 260 154 0 123
73 1 60 26 2 160 76 3 174 86 4 72 35 5 228 123 8 190 87 9 210 99 11 216 89 14
116 52 15 173 74 17 113 41 512 14 8 -9 78 25 -8 108 50 -7 64 19 -6 98 47 -5 65
23 -3 185 85 -2 179 80 -1 67 29 0 171 80 2 85 45 3 297 170 4 236 124 7 54 18 8
124 80 9 245 112 10 168 71 11 77 27 13 105 44 15 146 69 16 137 61 512 15 8 -8 86
29 -7 76 25 -5 55 15 -4 63 20 -3 120 67 -2 195 87 0 93 50 1 82 39 2 57 20 3 134
66 4 249 124 5 103 58 6 58 20 8 83 35 9 102 47 10 226 93 11 74 24 13 115 51 14
98 35 512 16 8 -8 71 20 -7 99 38 -4 118 58 -2 108 52 -1 143 76 1 57 17 2 198 84
3 145 81 4 161 77 5 180 85 6 66 23 8 160 81 9 102 44 10 98 39 11 139 74 14 107
40 512 17 8 -7 88 28 -4 81 27 -3 138 74 -1 143 78 2 144 71 3 226 94 5 145 76 7
92 38 8 97 40 9 213 79 10 91 32 11 98 36 512 18 8 -5 78 22 -3 103 40 -2 138 69 0
60 16 1 79 28 3 139 70 4 167 80 7 99 40 9 161 79 10 154 60 512 19 8 -4 93 29 -2
118 47 -1 93 32 2 93 35 4 109 45 7 95 36 8 77 22 10 102 35 512 20 8 -1 86 24 2
106 39 3 73 19 8 110 41 9 66 15 512
-15 9 2 138 60 5 65 15 512 -14 9 -4 130 54 -3 88 28 0 119 50 2 110 44 6 99 32 8
99 31 512 -13 9 -6 89 28 -5 159 82 -3 134 67 0 109 47 1 199 83 6 117 49 7 121 49
512 -12 9 -5 167 60 -4 97 38 -1 57 15 1 200 83 2 112 53 5 69 21 7 166 78 8 86 28
11 86 24 512 -11 9 -7 87 31 -6 95 37 -5 57 14 -4 156 66 -1 147 79 0 133 76 1 73
26 2 175 78 5 118 60 6 118 57 7 77 26 8 142 73 11 107 38 12 105 36 512 -10 9 -10
93 30 -6 165 76 -5 78 28 -4 105 52 -3 53 15 -1 100 50 0 239 117 1 86 40 2 121 61
4 83 35 6 235 101 7 111 52 8 65 19 12 155 75 13 69 15 512 -9 9 -11 149 71 -9 70
21 -7 53 13 -6 114 60 -5 223 99 -3 73 33 -2 82 41 -1 74 34 0 176 85 1 272 151 3
65 26 4 85 43 5 74 32 6 154 72 7 309 151 8 53 13 10 68 20 11 72 21 12 86 27 13
158 73 512 -8 9 -11 158 86 -10 109 47 -7 162 70 -6 69 24 -5 254 132 -4 126 90 -3
85 46 -2 66 29 -1 231 128 1 258 148 2 114 68 3 121 78 4 93 55 5 211 107 7 257
130 8 131 77 10 64 20 11 146 71 12 59 14 13 118 47 14 81 23 512 -7 9 -12 117 50
-11 59 14 -10 159 74 -7 146 84 -6 226 114 -4 222 119 -3 54 21 -1 227 133 0 298
194 2 160 79 5 226 120 6 233 125 8 118 62 11 147 68 12 185 73 512 -6 9 -12 135
67 -11 93 35 -10 73 25 -8 76 31 -6 250 139 -5 179 87 -4 130 62 -3 82 50 -1 54 24
0 285 196 1 251 167 3 65 35 4 58 28 5 99 70 6 248 150 7 166 79 9 109 68 10 107
58 12 231 96 13 89 31 16 61 12 512 -5 9 -11 201 78 -10 65 21 -8 115 74 -7 109 66
-6 139 79 -5 269 171 -2 144 77 -1 167 97 0 191 123 1 342 271 2 71 46 4 158 91 5
105 72 6 157 83 7 255 156 9 128 73 10 184 86 11 142 77 12 148 74 13 219 84 16
118 45 17 135 57 512 -4 9 -13 96 37 -12 77 26 -11 143 87 -10 129 78 -8 66 27 -7
187 95 -5 193 112 -4 108 70 -3 76 49 -2 249 179 -1 346 284 0 132 87 1 232 176 2
101 85 3 44 20 4 165 110 5 358 286 6 210 134 7 263 174 8 44 15 10 128 69 11 255
133 12 66 23 13 185 78 17 176 75 512 -3 9 -13 70 20 -12 177 75 -10 96 49 -7 158
77 -6 248 162 -4 156 89 -3 110 69 -2 92 80 -1 354 311 0 473 445 2 158 111 3 100
83 5 300 246 6 557 483 7 139 86 8 108 71 9 99 72 10 59 25 11 148 72 12 280 147
15 71 21 17 101 37 18 133 58 512 -2 9 -12 192 77 -11 128 72 -8 125 96 -6 241 159
-5 285 213 -4 86 65 -3 84 70 -2 220 171 -1 56 35 0 349 333 1 242 214 2 115 76 3
171 136 4 274 237 5 45 23 6 445 400 7 262 207 10 176 98 11 84 48 12 199 96 13
154 73 15 96 38 16 95 36 18 93 33 512 -1 9 -13 80 29 -12 81 31 -11 184 79 -9 67
29 -8 202 113 -7 190 109 -6 105 84 -5 412 341 -4 112 83 -2 287 253 -1 351 343 0
66 57 1 303 305 3 95 83 4 243 231 5 393 391 6 133 87 7 196 152 8 58 35 10 184
111 11 261 171 13 144 76 15 79 27 16 115 55 17 145 69 512 0 9 -13 156 75 -12 75
28 -11 98 49 -10 101 60 -9 114 74 -8 98 67 -7 257 172 -6 128 81 -5 301 239 -4
157 104 -3 57 37 -2 62 44 -1 412 424 0 293 297 1 45 28 2 84 78 4 90 80 5 319 328
6 322 314 7 181 140 8 96 76 9 96 74 10 86 66 11 302 215 12 256 162 13 117 72 15
63 18 17 182 85 18 91 37 512 1 9 -13 76 26 -12 181 84 -11 104 57 -10 87 46 -9 90
55 -8 68 36 -7 105 61 -6 372 299 -4 66 47 -3 138 93 -2 192 162 -1 168 141 0 567
648 1 53 44 2 136 118 3 171 162 4 140 121 5 232 231 6 528 571 7 38 19 9 273 233
11 196 133 12 403 311 15 165 79 16 161 89 17 79 29 18 163 76 512 2 9 -14 84 30
-12 133 81 -11 180 77 -9 68 32 -8 124 85 -7 70 39 -6 234 165 -5 260 205 -3 283
258 -2 313 303 -1 121 87 0 325 355 1 269 292 2 161 151 3 172 169 4 298 332 5 231
233 6 255 254 7 217 199 8 89 79 9 147 102 10 267 214 11 61 33 12 248 164 13 71
36 15 113 53 16 217 86 18 115 53 19 64 17 512 3 9 -14 64 17 -13 121 61 -11 136
77 -8 167 88 -7 233 154 -5 175 116 -4 54 33 -3 68 54 -2 452 470 -1 257 255 0 35
20 1 268 292 2 239 259 3 104 91 4 354 405 5 721 849 7 231 217 9 52 31 10 269 209
11 346 261 14 63 22 16 140 75 17 191 87 512 4 9 -13 142 63 -12 129 75 -11 75 31
-9 125 78 -7 328 241 -6 214 142 -3 219 185 -2 148 110 -1 417 447 0 165 149 1 143
123 2 110 84 3 144 130 4 135 115 5 634 729 6 344 357 7 150 115 8 77 68 9 163 108
10 47 21 11 341 243 12 296 187 14 108 60 15 132 71 17 161 77 18 126 57 512 5 9
-14 53 12 -13 84 31 -12 155 69 -9 160 88 -8 179 96 -7 128 67 -6 322 248 -5 68 43
-4 83 69 -3 193 145 -2 337 323 -1 58 44 0 442 485 3 293 314 4 209 199 5 184 164
6 519 545 7 136 98 9 309 253 10 276 196 11 59 26 12 342 213 13 58 21 15 197 87
16 137 70 18 136 63 512 6 9 -12 99 45 -11 79 33 -10 52 17 -8 207 118 -7 127 74
-6 241 165 -5 199 132 -4 54 29 -3 142 94 -2 326 302 -1 354 351 0 262 252 1 236
229 2 60 51 3 172 147 4 417 440 5 241 225 6 136 96 7 177 136 8 111 84 9 225 158
10 280 191 11 241 141 12 135 83 13 48 14 14 81 34 16 165 67 17 100 38 512 7 9
-13 134 69 -11 78 32 -8 111 78 -7 241 151 -6 46 17 -5 162 98 -4 71 46 -3 51 28
-2 230 185 -1 413 401 0 192 161 1 204 177 2 56 42 4 257 234 5 440 433 6 95 75 7
73 56 8 207 142 10 246 153 11 359 231 14 152 76 15 91 37 16 104 42 17 194 83 512
8 9 -13 128 63 -12 142 74 -9 111 69 -7 220 128 -6 204 122 -4 74 48 -3 273 215 -1
295 252 0 340 309 1 67 52 2 110 79 3 259 225 4 124 88 5 358 321 6 203 150 7 85
66 8 189 118 9 262 174 11 272 157 12 112 69 14 139 71 15 185 86 17 148 73 18 104
35 512 9 9 -12 121 58 -9 91 45 -8 178 84 -7 60 24 -6 188 104 -3 322 245 -2 232
167 -1 95 78 0 290 242 1 66 47 2 119 80 3 309 265 4 367 312 6 219 154 7 61 34 9
279 176 10 328 203 12 182 77 13 76 32 15 199 85 16 191 73 18 104 35 512 10 9 -12
55 13 -10 65 21 -8 178 92 -7 128 89 -6 75 39 -5 62 29 -4 120 97 -3 103 67 -2 288
210 -1 176 107 0 225 159 2 93 61 3 143 80 4 431 352 5 366 285 6 75 46 8 164 84 9
79 41 10 344 208 11 288 157 12 52 16 14 133 62 16 177 73 17 118 47 512 11 9 -10
74 26 -9 66 22 -8 91 42 -7 207 104 -6 55 19 -4 180 102 -3 129 73 -2 94 66 -1 298
212 0 77 49 1 113 72 2 299 219 3 180 109 4 181 104 5 381 278 6 53 22 7 86 51 8
211 114 9 143 85 10 106 63 11 277 145 12 90 45 14 138 76 15 85 30 17 143 65 512
12 9 -9 131 69 -8 58 17 -7 146 75 -6 166 85 -5 43 12 -4 71 33 -3 246 146 -2 127
67 -1 145 78 0 224 138 2 160 83 3 282 188 4 177 94 5 157 76 6 141 80 7 118 69 8
109 72 9 252 133 10 133 76 11 100 52 12 67 23 14 82 29 15 131 60 16 82 25 512 13
9 -9 109 50 -8 164 73 -6 139 82 -4 69 28 -3 157 78 -2 253 142 -1 71 34 0 145 76
2 59 25 3 191 101 4 247 142 5 48 16 6 93 56 7 103 64 9 191 83 10 273 138 13 99
43 15 123 54 16 174 71 512 14 9 -8 136 73 -7 115 57 -4 126 78 -2 229 118 -1 198
96 2 130 88 4 164 83 5 183 86 7 92 52 8 125 68 10 248 115 11 135 76 13 101 42 14
175 82 16 144 64 512 15 9 -9 68 18 -7 110 50 -4 137 79 -3 95 43 -2 73 27 -1 178
81 2 178 78 3 173 84 5 173 84 8 192 79 9 156 92 10 60 17 11 138 75 14 151 76 15
115 43 512 16 9 -4 80 29 -3 142 69 -2 96 42 -1 84 34 0 71 25 1 102 52 2 87 37 3
248 116 4 167 83 5 104 51 7 64 21 8 65 20 9 199 86 10 138 61 15 138 59 512 17 9
-3 106 46 -2 149 67 0 77 28 1 148 70 2 89 35 3 119 60 4 224 94 6 72 24 7 94 40 8
91 34 9 89 32 10 199 82 11 80 25 13 76 21 14 61 13 512 18 9 -4 126 54 -2 100 40
-1 100 40 2 161 69 4 122 58 5 109 49 8 168 69 9 94 34 10 124 55 11 80 24 512 19
9 -3 101 35 -1 86 28 2 88 30 3 146 75 5 74 22 8 122 53 9 153 73 512 20 9 3 85 26
4 87 28 9 120 47 512 21 9 4 97 32 512
-15 10 0 94 28 1 82 21 3 65 14 512 -14 10 -3 83 23 1 142 65 7 140 58 512 -13 10
-5 91 28 -4 139 63 -2 56 13 -1 62 15 0 58 13 1 98 35 2 133 63 5 79 23 7 92 28 8
108 38 512 -12 10 -7 67 15 -6 117 45 -4 148 75 -1 66 19 0 169 76 2 136 70 5 66
18 6 124 57 8 96 34 11 78 20 512 -11 10 -6 101 40 -5 127 61 -4 65 18 -3 91 36 0
171 75 1 207 83 3 72 24 6 144 74 7 163 80 10 78 23 12 109 37 512 -10 10 -5 150
63 -4 79 29 -2 87 38 -1 65 22 0 64 14 1 207 88 2 96 43 3 56 17 4 84 34 5 81 31 7
218 86 8 99 39 11 93 32 13 125 45 512 -9 10 -10 120 49 -7 106 47 -6 95 40 -5 106
51 -4 157 76 -2 70 28 -1 193 87 0 96 49 1 139 76 2 159 72 3 51 16 5 182 85 6 164
78 7 130 64 8 140 72 11 125 57 12 103 38 13 67 15 512 -8 10 -10 111 45 -7 83 33
-6 209 90 -5 54 15 -4 170 83 -2 71 32 -1 140 79 0 323 192 1 80 41 2 146 79 3 70
32 4 61 23 5 161 77 6 306 166 7 86 38 8 98 47 10 63 19 12 171 67 13 88 27 512 -7
10 -11 121 52 -8 98 45 -6 186 80 -5 254 129 -4 64 25 -3 74 35 -2 96 59 0 222 122
1 315 200 4 112 79 6 203 99 7 262 140 10 113 61 12 121 56 13 178 79 512 -6 10
-11 165 83 -10 86 33 -8 76 30 -7 154 80 -5 242 131 -4 130 74 -2 99 64 -1 183 98
0 75 42 1 200 113 2 187 106 4 100 67 5 169 86 6 71 34 7 186 95 8 98 58 10 131 72
11 177 80 13 174 88 512 -5 10 -12 122 56 -11 58 15 -10 128 70 -7 153 81 -6 175
85 -5 47 15 -4 235 142 -2 47 18 -1 207 126 0 290 205 1 67 37 2 167 96 4 63 33 5
278 185 6 207 120 8 76 40 9 58 22 10 76 35 11 206 86 12 156 76 13 94 36 17 141
54 512 -4 10 -12 156 68 -11 95 39 -10 60 18 -8 59 21 -7 62 26 -6 239 140 -5 107
78 -4 131 80 -2 139 83 -1 160 92 0 425 346 1 129 79 2 166 101 3 104 68 4 127 76
5 199 126 6 379 283 7 130 69 8 46 17 9 94 60 10 109 72 11 99 55 12 266 131 13 63
18 15 97 36 16 121 46 512 -3 10 -12 96 38 -11 179 80 -8 111 68 -7 111 72 -6 199
112 -5 195 115 -2 349 276 0 280 224 1 269 217 2 95 64 3 36 14 4 266 210 5 196
135 6 336 264 7 354 268 10 186 98 11 169 80 12 180 89 13 186 87 16 163 69 17 96
29 18 78 19 512 -2 10 -13 87 30 -11 154 76 -8 56 20 -7 239 140 -5 218 138 -4 165
95 -2 265 208 -1 398 350 0 139 88 1 266 227 2 72 57 3 93 81 4 246 205 5 454 413
6 137 80 7 217 156 9 113 65 10 122 73 11 294 188 12 134 66 13 103 55 16 103 38
17 137 59 512 -1 10 -13 113 52 -12 139 80 -11 64 20 -9 81 39 -7 237 145 -6 264
179 -4 211 143 -3 63 38 -2 37 14 -1 292 255 0 380 363 2 83 68 3 133 95 5 335 308
6 412 378 8 47 23 9 188 121 11 245 152 12 302 194 13 59 24 15 95 41 17 91 30 18
104 39 512 0 10 -12 165 68 -11 67 23 -8 178 91 -6 330 241 -5 216 143 -4 119 76
-3 138 96 -2 254 211 0 317 300 1 190 159 3 169 138 4 256 240 5 47 28 6 316 293 7
165 120 9 166 105 10 211 143 11 75 45 12 328 226 13 107 72 15 124 75 16 169 65
18 127 66 512 1 10 -13 102 43 -12 72 24 -11 144 75 -8 210 117 -7 197 115 -6 144
84 -5 316 244 -2 413 394 -1 306 288 0 159 125 1 311 321 2 44 28 3 168 144 4 365
383 5 242 231 6 151 113 7 120 76 8 64 47 9 104 74 10 253 191 11 227 151 12 179
103 13 107 83 14 88 53 16 209 97 17 165 79 18 83 30 512 2 10 -13 145 76 -12 85
33 -11 82 34 -10 57 19 -8 94 60 -7 254 167 -6 152 83 -5 151 91 -3 72 55 -2 162
118 -1 509 524 0 110 83 1 218 210 2 73 74 3 34 17 4 219 213 5 479 515 6 289 283
7 94 75 8 127 82 9 52 30 10 159 102 11 376 301 12 99 64 14 131 71 15 115 68 16
84 29 17 185 71 19 63 15 512 3 10 -13 90 34 -12 170 71 -9 77 37 -7 164 90 -6 295
212 -5 102 89 -4 120 83 -3 208 163 -2 93 73 -1 354 350 0 406 430 1 28 12 2 55 45
3 276 284 4 55 43 5 340 354 6 379 390 7 39 20 8 98 88 9 189 139 10 56 30 11 212
142 12 249 164 13 40 12 14 77 38 15 165 81 16 71 21 17 108 41 18 164 78 512 4 10
-12 148 80 -11 70 26 -9 83 42 -8 176 90 -6 251 173 -5 166 103 -3 278 237 -2 269
236 -1 44 24 0 375 389 1 156 127 2 106 83 3 354 380 4 450 494 5 180 157 6 350
355 7 134 94 9 207 156 10 325 255 11 118 88 12 209 123 13 79 43 15 118 62 16 179
69 18 127 52 512 5 10 -13 87 31 -11 79 32 -10 94 50 -8 202 109 -7 243 150 -6 65
34 -5 146 79 -4 116 78 -2 385 358 -1 278 258 0 57 43 1 181 156 2 125 93 3 113 78
4 391 414 5 476 502 6 118 90 7 226 196 8 154 104 10 308 232 11 419 315 14 78 34
16 158 73 17 152 78 512 6 10 -13 110 49 -12 64 19 -10 60 20 -9 132 78 -8 54 19
-7 280 182 -6 142 82 -5 156 90 -3 234 177 -2 114 83 -1 352 332 0 192 159 1 96 70
2 124 89 3 118 80 4 80 72 5 348 340 6 244 213 7 87 82 8 162 109 9 166 104 11 444
320 12 163 77 14 131 85 15 163 81 17 169 84 18 83 24 512 7 10 -12 125 63 -9 132
64 -8 112 69 -7 125 95 -6 264 175 -4 44 18 -3 252 191 -2 284 235 -1 173 127 0
356 334 2 46 28 3 235 208 4 279 254 5 49 28 6 210 168 7 39 17 8 143 87 9 243 170
10 188 107 11 161 90 12 202 104 14 58 17 15 201 77 16 107 46 17 79 24 18 84 24
512 8 10 -12 91 35 -9 59 20 -8 180 88 -7 46 15 -6 145 81 -5 98 72 -4 59 30 -3
137 85 -2 328 268 -1 188 131 0 352 312 1 57 37 3 229 188 4 471 442 5 183 134 6
78 61 7 81 61 8 43 17 9 226 147 10 287 186 11 128 76 12 113 75 13 76 33 14 77 29
15 115 54 16 195 80 17 90 30 512 9 10 -11 63 18 -8 121 69 -7 185 91 -4 145 76 -2
207 139 -1 257 196 0 74 54 1 34 12 2 131 90 4 298 244 5 363 304 6 48 22 8 205
125 10 297 183 11 254 141 14 206 97 16 149 78 17 187 74 512 10 10 -11 52 12 -9
92 43 -7 167 86 -6 116 79 -4 164 82 -3 175 97 -2 72 42 -1 226 151 0 152 87 1 54
27 2 227 161 3 281 214 5 325 245 6 186 111 7 73 42 8 107 72 9 248 142 11 247 129
12 141 65 14 163 65 15 185 75 17 153 75 512 11 10 -9 129 75 -8 99 48 -6 154 76
-3 204 114 -2 200 118 -1 156 81 0 177 104 2 62 31 3 366 274 4 348 255 5 71 38 6
208 127 7 112 70 9 231 125 10 339 197 12 102 55 13 50 13 15 140 65 16 145 69 512
12 10 -10 61 16 -8 167 82 -7 106 55 -6 115 66 -4 101 63 -2 302 194 -1 117 64 0
100 72 2 133 80 3 118 91 4 351 246 5 202 113 6 153 86 7 83 48 8 113 75 9 90 48
10 305 166 11 224 103 14 53 12 16 145 66 17 73 18 512 13 10 -10 69 19 -8 113 55
-7 184 84 -4 113 61 -3 131 90 -2 105 67 -1 301 188 2 223 128 3 127 79 5 197 100
8 195 93 9 76 32 10 122 73 11 224 101 14 140 71 16 75 20 17 104 34 512 14 10 -9
97 37 -7 138 73 -6 73 26 -5 70 24 -4 78 32 -3 171 86 -2 58 20 -1 171 82 0 102 62
2 144 86 3 233 124 4 84 44 5 89 49 8 197 88 9 245 115 11 134 72 13 70 21 14 127
60 15 177 81 512 15 10 -8 75 22 -5 58 16 -3 135 79 -2 122 72 0 83 37 1 69 27 3
179 79 4 186 84 6 79 37 7 70 26 9 211 92 10 184 77 13 132 64 15 138 60 16 142 61
512 16 10 -7 82 26 -4 83 30 -2 126 69 -1 73 27 0 56 17 1 77 29 2 155 74 4 219 97
5 99 47 6 78 31 7 78 30 8 137 79 10 165 76 11 108 47 13 90 31 14 106 38 512 17
10 -4 115 52 -3 98 40 -1 132 72 2 210 86 3 136 70 4 82 30 5 152 78 8 162 74 9
149 80 11 120 54 14 93 28 512 18 10 -5 61 14 -3 129 59 -2 57 13 -1 84 30 2 93 36
3 179 73 4 72 22 5 101 42 7 89 33 8 78 23 9 216 78 10 104 39 512 19 10 -2 99 34
1 72 21 3 74 22 4 129 61 7 107 43 9 110 41 10 142 64 512 20 10 -1 70 17 2 89 28
4 76 21 7 70 17 8 105 36 512
-14 11 2 122 48 512 -13 11 -3 80 23 0 119 49 1 100 37 2 65 16 6 120 47 7 86 25
512 -12 11 -6 83 23 -5 141 65 -3 96 34 0 81 26 1 182 74 6 95 34 7 149 72 512 -11
11 -7 77 21 -5 112 46 -4 100 38 -1 102 44 1 165 80 2 118 57 5 78 26 7 147 76 8
85 28 11 78 20 512 -10 11 -6 106 45 -4 142 82 -1 132 76 0 181 79 2 175 75 5 117
58 6 166 73 8 106 44 11 93 30 12 109 37 512 -9 11 -6 128 66 -5 109 52 -4 79 29
-1 90 40 0 208 92 1 109 57 2 80 33 4 107 55 5 53 14 6 212 88 7 199 76 8 61 16 10
93 35 12 143 63 13 110 38 512 -8 11 -8 80 27 -7 68 20 -6 67 21 -5 228 102 -2 102
55 -1 135 87 0 129 71 1 242 126 3 56 18 4 177 91 5 106 61 6 107 54 7 272 131 10
80 28 11 88 31 12 67 17 13 159 73 512 -7 11 -10 82 26 -7 160 82 -6 90 39 -5 186
79 -4 175 76 -1 261 147 0 157 80 1 164 81 2 125 74 3 85 47 4 140 74 5 238 128 6
139 70 7 153 68 8 99 50 10 50 13 11 142 63 12 88 31 13 85 27 512 -6 11 -10 95 36
-7 102 49 -6 202 90 -4 188 92 -1 157 80 0 298 189 1 130 68 2 126 75 3 44 14 5
160 88 6 278 161 7 87 47 8 88 48 9 72 31 11 107 52 12 189 77 512 -5 11 -11 119
53 -8 78 32 -6 187 84 -5 211 108 -2 82 49 -1 68 35 0 233 144 1 248 161 4 83 52 6
201 112 7 144 84 9 111 72 10 152 70 12 208 85 13 125 63 15 71 19 16 118 43 512
-4 11 -11 151 75 -10 60 17 -8 93 47 -7 110 65 -5 247 145 -4 87 55 -2 197 119 -1
227 144 0 68 38 1 280 200 4 176 103 5 218 140 7 186 103 9 66 31 10 209 109 11
160 76 12 109 57 13 165 69 16 139 61 17 128 47 512 -3 11 -12 109 45 -11 67 20
-10 93 43 -7 158 79 -6 149 74 -5 130 74 -4 92 62 -3 62 31 -2 157 84 -1 321 238 0
202 134 1 186 119 2 60 34 3 148 87 4 161 96 5 325 251 6 262 183 7 79 49 8 79 47
10 84 49 11 228 120 12 130 70 13 68 24 17 152 57 512 -2 11 -12 138 55 -10 69 24
-8 61 22 -7 94 52 -6 267 165 -5 80 47 -4 80 50 -3 116 80 -2 90 67 -1 234 168 0
382 326 1 61 37 2 163 110 3 182 128 4 97 68 5 248 185 6 488 413 7 172 104 8 58
29 9 57 27 10 100 71 11 92 56 12 281 162 13 113 67 15 93 40 16 104 41 18 127 45
512 -1 11 -12 108 46 -11 101 46 -9 52 15 -8 150 72 -6 177 93 -5 259 173 -3 132
81 -2 257 193 -1 141 82 0 245 196 1 283 243 3 87 82 4 282 241 5 124 84 6 344 290
7 240 183 10 238 158 11 144 78 12 170 83 13 160 82 14 66 25 15 83 35 16 131 69
17 78 23 18 76 18 512 0 11 -13 93 33 -11 107 53 -8 167 77 -7 213 116 -5 308 221
-4 78 50 -2 163 105 -1 427 389 0 34 12 1 333 305 2 87 62 4 265 232 5 401 377 6
59 38 7 147 96 8 71 49 10 225 152 11 334 238 12 64 30 13 112 83 16 125 68 17 146
72 512 1 11 -13 119 54 -12 98 40 -9 94 49 -7 224 133 -6 260 171 -5 149 78 -3 162
102 -2 65 42 -1 345 311 0 354 333 1 172 136 2 100 97 3 100 83 4 70 60 5 379 366
6 323 295 7 63 44 8 86 75 9 175 115 10 91 72 11 333 248 12 247 159 15 140 66 17
164 72 18 101 39 512 2 11 -12 169 85 -11 79 30 -9 75 33 -8 95 55 -7 70 36 -6 272
186 -5 63 32 -4 41 16 -3 263 204 -2 227 176 -1 136 88 0 353 340 1 121 87 2 51 34
3 201 175 4 250 232 5 157 119 6 347 330 7 178 139 9 255 200 10 193 129 11 158 87
12 253 169 15 189 90 16 157 77 18 159 76 512 3 11 -12 88 33 -11 129 75 -8 127 78
-7 91 57 -6 122 78 -5 193 118 -3 211 154 -2 335 295 -1 155 107 0 202 168 1 228
206 3 193 168 4 446 463 5 285 270 6 83 71 7 110 86 9 121 88 10 306 242 11 179
110 12 89 61 14 53 19 15 72 29 16 190 89 17 113 48 18 104 37 512 4 11 -13 119 53
-11 72 25 -8 93 53 -7 187 101 -6 101 74 -5 113 89 -2 229 182 -1 427 407 1 172
140 2 95 78 3 126 84 4 394 401 5 533 552 6 104 78 7 142 98 8 120 84 9 61 38 10
114 90 11 418 326 12 125 78 14 82 44 15 81 34 16 108 49 17 201 80 512 5 11 -12
104 46 -9 124 71 -7 198 107 -6 271 180 -4 48 21 -3 205 143 -2 124 80 -1 303 268
0 224 190 1 96 66 2 160 124 3 366 362 4 70 59 5 353 342 6 297 270 7 103 66 8 92
75 9 242 181 10 151 84 11 331 239 12 270 169 14 86 45 15 146 60 17 151 78 18 118
47 512 6 11 -12 113 53 -9 136 80 -8 154 76 -6 263 173 -4 44 18 -3 205 142 -2 296
239 -1 104 86 0 292 264 2 56 40 3 271 247 4 449 448 6 301 271 8 58 35 9 308 242
10 306 223 12 236 139 13 42 12 15 149 72 16 176 67 18 86 26 512 7 11 -10 76 30
-8 187 89 -7 167 78 -6 101 72 -5 113 81 -4 165 93 -2 294 233 -1 365 318 0 71 53
1 170 124 2 78 68 3 103 72 4 416 392 5 365 331 8 101 82 9 65 36 10 319 226 11
263 164 12 55 21 14 98 47 16 188 75 17 147 73 512 8 11 -12 66 19 -11 62 18 -9 53
16 -8 76 33 -7 223 120 -6 126 73 -5 100 70 -4 89 62 -3 216 142 -2 126 74 -1 362
300 0 156 101 1 132 85 2 127 78 3 151 99 4 124 82 5 363 317 6 117 70 7 47 22 8
174 107 9 126 76 10 128 72 11 316 201 12 48 15 14 177 80 15 135 73 16 64 17 17
207 80 512 9 11 -9 95 46 -8 61 21 -7 125 83 -6 168 81 -4 58 26 -3 256 174 -2 85
58 -1 199 130 0 236 169 1 60 35 2 197 140 3 304 249 4 233 171 5 214 152 6 168
104 7 64 36 8 203 127 9 229 139 10 173 86 11 171 80 12 105 64 13 68 26 14 131 75
15 201 87 16 107 43 17 125 54 18 87 25 512 10 11 -9 74 27 -8 134 76 -6 103 62 -3
182 101 -2 178 101 0 225 149 1 142 76 2 87 62 3 229 159 4 374 297 5 57 28 6 220
145 7 110 91 9 248 147 10 375 241 11 78 37 12 130 70 13 86 36 14 69 23 15 169 71
16 209 87 18 68 16 512 11 11 -8 118 65 -7 132 83 -4 150 77 -2 149 83 -1 255 167
0 83 54 2 270 185 4 324 234 5 293 203 6 75 43 8 188 101 10 310 177 11 256 135 14
155 70 16 148 74 17 117 46 512 12 11 -10 81 28 -9 85 31 -8 51 12 -7 151 77 -6 77
32 -5 76 33 -4 159 81 -3 165 77 -1 271 171 0 67 34 2 241 151 3 274 177 4 51 20 5
255 160 6 58 25 8 166 77 9 222 115 11 199 88 12 59 18 14 116 55 15 127 59 17 98
32 512 13 11 -9 122 57 -7 87 35 -6 119 66 -5 78 32 -3 204 99 -2 206 101 -1 104
68 0 90 55 3 308 196 4 222 124 6 74 37 7 89 50 8 103 61 9 230 113 10 248 121 13
90 36 15 149 72 16 130 57 512 14 11 -8 108 45 -6 86 34 -4 84 36 -3 51 14 -2 241
123 -1 83 39 0 95 55 1 67 30 2 61 24 3 97 57 4 214 111 5 99 60 6 73 35 7 140 79
9 144 71 10 242 112 11 56 15 13 134 69 14 77 24 15 95 32 16 165 79 512 15 11 -7
98 38 -4 131 74 -2 93 42 -1 155 72 2 135 69 3 80 36 4 80 37 5 161 74 7 94 46 8
187 78 9 56 15 10 133 73 11 106 48 13 70 20 14 173 90 16 99 31 512 16 11 -4 100
42 -3 94 39 -1 118 61 2 156 67 3 186 90 5 137 65 8 136 70 9 194 84 11 92 36 14
113 42 15 140 60 512 17 11 -3 141 76 -2 106 46 1 134 71 3 210 86 4 155 84 5 74
25 7 97 41 9 180 80 10 157 87 13 101 36 512 18 11 -4 69 17 -2 125 58 1 127 60 2
120 57 4 175 67 6 77 25 7 119 57 8 134 66 10 153 79 13 75 20 512 19 11 -1 77 22
2 128 60 3 81 25 5 83 27 8 167 76 9 104 35 11 63 14 512 20 11 2 74 20 3 81 23 8
95 30 9 143 65 512
-13 12 1 136 58 2 67 15 512 -12 12 -4 130 55 -1 84 26 0 104 40 2 123 53 6 70 17
7 59 12 8 74 18 512 -11 12 -6 108 39 -4 113 47 0 172 81 1 79 26 2 98 38 6 162 70
512 -10 12 -5 130 62 -3 59 16 0 124 61 1 202 81 3 51 12 4 66 19 6 123 59 7 174
73 10 78 23 12 92 26 512 -9 12 -7 69 18 -5 123 59 -4 75 26 -2 96 43 -1 100 48 1
168 73 2 94 44 4 84 35 5 135 81 7 196 82 8 74 24 11 106 41 13 109 36 512 -8 12
-7 127 63 -6 113 55 -4 142 61 -1 183 83 0 180 88 1 92 43 2 124 76 3 59 19 5 190
93 6 214 93 7 60 17 8 117 59 11 115 49 12 158 81 512 -7 12 -8 69 20 -6 162 66 -5
109 55 -4 141 92 0 277 151 1 130 72 2 95 54 3 43 12 4 69 30 5 71 30 6 280 145 7
142 86 8 64 22 10 74 26 12 179 93 13 126 54 512 -6 12 -8 109 50 -7 67 21 -6 99
46 -5 240 115 -2 108 69 -1 149 80 0 78 39 1 282 170 4 119 69 5 98 60 6 95 55 7
242 124 10 128 76 11 65 20 12 63 17 13 167 79 512 -5 12 -11 103 39 -7 126 73 -5
177 77 -4 147 73 -2 119 64 -1 261 159 0 178 92 1 178 95 2 153 88 3 52 20 4 130
72 5 245 150 6 122 69 7 126 77 8 72 34 10 123 63 11 174 79 13 121 60 512 -4 12
-10 76 24 -7 115 64 -6 177 78 -4 94 58 -3 46 16 -1 230 140 0 276 182 2 151 78 3
89 62 5 245 153 6 288 188 8 75 40 9 141 69 11 194 87 12 206 89 15 118 51 17 112
37 512 -3 12 -11 114 50 -8 68 24 -6 207 103 -5 162 87 -3 95 66 -2 193 111 -1 58
27 0 254 174 1 151 81 2 150 83 3 145 80 4 118 70 6 321 231 7 116 75 8 55 24 9
133 76 10 136 64 12 249 127 13 113 63 15 104 44 16 132 62 512 -2 12 -11 129 64
-8 109 61 -7 108 64 -6 80 39 -5 184 99 -4 38 12 -3 50 20 -2 284 204 -1 178 109 0
78 49 1 305 236 2 130 81 3 108 80 4 326 259 5 252 180 6 124 92 7 252 171 10 191
104 11 186 93 13 149 68 16 149 80 17 108 41 512 -1 12 -11 84 31 -8 75 31 -7 193
96 -6 117 82 -5 127 63 -4 78 47 -3 80 50 -2 180 109 -1 263 195 0 206 141 1 247
189 2 48 24 3 75 55 4 239 181 5 435 373 6 238 174 7 169 103 8 48 21 9 121 74 10
133 92 11 309 199 12 172 82 16 50 12 17 137 67 512 0 12 -12 114 50 -9 111 62 -7
148 72 -6 219 127 -4 96 64 -3 173 100 -2 85 59 -1 119 84 0 369 319 2 65 44 3 172
118 4 104 69 5 311 258 6 368 317 8 43 18 9 185 116 10 112 69 11 220 133 12 278
177 13 76 37 15 121 72 17 76 27 18 128 61 512 1 12 -12 116 52 -11 71 23 -9 63 22
-8 174 80 -6 185 100 -5 199 116 -4 116 83 -3 65 38 -2 270 204 -1 141 81 0 267
222 1 269 229 2 55 34 3 182 136 4 311 279 5 85 72 6 241 190 7 83 68 9 170 106 10
247 170 11 52 22 12 210 125 13 97 64 14 43 12 15 108 60 16 147 77 18 106 49 512
2 12 -11 106 49 -8 162 83 -7 160 86 -5 213 132 -4 101 67 -3 53 25 -2 216 151 -1
336 287 1 212 169 2 88 72 3 93 76 4 249 208 5 312 283 6 71 55 7 68 49 8 127 84 9
120 71 10 271 197 11 242 162 14 110 76 16 162 77 17 157 66 512 3 12 -12 87 31
-11 58 16 -9 60 21 -8 68 28 -7 160 88 -6 111 63 -5 90 62 -4 51 23 -3 96 77 -2 81
60 -1 318 271 0 262 222 1 109 76 2 49 28 3 189 151 4 128 80 5 393 368 6 323 295
7 70 52 8 135 82 9 86 67 10 95 78 11 291 210 12 134 72 14 99 61 15 183 85 17 178
74 18 96 34 512 4 12 -12 138 65 -9 83 38 -8 44 12 -6 208 122 -5 67 36 -3 224 157
-2 86 67 -1 104 76 0 334 298 3 383 368 4 206 171 5 170 124 6 330 300 9 223 161
10 242 171 11 158 87 12 173 93 13 55 23 15 220 106 16 141 75 17 79 26 18 137 63
512 5 12 -12 89 33 -10 61 20 -9 60 20 -8 145 76 -7 71 31 -6 163 96 -5 160 86 -3
164 93 -2 325 261 -1 94 66 0 199 151 1 133 85 2 83 76 3 293 262 4 503 494 5 195
150 6 248 208 7 102 87 8 127 84 9 103 83 10 376 297 11 156 80 12 128 72 13 54 22
14 72 31 15 114 66 16 191 76 17 72 21 18 76 21 512 6 12 -10 85 36 -8 168 83 -7
201 101 -5 100 75 -4 104 66 -3 82 55 -2 237 170 -1 305 249 1 112 74 2 139 89 3
84 65 4 393 362 5 363 329 7 111 76 8 170 111 9 51 24 10 249 173 11 359 258 12 62
29 14 112 67 16 113 55 17 184 93 512 7 12 -10 60 18 -9 124 75 -7 232 127 -6 152
81 -5 76 44 -4 77 47 -3 234 158 -2 57 28 -1 298 235 0 246 190 2 129 90 3 249 202
4 56 32 5 247 199 6 202 147 7 57 32 8 160 97 9 209 137 11 248 154 12 199 104 14
120 69 15 156 84 17 150 70 18 90 29 512 8 12 -9 102 51 -8 96 48 -7 80 37 -6 175
85 -4 59 28 -3 202 124 -2 242 168 0 362 298 3 310 255 4 297 240 5 92 61 6 144 83
8 118 73 9 243 159 10 212 124 12 98 61 13 74 34 15 190 85 16 161 76 512 9 12 -8
127 79 -7 101 54 -6 75 35 -4 92 61 -3 81 50 -2 278 191 -1 135 81 0 131 78 1 93
76 2 153 92 3 146 83 4 325 258 5 233 168 6 91 63 9 136 72 10 345 230 11 112 61
13 83 37 14 142 84 15 64 18 16 219 79 17 106 39 512 10 12 -8 61 20 -7 161 76 -4
104 72 -3 64 30 -2 161 84 -1 159 85 0 75 46 1 53 24 2 252 178 3 194 124 4 148 79
5 290 213 6 51 22 8 112 76 9 130 70 10 201 104 11 234 124 14 210 98 15 99 40 16
116 50 17 172 81 512 11 12 -9 98 41 -7 84 36 -6 99 53 -4 80 39 -3 161 87 -2 51
20 -1 202 115 0 84 53 2 167 91 3 304 215 4 98 72 5 302 208 6 99 71 7 115 72 8
116 85 9 294 177 10 144 88 11 139 71 12 85 38 14 126 64 15 168 69 16 70 18 17 84
24 512 12 12 -9 106 44 -8 116 56 -6 103 54 -3 161 83 -2 195 100 0 109 75 1 75 42
3 224 133 4 243 148 6 168 85 7 121 74 9 218 112 10 326 182 11 83 34 12 65 21 13
80 29 15 110 46 16 166 74 512 13 12 -8 125 60 -7 88 34 -6 67 23 -4 134 64 -2 223
113 -1 195 95 0 82 44 2 167 82 3 59 24 4 214 119 5 201 106 6 50 18 7 87 49 8 152
81 10 249 116 11 198 80 13 70 21 14 117 53 16 139 63 17 78 20 512 14 12 -7 123
59 -4 137 79 -3 131 81 -2 61 20 -1 223 112 2 169 76 3 191 93 4 48 15 5 187 88 8
211 96 9 163 73 11 144 73 14 150 74 15 130 58 512 15 12 -3 127 72 -2 92 41 -1 98
48 0 88 41 2 68 26 3 219 106 4 146 86 5 88 41 8 137 69 9 227 98 10 97 40 11 63
18 12 61 17 13 77 24 14 78 23 15 178 80 16 84 24 512 16 12 -3 83 31 -2 124 66 1
67 22 3 102 50 4 171 76 6 48 12 7 100 47 9 112 53 10 165 70 13 130 59 15 114 42
512 17 12 -4 91 32 -2 117 54 -1 73 24 1 111 53 2 178 74 4 136 76 5 85 34 7 89 36
8 171 78 9 66 19 10 122 56 11 80 25 12 60 14 13 82 24 14 127 52 512 18 12 -4 85
26 -3 105 40 -1 91 33 2 180 90 3 153 71 5 127 64 6 82 30 8 163 86 9 171 92 512
19 12 -2 67 16 1 88 30 3 128 61 4 82 27 5 64 16 7 86 28 9 151 68 10 106 37 512
20 12 1 79 22 2 57 11 4 92 30 7 98 34 8 76 19 512
-12 13 0 110 41 1 125 52 6 115 43 7 108 37 512 -11 13 -1 87 28 1 148 77 2 56 12
7 138 62 512 -10 13 -5 65 16 -4 104 40 -1 124 60 0 83 29 1 105 45 2 108 48 5 117
56 6 85 29 7 100 37 10 60 13 11 92 28 512 -9 13 -6 95 33 -4 93 35 -1 107 50 0
160 74 2 127 69 5 99 42 6 200 77 8 72 22 11 89 28 12 129 51 512 -8 13 -8 79 23
-6 112 50 -5 122 60 -2 75 28 0 171 80 1 136 79 2 52 14 4 137 84 6 207 83 7 188
81 10 98 38 12 138 62 13 118 44 512 -7 13 -8 79 24 -7 107 46 -5 162 73 -2 106 57
-1 148 70 1 176 87 4 108 60 5 182 90 7 205 88 10 81 29 11 149 79 13 126 53 512
-6 13 -7 147 72 -6 101 46 -5 98 45 -4 119 67 -1 190 89 0 204 99 1 69 29 2 92 52
4 89 50 5 212 105 6 186 84 7 78 33 8 58 19 11 154 66 12 140 74 512 -5 13 -10 68
18 -6 190 81 -4 108 62 -2 95 55 0 302 186 1 126 78 2 130 79 5 118 69 6 265 154 7
109 60 9 98 52 11 88 37 12 194 86 13 93 37 15 91 31 512 -4 13 -8 89 36 -6 146 82
-5 185 80 -3 48 16 -2 193 100 -1 125 77 0 148 80 1 249 156 4 151 85 5 105 73 6
149 79 7 175 89 9 92 52 10 177 78 12 149 73 13 114 58 15 64 17 16 132 58 512 -3
13 -8 81 33 -7 110 60 -5 157 77 -2 158 75 -1 219 130 1 151 83 2 43 15 4 191 111
5 316 216 6 112 79 7 138 73 10 160 82 11 206 99 13 94 42 16 107 43 17 138 61 512
-2 13 -7 118 70 -6 174 89 -1 206 125 0 178 102 1 48 20 2 67 38 3 121 74 4 90 65
5 295 212 6 306 217 9 99 69 11 196 99 12 225 115 15 107 51 17 112 44 512 -1 13
-10 54 14 -9 54 14 -8 79 33 -6 239 131 -5 63 27 -4 41 13 -3 89 60 -2 197 119 -1
84 55 0 252 176 1 103 66 2 85 63 3 241 174 4 192 123 5 73 44 6 369 288 7 114 79
8 79 51 9 107 72 10 147 82 12 215 112 13 126 80 15 109 58 16 115 59 18 121 52
512 0 13 -11 80 27 -9 49 12 -8 156 70 -7 99 54 -6 140 79 -5 154 83 -2 268 185 -1
160 91 0 111 69 1 302 235 2 39 15 3 144 84 4 333 271 5 262 197 6 159 94 7 211
139 8 123 78 10 262 174 11 186 99 12 66 30 13 151 73 16 136 72 17 106 48 512 1
13 -11 94 38 -9 61 19 -8 117 68 -7 207 103 -5 152 84 -3 111 92 -2 110 72 -1 291
217 0 186 121 1 269 210 3 62 38 4 162 106 5 381 325 6 156 93 7 129 81 8 113 77 9
136 83 10 196 117 11 305 210 12 119 80 13 69 32 14 82 41 16 104 55 17 165 80 18
73 24 512 2 13 -9 111 60 -7 171 79 -6 213 113 -3 226 149 -2 87 62 -1 171 106 0
324 264 2 35 14 3 204 153 4 105 77 5 177 123 6 278 226 7 61 35 8 79 57 9 192 122
11 230 150 12 199 117 14 63 25 15 160 78 17 128 73 18 126 66 512 3 13 -11 58 15
-9 64 21 -8 98 52 -6 184 90 -5 98 63 -3 174 101 -2 196 125 0 265 207 1 129 81 2
38 15 3 210 161 4 311 270 6 174 118 7 98 72 9 221 156 10 206 133 12 120 74 15
175 80 16 186 78 18 122 61 512 4 13 -11 87 32 -8 115 64 -7 128 73 -5 95 65 -3
109 73 -2 228 156 -1 204 141 0 107 80 1 101 84 3 70 50 4 411 378 5 331 287 7 144
88 8 108 69 9 106 75 10 268 193 11 267 185 14 126 90 15 56 18 16 205 91 17 150
74 512 5 13 -11 72 23 -9 78 31 -8 79 35 -7 171 90 -6 105 64 -5 73 40 -4 66 34 -2
141 86 -1 297 231 0 79 57 1 174 122 2 150 99 3 173 120 4 222 170 5 428 392 6 136
82 7 240 187 8 161 101 9 234 164 10 112 69 11 356 262 12 131 76 14 145 71 15 124
76 16 56 16 17 170 84 18 69 18 512 6 13 -9 131 70 -7 124 67 -6 210 111 -3 207
130 -2 97 75 -1 126 78 0 304 243 1 71 49 2 68 46 3 406 360 4 208 155 5 195 144 6
243 190 7 151 93 9 343 262 10 128 70 11 147 82 12 218 126 14 45 12 15 149 79 16
104 47 17 86 32 18 91 30 512 7 13 -10 58 16 -9 114 60 -8 149 70 -6 180 87 -4 94
64 -3 153 79 -2 239 161 -1 123 77 0 233 167 1 109 79 2 55 31 3 232 177 4 375 322
5 159 102 6 120 77 8 72 47 9 167 98 10 328 234 11 119 72 12 113 68 14 59 20 15
87 37 16 186 79 17 70 20 512 8 13 -10 87 33 -8 135 69 -7 162 75 -5 42 12 -4 157
89 -2 226 142 -1 271 195 1 59 32 2 92 74 3 52 25 4 236 173 5 282 218 8 108 83 10
290 195 11 231 139 12 55 21 14 174 84 16 164 82 17 170 74 512 9 13 -10 53 13 -9
65 20 -7 177 78 -6 74 31 -4 132 73 -3 167 89 -1 229 148 0 156 87 1 73 45 2 146
80 3 220 151 4 37 12 5 242 169 8 213 133 9 227 136 10 81 46 11 174 85 12 62 24
14 214 99 15 187 81 17 171 75 512 10 13 -9 91 37 -8 74 26 -6 114 70 -4 54 18 -3
194 106 -2 137 81 -1 107 81 0 163 89 1 98 72 2 52 23 3 264 184 4 219 140 5 82 54
6 134 78 7 102 76 9 330 217 10 206 109 12 64 23 13 107 56 14 68 22 15 223 88 16
130 60 512 11 13 -8 126 67 -7 86 35 -6 56 18 -4 48 14 -3 92 50 -2 164 80 -1 62
29 0 97 68 1 61 29 2 180 98 3 169 92 4 277 187 5 49 19 6 134 81 7 61 29 8 130 78
9 194 101 10 307 182 11 121 75 13 60 18 14 91 36 15 83 28 16 188 80 17 69 17 512
12 13 -8 100 41 -7 141 84 -4 150 86 -2 103 61 -1 175 87 2 203 116 3 82 48 4 223
135 5 185 101 6 45 15 8 208 108 9 109 70 10 185 80 11 167 78 14 142 73 15 58 14
16 99 36 17 108 40 512 13 13 -7 111 51 -5 81 33 -4 117 62 -3 150 95 -1 174 78 0
49 16 2 115 75 3 231 128 5 173 83 6 54 21 8 145 82 9 271 141 10 65 21 11 132 78
13 60 17 14 110 47 15 161 81 512 14 13 -6 67 21 -5 83 32 -3 145 78 -2 180 76 -1
70 27 0 116 72 3 193 92 4 223 113 7 80 35 9 244 118 10 204 86 13 104 44 15 142
58 16 145 67 512 15 13 -4 100 43 -2 164 70 -1 102 51 0 81 35 2 127 81 4 193 86 5
101 53 7 91 43 8 123 62 9 79 28 10 146 66 11 67 20 13 104 41 14 111 46 15 59 12
16 133 55 512 16 13 -4 102 42 -1 117 63 2 158 76 3 116 62 5 111 58 8 169 78 9
118 57 11 76 25 14 154 70 15 76 19 512 17 13 -4 66 17 -3 112 48 -1 62 17 1 51 12
2 98 42 3 176 74 5 89 36 8 104 44 9 184 72 10 53 11 11 68 19 14 85 24 512 18 13
-3 82 24 -2 92 32 1 108 46 3 134 67 4 155 84 7 141 73 9 115 47 10 135 62 13 103
34 512 19 13 1 90 30 2 108 41 4 133 63 7 93 32 8 148 72 10 104 36 512 20 13 2
111 42 3 91 31 8 122 49 9 105 35 512
-12 14 1 99 33 2 87 25 512 -11 14 -1 99 35 0 130 56 2 104 39 6 112 42 512 -10 14
0 142 72 1 91 33 6 137 66 7 86 28 512 -9 14 -5 106 40 -2 83 29 -1 52 12 0 79 27
1 134 70 4 83 31 5 76 24 6 102 44 7 150 72 512 -8 14 -5 80 25 -4 88 33 -2 84 32
-1 131 73 1 128 70 2 49 12 4 56 15 5 166 75 7 119 58 8 67 20 9 58 14 11 117 49
512 -7 14 -7 113 48 -6 112 49 -4 108 49 -1 122 69 0 175 82 2 105 56 5 176 83 6
228 103 8 100 46 9 72 24 11 104 41 12 172 73 512 -6 14 -8 86 29 -6 161 76 -5 115
57 -4 52 14 -2 91 41 0 161 76 1 129 76 2 57 19 4 79 35 6 215 101 7 153 83 10 112
55 12 167 75 13 116 50 512 -5 14 -8 103 42 -7 75 25 -6 71 23 -5 186 87 -2 127 69
-1 179 86 1 214 109 4 114 70 5 194 95 6 59 22 7 159 76 10 137 87 11 132 76 13
127 63 512 -4 14 -7 132 73 -6 81 31 -5 143 83 -4 61 20 -3 80 35 -2 61 22 -1 229
125 0 159 84 1 159 80 4 81 45 5 269 162 6 157 87 7 64 28 9 45 12 10 99 52 11 172
79 12 98 45 13 72 24 15 58 13 512 -3 14 -10 65 16 -7 85 34 -6 162 73 -4 52 17 -3
83 41 -1 138 76 0 243 147 3 62 31 4 74 40 5 143 74 6 283 180 8 52 20 9 145 73 10
77 35 11 131 81 12 197 85 15 130 66 512 -2 14 -8 95 43 -6 138 82 -5 137 81 -3 83
46 -2 102 71 0 194 112 1 134 77 2 47 18 3 102 74 4 213 130 5 131 80 6 202 117 7
114 74 8 66 32 9 94 61 10 197 102 11 68 28 12 164 80 13 96 48 15 83 31 16 134 61
512 -1 14 -8 99 46 -7 125 75 -5 171 81 -2 166 86 -1 158 81 1 196 120 2 88 63 3
73 44 4 258 174 5 300 218 7 151 80 8 72 41 10 192 104 11 244 136 13 94 46 16 125
63 17 128 63 512 0 14 -9 87 35 -7 193 86 -6 143 71 -5 117 77 -3 96 64 -2 61 28
-1 221 139 0 195 116 1 150 81 2 44 18 3 102 84 4 76 48 5 361 275 6 203 132 7 76
47 9 132 81 10 47 17 11 261 157 12 187 93 15 90 41 17 125 64 18 84 28 512 1 14
-9 127 72 -8 87 37 -7 133 83 -6 234 125 -3 219 132 -2 156 81 -1 88 60 0 312 233
1 46 19 3 142 96 4 225 160 5 136 84 6 311 238 9 155 83 10 174 94 11 115 76 12
216 121 13 58 22 15 128 78 16 81 33 18 113 52 512 2 14 -11 78 25 -8 150 64 -6
185 87 -5 151 78 -3 142 89 -2 248 165 -1 192 116 0 202 130 1 182 117 3 92 68 4
230 166 5 250 186 6 164 99 7 80 57 8 94 62 9 130 75 10 294 207 11 113 67 12 101
69 13 48 15 14 79 38 15 95 49 16 144 86 17 83 32 512 3 14 -11 63 16 -8 90 41 -7
170 83 -5 115 78 -2 127 69 -1 272 197 0 69 42 1 181 120 2 66 42 4 145 89 5 270
213 6 157 94 7 52 26 8 125 76 9 85 58 10 257 176 11 257 172 12 85 53 14 128 64
16 145 74 17 157 71 512 4 14 -9 81 33 -7 134 73 -6 145 76 -4 41 13 -3 159 87 -2
53 23 -1 179 109 0 219 152 1 66 40 2 100 85 3 226 168 5 196 134 6 248 190 9 158
90 11 238 153 12 176 94 14 105 64 15 197 93 17 159 72 18 96 39 512 5 14 -9 84 34
-8 104 54 -6 151 74 -3 205 123 -2 70 40 -1 98 74 0 224 157 1 35 12 2 52 26 3 307
248 4 318 254 5 110 76 6 240 179 8 89 68 9 285 207 10 265 181 12 168 87 15 180
79 16 164 72 18 98 38 512 6 14 -8 174 81 -7 80 34 -6 75 34 -5 48 14 -4 84 50 -3
121 74 -2 189 109 -1 181 107 0 172 105 1 47 13 2 97 70 3 110 86 4 414 351 5 191
128 6 263 200 8 204 135 9 97 67 10 330 237 11 243 153 12 45 15 14 100 57 16 163
70 17 113 52 512 7 14 -10 68 20 -8 119 64 -7 202 92 -5 83 43 -4 112 67 -3 89 57
-2 118 80 -1 288 206 0 69 40 1 61 34 2 144 83 3 103 78 4 71 44 5 255 190 6 70 44
7 78 54 8 194 123 9 146 86 10 152 78 11 271 172 12 138 68 14 128 86 15 85 37 16
67 21 17 149 69 18 69 18 512 8 14 -9 105 48 -7 160 78 -6 137 79 -5 80 39 -4 62
24 -3 225 134 -2 76 44 -1 153 80 0 249 168 2 105 76 3 226 154 4 117 80 5 54 26 6
226 158 7 47 20 8 160 88 9 278 185 10 84 50 11 117 69 12 145 82 13 62 24 14 76
32 15 177 80 16 55 14 17 92 34 512 9 14 -9 102 43 -8 111 56 -6 133 81 -3 189 97
-2 211 121 0 168 95 2 83 57 3 223 149 4 263 185 5 95 61 6 188 117 8 70 38 9 278
181 10 249 148 13 122 73 15 170 94 16 178 67 512 10 14 -8 97 41 -7 113 60 -4 108
64 -3 67 29 -2 200 110 -1 146 81 2 214 135 4 249 166 5 263 178 6 98 70 8 113 75
10 267 158 11 160 82 13 99 51 14 167 70 16 202 84 17 116 47 512 11 14 -7 122 64
-6 75 29 -4 109 63 -3 100 55 -1 198 106 2 245 149 3 161 83 5 279 185 8 159 90 9
206 108 11 149 68 14 173 84 15 127 60 17 112 42 512 12 14 -7 76 26 -6 79 29 -4
70 26 -3 147 75 -2 63 24 -1 91 51 0 74 37 1 65 31 2 150 81 3 244 145 4 153 84 5
144 76 6 49 17 7 117 69 8 73 35 9 295 168 10 169 81 12 64 21 13 75 26 15 164 87
16 93 31 512 13 14 -6 52 12 -5 88 37 -3 116 67 -2 134 88 -1 47 13 0 80 37 1 101
60 3 162 87 4 216 118 5 51 18 6 73 35 7 66 28 8 123 60 9 207 96 10 267 135 11 74
27 12 70 24 13 77 27 14 77 24 15 110 45 16 160 73 512 14 14 -4 163 75 -2 139 77
-1 153 70 2 191 90 3 51 15 4 173 77 5 139 74 8 227 109 10 169 92 11 121 64 13 55
14 14 140 70 16 99 31 512 15 14 -4 103 44 -3 133 70 -1 151 84 2 132 84 3 206 96
5 132 70 8 176 80 9 181 79 11 94 39 14 119 51 15 143 63 512 16 14 -5 69 19 -3
114 52 -2 82 29 1 93 41 3 146 78 4 130 78 7 57 16 9 168 74 10 116 54 13 87 28 15
150 66 512 17 14 -2 107 46 1 122 61 2 87 34 3 54 14 4 134 73 7 118 57 8 112 50 9
71 21 10 130 64 13 107 40 14 66 14 512 18 14 2 156 67 4 115 54 5 66 18 8 203 79
9 86 28 10 65 15 512 19 14 2 119 50 3 118 48 5 54 11 8 114 44 9 154 75 11 58 12
512 20 14 3 94 29 4 80 23 7 109 40 512
-11 15 1 117 44 512 -10 15 -1 106 40 1 119 49 2 71 19 5 69 17 7 87 26 512 -9 15
-4 88 28 -1 122 55 0 73 21 2 76 24 5 120 53 6 101 39 512 -8 15 -4 55 12 -1 65 12
0 123 63 2 74 25 3 49 11 5 85 31 6 189 76 7 80 26 12 138 59 512 -7 15 -6 100 38
-5 124 56 -2 113 56 0 90 38 1 116 61 4 137 82 6 161 72 7 136 75 10 109 47 11 69
19 12 87 28 13 114 43 512 -6 15 -7 105 41 -5 134 69 -4 80 29 -2 82 32 -1 136 79
1 126 76 2 55 17 4 86 40 5 189 79 7 109 54 9 61 18 10 89 37 11 161 67 13 79 23
512 -5 15 -7 136 68 -6 108 47 -4 97 44 -1 151 75 0 179 84 2 111 63 5 165 91 6
176 76 9 60 18 11 146 75 12 162 81 512 -4 15 -8 93 35 -6 166 67 -5 78 29 -4 86
38 -2 138 72 0 216 110 1 102 59 2 73 35 4 112 75 6 158 79 7 117 70 9 97 50 10 68
24 12 167 79 13 73 23 15 85 29 512 -3 15 -8 108 46 -7 69 21 -6 59 16 -5 142 81
-2 174 79 -1 90 47 0 104 65 1 187 96 4 229 131 5 155 83 7 138 76 9 70 29 10 149
69 11 83 35 12 76 29 13 78 29 16 122 55 512 -2 15 -9 53 11 -8 55 14 -7 119 61 -6
59 17 -5 79 32 -2 119 66 -1 187 96 0 51 18 1 102 72 3 39 12 4 148 81 5 301 198 6
140 82 7 108 66 9 70 34 10 79 36 11 228 116 12 102 53 15 62 18 16 76 24 17 141
69 512 -1 15 -7 100 46 -6 167 75 -3 73 33 -1 171 88 0 166 86 3 108 84 5 173 93 6
286 193 7 59 28 9 144 78 10 81 43 11 195 96 12 229 115 15 115 59 17 94 35 512 0
15 -8 106 49 -6 187 82 -5 78 33 -4 47 14 -3 110 71 -2 181 89 0 204 120 1 88 58 2
62 32 3 215 135 4 189 112 6 242 159 7 69 38 8 64 32 9 139 77 10 209 113 12 184
87 13 94 49 15 91 41 16 126 68 512 1 15 -8 151 73 -7 102 49 -6 99 50 -5 138 87
-4 66 27 -2 249 156 -1 193 110 0 74 42 1 176 103 2 66 37 3 61 31 4 279 196 5 203
127 7 143 75 8 63 33 10 228 140 11 216 120 13 73 31 14 63 23 16 127 75 17 117 57
512 2 15 -9 75 24 -8 82 31 -7 190 83 -6 51 14 -5 111 63 -3 156 85 -2 98 66 -1
294 201 0 158 82 1 91 64 3 132 77 4 70 41 5 304 229 6 158 89 7 69 41 8 72 43 9
96 55 10 86 54 11 270 171 12 119 82 14 96 52 15 104 56 17 139 67 18 67 20 512 3
15 -9 89 34 -7 109 59 -6 166 79 -3 166 81 -2 115 72 -1 97 70 0 283 200 1 46 19 3
164 100 4 221 152 5 77 52 6 225 156 9 149 78 10 95 67 11 115 84 12 165 83 14 74
32 15 163 79 16 78 32 17 85 35 18 99 41 512 4 15 -8 111 55 -7 64 21 -6 125 70 -5
62 23 -3 114 72 -2 168 91 -1 59 28 0 196 121 2 41 16 3 157 91 4 259 190 5 192
125 6 110 83 8 53 25 9 209 132 10 235 148 11 133 80 12 111 81 14 48 14 15 153 79
16 189 80 18 58 15 512 5 15 -10 52 12 -8 92 38 -7 171 80 -4 143 82 -2 156 80 -1
178 101 0 99 73 2 164 98 4 257 184 5 247 176 7 124 90 8 112 72 10 249 161 11 267
173 14 134 81 16 162 87 17 139 70 512 6 15 -9 67 19 -7 170 79 -6 93 46 -4 102 61
-3 144 74 -1 225 142 0 96 72 1 78 52 2 186 118 3 278 201 4 79 52 5 316 247 6 92
67 7 156 86 8 105 66 9 272 186 11 211 122 12 131 76 13 49 16 14 103 58 15 142 66
17 126 65 18 76 24 512 7 15 -9 113 52 -8 75 26 -7 76 28 -6 143 72 -3 194 104 -2
132 75 -1 51 13 0 195 121 2 80 54 3 272 195 4 203 133 5 114 76 6 205 138 9 272
181 10 242 151 12 183 93 13 78 38 15 139 75 16 129 68 18 80 26 512 8 15 -9 68 19
-8 148 68 -7 64 20 -6 99 50 -4 119 66 -3 83 43 -2 252 151 -1 129 73 0 122 73 3
121 81 4 249 172 5 149 80 6 111 71 7 45 17 8 60 28 9 164 87 10 281 180 11 185 92
12 78 38 14 109 61 15 62 19 16 169 68 17 116 54 512 9 15 -8 96 38 -7 145 69 -4
164 84 -3 53 17 -2 155 82 -1 241 149 1 62 31 2 152 80 3 76 44 4 155 84 5 260 180
8 195 111 10 150 80 11 206 107 14 172 77 15 61 17 16 136 72 17 145 73 512 10 15
-7 109 54 -5 67 24 -4 104 56 -3 141 80 -1 205 112 0 83 49 2 157 81 3 227 136 4
51 21 5 139 78 6 178 100 8 194 109 9 220 122 11 125 80 13 56 17 14 148 69 15 206
83 17 94 32 512 11 15 -8 93 35 -6 76 28 -3 135 76 -2 130 90 0 81 45 1 51 12 3
294 193 4 190 107 6 100 59 7 111 83 9 229 122 10 183 85 13 98 46 15 192 91 16
137 68 512 12 15 -7 81 28 -4 81 33 -3 56 17 -2 123 69 -1 83 41 1 103 68 2 147 73
3 102 67 4 218 120 5 89 53 7 86 49 8 195 98 9 74 32 10 205 98 11 121 71 13 70 24
14 123 61 16 135 62 17 93 30 512 13 15 -7 95 35 -4 135 78 -3 52 14 -2 57 16 -1
131 85 1 54 11 2 183 88 3 101 58 4 91 53 5 155 90 8 219 106 9 161 83 10 69 25 11
177 79 14 157 80 15 98 36 17 85 23 512 14 15 -5 93 36 -3 140 73 -2 64 21 -1 120
71 0 58 19 1 65 24 2 111 66 3 189 89 4 95 50 5 117 72 7 74 30 8 141 77 9 247 119
10 105 49 11 92 39 13 77 25 14 68 18 15 176 73 16 96 30 512 15 15 -5 86 29 -3
124 63 -2 146 70 0 84 35 1 92 42 3 116 67 4 158 70 6 67 24 7 91 41 9 169 80 10
145 75 13 114 49 15 126 51 512 16 15 -4 105 41 -2 132 71 -1 94 39 2 138 63 4 103
49 5 84 33 8 140 70 10 70 21 13 102 38 14 115 44 512 17 15 -1 70 21 2 132 70 3
133 64 8 167 69 9 113 50 512 18 15 3 135 67 5 56 14 7 111 47 9 148 70 10 81 24
512 19 15 1 86 26 3 90 30 4 84 25 7 138 65 8 82 22 10 112 42 512 20 15 4 58 12
512
-10 16 2 87 26 5 82 24 6 116 44 512 -9 16 0 103 38 1 87 28 4 54 12 6 95 33 7 99
33 512 -8 16 -2 85 27 1 127 64 4 100 41 5 96 37 7 126 61 10 69 17 11 68 16 512
-7 16 -4 68 18 -2 60 15 -1 117 56 1 87 35 3 53 14 4 69 22 5 180 76 6 83 29 7 64
18 9 73 23 11 131 58 12 79 21 512 -6 16 -6 130 60 -4 80 27 -1 94 40 0 137 66 2
82 33 3 63 20 4 51 13 5 141 65 6 179 80 8 68 23 9 77 27 11 89 31 12 156 61 512
-5 16 -6 132 63 -5 120 55 -2 145 69 0 128 75 1 136 76 4 126 67 5 52 14 6 119 68
7 110 58 10 121 63 12 121 56 13 106 42 512 -4 16 -7 98 36 -5 143 71 -2 150 88 -1
188 81 1 182 83 2 45 12 4 114 67 5 209 102 7 94 48 10 135 78 11 137 76 13 90 35
512 -3 16 -7 99 38 -6 116 57 -5 64 19 -3 95 45 -1 205 97 0 156 75 1 98 55 5 210
102 6 153 77 9 58 19 10 80 34 11 143 70 12 112 57 15 86 29 512 -2 16 -6 148 80
-5 72 26 -3 90 44 -2 80 36 -1 86 43 0 202 101 1 41 12 3 110 69 4 132 70 5 125 73
6 144 70 7 92 56 9 122 67 10 85 41 11 72 27 12 151 78 15 126 63 16 83 28 512 -1
16 -8 91 35 -7 65 19 -6 83 32 -5 137 87 -2 164 84 -1 74 33 0 123 73 1 84 49 3 60
27 4 287 179 5 79 43 6 102 69 7 144 77 10 211 109 11 115 69 12 73 28 13 66 23 16
139 72 512 0 16 -8 77 26 -7 132 74 -5 101 51 -2 124 75 -1 174 86 1 84 53 4 225
133 5 240 148 7 143 78 8 76 43 9 72 36 10 167 76 11 272 153 12 79 34 16 99 44 17
116 53 512 1 16 -9 71 21 -7 154 66 -6 111 57 -5 61 21 -3 173 81 -1 207 114 0 141
74 3 183 103 5 199 117 6 193 113 7 80 49 8 46 17 9 146 80 11 206 106 12 192 93
15 128 77 17 85 31 512 2 16 -8 86 32 -7 56 14 -6 179 85 -4 83 40 -3 167 76 -2
203 109 -1 67 32 0 262 168 1 74 43 3 210 131 4 187 110 6 171 97 7 61 31 9 138 77
10 186 96 12 136 80 15 116 66 16 119 64 18 76 25 512 3 16 -8 130 69 -7 78 28 -6
67 23 -5 95 49 -4 74 33 -3 49 15 -2 225 125 -1 202 114 0 113 76 1 121 69 4 278
195 5 213 135 7 88 60 8 72 43 9 85 55 10 244 153 11 174 90 14 115 72 16 168 75
17 121 63 512 4 16 -8 63 18 -7 145 82 -6 73 28 -4 71 31 -3 72 32 -2 95 59 -1 239
147 0 70 37 2 87 60 3 112 74 4 135 87 5 254 176 6 121 81 8 59 29 9 68 37 10 159
80 11 233 135 12 62 25 14 153 83 15 70 26 16 106 53 17 160 71 512 5 16 -9 88 32
-7 97 44 -6 129 64 -3 196 98 -2 49 17 -1 160 87 0 122 78 2 126 76 3 265 185 4 82
53 5 193 119 6 146 88 8 57 27 9 251 164 10 67 32 11 113 83 12 134 81 14 81 37 15
175 84 17 117 57 18 90 34 512 6 16 -9 67 18 -8 135 72 -6 109 59 -4 55 19 -3 160
84 -2 176 91 0 151 77 1 49 20 3 260 176 4 266 185 5 46 18 6 188 116 7 44 17 9
215 132 10 254 155 11 90 55 12 92 52 15 131 81 16 146 75 18 57 14 512 7 16 -8
123 61 -7 107 51 -4 113 67 -2 189 98 -1 169 88 0 55 24 2 97 70 3 67 36 4 198 118
5 203 124 6 76 47 8 153 81 10 236 141 11 236 136 14 130 75 16 127 70 17 146 82
512 8 16 -7 151 77 -5 65 23 -4 122 76 -3 110 63 -1 230 132 0 75 41 1 53 23 2 143
81 3 148 87 5 203 126 6 90 63 7 39 13 8 198 118 9 208 113 11 202 106 12 69 29 14
121 63 15 126 70 17 119 55 18 80 25 512 9 16 -7 71 23 -6 100 47 -5 92 42 -3 169
87 -2 142 79 -1 164 83 0 143 75 3 256 166 4 181 99 5 65 32 6 107 70 8 106 68 9
277 171 10 132 61 11 72 31 12 65 25 13 79 35 15 196 78 16 108 47 512 10 16 -8
111 47 -6 80 31 -5 51 13 -4 93 45 -3 98 52 -2 216 109 0 106 72 2 99 66 3 128 90
4 243 150 5 111 66 6 68 35 9 103 60 10 227 121 11 82 39 13 91 43 14 74 26 15 155
78 16 190 89 512 11 16 -7 99 40 -4 106 56 -2 141 75 -1 146 79 1 71 32 2 198 106
4 135 75 5 190 102 7 63 28 8 165 77 10 91 46 11 135 83 14 155 59 16 120 54 17
104 38 512 12 16 -7 92 34 -4 94 42 -3 88 40 -1 128 75 2 194 96 3 168 78 5 154 79
7 61 25 8 221 113 9 211 104 11 76 29 14 155 66 15 142 73 512 13 16 -5 65 18 -3
121 66 -2 90 39 1 112 67 2 59 20 3 189 89 4 104 61 5 46 13 7 128 76 9 276 144 10
193 95 13 103 46 15 177 87 16 112 41 512 14 16 -4 93 37 -3 72 23 -2 152 79 -1 58
12 1 92 44 2 122 73 3 70 26 4 176 76 7 107 60 8 151 83 9 97 43 10 204 97 12 68
21 13 68 20 14 123 56 16 136 57 512 15 16 -4 125 59 -3 72 23 -2 117 57 -1 116 60
2 158 75 3 88 39 4 85 37 5 117 65 8 175 76 9 96 40 10 56 14 11 78 27 14 159 67
512 16 16 -3 142 73 -1 83 30 1 72 24 2 95 40 3 144 69 4 56 15 5 61 18 8 110 52 9
137 74 10 79 28 14 127 52 512 17 16 -2 82 25 1 122 60 3 103 44 4 118 58 7 117 55
9 104 43 10 86 31 13 98 33 512 18 16 1 104 40 2 107 12 512 -9 16 6 95 33 7 99 33
512 -8 16 -2 85 27 1 127 64 4 100 41 5 96 37 7 126 61 10 69 17 11 68 16 512 -7
16 -4 68 18 -2 60 15 -1 117 56 1 87 35 3 53 14 4 69 22 5 180 76 6 83 29 7 64 18
9 73 23 11 131 58 12 79 21 512 -6 16 -6 130 60 -4 80 27 -1 94 40 0 137 66 2 82
33 3 63 20 4 51 13 5 141 65 6 179 80 8 68 23 9 77 27 11 89 31 12 156 61 512 -5
16 -6 132 63 -5 120 55 -2 145 69 0 128 75 1 136 76 4 126 67 5 52 14 6 119 68 7
110 58 10 121 63 12 121 56 13 106 42 512 -4 16 -7 98 36 -5 143 71 -2 150 88 -1
188 81 1 182 83 2 45 12 4 114 67 5 209 102 7 94 48 10 135 78 11 137 76 13 90 35
512 -3 16 -7 99 38 -6 116 57 -5 64 19 -3 95 45 -1 205 97 0 156 75 1 98 55 5 210
102 6 153 77 9 58 19 10 80 34 11 143 70 12 112 57 15 86 29 512 -2 16 -6 148 80
-5 72 26 -3 90 44 -2 80 36 -1 86 43 0 202 101 1 41 12 3 110 69 4 132 70 5 125 73
6 144 70 7 92 56 9 122 67 10 85 41 11 72 27 12 151 78 15 126 63 16 83 28 512 -1
16 -8 91 35 -7 65 19 -6 83 32 -5 137 87 -2 164 84 -1 74 33 0 123 73 1 84 49 3 60
27 4 287 179 5 79 43 6 102 69 7 144 77 10 211 109 11 115 69 12 73 28 13 66 23 16
139 72 512 0 16 -8 77 26 -7 132 74 -5 101 51 -2 124 75 -1 174 86 1 84 53 4 225
133 5 240 148 7 143 78 8 76 43 9 72 36 10 167 76 11 272 153 12 79 34 16 99 44 17
116 53 512 1 16 -9 71 21 -7 154 66 -6 111 57 -5 61 21 -3 173 81 -1 207 114 0 141
74 3 183 103 5 199 117 6 193 113 7 80 49 8 46 17 9 146 80 11 206 106 12 192 93
15 128 77 17 85 31 512 2 16 -8 86 32 -7 56 14 -6 179 85 -4 83 40 -3 167 76 -2
203 109 -1 67 32 0 262 168 1 74 43 3 210 131 4 187 110 6 171 97 7 61 31 9 138 77
10 186 96 12 136 80 15 116 66 16 119 64 18 76 25 512 3 16 -8 130 69 -7 78 28 -6
67 23 -5 95 49 -4 74 33 -3 49 15 -2 225 125 -1 202 114 0 113 76 1 121 69 4 278
195 5 213 135 7 88 60 8 72 43 9 85 55 10 244 153 11 174 90 14 115 72 16 168 75
17 121 63 512 4 16 -8 63 18 -7 145 82 -6 73 28 -4 71 31 -3 72 32 -2 95 59 -1 239
147 0 70 37 2 87 60 3 112 74 4 135 87 5 254 176 6 121 81 8 59 29 9 68 37 10 159
80 11 233 135 12 62 25 14 153 83 15 70 26 16 106 53 17 160 71 512 5 16 -9 88 32
-7 97 44 -6 129 64 -3 196 98 -2 49 17 -1 160 87 0 122 78 2 126 76 3 265 185 4 82
53 5 193 119 6 146 88 8 57 27 9 251 164 10 67 32 11 113 83 12 134 81 14 81 37 15
175 84 17 117 57 18 90 34 512 6 16 -9 67 18 -8 135 72 -6 109 59 -4 55 19 -3 160
84 -2 176 91 0 151 77 1 49 20 3 260 176 4 266 185 5 46 18 6 188 116 7 44 17 9
215 132 10 254 155 11 90 55 12 92 52 15 131 81 16 146 75 18 57 14 512 7 16 -8
123 61 -7 107 51 -4 113 67 -2 189 98 -1 169 88 0 55 24 2 97 70 3 67 36 4 198 118
5 203 124 6 76 47 8 153 81 10 236 141 11 236 136 14 130 75 16 127 70 17 146 82
512 8 16 -7 151 77 -5 65 23 -4 122 76 -3 110 63 -1 230 132 0 75 41 1 53 23 2 143
81 3 148 87 5 203 126 6 90 63 7 39 13 8 198 118 9 208 113 11 202 106 12 69 29 14
121 63 15 126 70 17 119 55 18 80 25 512 9 16 -7 71 23 -6 100 47 -5 92 42 -3 169
87 -2 142 79 -1 164 83 0 143 75 3 256 166 4 181 99 5 65 32 6 107 70 8 106 68 9
277 171 10 132 61 11 72 31 12 65 25 13 79 35 15 196 78 16 108 47 512 10 16 -8
111 47 -6 80 31 -5 51 13 -4 93 45 -3 98 52 -2 216 109 0 106 72 2 99 66 3 128 90
4 243 150 5 111 66 6 68 35 9 103 60 10 227 121 11 82 39 13 91 43 14 74 26 15 155
78 16 190 89 512 11 16 -7 99 40 -4 106 56 -2 141 75 -1 146 79 1 71 32 2 198 106
4 135 75 5 190 102 7 63 28 8 165 77 10 91 46 11 135 83 14 155 59 16 120 54 17
104 38 512 12 16 -7 92 34 -4 94 42 -3 88 40 -1 128 75 2 194 96 3 168 78 5 154 79
7 61 25 8 221 113 9 211 104 11 76 29 14 155 66 15 142 73 512 13 16 -5 65 18 -3
121 66 -2 90 39 1 112 67 2 59 20 3 189 89 4 104 61 5 46 13 7 128 76 9 276 144 10
193 95 13 103 46 15 177 87 16 112 41 512 14 16 -4 93 37 -3 72 23 -2 152 79 -1 58
12 1 92 44 2 122 73 3 70 26 4 176 76 7 107 60 8 151 83 9 97 43 10 204 97 12 68
21 13 68 20 14 123 56 16 136 57 512 15 16 -4 125 59 -3 72 23 -2 117 57 -1 116 60
2 158 75 3 88 39 4 85 37 5 117 65 8 175 76 9 96 40 10 56 14 11 78 27 14 159 67
512 16 16 -3 142 73 -1 83 30 1 72 24 2 95 40 3 144 69 4 56 15 5 61 18 8 110 52 9
137 74 10 79 28 14 127 52 512 17 16 -2 82 25 1 122 60 3 103 44 4 118 58 7 117 55
9 104 43 10 86 31 13 98 33 512 18 16 1 104 40 2 107 43 4 108 46 7 96 35 8 138 63
10 92 30 512 19 16 2 122 50 4 59 13 8 170 78 9 97 32 512
-9 17 1 98 33 5 97 33 512 -8 17 -1 82 25 0 95 33 5 113 46 6 115 47 512 -7 17 -2
65 17 0 117 52 2 53 12 3 82 30 4 85 31 6 162 81 512 -6 17 -2 105 44 1 129 69 4
151 75 5 72 24 6 85 33 7 119 61 8 51 12 10 114 49 11 90 29 512 -5 17 -5 99 37 -2
73 24 -1 149 82 0 81 31 1 91 39 4 106 53 5 153 78 6 76 29 7 72 26 9 65 20 10 57
15 11 157 76 12 93 33 512 -4 17 -6 117 49 -4 74 24 -3 104 49 -1 121 66 0 192 80
2 78 32 3 72 28 5 93 44 6 152 74 11 115 56 12 132 69 512 -3 17 -6 120 54 -5 88
32 -3 62 18 -2 154 72 0 174 84 1 122 70 2 55 17 3 55 17 4 154 71 6 124 65 7 80
34 9 58 18 10 110 57 12 93 38 13 68 21 15 82 26 512 -2 17 -5 113 54 -2 142 79 -1
124 76 1 139 74 4 201 101 5 179 81 7 100 57 10 150 72 11 125 73 13 67 22 14 56
15 16 103 40 512 -1 17 -7 92 33 -6 119 58 -5 53 13 -3 79 34 -1 159 76 0 85 41 1
70 31 3 92 51 4 131 84 5 214 114 6 109 67 7 72 32 9 79 36 10 68 26 11 193 84 12
122 70 15 87 32 16 59 15 512 0 17 -7 64 17 -6 140 76 -3 116 67 -2 73 29 -1 80 37
0 147 73 3 203 109 4 86 48 5 116 72 6 183 97 7 57 24 9 164 87 10 106 61 11 128
73 12 160 72 15 127 64 16 69 21 512 1 17 -8 100 40 -6 121 63 -4 72 28 -3 81 35
-2 181 84 0 166 84 1 86 52 2 67 33 3 156 78 4 257 160 5 59 26 6 129 70 7 49 18 8
76 41 9 116 66 10 251 141 11 94 50 12 89 42 14 46 11 15 63 20 16 130 69 17 65 18
512 2 17 -8 97 38 -7 118 57 -5 98 47 -4 76 31 -3 69 26 -2 169 90 -1 192 95 1 105
74 2 56 25 3 41 13 4 213 125 5 191 108 7 71 38 10 187 95 11 232 124 12 67 27 14
82 37 15 51 14 16 101 46 17 136 69 512 3 17 -7 130 64 -6 99 45 -3 148 77 -1 251
145 0 171 84 3 191 109 5 201 116 6 144 83 8 64 32 9 95 61 11 173 85 12 112 72 14
62 21 15 120 69 17 112 54 512 4 17 -8 78 25 -6 118 62 -3 146 93 -2 125 72 -1 108
69 0 194 103 1 47 17 3 191 109 4 176 97 6 213 132 9 201 112 10 151 79 12 81 41
15 163 74 16 100 47 18 84 30 512 5 17 -8 124 59 -7 90 35 -5 58 18 -4 61 20 -2
192 96 -1 71 32 0 110 75 2 136 71 3 133 77 4 255 169 5 150 77 6 107 65 8 90 60 9
169 89 10 279 173 11 140 68 14 83 37 15 110 59 16 168 89 17 72 23 512 6 17 -8 73
22 -7 122 59 -4 77 32 -3 88 44 -2 137 78 -1 143 70 2 212 126 3 86 54 4 193 113 5
185 102 8 148 85 9 98 65 10 167 83 11 184 91 12 72 32 14 121 73 15 55 16 16 103
48 17 153 81 512 7 17 -7 105 46 -6 75 26 -3 162 79 -1 130 78 0 74 38 2 169 90 3
233 142 5 161 85 6 67 35 8 107 76 9 257 155 10 95 58 11 124 73 12 116 78 13 63
23 14 77 32 15 142 63 16 54 14 17 94 38 512 8 17 -6 93 40 -3 129 69 -2 177 80 0
109 71 3 214 125 4 210 122 6 125 84 7 108 80 9 219 122 10 231 127 12 102 60 13
77 33 15 122 67 16 155 73 17 57 14 512 9 17 -7 62 17 -6 71 23 -4 108 57 -2 215
105 -1 121 78 0 85 45 1 53 21 2 192 105 4 223 130 5 134 79 6 114 64 7 63 29 8
194 99 9 103 66 10 197 101 11 148 72 13 55 17 14 116 60 16 171 84 17 118 52 512
10 17 -7 106 44 -5 53 14 -4 130 79 -3 106 56 -2 99 49 -1 204 99 2 182 93 3 153
82 4 53 20 5 116 74 6 63 28 8 183 90 9 94 49 10 63 24 11 159 79 14 164 80 15 84
31 16 83 28 17 109 44 512 11 17 -6 60 16 -5 64 19 -3 141 63 -1 115 67 2 95 54 3
222 119 4 86 45 5 52 19 6 87 51 8 126 87 9 169 76 10 122 78 14 107 51 15 164 61
16 69 19 17 57 12 512 12 17 -3 84 34 -2 122 70 1 96 52 3 164 84 4 186 90 6 46 13
7 103 61 9 136 69 10 199 91 13 71 24 15 134 65 16 127 57 512 13 17 -4 80 28 -2
120 65 -1 87 38 1 102 54 2 160 84 4 168 86 5 83 39 6 79 36 7 122 77 8 213 102 10
146 66 11 109 55 12 50 12 14 149 63 16 92 30 512 14 17 -4 78 25 -3 94 37 -1 119
62 2 165 84 3 116 64 4 58 18 5 126 79 8 230 107 9 176 75 11 109 52 14 137 61 15
148 69 512 15 17 -3 130 61 -2 65 18 -1 76 26 1 114 59 3 157 72 4 85 37 7 91 39 8
69 22 9 169 66 10 101 43 13 97 36 15 154 72 512 16 17 -3 87 28 -2 119 52 1 103
45 2 96 41 3 63 18 4 127 70 5 56 15 7 100 46 8 76 27 10 94 37 13 124 54 512 17
17 2 138 73 3 66 19 4 91 35 5 63 17 8 131 64 13 85 24 512 18 17 2 116 49 3 101
38 8 120 50 9 113 44 512 19 17 3 104 37 5 57 12 7 122 49 9 117 44 512
-8 18 1 93 31 7 99 34 512 -7 18 -1 98 34 1 104 40 4 116 50 5 113 46 7 80 24 512
-6 18 -1 106 43 0 70 20 3 67 19 5 155 67 6 106 46 11 127 52 512 -5 18 0 125 65 3
89 36 4 84 31 5 51 12 6 152 82 8 54 13 9 74 24 10 94 36 12 139 62 512 -4 18 -2
127 61 0 81 29 1 127 72 4 154 72 5 83 33 6 63 20 7 77 29 10 138 63 11 69 21 13
83 27 512 -3 18 -5 81 24 -3 74 24 -2 95 40 -1 169 76 0 49 12 1 151 85 3 60 19 4
96 45 5 175 84 6 70 25 7 49 13 10 129 73 11 111 52 512 -2 18 -6 113 47 -3 99 44
-1 127 72 0 152 64 3 121 74 5 132 80 6 151 66 9 87 39 11 103 50 12 123 68 15 86
29 512 -1 18 -6 97 37 -5 78 25 -3 80 31 -2 90 40 0 124 73 3 143 73 4 167 84 6
134 77 7 67 27 9 131 65 10 108 56 12 104 51 15 95 36 512 0 18 -5 89 35 -2 139 85
-1 110 61 1 58 20 2 67 28 3 55 18 4 258 144 5 113 64 6 81 40 7 81 39 8 89 46 9
53 17 10 200 90 11 144 76 16 121 58 512 1 18 -7 114 49 -3 77 29 -2 82 36 -1 159
76 0 55 18 1 61 23 2 64 26 3 108 67 4 129 64 5 189 95 7 114 77 8 110 67 9 101 58
10 110 64 11 233 118 12 108 58 13 54 17 15 66 20 512 2 18 -7 78 24 -6 102 42 -3
172 82 -2 57 18 -1 119 73 0 175 79 3 215 118 4 68 31 5 89 52 6 158 76 9 210 109
10 83 40 11 109 62 12 158 74 15 123 69 17 56 13 512 3 18 -6 96 40 -4 94 44 -3 99
49 -2 145 70 0 199 102 1 70 31 2 78 41 3 141 87 4 211 115 6 89 54 7 81 47 9 199
102 10 188 94 11 69 28 12 74 32 15 88 38 16 133 73 512 4 18 -7 75 23 -5 69 23 -4
91 40 -2 144 79 -1 137 73 0 64 25 1 85 46 2 111 68 4 217 124 5 179 93 8 61 27 10
190 93 11 139 72 14 105 55 16 126 67 17 122 60 512 5 18 -7 109 45 -6 66 20 -4 48
12 -3 118 69 -1 171 78 0 72 31 2 118 78 3 169 83 4 59 24 5 238 142 6 56 23 8 115
73 9 149 76 11 106 66 12 47 13 14 128 72 15 77 29 17 131 69 512 6 18 -6 103 46
-3 127 80 -2 87 41 -1 68 28 0 120 74 3 250 150 4 117 85 5 98 60 6 116 78 7 91 59
8 68 33 9 272 165 10 129 63 12 81 38 15 171 78 16 81 31 512 7 18 -7 56 14 -6 61
16 -3 74 29 -2 160 75 2 54 20 3 179 93 4 162 78 5 52 20 6 44 15 7 39 12 8 85 47
9 174 98 10 236 133 11 98 56 14 81 34 15 104 52 16 146 73 17 90 33 512 8 18 -7
81 27 -5 54 14 -4 103 49 -2 157 83 -1 138 71 2 168 79 4 155 83 5 132 72 8 179 90
9 75 33 10 169 89 11 143 66 14 147 69 15 56 15 16 73 24 17 141 71 512 9 18 -5 64
19 -4 65 21 -3 151 80 -1 187 84 0 77 35 1 77 36 2 114 61 3 247 139 5 181 92 8
146 73 9 214 110 11 108 64 12 55 17 13 71 28 14 133 79 15 126 66 17 84 27 512 10
18 -6 59 15 -5 68 20 -3 159 73 -2 144 94 -1 75 30 0 95 50 1 73 31 3 199 95 4 164
87 5 53 18 6 89 50 7 61 24 9 194 92 10 121 78 12 48 12 13 103 50 15 152 78 16
134 66 512 11 18 -4 90 37 -2 167 85 0 59 20 2 136 75 4 177 81 5 92 51 8 103 58 9
93 48 10 121 75 11 84 37 13 85 36 14 82 30 15 76 24 16 133 65 512 12 18 -4 81 28
-2 80 31 -1 89 40 2 168 81 3 68 26 4 108 64 5 126 70 8 188 81 9 59 18 11 84 35
14 151 63 15 79 26 512 13 18 -3 114 54 2 129 69 3 164 75 5 115 69 7 67 24 8 144
79 9 211 95 10 59 17 11 64 20 13 58 15 14 111 47 15 161 72 16 57 12 512 14 18 -3
105 43 -2 83 30 1 116 63 3 153 70 4 109 58 5 74 29 7 168 76 9 193 90 10 137 66
13 99 38 15 120 47 512 15 18 -2 118 54 0 58 16 1 70 22 2 125 67 4 128 69 6 50 13
7 107 50 8 144 71 10 133 71 13 83 26 14 130 55 512 16 18 -1 79 25 2 113 53 3 118
59 5 89 36 8 140 76 9 102 42 512 17 18 1 82 26 3 128 63 4 78 25 7 65 18 9 119 55
512 18 18 3 96 35 4 100 38 7 106 40 512 19 18 7 73 18 512
-7 19 5 97 34 6 105 38 512 -6 19 0 92 31 4 105 40 6 116 50 7 67 18 512 -5 19 -1
83 28 1 85 30 4 123 60 5 109 48 7 81 28 10 101 37 11 108 41 512 -4 19 -1 126 61
0 69 20 1 58 15 3 71 24 5 146 66 6 93 38 9 81 29 11 145 76 12 87 28 512 -3 19 -3
63 16 -2 82 28 0 164 76 3 82 32 4 102 49 5 48 11 6 132 67 9 89 37 10 70 22 12 96
36 512 -2 19 -2 122 62 0 123 66 1 105 52 2 53 15 4 162 82 5 90 41 6 84 36 7 83
36 9 51 13 10 146 75 512 -1 19 -5 64 16 -2 90 37 -1 140 78 1 92 43 4 127 77 5
164 75 7 86 40 10 142 73 11 122 67 512 0 19 -1 136 78 0 93 44 3 146 83 5 171 87
6 86 41 7 59 20 9 145 86 11 140 80 12 106 52 15 92 35 512 1 19 -6 101 40 -3 80
31 -2 91 40 0 120 70 3 178 80 4 136 86 5 72 30 6 102 57 9 196 88 10 150 82 12
111 59 15 104 45 16 101 41 512 2 19 -4 75 26 -2 153 79 -1 95 47 0 76 31 1 74 31
2 64 25 4 200 100 5 95 51 6 73 33 7 53 18 8 105 62 9 87 41 10 207 97 11 131 69
12 52 15 14 74 28 16 137 72 512 3 19 -4 63 19 -3 90 39 -2 96 46 -1 166 80 1 116
74 2 56 18 3 105 62 4 96 54 5 206 106 7 59 23 8 113 74 9 70 28 10 108 59 11 175
87 14 92 42 16 77 26 512 4 19 -6 64 17 -3 156 82 -1 141 70 0 146 72 1 63 24 3
182 87 5 137 83 6 146 83 8 57 21 9 191 96 11 54 17 12 66 24 14 66 23 15 117 62
17 67 18 512 5 19 -6 80 26 -3 120 67 -2 116 66 0 145 80 2 66 27 3 171 80 4 169
94 6 120 80 9 169 78 10 157 78 15 141 81 16 128 67 512 6 19 -4 66 21 -2 150 87
-1 100 52 2 146 74 4 209 112 5 115 75 6 68 29 8 124 88 9 48 14 10 204 103 11 110
66 14 94 44 15 52 14 16 148 78 17 75 23 512 7 19 -4 64 20 -3 76 29 -2 74 28 -1
120 66 0 95 50 2 170 89 3 104 61 4 84 43 5 168 79 8 170 79 9 137 82 10 82 38 11
159 87 14 134 83 15 88 37 17 101 40 512 8 19 -6 62 16 -3 108 52 -1 89 42 0 102
56 2 92 49 3 213 108 4 66 27 5 126 64 6 83 43 7 73 34 8 109 67 9 253 137 10 93
47 11 81 35 12 68 26 13 73 29 14 53 15 15 151 66 16 93 36 512 9 19 -5 60 16 -4
56 15 -3 110 54 -2 153 85 0 100 52 2 76 33 3 148 69 4 192 96 6 98 58 7 76 36 8
57 19 9 178 80 10 176 77 12 63 23 13 73 27 14 51 12 15 94 39 16 158 78 17 68 18
512 10 19 -4 112 51 -2 158 82 -1 119 68 0 59 19 2 175 77 4 156 77 5 103 61 8 193
92 10 105 55 11 79 34 13 65 21 14 140 83 16 113 50 512 11 19 -4 94 36 -3 94 37
-1 102 48 1 62 21 2 106 57 3 180 89 5 120 71 8 170 84 9 146 76 11 54 15 14 143
69 15 107 46 512 12 19 -3 127 65 -2 55 14 3 163 74 4 95 46 5 47 13 7 62 21 9 157
66 10 111 58 14 66 19 15 145 73 16 76 22 512 13 19 -2 106 46 1 95 43 2 82 32 3
110 58 4 132 78 7 117 66 8 81 32 9 94 42 10 148 78 13 96 39 14 61 15 15 57 12
512 14 19 -2 75 23 -1 80 28 2 138 67 4 122 68 5 66 23 6 77 31 7 65 21 8 234 106
10 82 29 11 77 26 14 144 70 512 15 19 2 102 45 3 135 75 6 50 12 8 172 86 9 145
68 11 91 35 14 120 49 512 16 19 1 99 39 3 126 64 4 93 38 7 98 39 9 128 63 10 70
19 13 98 34 512 17 19 2 107 43 4 111 47 5 58 14 7 90 31 8 88 29 10 76 22 512 18
19 5 55 12 8 119 48 9 60 12 512
-6 20 4 90 29 5 111 43 512 -5 20 3 74 22 5 111 46 6 88 30 9 63 15 512 -4 20 0 99
37 1 57 14 3 58 14 4 112 50 6 107 46 9 77 23 10 84 26 512 -3 20 -2 110 44 -1 78
24 1 101 43 4 127 66 5 115 57 7 70 22 10 132 63 11 99 38 512 -2 20 -3 54 11 -1
129 66 1 81 30 3 76 27 5 126 53 6 84 32 10 78 28 11 126 61 512 -1 20 -3 75 23 -1
75 25 0 124 66 3 115 63 4 63 20 5 78 31 6 129 73 9 84 34 11 66 20 12 83 30 512 0
20 -2 80 28 0 103 49 1 51 14 3 95 44 4 170 77 6 110 61 9 101 48 10 140 84 512 1
20 -2 96 42 -1 107 52 4 177 84 5 116 67 7 66 24 8 128 80 10 164 73 11 145 71 14
71 22 512 2 20 -3 65 19 -1 132 70 0 78 31 2 76 32 3 112 63 5 131 60 6 65 25 8 93
46 9 175 82 11 163 91 13 63 20 15 102 43 512 3 20 -3 125 67 -2 71 23 -1 74 28 0
140 68 3 162 79 4 128 83 5 70 28 6 117 75 9 215 103 10 99 50 12 88 40 15 124 64
16 96 37 512 4 20 -4 68 20 -3 55 14 -2 157 63 0 111 60 2 103 55 3 55 17 4 214
106 5 85 41 6 76 34 8 66 26 9 107 59 10 155 71 11 85 39 15 66 20 16 124 60 512 5
20 -4 76 26 -3 60 18 -2 128 72 -1 117 64 2 124 66 3 65 23 4 130 68 5 166 87 7 52
16 8 100 57 10 104 57 11 121 66 14 95 43 16 88 33 512 6 20 -3 83 31 -1 107 57 0
94 45 2 96 50 3 159 78 5 113 70 6 89 46 7 71 32 8 102 59 9 143 79 11 82 37 14
110 58 15 122 61 512 7 20 -3 93 40 -2 76 27 0 68 25 3 172 84 4 91 45 6 108 67 7
53 17 9 214 102 10 148 86 13 56 16 15 154 78 16 110 49 512 8 20 -4 84 31 -2 108
53 -1 68 23 2 106 57 3 66 24 4 170 87 5 63 24 6 62 23 7 46 12 8 137 71 9 96 47
10 210 97 11 85 37 12 58 18 14 89 37 16 144 80 512 9 20 -4 100 39 -3 53 13 -2 82
31 -1 121 66 2 155 78 3 101 52 4 98 51 5 126 83 8 196 91 9 106 55 10 91 43 11
135 66 14 139 73 15 83 29 512 10 20 -3 124 60 -1 108 53 1 81 35 2 67 23 3 183 79
5 83 38 6 59 20 8 133 86 9 183 90 10 69 25 11 78 32 13 67 21 14 101 45 15 136 71
16 70 19 512 11 20 -3 101 40 -2 105 46 0 65 21 1 73 27 2 69 24 3 118 69 4 146 76
6 82 37 7 96 50 9 139 84 10 99 49 13 102 46 15 116 52 16 116 50 512 12 20 -2 101
41 -1 83 31 2 148 75 4 125 75 5 99 50 8 164 74 10 87 37 11 64 20 13 86 33 14 105
44 512 13 20 -1 66 19 2 142 79 3 85 35 4 68 23 5 92 42 8 173 78 9 116 60 11 92
38 14 139 69 15 105 40 512 14 20 2 58 15 3 140 73 5 60 18 7 97 42 8 81 29 9 162
76 10 63 18 11 75 25 13 71 20 14 81 25 512 15 20 1 103 43 3 99 41 4 109 51 7 146
79 8 69 21 9 114 52 10 100 40 13 112 45 512 16 20 2 119 52 4 94 36 7 60 15 8 163
63 512 17 20 3 96 34 5 53 12 8 115 47 9 111 46 512
-4 21 4 106 41 5 89 31 7 63 16 512 -3 21 3 95 37 5 96 37 6 96 37 9 82 26 512 -2
21 0 98 38 3 68 20 4 110 49 6 114 55 9 96 37 10 94 35 512 -1 21 -2 93 33 1 78 27
4 147 80 5 87 34 7 89 38 -512
\DISK
RESET 5 1
\LIST 12
BLOCK IR(1,U'S) UNTIL O(1) H(1,X'S,U[ISO])
CONT IR(1,X'S) UNTIL P(4) O(1,X'S) SCALE
GROUP P(5) UNTIL F(6)
GROUP C(111) UNTIL C(116) H(116) UNTIL H(112)
RIDE C(111,U[ISO]) UNTIL C(116) H(116,U[ISO]) UNTIL H(112)
GROUP C(121) UNTIL C(126) H(126) UNTIL H(122)
RIDE C(121,U[ISO]) UNTIL C(126) H(126,U[ISO]) UNTIL H(122)
GROUP C(131) UNTIL C(136) H(136) UNTIL H(132)
RIDE C(131,U[ISO]) UNTIL C(136) H(136,U[ISO]) UNTIL H(132)
GROUP C(211) UNTIL C(216) H(216) UNTIL H(212)
RIDE C(211,U[ISO]) UNTIL C(216) H(216,U[ISO]) UNTIL H(212)
GROUP C(221) UNTIL C(226) H(226) UNTIL H(222)
RIDE C(221,U[ISO]) UNTIL C(226) H(226,U[ISO]) UNTIL H(222)
GROUP C(231) UNTIL C(236) H(236) UNTIL H(232)
RIDE C(231,U[ISO]) UNTIL C(236) H(236,U[ISO]) UNTIL H(232)
GROUP C(311) UNTIL C(316) H(316) UNTIL H(312)
RIDE C(311,U[ISO]) UNTIL C(316) H(316,U[ISO]) UNTIL H(312)
GROUP C(321) UNTIL C(326) H(326) UNTIL H(322)
RIDE C(321,U[ISO]) UNTIL C(326) H(326,U[ISO]) UNTIL H(322)
GROUP C(331) UNTIL C(336) H(336) UNTIL H(332)
RIDE C(331,U[ISO]) UNTIL C(336) H(336,U[ISO]) UNTIL H(332)
GROUP C(411) UNTIL C(416) H(413) UNTIL H(414)
RIDE C(411,U[ISO]) UNTIL C(416) H(413,U[ISO]) UNTIL H(414)
GROUP C(421) UNTIL C(426) H(426) UNTIL H(422)
RIDE C(421,U[ISO]) UNTIL C(426) H(426,U[ISO]) UNTIL H(422)
GROUP C(431) UNTIL C(436) H(436) UNTIL H(432)
RIDE C(431,U[ISO]) UNTIL C(436) H(436,U[ISO]) UNTIL H(432)
END
\LIST 22
END
\PRINT 22
\PURGE
end
\ add CHECK to locate failing restraint (Restraint no 28)
\check
end
\SFLS
REFINE
END
\DISK
RESET 5 1
DELETE 11
DELETE 22
\LIST 12
BLOCK
GROUP IR(1) UNTIL H(1)
\LIST 22
END
\PURGE
\SFLS
REFINE
END
\DISK
RESET 5 1
DELETE 22
DELETE 11
END
\PURGE
\DISK
EXTEND FREE = 200
\LIST 12
BLOCK X Y Z
\SFLS
REFINE
END
\SFLS
REFINE MATRIX=OLD
END
\DISK
RESET 5 1
DELETE 22
DELETE 11
END
\PURGE
\SFLS
CALC
END
\FINISH
|
590f7a61958d85ec0d0a5d6afdfd5dd0c98d0091 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH6/EX6.7/Example67.sce | 7de538d0be382a6e0502fab2b48629efe23a9973 | [] | 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,136 | sce | Example67.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 6, Example 7")
disp("Blade speed U is given by: in m/s")
D = 1050;
N = 2800;
U1 = %pi*D*N/(60*1000)
disp("The velocity diagram is shown in Fig. Ex67. Applying the cosine rule to the triangle ABC,")
C1 = 590;
alpha1 = 20;
V1 =(U1^2+C1^2-2*U1*C1*cos(alpha1*%pi/180))^0.5
disp("Applying the sine rule to the triangle ABC, C1sin (ACB) = V1/sin (alpha1)")
disp("but sin(ACB) = sin(180-beta1) = sin(beta1)")
beta1 = asin(C1*sin(alpha1*%pi/180)/V1)*180/%pi
beta2 = beta1;
disp("From Triangle ABD")
Cw1 = C1*cos(alpha1*%pi/180)
disp("From triangle CEF")
disp("Ca2/(U + Cw2) = tan(beta2) = tan(beta1) = tan(26.75) = 0.504")
Ca2 =155;
Cw2 = Ca2/tan(beta1*%pi/180) -U1
DeltaCw = Cw1+Cw2
disp("Relative velocity at the rotor outlet is:")
V2 = Ca2/sin(beta2*%pi/180)
disp("Blade velocity coefficient is:")
k = V2/V1
disp("Work done on the blades per kg/s: in kW")
W = DeltaCw *U1/1000
disp("Diagram efficiency")
etad = 2*W/(C1^2) *100000
|
c3953d96a775e2aaaf97c7f68ed5a1fe2cdb018b | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_arena_subroundobj.sci | cef56137923b2fd0c4a11f7eb3f6334bd7896d2f | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,525 | sci | kiks_arena_subroundobj.sci | function [] = kiks_arena_subroundobj(id,xpos,ypos)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
global("KIKS_MMPERPIXEL","KIKS_COLOR_CYLINDER","KIKS_ROUNDOBJMASK","KIKS_ROUNDOBJMASK_COL","KIKS_ARENA_MASK","KIKS_ARENA_COLORMASK","KIKS_ROUNDOBJECT_RADIUS");
[rows,cols] = size(mtlb_double(KIKS_ROUNDOBJMASK));
minx = mtlb_s(floor(mtlb_double(xpos)/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROUNDOBJECT_RADIUS)/mtlb_double(KIKS_MMPERPIXEL)));// xpos - object radius
miny = mtlb_s(floor(mtlb_double(ypos)/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROUNDOBJECT_RADIUS)/mtlb_double(KIKS_MMPERPIXEL)));// ypos - object radius
maxx = mtlb_a(floor(mtlb_double(xpos)/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROUNDOBJECT_RADIUS)/mtlb_double(KIKS_MMPERPIXEL)));
maxy = mtlb_a(floor(mtlb_double(ypos)/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROUNDOBJECT_RADIUS)/mtlb_double(KIKS_MMPERPIXEL)));
KIKS_ARENA_MASK(mtlb_imp(miny,maxy),mtlb_imp(minx,maxx)) = mtlb_s(mtlb_double(KIKS_ARENA_MASK(mtlb_imp(miny,maxy),mtlb_imp(minx,maxx))),mtlb_double(KIKS_ROUNDOBJMASK));
KIKS_ARENA_COLORMASK(mtlb_imp(miny,maxy),mtlb_imp(minx,maxx)) = mtlb_s(mtlb_double(KIKS_ARENA_COLORMASK(mtlb_imp(miny,maxy),mtlb_imp(minx,maxx))),mtlb_double(KIKS_ROUNDOBJMASK_COL));
endfunction
|
6a4ef24757f3753effd64b2e3d040bd709a400eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH6/EX6.11/EX_6_11.sce | 7f8afa923fad737ef2b255d17ad76e438f8aeae7 | [] | 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 | 609 | sce | EX_6_11.sce | // Example 6.11;// feedback factor and Change in gain
clc;
clear;
close;
Zi=1;//input impedance without feedback in kiilo ohms
Zo=10;//output impedance without feedback in kiilo ohms
Zof=1;//output impedance with feedback in killo ohms
A= 1000;// open loop voltage gain
Beta=( (Zo/Zof)-1)/A;// feedback ratio
BetaA= Beta*A;//feedback factor
A1= (1-0.1)*A;//new open loop voltage gain
Af=100;//FEEDBACK
Af1= (A1/(1+(Beta*A1)));//GAIN WITH FEEDBACL
dA=((Af-Af1)/Af)*100;// Change in overall gain in percentage
disp(BetaA,"feedback factor is")
disp(dA,"Change in overall gain in percentage is")
|
2045d1ec46e21bb9d249f1d19efbd5b8e4ebe7c0 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/corrmtx/corrmtx8.sce | fa33f025c364f20182c80921f9a22dbcfd9f7b3b | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 873 | sce | corrmtx8.sce | //i/p args are x and m and the method is specified
x=[1 2 3 4 5 7 4 62];
m=3;
X = corrmtx(x,m,'modified');
disp(X);
//output
//. 4 3. 2. 1.
// 5. 4. 3. 2.
// 7. 5. 4. 3.
// 4. 7. 5. 4.
// 62. 4. 7. 5.
// 1. 2. 3. 4.
// 2. 3. 4. 5.
// 3. 4. 5. 7.
// 4. 5. 7. 4.
// 5. 7. 4. 62.
//matlab
// 1.2649 0.9487 0.6325 0.3162
// 1.5811 1.2649 0.9487 0.6325
// 2.2136 1.5811 1.2649 0.9487
// 1.2649 2.2136 1.5811 1.2649
// 19.6061 1.2649 2.2136 1.5811
// 0.3162 0.6325 0.9487 1.2649
// 0.6325 0.9487 1.2649 1.5811
// 0.9487 1.2649 1.5811 2.2136
// 1.2649 1.5811 2.2136 1.2649
// 1.5811 2.2136 1.2649 19.6061
|
9507b4e76b7e870bf17cf2c09d7ea67a554102b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1586/CH5/EX5.8/EXP5_8.sce | c744c2dcf08b57c54374c4abb509e63c79bb1677 | [] | 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,203 | sce | EXP5_8.sce | clc;funcprot(0);//EXAMPLE 5.8
// Initialisation of Variables
H=10;.......//Required time to successfully carburize a batch of 500 steel gears
t1=1173;......//Temperature at carburizing a batch of 500 steel gears in K
t2=1273;.......//Temperature at carburizing a batch of 500 steel gears in K
Q=32900;.........//The activation energy for diffusion of BCC steel
R=1.987;.........//Gas constant in cal/mol.K
c1=1000;......//cost per hour to operate the carburizing furnace at 900degree centigrades
c2=1500;......//Cost per hour to operate the carburizing furnace at 1000 degree centigrade
H2=(exp(-Q /(R*t1))*H*3600)/exp(-Q /(R*t2));.......// Time requried to successfully carburize a batch of 500 steel gears at 1000 degree centigrade
Cp1=c1*H/500;.......//The cost per Part of steel rods at 900 degree centigrade
Cv=(c2*3.299)/500;.......//The cost per Part of steel rods at 1000 degree centigrade
disp(H2/3600,"Time requried to successfully carburize a batch of 500 steel gears at 1000 degree centigrade:")
disp(Cp1,"The cost of carburizing per Part of steel rods at 900 degree centigrade")
disp(Cv,"The cost of carburizing per Part of steel rods at 1000 degree centigrade")
|
547d4dba51990346236f4b0885c29a40d95761c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /716/CH4/EX4.21/Solved_Ex_4_21.sce | 508154d16dc80e78f85d35594b5537908baaeec6 | [] | 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 | 262 | sce | Solved_Ex_4_21.sce | //Determine fourier transform of Given Signal and sketch magnitude and phase spectrum
clc;
clear;
t=0:0.1:15;
a=1;
x=exp(-a*t).*(t>=0);
X=dft(x,-1);
Xmag=abs(X);
subplot(1,2,1)
plot(t,Xmag);
xphase=atan(imag(X),real(X));
subplot(1,2,2)
plot(t,xphase) |
dbf36f3a1c094a2b2022224b8a6116bd34344905 | 717ddeb7e700373742c617a95e25a2376565112c | /1766/CH1/EX1.2/EX1_2.sce | 61c9de745eac2babd0f2476f70752e32c740ea54 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 372 | sce | EX1_2.sce | clc;funcprot(0);//Example 1.2
//Initilisation of Variables
A=2;...........//Area of ironplate in m^2
Q=100*10^3;.........//Conduction in W
delt=70;.........//Temparature diffrence in degree celsius
L=0.05;............//Thickness of plate in m
//Calculations
K=(Q*L)/(A*delt);...........//Thermal conductivity in W/(m*K)
disp(K,"Thermal conductivity in W/(m*K):")
|
3cd5826361ef1d4ecc5a160c9dbebbad84c03a4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH1/EX1.13/Example1_13.sce | e5c94cea1d5907c3c44043917fe5d96dc1cf69ad | [] | 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 | 300 | sce | Example1_13.sce | //Scilab Code for Example 1.13 of Signals and systems by
//P.Ramakrishna Rao
clc;
clear;
//Discrete-time sequence plot
clc
A=10;
t=0:1/1000:1;
x=A*sin(2*%pi*100*t);
q=plot2d3(t,x);
disp('displaying a function plot on discrete time scale that has a sampling frequency of 1000 samples ps');
|
299df94339de55895d1165920cf262e4b0ac212e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2762/CH1/EX1.6.4/1_6_4.sce | 89ec7e124bcf3ac6f0064594dff54b12ae3cba7d | [] | 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 | 733 | sce | 1_6_4.sce | //Transport Processes and Seperation Process Principles
//Chapter 1
//Example 1.6-4
//Introduction to engineering principles and units
//given data
//heat of combustion for carbon to carbon dioxide is -393x10^3 kJ/kg mol or -94.0518 kCal/g mol
//heat of combustion for carbon to carbon monoxide is -110x10^3 kJ/kg mol or -26.4157 kCal/g mol
//basis: 10 g bol of carbon where 90% converts to carbon dioxide and rest to carbon monoxide
HkJ=(90/100)*10*(-393.513)+(10/100)*10*(-110.523);//change in enthalpy= sum of heat of combustion of products(as reactant is a plain element)
HkCal=(90/100)*10*(-94.0518)+(10/100)*10*(-26.4157);
mprintf("change in enthalpy %f kJ",HkJ)
mprintf("change in enthalpy %f kCal",HkCal)
//end
|
c9828079ed478017c25311fb7d5b4004ff8cc771 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH6/EX6.16/example6_16.sce | 4e254e49df871438f139e562590dee380c65d494 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 836 | sce | example6_16.sce | //Chapter 6
//Example 6_16
//Page 120
clear;clc;
p=200;
pf=0.8;
fc=100;
rc=0.05;
pae=500;
id=0.1;
h=5000;
x=fc;
y=pae*id;
ec_pf=sqrt(1-(y/x)^2);
cap=p*(tan(acos(pf))-tan(acos(ec_pf)));
uc=h*p;
ec=uc*rc;
cpae=y*cap;
dc=x*p/ec_pf;
ab=ec+cpae+dc;
printf("Max demand charges = %.0f kW \n", x);
printf("Expenditure on phase advnacing equipement = Rs. %.2f /kVAR/annnum \n\n", y);
printf("(i) Most economical power factor at which factory should operate = %.3f lag \n\n", ec_pf);
printf("(ii)Capacity of phase advancing equipment = %.2f kVAR \n\n", cap);
printf("(iii) Units consumed per year = %.0f kWh \n", uc);
printf("Annual energy charges = Rs. %.0f \n", ec);
printf("Annual cost of phase advancing equipment = Rs. %.0f \n", cpae);
printf("Max demand charges = Rs. %.0f \n", dc);
printf("Annual bill for energy = Rs. %.0f \n", ab);
|
fec754d2ecfbd4176eb74db17baa07fd5e1c4f0b | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH15/EX15.11/15_11.sce | 16fca0741eed07b62245e3066ff6136b25118fbc | [] | 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,013 | sce | 15_11.sce | clear;
clc;
funcprot(0);
//Example - 15.11
//Page number - 528
printf("Example - 15.11 and Page number - 528\n\n");
//Given
P = 12.25*101325*10^(-3);//[kPa]
z_1 = 0.8;
z_2 = 1 - z_1;
V = 0.4;
// log(P_1_sat) = 13.7713 - 2892.47/(T + 248.82)
// log(P_2_sat) = 13.7224 - 2151.63/(T + 236.91)
// P_1_sat = exp(13.7713 - 21892.47/(T + 248.82));
// P_2_sat = exp(13.7224 - 2151.63/(T + 236.91));
// Let the total mixture be 1 mol
// We have to assume a temperature such that,
// y_1 + y_2 = (K_1*z_1)/(1-V-K_1*V) + (K_2*z_2)/(1-V-K_2*V) = 1
// To assume a temperature we have to determine the BPT and DPT and take a temperature in between the range BPT to DPT
// At the bubble point the whole feed lies in the liquid phase and an infinitesimal amount of vapour is formed, therefore
x_1 = z_1;
x_2 = z_2;
// The bubble point pressure is given by
// P = x_1*(exp(13.7713 - 21892.47/(T + 248.82))) + x_2*(exp(13.7224 - 2151.63/(T + 236.91)));
deff('[y]=f(T)','y=x_1*(exp(13.7713 - 1892.47/(T + 248.82))) + x_2*(exp(13.7224 - 2151.63/(T + 236.91))) - P');
T_1 = fsolve(0.1,f);
BPT = T_1;
// At the dew point the whole feed lies in the vapour phase and a drop of liquid is formed, therefore
y_1 = z_1;
y_2 = z_2;
// The dew point equation is given by
// 1/P = y_1/P_1_sat + y_2/P_2_sat
deff('[y]=f1(T)','y=1/(y_1/(exp(13.7713 - 1892.47/(T + 248.82))) + y_2/(exp(13.7224 - 2151.63/(T + 236.91)))) - P');
T_2 = fsolve(0.1,f1);
DPT = T_2;
// Now the assumed temperature should be in the range of BPT and DPT
// Let the assumed temperature be 47 C
T = 47;//[C]
error = 10;
while(error>0.001)
P_1_sat = exp(13.7713 - 1892.47/(T + 248.82));
P_2_sat = exp(13.7224 - 2151.63/(T + 236.91));
K_1 = P_1_sat/P;
K_2 = P_2_sat/P;
y1 = (K_1*z_1)/(1-V+K_1*V);
y2 = (K_2*z_2)/(1-V+K_2*V);
y = y1 + y2;
error=abs(y - 1);
T = T - 0.0001;
end
printf(" The temperature when 40 mol %% of mixture is in the vapour is %f C",T);
|
52a3f0217a2a782577710d36ee895c8d9f7550ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH2/EX2.1/ex2_1.sce | 67dfa4f2b4eda5085796a6400b48a3f60b974955 | [] | 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 | 299 | sce | ex2_1.sce | // Exa 2.1
clc;
clear;
close;
// Given data
lembda = 11000;// in Å
lembda = lembda * 10^-10;
h = 6.625*10^-34;
c = 3*10^8;
q = 1.6*10^-19;// in C
E_g = h*c/lembda;// in J
E_g= E_g/q;// in eV
disp(E_g,"The energy gap in Si in eV is");
// Note: The answer in the book is not correct
|
2596f5c4615185fc4b123ab6d41622560f16d562 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2606/CH5/EX5.35/ex5_35.sce | 240883caf5ed57bbc58f436246e7120ee7ab2b6e | [] | 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 | 569 | sce | ex5_35.sce | //Page Number: 5.42
//Example 5.35
clc;
//Given,
n=24;
f=3.4D+3; //Hz
ts=1D-6; //Second
//(a) Spacing between succesive multiplexed pulses
fs=8000; //Samples per second
t1=1/fs;
t2=n+1; //One synchronizing bit
Tb=t1/t2;
//Actual Tb, as actual duration of each pulse is 1us
ATb=Tb-ts;
disp('Seconds',ATb,'Spacing between succesive multiplexed pulses');
//(b) Nyquist Rate of Sampling
f1=2*f;
T=1/f1; //Seconds
Tb1=T/t2;
ATb1=Tb1-ts;
disp('Seconds',ATb1,'Spacing between succesive multiplexed pulses using Nyquist rate of sampling');
|
993ffbecf969c0f470d00df06c462060ffec110f | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /kMatlab/kRadio_read.sci | 7d12316d487fb584c41639a875432927ea386805 | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sci | kRadio_read.sci | function [value] = kRadio_read(ref)
// Ouput variables initialisation (not found in input variables)
value=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
reply = kTurret(ref,4,"R");
// !! L.4: Matlab function sscanf not yet converted, original calling sequence used
[value,count,errmsg] = sscanf(mtlb_e(reply,3:$),"%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d");
endfunction
|
20395b118cc82069ac037a51bdbac3fd76033103 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH9/EX9.8/Aerials_Ex_9_8.sce | 1bcd672a422ef76ae9d8fa26f910ac25c16be578 | [] | 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 | 240 | sce | Aerials_Ex_9_8.sce | clc
//Chapter9
//Example9.8, page no 400
//Given
D1=1,D2=1.5*D1 // diameters of the new reflectors D1=1assumed for ease of calculation
G_dbs=10*log10((D2/D1)^2)//Gain in dBs
mprintf('Overall Gain is %f dBs',round(1000*G_dbs)/1000)
|
405d1a927bc039de2b55686a7307e81d8ee54d38 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH3/EX3.12/Ex3_12.sce | 138595e9660a7ae4cc8d6fccef5c0b67f7f48787 | [] | 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 | 379 | sce | Ex3_12.sce |
// Ex3_12
clc;
// Given:
C=0.3;// in MeV^-1
a=2.0;// in MeV
E=8; // in MeV
// Solution:
d=C*(exp(2*((2*8)^(0.5))));// excited level density
s=(1/d)*1000;// level spacing
nT=(E/a)^(0.5);// nuclear temperature
printf("\n The excited level density is = %f MeV",d)
printf("\n The level spacing is = %f keV",s)
printf("\n The nuclear temperature is = %f MeV",nT)
|
a4611fd607615f04a9f758600f3da9bd6ba59eb4 | 15b814fbf5ba965e98871286249c9f382d1eee4c | /mutivariable/trabalho-02/trabalho_2.sce | 41d01970f7060caa21a4837c20d0505967dd2f38 | [] | no_license | oscarkremer/disciplines | b5338f3a97c7a20e4b39618d7da0d4396dc35f07 | b8d1ca9da37f81c99ee08dbee795d2d936597666 | refs/heads/master | 2020-07-22T14:57:42.643799 | 2019-12-07T15:51:40 | 2019-12-07T15:51:40 | 207,239,678 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 69 | sce | trabalho_2.sce | s=poly(0,'s');
H=[2/s,(s+1)/(s^2-5)];
Sys=tf2ss(H)
clean(ss2tf(Sys))
|
af617c8ecc3da4a790e5bcc4dc1189c0058928cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.9/ch8_9.sci | 3ab3421dba943e63f27078b68f8ec50dc0b8a07f | [] | 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 | 660 | sci | ch8_9.sci | //to calculate the generator current and its pf
clc;
j=sqrt(-1);
X=.24;
r=400; //rating in MVA
rr=600; //rating in MVA
Pe=r/rr;
Vt=1;
Vth=1;
dl=asind(Pe*X/(Vt*Vth));
Ia=2*sind(dl/2)/X;
V=24000;
IaB=(rr/3)*10^6/(V/sqrt(3));
Iaa=Ia*IaB;disp(Iaa,'generating current(A)');
phi=dl/2;
pf= cosd(phi);disp(pf,'power factor');
Pe=1;
dl1=asind(Pe*X/(Vt*Vth));
Ia=2*sind(dl1/2)/X;
Iaa=Ia*IaB;disp(Iaa,'generating current(A)');
phi=dl1/2;
pf= cosd(phi);disp(pf,'power factor');
Ef=Vt+j*Ia*(complex(cosd(-phi),sind(-phi)))*X;
Eff=abs(Ef)*V;
dl2=atand(imag(Ef)/real(Ef));
Xth=.24;
Pe=abs(Ef)*Vth*sind(dl1+dl2)/(X+Xth);disp(Pe,'Pe(pu)'); |
b180d456885b9db729fabe11257f6dfe440ffd3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH9/EX9.5/Ex9_5.sce | c6cfeec956e8e6f3fa4256f0e7743efbc75f593d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 796 | sce | Ex9_5.sce | // chapter 9
// example 9.5
// find the equilibrium hole concentration and conductivity
// page 273-274
clear;
clc;
// given
ni=1.5E16; // in /m^3 (intrinsic carrier density)
ue=0.135; // in m^2/(V-s) (electron mobilities)
uh=0.048; // in m^2/(V-s) (hole mobilities)
e=1.6E-19; // in C (charge of electron)
ND=1E23; // in atom/m^3 (doping concentration)
// calculate
sigma_i=ni*e*(ue+uh); // calculation of intrinsic conductivity
printf('\nThe intrinsic conductivity for silicon is %1.2E S',sigma_i);
sigma=ND*ue*e; // calculation of conductivity after doping
printf('\n\nThe conductivity after doping with phosphorus atoms is %1.2E S',sigma);
rho=ni^2/ND; // calculation of equilibrium hole concentration
printf('\n\nThe equilibrium hole concentration is %1.2E /m^3',rho);
|
72bb793f2bf9afdd4bb05071e28984f965e6fca0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH28/EX28.7/Ex28_7.sce | 69942683537d84cd695b4ed0f25b2e281478d0a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 789 | sce | Ex28_7.sce | // chapter28
// example28.7
//page606
printf("Y = A . B + A . ( B + C ) + B . ( B + C ) \n")
printf("By thoerem 14 \n")
printf("Y = A . B + A . B + A . C + B . B + B .C \n")
printf("By theorem 6 \n")
printf("Y= A . B + A . B + A . C + B + B .C \n")
printf("By theorem 5 \n")
printf("Y = A . B + A . C + B + B . C \n")
printf("Factor B out of last 2 terms \n")
printf("Y = A . B + A . C + B . ( 1 + C ) \n")
printf("Apply cummulative law and theorem 7 \n")
printf("Y = A . B + A . C + B . 1 \n")
printf("Apply theorem 2 \n")
printf("Y = A . B + A . C + B \n")
printf("Factor B out of first and third terms \n")
printf("Y = B . ( A + 1 ) + A . C \n")
printf("Apply theorem 7 \n")
printf("Y = B . 1 + A . C \n")
printf("Apply theorem 2 \n")
printf("Y = B + A . C \n")
|
f039549df876805b465efb12dbf23241e19c50b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH6/EX6.14/ex6_14.sce | 947ccbd17857fe5302bdef62e370c1344b30f173 | [] | 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 | 555 | sce | ex6_14.sce | // Exa 6.14
clc;
clear;
close;
format('v',6)
// Given data
R1 = 100;// in ohm
R2 = R1;// in ohm
R3 = 3.9;// in k ohm
R3 = R3 * 10^3;// in ohm
R_F = R3;// in ohm
Vx = -3.2;// in V
Vy = -3;// in V
// output voltage due to Vx, Vox = -(R_F/R1)*Vx and due to Vy, Voy = (R3/(R2+R3)) * (1+(R_F/R1))*Vy
// Vo = Vox + Voy = -(R_F/R1)*Vx + (R_F/R1)*Vy (as R1=R2 and R3=Rf)
//So, Aod = Vo/(Vx-Vy) = -R_F/R1;
Aod = -R_F/R1;
disp(Aod,"The closed loop differential gain is");
Vo = (-R_F/R1)*(Vx-Vy);// in V
disp(Vo,"The output voltage in V is");
|
eb4ab395bf8bffe625cd46e28bc6e08e063dd7b0 | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-MathematicalFunctions/FLMod-NZ-01.tst | 8a2a73961b69a04c3d97d291c6cbf71567a7f7fc | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,226 | tst | FLMod-NZ-01.tst | -- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Teradata
--
-- Copyright (c): 2014 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
-- Functional Test Specifications:
--
-- Test Category: Math Functions
--
-- Test Unit Number: FLMod-TD-01
--
-- Name(s): FLMod
--
-- Description: Scalar function which returns the remainder after a number (dividend) is divided by another number (divisor)
--
-- Applications:
--
-- Signature: FLMod(x BIGINT, n BIGINT)
--
-- Parameters: See Documentation
--
-- Return value: BIGINT
--
-- Last Updated: 01-29-2014
--
-- Author: <Zhi.Wang@fuzzyl.com>
--
-- BEGIN: TEST SCRIPT
-- .run file=../PulsarLogOn.sql
-- .set width 2500
-- BEGIN: POSITIVE TEST(s)
---- Positive Test 1: Manual Example
--- Same Output, Good
SELECT FLMod(12,5) AS Modulo;
---- Positive Test 2: Dividend < Divisor
--- Return expected results, Good
SELECT FLMod(5,12) AS Modulo;
SELECT FLMod(0,12) AS Modulo;
---- Positive Test 3: Negative Dividend or Divisor,
--- Return expected results, Good
SELECT FLMod(-12,5) AS Modulo;
SELECT FLMod(12,-5) AS Modulo;
SELECT FLMod(-12,-5) AS Modulo;
---- Positive Test 4: Should Output 0
--- Return expected results, Good
SELECT FLMod(12,1) AS Modulo;
-- END: POSITIVE TEST(s)
-- BEGIN: NEGATIVE TEST(s)
---- Negative Test 1: Input Out of Boundary Values
--- Return expected results, Good
SELECT FLMod(CAST (2 ** 63 AS BIGINT),1) AS Modulo;
---- Negative Test 2: Divisor = 0
--- Return expected error, Good
SELECT FLMod(12,0) AS Modulo;
---- Negative Test 3: Invalid Data Type
--- Return expected error, Good
SELECT FLMod(12,1.0) AS Modulo;
SELECT FLMod(NULL,1) AS Modulo;
SELECT FLMod(12,NULL) AS Modulo;
-- END: NEGATIVE TEST(s)
-- END: TEST SCRIPT
|
28b3a61b98e7e1aa70bdc5fad210cf2fdeb979a9 | f2d773b00b1387882aee366ee149118d8ef67b07 | /pso-tsp.sci | 91e91f6a683ddd76791c3a8a192d31888609b60b | [] | no_license | eduartheinen/pso-tsp | c1689f9fa9b03bf14e1523cc14acc708499729c2 | 39309bede47a8d39b803ec12b8bc9cbce1edeb0f | refs/heads/master | 2021-01-11T08:42:20.788981 | 2016-10-07T23:21:57 | 2016-10-07T23:21:57 | 69,510,304 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,163 | sci | pso-tsp.sci | function result = run(data, particles, iterations)
ploty = zeros(iterations)
[r, c] = size(data)
distances = zeros(r, r)
for i=1:r
for j=1:r
distx = (data(i,2) - data(j,2))^2
disty = (data(i,3) - data(j,3))^2
distances(i,j) = sqrt(distx + disty)
end
end
f = zeros(particles) //objective function
v = zeros(particles, r) //particle's velocity
x = zeros(particles, r) //solutions, particles
//weights
c1 = [0.9:-(0.8/iterations):0.1]
c2 = [0.05:(0.75/iterations):0.8]
x = grand(particles, "prm", (1:r)) //random initial swarm
for p=1:particles
//x(p,:) = removecrossings(x(p,:), data)
f(p) = objectivefn(x(p, :), distances)
end
pbestx = zeros(particles, r) //best route found by the particle
gbestx = zeros(1, r) //best route found by the swarm
pbestf = zeros(particles, 1) //best fitness reached by the particle
pbestx = x //first route is the best so far
pbestf = f //first fitness is the best so far
[i, j] = min(pbestf) //index of smallest fitness (smaller is better)
gbestx = pbestx(j, :) //best route found by all particles
gbestf = pbestf(j) //best fitness found by all particles
for i=1:iterations
c3 = 1-(c1(i)+c2(i))
for p=1:particles
// x = busca local na particula (hill climbing/delete crossings/2-opt)
x(p,:) = neighborhoodinversion(x(p,:), c1(i)) //neighborhoodinversion - local search
// pathrelinking entre pbest e x
x(p,:) = pathrelinking(x(p,:), pbestx(p,:), c2(i))
// pathrelinking entre gbest e x
x(p,:) = pathrelinking(x(p,:), gbestx(1,:), c3)
// atualiza o f(p)
f(p) = objectivefn(x(p, :), distances)
if(f(p) < pbestf(p))
x(p,:) = removecrossings(x(p,:), c1(i))
pbestx(p,:) = x(p,:)
pbestf(p) = f(p)
if(f(p) < gbestf)
gbestx = x(p,:)
gbestf = f(p)
end
end
end
ploty(i) = gbestf
disp("i:" + string(i) + "--gbest:" + string(gbestf) + "--weights:" + string(c1(i)) + ',' + string(c2(i)) + ',' + string(c3))
end
plot2d(ploty)
result = gbestf
endfunction
|
067a5e923eaceda02dfe944e1626cf6269b4394b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH13/EX13.11/Ex13_11.sce | 3de391bdf3edc2fa3e3fcc7021e477f2d56a4750 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 270 | sce | Ex13_11.sce | clc();
clear;
//Given :
V1 = 250; // potential in V
V2 = 500;// potential in V
theta1 = 45;// angle in degrees
//Law of electron refraction = sin(theta1)/sin(theta2) = (V2/V1)^0.5
theta2 = asind(((V1/V2)^(1/2))*sind(45));
printf("theta2 = %d degrees",theta2);
|
18717b9345162e2085dca9575e18f690309de811 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH2/EX2.3/Ex2_3.sce | 9c8fa4c4ca85f768684047029387f2f2493ee753 | [] | 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 | 445 | sce | Ex2_3.sce | //Caption: Probability
//Example 2.3
//page no 43
//find the probability
clc;
clear;
total_cards=52;
ways_of_drawingtwocards=52*51/(2*1);//ways of drawing 2cards from a deck of 52cards
diamonds=13;
Hearts=13;
waysof_diamonds_Hearts=diamonds*Hearts;//ways of drawing a Diamond and a Heart
probability=waysof_diamonds_Hearts/ways_of_drawingtwocards;
disp(probability,"Probability that one card is Diamond and Othercard is Heart");
|
99083c341e726671da4828401e4d22164a5b2337 | 449d555969bfd7befe906877abab098c6e63a0e8 | /491/CH8/EX8.2/8_2.sce | 0e988eb43b7be9694021806f8bd2d1adfdea7f29 | [] | 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,180 | sce | 8_2.sce | a = 55 ; // Angle made by helix with longitudinal axis in degree
r = 1.8 ; // Inner radius of vessel in m
t = 0.02 ; // thickness of vessel in m
E = 200e09 ; // Modulus of ealsticity of steel in Pa
v = 0.3 ; // Poission's ratio of steel
P = 800e03 ; // Pressure inside the tank in Pa
// Part (a)
s1 = (P*r)/t ; // Circumferential stress in Pa
s2 = (P*r)/(2*t) ; // Longitudinal stress in Pa
// Part (b)
t_max_z = (s1-s2)/2 ; // Maximum inplane shear stress in Pa
t_max = s1/2 ; // Maximum out of plane shear stress in Pa
// Part (c)
e1 = (s1/(2*E))*(2-v) ; // Strain in circumferential direction
e2 = (s2/E)*(1-(2*v)); // Strain in longitudinal direction
// Part (d)
// x1 is the direction along the helix
theta = 90 - a ;
sx1 = ((P*r)/(4*t))*(3-cosd(2*theta)); // Stress along x1 direction
tx1y1 = ((P*r)/(4*t))*(sind(2*theta)); // Shear stress in x1y1 plane
sy1 = s1+s2-sx1 ; // Stress along y1 direction
// Mohr Circle Method
savg = (s1+s2)/2 ; // Average stress in Pa
R = (s1 - s2 )/2 ; // Radius of Mohr's Circle in Pa
sx1_ = savg - R*cosd(2*theta) ; // Stress along x1 direction
tx1y1_ = R*sind(2*theta); // Shear stress in x1y1 plane
|
f6ba81aa7313a5726dae49be7bf8b3c77de3853d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH10/EX10.3/103.sce | 5966a6d0c8db52105ace7d47f9dcdd10a8352983 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | 103.sce | // problem 10.3
d2=0.6
Q=20/60
N=1400/60
V1=2.8
g=9.81
y2=30
w=9810
Vf1=V1
Vf2=V1
u2=3.142*d2*N
x=Vf2/tand(y2)
Vw2=u2-x
Hm=Vw2*u2/g
P=(w*Q*Hm)/1000
disp(P,Hm,"head developed, pump power")
|
f7665e89e8c6a222e46317bd66255d3d5b38c6fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH5/EX5.1.13/5_1_13.sce | 0d95a34e0f695c1087c7ac620f76a56030e55347 | [] | 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,078 | sce | 5_1_13.sce | disp('To find a basis for the eigenspace')
disp('Matrix A=')
a=[4 0 1;-2 1 0;-2 0 1]
disp(a)
disp('for lambda=1')
disp('A-1I=')
b=a-eye(3,3)
disp(b)
disp('solving (A-I)x=0, we get')
disp('-2*x1=0 and 3*x1+x3=0')
disp('therefore, x1=x3=0')
disp('which leaves x2 as a free variable')
disp('Hence a basis for the eigen space is:')
disp([0;1;0])
disp('for lambda=2')
disp('A-2I=')
b=a-2*eye(3,3)
disp(b)
disp('performing row operations on the augmented matrix')
c=[b [0;0;0]]
disp(c)
c(2,:)=c(2,:)+c(1,:)
c(3,:)=c(3,:)+c(1,:)
disp(c)
c(1,:)=c(1,:)/c(2,2)
disp(c)
disp('We can see that x3 is a free variable')
disp('x2=x3 and x1=-.05*x3')
disp('Hence, a basis for the eigenspace is:')
disp([-.5;1;1])
disp('for lambda=3')
disp('A-3I=')
b=a-3*eye(3,3)
disp(b)
disp('performing row operations on the augmented matrix')
c=[b [0;0;0]]
disp(c)
c(2,:)=c(2,:)+2*c(1,:)
c(3,:)=c(3,:)+2*c(1,:)
disp(c)
c(2,:)=c(2,:)/2
disp(c)
disp('Again x3 is a free variable')
disp('x1=-x3 and x2=x3')
disp('Hence, a basis for the eigenspace is:')
disp([-1;1;1]) |
37deb67dbe5b8230315a214f90926bd5770eb8b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH10/EX10.2/Ex10_2.sce | 77d5e6ac759d6814033ce92e3e7a2feccddd230c | [] | 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 | 822 | sce | Ex10_2.sce | //scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 10.2\n\n\n");
// Chapter 10 : Refrigeration
// Problem 10.2 (page no. 504)
// Solution
T1=20+273; //20C=20+273 R //Energy flows into the system at reservoir at constant temperature T1(unit:R)
T2=-5+273; //-5C=-5+273 R //Heat is rejected to the constant temperature T2(Unit:R)
printf("Solution for (a),\n");
COP=T2/(T1-T2); //Coefficient of performance
printf("Coefficient of performance(COP) of the cycle is %f\n\n",COP);
printf("Solution for (b),\n");
Qremoved=30; //Unit:kW //heat removal
W=Qremoved/COP; //power required //unit:kW
printf("The power required is %f kW \n\n",W);
printf("Solution for (c),\n");
Qrej=Qremoved+W; //The rate of heat rejected to the room //Unit:kW
printf("The rate of heat rejected to the room is %f kW",Qrej);
|
58695ae79b1fcf1bba848714289ef2bd8a3e596e | 449d555969bfd7befe906877abab098c6e63a0e8 | /22/CH5/EX5.18/ch5ex18.sce | cfb08de6d344eee8902d4be8a13eeb61ab6f7904 | [] | 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,175 | sce | ch5ex18.sce | //signals and systems
//Inverse Z Transform:ROC |z|>2
z = %z;
syms n z1;//To find out Inverse z transform z must be linear z = z1
X =-z*(z+0.4)/((z-0.8)*(z-2))
X1 = denom(X);
zp = roots(X1);
X1 = -z1*(z1+0.4)/((z1-0.8)*(z1-2))
F1 = X1*(z1^(n-1))*(z1-zp(1));
F2 = X1*(z1^(n-1))*(z1-zp(2));
h1 = limit(F1,z1,zp(1));
disp(h1,'h1[n]=')
h2 = limit(F2,z1,zp(2));
disp(h2,'h2[n]=')
h = h1+h2;
disp(h,'h[n]=')
//Inverse Z Transform:ROC 0.8<|z|<2
z = %z;
syms n z1;
X =-z*(z+0.4)/((z-0.8)*(z-2))
X1 = denom(X);
zp = roots(X1);
X1 = -z1*(z1+0.4)/((z1-0.8)*(z1-2))
F1 = X1*(z1^(n-1))*(z1-zp(1));
F2 = X1*(z1^(n-1))*(z1-zp(2));
h1 = limit(F1,z1,zp(1));
disp(h1*'u(n)','h1[n]=')
h2 = limit(F2,z1,zp(2));
disp((h2)*'u(-n-1)','h2[n]=')
disp((h1)*'u(n)'-(h2)*'u(n-1)','h[n]=')
//Inverse Z Transform:ROC |z|<0.8
z = %z;
syms n z1;
X =-z*(z+0.4)/((z-0.8)*(z-2))
X1 = denom(X);
zp = roots(X1);
X1 = -z1*(z1+0.4)/((z1-0.8)*(z1-2))
F1 = X1*(z1^(n-1))*(z1-zp(1));
F2 = X1*(z1^(n-1))*(z1-zp(2));
h1 = limit(F1,z1,zp(1));
disp(h1*'u(-n-1)','h1[n]=')
h2 = limit(F2,z1,zp(2));
disp((h2)*'u(-n-1)','h2[n]=')
disp(-(h1)*'u(-n-1)'-(h2)*'u(-n-1)','h[n]=') |
b243906e139de650ce257cf5cc466cffef5b62b4 | 139d4a83f28a14dc04c48d99a492bec7abcc3229 | /lab3_v8/0_bisection.sce | e1eaeddd6b9a7fd1cad2680c7c4333239ad05a64 | [
"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 | 673 | sce | 0_bisection.sce | function [intervalA, intervalB] = GetNewInterval(f, a, b)
C0 = ( a + b ) / 2;
if ( f( a ) * f( C0 ) < 0 ) then
intervalA = a;
intervalB = C0;
elseif( f( b ) * f( C0 ) < 0) then
intervalA = C0;
intervalB = b;
else
disp( "Invalid interval specified" )
end
endfunction
function x = BisectionSolve( f, a, b, density )
it = 1;
while %T
[ a, b ] = GetNewInterval( f, a, b );
if(abs( a - b ) < density)
x = ( a + b ) / 2;
break;
end
it = it + 1;
end
mprintf( "\nSolved on iteration number %d\n", it )
endfunction
|
27b4b6f64db472c034c910bbb2e13f72bf30f6d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH4/EX4.2/4_2.sce | 4b0c67a63828e3d63d0d27872e4ceb033fa050a0 | [] | 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 | 339 | sce | 4_2.sce | //Eg-4.2
//pg-143
clear
clc
xl=0;
xu=1;
for i=1:20
fl=xl-cos(xl);
fu=xu-cos(xu);
rt=(xl+xu)/2;
fr=rt-cos(rt);
if fl*fr<0 then
xu=(xl+xu)/2;
elseif fr*fu<0 then
xl=(xl+xu)/2;
else
rt=(xl+xu)/2;
end
end
printf('The solution after 20 iterations is %f',rt)
|
8880e2b216c0a98f04cb2b25d5eb984746834202 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH6/EX6.5/example6_5.sce | e087a3db3ca899a190628ce2fd44685795e02e80 | [] | 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,121 | sce | example6_5.sce | v=24;
r1=2.2;
r2=1;
r3=4.7;
disp("Part a");
i1=v/r1;
disp("the current drawn (in mA) by R1 is"); disp(i1);
i2=v/r2;
disp("the current drawn (in mA) by R2 is"); disp(i2);
i3=v/r3;
disp("the current drawn (in mA) by R3 is"); disp(i3);
disp("Part b");
i=i1+i2+i3;
disp("the total current drawn (in mA) from the source is"); disp(i);
disp("Part c");
r=v/i;
disp("the combined resistance (in Ω) is"); disp(r);
disp("Part d");
r=1/(1/r1+1/r2+1/r3);
disp("the combined resistance (in Ω) using Eq. 6.4 is"); disp(r);
disp("Part e");
i=v/r;
disp("the total current drawn (in mA) using the combine resistance is"); disp(i);
disp("Part f");
disp("the reading of the ammeter (in mA) between R1 and R2 is"); disp(i2+i3);
disp("Part g");
p1=(v^2)/r1;
disp("Power dissipated (in mW) by R1 is"); disp(p1);
p2=(v^2)/r2;
disp("Power dissipated (in mW) by R2 is"); disp(p2);
p3=(v^2)/r3;
disp("Power dissipated (in mW) by R3 is"); disp(p3);
disp("Part h");
p=p1+p2+p3;
disp("the total power dissipated (in mW) by the source is"); disp(p);
disp("Part i");
disp("the voltage across R3 will remain 24 V"); |
82d778ee42f5604c58bbade764ab21680798d020 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3041/CH7/EX7.3/Ex7_3.sce | ec6ebf00aacf02f8b3becae8ceb417f7b01550ef | [] | 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 | 326 | sce | Ex7_3.sce |
//Variable declaration
f=50*10**3. //OPAMP freequency(Hz)
Vm=0.02 //maximum value of signal voltage(V)
S=.5*10**6 //slew rate(V/s)
//Calculations
Kvf=S/(2*(%pi)*f*Vm) //closed loop gain of amplifier
//Results
printf ("closed loop gain of amplifier is %.f",Kvf)
|
cf1187c708d8dc45fcdd4572e9cb7ea5fca18240 | 9aeb794bf9dddf62cf937b7e561b55ebff5be023 | /Exercise_06.sce | 0bf67ce09f20aca99abab0cef6f25613f75cd33a | [] | no_license | Gotcha17/CompFin_Sheet2 | b0a156f8c2fce06771cc2e83ddac80ac5f529006 | 1b9c08bf5afc0d94554b2d67f7da767be721b367 | refs/heads/master | 2021-01-02T23:01:10.461634 | 2017-08-15T22:20:37 | 2017-08-15T22:20:37 | 99,440,381 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,612 | sce | Exercise_06.sce | clc; clear; //clears the console and all previously stored variables
function V_0 = UpOutPut_BinMod(S_0, r, sigma, T, K, M)
delta_t = T/M; //calculation of delta_t
Beta = (exp(-r*delta_t)+exp((r+sigma^2)*delta_t))/2; //calculation of beta for CRR
u=Beta+sqrt((Beta^2)-1); //so u>d is true
d=u^-1; //because ud=1
q=(exp(r*delta_t)-d)/(u-d); //calculation of succes probability (u)
S=zeros(M+1,M+1); //creation stock price matrix
S(1,1)=S_0; //Setting stock price at t=0 as initial price in the stock matrix
for i=2:M+1; //Initializing algo for computation of stock price
for j=1:i;
S(j,i)=S(1,1)*u^(j-1)*d^(i-j); //with j upwards and i-j downwards movements
end;
end;
V=-ones(M+1,M+1); //creating option value matrix
V(:,M+1)=max((K-S(:,M+1)), 0); //calculation of option values for last column
for i=M:-1:1 //Initializing algo for computation of option price
//for j=1:i (it is faster to use matrix operation than to include a second "for loop")
//calculation of option values for rest of the matrix until V_0
V(1:i,i)=max(max((K-S(1:i,i)),0), exp(-r*delta_t)*(q*V(2:i+1,i+1)+(1-q)*V(1:i,i+1)));
//end (not needed as second "for loop" is not used)
end
V_0 = V(1,1); //setting of first element of the option value matrix as option price at time t=0
endfunction
S_0=100; r=0.05; sigma=0.2; T=1; , K=95, M=1000;
V_0 = UpOutPut_BinMod(S_0, r, sigma, T, K, M);
disp("Option price at time t=0 for an American put option is "+string(V_0));
|
6e0ad91f3f608f3a7cc0270be24baf8d8bfcccef | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH5/EX5.13/ex5_13.sce | cf63e54914474842f9626e33f16dc659bbef769d | [] | 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 | 200 | sce | ex5_13.sce | //Page Number: 298
//Example 5.13
clc;
//Given
f=9D+9;//hz
v0=250;//V
l=0.5;//cm
l1=l/100;//m
//Bandwidth
n=3;
df=(n+(3/4))/(6.774D-6*l1*sqrt(v0));//hz
disp('Mhz',df/10^6,'Bandwidth:');
|
7be418e3f9e7cd2ec74ad5789feb24fa6c2b3e8c | 683d55d55e7449e5ffb06e17d669fd6e8d7eca1c | /src/beuler.sce | 977441578c79703d990db23ac6ed4f2951e1064d | [] | no_license | lucciano/ssc-lcc | 58efd303220cb36c09a305457fe5e5cc97e77b63 | fcd50437ca953ef0b0491672a71bee19383bc09b | refs/heads/master | 2021-01-19T20:15:53.904767 | 2014-04-26T20:15:03 | 2014-04-26T20:15:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 769 | sce | beuler.sce | function [t,x]=beuler(f,x0,ti,tf,h)
//metodo de Backward Euler con iteracion de Newton
//exec('jacobiant.sci')
t=[ti:h:tf];
x=zeros(length(x0),length(t));
x(:,1)=x0;
k=0;
I=eye(length(x0),length(x0))//matriz identidad
for tk=ti:h:tf-h
k=k+1;
//armamos la iteracion de Newton
xprev=x(:,k);
J=jacobiant(f,xprev,t(k+1));//Jacobiano del Sistema
invH=pinv(I-h*J);//inversa del Hessiano
x(:,k+1)=xprev-invH*(xprev-h*f(xprev,t(k+1))-x(:,k));//iteracion de Newton
l=0;
while norm(x(:,k+1)-xprev)>1e-6*(norm(xprev)+1e-3)&l<20
l=l+1;
xprev=x(:,k+1);
J=jacobiant(f,xprev,t(k+1));//Jacobiano del Sistema
invH=pinv(I-h*J);//inversa del Hessiano
x(:,k+1)=xprev-invH*(xprev-h*f(xprev,t(k+1))-x(:,k));//iteracion de Newton
end
end
endfunction
|
648166d3a4a38d1a67b64ccfac3b0a25e561a8b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3492/CH3/EX3.16/Ex3_16.sce | f05c52772ff3f21f95a2993da3443a35391551d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | Ex3_16.sce | clc
//Chapter3
//Ex_16
//Given
h=6.6*10^-34 //in J s
e=1.6*10^-19 // in coulombs
E1=13.6 //in eV
E1=E1*e //in J
Z=1
n1=109
n2=110
ao=52.918*10^-12 // in m
v=Z^2*E1*((1/n1^2)-(1/n2^2))/h
disp(v*10^-6,"Frequency of radiation in MHz is")
disp("The frequency of radiation in the transition from n1=109 to n2=110 is same as that of the detected frequency .Hence, the radiation comes from excited hydrogen atoms in the give transition")
x=2*n2^2*ao
disp(x*10^6,"The sie of the atom in micro meter is")
//slight difference in the answer is due to approximations
|
495ab1cae53a04b46074f8fcabf9a63de5c17992 | 580b74e6df0eda66a69f771dbab3a60d7b5eb819 | /test/AJOUT_dolly_100.tst | fdc65bf5e3948752c7d7c1ecf3f7feb075140aa0 | [] | no_license | karimelkha/Client-server-application-for-bank | 98fdae450c79e16f2020d0640b0f0d0936e97b37 | 2b0fbc6f4a7f1f1e7ff1a85755bdf082ca542206 | refs/heads/main | 2023-08-20T22:41:53.517505 | 2021-10-06T08:11:59 | 2021-10-06T08:11:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 34 | tst | AJOUT_dolly_100.tst | AJOUT dolly CompteEpargne 1234 100 |
2c909326480782b10fb67ea731a0ff682824e6d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH3/EX3.5/3_5.sci | a5c8ac3017a2590a8818870b80015af05b2c291a | [] | 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 | 591 | sci | 3_5.sci | // Calculate the range of readings specified interms of f.s.d. and true value
clc;
disp('Range when specified interms of f.s.d.')
Error_fsd=1*1000/100'
Range_lower_value=100-Error_fsd;
disp(Range_lower_value,'Lower value of range (kN/m2)')
Range_upper_value=100+Error_fsd;
disp(Range_upper_value,'Upper value of range (kN/m2)')
disp('Range when specified interms of True value')
Error_true=1*100/100'
Range_lower_value=100-Error_true;
disp(Range_lower_value,'Lower value of range (kN/m2)')
Range_upper_value=100+Error_true;
disp(Range_upper_value,'Upper value of range (kN/m2)') |
f9c987c1c76c3069e42b64e9f19f21b3b0913096 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH5/EX5.13.1/Ex5_13.sce | caa43538d2d9540b3951333b41cadef1a2c20179 | [] | 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 | 478 | sce | Ex5_13.sce | clc
clear
Ma=18000; //in kg/hr
P=10; //in bar
x=0.97; //Dryness Fraction
Tfw=40; //in C
Mf=2050; //in kg/hr
CV=28000; //kJ/kg
//At 10 bar
Hf1=762.8;
Hfg1=2015.3;
H=Hf1+(x*Hfg1);
Hfw=167.6;
Eff=(Ma*100*(H-Hfw))/(Mf*CV);
printf('Boiler efficiency: %3.2f Percent',Eff);
printf('\n');
EA=((Ma/Mf)*(H-Hfw))/2257;
printf('Equivalent Evaporation: %3.2f kg/kg of coal',EA);
printf('\n');
|
b2fc938bb72eb65fc9bae2595e2c31e0e299b7e8 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376.zip/Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376/CH14/EX14.2/14_2.sci | 617085209ef170c21f47da21e50f7a0828af420c | [] | 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 | 120 | sci | 14_2.sci | errcatch(-1,"stop");mode(2);//14.2;
;
T=3*10^-3;
f=1/T;
printf("frequency of the voltage applied=%.2f m",f)
exit();
|
967482af91daaeca1903215d715218ce9a658d36 | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee/contrib/dspic/macros/codegen/SetTarget_.sci | 2cb72f69ecf407a9844f6b6d2d9ba6ce2d132532 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,482 | sci | SetTarget_.sci | function SetTarget_()
//** INRIA / SCILAB / Roberto Bucher / Simone Mannori / Paolo Gai
//** 16 Jan 2008
//** Note: this code SHOULD be rewritten because respect the organization
//** and style now obsolete. Future compatibility is not garantee.
//** ------------- Preliminary I/O section ___________________________________________________________________________
k = [] ; //** index of the CodeGen source superbloc candidate
xc = %pt(1); //** last valid click position
yc = %pt(2);
%pt = [] ;
Cmenu = [] ;
k = getobj(scs_m,[xc;yc]) ; //** look for a block
//** check if we have clicked near an object
if k==[] then
return
//** check if we have clicked near a block
elseif typeof(scs_m.objs(k))<>"Block" then
return
end
//** If the clicked/selected block is really a superblock
//** <k>
if scs_m.objs(k).model.sim(1)=="super" then
disablemenus()
lab = scs_m.objs(k).model.rpar.props.void3;
//** Mark the super-block with a specific propriety
if lab==[] then
lab = ['dspic','ode4','10'];
end
ode_x = ['ode1';'ode2';'ode4'];
//** Open a dialog box and wait user interaction
while %t
[ok, target, odefun, stp] = getvalue(..
"Embedded Code Generation ",..
["Toolchain : ";
"ODE cont. function solver: ";
"Step between sampling: "],..
list('str',1,'str',1,'str',1),lab);
if ~ok then
break ; //** the the case of "cancel" exit
end
TARGETDIR = SCI+"/contrib/RT_templates";
// if exists("TARGET_DIR") then
// [fd,ierr]=mopen(TARGET_DIR+'/'+target+'.gen','r');
// if ierr==0 then
// TARGETDIR = TARGET_DIR;
// mclose(fd);
// end
// end
[fd,ierr] = mopen(TARGETDIR+'/'+target+'.gen','r');
if ierr==0 then
mclose(fd);
else
x_message("Target not valid "+target+".gen");
ok = %f ;
end
if grep(odefun,ode_x) == [] then
x_message("Ode function not valid");
ok = %f;
end
if ok then
lab = [target,odefun,stp];
scs_m.objs(k).model.rpar.props.void3 = lab;
break ; //** EXIT
end
end
edited = %t ;
enablemenus()
else
message("Generation Code only work for a Super Block ! ");
end
endfunction
|
cc923b9154d17a8971b50fa80e1652089e258251 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH2/EX2.2/Ex2_2.sce | f84fd017fc17686d0c9b6310f2aaa9784b61c0d6 | [] | 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 | 158 | sce | Ex2_2.sce | clc
m=9.11*10^-31// kg*m/s
v=10^5//m/s
h=6.625*10^-34//js
p=m*v
disp(p,"momentum is")
lambda=h/p
disp(lambda,"de broglie wavelength in meter is")
|
91fc94ccad7f2e94507ce6b769e2d394afb23ecd | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH4/EX4.2/4_2_Theoretical_Problem.sce | 21ba9886b703fa331f4fa0aa01e094bb119d1e3a | [] | 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 | 276 | sce | 4_2_Theoretical_Problem.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 4.2 Page 218 \n')// Example 4.2
//Theoretical Problem
printf('\n The given example is theoretical and does not involve any numerical computation')
//End
|
0545578bdd27a89e71529d655c5c810c15796167 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH8/EX8.07/8_07.sce | 8e97411f50368e513fa002ef17e36c9a21df32ef | [] | 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 | 474 | sce | 8_07.sce | //Problem 8.07: An electron in a television tube has a charge of 1.6 ð 1019 coulombs and travels at 3 ð 107 m/s perpendicular to a field of flux density 18.5 μT. Determine the force exerted on the electron in the field.
//initializing the variables:
Q = 1.6E-19; // in Coulomb
v = 3E7; // in m/s
B = 18.5E-6; // in Tesla
u0 = 4*%pi*1E-7;
//calculation:
F = Q*v*B
printf("\n\nResult\n\n")
printf("\n Force exerted on the electron in the field. = %.2E N",F) |
08ef9b358938380f12a0bd46658a95affd2b2c3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH6/EX6.3/Ex6_3.sce | 7dc28d3556dc9ceaca41414784cea359607815d2 | [] | 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 | 341 | sce | Ex6_3.sce | //chapter6
//page no 140
//example 6-3
//given
clear;
clc;
//data insufficient
Rth=17.70; // Rth assumed minimum
Rthc_H=0.65; //k/w
Rthj_a=33; //k/w
Rthj_c=3; //k/w
RthH_a=1/(1/Rth-1/Rthj_a)-Rthj_c-Rthc_H;
printf("RthH-a <= %0.1f K/W",RthH_a);
//disp(RthH_a,"heat sink thermal resistance");
|
67dd0f3153c667c7c1d30af8e740cd3d81640a66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH4/EX4.14/Example_4_14.sce | 9dd4ccec583995cf7291d3164c1915f4774835ba | [] | 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 | 764 | sce | Example_4_14.sce | //Example 4.14
clear;
clc;
//Given
Cpw=75.42;//heat capacity of water in J K^-1 mol^-1
T=363; //temperature of water in K
P=1;//pressure in atm
Cpi=37.20;//heat capacity of ice in J K^-1 mol^-1
delHf=5980;// latent heat of fusion in J mol^-1
mp=273;//melting point of water in K
n=10/18;//moles of ice taken
//To calculate the entropy change
T2=306;//since q=0
q1=n*delHf;//heat in J
q2=n*Cpw*(T2-mp);//heat in J
q3=n*2*Cpi*(T2-T);//heat in J
delS1=q1/mp;//entropy change during 1st step in J K^-1
delS2=n*Cpw*log(T2/mp);//entropy change during 2nd step in J K^-1
delS3=2*n*Cpw*log(T2/T);//entropy change during final step in J K^-1
delS=delS1+delS2+delS3;//total entropy change in J K^-1
mprintf('Entropy change = %f J K^-1',delS);
//end |
ce85b5e8f6098debe793a23cd9f0364ebebf1471 | 099b4b0f30eafd7a0e9eac539caf7578b0e562fd | /Projets/simulation of the temperature evolution in a material/scilab/animVerre2D.sce | a86ff39210e95d57f6138af7c7417e4fb01d38f5 | [] | no_license | Mehdikossir/Projects | 2c60cd6ff0ebbeda17d529d25c10d241a8eaf724 | a43366f4aa11f541b70209ba9778d8547cb8b025 | refs/heads/master | 2021-09-26T13:55:43.208141 | 2021-09-13T21:53:08 | 2021-09-13T21:53:08 | 240,940,996 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 213 | sce | animVerre2D.sce | [fd,err] = mopen("verre2d","r")
verre2d = read("verre2d",10100,101)
mclose(fd)
x=[1:1:101]
y=[1:1:101]
for t=0:99
drawlater();
clf()
surf(verre2d(x+(t*101),y))
drawnow();
end
|
aea265ab013629006f86f8c3b6024231c4053c31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH1/EX1.6/Ex1_6.sce | 17d483ddb6d945471adfd5b351b450dc9eb01ea5 | [] | 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 | 397 | sce | Ex1_6.sce | //Example 1_6
clc;
clear;
//find the distance between the slits
lamda=500 //units in nm
lamda=500*10^-9
D=2 //units in mts
f=100
d1=5 //units in cm
d1=5*10^-2 //units in mts
betaa=d1/f //unitd in mts
//the distance between the slits
d=(lamda*D)/betaa //units in mts
d=d*10^3 //units in mm
printf("distance between slits is %dmm",d) |
5f397cbe58fbc4063e2ae1a8fa68cbbe531d412b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH5/EX5.6/Ex5_6.sce | 3aff2922d961530c1809c2a33d8e79931727eddb | [] | 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,282 | sce | Ex5_6.sce | clear ;
clc;
// Example 5.6
printf('Example 5.6\n\n');
printf('Page No. 120\n\n');
// given
x = 0.90;// dryness fraction
m = 0.25;// Mass flow rate in kg/s
P = 0.7;// pressure in bar
T1 = 10;// in degree celcius
//from steam table
h_10= 42*10^3;// Specific enthalpy of water at 10 degree celcius in J/kg
h_25 = 105*10^3;// Specific enthalpy of water at 25 degree celcius in J/kg
h_30 = 126*10^3;// Specific enthalpy of water at 30 degree celcius in J/kg
h_s = 2432*10^3;// Specific enthalpy of steam in J/kg
//(a)T2 = 25;
T2 = 25;// in degree celcius
// By heat balance, heat transfered at 10 degree celcius = heat gained at 25 degree celcius; "(m*h_s)+(h_10*y)= (m*h_25)+(h_25*y)"; where 'y' is the quqntity of water to be used at 25 degree celcius in kg/s
y = (m*(h_s-h_25)/(h_25-h_10));
printf('the quantity of water to be used at 25 degree celcius is %.2f kg/s \n',y)
//(b)T2 = 30;
T2 = 30;// in degree celcius
// By heat balance, heat transfered at 10 degree celcius = heat gained at 30 degree celcius; "(m*h_s)+(h_10*y)= (m*h_30)+(h_30*y)"; where 'z' is the quqntity of water to be used at 30 degree celcius in kg/s
z = (m*(h_s-h_30)/(h_30-h_10));
printf('the quantity of water to be used at 30 degree celcius is %.2f kg/s \n',z)
|
afa410698d29ed138c49bb6dfacfdbff4f97cf97 | ab89c2161afc0845367b8e25f534e4f99bd36759 | /LAB3/ex6.sce | 429e3796b37426978c39795ee195b2cb08e4840d | [] | no_license | PhiTruongCE/Digital_Signal_Processing | 22446ebfa65765d1dfcd2c420e05c83dc861ec15 | bacaf762f31a333a641ac48f6b5cc18f120c65be | refs/heads/main | 2023-06-04T03:38:36.140107 | 2021-06-17T04:04:49 | 2021-06-17T04:04:49 | 377,699,926 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 731 | sce | ex6.sce | clc;
clf;
clear all;
n=-2:1;
x=[1,-2,3,6];
subplot(221);
a=gca();
a.x_location='origin';
b=gca();
b.y_location='origin';
plot2d3(n,x,4);
title('x(n)');
xlabel('n');
ylabel('x(n)');
n=-1:2;
y1=[6,3,-2,1];
subplot(222);
a=gca();
a.x_location='origin';
b=gca();
b.y_location='origin';
plot2d3(n,y1,4);
title('y1(n)');
xlabel('n');
ylabel('y1(n)');
n=-5:0;
y2=[1,-2,3,6,0,0];
subplot(223);
a=gca();
a.x_location='origin';
b=gca();
b.y_location='origin';
plot2d3(n,y2,4);
title('y2(n)');
xlabel('n');
ylabel('y2(n)');
n=-3:0;
y3=[12,6,-4,2];
subplot(224);
a=gca();
a.x_location='origin';
b=gca();
b.y_location='origin';
plot2d3(n,y3,4);
title('y3(n)');
xlabel('n');
ylabel('y3(n)');
|
624cf5f92c948e91cdd4ee021010722f0916c323 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH10/EX10.9/Ex10_9.sce | 614421677b1696cca43d1d80d1eb06dc36538ad2 | [] | 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 | 612 | sce | Ex10_9.sce | clc
mo = 2 // mass of oxygen in kg
mn = 6 // mass of nitrogen in kg
muo = 32 // molecular mass of oxygen
mun = 28 // molecular mass of nitrogen
o = mo/muo // mass fraction of oxygen
n = mn/mun // mass fraction of nitrogen
xo = o/(n+o) // mole fraction of oxygen
xn = n/(n+o) // mole fraction of nitrogen
R = 8.314 // Universal gas constant
Ro = R/muo // Gas constant for oxygen
Rn = R/mun // Gas constant for nitrogen
dS = -mo*Ro*log(xo)-mn*Rn*log(xn) // Increase in entropy
printf("\n Example 10.9")
printf("\n Increase in entropy is %f kJ/kg K",dS)
//The answers vary due to round off error
|
d63a4796f584aae904aa7a17af617a346875f7d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH5/EX5.3/Example5_3.sce | d49ee447f5ac56429a023878b7d2691f4fc9cc4e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | Example5_3.sce | //Example 5.3
clear;
clc;
T0=25;
IBT0=1*10^(-12);
T=100;
IBT=IBT0*2^((T-T0)/10);
printf("IB(100degC)=%.2f nA",IBT*10^9); |
548e092af001ed3ed6723912e4d577af9017505f | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH5/EX5.5/Example5_5.sce | 907c107b1a7df91b068ed2242789663d6b26b672 | [] | 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 | 328 | sce | Example5_5.sce | //Ideal Gas Equation
clear;
clc;
printf("\t Example 5.5\n");
V1=0.55;//volume, L
P1=1;//pressure at sea level, atm
P2=0.4;//pressurea at 6.5km height, atm
//n1=n2 and T1=T2 given hence P1V1=P2V2
V2=P1*V1/P2;
printf("\t the volume of He balloon at height 6.5km above sea level is : %4.1f L\n",V2);
//End
|
5a658b702861b18734e872a25b73a4db8c040631 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/disassembler/cpc.instr.tst | 291a3b3d3ddebe976f339b8452a618857b544a81 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,558 | tst | cpc.instr.tst | ; @Harness: disassembler
; @Result: PASS
section .text size=0x00000080 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x000000b4 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0x00 0x04 cpc r0, r0
0x2: 0x10 0x04 cpc r1, r0
0x4: 0x20 0x04 cpc r2, r0
0x6: 0x30 0x04 cpc r3, r0
0x8: 0x40 0x04 cpc r4, r0
0xa: 0x50 0x04 cpc r5, r0
0xc: 0x60 0x04 cpc r6, r0
0xe: 0x70 0x04 cpc r7, r0
0x10: 0x80 0x04 cpc r8, r0
0x12: 0x90 0x04 cpc r9, r0
0x14: 0xa0 0x04 cpc r10, r0
0x16: 0xb0 0x04 cpc r11, r0
0x18: 0xc0 0x04 cpc r12, r0
0x1a: 0xd0 0x04 cpc r13, r0
0x1c: 0xe0 0x04 cpc r14, r0
0x1e: 0xf0 0x04 cpc r15, r0
0x20: 0x00 0x05 cpc r16, r0
0x22: 0x10 0x05 cpc r17, r0
0x24: 0x20 0x05 cpc r18, r0
0x26: 0x30 0x05 cpc r19, r0
0x28: 0x40 0x05 cpc r20, r0
0x2a: 0x50 0x05 cpc r21, r0
0x2c: 0x60 0x05 cpc r22, r0
0x2e: 0x70 0x05 cpc r23, r0
0x30: 0x80 0x05 cpc r24, r0
0x32: 0x90 0x05 cpc r25, r0
0x34: 0xa0 0x05 cpc r26, r0
0x36: 0xb0 0x05 cpc r27, r0
0x38: 0xc0 0x05 cpc r28, r0
0x3a: 0xd0 0x05 cpc r29, r0
0x3c: 0xe0 0x05 cpc r30, r0
0x3e: 0xf0 0x05 cpc r31, r0
0x40: 0x00 0x04 cpc r0, r0
0x42: 0x01 0x04 cpc r0, r1
0x44: 0x02 0x04 cpc r0, r2
0x46: 0x03 0x04 cpc r0, r3
0x48: 0x04 0x04 cpc r0, r4
0x4a: 0x05 0x04 cpc r0, r5
0x4c: 0x06 0x04 cpc r0, r6
0x4e: 0x07 0x04 cpc r0, r7
0x50: 0x08 0x04 cpc r0, r8
0x52: 0x09 0x04 cpc r0, r9
0x54: 0x0a 0x04 cpc r0, r10
0x56: 0x0b 0x04 cpc r0, r11
0x58: 0x0c 0x04 cpc r0, r12
0x5a: 0x0d 0x04 cpc r0, r13
0x5c: 0x0e 0x04 cpc r0, r14
0x5e: 0x0f 0x04 cpc r0, r15
0x60: 0x00 0x06 cpc r0, r16
0x62: 0x01 0x06 cpc r0, r17
0x64: 0x02 0x06 cpc r0, r18
0x66: 0x03 0x06 cpc r0, r19
0x68: 0x04 0x06 cpc r0, r20
0x6a: 0x05 0x06 cpc r0, r21
0x6c: 0x06 0x06 cpc r0, r22
0x6e: 0x07 0x06 cpc r0, r23
0x70: 0x08 0x06 cpc r0, r24
0x72: 0x09 0x06 cpc r0, r25
0x74: 0x0a 0x06 cpc r0, r26
0x76: 0x0b 0x06 cpc r0, r27
0x78: 0x0c 0x06 cpc r0, r28
0x7a: 0x0d 0x06 cpc r0, r29
0x7c: 0x0e 0x06 cpc r0, r30
0x7e: 0x0f 0x06 cpc r0, r31
start .data:
|
69de6a758e6eafb82e6bba1c476ed66aa14ecf5b | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH4/EX4.24/Ex4_24.sce | 8e26897cae74d2020e04a9b805492a5d60c476dc | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 285 | sce | Ex4_24.sce | //Variable Declaration
p = 0.05 // probability of any device to show excessive drift
//Calculation
p1 = (1-p)^5*(p^1) // required probability
//Results
printf ( "probability of sixth measuring device to be the first to show excessive drift: %.3f",p1)
|
353e25a9b664bae4b6d86b3fa1e2a222f151174c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH10/EX10.2/Ex10_2.sce | 28bd4f961348dcdd00384ba51334da14463585ed | [] | 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 | 362 | sce | Ex10_2.sce | //Chapter 10 : Crystallography and Crystal Imperfections
clear;
//Variable declaration
rho=7.86*10**3 //density of material
n=2 //No. of atoms/cell
A=55.85 //Atomic weigth
No=6.023*10**26 //Avagadro's No.
//Calculations
a=((n*A)/(No*rho))**(1/3)/10**-10
//Result
mprintf("Lattice parameter a= %.5f*10**-10 m",a)
|
1173d945605c199fce55e4c93165caa5c949c7df | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH3/EX3.1/Ex3_1.sce | 9a079284af5abd1f02bbbba0baf419e1fa7e7d14 | [] | 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 | 399 | sce | Ex3_1.sce | Bf=1300//width of flange, in mm
Df=80//thickness of flange, in mm
d=600//effective depth, in mm
sigma_cbc=7//in MPa
sigma_st=140//in MPa
m=13.33//modular ratio
//to find critical depth of neutral axis
Xc=d/(1+sigma_st/(m*sigma_cbc))//in mm
Xc=240//round-off, in mm
//to find Ast
Ast=Bf*Df*(Xc-Df/2)/(m*(d-Xc))//in sq mm
mprintf("Neutral axis depth=%d mm\nArea of steel=%f mm^2", Xc,Ast)
|
fb94de29c8b53cd24450180de84efb2d01bb5b57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH17/EX17.21/Example17_21.sce | a43e66d474d3d399f4f06386a133907ce6df01a2 | [] | 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,341 | sce | Example17_21.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 10: POWER SYSTEM STABILITY
// EXAMPLE : 10.21 :
// Page number 305-306
clear ; clc ; close ; // Clear the work space and console
// Given data
f = 50.0 // Frequency(Hz)
P = 4.0 // Number of poles
G = 20.0 // Rating of turbo-generator(MVA)
V = 13.2 // Voltage(kV)
H = 9.0 // Inertia constant(kW-sec/kVA)
P_s = 20.0 // Input power less rotational loss(MW)
P_e = 15.0 // Output power(MW)
// Calculations
KE = G*H // Kinetic energy stored(MJ)
M = G*H/(180*f) // Angular momentum(MJ-sec/elect.degree)
P_a = P_s-P_e // Accelerating power(MW)
alpha = P_a/M // Acceleration(elect.degree/sec^2)
alpha_deg = alpha/2.0 // Acceleration(degree/sec^2)
alpha_rpm = 60.0*alpha_deg/360 // Acceleration(rpm/sec)
// Results
disp("PART II - EXAMPLE : 10.21 : SOLUTION :-")
printf("\nCase(a): Kinetic energy stored by rotor at synchronous speed, GH = %.f MJ", KE)
printf("\nCase(b): Acceleration, α = %.f degree/sec^2", alpha_deg)
printf("\n Acceleration, α = %.2f rpm/sec", alpha_rpm)
|
8e420e5373bb4dae72939d9d362f9b2071a50aac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2519/CH19/EX19.13/Ex19_13.sce | a2627e526dd58895121c9a17e660b9b6c4e4090a | [] | 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 | 463 | sce | Ex19_13.sce | clc
clear
//Initialization of variables
l=6 //ft
d1=0.55 //in
d2=0.75 //in
h1=280 //Btu/hr ft^2 F
h2=2000 //Btu/fr ft^2 F
k=220 //Btu/hr ft F
t2=212 //F
t1=60 //F
//calculations
A2=%pi*d1*l/12
A3=%pi*d2*l/12
Rt=1/(h1*A2) + 1/(h2*A3) +log(d2/d1) /(2*%pi*k*l)
U3=1/(A3*Rt)
//results
printf("Overall Heat transfer coefficient = %.1f Btu/hr ft^2 F",U3)
disp("The answer in the textbook is a bit different due to rounding off error in textbook.")
|
be14aabb4766a5863b4f8ef9a5e014acbc12975e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH6/EX6.17/6_17.sce | 63602f4de9ad11e09e57abfb75c81ed8384a3ddb | [] | 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 | 6_17.sce | clear;
clc;
ZR=300;s=9;d=0.1
r=d/2;
Zof=276*log10(s/r);
Zoq=sqrt(ZR*Zof);
do=(s*2)/10^(Zoq/276);
printf("Diameter of wire used = %f cm",fix(do*10)/10);
|
d619ca2782477d805d710920a0ab06183a8ed3d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1376/CH4/EX4.2/4_2.sci | 4e8f0769f59e547aceef4ed01df7b949e4ac64fc | [] | 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 | 137 | sci | 4_2.sci | // 4.2
clc;
t=600;
C=2.5*10^-12;
E=500;
e=300;
a=log10(E/e)
R=(0.4343*t)/(C*a);
printf("Insulation resistance=%.2f mega-ohm",R)
|
91ac0bf13be02452171277cc2d09e8f4fefa1d1b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.3/5_3.sce | acabd28cbbc2a7e3cac4775ded8db00747be2529 | [] | 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 | 5_3.sce | //ques-5.3
//Finding specific and equivalent conductance of acid
clc
R1=225;//resistance of KCl (in ohms)
k1=0.00141;//specific conductance of KCl (in mho/cm)
R2=80;//resistance of acid solution (in ohms)
N=0.02;//normality of acid
c=k1*R1;//cell constant (in /cm)
k2=c/R2;//specific conductance of acid solution (in mho/cm)
e=1000*(k2/N);////equivalent conductance of acid solution (in cm^2 mho/eq)
printf("The equivalent conductance of acid is %.2f cm^2 mho/eq and specific conductance is %.6f mho/cm.",e,k2);
|
811af947651f6509f17a28eab99d67f25389c668 | 449d555969bfd7befe906877abab098c6e63a0e8 | /848/CH2/EX2.5/Example2_5.sce | 5405379f8ab6df047a4aa5a445fceef991bc81c5 | [] | 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 | 602 | sce | Example2_5.sce | //clear//
//Caption: Program to calculate Fiber Birefringence BETA_f
//Example2.5
//page 65
clear;
close;
clc;
Lambda = input('Enter the wavelength of Optical Signal');
Lp = input('Beat Length');
BETA_f_FORMULA1 = 2*%pi/Lp;
disp(BETA_f_FORMULA1,"The fiber birefriengence using formula 1");
BETA_f_FORMULA2 = Lambda/Lp;
disp(BETA_f_FORMULA2,"The fiber birefriengence using formula 2");
//Result
//Enter the wavelength of Optical Signal 1300e-09
//Beat Length 8e-02
//The fiber birefriengence using formula 1 78.539816
//The fiber birefriengence using formula 2 0.0000162
|
800823558d45f296a6b220a936bd1149d3460c72 | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/scilab/simple/runme.sci | ed8b0f6c37ae45088c9a153f0ca49edc44d968cb | [
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 497 | sci | runme.sci | lines(0);
ilib_verbose(0);
ierr = exec('loader.sce', 'errcatch');
if ierr <> 0 then
disp(lasterror());
exit(ierr);
end
// Call our gcd() function
x = 42;
y = 105;
g = gcd(x,y);
printf("The gcd of %d and %d is %d\n",x,y,g);
// Manipulate the Foo global variable
// Get its default value (see in example.c)
defaultValue = Foo_get()
if defaultValue <> 3 then pause; end
// Change its value
Foo_set(3.1415926)
// See if the change took effect
if Foo_get() <> 3.1415926 then pause,end
exit
|
35d688c2dce76724d619beb3d3cd8c8ea47646b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH7/EX7.4/ex7_4.sci | 94e69d9c01427b3fa2f3ee3ff423000562e7b238 | [] | 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 | 161 | sci | ex7_4.sci | //Chapter 7,Ex7.4,Pg7.15
clc;
B=100
Icbo=4 //current in microamperes
Ib=40 //Current in microamperes
Ic=B*Ib+(B+1)*Icbo
printf("\n Ic=%.1f mA \n",Ic*10^-3) |
492c546356edf11dc6ecbd5bbd09f02a245211aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH4/EX4.2/ex4_2.sce | 5cd74760c2f3906bea39ebf514705974ca3ca49c | [] | 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 | 332 | sce | ex4_2.sce | // Exa 4.2
clc;
clear;
close;
// Given data
// w = 2*g*h
g = 9.81;
m =(0.2+10/1000)*10^3 ;// in gm
s = 1;// in cal/gm°C
del_T = 2;// in °C
H = m * s * del_T;// in cal
H = H * 10^-3;// kcal
J = 4.1868 * 1000;
// W= 2*g*h= J*H
h = J*H/(2 * g);// in m
disp(h,"Height from which the mass should fall in meter is : ");
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.