blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
9b8e323c572fb5b89b915e19fff13072fccfb143
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH4/EX4.6/Ex4_6.sce
3ed599e89f42453e9244e43c4dbd3762b327a876
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
391
sce
Ex4_6.sce
//Example 4_6 clc;funcprot(0); //Given data Q=260;//m^3/s H=1.7;//m n_p=0.825; N_s=890;// r.p.m N=50;//r.p.m //Calculation w=1000*9.81;// N P_t=(Q*w*H*n_p)/(1000);// Total power to be developed in kW P=((N_s*H^(5/4))/N)^2;// kW n_k=P_t/P;// Number of kaplan turbine required printf('Number of Kaplan turbine required=%0.0f\n',n_k); // The answer vary due to round off error
eec779ff115a28727aa78ed2d0ec538fe74c8efb
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH5/EX5.23/23.sce
1a183c193781ff3251203fde6744035c0d174c6c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,781
sce
23.sce
clc clear //Input data D=0.4 //Duct diameter in m Po=12 //Stagnation pressure in kPa To=600 //Stagnation temperature in K f=0.0025 //Friction factor M1=1.8 //Mach number at entry M2=1 //Mach number at outlet Mx=1.22 //Mach number upstream of shock //Calculations A2=%pi*D^2/4 //Exit area in cm^2 p1=0.174 //Static to Stagnation pressure ratio at entry from gas tables (M1,k=1.4,isentropic) P1=Po*p1 //Inlet pressure in bar t1=0.607 //Static to Stagnation temperature ratio at entry from gas tables (M1,k=1.4,isentropic) T1=To*t1 //Inlet temperature in K a1=1.094 //Ratio of area at exit to critical area across shock from isentropic gas tables @M1,k=1.4 Ax=A2/a1 //Area before the shock in cm^2 Dt=sqrt((Ax*4)/(%pi))*10^2 //Duct diameter at throat in cm p2=0.474 //Static to Critical pressure ratio at inlet from gas tables,fanno flow tables @M1,k=1.4 Pt=P1/p2 //Critical pressure in bar t2=0.728 //Static to Critical temperature ratio at inlet from gas tables,fanno flow tables @M1,k=1.4 Tt=T1/t2 //Critical temperature in K X1=0.242 //frictional constant fanno parameter from gas tables,fanno flow tables @M1,k=1.4 p3=0.788 //Ratio of Static pressure before shock to critical pressure at entry from gas tables (fanno flow,Mx,k=1.4) Px=Pt*p3 //pressure before shock in bar t3=0.925 //Ratio of Static temperature before shock to critical temperature at entry from gas tables (fanno flow,Mx,k=1.4) Tx=Tt*t3 //Temperature before shock in K Xx=0.039 //frictional constant fanno parameter from gas tables,fanno flow tables @Mx,k=1.4 X3=X1-Xx //Overall frictional constant fanno parameter upstream of duct L1=(X3*D)/(4*f) //Length upstream of duct in m My=0.83 //Mach number downstream of shock from gas tables @Mx p4=1.57 //Static pressure ratio after and before the shock from gas tables @My Py=Px*p4 //Pressure after shock in bar t4=1.141 //Temperature ratio after and before the shock from gas tables @My Ty=Tx*t4 //temperature after shock in K p5=1.2375 //Ratio of pressure after shock to pressure at critical state from gas tables @My Pt=Py/p5 //Critical pressure in bar t5=1.055 //Ratio of temperature after shock to temperature at critical state from gas tables @My Tt=Ty/t5 //Critical temperature in K Xy=0.049 //frictional constant fanno parameter from gas tables,fanno flow tables @My,k=1.4 X2=0 //frictional constant fanno parameter from gas tables,fanno flow tables @M=1,k=1.4 X4=Xy-X2 //Overall frictional constant fanno parameter downstream of duct L2=(X4*D)/(4*f) //Length downstream of duct in m L=L1+L2 //Length of duct in m //Output printf('(A)Length of the pipe is %3.2f m\n (B)Diameter of the nozzle throat is %3.3f cm\n (C)At the pipe exit:\n Pressure is %3.3f bar\n Temperature is %3.2f K',L,Dt,Pt,Tt)
b425928a869e9af3e4b46aae513708e973997ffe
449d555969bfd7befe906877abab098c6e63a0e8
/3768/CH7/EX7.10/Ex7_10.sce
b217f6ccb2114c27070d6fe3fe9ddde6a915d047
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
419
sce
Ex7_10.sce
//Example number 7.10, Page number 149 clc;clear; close; //Variable declaration epsilon0=8.85*10**-12; N=2.7*10**25; //density of atoms R=0.55*10**-10; //radius(m) //Calculation alpha_e=4*%pi*epsilon0*R**3; //polarisability(Fm**2) epsilonr=(N*alpha_e/epsilon0)+1; //relative permittivity //Result printf("polarisability is %.3e Fm^2",alpha_e) printf("\n relative permittivity is %.7f Fm^2",epsilonr)
46b6be8efc084c670db4c16d509fb90b2311a852
449d555969bfd7befe906877abab098c6e63a0e8
/2159/CH1/EX1.23/23.sce
18ffef8d3ff3de4ff4f80879f0bfb7dda750092c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
169
sce
23.sce
// problem 1.23 x=30 z=sin(x*3.142/180) h=6-(z*0.5) l=1 b=4 a=l*b w=9810 p=w*a*h h11=(z*z)/(12*h)+h f=p*0.5072 disp(f,"force normal to the gate at point B")
2d8ae82ea8240b580b364b4e398968a9d5b0d62e
76d58c93412c99ad3e8468ca843883add5b16d43
/plus-minus_tau4.sci
e3e4e270edf49af5e7e417853893020ab7b7e05a
[]
no_license
NnataKha/Mixed-plus-minus-interaction-conflict-model
cd6daadc26e6189720f088adf9a739072125f1fa
a02cf4c1c21dc5559721c219c93ad706f3af30be
refs/heads/master
2020-03-16T18:52:00.884504
2018-05-10T11:24:44
2018-05-10T11:24:44
132,889,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,048
sci
plus-minus_tau4.sci
clear; if 1==1 then n=15; for i=1:n T(i)=rand(100)//*110; M(i)=rand(100); end end n=length(M); st = sum(T); sm = sum(M); T = T'./st; M = M'./sm; eps=1/(n); m = 100;//number of steps check(1)='plus'; for k = 1:m time(k)=k; T_v(k,:)=T; M_v(k,:)=M; Theta=0; for i=1:n Theta = Theta + sqrt(T(i)*M(i)); end Th(k)=Theta; check(k+1)=check(k); //check the value of Theta if Theta<=eps then check(k+1)='plus'; elseif Theta>=1-eps then check(k+1)='minus'; end tau = min(T,M); W = sum(tau); //choosing “+,+” or “-,-” if check(k+1)=='plus' then z = 1+Theta+W; T_t = (T.*(1+Theta)+tau)./z; M_t = (M.*(1+Theta)+tau)./z; elseif check(k+1)=='minus' then z = 1+Theta-W; T_t = (T.*(1+Theta)-tau)./z; M_t = (M.*(1+Theta)-tau)./z; end sm=sum(M_t); st=sum(T_t); M=M_t./sm; T=T_t./st; end plot(T_v,M_v,'.-');
0d43f2b1d988d65ae5c863bf43899ea7991a89cc
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH7/EX7.7/Ex7_7.sce
62aee95e9816766efafc60bd027593f626c2ba99
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,404
sce
Ex7_7.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 7.7\n\n\n"); // Chapter 7 : Mixtures Of Ideal Gases // Problem 7.7 (page no. 328) // Solution //We will take as a basis 100 lbm of mixture. //Dividing colomn 2 by 3 gives us mass/molecular weight or moles of each constituents.The total number of moles in the mixture is the sum of coloumn 4,and the molecular weight of the mixture is the mass of the mixture(100 lbm) divided by the number of moles //In coloumn 5,mole fraction is given by moles/total mole printf("Basis:100 pounds of gas mixture\n\n") printf("gas Mass Molecular Moles Mole Percent \n") printf(" lbm weight MW fraction Volume \n") printf("CO2 52.7 44.0 1.2 %f %f \n",(1.2/3),(1.2/3)*100) printf("N2 8.4 28.02 0.3 %f %f \n",(0.3/3),(0.3/3)*100) printf("H2 0.6 2.016 0.3 %f %f \n",(0.3/3),(0.3/3)*100) printf("O2 38.3 32.0 1.2 %f %f \n",(1.2/3),(1.2/3)*100) printf(" =100.0 =3.0 =1.00 = 100 \n ") printf(" MWm=100/3=33.3 ")
58566fcda8b49b9f0358a4d3cf66a91fa211f296
8c802fb8c6a8dc8ed61222ce257eb61f580a462e
/projects/03/a/Bit.tst
de8b0ffa785b6a3d421793cfeea2e1e42a39ee15
[]
no_license
radavis/nand2tetris
0703b55695378cd8ec279599a34114cbfba48ef7
021ba06dbbe203206b44360f162a0d64e2dc41f9
refs/heads/master
2021-01-01T20:05:37.036752
2015-05-16T19:13:31
2015-05-16T19:13:31
34,955,667
8
3
null
null
null
null
UTF-8
Scilab
false
false
6,576
tst
Bit.tst
// File name: projects/03/a/Bit.tst load Bit.hdl, output-file Bit.out, compare-to Bit.cmp, output-list time%S1.4.1 in%B2.1.2 load%B2.1.2 out%B2.1.2; set in 0, set load 0, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 1, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 1, set load 1, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output;
136220add3244f5cb7ae6426701a6de044b4f617
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set5/s_Electrical_Machines_-_1_T._Singh_704.zip/Electrical_Machines_-_1_T._Singh_704/CH4/EX4.1/ex4_1.sce
4083ecae86978ddb72bdefa4a34fb53b34baf9ad
[]
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
685
sce
ex4_1.sce
errcatch(-1,"stop");mode(2);//Caption:Determines the turns per phase for the HV and LV winding of the 3 phase transformer. //Exam:4.1 ; ; F_max=0.024;//Maximum flux (in weber) f=50;//Supply frequency(in Hz) E_1p=11000;//Primary phase voltage(in Volts) N_1=ceil(E_1p/(4.44*F_max*f));//Turns per phase on primary disp(N_1,'turns per phase for the H.V. winding of the 3 phase transformer='); E_2l=400;//Secondary line voltage(in Volts) E_2p=E_2l/(3)^(1/2);//Secondary phase voltage(in Volts) N_2=ceil(E_2p/(4.44*F_max*f));//turns per phase for the L.V. winding of the 3 phase transformer disp(N_2,'turns per phase for the L.V. winding of the 3 phase transformer='); exit();
18ed2ae809b833dd50d216a90e9b7fb8387a96b1
449d555969bfd7befe906877abab098c6e63a0e8
/858/CH2/EX2.18/example_18.sce
b4fda753a34129807783425b354890a0d58a1e97
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
594
sce
example_18.sce
clc clear printf("example 2.18 page number 77\n\n") //to find molecular formula C=50.69 //% of carbon H2=4.23 //% of hydrogen O2=45.08 //% of oxygen a=C/12; //number of carbon molecules c=O2/16; //number of oxygen molecules b=H2/2; //number of hydrogen molecules molar_mass=71; function M=f(m) M=(2.09*1000)/(60*m); endfunction M=f((1.25/5.1)); printf("actual molecular mass = %f\n\n",M) ratio=M/molar_mass; a=ratio*3; b=ratio*3; c=ratio*2; printf("a = %f, b = %f, c = %f",a,b,c) printf("\n\nformula of butyric acid is = C6H6O4")
b52f56f5733eacc91fd781c307610567c0db8010
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.0/macros/util/typeof.sci
e8cd90f74c9e0bbabbbca25d6aa51d46077584eb
[ "MIT", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
427
sci
typeof.sci
function [tf]=typeof(object) select type(object) case 1 then tf='usual'; case 2 then tf='polynomial'; case 4 then tf='boolean'; case 10 then tf='character'; case 11 then tf='macro'; case 13 then tf='macro'; case 14 then tf='library'; case 15 then select object(1) case 'r' then tf='rational'; case 'lss' then tf='state-space' case 'sp' then tf='sparse' else tf='list'; end end
0668456b54aece3edf58a4ce38c7e6acfbb99c57
df924acfdd5b043da9336a2276726dbfb655735a
/test_suite/stobjcst.tst
8ca7599b167e6e96b005170ab4de8f015a141cdd
[]
no_license
noxdafox/clips
b8fb280223b5aae615e427bf1f31c03cb932b09d
a2c548b69394f0e2cf7c6d583810b6a29a662ae1
refs/heads/master
2023-09-01T18:52:07.614807
2021-12-14T20:10:21
2021-12-14T20:10:21
95,596,886
11
10
null
null
null
null
UTF-8
Scilab
false
false
327
tst
stobjcst.tst
(unwatch all) (clear) (dribble-on "Actual//stobjcst.out") (batch "stobjcst.bat") (dribble-off) (clear) (open "Results//stobjcst.rsl" stobjcst "w") (load "compline.clp") (printout stobjcst "stobjcst.clp differences are as follows:" crlf) (compare-files "Expected//stobjcst.out" "Actual//stobjcst.out" stobjcst) (close stobjcst)
1b942869143d052bc10b580f3f3213b6b9c01fb9
49148682b78b6520a61de9a700f791835e1b32d5
/Gachan/GachanGame/GachanGameObject/GachanGameObjectSystem00.tst
ed6b227c978adb275cc868649ee605223e0cef43
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
Ashitagachan/Gachan
535a19ea05bfcb3207a0a106b1d62db48a143f16
63b5410e128628222447c837a7209162487aa246
refs/heads/master
2021-08-07T21:53:13.048753
2020-05-16T08:01:10
2020-05-16T08:01:10
178,514,045
2
0
null
null
null
null
UTF-8
Scilab
false
false
19,458
tst
GachanGameObjectSystem00.tst
//skipped groundPlane_transform //skipped Manipulator1 //skipped UniversalManip //skipped CubeCompass ///////////////////////////////////////////// // object_LineA__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif DX3DMATERIAL_START( material_MateLine ) DX3DMATERIAL_DIFF( 1, 1, 1, 1 ) DX3DMATERIAL_SPEC( 1, 0, 0, 0 ) DX3DMATERIAL_TEX( NULL ) DX3DMATERIAL_SHADER( DEFAULT ) DX3DMATERIAL_FLG( 0 ) DX3DMATERIAL_CALLBACK( -1 ) DX3DMATERIAL_END #if ((PT_LineA___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_TRILIST) ) || (PT_LineA___MateLine_0 == PT_TRILIST ) || ((PT_LineA___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_INDEXSTRIP)) || (PT_LineA___MateLine_0 == PT_INDEXSTRIP) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DVERT_START( VN, vertexbuff_LineA___MateLine_0 ) DX3DVERT( 0.0707107, 0.0707107, 0.5 ) DX3DVNORM( 0.707107, 0.707107, 1.97563e-008 ) //0 DX3DVERT( 0, 0.1, 0.5 ) DX3DVNORM( 0, 1, 3.29272e-008 ) //1 DX3DVERT( 0, 0.1, -0.5 ) DX3DVNORM( 0, 1, 3.29272e-008 ) //2 DX3DVERT( 0.0707107, 0.0707107, -0.5 ) DX3DVNORM( 0.707107, 0.707107, 1.97563e-008 ) //3 DX3DVERT( -0.0707107, 0.0707107, 0.5 ) DX3DVNORM( -0.707107, 0.707107, 1.97563e-008 ) //4 DX3DVERT( -0.0707107, 0.0707107, -0.5 ) DX3DVNORM( -0.707107, 0.707107, 1.97563e-008 ) //5 DX3DVERT( -0.1, 0, 0.5 ) DX3DVNORM( -1, 0, -0 ) //6 DX3DVERT( -0.1, 0, -0.5 ) DX3DVNORM( -1, 0, -0 ) //7 DX3DVERT( -0.0707107, -0.0707107, 0.5 ) DX3DVNORM( -0.707107, -0.707107, -1.97563e-008 ) //8 DX3DVERT( -0.0707107, -0.0707107, -0.5 ) DX3DVNORM( -0.707107, -0.707107, -1.97563e-008 ) //9 DX3DVERT( 0, -0.1, 0.5 ) DX3DVNORM( -1.61289e-008, -1, -2.96345e-008 ) //10 DX3DVERT( 0, -0.1, -0.5 ) DX3DVNORM( -1.61289e-008, -1, -2.96345e-008 ) //11 DX3DVERT( 0.0707107, -0.0707107, 0.5 ) DX3DVNORM( 0.707107, -0.707107, -1.56404e-008 ) //12 DX3DVERT( 0.0707107, -0.0707107, -0.5 ) DX3DVNORM( 0.707107, -0.707107, -1.56404e-008 ) //13 DX3DVERT( 0.1, 0, 0.5 ) DX3DVNORM( 1, 3.22578e-008, 8.23181e-010 ) //14 DX3DVERT( 0.1, 0, -0.5 ) DX3DVNORM( 1, 3.22578e-008, 8.23181e-010 ) //15 DX3DVERT( 0, 0.1, 0.5 ) DX3DVNORM( 0, 2.98023e-007, 1 ) //16 DX3DVERT( 0.0707107, 0.0707107, 0.5 ) DX3DVNORM( 0, 1.49012e-007, 1 ) //17 DX3DVERT( 0, 0, 0.5 ) DX3DVNORM( 0, 2.18223e-008, 1 ) //18 DX3DVERT( -0.0707107, 0.0707107, 0.5 ) DX3DVNORM( 0, 1.49012e-007, 1 ) //19 DX3DVERT( -0.1, 0, 0.5 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( -0.0707107, -0.0707107, 0.5 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0, -0.1, 0.5 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.0707107, -0.0707107, 0.5 ) DX3DVNORM( 0, -2.10734e-007, 1 ) //23 DX3DVERT( 0.1, 0, 0.5 ) DX3DVNORM( 0, -2.10734e-007, 1 ) //24 DX3DVERT( 0.0707107, 0.0707107, -0.5 ) DX3DVNORM( 0, 1.49012e-007, -1 ) //25 DX3DVERT( 0, 0.1, -0.5 ) DX3DVNORM( 0, 2.98023e-007, -1 ) //26 DX3DVERT( 0, 0, -0.5 ) DX3DVNORM( 0, -2.13163e-014, -1 ) //27 DX3DVERT( -0.0707107, 0.0707107, -0.5 ) DX3DVNORM( 0, 1.49012e-007, -1 ) //28 DX3DVERT( -0.1, 0, -0.5 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( -0.0707107, -0.0707107, -0.5 ) DX3DVNORM( 0, -1.49012e-007, -1 ) //30 DX3DVERT( 0, -0.1, -0.5 ) DX3DVNORM( 0, -2.98023e-007, -1 ) //31 DX3DVERT( 0.0707107, -0.0707107, -0.5 ) DX3DVNORM( 0, -1.49012e-007, -1 ) //32 DX3DVERT( 0.1, 0, -0.5 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT_END #endif DX3DVERTEX_START( vertex_LineA___MateLine_0 ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_LineA___MateLine_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 34 ) DX3DVERTEX_END #else #define vertex_LineA___MateLine_0 NULL #define vertexbuff_LineA___MateLine_0 NULL #endif #if ((PT_LineA___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_TRILIST) ) || (PT_LineA___MateLine_0 == PT_TRILIST ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DINDEX_START( index_LineA___MateLine_0 ) 0, 1, 3, // 0 2 1, 2, 3, // 1 5 1, 4, 2, // 2 8 4, 5, 2, // 3 11 4, 6, 5, // 4 14 6, 7, 5, // 5 17 6, 8, 7, // 6 20 8, 9, 7, // 7 23 8, 10, 9, // 8 26 10, 11, 9, // 9 29 10, 12, 11, // 10 32 12, 13, 11, // 11 35 12, 14, 13, // 12 38 14, 15, 13, // 13 41 14, 0, 15, // 14 44 0, 3, 15, // 15 47 16, 17, 18, // 16 50 19, 16, 18, // 17 53 20, 19, 18, // 18 56 21, 20, 18, // 19 59 22, 21, 18, // 20 62 23, 22, 18, // 21 65 24, 23, 18, // 22 68 17, 24, 18, // 23 71 25, 26, 27, // 24 74 26, 28, 27, // 25 77 28, 29, 27, // 26 80 29, 30, 27, // 27 83 30, 31, 27, // 28 86 31, 32, 27, // 29 89 32, 33, 27, // 30 92 33, 25, 27, // 31 95 DX3DINDEX_END #endif #else #define index_LineA___MateLine_0 NULL #endif #if ((PT_LineA___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_INDEXSTRIP) ) || (PT_LineA___MateLine_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_LineA___MateLine_0_INDEXSTRIP NULL #endif #if ((PT_LineA___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_VERTEXSTRIP) ) || (PT_LineA___MateLine_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_LineA___MateLine_0_VERTEXSTRIP NULL #define vertexbuff_LineA___MateLine_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_LineA__ ) DX3DMODEL_START( model_LineA___MateLine_0 ) DX3DMODEL_VERTEX( vertex_LineA___MateLine_0 ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DMODEL_INDEX( index_LineA___MateLine_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 96 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_MateLine ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_LineA__, 1162661141 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_LineA__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, -0, -0, -0, 0, // -0, -0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, -0, -0, -0, 0, // -0, -0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_NULL__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_LineB__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_LineB___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_TRILIST) ) || (PT_LineB___MateLine_0 == PT_TRILIST ) || ((PT_LineB___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_INDEXSTRIP)) || (PT_LineB___MateLine_0 == PT_INDEXSTRIP) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DVERT_START( VN, vertexbuff_LineB___MateLine_0 ) DX3DVERT( 0.0707107, 0.0707107, 1 ) DX3DVNORM( 0.707107, 0.707107, 1.97563e-008 ) //0 DX3DVERT( 0, 0.1, 1 ) DX3DVNORM( 0, 1, 3.29272e-008 ) //1 DX3DVERT( 0, 0.1, 2.23517e-008 ) DX3DVNORM( 0, 1, 3.29272e-008 ) //2 DX3DVERT( 0.0707107, 0.0707107, 1.49012e-008 ) DX3DVNORM( 0.707107, 0.707107, 1.97563e-008 ) //3 DX3DVERT( -0.0707107, 0.0707107, 1 ) DX3DVNORM( -0.707107, 0.707107, 1.97563e-008 ) //4 DX3DVERT( -0.0707107, 0.0707107, 1.49012e-008 ) DX3DVNORM( -0.707107, 0.707107, 1.97563e-008 ) //5 DX3DVERT( -0.1, 0, 1 ) DX3DVNORM( -1, 0, -0 ) //6 DX3DVERT( -0.1, 0, -0 ) DX3DVNORM( -1, 0, -0 ) //7 DX3DVERT( -0.0707107, -0.0707107, 1 ) DX3DVNORM( -0.707107, -0.707107, -1.97563e-008 ) //8 DX3DVERT( -0.0707107, -0.0707107, -1.49012e-008 ) DX3DVNORM( -0.707107, -0.707107, -1.97563e-008 ) //9 DX3DVERT( 0, -0.1, 1 ) DX3DVNORM( -1.61289e-008, -1, -2.96345e-008 ) //10 DX3DVERT( 0, -0.1, 2.98023e-008 ) DX3DVNORM( -1.61289e-008, -1, -2.96345e-008 ) //11 DX3DVERT( 0.0707107, -0.0707107, 1 ) DX3DVNORM( 0.707107, -0.707107, -1.56404e-008 ) //12 DX3DVERT( 0.0707107, -0.0707107, 7.45058e-009 ) DX3DVNORM( 0.707107, -0.707107, -1.56404e-008 ) //13 DX3DVERT( 0.1, 0, 1 ) DX3DVNORM( 1, 3.22578e-008, 8.23181e-010 ) //14 DX3DVERT( 0.1, 0, -0 ) DX3DVNORM( 1, 3.22578e-008, 8.23181e-010 ) //15 DX3DVERT( 0, 0.1, 1 ) DX3DVNORM( 0, 5.96047e-007, 1 ) //16 DX3DVERT( 0.0707107, 0.0707107, 1 ) DX3DVNORM( 0, 2.98023e-007, 1 ) //17 DX3DVERT( 0, 0, 1 ) DX3DVNORM( 0, 1.49012e-007, 1 ) //18 DX3DVERT( -0.0707107, 0.0707107, 1 ) DX3DVNORM( 0, 2.98023e-007, 1 ) //19 DX3DVERT( -0.1, 0, 1 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( -0.0707107, -0.0707107, 1 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0, -0.1, 1 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.0707107, -0.0707107, 1 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.1, 0, 1 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.0707107, 0.0707107, 1.49012e-008 ) DX3DVNORM( -6.39161e-009, 2.17126e-007, -1 ) //25 DX3DVERT( 0, 0.1, 2.23517e-008 ) DX3DVNORM( 0, 2.23517e-007, -1 ) //26 DX3DVERT( 0, 0, -0 ) DX3DVNORM( 3.95127e-008, 4.7228e-008, -1 ) //27 DX3DVERT( -0.0707107, 0.0707107, 1.49012e-008 ) DX3DVNORM( 6.39161e-009, 2.17126e-007, -1 ) //28 DX3DVERT( -0.1, 0, -0 ) DX3DVNORM( 0, 2.10734e-007, -1 ) //29 DX3DVERT( -0.0707107, -0.0707107, -1.49012e-008 ) DX3DVNORM( 2.54379e-007, -4.36445e-008, -1 ) //30 DX3DVERT( 0, -0.1, 2.98023e-008 ) DX3DVNORM( 1.58051e-007, -2.98023e-007, -1 ) //31 DX3DVERT( 0.0707107, -0.0707107, 7.45058e-009 ) DX3DVNORM( -9.63281e-008, -2.01695e-007, -1 ) //32 DX3DVERT( 0.1, 0, -0 ) DX3DVNORM( 0, 5.26835e-008, -1 ) //33 DX3DVERT_END #endif DX3DVERTEX_START( vertex_LineB___MateLine_0 ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_LineB___MateLine_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 34 ) DX3DVERTEX_END #else #define vertex_LineB___MateLine_0 NULL #define vertexbuff_LineB___MateLine_0 NULL #endif #if ((PT_LineB___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_TRILIST) ) || (PT_LineB___MateLine_0 == PT_TRILIST ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DINDEX_START( index_LineB___MateLine_0 ) 0, 1, 3, // 0 2 1, 2, 3, // 1 5 1, 4, 2, // 2 8 4, 5, 2, // 3 11 4, 6, 5, // 4 14 6, 7, 5, // 5 17 6, 8, 7, // 6 20 8, 9, 7, // 7 23 8, 10, 9, // 8 26 10, 11, 9, // 9 29 10, 12, 11, // 10 32 12, 13, 11, // 11 35 12, 14, 13, // 12 38 14, 15, 13, // 13 41 14, 0, 15, // 14 44 0, 3, 15, // 15 47 16, 17, 18, // 16 50 19, 16, 18, // 17 53 20, 19, 18, // 18 56 21, 20, 18, // 19 59 22, 21, 18, // 20 62 23, 22, 18, // 21 65 24, 23, 18, // 22 68 17, 24, 18, // 23 71 25, 26, 27, // 24 74 26, 28, 27, // 25 77 28, 29, 27, // 26 80 29, 30, 27, // 27 83 30, 31, 27, // 28 86 31, 32, 27, // 29 89 32, 33, 27, // 30 92 33, 25, 27, // 31 95 DX3DINDEX_END #endif #else #define index_LineB___MateLine_0 NULL #endif #if ((PT_LineB___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_INDEXSTRIP) ) || (PT_LineB___MateLine_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_LineB___MateLine_0_INDEXSTRIP NULL #endif #if ((PT_LineB___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_VERTEXSTRIP) ) || (PT_LineB___MateLine_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_LineB___MateLine_0_VERTEXSTRIP NULL #define vertexbuff_LineB___MateLine_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_LineB__ ) DX3DMODEL_START( model_LineB___MateLine_0 ) DX3DMODEL_VERTEX( vertex_LineB___MateLine_0 ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DMODEL_INDEX( index_LineB___MateLine_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 96 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_MateLine ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_LineB__, 1162662585 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_LineB__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, -0, -0, -0, 0, // -0, -0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, -0, -0, -0, 0, // -0, -0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_NULL__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_LineArrowCap__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_LineArrowCap___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_TRILIST) ) || (PT_LineArrowCap___MateLine_0 == PT_TRILIST ) || ((PT_LineArrowCap___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_INDEXSTRIP)) || (PT_LineArrowCap___MateLine_0 == PT_INDEXSTRIP) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DVERT_START( VN, vertexbuff_LineArrowCap___MateLine_0 ) DX3DVERT( 8.27842e-010, 0, -0 ) DX3DVNORM( -2.49966e-008, -1.24983e-008, 1 ) //0 DX3DVERT( -4.14167e-009, 0.168992, -0.5 ) DX3DVNORM( 0, 0.947353, 0.32019 ) //1 DX3DVERT( 0.119495, 0.119495, -0.5 ) DX3DVNORM( 0.66988, 0.66988, 0.32019 ) //2 DX3DVERT( -0.119495, 0.119495, -0.5 ) DX3DVNORM( -0.66988, 0.66988, 0.32019 ) //3 DX3DVERT( -0.168992, -1.02806e-008, -0.5 ) DX3DVNORM( -0.947353, -4.80221e-008, 0.32019 ) //4 DX3DVERT( -0.119495, -0.119495, -0.5 ) DX3DVNORM( -0.66988, -0.66988, 0.32019 ) //5 DX3DVERT( -4.14167e-009, -0.168992, -0.5 ) DX3DVNORM( 0, -0.947353, 0.32019 ) //6 DX3DVERT( 0.119495, -0.119495, -0.5 ) DX3DVNORM( 0.66988, -0.66988, 0.32019 ) //7 DX3DVERT( 0.168992, -1.02806e-008, -0.5 ) DX3DVNORM( 0.947353, -1.60074e-008, 0.32019 ) //8 DX3DVERT( 0.119495, 0.119495, -0.5 ) DX3DVNORM( 1.84477e-007, 8.81767e-008, -1 ) //9 DX3DVERT( -4.14167e-009, 0.168992, -0.5 ) DX3DVNORM( -1.84477e-007, 1.76353e-007, -1 ) //10 DX3DVERT( -4.14167e-009, -1.02806e-008, -0.5 ) DX3DVNORM( 2.84217e-014, -4.40884e-008, -1 ) //11 DX3DVERT( -0.119495, 0.119495, -0.5 ) DX3DVNORM( -3.68955e-007, 8.81767e-008, -1 ) //12 DX3DVERT( -0.168992, -1.02806e-008, -0.5 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( -0.119495, -0.119495, -0.5 ) DX3DVNORM( 5.53432e-007, -1.76353e-007, -1 ) //14 DX3DVERT( -4.14167e-009, -0.168992, -0.5 ) DX3DVNORM( 1.84477e-007, -3.52707e-007, -1 ) //15 DX3DVERT( 0.119495, -0.119495, -0.5 ) DX3DVNORM( -3.68955e-007, -1.76353e-007, -1 ) //16 DX3DVERT( 0.168992, -1.02806e-008, -0.5 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT_END #endif DX3DVERTEX_START( vertex_LineArrowCap___MateLine_0 ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_LineArrowCap___MateLine_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 18 ) DX3DVERTEX_END #else #define vertex_LineArrowCap___MateLine_0 NULL #define vertexbuff_LineArrowCap___MateLine_0 NULL #endif #if ((PT_LineArrowCap___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_TRILIST) ) || (PT_LineArrowCap___MateLine_0 == PT_TRILIST ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DINDEX_START( index_LineArrowCap___MateLine_0 ) 0, 1, 2, // 0 2 0, 3, 1, // 1 5 0, 4, 3, // 2 8 0, 5, 4, // 3 11 0, 6, 5, // 4 14 0, 7, 6, // 5 17 0, 8, 7, // 6 20 0, 2, 8, // 7 23 9, 10, 11, // 8 26 10, 12, 11, // 9 29 12, 13, 11, // 10 32 13, 14, 11, // 11 35 14, 15, 11, // 12 38 15, 16, 11, // 13 41 16, 17, 11, // 14 44 17, 9, 11, // 15 47 DX3DINDEX_END #endif #else #define index_LineArrowCap___MateLine_0 NULL #endif #if ((PT_LineArrowCap___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_INDEXSTRIP) ) || (PT_LineArrowCap___MateLine_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_LineArrowCap___MateLine_0_INDEXSTRIP NULL #endif #if ((PT_LineArrowCap___MateLine_0 == PT_FOLLOWALL) && (PT_ALL_GachanGameObjectSystem00_tst__ == PT_VERTEXSTRIP) ) || (PT_LineArrowCap___MateLine_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_LineArrowCap___MateLine_0_VERTEXSTRIP NULL #define vertexbuff_LineArrowCap___MateLine_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_LineArrowCap__ ) DX3DMODEL_START( model_LineArrowCap___MateLine_0 ) DX3DMODEL_VERTEX( vertex_LineArrowCap___MateLine_0 ) #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DMODEL_INDEX( index_LineArrowCap___MateLine_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 48 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_MateLine ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_LineArrowCap__, 2569201185 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_LineArrowCap__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, -0, -0, -0, 0, // -0, -0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, -0, -0, -0, 0, // -0, -0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_NULL__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END //////////// export info /////////////// DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___0, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___1, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___2, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___3, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___4, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___5, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___6, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_GachanGameObjectSystem00_tst___7, 0 ) ///////////////////////////////////////////// #if ( !BINARY_GachanGameObjectSystem00_tst__ ) DX3DBINARYFILE( binaryfile_GachanGameObjectSystem00_tst__, NULL ) #else DX3DBINARYFILE( binaryfile_GachanGameObjectSystem00_tst__, "Z:/toshi2gachan/_GachanWorkspace/object/" ) #endif DX3DBINARYSIZE( binarysize_GachanGameObjectSystem00_tst__, 0 )
b313aaa5f9ea3ed6071ec2955ea881c8fef508f6
430e7adb489914d378a5b0a27d8d41352fa45f3a
/scilab/example/オブザーバに基づく推定状態フィードバック.sce
25904318f73238e2fe9aa6a17e91b2a38918f64b
[]
no_license
ziaddorbuk/Lesson
04906ff94bf8c1f6bbc6971d5692ae011a9b8869
20fe20a6c9c145ef48a35574d885d3952f9ab6ff
refs/heads/master
2021-09-23T11:48:05.958608
2018-04-30T01:54:13
2018-04-30T01:54:13
null
0
0
null
null
null
null
SHIFT_JIS
Scilab
false
false
570
sce
オブザーバに基づく推定状態フィードバック.sce
//オブザーバに基づく推定状態フィードバック A=[1 0;0 2]; b=[1;1]; c=[1 1]; k=[12 -20]; g=[-30;42]; Plant=syslin('c',A,b,c); Cnt=obscont(Plant,k,-g); ExClosed = Plant/.(-Cnt); spec(ExClosed('A')) t=0:0.01:10; v=0*t; x0=[1;0;0;1] [y,x]=csim(v,t,ExClosed,x0); xset("window",0); clf(); plot2d(t',[x(1,:)',x(3,:)']) xtitle("Extended closed loop response","time [s]","state variables x1 and hat x1") xset("window",1); clf(); plot2d(t',[x(2,:)',x(4,:)']) xtitle("Extended closed loop response","time [s]","state variables x2 and hat x2")
7959490a4a7dad6e195713e6e35d1a470728ddd3
449d555969bfd7befe906877abab098c6e63a0e8
/2795/CH11/EX11.5/Ex11_05.sce
ee0d040b7c236d8227c76935c359c28313e6312d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
998
sce
Ex11_05.sce
// Scilab Code Ex11.5: Page-412 (2014) clc; clear; A = 100*100; // Area of solar cell, Sq.m t = 12*60*60; // Time for which the solar cell operates, s phi = 680; // Solar flux received by the solar cell, W/Sq.m eta = 0.30 // Efficiency of the solar array E_array = eta*phi*A*t; // Energy produced by solar cell in one 12-hour day, J printf("\nThe energy produced by solar cell in one 12-hour day : %3.1e J", E_array); P = 100e+006; // Power output of power plant, W t = 24*60*60; // Time for which power plant operates, s E_plant = P*t; // Energy produced by power plant, J printf("\nThe energy produced by power plant in one day : %3.1e J which is about %d times more than that produced by solar cell array..!", E_plant, ceil(E_plant/E_array)); // Result // The energy produced by solar cell in one 12-hour day : 8.8e+010 J // The energy produced by power plant in one day : 8.6e+012 J which is about 99 times more than that produced by solar cell array..!
187306a478c31736e7babb63ae05c56aaba8ab1a
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH9/EX9.2/Ex9_2.sce
0bcbb207bac19fee83f675456661cd86368ea026
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
938
sce
Ex9_2.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 9.2\n\n\n"); // Chapter 9 : Gas Power Cycles // Problem 9.2 (page no. 463) // Solution cv=0.172; //Unit:Btu/(lbm*R) //Specific heat constant Rc=7; //Compression Ratio Rc=v2/v3 k=1.4; //It is apparent incerease in compression ratio yields an increased cycle efficiency T2=70+460; //for converting to R //Conversion of unit //For 1000 F T4=1000+460; //temperatures converted to absolute temperatures; T3byT2=Rc^(k-1); //Unit less T3=T3byT2*T2; qin=cv*(T4-T3); //Unit:Btu/lbm //Heat added //Qr=cv*(T5-T2)*(T5/T4)=(v2/v3)^(k-1) Qr=(inv(Rc))^(k-1); //Unit:Btu/lbm //Heat rejected T5=T4*Qr; Qr=cv*(T5-T2); //Unit:Btu/lbm //Heat rejected printf("The net work out is %f Btu/lbm\n",qin-Qr); notto=((qin-Qr)/qin)*100; //The efficiency of otto cycle printf("The efficiency of otto cycle is %f percentage",notto); //The value agrees with the results of problem 9.1
3379197902088cd76cbcfadb5a09a9409acbbe97
9cb37875b74a713c93c09fa50ccc70ac0f71ecdb
/Collaboration/SCENARIOS/collaboration.sce
1f84252f56d71af1874bfff9273064bcd3ab7baf
[]
no_license
jmainpri/move3d-assets
a5b621daaedaaf8784fed0da1e80d029c83f3983
939db49d17a14e052bb58324b70e6112803d3105
refs/heads/master
2021-01-16T17:48:56.669119
2016-02-16T14:04:09
2016-02-16T14:04:09
20,237,987
1
0
null
null
null
null
UTF-8
Scilab
false
false
3,952
sce
collaboration.sce
#************************************************************ # Scenario of humanTestEnv # # date : Tue Apr 30 17:51:38 2013 #************************************************************ p3d_sel_desc_name P3D_ENV humanTestEnv p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.044000 0.000000 1.206000 0.000000 0.000000 -174.708000 0.000000 0.000000 0.000000 0.000000 0.000000 -5.625000 79.416000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.176000 -82.044000 -2.664000 -11.916000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.941000 0.000000 1.188000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 83.376000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -70.164000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT TABLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.400000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT Cup1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT Cup2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_camera_pos -0.052823 0.066207 1.380838 3.078223 1.546875 0.766250 0.000000 0.000000 1.000000 0.000000
73effbd7808ff3b1ac2de9706f46361ae0e13c19
449d555969bfd7befe906877abab098c6e63a0e8
/3204/CH18/EX18.3/Ex18_3.sce
34b3f2212301b9b92536a71aa0cc27a7565c0dca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
533
sce
Ex18_3.sce
// Initilization of variables h_1=9 // m // height of first bounce h_2=6 // m // height of second bounce // Calculations // From eq'n (5) we have, Coefficient of restitution between the glass and the floor is, e=sqrt(h_2/h_1) // From eq'n 3 we get height of drop as, h=h_1/e^2 // m // Results clc printf('The ball was dropped from a height of %f m \n',h) printf('The coefficient of restitution between the glass and the floor is %f \n',e) // Here we use h`=h_1 & h``=h_2 because h` & h`` could not be defined in Scilab.
e4c51fbe6c0114d15e55a0810d55f5cca3f2a5f6
449d555969bfd7befe906877abab098c6e63a0e8
/3472/CH12/EX12.2/Example12_2.sce
14d967e14a2a533a983f1b62963dbe0347abb870
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,196
sce
Example12_2.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 5: MECHANICAL DESIGN OF OVERHEAD LINES // EXAMPLE : 5.2 : // Page number 198 clear ; clc ; close ; // Clear the work space and console // Given data L = 250.0 // Span length(m) h = 10.0 // Difference in height(m) r = 1.0 // Radius of conductor(cm) w = 2.5 // Weight of conductor(kg/m) wind = 1.2 // Wind load(kg/m) s = 3.0 // Factor of safety tensile = 4300.0 // Maximum tensile strength(kg/sq.cm) // Calculations W = (w**2+wind**2)**0.5 // Total pressure on conductor(kg/m) f = tensile/s // Permissible stress in conductor(kg/sq.cm) a = %pi*r**2 // Area of the conductor(sq.cm) T = f*a // Allowable max tension(kg) x = (L/2)-(T*h/(L*W)) // Point of maximum sag at the lower support(m) // Results disp("PART II - EXAMPLE : 5.2 : SOLUTION :-") printf("\nPoint of maximum sag at the lower support, x = %.2f metres", x)
af50b6e67ccece46c675910672d330a6297e63d9
449d555969bfd7befe906877abab098c6e63a0e8
/2243/CH4/EX4.4/Ex4_4.sce
8a33a023559ddbff9cd315b8ead938121b145bf5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
802
sce
Ex4_4.sce
clc(); clear; //Given : d = 8.8*10^-2 ; // slit width in mm b = 0.7;// seperation between slits in mm lambda = 6328 ; //Wavelength in A //First diffraction minima is possible, when d*sin(theta) = lambda // 1 A = 1.0*10^-7 mm theta = asind((lambda*10^-7)/d); // angle in degrees printf("theta = %.3f degrees .\n\n",theta); //interference minima is possible , when sin(theta) = ((p + 1/2)*lambda)/b for p = 0 : 10 //1 A = 1.0*10^-7 mm theta1 = asind((p + 1/2)*(lambda*10^-7/b)); // angle in degrees printf("When p = %d \n",p); printf("theta = %.3f degrees . \n\n",theta1); if(theta1 > theta) printf(" When p >= %d , theta > %.3f degrees .\n\nBetween the first two diffraction minima , %d interference minima are possible.",p,theta,2*p); break; end end
23fd8f33def3a0c36bc0b849020c742eaf08cc68
449d555969bfd7befe906877abab098c6e63a0e8
/3526/CH6/EX6.2/EX6_2.sce
79cd35b7d71cd4c47d0cf0207ea1f7977d184aec
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
973
sce
EX6_2.sce
clc;funcprot(0);//EXAMPLE 6.2 //page 152 // Initialisation of Variables F=45000;.......//Force applied on an aluminum rod in lb e=25000;.......//the maximum allowable stress on the rod in psi l2=150;.......//the minimum length of the rod in in e1=0.0025;......//The strain appiled on rod sigma=16670;.........//Stress applied on rod in psi L=0.25;........//The maximum allowable elastic deformation in in //CALCULATIONS Ao1=F/e;........//The required crosssectional area of the rod d=sqrt((Ao1*4)/%pi);......//Diameter of rod in in l1=e1*L;...........//The maximum length of the rod in in e2=L/e1;...........//The minimum strain allowed on rod Ao2=F/sigma;........//The minimum cross-sectional area in in^2 disp(Ao1,"The required crosssectional area of the rod in in^2:") disp(d,"Diameter of rod in in:") disp(l1,"The maximum length of the rod in in:") disp(e2,"The minimum strain allowed on rod:") disp(Ao2,"The minimum cross-sectional area in in^2:")
53aebec4f28806d7bf559decb77d37b6e557a33e
449d555969bfd7befe906877abab098c6e63a0e8
/1997/CH3/EX3.8/example8.sce
7b38e36b55d9d68fd1fe140d00ef8c3407e0b467
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
614
sce
example8.sce
//Chapter-3, Problem 3.8 , Page107 //=========================================================================== clc; clear; //INPUT DATA Vb1 = 20;//first blind speed in m/s Vb2 = 30;//second blind speed in m/s n1 =1 ;//since first blindspeed n1 =2 ;//since second blindspeed lamda = 3*10^-2;//wavelength in m; //Calculations PRF1 = (2*Vb2)/(n1*lamda);//pulse repetitive frequency in Hz of First Radar; PRF2 = (2*Vb2)/(n1*lamda);//pulse repetitive frequency in Hz of Second Radar; //Output mprintf('Ratio of pulse repetitive frequencies of the Radars is PRF1/PRF2 = %g',PRF1/PRF2);
d2714796a4d7ee1861a4345c74c3bfecf33f3380
a8f42082049435843c9744242d5227d93bd88745
/kadai2.sce
613cbeb5f56d689c7063a4626a2bb10e80a9aa45
[]
no_license
SatokiOgiso/crs_excercise
e5d44f3fd39287a1ea624befd530e2d23f21f022
5ff0cbfd56868b02a3b46cf8fd08ddf5abe443d6
refs/heads/master
2021-01-10T15:34:17.113920
2015-10-22T17:23:06
2015-10-22T17:23:06
44,755,522
0
0
null
null
null
null
UTF-8
Scilab
false
false
414
sce
kadai2.sce
//関数の読み込み exec('prod_matrix_vector_crs.sci'); exec('sparse2crs.sci'); A = sprand(1000,1000,0.005); //疎行列生成 [AA, IA, JA] = sparse2crs(A); //CRS (CSR?)に変換 x = ones(1000, 1); //適当にベクトルを作る AprodX = prod_matrix_vector_crs(AA, IA, JA, x); //CRSで積を計算 norm_of_difference = norm(AprodX - A * x); //Scilabの演算と比較 print(%io(2), norm_of_difference)
27b7e91d5edf648a9a39d4c1bde7bae67a1e07eb
66106821c3fd692db68c20ab2934f0ce400c0890
/test/disassembler/brts.instr.tst
22a615f03999c4554538f220a62458894b2485d9
[]
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
5,670
tst
brts.instr.tst
; @Harness: disassembler ; @Result: PASS section .text size=0x00000100 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0 section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000134 ;2**0 start .text: label 0x00000000 ".text": 0x0: 0xfe 0xf1 brts .+126 ; 0x80 0x2: 0xf6 0xf1 brts .+124 ; 0x80 0x4: 0xee 0xf1 brts .+122 ; 0x80 0x6: 0xe6 0xf1 brts .+120 ; 0x80 0x8: 0xde 0xf1 brts .+118 ; 0x80 0xa: 0xd6 0xf1 brts .+116 ; 0x80 0xc: 0xce 0xf1 brts .+114 ; 0x80 0xe: 0xc6 0xf1 brts .+112 ; 0x80 0x10: 0xbe 0xf1 brts .+110 ; 0x80 0x12: 0xb6 0xf1 brts .+108 ; 0x80 0x14: 0xae 0xf1 brts .+106 ; 0x80 0x16: 0xa6 0xf1 brts .+104 ; 0x80 0x18: 0x9e 0xf1 brts .+102 ; 0x80 0x1a: 0x96 0xf1 brts .+100 ; 0x80 0x1c: 0x8e 0xf1 brts .+98 ; 0x80 0x1e: 0x86 0xf1 brts .+96 ; 0x80 0x20: 0x7e 0xf1 brts .+94 ; 0x80 0x22: 0x76 0xf1 brts .+92 ; 0x80 0x24: 0x6e 0xf1 brts .+90 ; 0x80 0x26: 0x66 0xf1 brts .+88 ; 0x80 0x28: 0x5e 0xf1 brts .+86 ; 0x80 0x2a: 0x56 0xf1 brts .+84 ; 0x80 0x2c: 0x4e 0xf1 brts .+82 ; 0x80 0x2e: 0x46 0xf1 brts .+80 ; 0x80 0x30: 0x3e 0xf1 brts .+78 ; 0x80 0x32: 0x36 0xf1 brts .+76 ; 0x80 0x34: 0x2e 0xf1 brts .+74 ; 0x80 0x36: 0x26 0xf1 brts .+72 ; 0x80 0x38: 0x1e 0xf1 brts .+70 ; 0x80 0x3a: 0x16 0xf1 brts .+68 ; 0x80 0x3c: 0x0e 0xf1 brts .+66 ; 0x80 0x3e: 0x06 0xf1 brts .+64 ; 0x80 0x40: 0xfe 0xf0 brts .+62 ; 0x80 0x42: 0xf6 0xf0 brts .+60 ; 0x80 0x44: 0xee 0xf0 brts .+58 ; 0x80 0x46: 0xe6 0xf0 brts .+56 ; 0x80 0x48: 0xde 0xf0 brts .+54 ; 0x80 0x4a: 0xd6 0xf0 brts .+52 ; 0x80 0x4c: 0xce 0xf0 brts .+50 ; 0x80 0x4e: 0xc6 0xf0 brts .+48 ; 0x80 0x50: 0xbe 0xf0 brts .+46 ; 0x80 0x52: 0xb6 0xf0 brts .+44 ; 0x80 0x54: 0xae 0xf0 brts .+42 ; 0x80 0x56: 0xa6 0xf0 brts .+40 ; 0x80 0x58: 0x9e 0xf0 brts .+38 ; 0x80 0x5a: 0x96 0xf0 brts .+36 ; 0x80 0x5c: 0x8e 0xf0 brts .+34 ; 0x80 0x5e: 0x86 0xf0 brts .+32 ; 0x80 0x60: 0x7e 0xf0 brts .+30 ; 0x80 0x62: 0x76 0xf0 brts .+28 ; 0x80 0x64: 0x6e 0xf0 brts .+26 ; 0x80 0x66: 0x66 0xf0 brts .+24 ; 0x80 0x68: 0x5e 0xf0 brts .+22 ; 0x80 0x6a: 0x56 0xf0 brts .+20 ; 0x80 0x6c: 0x4e 0xf0 brts .+18 ; 0x80 0x6e: 0x46 0xf0 brts .+16 ; 0x80 0x70: 0x3e 0xf0 brts .+14 ; 0x80 0x72: 0x36 0xf0 brts .+12 ; 0x80 0x74: 0x2e 0xf0 brts .+10 ; 0x80 0x76: 0x26 0xf0 brts .+8 ; 0x80 0x78: 0x1e 0xf0 brts .+6 ; 0x80 0x7a: 0x16 0xf0 brts .+4 ; 0x80 0x7c: 0x0e 0xf0 brts .+2 ; 0x80 0x7e: 0x06 0xf0 brts .+0 ; 0x80 0x80: 0xfe 0xf3 brts .-2 ; 0x80 0x82: 0xf6 0xf3 brts .-4 ; 0x80 0x84: 0xee 0xf3 brts .-6 ; 0x80 0x86: 0xe6 0xf3 brts .-8 ; 0x80 0x88: 0xde 0xf3 brts .-10 ; 0x80 0x8a: 0xd6 0xf3 brts .-12 ; 0x80 0x8c: 0xce 0xf3 brts .-14 ; 0x80 0x8e: 0xc6 0xf3 brts .-16 ; 0x80 0x90: 0xbe 0xf3 brts .-18 ; 0x80 0x92: 0xb6 0xf3 brts .-20 ; 0x80 0x94: 0xae 0xf3 brts .-22 ; 0x80 0x96: 0xa6 0xf3 brts .-24 ; 0x80 0x98: 0x9e 0xf3 brts .-26 ; 0x80 0x9a: 0x96 0xf3 brts .-28 ; 0x80 0x9c: 0x8e 0xf3 brts .-30 ; 0x80 0x9e: 0x86 0xf3 brts .-32 ; 0x80 0xa0: 0x7e 0xf3 brts .-34 ; 0x80 0xa2: 0x76 0xf3 brts .-36 ; 0x80 0xa4: 0x6e 0xf3 brts .-38 ; 0x80 0xa6: 0x66 0xf3 brts .-40 ; 0x80 0xa8: 0x5e 0xf3 brts .-42 ; 0x80 0xaa: 0x56 0xf3 brts .-44 ; 0x80 0xac: 0x4e 0xf3 brts .-46 ; 0x80 0xae: 0x46 0xf3 brts .-48 ; 0x80 0xb0: 0x3e 0xf3 brts .-50 ; 0x80 0xb2: 0x36 0xf3 brts .-52 ; 0x80 0xb4: 0x2e 0xf3 brts .-54 ; 0x80 0xb6: 0x26 0xf3 brts .-56 ; 0x80 0xb8: 0x1e 0xf3 brts .-58 ; 0x80 0xba: 0x16 0xf3 brts .-60 ; 0x80 0xbc: 0x0e 0xf3 brts .-62 ; 0x80 0xbe: 0x06 0xf3 brts .-64 ; 0x80 0xc0: 0xfe 0xf2 brts .-66 ; 0x80 0xc2: 0xf6 0xf2 brts .-68 ; 0x80 0xc4: 0xee 0xf2 brts .-70 ; 0x80 0xc6: 0xe6 0xf2 brts .-72 ; 0x80 0xc8: 0xde 0xf2 brts .-74 ; 0x80 0xca: 0xd6 0xf2 brts .-76 ; 0x80 0xcc: 0xce 0xf2 brts .-78 ; 0x80 0xce: 0xc6 0xf2 brts .-80 ; 0x80 0xd0: 0xbe 0xf2 brts .-82 ; 0x80 0xd2: 0xb6 0xf2 brts .-84 ; 0x80 0xd4: 0xae 0xf2 brts .-86 ; 0x80 0xd6: 0xa6 0xf2 brts .-88 ; 0x80 0xd8: 0x9e 0xf2 brts .-90 ; 0x80 0xda: 0x96 0xf2 brts .-92 ; 0x80 0xdc: 0x8e 0xf2 brts .-94 ; 0x80 0xde: 0x86 0xf2 brts .-96 ; 0x80 0xe0: 0x7e 0xf2 brts .-98 ; 0x80 0xe2: 0x76 0xf2 brts .-100 ; 0x80 0xe4: 0x6e 0xf2 brts .-102 ; 0x80 0xe6: 0x66 0xf2 brts .-104 ; 0x80 0xe8: 0x5e 0xf2 brts .-106 ; 0x80 0xea: 0x56 0xf2 brts .-108 ; 0x80 0xec: 0x4e 0xf2 brts .-110 ; 0x80 0xee: 0x46 0xf2 brts .-112 ; 0x80 0xf0: 0x3e 0xf2 brts .-114 ; 0x80 0xf2: 0x36 0xf2 brts .-116 ; 0x80 0xf4: 0x2e 0xf2 brts .-118 ; 0x80 0xf6: 0x26 0xf2 brts .-120 ; 0x80 0xf8: 0x1e 0xf2 brts .-122 ; 0x80 0xfa: 0x16 0xf2 brts .-124 ; 0x80 0xfc: 0x0e 0xf2 brts .-126 ; 0x80 0xfe: 0x06 0xf2 brts .-128 ; 0x80 start .data:
aae7974c4b612386ceff1ed9a6fe8ff92c177795
449d555969bfd7befe906877abab098c6e63a0e8
/1478/CH2/EX2.18.36/2_18_36.sce
f0bafb2d9a5a9d0855af7cdaad316f5e7f634d8f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,005
sce
2_18_36.sce
//water and its treatment// //example 2.18.36// clc Purity_Lime=.86 Purity_soda=.90 W1=35.2;//amount of CaCO3 in ppm// W2=7.8;//amount of MgCl2 in ppm// W3=12.5;//amount of HCl in ppm// W4=33.3;//amount of Al2(SO4)3 in ppm// W5=8.8;//amount of Na2SO4 in ppm// W6=18.6;//amount of Fe2O3 in ppm// M1=100/99.976;//multiplication factor of CaCO3// M2=100/94.08;//multiplication factor of MgCl2// M3=100/73;//multiplication factor of HCl// M4=100/114//multiplication factor of Al2(SO4)3// P1=W1*M1;//in terms of CaCO3//L P2=W2*M2;//in terms of CaCO3//L+S P3=W3*M3;//in terms of CaCO3//L+S P4=W4*M4;//in terms of CaCO3//L+S printf ("We do not take Na2SO4 and Fe2O3 since they do not react with lime/soda"); V=25000;//volume of water in litres// L=0.74*(P1+P2+P3+P4)*V/Purity_Lime;//lime required in mg// L=L/10^6; printf("\nQuantity of Lime required is %.6fkg",L); S=1.06*(P2+P3+P4)*V/Purity_soda;//soda required in mg// S=S/10^6; printf("\nQuantity of Soda required is %.4fkg",S)
6862595b8331c6a3a9fa0255c42d4e00815172fb
449d555969bfd7befe906877abab098c6e63a0e8
/2489/CH5/EX5.2/5_2.sce
884c400f6a01d67fd3e93dc816efecc6288716c8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
344
sce
5_2.sce
clc //Intitalisation of variables clear p= 27.17 //mm T= 99.5 //C T1= 100.5 //C T2= 100 //C sv1= 1674 //cc per gram sv2= 1.04 //cc per gram g= 980.7 //cm/sec^2 d= 13.595 //kg/m^3 //CALCULATIONS r= (p/10)*d*g lv= (273.2+T2)*(sv1-sv2)*(p/10)*d*g/(4.184*10^7) //RESULTS printf ('Heat of vapourisation of water = %.1f cal g^-1',lv)
6f7d22566c398f6ee1f991f9a2c1d7b14fc49787
2f7b1fa044c246ffe96b7e6e7b96aa95f9031cdf
/Anul 2/Anul_2/Metode_Numerice/Laborator/MN rezolvari/MN_Lab/lab6/exemplu plot2D-2.sce
531c80bdeb2983319119c87037f3f388767064ea
[]
no_license
stickyrst/automatica
1f902091376c0f65c08a66721de3185a70f88d26
2ac48ae78f45b787724fa90c0e7acd8052e6725c
refs/heads/master
2020-06-11T18:39:23.768638
2018-05-30T19:55:38
2018-05-30T19:55:38
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
149
sce
exemplu plot2D-2.sce
//Exemplu: n=10; x=(0:n)'; y=x; //xbasc(); plot2d2(x,y,style=2,frameflag=5,rect=[0,-1,n+1,n+1]) xtitle("Exemplu de grafic cu plot2d2")
3faa48389309a1613f40962efeb480a880ca5582
348b83f2cd32e6616b86e704a374661890d58cda
/opration_of_waveform.sce
fb651ff7798aa94eef491172550b89b268c4f6d1
[]
no_license
YashGandhi17/Scilab
012b35caad56d0c7600b9a207956e25774339c66
6d509dc17afe2ca32376df795693c84f94e3f360
refs/heads/master
2020-04-07T03:13:24.046967
2018-11-17T17:24:44
2018-11-17T17:24:44
157,837,866
0
0
null
null
null
null
UTF-8
Scilab
false
false
511
sce
opration_of_waveform.sce
S=input("enter sample"); Si=input("enter starting index"); V=input("value to wave advance(-ve) or delay(+ve) or scale:"); O=input("enter 1 for delay or advanced // Enter 2 for fold // Enter 3 for scale "); n=1:length(S); r=[n+(Si-1)] figure(1); clf(1); subplot(2,1,1) plot2d3(r,S); xlabel("y"); ylabel("x"); title("input wave form"); exec('op_wave.sce'); [So,N]=fn_op_wave(r,S,O,V); N=int(N); figure(1); subplot(2,1,2) plot2d3(N,So); xlabel("y"); ylabel("x"); title("output wave form");
1d3b799ee13ceb0b19d3c3e13fa63024ce8e1de0
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH17/EX17.5/141ex2.sce
0930558e0b28439bd7cf3cc428879e5ea4d4e37b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
143
sce
141ex2.sce
//9*x*(x+1)=4 clear; clc; close; x=poly(0,'x'); y=9*x*(x+1)-4; //y=0 mprintf("the solution is \n") mprintf("x=%f, \n",roots(y))
60ca8365c007480ebac80a4946e9e1a4c752a5ad
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testMatplot.sce
d448eaf16e0b82b6e12c07b13fa67b656d142e7a
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
329
sce
testMatplot.sce
// grid definition x=[1:5];y=[2:5]; // surface computation [X,Y]=meshgrid(x,y); Z=X+Y; //surface display clf; F=gcf();F.color_map=jetcolormap(10); subplot(121) Matplot(Z) xtitle('Matplot(Z)') subplot(122) A=gca();A.data_bounds=[0,0;10,10]; A.axes_visible=["on" "on" "on"]; Matplot1(Z,[1,2,5,5]) xtitle('Matplot1(Z,[1,2,5,5])')
4ca26edbec101e48a83713e19f7d0baead3e060b
be07c1e346737e6e38bb958d9a66f52f6da2180a
/Regression/ADVANCED_STUBBING/ADVANCED_STUBBING_W.tst
d25aa413acf28510e3d89e8ab1702c732c63bf21
[]
no_license
dpreisser/Training
1bc8840d646306d861f4c7610a28bb23667f06e5
97eb58c7963e4725d6a2ad9e8200ca9367c84061
refs/heads/master
2021-01-10T13:03:12.508795
2016-04-11T12:49:06
2016-04-11T12:49:06
54,963,561
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,804
tst
ADVANCED_STUBBING_W.tst
-- VectorCAST 6.4d (02/29/16) -- Test Case Script -- -- Environment : ADVANCED_STUBBING_W -- Unit(s) Under Test: advanced_stubbing -- -- Script Features TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2 TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS -- -- Subprogram: use_const_global -- Test Case: Test0 TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_const_global TEST.NEW TEST.NAME:Test0 TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.EXPECTED:advanced_stubbing.use_const_global.return:0 TEST.END -- Test Case: Test1 TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_const_global TEST.NEW TEST.NAME:Test1 TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.EXPECTED:advanced_stubbing.use_const_global.return:1 TEST.END -- Subprogram: use_function_pointer -- Test Case: NULL TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_function_pointer TEST.NEW TEST.NAME:NULL TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.VALUE:advanced_stubbing.use_function_pointer.func:<<null>> TEST.EXPECTED:advanced_stubbing.use_function_pointer.return:NULL_FUNCTION TEST.END -- Test Case: Return_0,1 TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_function_pointer TEST.NEW TEST.NAME:Return_0,1 TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.VALUE:advanced_stubbing.use_function_pointer.func:myFunction0,myFunction1 TEST.EXPECTED:advanced_stubbing.use_function_pointer.return:STATUS_PASS,STATUS_FAIL TEST.END -- Test Case: Stub_Return_0,1 TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_function_pointer TEST.NEW TEST.NAME:Stub_Return_0,1 TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.VALUE:<<OPTIONS>>.MULTI_RETURN_SPANS_RANGE:TRUE TEST.VALUE:advanced_stubbing.use_function_pointer.func:(2)myFunction TEST.VALUE:uut_prototype_stubs.myFunction.return:0,1 TEST.EXPECTED:advanced_stubbing.use_function_pointer.return:STATUS_PASS,STATUS_FAIL TEST.END -- Subprogram: use_malloc -- Test Case: Real TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_malloc TEST.NEW TEST.NAME:Real TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.EXPECTED:advanced_stubbing.use_malloc.return:"ok" TEST.END -- Test Case: Stub TEST.UNIT:advanced_stubbing TEST.SUBPROGRAM:use_malloc TEST.NEW TEST.NAME:Stub TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.STUB:uut_prototype_stubs.malloc TEST.VALUE:uut_prototype_stubs.malloc.return:<<null>> TEST.EXPECTED:advanced_stubbing.use_malloc.return:<<null>> TEST.END
a0def2bb94898e88293b81fcf835f03ef2890b77
449d555969bfd7befe906877abab098c6e63a0e8
/1052/CH17/EX17.6/176.sce
cf029ea40c2798c62bd7d388cbbdb22fba6e3197
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
850
sce
176.sce
clc; //Example 17.6 //page no 214 printf("\n Example 17.6 page no. 214\n\n"); //the total head developed by a centrifugal pump is given by a equation //hc=42-0.0047*q^2 //the pump is to be used in a water flow system in which the pump head in feet of water is given by eq. //hp=12+0.0198*q^2 //for cal. flow rate hc=hp q=35//from condition hc=hp,gpm hc=42-0.0047*q^2//total head printf("\n total head hc=%f ft of water",hc); rho=62.40//density q_c=0.078//flow rate in cfs unit m_dot=rho*q_c//mass flow rate printf("\n m_dot mass flow rate =%f lb/s",m_dot); W_dot=m_dot*hc//fluid power requirement can be calculated printf("\n fluid power requirement W_dot=%f lbf.ft/s",W_dot); neta=.6//efficiency W_dot_hp=.32//fluid power requirement in hp bhp=W_dot_hp/neta//brake horse power printf("\n brake horse power bhp=%f bhp",bhp);
1180313dd5885a6e67417a0133cf6e354c2256d3
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.2/macros/auto/frep2tf.sci
a90b617b7df1279ed93504eeb5bb5ec7441779ba
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
716
sci
frep2tf.sci
function [h,err]=frep2tf(frq,repf,dg) w=2*%i*%pi*frq n=prod(size(w)) //initialisation m=2*dg a=[0*ones(m+1,m+1)]; err=0 x=ones(1,dg) //triangularisation for k=1:n for l=1:dg-1, x(l+1)=x(l)*w(k),end a(m+1,:)=[x repf(k)*[-x x(dg)*w(k)]] for k1=1:mini([k,m]) u=givens(a(k1,k1),a(m+1,k1)); a([k1,m+1],k1:m+1)=u*a([k1,m+1],k1:m+1); end; // d=abs(diag(a));print(6,d), err=err+a(m+1,m+1)*a(m+1,m+1)' end; //test d=sort(abs(diag(a)));d=d/d(1) rg=m;while d(rg)<sqrt(%eps) then rg=rg-1,end if rg<>m then error('estimated maximum degree : '+string(int(rg/2))),end //solution x=real(a(1:m,1:m)\a(1:m,m+1)) h=tlist('r',poly(x(1:dg),'s','c'),... poly([x((dg+1):m);1],'s','c'),'c') err=sqrt(err)
d2a6de5c5d505f4589c387efd7dd917eff6e746e
449d555969bfd7befe906877abab098c6e63a0e8
/149/CH6/EX6.4.1/ques4_1.sce
531f5f4cae0f5e835f013988ca9bba89b75bb883
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
121
sce
ques4_1.sce
//ques4 clc disp('definite integral'); syms x g=(sin(6*x))^3*(cos(3*x))^7; f=integ(g,x,0,%pi/6); disp(float(f));
83d387e884713016c01bcca25ccb9efbe08693f6
207c864c3f938783d617dca78232e70445ae21e6
/Ch12_I.sce
32386ddc5439fe417011270c0dc0d585155308b1
[]
no_license
raresica/CalculNumeric
a211a57fd4851e546c0b5eb866b3b228534a982c
5564822ff9f5dab745208898ef9162322b28bff2
refs/heads/master
2021-02-11T05:03:13.720791
2020-04-15T10:42:58
2020-04-15T10:42:58
244,457,154
1
0
null
null
null
null
UTF-8
Scilab
false
false
116
sce
Ch12_I.sce
x=%pi/10:1:9 y=cos(x) exec('D:\Scoala Sem 2\CN-VladMonescu\lq.sci',-1) c1=lq(1,x,y) c2=lq(2,x,y) c3=lq(3,x,y)
f6d83b28ca060c38df89fc08b07c0ddd2a1bc7c1
881e0bcc7118244a24f736786ac36140acfb885e
/yeast/results/GAssist-ADI-C.yeast-4/result2s0.tst
c28759586820b14bf4d947043bbd6413879ef115
[]
no_license
woshahua/Experiment_File
3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc
6a139cd3f779373799cb926ba90d978235b0de0d
refs/heads/master
2021-01-01T06:57:13.285197
2017-07-28T08:17:38
2017-07-28T08:17:38
97,557,409
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,593
tst
result2s0.tst
@relation yeast-4 @attribute Mcg real [0.11, 1.0] @attribute Gvh real [0.13, 1.0] @attribute Alm real [0.21, 1.0] @attribute Mit real [0.0, 1.0] @attribute Erl real [0.5, 1.0] @attribute Pox real [0.0, 0.83] @attribute Vac real [0.0, 0.73] @attribute Nuc real [0.0, 1.0] @attribute Class {MIT, NUC, CYT, ME1, ME2, ME3, EXC, VAC, POX, ERL} @inputs Mcg, Gvh, Alm, Mit, Erl, Pox, Vac, Nuc @outputs Class CYT CYT MIT CYT MIT CYT MIT MIT ME2 ME2 NUC NUC CYT CYT MIT MIT NUC CYT NUC CYT CYT NUC CYT CYT MIT MIT MIT MIT MIT CYT MIT ME1 ME3 ME3 NUC CYT NUC NUC NUC CYT NUC CYT CYT CYT ME2 ME2 ME3 ME3 NUC NUC ERL NUC CYT CYT CYT CYT ME1 ME1 ME3 ME3 NUC CYT CYT CYT ME2 ME3 CYT MIT NUC CYT NUC NUC CYT CYT NUC NUC NUC CYT NUC NUC ME3 ME3 ME3 ME3 MIT MIT MIT MIT MIT CYT ME1 NUC MIT MIT NUC CYT CYT CYT NUC NUC ME3 MIT MIT MIT POX CYT MIT MIT MIT CYT MIT MIT MIT CYT NUC NUC MIT CYT MIT CYT CYT ME3 CYT NUC ME3 ME3 NUC NUC NUC NUC CYT CYT CYT CYT NUC MIT CYT CYT CYT CYT NUC NUC NUC CYT VAC CYT MIT CYT EXC EXC EXC EXC ME3 ME3 NUC ME3 VAC NUC CYT CYT CYT CYT CYT CYT MIT CYT MIT CYT NUC NUC NUC MIT NUC CYT MIT CYT CYT CYT NUC NUC NUC CYT CYT CYT CYT CYT CYT CYT CYT CYT CYT CYT CYT MIT CYT MIT ME3 ME3 CYT CYT CYT CYT ME3 ME3 MIT CYT ME3 ME3 CYT CYT NUC CYT NUC CYT POX CYT NUC ME3 NUC CYT CYT NUC NUC NUC CYT NUC CYT CYT VAC ME3 CYT CYT CYT CYT ME1 ME1 ME3 ME3 NUC NUC CYT NUC NUC NUC NUC CYT CYT CYT CYT CYT CYT NUC NUC NUC CYT CYT CYT NUC NUC NUC ME2 NUC ME3 ME3 NUC NUC ME3 ME3 ME3 ME3 ME3 ME3 ME3 ME3 NUC MIT ME2 ME2 ME1 ME1 EXC CYT CYT CYT CYT CYT CYT CYT NUC MIT NUC NUC CYT CYT MIT ME3 NUC NUC
9bea11aad03bcdaffae9c9088243ab7d8dfbbb6e
449d555969bfd7befe906877abab098c6e63a0e8
/1694/CH6/EX6.19/Ex6_19.sce
ff50973b9c322b855a0e86e8246d6e22ca5c1a88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
451
sce
Ex6_19.sce
clear; clc; printf("\nEx-6.19\n"); //page no.-192 //given E=5.53;......//fermi energy in eV e=1.6*10^-19;.....//charge tau=3.91*10^-14;..//relaxation time in s m=9.11*10^-31;....//mass of electron v=((2*E*e)/m)^(1/2).......//fermi velocity printf("\nfermi velocity is 1.39*10^6 m/s\n"); k=1.38*10^-23;......//boltzmann constant T=(E*e)/k..............//fermi temperature in kelvin printf("\nfermi temperature is 6.41*10^4 k");
cc615a58ae10bcd6b352ba4466d0647cf7344409
449d555969bfd7befe906877abab098c6e63a0e8
/3574/CH9/EX9.5/EX9_5.sce
9864d5ff4bab5d48294f0404e923170b476d3f1d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
816
sce
EX9_5.sce
// Example 9.5 // Determine (a) Bus frequency (b) Load on each machine // Page 360 clc; clear; close; // Given data Padd=720; // Additional load connected GD=0.0008; // Governor droop f=60.2; // Frequency of machine Pbus=900; // Bus load // (a) Bus frequency deltaPa=Padd/2; deltaPb=deltaPa; // Since both machines have identical governor drops deltaF=GD*deltaPa; // Change in frequency Fbus=f-deltaF; // (b) Load on each machine Pa=(2/3)*Pbus+deltaPa; // Load on machine A Pb=(1/3)*Pbus+deltaPb; // Load on machine B // Display result on command window printf("\n Bus frequency = %0.2f Hz ",Fbus); printf("\n Load on machine A = %0.0f kW",Pa); printf("\n Load on machine B = %0.0f kW",Pb);
be5a8a60795a7d4ddd7a976bb87d5018b9941a0b
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH14/EX14.8/14_8.sce
9e0b9a288baec4c2b986d008e6513d937a743ecb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
528
sce
14_8.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 14.8 //calculation of the height of the water in the column //given data r=.2*10^-3//radius(in m) of the tube S=.075//surface tension(in N/m) of the water g=10//gravitational acceleration(in m/s^2) of the earth rho=1000//density of the water(in kg/m^3) theta=0//tube dipped vertically //calculation h=(2*S*cosd(theta))/(r*rho*g)//height in column printf('the height of the water in the column is %3.1f cm',h*10^2)
3393e60360184108efb4eccb369bf0491ade20e2
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/form-split/GOLD-TEST/cpa.tst
f220aa5fe0d51734a3ce72448037630552b61c8b
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
51,656
tst
cpa.tst
guiú² mi³-guiu¹² V;IPFV;SG;1;PST mi²+dsiúg² mi³-mi²+dsiug³ V;IPFV;PL;1;PST neɁ¹² mi³-neɁ¹² V;IPFV;3;PST hog¹² mi³-hog¹² V;IPFV;2;PST tsø²+nióɁ¹² tsø²+nioɁ¹ V;IPFV;PL;1;PRS koɁ¹² koɁ¹² V;IPFV;SG;1;PRS méɁ² mi³-meɁ¹² V;IPFV;PL;1;PST kionɁ¹² kionɁ¹² V;IPFV;PL;1;PRS Ɂán² Ɂán² V;IRR;3;FUT ngo² ngo² V;IPFV;PL;1;PRS hne¹² han² V;IPFV;2;PRS héɁ² heɁ³ V;IPFV;PL;1;PRS Ɂéi¹² Ɂei¹³ V;IPFV;PL;1;PRS nioɁ² nioɁ² V;IPFV;3;PRS kiúɁ¹² mi³-kiúɁ¹² V;IPFV;3;PST kanɁ¹² mi³-kanɁ¹² V;IPFV;PL;1;PST hlég² mi³-hlég² V;IPFV;3;PST hmóɁ¹² mi³-hmoɁ³ V;IPFV;2;PST mi²+Ɂan¹³ mi²+Ɂan¹³ V;IPFV;SG;1;PRS bén² ben¹² V;IPFV;SG;1;PRS u¹+lian¹ u¹+lian¹ V;IRR;PL;1;FUT mi²+hniang¹ ni³ mi³-mi²+hniang³ V;IPFV;PL;1;PST kieg² kieg¹³ V;IRR;2;FUT ɁmíɁ² mi³-ɁmiɁ² V;IPFV;PL;1;PST tag¹² tøg² V;IPFV;2;PRS ténɁ¹² tenɁ³ V;IPFV;2;PRS dsen³ (kaɁ³) mi³-dsen¹³ V;IPFV;PL;1;PST hlán² hlán² V;IRR;3;FUT guiénɁ² guienɁ¹² V;IPFV;PL;1;PRS ngǿ² mi³-ngǿ² V;IPFV;3;PST kon¹² mi³-kon¹² V;IPFV;SG;1;PST tógɁ¹² mi³-tugɁ² V;IPFV;2;PST mi²+dsiúg² mi³-mi²+dsiug³ V;IPFV;2;PST tsí¹² mi³-tsi² V;IPFV;2;PST hmóɁ¹² hmoɁ³ V;IPFV;SG;1;PRS mi²+dsií¹ mi³-mi²+dsií¹ V;IPFV;3;PST Ɂí² Ɂí² V;IPFV;3;PRS iéiɁ¹² ieiɁ² V;IPFV;2;PRS Ɂog¹² mi³-Ɂog¹² V;IPFV;3;PST mi²+ngḗɁ¹ mi²+ngēɁ³ V;IPFV;PL;1;PRS húɁ² mi³-huɁ¹² V;IPFV;SG;1;PST mi²+kon¹² mi²+kon³ V;IPFV;2;PRS hnó² hno³ V;IPFV;SG;1;PRS pø²+hánɁ² pø²+hanɁ¹² V;IPFV;2;PRS Ɂé² mi³-Ɂe² V;IPFV;PL;1;PST Ɂán¹² ɁogɁ¹² Ɂan¹³ V;IRR;SG;1;FUT dsióɁ¹² hǿg³ dsioɁ¹² V;IPFV;PL;1;PRS ku² hmo¹² ku² V;IPFV;2;PRS hnéi¹² hnai¹² V;IPFV;SG;1;PRS dsēn¹² dsēn¹³ V;IRR;PL;1;FUT mi²+Ɂan¹² mi¹+Ɂan¹³ V;IRR;SG;1;FUT kuan¹² kuan¹³ V;IRR;PL;1;FUT hliánɁ² mi³-hlianɁ¹³ V;IPFV;2;PST téng² téng² V;IPFV;3;PRS Ɂnē¹² Ɂnē¹² V;IPFV;SG;1;PRS u²+nio¹³ u¹+nio³ V;IRR;2;FUT Ɂuan² mi³-Ɂuan² V;IPFV;PL;1;PST tiun¹² mi³-tøng² V;IPFV;SG;1;PST ɁóɁ¹² Ɂog¹² V;IPFV;SG;1;PRS iéiɁ¹² ieiɁ³ V;IRR;2;FUT niáng¹² niáng¹² V;IPFV;3;PRS ɁlanɁ¹² ɁlanɁ¹³ V;IPFV;SG;1;PRS kuú² mi³-kuu² V;IPFV;2;PST Ɂiá¹² mi³-Ɂia¹³ V;IPFV;SG;1;PST tian¹² tian¹³ V;IPFV;PL;1;PRS mi²+huanɁ¹² mi²+huanɁ¹³ V;IPFV;PL;1;PRS dsø²+lé² dsø³+lé² V;IRR;3;FUT siúɁ² siuɁ¹³ V;IRR;PL;1;FUT mi²+níɁ¹ mi²+níɁ¹ V;IPFV;3;PRS ku² hmo¹² ku¹ V;IRR;3;FUT Ɂnē¹² mi³-Ɂnē¹² V;IPFV;3;PST kuénɁ² kuenɁ³ V;IRR;SG;1;FUT tsáiɁ¹² huaiɁ¹³ V;IRR;2;FUT kuénɁ² kuénɁ² V;IRR;3;FUT tiu¹² tiu¹² V;IPFV;3;PRS tión² mi³-ton³ V;IPFV;SG;1;PST tø²+kanɁ¹³ tø²+kanɁ¹³ V;IPFV;2;PRS hnó² hno³ V;IRR;2;FUT bḗn² mi³-bḗn² V;IPFV;3;PST mi²+hénɁ² mi³-mi²+hénɁ² V;IPFV;3;PST ieg¹² mi³-øg¹² V;IPFV;SG;1;PST nung² nung² V;IPFV;3;PRS tsá¹² tsa¹³ V;IRR;SG;1;FUT hnǿ² hnø¹³ V;IRR;PL;1;FUT mi²+hngió¹ mi²+hngio¹³ V;IPFV;2;PRS Ɂuan¹² Ɂuan¹ V;IRR;3;FUT tan¹² tan¹² V;IPFV;SG;1;PRS lø²+liugɁ³ lø¹+liugɁ³ V;IRR;SG;1;FUT Ɂiei¹² mi³-Ɂiei¹² V;IPFV;3;PST ɁliuɁ¹² ɁliuɁ¹² V;IPFV;3;PRS kug² mi³-kug² V;IPFV;SG;1;PST hein¹² hein¹ V;IRR;3;FUT ɁaiɁ² mi³-ɁaiɁ² V;IPFV;3;PST rain¹² mi³-rain¹² V;IPFV;2;PST chiogɁ¹² mi³-chiogɁ¹² V;IPFV;3;PST guiúnɁ¹² guiunɁ¹³ V;IRR;2;FUT kánɁ¹² mi³-kánɁ¹² V;IPFV;3;PST tiu¹² mi³-tiu² V;IPFV;2;PST dsø²+togɁ¹² mi³-dsø²+togɁ¹² V;IPFV;PL;1;PST dsen³ (kaɁ³) mi³-dsen³ V;IPFV;3;PST ngo² ngo¹ V;IRR;SG;1;FUT dsoɁ² dsoɁ² V;IPFV;SG;1;PRS hḗɁ² mi³-hēɁ² V;IPFV;2;PST téiɁ² teiɁ¹² V;IPFV;2;PRS hnióɁ² hnióɁ² V;IRR;3;FUT hmáɁ² (dsǿa¹²) hmaɁ¹³ V;IPFV;PL;1;PRS Ɂán¹² ɁogɁ¹² Ɂan¹² V;IPFV;PL;1;PRS Ɂnia¹² Ɂnia¹³ V;IPFV;2;PRS tián² tian¹³ V;IRR;PL;1;FUT nióɁ¹² nióɁ¹² V;IPFV;3;PRS ɁuáiɁ¹² ɁuaiɁ¹² V;IPFV;PL;1;PRS lióg¹² lióg¹² V;IPFV;3;PRS mi²+kiíngɁ² mi³-mi²+kiingɁ³ V;IPFV;2;PST hnia¹² mi³-hnia¹² V;IPFV;3;PST hai¹² hei³ V;IRR;PL;1;FUT tanɁ² tanɁ² V;IPFV;PL;1;PRS kieng¹² kieng² V;IPFV;PL;1;PRS huánɁ¹² mi³-huanɁ¹² V;IPFV;PL;1;PST ɁuanɁ¹² ɁuanɁ¹² V;IPFV;2;PRS huen¹² huen¹² V;IPFV;3;PRS mi²+dsøg¹² mi¹+dsøg¹³ V;IRR;SG;1;FUT guiú² mi³-guiu¹² V;IPFV;2;PST dsiog¹² mi³-dsiog³ V;IPFV;PL;1;PST rain¹² rain¹² V;IPFV;SG;1;PRS rain¹² rain¹ V;IRR;3;FUT kø¹² mi³-kø¹² V;IPFV;SG;1;PST kiang¹² kiang¹³ V;IRR;PL;1;FUT mi²+huanɁ¹² mi²+huanɁ¹³ V;IPFV;SG;1;PRS gúg² gug¹² V;IPFV;SG;1;PRS Ɂéi¹² mi³-Ɂéi¹² V;IPFV;3;PST hiúg² hiug³ V;IRR;PL;1;FUT mi²+gǿg¹ mi²+gøg¹ V;IPFV;2;PRS ɁuanɁ¹² ɁuanɁ¹² V;IRR;SG;1;FUT mi²+gug¹ mi²+gug¹ V;IPFV;3;PRS tsón² mi³-tson³ V;IPFV;SG;1;PST ti²+dsøa¹² mi³-ti²+dsøa² V;IPFV;2;PST guianɁ¹² guianɁ¹ V;IRR;3;FUT tsánɁ² tsánɁ² V;IPFV;3;PRS mi²+liág¹ mi³+liág¹ V;IRR;3;FUT tso¹² ho¹³ V;IRR;SG;1;FUT ɁagɁ² mi³-ɁagɁ² V;IPFV;3;PST høn¹² høn¹ V;IRR;3;FUT chiúg² chiug¹³ V;IRR;2;FUT chi²+kián² mi³-chi²+kian³ V;IPFV;SG;1;PST Ɂii² mi³-Ɂii² V;IPFV;3;PST kuénɁ² mi³-kuenɁ³ V;IPFV;PL;1;PST kuø¹² kuø² V;IPFV;2;PRS dsiánɁ² dsiánɁ² V;IRR;3;FUT Ɂien² Ɂien² V;IPFV;2;PRS køgɁ² køgɁ¹² V;IPFV;PL;1;PRS mi²+hǿ² mi³-mi²+hø³ V;IPFV;PL;1;PST nei¹² nei³ V;IPFV;2;PRS nioɁ² nioɁ² V;IPFV;SG;1;PRS dsie¹² dsie³ V;IRR;2;FUT Ɂé² Ɂe¹² V;IPFV;PL;1;PRS tsø²+nióɁ¹² tsø²+nioɁ¹ V;IPFV;SG;1;PRS Ɂien¹² mi³-Ɂien¹² V;IPFV;SG;1;PST dsǿɁ² mi³-dsǿɁ² V;IPFV;3;PST ton² ton² V;IPFV;2;PRS ɁlanɁ¹² mi³-ɁlanɁ¹² V;IPFV;3;PST tei¹² mi³-tei² V;IPFV;PL;1;PST mi²+Ɂnio¹ mi²+Ɂnio¹ V;IPFV;2;PRS len¹² dsǿa¹² len¹² V;IPFV;PL;1;PRS hénɁ¹² mi³-henɁ¹³ V;IPFV;PL;1;PST liág¹ liág¹ V;IPFV;3;PRS chiínɁ² mi³-hmaɁ² V;IPFV;2;PST tsēn¹² tsēn¹³ V;IRR;SG;1;FUT Ɂméi¹² Ɂméi¹ V;IRR;3;FUT Ɂø²+tsúgɁ² Ɂø²+tsogɁ² V;IPFV;SG;1;PRS siúg² siúg² V;IPFV;3;PRS ɁuanɁ¹² mi³-ɁuanɁ¹² V;IPFV;SG;1;PST hlég² mi³-hleg² V;IPFV;SG;1;PST tsénɁ² mi³-tsenɁ¹² V;IPFV;PL;1;PST kiúɁ¹² kiuɁ³ V;IRR;PL;1;FUT ɁlianɁ¹² mi³-ɁlianɁ¹² V;IPFV;SG;1;PST tǿɁ² tǿɁ² V;IPFV;3;PRS ngøɁ¹² ngøɁ³ V;IPFV;PL;1;PRS ɁmiɁ¹² mi³-ɁmiɁ³ V;IPFV;PL;1;PST tsø²+nióɁ¹² tsø²+nioɁ¹ V;IPFV;2;PRS tian¹² tian¹² V;IPFV;2;PRS Ɂngieng¹² Ɂngieng¹ V;IRR;3;FUT kán² guiing² mi³-kan¹² V;IPFV;SG;1;PST hniá¹² mi³-hnia¹² V;IPFV;PL;1;PST kēnɁ¹² kēnɁ¹ V;IRR;3;FUT Ɂio¹² Ɂio¹³ V;IRR;SG;1;FUT sianɁ¹² sianɁ¹² V;IPFV;3;PRS Ɂén² Ɂen¹² V;IPFV;2;PRS ɁuáiɁ¹² ɁuaiɁ¹³ V;IRR;SG;1;FUT hngia¹² mi³-hngia¹³ V;IPFV;PL;1;PST Ɂien¹² Ɂien¹² V;IPFV;2;PRS mi²+dsíg² mi³-mi²+dsig³ V;IPFV;PL;1;PST huánɁ² huánɁ² V;IPFV;3;PRS u²+lei² u³+lei² V;IRR;3;FUT tanɁ² mi³-tanɁ² V;IPFV;3;PST ɁéɁ² ɁeɁ² V;IPFV;2;PRS Ɂlan¹² mi³-Ɂlan¹² V;IPFV;3;PST Ɂnai¹² Ɂnøi³ V;IRR;PL;1;FUT mi²+Ɂog¹³ mi³-mi²+Ɂog¹³ V;IPFV;3;PST hnóɁ² hnoɁ¹³ V;IRR;2;FUT hénɁ² henɁ³ V;IPFV;2;PRS tø²+ɁénɁ¹² mi³-tø²+ɁenɁ³ V;IPFV;2;PST Ɂéi¹² Ɂei¹³ V;IPFV;SG;1;PRS huú² huø¹² V;IPFV;SG;1;PRS méɁ² meɁ¹³ V;IRR;PL;1;FUT tsø²+kuenɁ¹² tsø²+kuenɁ¹² V;IPFV;3;PRS mi²+liág¹ mi³-mi²+liag¹³ V;IPFV;SG;1;PST mḗɁ² mēɁ³ V;IRR;SG;1;FUT siúɁ² mi³-siuɁ¹² V;IPFV;PL;1;PST tsǿng² tsøng¹³ V;IRR;2;FUT hián² hian¹³ V;IRR;2;FUT kiiɁ² kaɁ¹³ V;IRR;SG;1;FUT chi²+dsén² chi³+dsén² V;IRR;3;FUT kii²+tág¹² kii²+tag² V;IPFV;PL;1;PRS hngióɁ¹² hngióɁ¹² V;IPFV;3;PRS uǿnɁ² uǿnɁ² V;IPFV;3;PRS hinɁ³ hinɁ³ V;IPFV;2;PRS kø²+hinɁ¹² kø³+hinɁ¹² V;IRR;3;FUT tø²+gugɁ¹² mi³-tø²+gugɁ¹² V;IPFV;3;PST Ɂma¹² Ɂma¹² V;IPFV;2;PRS kii²+túg² kii¹+tog³ V;IRR;SG;1;FUT dsiég¹² dsiég¹² V;IPFV;3;PRS ku²+guénɁ² ku¹+guenɁ³ V;IRR;2;FUT hiég² mi³-hiég² V;IPFV;3;PST mi²+kán¹² mi²+kan³ V;IPFV;PL;1;PRS huen¹² huen¹ V;IRR;3;FUT Ɂio¹² Ɂieg² V;IPFV;PL;1;PRS tsøi¹² tsøi¹³ V;IRR;PL;1;FUT tsen¹² mi³-tsēn³ V;IPFV;2;PST siog² siog³ V;IRR;SG;1;FUT chiógɁ² ( hmøi²) chiógɁ² V;IRR;3;FUT tson¹² tson¹ V;IRR;PL;1;FUT ɁliágɁ¹² mi³-ɁliagɁ² V;IPFV;2;PST ɁlieɁ¹² ɁlieɁ¹³ V;IRR;SG;1;FUT chiag¹² chiag¹ V;IRR;3;FUT niá¹² nia¹² V;IPFV;SG;1;PRS dsii²+lé² mi³-dsii²+lé² V;IPFV;3;PST mi²+kuen¹² mi³-mi²+kuen¹³ V;IPFV;2;PST ngǿi² ngai¹² V;IPFV;2;PRS hngióɁ² hngioɁ³ V;IPFV;PL;1;PRS mi²+hngiáng¹ mi¹+hngiang¹³ V;IRR;2;FUT dsian¹² dsian¹² V;IPFV;3;PRS guái² guái² V;IRR;3;FUT mi²+dsēn¹² mi²+dsēn¹³ V;IPFV;PL;1;PRS hiég² hiég² V;IRR;3;FUT kēn² mi³-kēn¹² V;IPFV;3;PST køgɁ² mi³-køgɁ¹² V;IPFV;SG;1;PST hén² hen¹³ V;IRR;PL;1;FUT ngioɁ¹² mi³-ngioɁ² V;IPFV;PL;1;PST ngēɁ² ngēɁ¹ V;IRR;SG;1;FUT tø²+dsḗn³ tø¹+dsēn³ V;IRR;PL;1;FUT mi²+tsḗn¹ mi³-mi²+tsḗn¹ V;IPFV;3;PST Ɂngio¹² Ɂngio¹² V;IPFV;3;PRS héi² héi² V;IPFV;3;PRS lǿ² lǿ² V;IPFV;3;PRS Ɂngio¹² mi³-Ɂngio¹² V;IPFV;2;PST chiúg² mi³-chiug¹² V;IPFV;2;PST tsø²+nióɁ² tsø²+nioɁ³ V;IPFV;2;PRS mi²+rø¹² mi³+rø¹² V;IRR;3;FUT mi²+hlēnɁ¹ mi¹+hlēnɁ³ V;IRR;SG;1;FUT hlǿ² hlø¹³ V;IRR;2;FUT hngiú² mi³-hngiu¹² V;IPFV;SG;1;PST tsog¹² tsog¹³ V;IRR;PL;1;FUT kán² guiing² mi³-kan¹² V;IPFV;2;PST ɁlianɁ¹² ɁlianɁ¹² V;IPFV;PL;1;PRS ɁlieɁ¹² mi³-ɁlieɁ¹² V;IPFV;SG;1;PST ɁoɁ¹² ɁoɁ¹² V;IPFV;3;PRS kieng¹² kieng³ V;IRR;2;FUT ngē¹² ngē¹³ V;IRR;2;FUT ɁliágɁ¹² ɁliagɁ³ V;IRR;PL;1;FUT mi²+ténɁ² mi²+ténɁ² V;IPFV;3;PRS mi²+tég² mi¹+teg³ V;IRR;SG;1;FUT hiúgɁ² hiugɁ³ V;IRR;2;FUT hogɁ¹² hogɁ¹² V;IPFV;2;PRS kiog¹² kog³ V;IRR;SG;1;FUT Ɂøin¹² Ɂøin¹² V;IPFV;PL;1;PRS tsenɁ¹² mi³-tsenɁ² V;IPFV;3;PST ɁøɁ¹² mi³-ɁøɁ² V;IPFV;2;PST hián² hian² V;IPFV;PL;1;PRS lá¹² lá¹² V;IPFV;3;PRS mi²+hog¹² mi²+hog¹² V;IPFV;3;PRS guiúg² guiug¹² V;IPFV;PL;1;PRS ti²+li¹ ti¹+li³ V;IRR;PL;1;FUT guuɁ¹² mi³-guuɁ² V;IPFV;SG;1;PST ha¹² ha¹³ V;IPFV;SG;1;PRS hiégɁ¹² mi³-hiegɁ² V;IPFV;PL;1;PST hein¹² hein¹² V;IPFV;3;PRS Ɂai¹² Ɂai¹² V;IPFV;3;PRS hngēɁ¹² hngēɁ² V;IPFV;2;PRS rǿnɁ¹² rønɁ³ V;IPFV;2;PRS chio¹² chieg² V;IPFV;2;PRS ti²+dsǿ² ti¹+dsø³ V;IRR;SG;1;FUT kanɁ¹² kanɁ¹² V;IPFV;SG;1;PRS ngie¹² mi³-ngie¹³ V;IPFV;2;PST búɁ² mi³-buɁ¹² V;IPFV;PL;1;PST hog¹² hog¹ V;IRR;2;FUT kuan¹² mi³-kuan¹² V;IPFV;PL;1;PST hiégɁ¹² hiegɁ¹² V;IPFV;SG;1;PRS ieg¹² mi³-øg² V;IPFV;2;PST mi²+Ɂnio¹ mi³+Ɂnio¹ V;IRR;3;FUT ku²+hmáɁ² ku²+hmaɁ¹² V;IPFV;2;PRS mi²+kiín¹ mi¹+kiin³ V;IRR;SG;1;FUT sieg¹² sieg¹ V;IRR;3;FUT mi²+kuen¹² mi²+kuen¹³ V;IPFV;SG;1;PRS Ɂngio¹² Ɂngio¹ V;IRR;3;FUT ton² mi³-ton² V;IPFV;2;PST hnáɁ¹² hnaɁ¹³ V;IRR;2;FUT tøng² téng¹ V;IRR;3;FUT ɁlianɁ¹² ɁlianɁ¹ V;IRR;3;FUT hliúg² (lag³ dsi³) mi³-hliug¹² V;IPFV;2;PST tan¹² tan¹² V;IPFV;2;PRS tóɁ¹² mi³-toɁ¹² V;IPFV;SG;1;PST méɁ² meɁ¹² V;IPFV;2;PRS lø²+liúɁ² lø¹+liuɁ¹³ V;IRR;2;FUT siog¹² mi³-siog¹² V;IPFV;3;PST kiúgɁ² mi³-kiúgɁ² V;IPFV;3;PST nio¹² nio¹ V;IRR;3;FUT hmǿɁ¹² hmøɁ¹³ V;IRR;SG;1;FUT chi²+ngiú² chi³+ngiú² V;IRR;3;FUT hén² hen² V;IPFV;2;PRS Ɂán¹² ɁogɁ¹² mi³-Ɂan¹² V;IPFV;SG;1;PST mi²+kionɁ¹ mi³-mi²+kionɁ¹ V;IPFV;3;PST hogɁ¹² hogɁ¹² V;IRR;3;FUT ɁiíɁ² mi³-ɁiiɁ¹² V;IPFV;2;PST huánɁ² mi³-huanɁ¹² V;IPFV;PL;1;PST hne¹² hnøa² V;IPFV;2;PRS héɁ² mi³-héɁ² V;IPFV;3;PST hágɁ¹² hágɁ¹² V;IPFV;3;PRS togɁ¹² mi³-togɁ² V;IPFV;SG;1;PST Ɂnē¹² mi³-Ɂnē¹² V;IPFV;PL;1;PST guǿn¹² guøn¹² V;IPFV;PL;1;PRS ku² hmo¹² ku¹² V;IPFV;3;PRS chiag¹² chiag² V;IPFV;PL;1;PRS tsón¹² tson¹ V;IRR;2;FUT ié² mi³-ié² V;IPFV;3;PST hai¹² hei² V;IPFV;PL;1;PRS hlég² hleg² V;IRR;SG;1;FUT kiúgɁ² kiugɁ³ V;IRR;PL;1;FUT kuøin¹² kuøin¹² V;IPFV;PL;1;PRS ha²+Ɂan³ ha¹+Ɂan³ V;IRR;SG;1;FUT mi²+tsḗn¹ mi²+tsēn¹³ V;IPFV;2;PRS siúgɁ² siugɁ² V;IPFV;SG;1;PRS hngióɁ² hngióɁ² V;IPFV;3;PRS guiú² mi³-guiú² V;IPFV;3;PST ɁóɁ¹² ɁóɁ¹² V;IPFV;3;PRS høn¹² mi³-hin² V;IPFV;PL;1;PST chiunɁ¹² mi³-chiunɁ² V;IPFV;PL;1;PST mi²+gag¹² mi³-mi²+gag¹³ V;IPFV;SG;1;PST hḗnɁ² hēnɁ¹³ V;IPFV;PL;1;PRS hai¹² mi³-hei² V;IPFV;PL;1;PST tug mi³-tug¹² V;IPFV;2;PST ti²+dso¹ ti²+dso¹ V;IPFV;3;PRS Ɂiog² mi³-Ɂiog² V;IPFV;SG;1;PST hmo¹² mi³-hmo¹² V;IPFV;3;PST chiínɁ² chiínɁ² V;IRR;3;FUT hngiáɁ² hngiaɁ¹³ V;IRR;2;FUT se¹² mi³-se¹² V;IPFV;3;PST chiúgɁ² chiugɁ³ V;IPFV;SG;1;PRS kiúɁ¹² kiuɁ¹² V;IPFV;SG;1;PRS chi²+méɁ² chi²+meɁ¹² V;IPFV;SG;1;PRS ɁéɁ² ɁéɁ² V;IPFV;3;PRS Ɂei¹² Ɂei¹² V;IPFV;3;PRS ku²+guénɁ² ku²+guenɁ³ V;IPFV;SG;1;PRS Ɂé² Ɂe¹² V;IPFV;SG;1;PRS hngióɁ² mi³-hngioɁ³ V;IPFV;PL;1;PST mi²+hniang¹ dsǿa¹² mi¹+hniang³ V;IRR;2;FUT tión² tion³ V;IRR;2;FUT Ɂén² mi³-Ɂen¹² V;IPFV;PL;1;PST kanɁ¹² kanɁ¹² V;IPFV;PL;1;PRS guiú² guiu¹² V;IPFV;SG;1;PRS ié² ie¹³ V;IRR;PL;1;FUT niɁ¹² niɁ¹² V;IPFV;3;PRS hmǿɁ¹² mi³-hmøɁ¹² V;IPFV;SG;1;PST Ɂian² Ɂian¹ V;IRR;PL;1;FUT tø²+dsǿ³ tø²+dsǿ³ V;IPFV;3;PRS mi²+Ɂlí¹ mi²+Ɂlí¹ V;IPFV;3;PRS kúgɁ² mi³-kogɁ³ V;IPFV;2;PST hmḗɁ² mi³-hmēɁ³ V;IPFV;PL;1;PST chi²+ngiú² mi³-chi²+ngiu³ V;IPFV;SG;1;PST niáng¹² niáng¹ V;IRR;3;FUT mi²+gan¹ mi³-mi²+gan¹ V;IPFV;SG;1;PST guiúnɁ¹² guionɁ¹³ V;IPFV;PL;1;PRS ɁmíɁ² ɁmíɁ² V;IPFV;3;PRS ti²+dsiog¹ mi³-ti²+dsiog³ V;IPFV;2;PST ɁuanɁ¹² ɁuanɁ¹² V;IPFV;3;PRS kién¹² kien¹³ V;IRR;SG;1;FUT guiónɁ² guionɁ³ V;IRR;2;FUT hnaiɁ¹² mi³-hnaiɁ³ V;IPFV;2;PST lø²+liugɁ³ lø¹+liugɁ³ V;IRR;PL;1;FUT ɁéɁ¹² ɁeɁ¹³ V;IRR;2;FUT ɁéɁ² ɁeɁ² V;IPFV;PL;1;PRS chiúg² chiug¹² V;IPFV;PL;1;PRS ti²+dsøa¹² ti¹+dsøa³ V;IRR;PL;1;FUT ngó¹² ngó¹ V;IRR;3;FUT kǿn² kǿn² V;IRR;3;FUT ɁiánɁ² ɁianɁ¹³ V;IRR;SG;1;FUT lø²+liugɁ³ mi³-lø²+liugɁ³ V;IPFV;SG;1;PST kanɁ¹² kanɁ¹² V;IPFV;3;PRS Ɂian² Ɂian¹ V;IRR;SG;1;FUT chiáng¹² mi³-chiang² V;IPFV;2;PST kon¹² kon¹ V;IRR;SG;1;FUT tanɁ¹² tianɁ² V;IPFV;PL;1;PRS kánɁ¹² mi³-kanɁ¹³ V;IPFV;PL;1;PST tieɁ¹² taɁ³ V;IRR;2;FUT guiúg² mi³-guiúg² V;IPFV;3;PST lø²+liúɁ² mi³-lø²+liuɁ¹² V;IPFV;2;PST mi²+hínɁ² mi³+hínɁ² V;IRR;3;FUT dséi¹² dséi¹² V;IPFV;3;PRS dsø²+lei¹ dsø³+lei¹ V;IRR;3;FUT mi²+kionɁ¹ mi²+kionɁ¹ V;IPFV;3;PRS kiiɁ² kaɁ¹³ V;IRR;2;FUT tsen¹² tsēn³ V;IPFV;SG;1;PRS chiógɁ² ( hmøi²) chiogɁ³ V;IPFV;PL;1;PRS guiúg² guiug¹² V;IPFV;2;PRS mi²+kánɁ² mi³+kánɁ² V;IRR;3;FUT mi²+Ɂan¹³ mi¹+Ɂan¹³ V;IRR;PL;1;FUT tsø²+kuønɁ¹² mi³-tsø²+kuønɁ¹² V;IPFV;SG;1;PST tsánɁ² mi³-tsanɁ¹² V;IPFV;2;PST ɁuanɁ¹² ɁuaiɁ¹² V;IRR;PL;1;FUT guión² guion³ V;IRR;PL;1;FUT ti²+dsiog¹ ti²+dsiog³ V;IPFV;2;PRS hénɁ² mi³-henɁ¹³ V;IPFV;PL;1;PST sieg¹² mi³-sieg¹² V;IPFV;3;PST mi²+gug¹ mi³-mi²+gug¹ V;IPFV;3;PST chiúgɁ² chiugɁ³ V;IPFV;PL;1;PRS togɁ¹² mi³-togɁ¹² V;IPFV;3;PST tsáiɁ¹² tseiɁ¹³ V;IRR;PL;1;FUT guuɁ¹² guuɁ³ V;IRR;SG;1;FUT tiúg² tiug¹³ V;IRR;2;FUT tsen¹² tsen¹ V;IRR;3;FUT tø²+dsǿ³ mi³-tø²+dsǿ³ V;IPFV;3;PST hniuɁ² hniang² V;IPFV;PL;1;PRS hian¹² mi³-hian¹² V;IPFV;3;PST guieng¹² mi³-guieng² V;IPFV;PL;1;PST ku²+guénɁ² ku¹+guenɁ³ V;IRR;PL;1;FUT hiugɁ¹² mi³-hiugɁ³ V;IPFV;2;PST tsø²+kuønɁ¹² mi³-tsø²+kuønɁ¹² V;IPFV;PL;1;PST guønɁ¹² guønɁ¹² V;IPFV;2;PRS kán² guiing² kan¹² V;IPFV;SG;1;PRS Ɂen¹³ Ɂen¹³ V;IPFV;SG;1;PRS kión² mi³-kion³ V;IPFV;2;PST kanɁ¹² kanɁ¹³ V;IRR;2;FUT lieɁ¹² laɁ³ V;IPFV;SG;1;PRS ngiéɁ¹² ngieɁ³ V;IRR;PL;1;FUT hniang² hniang¹ V;IRR;SG;1;FUT hløa¹² hløa¹² V;IPFV;3;PRS tian¹ tian¹ V;IPFV;3;PRS dsii²+lian¹ mi³-dsii²+lian¹ V;IPFV;PL;1;PST huú² huú² V;IPFV;3;PRS hlǿ² mi³-hlǿ² V;IPFV;3;PST tsø²+han¹² tsø²+han¹² V;IPFV;3;PRS uǿi² mi³-uøi¹² V;IPFV;PL;1;PST nǿɁ² mi³-nǿɁ² V;IPFV;3;PST dsø²+huen¹³ dsø²+huen¹³ V;IPFV;SG;1;PRS mi²+kán¹² mi³-mi²+kan³ V;IPFV;SG;1;PST Ɂán² Ɂan² V;IPFV;2;PRS møa¹² møa² V;IPFV;PL;1;PRS hiúɁ² mi³-hioɁ³ V;IPFV;SG;1;PST kii²+tág¹² kii¹+tag¹³ V;IRR;SG;1;FUT kióɁ¹² mi³-kioɁ³ V;IPFV;SG;1;PST háng¹² hang³ V;IPFV;2;PRS tsénɁ² mi³-tsēnɁ³ V;IPFV;2;PST tsǿng² tsøng¹³ V;IRR;PL;1;FUT dsúgɁ² mi³-dsugɁ³ V;IPFV;2;PST mi²+hniang¹ ni³ mi²+hniang¹ V;IPFV;3;PRS mi²+gǿg¹ mi³-mi²+gøg¹ V;IPFV;2;PST ɁuøɁ¹² mi³-ɁuøɁ¹² V;IPFV;3;PST hlég² mi³-hleg² V;IPFV;2;PST dsen¹² dsen¹³ V;IRR;2;FUT ɁnóɁ¹² dsí² ɁnoɁ¹ V;IRR;PL;1;FUT guiég¹² guieg¹² V;IPFV;SG;1;PRS ieg¹² ieg¹² V;IPFV;3;PRS len¹² len¹² V;IPFV;2;PRS bḗn² mi³-bēn¹² V;IPFV;SG;1;PST ha²+kién¹³ mi³-ha²+kién¹³ V;IPFV;3;PST mi²+hniang¹ ni³ mi¹+hniang³ V;IRR;SG;1;FUT Ɂio¹² Ɂio¹² V;IPFV;3;PRS bén² ben¹³ V;IRR;2;FUT kiéɁ¹² mi³-kieɁ³ V;IPFV;PL;1;PST guiónɁ² mi³-guionɁ³ V;IPFV;2;PST kuǿɁ¹² kuøɁ¹³ V;IRR;SG;1;FUT nioɁ² mi³-nioɁ² V;IPFV;2;PST hénɁ¹² henɁ¹³ V;IPFV;2;PRS hogɁ¹² mi³-hogɁ¹² V;IPFV;2;PST mi²+kánɁ² mi¹+kanɁ³ V;IRR;PL;1;FUT lóɁ¹² mi³-lioɁ¹² V;IPFV;PL;1;PST hnaiɁ¹² mi³-hnaiɁ³ V;IPFV;SG;1;PST hliánɁ² hlianɁ¹³ V;IRR;2;FUT Ɂia¹² Ɂia¹² V;IPFV;PL;1;PRS hiúgɁ² mi³-hiugɁ³ V;IPFV;SG;1;PST ténɁ¹² tenɁ³ V;IPFV;SG;1;PRS ɁmiɁ¹² mi³-ɁmiɁ¹² V;IPFV;3;PST ti²+dsǿ² ti¹+dsø³ V;IRR;PL;1;FUT Ɂméi¹² mi³-Ɂmei³ V;IPFV;SG;1;PST ɁēnɁ¹² ɁēnɁ¹² V;IRR;3;FUT iaɁ¹² iaɁ³ V;IRR;SG;1;FUT gǿi¹² mi³-guiig² V;IPFV;PL;1;PST tiú² tiu¹³ V;IRR;PL;1;FUT nang¹² neng² V;IPFV;PL;1;PRS ti²+dsøa¹² ti¹+dsøa³ V;IRR;2;FUT mi²+dsiúg² mi³-mi²+dsiug³ V;IPFV;SG;1;PST hlø² hlø² V;IPFV;3;PRS Ɂian¹² Ɂian¹² V;IRR;2;FUT chi²+ngió² mi³-chi²+ngio³ V;IPFV;2;PST ɁóɁ¹² mi³-ɁóɁ¹² V;IPFV;3;PST ieg¹² ieg¹ V;IRR;3;FUT Ɂian¹² mi³-Ɂian¹² V;IPFV;3;PST kian¹² kian¹³ V;IRR;2;FUT ti²+dsǿ² ti²+dsǿ² V;IPFV;3;PRS guenɁ¹² guenɁ² V;IPFV;2;PRS mi²+tég² mi²+teg³ V;IPFV;2;PRS kienɁ¹² mi³-kienɁ¹² V;IPFV;3;PST ɁóɁ¹² Ɂog¹³ V;IRR;SG;1;FUT tieɁ¹² mi³-taɁ¹² V;IPFV;SG;1;PST méɁ² mi³-meɁ¹² V;IPFV;2;PST ɁagɁ² ɁagɁ³ V;IRR;PL;1;FUT dsii²+lian¹ dsii²+lian¹ V;IPFV;3;PRS bø²+lḗnɁ² bø¹+lēnɁ³ V;IRR;2;FUT chiag¹² chiag¹³ V;IRR;SG;1;FUT ngǿi² ngai¹² V;IPFV;SG;1;PRS Ɂen¹³ Ɂen¹³ V;IPFV;2;PRS mi²+hniang¹ ni³ mi¹+hniang³ V;IRR;PL;1;FUT ɁliuɁ¹² ɁliuɁ² V;IPFV;PL;1;PRS hngia¹² hngia¹ V;IRR;3;FUT mi²+kionɁ¹ mi³-mi²+kionɁ¹³ V;IPFV;2;PST siúɁ² siuɁ¹³ V;IRR;SG;1;FUT Ɂuán² Ɂuán² V;IPFV;3;PRS ti²+líɁ¹ mi³-ti²+liɁ¹ V;IPFV;PL;1;PST tieɁ¹² mi³-taɁ² V;IPFV;2;PST mi²+gug¹ mi³+gug¹ V;IRR;3;FUT tanɁ¹² tanɁ¹² V;IPFV;3;PRS ián² mi³-ian¹² V;IPFV;PL;1;PST ɁúgɁ² ɁúgɁ² V;IPFV;3;PRS niá² niá² V;IRR;3;FUT hnia¹² hnia¹ V;IRR;2;FUT tóɁ¹² mi³-tioɁ¹² V;IPFV;PL;1;PST hiúɁ² hioɁ³ V;IPFV;2;PRS u²+nio¹³ u²+nio³ V;IPFV;2;PRS guiénɁ² mi³-guienɁ¹² V;IPFV;2;PST lúg² mi³-lug² V;IPFV;2;PST ngøɁ¹² mi³-ngøɁ³ V;IPFV;2;PST Ɂø²+tsóɁ¹² Ɂø¹+tsoɁ¹³ V;IRR;SG;1;FUT niá¹² mi³-nia¹² V;IPFV;2;PST ɁmíɁ² ɁmíɁ² V;IRR;3;FUT mi²+ɁmaɁ¹³ mi²+ɁmaɁ¹³ V;IPFV;3;PRS mi²+tián² (dsǿa¹²) mi²+tian³ V;IPFV;2;PRS chi²+dsí² chi²+dsi³ V;IPFV;2;PRS uǿi² uøi² V;IPFV;2;PRS lēɁ² mi³-lēɁ³ V;IPFV;SG;1;PST ɁmoɁ¹² ɁmoɁ² V;IRR;3;FUT hánɁ¹² hánɁ¹² V;IPFV;3;PRS nió² nió² V;IRR;3;FUT chiog¹² chiog¹² V;IPFV;SG;1;PRS tsénɁ² tsenɁ³ V;IPFV;PL;1;PRS tieɁ¹² tieɁ² V;IPFV;PL;1;PRS kien¹² kien¹³ V;IRR;PL;1;FUT hógɁ¹² mi³-guiogɁ¹² V;IPFV;SG;1;PST nēɁ¹² nēɁ¹ V;IRR;3;FUT kieg² mi³-kieg¹² V;IPFV;2;PST tsen¹² mi³-tsen³ V;IPFV;PL;1;PST hian¹² han¹³ V;IRR;2;FUT hógɁ¹² hógɁ¹ V;IRR;3;FUT hǿɁ² høɁ¹² V;IPFV;SG;1;PRS kií¹² kií¹ V;IRR;3;FUT ɁøɁ¹² ɁøɁ¹² V;IPFV;3;PRS hǿa¹² høa² V;IPFV;PL;1;PRS Ɂiog¹² Ɂog¹² V;IPFV;2;PRS gḗɁ² gēɁ² V;IPFV;2;PRS hngieng¹² hngieng³ V;IPFV;2;PRS kión² kión² V;IPFV;3;PRS mi²+ténɁ² mi³-mi²+tenɁ³ V;IPFV;PL;1;PST hínɁ¹² mi³-hinɁ³ V;IPFV;2;PST kuú² kuu² V;IPFV;2;PRS dsiog¹² mi³-dsiog³ V;IPFV;SG;1;PST káiɁ¹² mi³-kaiɁ¹² V;IPFV;SG;1;PST hliúg² (lag³ dsi³) hliúg² V;IRR;3;FUT neɁ¹² mi³-neɁ³ V;IPFV;SG;1;PST hḗn² hēn¹² V;IPFV;2;PRS u¹+lén² u²+len¹³ V;IPFV;PL;1;PRS tsanɁ¹² huanɁ³ V;IRR;2;FUT ɁnóɁ¹² dsí² ɁnoɁ¹ V;IRR;SG;1;FUT hliúg² (lag³ dsi³) hliug¹² V;IPFV;PL;1;PRS hug² hug² V;IPFV;SG;1;PRS mi²+chian¹² mi²+chian¹² V;IPFV;3;PRS ɁǿnɁ² gøɁ¹² V;IPFV;SG;1;PRS kø²+hinɁ¹² mi³-kø²+hinɁ³ V;IPFV;PL;1;PST chiog¹² chiog¹³ V;IRR;2;FUT hiég² hieg¹² V;IPFV;PL;1;PRS Ɂlí² mi³-Ɂli¹² V;IPFV;PL;1;PST ti²+li¹ ti²+li³ V;IPFV;PL;1;PRS tión² mi³-ton² V;IPFV;SG;1;PST bá² ba³ V;IRR;2;FUT Ɂí² mi³-Ɂí² V;IPFV;3;PST mi²+hngió¹ mi¹+hngio¹³ V;IRR;SG;1;FUT guái² guai¹² V;IPFV;PL;1;PRS Ɂio¹² Ɂøg² V;IPFV;2;PRS káiɁ¹² kaiɁ¹³ V;IRR;SG;1;FUT kugɁ¹² kugɁ¹² V;IPFV;3;PRS mi²+Ɂliúg² mi¹+Ɂliug³ V;IRR;SG;1;FUT Ɂøa¹² Ɂøa³ V;IRR;PL;1;FUT hiúgɁ² hiugɁ³ V;IPFV;SG;1;PRS kánɁ² kánɁ² V;IRR;3;FUT hnó² mi³-hnó² V;IPFV;3;PST len¹² dsǿa¹² len¹ V;IRR;SG;1;FUT ɁéɁ¹² ɁeɁ¹³ V;IRR;SG;1;FUT ha¹² ha¹ V;IRR;3;FUT tsíɁ¹² tsiɁ³ V;IPFV;2;PRS dsén² mi³-dsen² V;IPFV;SG;1;PST kágɁ¹² kágɁ¹ V;IRR;3;FUT lóɁ¹² lóɁ¹² V;IPFV;3;PRS mi²+lei¹³ mi²+lei¹³ V;IPFV;SG;1;PRS ngo² ngo² V;IPFV;2;PRS Ɂé² mi³-Ɂe² V;IPFV;2;PST dsánɁ¹² mi³-dsanɁ¹² V;IPFV;PL;1;PST tsén² mi³-tsen³ V;IPFV;SG;1;PST tsǿng² mi³-tsøng¹² V;IPFV;2;PST mē¹² mē¹² V;IPFV;2;PRS mi²+tián² (dsǿa¹²) mi²+tian³ V;IPFV;PL;1;PRS mi²+hlēnɁ¹ mi³+hlēnɁ¹ V;IRR;3;FUT hnéi¹² hnai² V;IPFV;2;PRS mi²+hog¹² mi³-mi²+hog¹² V;IPFV;3;PST Ɂien² Ɂien¹ V;IRR;3;FUT bø²+lḗnɁ² mi³-bø²+lḗnɁ² V;IPFV;3;PST hḗɁ² hēɁ² V;IRR;2;FUT hnḗ¹² hnē¹² V;IPFV;SG;1;PRS kug² kug¹ V;IRR;2;FUT siúgɁ² siugɁ² V;IRR;PL;1;FUT ɁngióɁ¹² ɁngioɁ³ V;IRR;SG;1;FUT ngøa¹² mi³-ngøa¹² V;IPFV;3;PST ɁlanɁ¹² ɁlanɁ¹ V;IRR;3;FUT chi²+hné¹ mi³-chi²+hné¹ V;IPFV;3;PST lanɁ¹² lanɁ¹ V;IRR;SG;1;FUT tsí¹² mi³-tsi² V;IPFV;PL;1;PST hḗnɁ² hēnɁ¹³ V;IPFV;2;PRS mi²+dsiúg² mi²+dsiug³ V;IPFV;SG;1;PRS huu¹² huu¹³ V;IRR;SG;1;FUT ɁmiɁ¹² mi³-ɁmiɁ³ V;IPFV;2;PST Ɂon¹² Ɂøng³ V;IRR;2;FUT ténɁ¹² mi³-tenɁ¹³ V;IPFV;PL;1;PST Ɂiog² Ɂiog² V;IPFV;SG;1;PRS køɁ³ (hmai³) kēɁ³ V;IPFV;2;PRS Ɂa¹² Ɂa¹ V;IRR;3;FUT chi²+dsén² mi³-chi²+dsen¹³ V;IPFV;2;PST Ɂen¹² mi³-Ɂen¹² V;IPFV;PL;1;PST tsog¹² tsog¹³ V;IRR;SG;1;FUT bí² bi¹² V;IPFV;SG;1;PRS køin² køin¹ V;IRR;3;FUT hǿgɁ² hiágɁ¹ V;IRR;3;FUT ɁagɁ² ɁagɁ³ V;IRR;SG;1;FUT rón² ron² V;IPFV;2;PRS guái² guai¹³ V;IRR;PL;1;FUT mi²+ɁḗɁ² mi³+ɁḗɁ² V;IRR;3;FUT togɁ¹² togɁ² V;IPFV;SG;1;PRS Ɂúg² Ɂug¹³ V;IRR;2;FUT chióg¹² chiog³ V;IRR;2;FUT mi²+ténɁ² mi³-mi²+tenɁ³ V;IPFV;2;PST ɁnóɁ¹² dsí² ɁnoɁ¹ V;IRR;2;FUT hnḗɁ² mi³-hnḗɁ² V;IPFV;3;PST sián² sian³ V;IPFV;2;PRS tsón² tsón² V;IPFV;3;PRS gúg² mi³-gog³ V;IPFV;PL;1;PST bḗn² bēn¹³ V;IRR;PL;1;FUT røg² mi³-røg² V;IPFV;3;PST mi²+dsian¹² mi¹+dsian¹³ V;IRR;2;FUT tsø²+han¹² tsø²+han¹² V;IPFV;2;PRS Ɂo¹² Ɂo¹² V;IPFV;3;PRS Ɂméi¹² mi³-Ɂméi¹² V;IPFV;3;PST tiu¹² mi³-tiu¹² V;IPFV;3;PST Ɂon¹² mi³-Ɂeng² V;IPFV;PL;1;PST rónɁ¹² mi³-rónɁ¹² V;IPFV;3;PST mi²+hnia¹² mi³+hnia¹² V;IRR;3;FUT guønɁ¹² mi³-guønɁ¹² V;IPFV;SG;1;PST nió² nio¹² V;IPFV;SG;1;PRS chióg¹² mi³-chiog³ V;IPFV;PL;1;PST guieng¹² guieng¹ V;IRR;3;FUT tsenɁ¹² tsenɁ¹ V;IRR;2;FUT hne¹² hne² V;IPFV;PL;1;PRS ɁagɁ² ɁagɁ² V;IPFV;3;PRS ɁmoɁ¹² ɁmoɁ² V;IPFV;3;PRS Ɂnie¹² mi³-Ɂnie¹² V;IPFV;3;PST mái¹² mi³-mai¹² V;IPFV;SG;1;PST nang¹² mi³-nang¹² V;IPFV;3;PST kánɁ² kanɁ¹² V;IPFV;2;PRS ɁǿnɁ² ɁøgɁ³ V;IRR;2;FUT huú² huø¹² V;IPFV;2;PRS dsoɁ² mi³-dsoɁ² V;IPFV;PL;1;PST chi²+méɁ² mi³-chi²+meɁ¹² V;IPFV;PL;1;PST hái¹² mi³-hái¹² V;IPFV;3;PST hønɁ¹² mi³-hønɁ¹² V;IPFV;SG;1;PST Ɂia¹² Ɂia¹³ V;IRR;PL;1;FUT tsáiɁ¹² mi³-tseiɁ¹² V;IPFV;PL;1;PST kø²+hinɁ¹² kø¹+hinɁ³ V;IRR;PL;1;FUT mi²+hog¹² mi²+hog³ V;IPFV;SG;1;PRS kón² kón² V;IRR;3;FUT huú² huø¹² V;IPFV;PL;1;PRS Ɂuø¹² Ɂuø³ V;IRR;SG;1;FUT tsēn¹² mi³-tsēn¹² V;IPFV;3;PST hngii² hngii¹ V;IRR;3;FUT dsiágɁ¹² dsiágɁ¹³ V;IRR;3;FUT kii²+túg² kii¹+tog³ V;IRR;2;FUT kēn² kēn³ V;IRR;SG;1;FUT bø²+hmé² mi³-bø²+hmé² V;IPFV;3;PST dsióɁ¹² mi³-dsioɁ¹² V;IPFV;SG;1;PST ɁmiɁ¹² ɁmiɁ³ V;IRR;PL;1;FUT hngiú² mi³-hngiu¹² V;IPFV;2;PST tiúg² tiug¹² V;IPFV;PL;1;PRS uénɁ² mi³-uenɁ² V;IPFV;PL;1;PST guiúnɁ¹² mi³-guionɁ¹³ V;IPFV;2;PST dsiég¹² mi³-dsiég¹² V;IPFV;3;PST høn¹² mi³-høn¹² V;IPFV;3;PST gógɁ¹² gogɁ¹ V;IRR;2;FUT nøɁ¹² mi³-nøɁ² V;IPFV;PL;1;PST rang¹² rang¹² V;IPFV;3;PRS mi²+tég² mi²+tég² V;IPFV;3;PRS ɁlieɁ¹² ɁlieɁ¹ V;IRR;3;FUT mi²+kon¹² mi²+kon³ V;IPFV;PL;1;PRS u¹+lén² u²+len¹³ V;IPFV;2;PRS hnáɁ² mi³-hnaɁ³ V;IPFV;SG;1;PST kian¹² kian³ V;IPFV;SG;1;PRS mi²+guionɁ¹ mi²+guionɁ³ V;IPFV;SG;1;PRS hián² mi³-hián² V;IPFV;3;PST siág¹² siog³ V;IPFV;2;PRS rang¹² mi³-rang¹² V;IPFV;3;PST ti²+dsiog¹ mi³-ti²+dsiog³ V;IPFV;SG;1;PST mi²+ɁmaɁ¹³ mi²+ɁmaɁ¹³ V;IPFV;PL;1;PRS tóɁ¹² toɁ² V;IPFV;2;PRS chio¹² chio¹³ V;IRR;SG;1;FUT kúgɁ¹² kugɁ¹ V;IRR;SG;1;FUT Ɂmóng¹² Ɂmong¹³ V;IRR;SG;1;FUT ko¹² ko¹² V;IPFV;SG;1;PRS hánɁ² mi³-hánɁ² V;IPFV;3;PST hen¹² hen¹² V;IPFV;SG;1;PRS hngēɁ¹² hngēɁ¹² V;IPFV;3;PRS chiínɁ² mi³-hmaɁ¹² V;IPFV;SG;1;PST ɁlianɁ¹² mi³-ɁlianɁ¹² V;IPFV;3;PST mi²+tián² (dsǿa¹²) mi³-mi²+tian³ V;IPFV;PL;1;PST kieg² kieg² V;IPFV;SG;1;PRS li² li³ V;IRR;PL;1;FUT hngiíɁ² hngieɁ¹³ V;IRR;2;FUT kiúɁ¹² mi³-kiuɁ² V;IPFV;2;PST hniang² hniang¹ V;IRR;3;FUT Ɂuø¹² Ɂuø³ V;IPFV;SG;1;PRS kiúɁ¹² kiúɁ¹ V;IRR;3;FUT guiónɁ² guionɁ³ V;IRR;PL;1;FUT mi²+tan¹³ mi²+tan¹³ V;IPFV;2;PRS tai² tai³ V;IPFV;SG;1;PRS dsen³ (kaɁ³) dsen³ V;IPFV;SG;1;PRS Ɂí² Ɂí² V;IRR;3;FUT hnaiɁ¹² hnaiɁ³ V;IRR;SG;1;FUT Ɂma¹² mi³-Ɂma² V;IPFV;2;PST guiúɁ¹² mi³-guiúɁ¹² V;IPFV;3;PST dsiágɁ¹² dsiágɁ¹² V;IPFV;3;PRS dsán² dsán² V;IPFV;3;PRS Ɂuǿi² Ɂuai¹² V;IPFV;2;PRS Ɂlúg² Ɂliug² V;IRR;PL;1;FUT len¹² dsǿa¹² len¹ V;IRR;PL;1;FUT uénɁ² uenɁ² V;IPFV;PL;1;PRS Ɂnie¹² Ɂnie³ V;IRR;PL;1;FUT kienɁ¹² mi³-kienɁ¹³ V;IPFV;SG;1;PST ngie¹² ngie¹³ V;IRR;PL;1;FUT hngióɁ¹² hngioɁ¹³ V;IRR;SG;1;FUT Ɂuan² Ɂuen¹ V;IRR;3;FUT dsø²+lei¹ mi³-dsø²+lei¹ V;IPFV;3;PST kiog¹² kog² V;IPFV;2;PRS guiugɁ² guiugɁ¹ V;IRR;PL;1;FUT hngiú² hngiú² V;IPFV;3;PRS u¹+lén² mi³-u²+len¹³ V;IPFV;2;PST guieng¹² guieng¹² V;IPFV;3;PRS ɁiánɁ² ɁianɁ¹² V;IPFV;PL;1;PRS tsenɁ¹² tsēnɁ² V;IPFV;2;PRS tsǿng² tsøng¹² V;IPFV;2;PRS mi²+kon¹² mi³-mi²+kon³ V;IPFV;PL;1;PST ɁéɁ¹² ɁéɁ¹² V;IPFV;3;PRS hniá¹² hnia¹ V;IRR;2;FUT mi²+kon¹² mi²+kon³ V;IPFV;SG;1;PRS mi²+hniang¹ dsǿa¹² mi³-mi²+hniang³ V;IPFV;PL;1;PST mi²+kon¹² mi¹+kon³ V;IRR;PL;1;FUT tian¹² mi³-tian¹³ V;IPFV;2;PST lúg² lúg² V;IPFV;3;PRS gúɁ¹² guɁ³ V;IRR;2;FUT hngió² hngio¹² V;IPFV;2;PRS hngiíɁ² mi³-hngieɁ¹² V;IPFV;SG;1;PST dsan² dsian¹ V;IRR;2;FUT tsēn¹² tsēn² V;IPFV;2;PRS guiú² guiu¹³ V;IRR;2;FUT tsai¹² tsai¹ V;IRR;3;FUT tsø²+nióɁ¹² tsø²+nióɁ¹² V;IPFV;3;PRS Ɂo¹² mi³-huaiɁ² V;IPFV;2;PST ɁnióɁ¹² mi³-ɁnióɁ¹² V;IPFV;3;PST tagɁ² mi³-tagɁ¹² V;IPFV;2;PST hiúgɁ² mi³-hiúgɁ² V;IPFV;3;PST kánɁ¹² kanɁ¹³ V;IPFV;2;PRS chi²+kián² mi³-chi²+kian³ V;IPFV;PL;1;PST Ɂéng² mi³-Ɂeng¹² V;IPFV;SG;1;PST huánɁ² mi³-huanɁ¹² V;IPFV;2;PST tiánɁ¹² mi³-tanɁ¹² V;IPFV;SG;1;PST iéiɁ¹² ieiɁ¹² V;IPFV;SG;1;PRS Ɂai¹² mi³-Ɂai¹² V;IPFV;3;PST guiénɁ² mi³-guienɁ¹² V;IPFV;PL;1;PST tsǿɁ¹² tsøɁ¹³ V;IRR;SG;1;FUT huu¹² huu³ V;IRR;SG;1;FUT hmḗɁ² hmēɁ³ V;IRR;SG;1;FUT dsióɁ¹² mi³-dsioɁ¹² V;IPFV;PL;1;PST mi²+dsē¹² mi³+dsē¹² V;IRR;3;FUT mi²+hlēnɁ¹ mi²+hlēnɁ³ V;IPFV;2;PRS nei¹² mi³-nei¹² V;IPFV;3;PST tø²+kanɁ¹³ tø³+kanɁ¹³ V;IRR;3;FUT køin² mi³-kiing² V;IPFV;PL;1;PST len¹² dsǿa¹² mi³-len¹² V;IPFV;SG;1;PST ɁmēɁ¹² mi³-ɁmēɁ² V;IPFV;SG;1;PST hmóngɁ¹² mi³-hmongɁ² V;IPFV;2;PST mi²+hniang¹ ni³ mi²+hniang³ V;IPFV;2;PRS hǿa¹² mi³-høa² V;IPFV;2;PST neɁ¹² neɁ³ V;IRR;SG;1;FUT ɁḗɁ² mi³-ɁḗɁ² V;IPFV;3;PST kuø¹² kuø¹² V;IPFV;SG;1;PRS hanɁ¹² dsǿa¹² hanɁ¹² V;IPFV;3;PRS chión² chion³ V;IRR;2;FUT húgɁ² mi³-hogɁ¹² V;IPFV;2;PST huɁ¹² huɁ¹ V;IRR;3;FUT dság¹² dság¹² V;IPFV;3;PRS chi²+hné¹ chi¹+hne³ V;IRR;2;FUT ɁøɁ¹² ɁøɁ¹³ V;IRR;SG;1;FUT rǿnɁ¹² mi³-rønɁ³ V;IPFV;PL;1;PST huú² huø¹³ V;IRR;PL;1;FUT sianɁ¹² sianɁ¹³ V;IPFV;2;PRS hánɁ² mi³-hanɁ¹² V;IPFV;PL;1;PST Ɂai¹² mi³-Ɂei² V;IPFV;PL;1;PST kø²+káng¹² kø¹+kang¹³ V;IRR;2;FUT lái¹² lái¹ V;IRR;3;FUT chiógɁ² ( hmøi²) chiogɁ³ V;IRR;SG;1;FUT lieɁ¹² mi³-laɁ³ V;IPFV;2;PST hmǿɁ¹² mi³-hmøɁ² V;IPFV;2;PST Ɂán¹² ɁogɁ¹² mi³-Ɂan¹² V;IPFV;2;PST tiu¹² tiu² V;IPFV;2;PRS guǿn¹² mi³-guǿn¹² V;IPFV;3;PST tagɁ¹² tagɁ¹² V;IPFV;3;PRS mi²+hngiáng¹ mi³+hngiáng¹ V;IRR;3;FUT ɁēnɁ¹² ɁenɁ¹³ V;IRR;PL;1;FUT chi²+kián² mi³-chi²+kián² V;IPFV;3;PST húg² hug² V;IPFV;2;PRS mē¹² mi³-mē¹² V;IPFV;SG;1;PST chiáng¹² chiang² V;IPFV;2;PRS mi²+tsḗn¹ mi²+tsḗn¹ V;IPFV;3;PRS kø¹² mi³-kø¹² V;IPFV;3;PST nēɁ¹² nēɁ¹³ V;IRR;2;FUT ɁuanɁ¹² ɁuanɁ¹² V;IRR;2;FUT hngiíɁ² hngieɁ¹³ V;IRR;PL;1;FUT Ɂén² Ɂen¹³ V;IRR;SG;1;FUT tsai¹² tsai¹² V;IPFV;2;PRS ián² ian¹³ V;IRR;SG;1;FUT mi²+kán¹² mi¹+kan³ V;IRR;2;FUT tií² mi³-tii¹² V;IPFV;PL;1;PST hnióɁ² hnióɁ² V;IPFV;3;PRS bø²+hmé² mi³-bø²+hme² V;IPFV;SG;1;PST mi²+tsḗn¹ mi²+tsēn¹³ V;IPFV;SG;1;PRS tián² tian¹² V;IPFV;2;PRS hǿɁ¹² tsøɁ¹³ V;IRR;SG;1;FUT guiúg² mi³-guiug³ V;IPFV;PL;1;PST hniuɁ² mi³-hniang² V;IPFV;SG;1;PST dsii²+lé² dsii²+lé² V;IPFV;3;PRS chi²+méɁ² chi²+meɁ¹² V;IPFV;PL;1;PRS hiúg² hiúg² V;IRR;3;FUT siúgɁ² siugɁ² V;IRR;2;FUT mi²+kien¹² mi²+kien¹² V;IPFV;3;PRS chi²+láɁ² mi³-chi²+laɁ¹² V;IPFV;2;PST hlái² mi³-hlái² V;IPFV;3;PST ku²+hmáɁ² mi³-ku²+hmaɁ¹² V;IPFV;PL;1;PST ɁiuɁ³ (ɁéɁ¹) ɁiuɁ³ V;IPFV;3;PRS kieng¹² mi³-kieng² V;IPFV;2;PST ngó¹² ngo² V;IPFV;PL;1;PRS tsánɁ² chianɁ¹² V;IPFV;PL;1;PRS Ɂø²+tsóɁ¹² Ɂø²+tsoɁ² V;IPFV;2;PRS dsán² mi³-dsán² V;IPFV;3;PST ɁlanɁ¹² ɁlanɁ¹³ V;IPFV;2;PRS mi²+dsøg¹² mi²+dsøg¹² V;IPFV;3;PRS køɁ³ (hmai³) mi³-køɁ³ V;IPFV;3;PST hnáɁ¹² hnaɁ¹³ V;IRR;PL;1;FUT mi²+ténɁ² mi²+tenɁ³ V;IPFV;SG;1;PRS ɁuáiɁ¹² mi³-ɁuaiɁ¹² V;IPFV;SG;1;PST ɁuénɁ² ɁuénɁ² V;IPFV;3;PRS tso¹² ho¹² V;IPFV;SG;1;PRS hánɁ¹² hanɁ¹ V;IRR;PL;1;FUT tián² tian¹² V;IPFV;SG;1;PRS mi²+kuen¹² mi²+kuen¹³ V;IPFV;2;PRS mi²+ɁmaɁ¹³ mi³-mi²+ɁmaɁ¹³ V;IPFV;3;PST hén² hen² V;IRR;SG;1;FUT hlǿ² hlø¹³ V;IRR;SG;1;FUT bí² bí² V;IPFV;3;PRS ié² ie¹³ V;IRR;SG;1;FUT dsanɁ¹² mi³-dsanɁ¹² V;IPFV;2;PST niuɁ³ niuɁ³ V;IPFV;PL;1;PRS lan¹² lan¹² V;IRR;3;FUT tsí¹² tsi² V;IPFV;PL;1;PRS hnaiɁ¹² hnaiɁ³ V;IPFV;SG;1;PRS ngǿ² ngǿ² V;IRR;3;FUT tø²+ɁénɁ¹² tø²+ɁénɁ¹² V;IPFV;3;PRS tug tug¹² V;IPFV;2;PRS lio¹² leg² V;IPFV;PL;1;PRS ha²+rǿng² mi³-ha²+rǿng² V;IPFV;3;PST bø²+lḗnɁ² bø³+lḗnɁ² V;IRR;3;FUT niuɁ³ niuɁ¹ V;IRR;SG;1;FUT mi²+tég² mi³-mi²+teg³ V;IPFV;SG;1;PST ɁónɁ² ɁonɁ³ V;IRR;2;FUT hai¹² mi³-hai¹² V;IPFV;SG;1;PST tsén² tsén² V;IRR;3;FUT tsø²+han¹² mi³-tsø²+han¹² V;IPFV;SG;1;PST ɁenɁ¹² ɁenɁ¹³ V;IRR;SG;1;FUT mḗɁ² mi³-mēɁ³ V;IPFV;SG;1;PST Ɂngiéng¹² Ɂngieng² V;IPFV;PL;1;PRS dsúgɁ² dsugɁ³ V;IPFV;SG;1;PRS mi²+Ɂan¹³ mi³-mi²+Ɂan¹³ V;IPFV;2;PST mi²+gug¹ mi³-mi²+gug¹ V;IPFV;2;PST ɁuanɁ¹² mi³-ɁuanɁ¹² V;IPFV;2;PST káiɁ¹² mi³-káiɁ¹² V;IPFV;3;PST Ɂiá¹² Ɂia¹³ V;IRR;SG;1;FUT tsogɁ² hmøi² tsogɁ¹ V;IRR;2;FUT nié¹² na¹² V;IPFV;SG;1;PRS mi²+dsiagɁ¹ mi¹+dsiagɁ³ V;IRR;SG;1;FUT dsén² dsén¹³ V;IRR;3;FUT tiú² mi³-tiu¹² V;IPFV;2;PST mi²+ti¹ mi²+ti¹ V;IPFV;3;PRS hanɁ¹² dsǿa¹² mi³-hanɁ¹² V;IPFV;2;PST u²+Ɂai¹² mi³-u²+Ɂai¹² V;IPFV;PL;1;PST dsen¹² dsen¹³ V;IRR;PL;1;FUT hngie¹² han³ V;IRR;2;FUT mē¹² mi³-mē¹² V;IPFV;2;PST Ɂøa¹² Ɂi³ V;IRR;PL;1;FUT hlég² mi³-hleg² V;IPFV;PL;1;PST tei² tei³ V;IPFV;PL;1;PRS mi²+dsøg¹² mi³-mi²+dsøg¹³ V;IPFV;PL;1;PST tø²+húg³ tø¹+hug³ V;IRR;SG;1;FUT tei¹² tei¹³ V;IRR;SG;1;FUT siúg² siog³ V;IPFV;PL;1;PRS tiánɁ¹² tanɁ¹³ V;IRR;2;FUT ɁiéiɁ¹² mi³-ɁieiɁ¹² V;IPFV;SG;1;PST togɁ¹² togɁ¹² V;IPFV;3;PRS mi²+hǿ² mi¹+hø³ V;IRR;2;FUT ngie³ ngie³ V;IPFV;PL;1;PRS ɁlíɁ¹² mi³-ɁlíɁ¹² V;IPFV;3;PST ɁnangɁ² ɁniangɁ³ V;IRR;PL;1;FUT kán² guiing² kan¹³ V;IRR;SG;1;FUT mi²+hlíɁ² mi³-mi²+hlíɁ² V;IPFV;3;PST ɁliágɁ¹² ɁliágɁ¹² V;IPFV;3;PRS huúɁ¹² huúɁ¹² V;IPFV;3;PRS gúg² mi³-gúg² V;IPFV;3;PST tsø²+nióɁ¹² tsø³+nióɁ¹ V;IRR;3;FUT kiang¹² kiang¹³ V;IPFV;SG;1;PRS hiugɁ¹² hiugɁ¹² V;IPFV;3;PRS méɁ² méɁ² V;IRR;3;FUT hmo¹² hmo² V;IPFV;PL;1;PRS Ɂé² Ɂé² V;IRR;3;FUT héin¹² mi³-hein³ V;IPFV;SG;1;PST kieg² kieg³ V;IRR;SG;1;FUT hngiáɁ² mi³-hngiaɁ² V;IPFV;SG;1;PST siúg² siog³ V;IRR;SG;1;FUT kø²+káng¹² kø²+kang¹² V;IPFV;2;PRS tøng² mi³-tøng² V;IPFV;3;PST hnióɁ² hnioɁ² V;IPFV;2;PRS henɁ² henɁ² V;IPFV;3;PRS Ɂngio¹² Ɂngio¹³ V;IRR;2;FUT iaɁ¹² iaɁ¹² V;IPFV;3;PRS dsø²+lé² dsø²+lé² V;IPFV;3;PRS mi²+hínɁ² mi²+hínɁ² V;IPFV;3;PRS guiúg² guiug¹³ V;IRR;2;FUT guønɁ¹² mi³-guønɁ¹² V;IPFV;2;PST ngó¹² ngo¹³ V;IRR;SG;1;FUT guøn¹² mi³-guøn¹² V;IPFV;PL;1;PST tsí¹² tsi³ V;IRR;PL;1;FUT nei¹² nei¹² V;IRR;3;FUT se¹² se¹² V;IPFV;2;PRS lø²+liúɁ² lø²+liuɁ¹² V;IPFV;2;PRS u²+nio¹³ mi³-u²+nio¹³ V;IPFV;PL;1;PST mi²+dsēn¹² mi²+dsēn¹³ V;IPFV;2;PRS hiúg² mi³-hiug³ V;IPFV;SG;1;PST hián² hian² V;IPFV;2;PRS pø²+hánɁ² mi³-pø²+hánɁ² V;IPFV;3;PST mi²+hngiáng¹ mi²+hngiang¹³ V;IPFV;2;PRS kánɁ² kanɁ¹³ V;IRR;SG;1;FUT dsug² dsióg¹ V;IRR;3;FUT mi²+Ɂog¹³ mi³+Ɂog¹³ V;IRR;3;FUT tangɁ² tangɁ³ V;IRR;2;FUT guønɁ¹² guønɁ¹ V;IRR;PL;1;FUT kiúɁ¹² kiuɁ² V;IPFV;2;PRS Ɂno¹² Ɂneng² V;IPFV;PL;1;PRS tsí¹² tsi¹² V;IPFV;SG;1;PRS se¹² se³ V;IRR;SG;1;FUT Ɂēn¹² mi³-Ɂēn¹² V;IPFV;3;PST guianɁ¹² guianɁ¹ V;IRR;PL;1;FUT tsá¹² mi³-tsa¹² V;IPFV;SG;1;PST pø²+hánɁ² pø³+hánɁ² V;IRR;3;FUT ko¹² køg³ V;IRR;PL;1;FUT li² mi³-li² V;IPFV;3;PST ná² nií² V;IRR;3;FUT hlái² hlai¹³ V;IRR;2;FUT chiunɁ¹² chiunɁ² V;IPFV;2;PRS hlian¹² hlian¹² V;IPFV;PL;1;PRS dsiog¹² dsiog³ V;IPFV;PL;1;PRS li² li¹³ V;IRR;SG;1;FUT guen² guen¹ V;IRR;SG;1;FUT ɁlanɁ¹² ɁlanɁ¹³ V;IPFV;PL;1;PRS kiiɁ² mi³-kaɁ¹² V;IPFV;2;PST tsǿaɁ¹² huøɁ¹² V;IPFV;SG;1;PRS mḗɁ² mḗɁ² V;IRR;3;FUT tión² mi³-tion¹² V;IPFV;SG;1;PST lúg² mi³-lug² V;IPFV;PL;1;PST tsø²+nióɁ² tsø¹+nioɁ³ V;IRR;2;FUT teng¹² teng¹² V;IPFV;3;PRS hngióɁ¹² mi³-hngióɁ¹² V;IPFV;3;PST hngióɁ² hngioɁ³ V;IRR;PL;1;FUT uénɁ² uenɁ² V;IRR;2;FUT mi²+tan¹² mi²+tan³ V;IPFV;PL;1;PRS rón² ron² V;IRR;SG;1;FUT ná² mi³-ná² V;IPFV;3;PST guenɁ¹² mi³-guenɁ² V;IPFV;2;PST Ɂí² Ɂu¹³ V;IRR;PL;1;FUT uǿi² mi³-uøi² V;IPFV;SG;1;PST dsiag¹² mi³-dsiag² V;IPFV;PL;1;PST tsog¹² tsog¹ V;IRR;3;FUT dsúgɁ¹² dsugɁ¹² V;IPFV;2;PRS ɁǿnɁ² ɁǿnɁ² V;IRR;3;FUT hnáɁ¹² hnaɁ¹² V;IPFV;2;PRS togɁ¹² togɁ² V;IPFV;2;PRS hngia¹² hngia¹³ V;IPFV;PL;1;PRS kuøin¹² kuøin¹² V;IPFV;2;PRS ngiéɁ¹² ngieɁ³ V;IPFV;PL;1;PRS hug² hiug¹ V;IRR;SG;1;FUT Ɂmóng¹² mi³-Ɂmong¹² V;IPFV;2;PST hén² mi³-hen² V;IPFV;2;PST dsø²+togɁ¹² mi³-dsø²+togɁ¹² V;IPFV;SG;1;PST teng¹² teng² V;IPFV;PL;1;PRS len¹² len¹³ V;IRR;SG;1;FUT kø²+hinɁ¹² kø²+hinɁ³ V;IPFV;2;PRS kiáɁ² kiaɁ¹³ V;IPFV;2;PRS tsáiɁ¹² mi³-tsáiɁ¹² V;IPFV;3;PST nēɁ¹² nēɁ¹² V;IPFV;SG;1;PRS niuɁ³ niuɁ³ V;IPFV;3;PRS mi²+hngiáng¹ mi²+hngiang¹³ V;IPFV;PL;1;PRS ngái¹² ngai³ V;IRR;2;FUT mi²+hlíɁ² mi³+hlíɁ² V;IRR;3;FUT hnia¹² mi³-hnia¹² V;IPFV;PL;1;PST guønɁ¹² mi³-guønɁ¹² V;IPFV;PL;1;PST hógɁ¹² hiugɁ¹³ V;IRR;SG;1;FUT niuɁ³ niuɁ¹ V;IRR;3;FUT køgɁ² mi³-køgɁ² V;IPFV;2;PST kḗn² kien² V;IRR;PL;1;FUT hug² mi³-hug² V;IPFV;PL;1;PST hénɁ² henɁ¹³ V;IRR;SG;1;FUT dsiánɁ² dsianɁ³ V;IPFV;2;PRS gógɁ¹² gogɁ¹² V;IPFV;SG;1;PRS ngie¹² mi³-ngie¹³ V;IPFV;PL;1;PST kanɁ¹² mi³-kanɁ¹² V;IPFV;2;PST dsanɁ¹² dsianɁ¹² V;IRR;SG;1;FUT mi²+liág¹ mi¹+liag¹³ V;IRR;2;FUT køn¹² køn¹² V;IPFV;3;PRS bí² bi¹³ V;IRR;PL;1;FUT ɁēnɁ¹² ɁēnɁ³ V;IRR;2;FUT rain¹² rain¹ V;IRR;PL;1;FUT hmóɁ¹² hmóɁ¹² V;IPFV;3;PRS ngai¹² ngai³ V;IPFV;PL;1;PRS mi²+kuen¹² mi³-mi²+kuen¹³ V;IPFV;PL;1;PST Ɂuøi¹² mi³-Ɂuøi¹² V;IPFV;3;PST lá¹² mi³-la² V;IPFV;2;PST kiéɁ¹² kiéɁ¹² V;IPFV;3;PRS dsogɁ¹² dsogɁ¹³ V;IRR;2;FUT ɁmiɁ¹² ɁmiɁ³ V;IPFV;PL;1;PRS mi²+chian¹² mi¹+chian³ V;IRR;SG;1;FUT mi²+Ɂan¹³ mi¹+Ɂan¹³ V;IRR;2;FUT hngiíɁ² hngieɁ¹² V;IPFV;PL;1;PRS ɁaiɁ² ɁaiɁ¹ V;IRR;3;FUT ɁioɁ¹² Ɂiag¹² V;IPFV;SG;1;PRS ɁlíɁ¹² ɁliɁ¹² V;IPFV;PL;1;PRS tøa¹² mi³-tøa¹² V;IPFV;3;PST togɁ¹² togɁ³ V;IRR;SG;1;FUT chi²+lánɁ² chi²+lanɁ¹² V;IPFV;SG;1;PRS Ɂiog² mi³-Ɂiog² V;IPFV;2;PST ɁmíɁ² ɁmiɁ² V;IPFV;SG;1;PRS mi²+ɁmaɁ¹³ mi²+ɁmaɁ¹³ V;IPFV;SG;1;PRS tán¹² tán¹² V;IRR;3;FUT dsanɁ¹² dsanɁ¹² V;IPFV;3;PRS ɁløaɁ¹² ɁløaɁ¹² V;IPFV;3;PRS ha²+lig² ha²+lig² V;IPFV;3;PRS ɁliɁ² mi³-ɁliɁ² V;IPFV;3;PST mi²+gǿg¹ mi²+gøg¹ V;IPFV;SG;1;PRS mái¹² mi³-mai² V;IPFV;2;PST mi²+dsiog¹ mi³-mi²+dsiog¹ V;IPFV;PL;1;PST liúg² mi³-liúg² V;IPFV;3;PST kuan¹² kuan¹² V;IPFV;PL;1;PRS mi²+Ɂan¹³ mi¹+Ɂan¹³ V;IRR;SG;1;FUT Ɂiog¹² Ɂog¹³ V;IRR;2;FUT kuan¹² kuan¹² V;IPFV;SG;1;PRS mi²+hní¹ mi³-mi²+hni³ V;IPFV;2;PST mi²+ɁḗɁ² mi²+ɁḗɁ² V;IPFV;3;PRS lan² lan² V;IRR;3;FUT guuɁ¹² kieng² V;IPFV;PL;1;PRS hnáɁ¹² mi³-hnaɁ¹² V;IPFV;PL;1;PST ɁliuɁ¹² ɁliuɁ¹ V;IRR;3;FUT ɁóɁ² ɁoɁ¹³ V;IRR;SG;1;FUT dsiag¹² mi³-dsiag² V;IPFV;2;PST hiúɁ² mi³-hiúɁ² V;IPFV;3;PST tø²+húg³ tø²+húg³ V;IPFV;3;PRS mi²+dsíg² mi³-mi²+dsig³ V;IPFV;SG;1;PST hliánɁ² hliánɁ² V;IRR;3;FUT ngøa¹² ngøa² V;IPFV;2;PRS tsøi¹² mi³-tsøi² V;IPFV;PL;1;PST goɁ² mi³-goɁ² V;IPFV;3;PST tsenɁ¹² tsēnɁ³ V;IRR;SG;1;FUT Ɂnai¹² Ɂnøi³ V;IRR;2;FUT tsǿn² mi³-tsǿn² V;IPFV;3;PST dsen¹² mi³-dsen¹² V;IPFV;SG;1;PST hanɁ¹² dsǿa¹² hanɁ¹ V;IRR;PL;1;FUT tán¹² tan¹³ V;IRR;SG;1;FUT Ɂé² mi³-Ɂé² V;IPFV;3;PST goɁ² goɁ² V;IPFV;3;PRS Ɂen¹² Ɂen³ V;IRR;SG;1;FUT gúg² mi³-gog³ V;IPFV;2;PST Ɂien¹² mi³-Ɂien¹² V;IPFV;2;PST siág¹² siog³ V;IRR;2;FUT kēn² kēn¹ V;IRR;3;FUT mi²+dsií¹ mi²+dsii³ V;IPFV;SG;1;PRS kuǿɁ¹² kuøɁ¹³ V;IRR;PL;1;FUT len¹² dsǿa¹² mi³-len¹² V;IPFV;PL;1;PST sián² mi³-sián² V;IPFV;3;PST ngiéɁ¹² ngiéɁ¹² V;IPFV;3;PRS ɁngióɁ¹² ɁngióɁ¹² V;IPFV;3;PRS hmóngɁ¹² hmongɁ² V;IPFV;2;PRS mi²+Ɂlí¹ mi³-mi²+Ɂli³ V;IPFV;SG;1;PST Ɂí² Ɂu¹³ V;IRR;2;FUT guiúnɁ¹² guionɁ¹³ V;IRR;SG;1;FUT mi²+Ɂliúg² mi³+Ɂliúg² V;IRR;3;FUT guiónɁ² mi³-guionɁ³ V;IPFV;SG;1;PST ɁaiɁ² ɁaiɁ¹² V;IPFV;SG;1;PRS Ɂlí² Ɂli¹³ V;IRR;PL;1;FUT ɁiéiɁ¹² mi³-ɁieiɁ² V;IPFV;PL;1;PST mi²+hngiáng¹ mi²+hngiang¹³ V;IPFV;SG;1;PRS uøin² uøin² V;IPFV;3;PRS hug² hug² V;IPFV;3;PRS Ɂog¹² Ɂog¹ V;IRR;SG;1;FUT ɁóɁ¹² ɁoɁ¹² V;IPFV;PL;1;PRS tian¹² tian¹³ V;IRR;SG;1;FUT gǿaɁ¹² køgɁ² V;IPFV;2;PRS kuøin¹² kuøin¹³ V;IRR;PL;1;FUT dsogɁ¹² dsogɁ¹² V;IPFV;PL;1;PRS u²+Ɂai¹² mi³-u²+Ɂai¹² V;IPFV;SG;1;PST Ɂien¹² Ɂien¹² V;IPFV;SG;1;PRS ɁúgɁ² ɁúgɁ² V;IRR;3;FUT nió² mi³-nió² V;IPFV;3;PST hǿa¹² hǿa¹ V;IRR;3;FUT mi²+dsiog¹ mi¹+dsiog¹ V;IRR;2;FUT dsen¹² dsen¹³ V;IRR;SG;1;FUT kǿ² kií² V;IRR;3;FUT guenɁ¹² guenɁ¹² V;IPFV;3;PRS uénɁ² uenɁ² V;IRR;PL;1;FUT kuénɁ² kuenɁ³ V;IPFV;2;PRS guiénɁ² guiénɁ² V;IRR;3;FUT ié² mi³-ie¹² V;IPFV;PL;1;PST chiángɁ¹² chiangɁ³ V;IRR;SG;1;FUT rang¹² rang² V;IPFV;2;PRS tso¹² chieg³ V;IRR;PL;1;FUT tsón² mi³-tson³ V;IPFV;PL;1;PST huúɁ² huuɁ² V;IPFV;2;PRS háng¹² mi³-hang³ V;IPFV;2;PST guieng¹² guieng³ V;IRR;2;FUT lø²+liúɁ² lø¹+liuɁ¹³ V;IRR;PL;1;FUT bí² bí² V;IRR;3;FUT chiángɁ¹² chiángɁ¹ V;IRR;3;FUT hnio³ hnio¹ V;IRR;3;FUT guiég¹² guieg³ V;IRR;PL;1;FUT chi²+ngió² mi³-chi²+ngio³ V;IPFV;PL;1;PST nioɁ² mi³-nioɁ² V;IPFV;SG;1;PST ti²+kḗn¹ ti³+kḗn¹ V;IRR;3;FUT dsii²+lian¹ mi³-dsii²+lian¹ V;IPFV;3;PST sianɁ¹² mi³-sianɁ¹² V;IPFV;3;PST dsióɁ¹² hǿg³ mi³-dsioɁ¹² V;IPFV;PL;1;PST tsø²+nióɁ² mi³-tsø²+nióɁ² V;IPFV;3;PST Ɂnie¹² mi³-Ɂna³ V;IPFV;SG;1;PST mi²+gan¹² mi²+gan¹³ V;IPFV;SG;1;PRS tø²+dsḗn³ mi³-tø²+dsēn³ V;IPFV;2;PST møa¹² møa¹ V;IRR;3;FUT guieɁ¹² guieɁ³ V;IRR;2;FUT mi²+chian¹² mi³-mi²+chian³ V;IPFV;PL;1;PST kúgɁ² mi³-kugɁ³ V;IPFV;2;PST tanɁ¹² tanɁ² V;IPFV;2;PRS gǿaɁ¹² køgɁ³ V;IRR;2;FUT Ɂén² Ɂen¹³ V;IRR;2;FUT tǿɁ² tøa¹² V;IPFV;SG;1;PRS dsen³ (kaɁ³) dsen¹³ V;IRR;PL;1;FUT gúg² gug¹³ V;IRR;SG;1;FUT huu¹² mi³-huu¹² V;IPFV;SG;1;PST ɁúgɁ² ɁogɁ³ V;IRR;2;FUT ti²+dsøa¹² ti²+dsøa¹² V;IPFV;3;PRS guuɁ¹² guuɁ¹ V;IRR;3;FUT Ɂian² Ɂian¹ V;IRR;2;FUT dsán² dsan¹² V;IPFV;2;PRS chiag¹² chiag² V;IPFV;2;PRS ha²+Ɂan³ ha²+Ɂan³ V;IPFV;PL;1;PRS chi²+ngiú² mi³-chi²+ngiu³ V;IPFV;2;PST ha¹² ha¹³ V;IPFV;PL;1;PRS hmáɁ² (dsǿa¹²) hmaɁ¹³ V;IRR;2;FUT ɁóɁ² mi³-ɁóɁ² V;IPFV;3;PST hínɁ² hínɁ² V;IPFV;3;PRS niɁ¹² niɁ¹² V;IRR;3;FUT niɁ¹² mi³-niɁ¹² V;IPFV;3;PST mi²+kien¹² mi²+kien¹³ V;IPFV;SG;1;PRS ɁnióɁ¹² ɁnioɁ¹² V;IPFV;PL;1;PRS tian¹ tian¹ V;IRR;PL;1;FUT guái² mi³-guai¹² V;IPFV;SG;1;PST tsánɁ² hmaɁ¹³ V;IRR;SG;1;FUT hmáɁ² (dsǿa¹²) mi³-hmáɁ² V;IPFV;3;PST ɁuanɁ¹² ɁuaiɁ¹² V;IPFV;PL;1;PRS chiunɁ¹² chiunɁ³ V;IPFV;2;PRS héi² hi³ V;IRR;2;FUT mi²+guionɁ¹ mi¹+guionɁ³ V;IRR;2;FUT hngiíɁ² hngiíɁ² V;IRR;3;FUT mi²+hu¹ mi²+hu³ V;IPFV;PL;1;PRS ɁliuɁ¹² ɁliuɁ¹³ V;IRR;SG;1;FUT sián² sian³ V;IRR;2;FUT kieng¹² kieng² V;IPFV;2;PRS hiég² hieg¹² V;IPFV;2;PRS kugɁ¹² mi³-kugɁ¹³ V;IPFV;2;PST ɁøɁ¹² mi³-ɁøɁ¹² V;IPFV;SG;1;PST kión² mi³-kión² V;IPFV;3;PST tsø²+kuønɁ¹² tsø¹+kuønɁ¹² V;IRR;PL;1;FUT kánɁ¹² kanɁ¹³ V;IRR;PL;1;FUT li² mi³-li¹² V;IPFV;2;PST mi²+Ɂliúg² mi²+Ɂliug³ V;IPFV;PL;1;PRS mi²+Ɂliúg² mi²+Ɂliug³ V;IPFV;2;PRS ku²+hmáɁ² mi³-ku²+hmáɁ² V;IPFV;3;PST ngó¹² ngo³ V;IRR;PL;1;FUT ha² ha¹ V;IRR;3;FUT tion¹² ton¹² V;IPFV;2;PRS mi²+Ɂnio¹ mi²+Ɂnio¹ V;IPFV;SG;1;PRS dsán² mi³-dsan¹² V;IPFV;2;PST ɁuáiɁ¹² ɁuaiɁ¹² V;IPFV;2;PRS hínɁ² mi³-hínɁ² V;IPFV;3;PST dsian¹² dsian¹² V;IPFV;2;PRS guiég¹² mi³-guieg² V;IPFV;2;PST Ɂuan² Ɂuan² V;IPFV;SG;1;PRS mi²+Ɂog¹³ mi¹+Ɂog³ V;IRR;PL;1;FUT kiúɁ¹² kiuɁ¹³ V;IRR;SG;1;FUT chi²+ngiú² mi³-chi²+ngiu³ V;IPFV;PL;1;PST Ɂlí² Ɂli¹² V;IPFV;PL;1;PRS lóɁ¹² loɁ¹² V;IPFV;SG;1;PRS uénɁ² uenɁ² V;IPFV;SG;1;PRS gúɁ¹² mi³-guɁ² V;IPFV;2;PST ngó¹² ngo¹² V;IPFV;SG;1;PRS ngē² ngie¹ V;IRR;3;FUT mi²+guionɁ¹ mi²+guionɁ³ V;IPFV;2;PRS ɁmóɁ² ɁmoɁ¹³ V;IRR;PL;1;FUT Ɂúg² Ɂúg² V;IPFV;3;PRS kieng¹² kieng¹ V;IRR;3;FUT hág¹² hag¹³ V;IPFV;SG;1;PRS mi²+hínɁ² mi¹+hinɁ³ V;IRR;SG;1;FUT hiugɁ¹² hiugɁ³ V;IRR;2;FUT huen¹² mi³-huen¹³ V;IPFV;2;PST húɁ² huɁ³ V;IRR;PL;1;FUT tieɁ¹² taɁ² V;IPFV;2;PRS Ɂéng² Ɂeng¹³ V;IRR;2;FUT ton² ton² V;IRR;PL;1;FUT dsa² dsií¹ V;IRR;3;FUT kúgɁ¹² kugɁ¹² V;IPFV;PL;1;PRS tiu¹² tiu¹² V;IPFV;SG;1;PRS ɁlieɁ¹² ɁlieɁ¹² V;IPFV;3;PRS chiog¹² mi³-chiog¹² V;IPFV;3;PST ɁøɁ¹² ɁøɁ² V;IPFV;2;PRS gḗɁ² gḗɁ² V;IRR;3;FUT kión² kión² V;IRR;3;FUT Ɂngieng¹² Ɂngieng¹² V;IPFV;SG;1;PRS chiúgɁ² chiúgɁ² V;IRR;3;FUT háinɁ¹² mi³-háinɁ¹² V;IPFV;3;PST hngieɁ¹² hngieɁ¹ V;IRR;3;FUT kién¹² mi³-kién¹² V;IPFV;3;PST lóɁ¹² lioɁ¹² V;IPFV;PL;1;PRS mi²+hniang¹ dsǿa¹² mi²+hniang¹ V;IPFV;3;PRS kḗn² mi³-kēn² V;IPFV;PL;1;PST huánɁ¹² huanɁ¹² V;IRR;SG;1;FUT ɁiíɁ² ɁiíɁ² V;IRR;3;FUT héɁ² heɁ³ V;IRR;PL;1;FUT kian¹² kian³ V;IPFV;2;PRS Ɂen¹² Ɂen¹² V;IPFV;PL;1;PRS hogɁ¹² hogɁ¹² V;IRR;SG;1;FUT hnḗɁ² hnēɁ³ V;IRR;PL;1;FUT Ɂan¹² mi³-Ɂen¹² V;IPFV;PL;1;PST huǿin¹² mi³-huøin² V;IPFV;PL;1;PST ɁiíɁ² ɁiíɁ² V;IPFV;3;PRS kón² mi³-kón² V;IPFV;3;PST køɁ³ (hmai³) kēɁ³ V;IRR;2;FUT Ɂngiéng² mi³-Ɂngiéng² V;IPFV;3;PST nung² nung¹³ V;IRR;SG;1;FUT tian¹² tian¹³ V;IRR;2;FUT kiúgɁ² kiúgɁ² V;IRR;3;FUT chi²+dsí² chi¹+dsi³ V;IRR;SG;1;FUT mi²+hngió¹ mi³-mi²+hngio¹³ V;IPFV;2;PST hiúɁ² hioɁ³ V;IRR;2;FUT chióg¹² mi³-chiog³ V;IPFV;SG;1;PST guión² guion³ V;IPFV;SG;1;PRS hngiíɁ² mi³-hngieɁ¹² V;IPFV;PL;1;PST hogɁ¹² mi³-hogɁ¹² V;IPFV;3;PST hián² hian¹² V;IPFV;PL;1;PRS kii²+túg² kii³+túg² V;IRR;3;FUT tiu¹² tiu¹³ V;IRR;SG;1;FUT hnáɁ² mi³-hnáɁ² V;IPFV;3;PST héɁ² mi³-heɁ³ V;IPFV;SG;1;PST liúg² mi³-log³ V;IPFV;PL;1;PST háng¹² hang³ V;IRR;PL;1;FUT ton² ton² V;IPFV;3;PRS tanɁ² tanɁ² V;IPFV;SG;1;PRS mi²+hénɁ² mi²+hénɁ² V;IPFV;3;PRS ɁéɁ² ɁéɁ² V;IRR;3;FUT ton² ton² V;IRR;3;FUT lóɁ¹² loɁ¹³ V;IRR;SG;1;FUT kug² mi³-kug² V;IPFV;3;PST mi²+hǿ² mi²+hø³ V;IPFV;2;PRS hiégɁ¹² hiegɁ² V;IPFV;2;PRS ko¹² mi³-køg² V;IPFV;2;PST nǿɁ² nøɁ¹³ V;IRR;SG;1;FUT nang¹² nang¹ V;IRR;3;FUT tian¹² tian¹ V;IRR;2;FUT hénɁ¹² henɁ¹² V;IPFV;2;PRS héi² mi³-héi² V;IPFV;3;PST nió² nio¹² V;IPFV;2;PRS hmáɁ² (dsǿa¹²) mi³-hmaɁ¹³ V;IPFV;PL;1;PST chi²+dsí² chi²+dsi³ V;IPFV;SG;1;PRS hug² hiug¹ V;IRR;PL;1;FUT kug² kug² V;IPFV;SG;1;PRS dsian¹² dsian¹³ V;IRR;SG;1;FUT tei² tei³ V;IRR;SG;1;FUT kø¹² kø¹² V;IPFV;3;PRS kiagɁ¹² kiagɁ¹ V;IRR;3;FUT tsai¹² tsai¹³ V;IRR;PL;1;FUT bá² mi³-bá² V;IPFV;3;PST ti²+líɁ¹ ti²+líɁ¹ V;IPFV;3;PRS hinɁ³ mi³-hinɁ³ V;IPFV;3;PST Ɂméi¹² Ɂmei³ V;IRR;2;FUT ɁēnɁ¹² mi³-ɁēnɁ¹² V;IPFV;3;PST Ɂøin¹² Ɂøin¹³ V;IRR;2;FUT Ɂme¹² Ɂme³ V;IRR;2;FUT kuú² kuu³ V;IRR;SG;1;FUT ɁǿnɁ² ɁniuɁ³ V;IRR;PL;1;FUT dsogɁ¹² dsogɁ¹³ V;IRR;SG;1;FUT tangɁ² tangɁ² V;IPFV;3;PRS tø²+dsḗn³ tø²+dsēn³ V;IPFV;SG;1;PRS Ɂiei¹² Ɂiei¹³ V;IRR;SG;1;FUT chi²+ngió² chi³+ngió² V;IRR;3;FUT tsáiɁ¹² tsáiɁ¹² V;IPFV;3;PRS tiú² tiú² V;IRR;3;FUT lio¹² leg³ V;IRR;PL;1;FUT hlian¹² mi³-hlian¹² V;IPFV;3;PST kienɁ¹² kienɁ¹ V;IRR;3;FUT ián² mi³-ian¹² V;IPFV;SG;1;PST ngē¹² mi³-ngē¹² V;IPFV;PL;1;PST lēɁ² mi³-lēɁ² V;IPFV;3;PST mi²+kán¹² mi¹+kan³ V;IRR;SG;1;FUT gog² gog³ V;IRR;SG;1;FUT ɁiúɁ¹² mi³-ɁiúɁ¹² V;IPFV;3;PST Ɂlúg² Ɂliug² V;IRR;2;FUT ɁlianɁ² ɁlianɁ¹ V;IRR;2;FUT hnéi¹² hnai¹³ V;IRR;SG;1;FUT Ɂmǿi² Ɂmai¹³ V;IRR;PL;1;FUT kienɁ¹² kienɁ¹³ V;IRR;2;FUT mi²+hog¹² mi¹+hog³ V;IRR;PL;1;FUT mi²+rø¹² mi²+rø¹² V;IPFV;3;PRS køgɁ² køgɁ¹³ V;IRR;SG;1;FUT tsíɁ¹² tsíɁ² V;IRR;3;FUT guø¹² guø¹² V;IPFV;3;PRS teng¹² teng¹ V;IRR;3;FUT guu²+dsḗn¹³ guu²+dsēn¹³ V;IPFV;2;PRS nǿɁ² mi³-nøɁ¹² V;IPFV;PL;1;PST hngǿi² hngiéi² V;IRR;3;FUT Ɂian¹² Ɂian¹² V;IPFV;SG;1;PRS Ɂø²+tsóɁ¹² Ɂø²+tsóɁ¹² V;IPFV;3;PRS ngái¹² mi³-ngái¹² V;IPFV;3;PST chi²+dsén² chi²+dsen¹³ V;IPFV;2;PRS kiuɁ¹² kiuɁ³ V;IRR;2;FUT hág¹² hag¹³ V;IPFV;PL;1;PRS guiúg² guiug¹³ V;IRR;SG;1;FUT huen¹² huen¹³ V;IPFV;2;PRS tsíɁ¹² mi³-tsøɁ² V;IPFV;2;PST iaɁ¹² iaɁ³ V;IPFV;PL;1;PRS hinɁ³ hinɁ³ V;IPFV;3;PRS tanɁ¹² huu¹² tianɁ¹³ V;IRR;PL;1;FUT chi²+hné¹ chi¹+hne³ V;IRR;SG;1;FUT mi²+Ɂan¹² mi¹+lig2¹³ V;IRR;SG;1;FUT dsug² dsug² V;IPFV;3;PRS ɁuáiɁ¹² ɁuaiɁ¹³ V;IRR;2;FUT kuénɁ² mi³-kuenɁ³ V;IPFV;2;PST mi²+hní¹ mi³-mi²+hni³ V;IPFV;PL;1;PST hniang² mi³-hniang² V;IPFV;PL;1;PST ti²+líɁ¹ ti²+lei2¹ V;IPFV;SG;1;PRS tian¹ mi³-tian¹ V;IPFV;PL;1;PST ɁéiɁ¹² mi³-ɁéiɁ¹² V;IPFV;3;PST hniuɁ² hniang¹ V;IRR;SG;1;FUT nøɁ¹² nøɁ¹² V;IPFV;SG;1;PRS dsǿɁ² dsøɁ¹³ V;IRR;SG;1;FUT hág¹² mi³-hág¹² V;IPFV;3;PST gǿi¹² guiig³ V;IRR;PL;1;FUT ɁmíɁ² mi³-ɁmíɁ² V;IPFV;3;PST gǿaɁ¹² mi³-gǿaɁ¹² V;IPFV;3;PST nioɁ² nioɁ¹ V;IRR;2;FUT ti²+dsøa¹² mi³-ti²+dsøa³ V;IPFV;PL;1;PST ɁmóɁ² ɁmoɁ¹³ V;IRR;SG;1;FUT mi²+hmḗ² mi³+hmḗ² V;IRR;3;FUT kán² kan² V;IPFV;2;PRS kií¹² mi³-kií¹² V;IPFV;3;PST kian¹² kian¹³ V;IPFV;PL;1;PRS tø²+dsḗn³ tø¹+dsēn³ V;IRR;SG;1;FUT guen¹² guen³ V;IRR;PL;1;FUT ié² mi³-ie¹² V;IPFV;SG;1;PST chiángɁ¹² chiangɁ³ V;IRR;2;FUT chiógɁ² ( hmøi²) chiógɁ² V;IPFV;3;PRS tsø²+nióɁ² tsø¹+nioɁ³ V;IRR;SG;1;FUT dsióɁ¹² mi³-dsióɁ¹² V;IPFV;3;PST mi²+hog¹² mi³-mi²+hog³ V;IPFV;2;PST tangɁ² tangɁ² V;IPFV;2;PRS iéiɁ¹² ieiɁ³ V;IRR;PL;1;FUT Ɂán¹² ɁogɁ¹² Ɂán¹ V;IRR;3;FUT dsiég¹² dsieg¹³ V;IRR;2;FUT dsióɁ¹² mi³-dsioɁ³ V;IPFV;SG;1;PST guiúnɁ¹² guionɁ¹³ V;IPFV;SG;1;PRS nei¹² mi³-nei³ V;IPFV;2;PST chiog¹² mi³-chiog² V;IPFV;2;PST kón² mi³-kon³ V;IPFV;2;PST bá² ba² V;IPFV;2;PRS huǿin¹² huǿin¹² V;IPFV;3;PRS ɁliuɁ¹² ɁliuɁ¹² V;IPFV;SG;1;PRS sianɁ¹² sianɁ¹³ V;IRR;SG;1;FUT ɁiéiɁ¹² ɁieiɁ³ V;IRR;2;FUT ɁēnɁ¹² ɁēnɁ¹² V;IPFV;3;PRS Ɂo¹² mi³-Ɂøg² V;IPFV;PL;1;PST gúɁ¹² guɁ² V;IPFV;PL;1;PRS hnia¹² mi³-hnia¹² V;IPFV;2;PST dsøɁ¹² dsøɁ¹² V;IPFV;3;PRS
da2935230f1f51e5450f49f8e5d22b6dc0d0e382
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/gr_harm/out/condor/centralderiv.sce
b7166a2019eafd534421280b328069334efcdd01
[]
no_license
mikeg2105/matlab-old
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
eac168097f9060b4787ee17e3a97f2099f8182c1
refs/heads/master
2021-05-01T07:58:19.274277
2018-02-11T22:09:18
2018-02-11T22:09:18
121,167,118
1
0
null
null
null
null
UTF-8
Scilab
false
false
5,581
sce
centralderiv.sce
function [dxuxx,dyuxx,dzuxx,... dxuxy,dyuxy,dzuxy,... dxuxz,dyuxz,dzuxz,... dxuyy,dyuyy,dzuyy,... dxuyz,dyuyz,dzuyz,... dxuzz,dyuzz,dzuzz]=centralderiv(... nx,ny,nz,... dx,dy,dz,... uxx,uxy,uxz,uyy,uyz,uzz) //[dxuxx,dyuxx,dzuxx,... // dxuxy,dyuxy,dzuxy,... // dxuxz,dyuxz,dzuxz,... // dxuyy,dyuyy,dzuyy,... // dxuyz,dyuyz,dzuyz,... // dxuzz,dyuzz,dzuzz]=centralderiv(... // nx,ny,nz,... // dx,dy,dz,... // uxx,uxy,uxz,uyy,uyz,uzz //============================================================================== // // [ROUTINE NAME] Centralderiv // [AUTHOR] Joan Masso, NCSA & UIB // // [PURPOSE] Compute the derivatives of the metric tensor // with a central finite differencing scheme that // assumes a regular grid spacing. The finite // differencing is implemented using triplet notation. // // At the boundaries, the derivatives are computed // by linear extrapolation of the interior derivatives. // // [ARGUMENTS] // [INPUT] // nx,ny,nz : grid sizes of the 3d cube. // dx,dy,dz : grid spacing: regular grid assumed. // uxx,uxy,...: Metric tensor // [OUTPUT] // dxuxx,.....: All derivatives of the metric tensor. // // [CALLED BY] Initial // //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< dzuxx=zeros(nx,ny,nz); dzuxy=zeros(nx,ny,nz); dzuxz=zeros(nx,ny,nz); dzuyy=zeros(nx,ny,nz); dzuyz=zeros(nx,ny,nz); dzuzz=zeros(nx,ny,nz); dxuxx=zeros(nx,ny,nz); dxuxy=zeros(nx,ny,nz); dxuxz=zeros(nx,ny,nz); dxuyy=zeros(nx,ny,nz); dxuyz=zeros(nx,ny,nz); dxuzz=zeros(nx,ny,nz); dyuxx=zeros(nx,ny,nz); dyuxy=zeros(nx,ny,nz); dyuxz=zeros(nx,ny,nz); dyuyy=zeros(nx,ny,nz); dyuyz=zeros(nx,ny,nz); dyuzz=zeros(nx,ny,nz); // X direction // Centered differencing in the interior. dxuxx(2:nx-1,:,:) = ( uxx(3:nx,:,:) - uxx(1:nx-2,:,:) )./2./dx; dxuxy(2:nx-1,:,:) = ( uxy(3:nx,:,:) - uxy(1:nx-2,:,:) )./2./dx; dxuxz(2:nx-1,:,:) = ( uxz(3:nx,:,:) - uxz(1:nx-2,:,:) )./2./dx; dxuyy(2:nx-1,:,:) = ( uyy(3:nx,:,:) - uyy(1:nx-2,:,:) )./2./dx; dxuyz(2:nx-1,:,:) = ( uyz(3:nx,:,:) - uyz(1:nx-2,:,:) )./2./dx; dxuzz(2:nx-1,:,:) = ( uzz(3:nx,:,:) - uzz(1:nx-2,:,:) )./2./dx; // Linear extrapolation on a regular grid is trivial... at both ends. dxuxx(1,:,:) = 2.*dxuxx(2,:,:) - dxuxx(3,:,:); dxuxy(1,:,:) = 2.*dxuxy(2,:,:) - dxuxy(3,:,:); dxuxz(1,:,:) = 2.*dxuxz(2,:,:) - dxuxz(3,:,:); dxuyy(1,:,:) = 2.*dxuyy(2,:,:) - dxuyy(3,:,:); dxuyz(1,:,:) = 2.*dxuyz(2,:,:) - dxuyz(3,:,:); dxuzz(1,:,:) = 2.*dxuzz(2,:,:) - dxuzz(3,:,:); dxuxx(nx,:,:) = 2.*dxuxx(nx-1,:,:) - dxuxx(nx-2,:,:); dxuxy(nx,:,:) = 2.*dxuxy(nx-1,:,:) - dxuxy(nx-2,:,:); dxuxz(nx,:,:) = 2.*dxuxz(nx-1,:,:) - dxuxz(nx-2,:,:); dxuyy(nx,:,:) = 2.*dxuyy(nx-1,:,:) - dxuyy(nx-2,:,:); dxuyz(nx,:,:) = 2.*dxuyz(nx-1,:,:) - dxuyz(nx-2,:,:); dxuzz(nx,:,:) = 2.*dxuzz(nx-1,:,:) - dxuzz(nx-2,:,:); // Y direction dyuxx(:,2:ny-1,:) = ( uxx(:,3:ny,:) - uxx(:,1:ny-2,:) )./2./dy; dyuxy(:,2:ny-1,:) = ( uxy(:,3:ny,:) - uxy(:,1:ny-2,:) )./2./dy; dyuxz(:,2:ny-1,:) = ( uxz(:,3:ny,:) - uxz(:,1:ny-2,:) )./2./dy; dyuyy(:,2:ny-1,:) = ( uyy(:,3:ny,:) - uyy(:,1:ny-2,:) )./2./dy; dyuyz(:,2:ny-1,:) = ( uyz(:,3:ny,:) - uyz(:,1:ny-2,:) )./2./dy; dyuzz(:,2:ny-1,:) = ( uzz(:,3:ny,:) - uzz(:,1:ny-2,:) )./2./dy; dyuxx(:,1,:) = 2.*dyuxx(:,2,:) - dyuxx(:,3,:); dyuxy(:,1,:) = 2.*dyuxy(:,2,:) - dyuxy(:,3,:); dyuxz(:,1,:) = 2.*dyuxz(:,2,:) - dyuxz(:,3,:); dyuyy(:,1,:) = 2.*dyuyy(:,2,:) - dyuyy(:,3,:); dyuyz(:,1,:) = 2.*dyuyz(:,2,:) - dyuyz(:,3,:); dyuzz(:,1,:) = 2.*dyuzz(:,2,:) - dyuzz(:,3,:); dyuxx(:,ny,:) = 2.*dyuxx(:,ny-1,:) - dyuxx(:,ny-2,:); dyuxy(:,ny,:) = 2.*dyuxy(:,ny-1,:) - dyuxy(:,ny-2,:); dyuxz(:,ny,:) = 2.*dyuxz(:,ny-1,:) - dyuxz(:,ny-2,:); dyuyy(:,ny,:) = 2.*dyuyy(:,ny-1,:) - dyuyy(:,ny-2,:); dyuyz(:,ny,:) = 2.*dyuyz(:,ny-1,:) - dyuyz(:,ny-2,:); dyuzz(:,ny,:) = 2.*dyuzz(:,ny-1,:) - dyuzz(:,ny-2,:); // Z direction dzuxx(:,:,2:nz-1) = ( uxx(:,:,3:nz) - uxx(:,:,1:nz-2) )./2./dz; dzuxy(:,:,2:nz-1) = ( uxy(:,:,3:nz) - uxy(:,:,1:nz-2) )./2./dz; dzuxz(:,:,2:nz-1) = ( uxz(:,:,3:nz) - uxz(:,:,1:nz-2) )./2./dz; dzuyy(:,:,2:nz-1) = ( uyy(:,:,3:nz) - uyy(:,:,1:nz-2) )./2./dz; dzuyz(:,:,2:nz-1) = ( uyz(:,:,3:nz) - uyz(:,:,1:nz-2) )./2./dz; dzuzz(:,:,2:nz-1) = ( uzz(:,:,3:nz) - uzz(:,:,1:nz-2) )./2./dz; dzuxx(:,:,1) = 2.*dzuxx(:,:,2) - dzuxx(:,:,3); dzuxy(:,:,1) = 2.*dzuxy(:,:,2) - dzuxy(:,:,3); dzuxz(:,:,1) = 2.*dzuxz(:,:,2) - dzuxz(:,:,3); dzuyy(:,:,1) = 2.*dzuyy(:,:,2) - dzuyy(:,:,3); dzuyz(:,:,1) = 2.*dzuyz(:,:,2) - dzuyz(:,:,3); dzuzz(:,:,1) = 2.*dzuzz(:,:,2) - dzuzz(:,:,3); dzuxx(:,:,nz) = 2.*dzuxx(:,:,nz-1) - dzuxx(:,:,nz-2); dzuxy(:,:,nz) = 2.*dzuxy(:,:,nz-1) - dzuxy(:,:,nz-2); dzuxz(:,:,nz) = 2.*dzuxz(:,:,nz-1) - dzuxz(:,:,nz-2); dzuyy(:,:,nz) = 2.*dzuyy(:,:,nz-1) - dzuyy(:,:,nz-2); dzuyz(:,:,nz) = 2.*dzuyz(:,:,nz-1) - dzuyz(:,:,nz-2); dzuzz(:,:,nz) = 2.*dzuzz(:,:,nz-1) - dzuzz(:,:,nz-2); endfunction
c2608a45ae2735deabf97b0aeaca9e20f41b7cc8
01ecab2f6eeeff384acae2c4861aa9ad1b3f6861
/sci2blif/sci2blif_added_blocks/lkuptb.sce
030af41265a3cfc35c1c7e3368a54155292b69f0
[]
no_license
jhasler/rasp30
9a7c2431d56c879a18b50c2d43e487d413ceccb0
3612de44eaa10babd7298d2e0a7cddf4a4b761f6
refs/heads/master
2023-05-25T08:21:31.003675
2023-05-11T16:19:59
2023-05-11T16:19:59
62,917,238
3
3
null
null
null
null
UTF-8
Scilab
false
false
2,056
sce
lkuptb.sce
//**************************** LOOKUP Table ******************************** if(blk_name.entries(bl)=='lkuptb') then disp(scs_m.objs(blk_objs(bl)).model.rpar(1)) mputl("# LOOKUP Table-> "+scs_m.objs(blk_objs(bl)).model.opar(1),fd_w); truecase_ss=strsplit(scs_m.objs(blk_objs(bl)).model.opar(2),";"); for ss=1:scs_m.objs(bl).model.ipar(2) truecase=strsplit(truecase_ss(ss)," "); if scs_m.objs(bl).model.ipar(1) == 1 then lkuptb_str='.names'+' net' + string(blk(blk_objs(bl),2))+"_" + string(ss)+' tg4logic_1 tg4logic_2 tg4logic_3'+' net'+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss); end if scs_m.objs(bl).model.ipar(1) == 2 then lkuptb_str='.names'+' net' + string(blk(blk_objs(bl),2))+"_" + string(ss)+' net'+ string(blk(blk_objs(bl),3))+"_" + string(ss)+' tg4logic_1 tg4logic_2'+' net'+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss); end if scs_m.objs(bl).model.ipar(1) == 3 then lkuptb_str='.names'+' net' + string(blk(blk_objs(bl),2))+"_" + string(ss)+' net'+ string(blk(blk_objs(bl),3))+"_" + string(ss)+' net' + string(blk(blk_objs(bl),4))+"_" + string(ss)+' tg4logic_1'+' net'+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss); end if scs_m.objs(bl).model.ipar(1) == 4 then lkuptb_str='.names'+' net' + string(blk(blk_objs(bl),2))+"_" + string(1)+' net'+ string(blk(blk_objs(bl),3))+"_" + string(1)+' net' + string(blk(blk_objs(bl),4))+"_" + string(1)+' net'+ string(blk(blk_objs(bl),5))+"_" + string(1)+' net'+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss); end mputl(lkuptb_str,fd_w); for i=1:size(truecase,1) mputl(truecase(i)+' 1',fd_w); end mputl(" ",fd_w) if scs_m.objs(bl).model.rpar(1) == 1 then plcvpr = %t; plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+"_" + string(ss),string(scs_m.objs(bl).model.rpar(2*ss))+' '+string(scs_m.objs(bl).model.rpar(2*ss+1))+' 0']; end end end
fd2c84f2527e5d126bcb8bbd0400ed0a38406ff8
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/newcs.sce
1046e47a7476d482dc06d17ba61fc0105abde1e6
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
53,096
sce
newcs.sce
Name=newcs PlayerCharacters=Counter-Striker BotCharacters=cspeekers.rot;cs crouch.bot;cs jiggle.bot;cs stop.bot;cs swing.bot;cs peek.bot IsChallenge=true Timelimit=60.0 PlayerProfile=Counter-Striker AddedBots=cspeekers.rot;cspeekers.rot;cspeekers.rot PlayerMaxLives=0 BotMaxLives=0;0;0 PlayerTeam=1 BotTeams=2;2;2 MapName=aimbotAllnoclip.map MapScale=4.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=1.0 ScoreToWin=1000.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=true ScoreMultKillEfficiency=false GameTag=cs WeaponHeroTag= DifficultyTag=3 AuthorsTag=gli BlockHitMarkers=true BlockHitSounds=true BlockMissSounds=true BlockFCT=true Description=rotating peek GameVersion=1.0.6.2 ScorePerDistance=0.0 [Aim Profile] Name=cs MinReactionTime=0.18 MaxReactionTime=0.3 MinSelfMovementCorrectionTime=0.007 MaxSelfMovementCorrectionTime=0.035 FlickFOV=10.0 FlickSpeed=1.0 FlickError=3.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=90.0 MinRecenterTime=0.25 MaxRecenterTime=0.4 OptimalAimFOV=35.0 OuterAimPenalty=1.1 MaxError=35.0 ShootFOV=1.0 VerticalAimOffset=-5.0 MaxTolerableSpread=2.0 MinTolerableSpread=0.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=cs jiggle DodgeProfileNames=cs jiggle DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=10.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default WeaponSwitchTime=5.0 UseWeapons=false CharacterProfile=Counter-Striker SeeThroughWalls=true [Bot Profile] Name=cs swing DodgeProfileNames=cs swing DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=10.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default WeaponSwitchTime=5.0 UseWeapons=false CharacterProfile=Counter-Striker SeeThroughWalls=true [Bot Profile] Name=cs crouch DodgeProfileNames=cs crouch DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=10.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default WeaponSwitchTime=5.0 UseWeapons=false CharacterProfile=Counter-Striker SeeThroughWalls=true [Bot Profile] Name=cs stop DodgeProfileNames=cs stop DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=10.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default WeaponSwitchTime=5.0 UseWeapons=false CharacterProfile=Counter-Striker SeeThroughWalls=true [Bot Profile] Name=cs peek DodgeProfileNames=cs peek DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=10.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default WeaponSwitchTime=5.0 UseWeapons=false CharacterProfile=Counter-Striker SeeThroughWalls=true [Bot Rotation Profile] Name=cspeekers ProfileNames=cs jiggle;cs swing;cs crouch;cs stop;cs peek ProfileWeights=1.0;1.0;1.0;1.0;1.0 Randomized=true [Character Profile] Name=Counter-Striker MaxHealth=100.0 WeaponProfileNames=AK-47;M4A1-S;M4A4;USP-S;pistol slower;pistol;; MinRespawnDelay=0.0001 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.66 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=1050.0 MaxCrouchSpeed=350.0 Acceleration=6000.0 AirAcceleration=16000.0 Friction=7.5 BrakingFrictionFactor=0.5 JumpVelocity=800.0 Gravity=2.5 AirControl=1.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=true EnemyBodyColor=X=0.546 Y=0.776 Z=0.546 EnemyHeadColor=X=0.608 Y=0.463 Z=0.314 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.149 Y=0.542 Z=1.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=255.0 MainBBRadius=35.0 MainBBHasHead=true MainBBHeadRadius=25.0 MainBBHeadOffset=-5.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=250.0 ProjBBRadius=35.0 ProjBBHasHead=true ProjBBHeadRadius=25.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=512.0 BlockSpawnFOV=25.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Dodge Profile] Name=cs jiggle MaxTargetDistance=10000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.075 MaxLRTimeChange=0.25 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.75 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=2.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.4 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.025 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.0 BlockedMovementReactionMax=0.125 [Dodge Profile] Name=cs swing MaxTargetDistance=10000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.25 MaxLRTimeChange=3.0 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.01 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.05 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.1 MaxJumpTime=0.2 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.4 StrafeSwapMaxPause=0.7 BlockedMovementPercent=0.6 BlockedMovementReactionMin=0.0 BlockedMovementReactionMax=0.125 [Dodge Profile] Name=cs crouch MaxTargetDistance=10000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=2.0 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.1 CrouchInAirFrequency=0.6 CrouchOnGroundFrequency=0.6 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.2 MaxCrouchTime=0.8 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=1.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.0 BlockedMovementReactionMax=0.125 [Dodge Profile] Name=cs stop MaxTargetDistance=10000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.25 MaxLRTimeChange=1.2 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.25 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.01 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.25 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.25 StrafeSwapMaxPause=1.1 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.0 BlockedMovementReactionMax=0.4 [Dodge Profile] Name=cs peek MaxTargetDistance=10000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.01 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.8 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.1 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.4 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.2 MaxCrouchTime=0.4 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.5 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.0 BlockedMovementReactionMax=0.125 [Weapon Profile] Name=AK-47 Type=Hitscan ShotsPerClick=1 DamagePerShot=36.0 KnockbackFactor=0.2 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=4.0 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=4000.0 DamageFalloffStopDistance=7500.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.02 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.2 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=150.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=30 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Quake/Source ADSAllowUserOverrideFOV=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,27.0,-9.0,2.0 SpreadSCA=2.0,27.0,-9.0,2.0 SpreadMSA=2.0,27.0,-9.0,2.0 SpreadMCA=2.0,27.0,-9.0,2.0 SpreadSSH=4.1,40.0,0.1,5.0 SpreadSCH=2.05,40.0,0.0,5.0 SpreadMSH=4.1,400.0,10.0,20.0 SpreadMCH=2.05,40.0,0.0,5.0 MaxRecoilUp=0.4 MinRecoilUp=0.4 MinRecoilHoriz=-0.4 MaxRecoilHoriz=0.4 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.099 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.1 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.08 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=10 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.16 PSRResetDegreesPerSec=35.099998 PSR0=0.5,0.0 PSR1=1.2,-0.1 PSR2=1.7,0.2 PSR3=1.7,0.2 PSR4=1.7,-0.85 PSR5=1.3,-0.45 PSR6=1.3,-0.75 PSR7=0.9,0.75 PSR8=-0.4,2.55 PSR9=0.75,0.95 PSR10=0.75,0.4 PSR11=-0.6,0.4 PSR12=0.35,1.0 PSR13=0.4,0.25 PSR14=-0.9,-1.5 PSR15=0.4,-1.0 PSR16=0.5,-1.3 PSR17=0.1,-1.6 PSR18=-0.7,-1.25 PSR19=0.2,-0.5 PSR20=0.2,0.1 PSR21=0.0,0.5 PSR22=0.3,0.1 PSR23=0.2,0.5 PSR24=0.5,-1.0 PSR25=-0.1,1.2 PSR26=-0.3,1.1 PSR27=-1.2,2.0 PSR28=0.1,1.4 PSR29=-0.1,0.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=M4A1-S Type=Hitscan ShotsPerClick=1 DamagePerShot=33.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=3.0 MagazineMax=20 AmmoPerShot=1 ReloadTimeFromEmpty=1.37 ReloadTimeFromPartial=1.37 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=7000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=200.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=20 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Quake/Source ADSAllowUserOverrideFOV=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=1.5,27.0,-9.0,0.5 SpreadSCA=1.5,27.0,-9.0,0.5 SpreadMSA=1.5,27.0,-9.0,0.5 SpreadMCA=1.5,27.0,-9.0,0.5 SpreadSSH=4.02,40.0,0.1,5.0 SpreadSCH=2.01,40.0,0.0,5.0 SpreadMSH=4.02,400.0,10.0,20.0 SpreadMCH=2.01,40.0,0.0,5.0 MaxRecoilUp=0.3 MinRecoilUp=0.3 MinRecoilHoriz=-0.3 MaxRecoilHoriz=0.3 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.099 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.1 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.09 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=35.0 PSR0=0.4,-0.1 PSR1=0.4,0.0 PSR2=0.9,0.4 PSR3=1.0,-0.5 PSR4=1.0,0.6 PSR5=1.2,0.3 PSR6=0.7,-0.6 PSR7=0.8,-0.5 PSR8=0.3,-1.3 PSR9=0.8,0.5 PSR10=0.3,1.0 PSR11=-0.4,1.2 PSR12=0.0,1.1 PSR13=0.1,1.0 PSR14=-0.2,-0.4 PSR15=0.4,0.1 PSR16=-0.4,1.0 PSR17=0.4,-1.0 PSR18=0.0,1.0 PSR19=-0.1,-1.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=M4A4 Type=Hitscan ShotsPerClick=1 DamagePerShot=33.0 KnockbackFactor=0.2 TimeBetweenShots=0.09 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=2.7 ReloadTimeFromPartial=2.7 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=7500.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.02 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.2 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=225.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=30 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Quake/Source ADSAllowUserOverrideFOV=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,27.0,-9.0,0.75 SpreadSCA=4.0,27.0,-9.0,0.75 SpreadMSA=4.0,27.0,-9.0,0.75 SpreadMCA=4.0,27.0,-9.0,0.75 SpreadSSH=4.01,44.0,0.1,5.0 SpreadSCH=4.05,440.0,0.0,5.0 SpreadMSH=4.01,440.0,10.0,20.0 SpreadMCH=4.05,440.0,0.0,5.0 MaxRecoilUp=0.4 MinRecoilUp=0.4 MinRecoilHoriz=-0.4 MaxRecoilHoriz=0.4 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.089 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.1 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.08 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=10 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.16 PSRResetDegreesPerSec=35.0 PSR0=0.4,-0.25 PSR1=0.4,-0.1 PSR2=0.9,0.5 PSR3=1.2,-0.5 PSR4=1.1,0.4 PSR5=1.3,0.4 PSR6=0.9,-1.0 PSR7=0.7,-0.75 PSR8=0.5,-1.1 PSR9=0.6,-0.3 PSR10=0.7,0.5 PSR11=-0.4,1.5 PSR12=0.1,1.7 PSR13=-0.3,1.3 PSR14=0.2,1.0 PSR15=0.2,-0.9 PSR16=-0.1,0.0 PSR17=0.3,0.5 PSR18=0.2,0.5 PSR19=-0.2,0.5 PSR20=-0.2,-0.75 PSR21=0.5,-2.0 PSR22=-0.2,-0.7 PSR23=0.2,-0.6 PSR24=-0.1,-0.75 PSR25=-0.1,-0.5 PSR26=0.3,0.3 PSR27=0.3,-0.4 PSR28=0.1,-0.2 PSR29=0.15,-0.2 PSR30=0.15,-0.2 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=USP-S Type=Hitscan ShotsPerClick=1 DamagePerShot=33.0 KnockbackFactor=1.0 TimeBetweenShots=0.17 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=4.0 MagazineMax=12 AmmoPerShot=1 ReloadTimeFromEmpty=2.2 ReloadTimeFromPartial=2.2 DamageFalloffStartDistance=300.0 DamageFalloffStopDistance=1000.0 DamageAtMaxRange=33.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=1.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=200.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=12 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Quake/Source ADSAllowUserOverrideFOV=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=5.0,25.0,0.2,7.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=5.0,25.0,0.2,7.0 SpreadMCA=5.0,25.0,0.2,7.0 SpreadSSH=10.2,58.799999,0.2,100.0 SpreadSCH=1.5,50.880001,0.0,0.0 SpreadMSH=1.5,500.880005,5.0,15.0 SpreadMCH=1.5,50.880001,0.0,0.0 MaxRecoilUp=0.4 MinRecoilUp=0.4 MinRecoilHoriz=-0.2 MaxRecoilHoriz=0.2 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.17 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.1 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.08 TriggerBotFOV=1.0 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=pistol slower Type=Hitscan ShotsPerClick=1 DamagePerShot=25.0 KnockbackFactor=4.0 TimeBetweenShots=0.05 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=4.0 MagazineMax=1 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=100.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,0.1,30.0,30.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=pistol Type=Hitscan ShotsPerClick=1 DamagePerShot=25.0 KnockbackFactor=0.0 TimeBetweenShots=0.09 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=4.0 MagazineMax=10 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=100.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=10 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,0.1,30.0,30.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.001 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -256.000000 0.000000 768.000000 768.000000 0.000000 768.000000 768.000000 0.000000 -256.000000 -256.000000 0.000000 -256.000000 -256.000000 -64.000000 768.000000 768.000000 -64.000000 768.000000 768.000000 -64.000000 -256.000000 -256.000000 -64.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -256.000000 0.000000 1792.000000 768.000000 0.000000 1792.000000 768.000000 0.000000 768.000000 -256.000000 0.000000 768.000000 -256.000000 -64.000000 1792.000000 768.000000 -64.000000 1792.000000 768.000000 -64.000000 768.000000 -256.000000 -64.000000 768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 768.000000 0.000000 1792.000000 1792.000000 0.000000 1792.000000 1792.000000 0.000000 768.000000 768.000000 0.000000 768.000000 768.000000 -64.000000 1792.000000 1792.000000 -64.000000 1792.000000 1792.000000 -64.000000 768.000000 768.000000 -64.000000 768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 768.000000 0.000000 768.000000 1792.000000 0.000000 768.000000 1792.000000 0.000000 -256.000000 768.000000 0.000000 -256.000000 768.000000 -64.000000 768.000000 1792.000000 -64.000000 768.000000 1792.000000 -64.000000 -256.000000 768.000000 -64.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -192.000000 32.000000 768.000000 704.000000 32.000000 768.000000 704.000000 32.000000 704.000000 -192.000000 32.000000 704.000000 -192.000000 0.000000 768.000000 704.000000 0.000000 768.000000 704.000000 0.000000 704.000000 -192.000000 0.000000 704.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 704.000000 32.000000 768.000000 768.000000 32.000000 704.000000 768.000000 32.000000 -192.000000 704.000000 0.000000 -192.000000 704.000000 32.000000 -192.000000 768.000000 0.000000 704.000000 768.000000 0.000000 -192.000000 704.000000 0.000000 768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -256.000000 192.000000 832.000000 -192.000000 192.000000 832.000000 -192.000000 192.000000 -192.000000 -256.000000 192.000000 -192.000000 -256.000000 0.000000 832.000000 -192.000000 0.000000 832.000000 -192.000000 0.000000 -192.000000 -256.000000 0.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -256.000000 192.000000 -192.000000 832.000000 192.000000 -192.000000 832.000000 192.000000 -256.000000 -256.000000 192.000000 -256.000000 -256.000000 0.000000 -192.000000 832.000000 0.000000 -192.000000 832.000000 0.000000 -256.000000 -256.000000 0.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 768.000000 192.000000 -64.000000 832.000000 192.000000 -64.000000 832.000000 192.000000 -192.000000 768.000000 192.000000 -192.000000 768.000000 0.000000 -64.000000 832.000000 0.000000 -64.000000 832.000000 0.000000 -192.000000 768.000000 0.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1088.000000 192.000000 64.000000 1152.000000 192.000000 64.000000 1152.000000 192.000000 -256.000000 1088.000000 192.000000 -256.000000 1088.000000 0.000000 64.000000 1152.000000 0.000000 64.000000 1152.000000 0.000000 -256.000000 1088.000000 0.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1472.000000 192.000000 0.000000 1728.000000 192.000000 0.000000 1728.000000 192.000000 -64.000000 1472.000000 192.000000 -64.000000 1472.000000 -64.000000 0.000000 1728.000000 -64.000000 0.000000 1728.000000 -64.000000 -64.000000 1472.000000 -64.000000 -64.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1152.000000 192.000000 -128.000000 1408.000000 192.000000 -128.000000 1408.000000 192.000000 -192.000000 1152.000000 192.000000 -192.000000 1152.000000 0.000000 -128.000000 1408.000000 0.000000 -128.000000 1408.000000 0.000000 -192.000000 1152.000000 0.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 768.000000 192.000000 -256.000000 1152.000000 192.000000 -256.000000 1152.000000 192.000000 -320.000000 768.000000 192.000000 -320.000000 768.000000 0.000000 -256.000000 1152.000000 0.000000 -256.000000 1152.000000 0.000000 -320.000000 768.000000 0.000000 -320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1408.000000 192.000000 192.000000 1472.000000 192.000000 192.000000 1472.000000 192.000000 -192.000000 1408.000000 192.000000 -192.000000 1408.000000 0.000000 192.000000 1472.000000 0.000000 192.000000 1472.000000 0.000000 -192.000000 1408.000000 0.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1216.000000 192.000000 1728.000000 1728.000000 192.000000 1728.000000 1728.000000 192.000000 1216.000000 1216.000000 0.000000 1728.000000 1728.000000 0.000000 1216.000000 1728.000000 0.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000 brush vertices 1728.000000 192.000000 1792.000000 1792.000000 192.000000 1792.000000 1792.000000 192.000000 -64.000000 1728.000000 192.000000 -64.000000 1728.000000 0.000000 1792.000000 1792.000000 0.000000 1792.000000 1792.000000 0.000000 -64.000000 1728.000000 0.000000 -64.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -192.000000 192.000000 832.000000 -64.000000 192.000000 832.000000 -64.000000 192.000000 768.000000 -192.000000 192.000000 768.000000 -192.000000 0.000000 832.000000 -64.000000 0.000000 832.000000 -64.000000 0.000000 768.000000 -192.000000 0.000000 768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -256.000000 192.000000 1152.000000 64.000000 192.000000 1152.000000 64.000000 192.000000 1088.000000 -256.000000 192.000000 1088.000000 -256.000000 0.000000 1152.000000 64.000000 0.000000 1152.000000 64.000000 0.000000 1088.000000 -256.000000 0.000000 1088.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -320.000000 192.000000 1152.000000 -256.000000 192.000000 1152.000000 -256.000000 192.000000 768.000000 -320.000000 192.000000 768.000000 -320.000000 -64.000000 1152.000000 -256.000000 -64.000000 1152.000000 -256.000000 -64.000000 768.000000 -320.000000 -64.000000 768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -192.000000 192.000000 1408.000000 -128.000000 192.000000 1408.000000 -128.000000 192.000000 1152.000000 -192.000000 192.000000 1152.000000 -192.000000 0.000000 1408.000000 -128.000000 0.000000 1408.000000 -128.000000 0.000000 1152.000000 -192.000000 0.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 64.000000 0.000000 1600.000000 256.000000 0.000000 1600.000000 256.000000 0.000000 1536.000000 64.000000 0.000000 1536.000000 64.000000 -64.000000 1600.000000 256.000000 -64.000000 1600.000000 256.000000 -64.000000 1536.000000 64.000000 -64.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -192.000000 192.000000 1472.000000 192.000000 192.000000 1472.000000 192.000000 192.000000 1408.000000 -192.000000 192.000000 1408.000000 -192.000000 0.000000 1472.000000 192.000000 0.000000 1472.000000 192.000000 0.000000 1408.000000 -192.000000 0.000000 1408.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -64.000000 192.000000 1728.000000 0.000366 192.000000 1727.999878 0.000366 192.000000 1472.000122 -63.999878 192.000000 1472.000122 -64.000000 0.000000 1728.000000 0.000366 0.000000 1727.999878 0.000366 0.000000 1472.000122 -63.999878 0.000000 1472.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -64.000000 192.000000 1792.000000 1728.000000 192.000000 1792.000000 1728.000000 192.000000 1728.000000 -64.000000 192.000000 1728.000000 -64.000000 0.000000 1792.000000 1728.000000 0.000000 1792.000000 1728.000000 0.000000 1728.000000 -64.000000 0.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 704.000000 192.000000 704.000000 768.000000 192.000000 704.000000 768.000000 192.000000 -192.000000 704.000000 192.000000 -192.000000 704.000000 0.000000 704.000000 768.000000 0.000000 704.000000 768.000000 0.000000 -192.000000 704.000000 0.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -192.000000 192.000000 768.000000 768.000000 192.000000 768.000000 768.000000 192.000000 704.000000 -192.000000 192.000000 704.000000 -192.000000 0.000000 768.000000 768.000000 0.000000 768.000000 768.000000 0.000000 704.000000 -192.000000 0.000000 704.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -192.000000 0.000000 960.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 0.000000 32.000000 Vector3 angles 45.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -64.000000 0.000000 1280.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 64.000000 0.000000 1600.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 960.000000 0.000000 -192.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1280.000000 0.000000 -64.000000 Vector3 angles -90.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1600.000000 0.000000 64.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0
665c8c25a1e8c6ec1bf4e23138ed39952255478f
449d555969bfd7befe906877abab098c6e63a0e8
/3682/CH10/EX10.5/Ex10_5.sce
13f5389b9209e956acabd761b9f62e015bf6a929
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
654
sce
Ex10_5.sce
// Exa 10.5 clc; clear; // Given data // A 16bit dual slope ADC is specified Va = 4.129; // Input analog Voltage Vr= 8; // Maximum integrator output voltage(Reference Voltage) n=16; // 16 bit counter // Solution disp("Referring to Eqn 10.7 on page no. 365 we get,") // Va = Vr*(N/2^n); N = round(Va * 2^n / Vr); // Digital count printf(' The digital count N = %d for which the binary equivalent = \n',N); // code to convert decimal to binary weuivalent Nbin = [0000000000000000]; while (N > 0 & n > 0) if (modulo(N,2)== 0) Nbin(n)=0; else Nbin(n)=1; end n=n-1; N=int(N/2); end disp((Nbin)');
8749f946140a07f28df66e9674f42c0ca9126fb5
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH4/EX4.7/Ex4_7.sce
da941b99c77d036e087d144f933b01180fabe132
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex4_7.sce
// Example 4_7 clc;funcprot(0); // Given data D_1=0;// m D_2=0.0500;// m Sigma_s=0.0400;// N/m (constant) // Solution A_1=0;// m^2 R_2=D_2/2;// m A_2=2*(4*%pi*R_2^2);// m^2 W_12=-Sigma_s*(A_2-A_1);// J W_12=W_12/1055;// Btu printf('\nThe amount of surface tension work required to inflate the soap bubble,(W_12)_surface tension=%1.2e Btu',W_12);
1bf94afa8a268e0bcf0006d1f02382b92879ee9a
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH8/EX8.4/8_04.sce
46503eb44fa6f7ce3a5942044609fcebea1071fa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
434
sce
8_04.sce
//Chapter 8, Problem 4 clc; l=350*10^-3; //length of conductor I=10; //current r=0.06; //radius of pole phi=0.5*10^-3; //flux A=%pi*r^2; //area of pole B=phi/A; //calculating flux density F=B*I*l; //calculating force printf("Force = %f N",F);
db8341c0fa8e2b596b09b1eb0282dfb7bfe1341e
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH15/EX15.5/15_5.sce
087fb03ff03aa7e29ef5be44b811d08d15ea5a04
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
143
sce
15_5.sce
clear; clc; close; Idc = 50; C = 100; Vdc = 27.9; r = (2.4*Idc/(C*Vdc))*100; disp(r,'Ripple value of capacitor in percentage = ');
9570d14d74567020dcf6a143f06fecd9685c2ef3
449d555969bfd7befe906877abab098c6e63a0e8
/3369/CH3/EX3.15/Ex3_15.sce
6fb064290c22c2f95505f07e8152896227371dc6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex3_15.sce
//Chapter 3, Exmaple 15, page 109 //Mobility of electrons clc clear Ie = 3 d = 0.8 A = 8*10**-4 Vne = 20*10**17 //V*ne e = 1.6*10**-19 ke = (Ie*d)/(A*Vne*e) printf("\Mobility of electrons = %d m^2/s*V ",ke) //Answer may vary from the text
b2e2497fa22d4505c4ece49329bcf97e0f8477bd
449d555969bfd7befe906877abab098c6e63a0e8
/764/CH22/EX22.8.b/Ex22_8.sce
ff6c5ffbabc27ba0e7ba54e34430d71c40c216e7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,787
sce
Ex22_8.sce
clear //Depends on data22_8.sci file //Obtain path of solution file path = get_absolute_file_path('Ex22_8.sce') //Obtain path of data file datapath = path + filesep() + 'data22_8.sci' //Clear all clc //Execute the data file exec(datapath) //Make radius array rad rad = [D1/2, D2/2, D3/2]; //Calculate the tangential stress due to internal pressure sigmat1 (N/mm2) //Store the results in sigmat1 array //Radius varies from D1/2 to D3/2 sigmat1 = []; count = 0; for i = 1:1:3 r = rad(i); count = count + 1; sigmat1(1,count) = ((Pi * D1^2)/(D3^2 - D1^2))*((D3^2/(4 * r^2)) + 1); end //Calculate the tangential stress due to shrinkage pressure for jacket sigmat2 (N/mm2) //Store the results in sigmat2 array //Radius varies from D2/2 to D3/2 //Assume the shrinkage pressure to be 1MPa P P = 1; sigmat2 = []; count = 0; for i = 2:1:3 r = rad(i); count = count + 1; sigmat2(1,count) = ((P * D2^2)/(D3^2 - D2^2))*((D3^2/(4 * r^2)) + 1); end //Calculate the tangential stress due to shrinkage pressure for inner tube sigmat3 (N/mm2) //Store the results in sigmat3 array //Radius varies from D1/2 to D2/2 sigmat3 = []; count = 0; for i = 1:1:2 r = rad(i); count = count + 1; sigmat3(1,count) = ((-1 * P * D2^2)/(D2^2 - D1^2))*((D1^2/(4 * r^2)) + 1); end //Calculate the shrinkage pressure P (MPa) P = (sigmat1(1) - sigmat1(2))/(sigmat2(1) - sigmat3(1)) //Update sigmat2 and sigmat3 with exact values sigmat2 = sigmat2.*P sigmat3 = sigmat3.*P //Calculate the total change in diameter delta (mm) delta = (P * D2/E)*((2* D2^2 * (D3^2 - D1^2))/((D3^2 - D2^2) * (D2^2 - D1^2))) //Calculate the inner diameter of the jacket id (mm) id = D2 - delta //Calculate the resultant stress sigmat4 (N/mm2) //Inner tube sigmat4i = sigmat1(1,1:2) + sigmat3 //Jacket sigmat4j = sigmat1(1,2:3) + sigmat2 //Print results printf("Shrinkage pressure(P) = %f N/mm2 \n",P) printf("Inner diameter of the jacket(id) = %f mm \n",id) printf("Lines are plotted in the curve due to the consideration of only 3 points") //Plot all the tangential stresses in single plot figure(1); //Internal pressure //xset("line style", 4) //plot2d(rad, sigmat1, style = 6) plot(rad, sigmat1, '-ro') //Shrinkage pressure //xset("line style", 3) //plot2d([rad(1,1:2), rad(1,2:3)], [sigmat3, sigmat2], style = 7) plot([rad(1,1:2), rad(1,2:3)], [sigmat3, sigmat2], '-bx') //Resultant stress //xset("line style", 5) //plot2d([rad(1,1:2), rad(1,2:3)], [sigmat4i, sigmat4j], style = 2) plot([rad(1,1:2), rad(1,2:3)], [sigmat4i, sigmat4j], '-m*') title("Tangential stresses distribution") xlabel("Radius(mm)") ylabel("Tangential stress(N/mm2)") legend('Due to internal pressure', 'Due to shrinkage pressure', 'Resultant stresses')
2dfbe3ffe31fd9404ce2cc0380f758bd7f7b44e5
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH27/EX27.5/Example27_5.sce
3c2483801d24c2f5bf5db2ffe4842fb5897834c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
462
sce
Example27_5.sce
//Given that e = 1.6*10^-19 //in C Re = 1.69*10^-8 //in Ohm.m n = 8.49*10^28 m = 9.1*10^-31 //mass of electron in kg Veff = 1.6*10^6 //in m/s //Sample Problem 27-5a printf("**Sample Problem 27-5a**\n") //resistivity = m/(n*e^2*t) t = m/(n*e^2*Re) printf("The mean free time between two collision is %es\n", t) //Sample Problem 27-5b printf("\n**Sample Problem 27-5b**\n") lambda = Veff*t printf("The mean free path is equal to %em", lambda)
a746a4540c5d72a222f44e590d8e4274dd660096
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/hanning.sci
60ca783ccfac1c1a02161ffc79de1c04f31ccb06
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
828
sci
hanning.sci
function y = hanning(m, varargin) //Return the filter coefficients of a Hanning window of length M //Calling Sequence //hanning (M) //hanning (M, "periodic") //hanning (M, "symmetric") //Parameters //M: real scalar, which will be the length of hanning window //Description //Return the filter coefficients of a Hanning window of length M. //If the optional argument "periodic" is given, the periodic form of the window is returned. This is equivalent to the window of length M+1 with the last coefficient removed. The optional argument "symmetric" is equivalent to not specifying a second argument. funcprot(0); rhs= argn(2); if(rhs <1 | rhs>2) error("Wrong number of Input parameters"); end select(rhs) case 1 then y= callOctave("hanning", m); case 2 then y= callOctave("hanning", m , varargin(1)); end endfunction
444e626ed0ba8fdfacc6d24e709daefee4f5ae4b
449d555969bfd7befe906877abab098c6e63a0e8
/746/DEPENDENCIES/9_07.sci
a6add1b08ee3e2cc7f33499763e4ab161713d70e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
321
sci
9_07.sci
//Weight of the dragster(in lbf): w=1600; //Speed of dragster(in mph): s1=270; //Area of drag chute(in ft^2): A=25; //Speed of dragster after deceleraton(in mph): s2=100; //Acceleration due to gravity(in ft/sec^2): g=32.2; //Density of air(in slug/ft^3): d=0.00238; //Value of coefficient of drag: Cd=1.42;
0483d7f268491e96fc76679a4390cf729548d090
48355d97461898b3f45c6ade638f3d55ba879607
/scilab/mota_motp.sce
d673d269b28cfd445cbc23c63a6d274e4d7ad966
[ "MIT" ]
permissive
edison2301/pipol_tracker
5756a7f79f3fe7f022b595cf70cb31ef771d1eb2
5056dd3858cdb5139373862da220082191301d2c
refs/heads/master
2021-01-15T12:31:21.679183
2015-07-10T16:11:02
2015-07-10T16:11:02
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
10,944
sce
mota_motp.sce
// clear all xdel(winsid()); clear; //includes exec('/home/andreu/dev/ros_ws/src/pipol_tracker/scilab/munkres.sci'); //gt file fd_gt=mopen('/home/andreu/dataSets/people_tracking/reem/ground_truth/20140925_FollowMe.txt','r'); //fd_gt=mopen('/home/andreu/dataSets/people_tracking/reem/ground_truth/20140925_robotMoving.txt','r'); //fd_gt=mopen('/home/andreu/dataSets/people_tracking/reem/ground_truth/20140926_twoPeople.txt','r'); //tracks file fd_tracks=mopen('/home/andreu/dataSets/people_tracking/reem/tracker_results/20140925_FollowMe_tree_all_30hz_1.txt','r'); //fd_tracks=mopen('/home/andreu/dataSets/people_tracking/reem/tracker_results/20140925_robotMoving_tree_all_20hz_11.txt','r'); //fd_tracks=mopen('/home/andreu/dataSets/people_tracking/reem/tracker_results/20140926_twoPeople_nn_all_20hz_9.txt','r'); //fd_tracks=mopen('/home/andreu/dataSets/people_tracking/reem/tracker_results/pt_out.txt','r'); //plot y/n plot_flag = 0; //GROUND TRUTH PARSING gt = list(); while (1) do gt_row = []; str_line = mgetl(fd_gt,1); if length(str_line) < 2 then break; else tkns = tokens(str_line,' '); for i=1:size(tkns,1) gt_row = [gt_row strtod(tkns(i))]; end gt($+1) = gt_row; end end //TRACKER OPUTPUT PARSING tracks = list(); while (1) do tracks_row=[]; str_line = mgetl(fd_tracks,1); if length(str_line) < 2 then break; else tkns = tokens(str_line,' '); for i=1:size(tkns,1) tracks_row = [tracks_row strtod(tkns(i))]; end tracks($+1) = tracks_row; end end //delete tracks rows out of ground truth time interval while ( tracks(1)(1) < gt(1)(1) ) tracks(1) = null(); end while ( tracks($)(1) > gt($)(1) ) tracks($) = null(); end //interpolate ground truth at result time stamp point ii = 1; gt_intp = list(); for tt=1:size(tracks) ts = tracks(tt)(1);//get time stamp gt_intp_row = ts; while ( ts > gt(ii)(1) ) do ii = ii + 1; end ts_gt_1 = gt(ii-1)(1);//ts just before ts_gt_2 = gt(ii)(1);//ts just after alpha = (ts - ts_gt_1) / (ts_gt_2 - ts_gt_1); Nt_gt = ( min( size(gt(ii),2),size(gt(ii-1),2) ) -1 ) / 3; //number of targets if Nt_gt > 0 then for kk=1:Nt_gt //check "out of horizon" if ( gt(ii-1)(kk*3) < 0 ) | ( gt(ii-1)(kk*3) < 0 ) then gt_x = -1; //label as "out of horizon" gt_y = -1; //label as "out of horizon" else //compute linear interpolation gt_x = alpha*gt(ii)(kk*3) + (1-alpha)*gt(ii-1)(kk*3); gt_y = alpha*gt(ii)(kk*3+1) + (1-alpha)*gt(ii-1)(kk*3+1); end gt_intp_row = [gt_intp_row gt(ii-1)(kk*3-1) gt_x gt_y]; end end gt_intp($+1) = gt_intp_row; end //set up plot if plot_flag then fig1 = figure(0); fig1.background = 8; ah = gca(); ah.isoview = "on"; ah.x_label.text = "$y [m] (lateral)$"; ah.x_label.font_size = 4; ah.y_label.text = "$x [m] (fwd)$"; ah.y_label.font_size = 4; ah.grid = [1,1,1]; ah.grid_position = "background"; ah.auto_clear = "off"; ah.auto_scale = "off"; ah.data_bounds = [-3 0; 3 5]; plot_colors = ["r";"g";"b";"k";"y"]; end //inits before enetring to main loop dd = 0; total_matches = 0; motp = []; mota = []; id_switch = 0; fn_count = 0; fp_count = 0; total_gt_targets = 0; //MAIN LOOP TO COMPUTE MOT METRICS for tt=1:size(tracks) //tt tracker iteration index (coincide with gorund truth interpolation index) //1. Filter out tracks with status lower than 15 Nt_tracks = (size(tracks(tt),2)-1) / 4; //number of tracks (all) tk_sel = tracks(tt)(1); //This row will keep track selection with status > 15. Row init with timestamp for kk= 1:Nt_tracks if tracks(tt)(kk*4-1) >= 15 then tk_sel = [tk_sel tracks(tt)(kk*4-2:kk*4+1)] end end //2. Build D2 matrix. Sq Euclidean distance between all track-gt pairs. Count fp or fn when Nt_gt ~= Nt_tracks Nt_gt = (size(gt_intp(tt),2)-1) / 3; //number of gt targets Nt_tracks = (size(tk_sel,2)-1) / 4; //number of track targets (selected according status) if Nt_gt > Nt_tracks then //there are false negatives: true targets not tracked fn_count = fn_count + (Nt_gt-Nt_tracks); end if Nt_tracks > Nt_gt then //there are false positives: false targets being tracked fp_count = fp_count + (Nt_tracks-Nt_gt); end D2 = zeros(Nt_gt, Nt_tracks); for ii=1:Nt_gt //ii row/gt index gt_pos = [gt_intp(tt)(ii*3); gt_intp(tt)(ii*3+1)]; //get ii gt position for jj= 1:Nt_tracks //jj column/track index tk_pos = [tk_sel(jj*4); tk_sel(jj*4+1)]; //get jj track position D2(ii,jj) = (tk_pos(1)-gt_pos(1))^2 + (tk_pos(2)-gt_pos(2))^2; //sq euclidean distance end end //2. Check if any gt is further than d2_th to all tracks d2_th = 0.5*0.5; //0.5m threshold D2_chkd_rows = []; unassociated_gt_ids = []; associated_gt_ids = []; for ii=1:Nt_gt if ( min( D2(ii,:) ) > d2_th ) then unassociated_gt_ids = [unassociated_gt_ids gt_intp(tt)(ii*3-1)]; //save gt id as unassociated fn_count = fn_count + 1; //false negative: a true target is not being tracked else D2_chkd_rows = [D2_chkd_rows; D2(ii,:)]; associated_gt_ids = [associated_gt_ids gt_intp(tt)(ii*3-1)]; //save gt id as associated end end //3. In case D2_chkd_rows is non-empty, Check if any track is further than d2_th to all gt's unassociated_tk_ids = []; associated_tk_ids = []; D2_chkd = []; if ( size(associated_gt_ids) == 0 ) then //fp_count = fp_count + Nt_tracks; //in case of no gt association, all tracks are false positives. D2_chkd remains void else for jj=1:Nt_tracks if ( min( D2_chkd_rows(:,jj) ) > d2_th ) then unassociated_tk_ids = [unassociated_tk_ids tk_sel(jj*4-2)]; //save track id as unassociated fp_count = fp_count + 1; //false positives: a false target is being tracked else D2_chkd = [D2_chkd D2_chkd_rows(:,jj)]; associated_tk_ids = [associated_tk_ids tk_sel(jj*4-2)]; //save track id as associated end end end //4. gt-tracks assignment. Call to Munkres' Algorithm when more than 1 is involved mapping_current = []; [Nt_gt2 Nt_tracks] = size(D2_chkd); if ( Nt_gt2 > 0 ) then //to avoid degenerate case where no potential matchings exist if size(associated_gt_ids) == 1 then //case with a single gt. Find the nearest track and assign to it mapping_current = [associated_gt_ids(1) associated_tk_ids(find(~(D2_chkd(1,:)-min(D2_chkd(1,:))),1))]; //fp_count = fp_count + Nt_tracks-1; //all other tracks count as false positives else if size(associated_tk_ids) == 1 then //case with a single tk. Find the nearest gt and assign to it mapping_current = [associated_gt_ids(find(~(D2_chkd(:,1)-min(D2_chkd(:,1))),1)) associated_tk_ids(1)]; //fn_count = fn_count + Nt_gt2-1; //all other gt's count as false negatives else //general case. Munkres algorithm munkres_result = munkres(D2_chkd); npairs = size(munkres_result,1); for kk=1:npairs mapping_current = [mapping_current; associated_gt_ids(munkres_result(kk,1)) associated_tk_ids(munkres_result(kk,2))]; end end end end //5. compute MOTP npairs = size(mapping_current,1); for kk=1:npairs ii = 1; jj=1; while gt_intp(tt)(ii*3-1) ~= mapping_current(kk,1) ii = ii+1; end while tracks(tt)(jj*4-2) ~= mapping_current(kk,2) jj = jj+1; end gt_pos = [gt_intp(tt)(ii*3); gt_intp(tt)(ii*3+1)]; //gt ii position tk_pos = [tracks(tt)(jj*4); tracks(tt)(jj*4+1)]; //track jj position dd = dd + sqrt( (gt_pos(1)-tk_pos(1))^2 + (gt_pos(2)-tk_pos(2))^2 ); total_matches = total_matches + 1; motp = [motp dd/total_matches]; end //6. Compute MOTA if tt > 1 then //Check if ID switches by comparing current and previous mappings id_switch = 0; npairs_c = size(mapping_current,1); npairs_p = size(mapping_previous,1); for kk=1:npairs_c gt_id = mapping_current(kk,1); ii = find(~(mapping_previous(:,1)-gt_id)); if ii == 1 then //this gt_id was already there at the previous iteration if mapping_current(kk,2) ~= mapping_previous(ii,2) then //but different assignment at previous iteration id_switch = id_switch + 1; end end end end mapping_previous = mapping_current; total_gt_targets = total_gt_targets + Nt_gt if total_gt_targets ~= 0 then mota = [mota 1 - (fn_count + fp_count + id_switch)/total_gt_targets]; end //7. DISPLAY disp("New iteration--------"); // mprintf('TS: %10.10f\n', tracks(tt)(1)); // disp('D2_chkd:'); disp(D2_chkd); // disp('fn_count:'); disp(fn_count); // disp('fp_count:'); disp(fp_count); // disp('mapping:'); disp(mapping_current); disp('motp:'); disp(motp($)); disp('mota:'); disp(mota($)); //8. PLOT if plot_flag then if Nt_gt2 > 0 then for ii=1:Nt_gt2 gt_id = gt_intp(tt)(ii*3-1); color_id = plot_colors(pmodulo(gt_id-1,5)+1); plot(-gt_intp(tt)(ii*3+1),gt_intp(tt)(ii*3), color_id + '+'); end end if Nt_tracks > 0 then for jj=1:Nt_tracks if tracks(tt)(jj*4-1) > 15 then //check status value: Visually confirmed or higher tk_id = tracks(tt)(jj*4-2); ii = find(~(mapping_current(:,2)-tk_id)); //in the mapping, look for the row corresponding to this track if size(ii) == 1 then //check there is association with gt ii = mapping_current(ii,1); //get associated gt from mapping gt_id = gt_intp(tt)(ii*3-1);//get the associated ground truth id color_id = plot_colors(pmodulo(gt_id-1,5)+1); plot(-tracks(tt)(jj*4+1),tracks(tt)(jj*4), color_id + '.'); end end end end end end //COMPUTE DISTANCES -> MOTP //CHECK MAPPING SWITCHES -> sw //COUNT FALSE POSITIVES -> fp_count //COUNT FALSE NEGATIVES -> fn_count //COMPUTE MOTA = (sw,fp,m) //close file mclose(fd_gt); mclose(fd_tracks);
7ee5a4bf3c67f2e3b37c578db2f3f37364c4216a
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH26/EX26.3/HG_3.sce
3de8d145585d914f06520b47aa5cc29a93103f47
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
583
sce
HG_3.sce
// sum 26-3 clc; clear; Zp=24; Zg=72; alphan=20*%pi/180; phi=24*%pi/180; N=720; mn=5; b=50; sigut=600; BHN=360; Cs=1.4; FOS=2; sigb=sigut/3; dp=mn*Zp/cos(phi); Zp=Zp/(cos(phi))^3; Zg=Zg/(cos(phi))^3; Y=0.358+((0.364-0.358)*1.48/2); Sb=b*mn*sigb*Y; Q=(2*Zg)/(Zp+Zg); K=0.16*(BHN/100)^2; Sw=b*dp*Q*K/(cos(phi)^2); v=2*%pi*N*dp/(60*2*1000); Cv=5.6/(5.6+sqrt(v)); Peff=Sb/FOS; Pt=Peff*Cv/Cs; P=Pt*v; P=P*10^-3; // printing data in scilab o/p window printf("P is %0.3f kW ",P); //The difference in the value is due to rounding-off of the values.
544acd4e0c75b73ee9ba127454c514cc65344fe5
449d555969bfd7befe906877abab098c6e63a0e8
/3784/CH2/EX2.9/Ex2_9.sce
aff594e50fcda16ae497e7a016c93b7fce2f45ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
294
sce
Ex2_9.sce
clc //variable initialisation V=440 //voltage in volts P=100e+3 //power in Watts N=900 //speed in rpm V1=415 //supply voltage in volts //solution k=(3*sqrt(2))/%pi a=acosd(V/(k*V1)) V2=0.5*V//At 50% of rated speed a1=acosd(V2/(k*V1)) printf('\n\n The Firing Angle=%0.1f\n\n',a1)
3e52ca5d250f916612bda191b594b6bfd0234d54
449d555969bfd7befe906877abab098c6e63a0e8
/1052/CH7/EX7.2/72.sce
989a9daf48398ea1c072dc7bfcab3e971d5b518a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,111
sce
72.sce
clc; //Example 7.2 //page no. 65 printf("Example 7.2 page no. 65\n\n"); //water flowing through a converging circular pipe fig 7.3 //we have to determine mass and volumatric flow rates, mass flux of water D1=.14// diameter of pipe at section 1 D2=.07//diameter of pipe at section2 v1=2//velocity at section S1=%pi*(D1^2)/4//surface area at section 1 rho=1000//density of water printf("\n diameter D1=%f m\n diameter D2=%f m\n v1=%f m/s\n Surface area S1=%f m^2\n density of water rho=%f kg/m^3 ",D1,D2,v1,S1,rho); q1= S1*v1//volumatric flow rate at section 1 m1=rho*q1//mass flow rate at section 1 G=m1/S1//mass flux at section 1 printf("\n volumatric flow rate q1=%f m^3/s\n mass flow ratem1=%f kg/s\n mass flux G=%f kg/m^2*s",q1,m1,G); S2=(%pi*D2^2)/4 q2=q1//q2 volumatric flow rate at section 2,due to steady flow q1=q2 printf("\n surface areaS1=%f m^2\n volumatric flow rate q2=%f m^3/s",S1,q1) v2=(v1*S1)/S2//v2 velocity at section 2 printf("\n velocity v2=%f m/s",v2) //conclusion :decrease cross section area results in an increase in flow velocity for an incompressible fluid.
3ba7bb1bce75db0c99000a9f68ff97b0d7eb288e
b12941be3faf1fd1024c2c0437aa3a4ddcbbfd67
/normal2/fase_4.tst
1252dfb2215fc9a8f141309a24e2d016bfad83d1
[]
no_license
JanWielemaker/optica
950bd860825ab753236ce1daa399ee7a0b31b3ee
3a378df314b5a60926b325089edac89c00cc8c6d
refs/heads/master
2020-06-12T14:22:46.567191
2019-06-21T11:24:41
2019-06-21T11:24:41
194,328,239
0
0
null
null
null
null
UTF-8
Scilab
false
false
12,343
tst
fase_4.tst
/* Questionaire created by optica toolkit Date: Tue Mar 24 11:20:47 1998 */ question(1, '4.21', 'Wanneer komt het beeldpunt meer naar rechts te liggen?', [ 'Als je de linker lens iets naar links verschuift.', 'Als je de rechter lens iets naar links verschuift.', 'Als je de lamp iets naar links verschuift.' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(15), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9.95), show_gauge(true), instrument_name(lens)), l1 = lamp3(switch(true), angle(0), divergence(5), pos_x(4), pos_y(0), instrument_name(lamp3)) ])). question(2, '4.22', 'Wanneer komt het beeldpunt meer naar links te liggen?', [ 'Als je de linker lens iets naar links verschuift.', 'Als je de rechter lens iets naar rechts verschuift.', 'Als je de lamp iets naar rechts verschuift.' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(15), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(-4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9.95), show_gauge(true), instrument_name(lens)), l1 = lamp3(switch(true), angle(0), divergence(5), pos_x(4), pos_y(0), instrument_name(lamp3)) ])). question(3, '4.23', 'Wanneer komt het virtueel beeldpunt meer naar links te liggen?', [ 'Als je de linker lens iets naar links verschuift.', 'Als je de rechter lens iets naar links verschuift.', 'Als je de lamp iets naar links verschuift.' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(17), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9), show_gauge(true), instrument_name(lens)), l1 = lamp3(switch(true), angle(0), divergence(5), pos_x(4), pos_y(0), instrument_name(lamp3)) ])). question(4, '4.24', 'Wanneer komt het virtueel beeldpunt meer naar rechts te liggen?', [ 'Als je de linker lens iets naar links verschuift.', 'Als je de rechter lens iets naar links verschuift.', 'Als je de lamp iets naar links verschuift.' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(-8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(10), show_gauge(true), instrument_name(lens)), l1 = lamp3(switch(true), angle(0), divergence(5), pos_x(4), pos_y(0), instrument_name(lamp3)) ])). question(5, '4.25', 'Het afgebeelde lenzenstelsel kan vervangen worden door een enkele lens met een brandpuntsafstand van 6,67 cm. Op welke plek moet de vervangende lens worden neergezet om dezelfde vergroting te krijgen?', [ 'Op 10 cm van de lamp.', 'Op 15 cm van de lamp.', 'Op 20 cm van de lamp.' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(10), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12.95), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(10), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(6.4), show_gauge(true), instrument_name(lens)), l1 = lamp3(switch(true), angle(0), divergence(5), pos_x(0), pos_y(2), instrument_name(lamp3)), c4 = construction_line(orientation(vertical), value(30), instrument_name(consline)), d3 = ruler(from(l1), to(c4), offset(4.4)), c9 = construction_line(orientation(horizontal), value(-3.95), instrument_name(hconsline)), c10 = construction_line(orientation(horizontal), value(2.05), instrument_name(hconsline)), c11 = construction_line(orientation(horizontal), value(0.05), instrument_name(hconsline)), d14 = ruler(from(c10), to(c11), offset(0.9)), d15 = ruler(from(c11), to(c9), offset(24.15)) ])). question(6, '4.26', 'Het afgebeelde lenzenstelsel kan vervangen worden door een enkele lens met een brandpuntsafstand van 3.34 cm. Op welke plek moet de vervangende lens worden neergezet om dezelfde vergroting te krijgen?', [ 'Op 5 cm van de lamp.', 'Op 6.67 cm van de lamp.', 'Op 10 cm van de lamp.' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(3), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9.45), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(-8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(6.25), show_gauge(true), instrument_name(lens)), l1 = lamp3(switch(true), angle(-12), divergence(5), pos_x(0), pos_y(4), instrument_name(lamp3)), c4 = construction_line(orientation(vertical), value(15), instrument_name(consline)), c13 = construction_line(orientation(horizontal), value(4.05), instrument_name(hconsline)), c14 = construction_line(orientation(horizontal), value(0.05), instrument_name(hconsline)), c15 = construction_line(orientation(horizontal), value(-1.95), instrument_name(hconsline)), d23 = ruler(from(c14), to(c15), offset(20.55)), d24 = ruler(from(c13), to(c14), offset(2.45)), d25 = ruler(from(l1), to(c4), offset(6.25)) ])). question(7, '4.27', 'Het afgebeelde lenzenstelsel kan vervangen worden door een enkele lens op 15 cm rechts van de lamp. Wat is de brandpuntsafstand van die vervangende lens?', [ '5 cm.', '7,5 cm.', '10 cm.' ], state(state, '', [ m4 = lens(label(''), radius(5), thickness(0.1), focal_distance(-5), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(7.95), show_gauge(true), instrument_name(lens)), c16 = construction_line(orientation(vertical), value(0), instrument_name(consline)), l4 = lamp3(switch(true), angle(-2.5), divergence(5), pos_x(0), pos_y(2), instrument_name(lamp3)), m6 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(11.75), show_gauge(true), instrument_name(lens)), c19 = construction_line(orientation(horizontal), value(-1.95), instrument_name(hconsline)), c20 = construction_line(orientation(horizontal), value(0), instrument_name(hconsline)), d32 = ruler(from(c20), to(c19), offset(26.8)), c21 = construction_line(orientation(vertical), value(30), instrument_name(consline)), d33 = ruler(from(l4), to(c21), offset(4.65)), c22 = construction_line(orientation(horizontal), value(2), instrument_name(hconsline)), d35 = ruler(from(c20), to(c22), offset(1.8)) ])). question(8, '4.28', 'Het afgebeelde lenzenstelsel kan vervangen worden door een enkele lens op 10 cm rechts van de lamp. Wat is de brandpuntsafstand van die vervangende lens?', [ '6 cm.', '8 cm.', '15 cm.' ], state(state, '', [ m4 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(7.8), show_gauge(true), instrument_name(lens)), c16 = construction_line(orientation(vertical), value(0), instrument_name(consline)), l4 = lamp3(switch(true), angle(-10), divergence(5), pos_x(0), pos_y(3), instrument_name(lamp3)), c19 = construction_line(orientation(horizontal), value(-4.5), instrument_name(hconsline)), c20 = construction_line(orientation(horizontal), value(0), instrument_name(hconsline)), d32 = ruler(from(c20), to(c19), offset(26.8)), c21 = construction_line(orientation(vertical), value(24.95), instrument_name(consline)), d33 = ruler(from(l4), to(c21), offset(4.65)), c22 = construction_line(orientation(horizontal), value(2.95), instrument_name(hconsline)), d35 = ruler(from(c20), to(c22), offset(1.8)), m7 = lens(label(''), radius(5), thickness(0.1), focal_distance(-4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(4.75), show_gauge(true), instrument_name(lens)) ])). question(9, '4.29', 'Op de afgebeelde hulplijn links wordt een lamp met een divergerende lichtbundel geplaatst. Waar zal het beeldpunt komen?', [ 'Op 16 cm rechts van de lamp.', 'Op 18 cm rechts van de lamp.', 'Op 20 cm rechts van de lamp.' ], state(state, '', [ m4 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12), show_gauge(true), instrument_name(lens)), m5 = lens(label(''), radius(5), thickness(0.1), focal_distance(-8), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8), show_gauge(true), instrument_name(lens)), c16 = construction_line(orientation(vertical), value(0), instrument_name(consline)), d28 = ruler(from(c16), to(m5), offset(4.5)), d29 = ruler(from(c16), to(m4), offset(2.95)) ])). question(10, '4.30', 'Op de afgebeelde hulplijn wordt een lamp met een divergerende lichtbundel geplaatst. Waar zal het virtueel beeldpunt komen?', [ 'Op 8 cm rechts van de lamp.', 'Op 12 cm rechts van de lamp.', 'Op 16 cm rechts van de lamp.' ], state(state, '', [ m4 = lens(label(''), radius(5), thickness(0.1), focal_distance(-6), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12), show_gauge(true), instrument_name(lens)), m5 = lens(label(''), radius(5), thickness(0.1), focal_distance(-6), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(19.95), show_gauge(true), instrument_name(lens)), c16 = construction_line(orientation(vertical), value(0), instrument_name(consline)), d28 = ruler(from(c16), to(m5), offset(4.5)), d29 = ruler(from(c16), to(m4), offset(2.95)) ])).
5d0d0f1061c616c21bfbb48676cfe0d8e33925a1
ca0ea3139875f786caa2df8ef9ada885b326dd6f
/scilab/trabalho2adaline.sce
24b98ff56fb17a7fcc7dc03a5754eeb16cefedb1
[]
no_license
hitokey/exemplo-machine-learning
f0186a4e7acced7de16af6c96f3337129159225b
2635ef2c88765b58267691a45a4b53f8d7207f2d
refs/heads/master
2023-03-13T15:43:34.970552
2021-03-06T07:57:25
2021-03-06T07:57:25
289,837,645
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,491
sce
trabalho2adaline.sce
clc; clear; x = [ 1.0 1.0 1.1 1.5 2.5 1.7 1.0 2.0 0.3 1.4 2.8 1.0 0.8 1.5 2.5 0.5 2.3 1.0 0.5 1.1 1.9 1.3 2.0 0.9 0.5 1.8 2.1 0.6]; t = [1 1 -1 1 1 -1 1 -1 -1 1 -1 -1 1 -1]; /* clf(); set(gca(), "auto_scale", "on"); set(gca(), "data_bounds", [-3,-3; 3,3]); title("Dados trabalho 2"); xlabel("s1"); ylabel("s2"); da=gda(); da.y_location="origin"; da.x_location="origin"; for point=1:14 if t(point)==1 plot(x(point,1),x(point,2), 'bpentagram'); else plot(x(point,1),x(point,2), 'rpentagram'); end end */ wa = 0.5 - rand(1,2,"uniform"); ba = 0.5 - rand(); teta =0; alfa = 0.4; ncli=300; ciclos=0; mprintf("Train"); while ciclos<ncli erroq = 0; ciclos=ciclos+1; for inp = 1:14 yl = wa(1)*x(inp,1)+wa(2)*x(inp,2)+ba; y=yl; erroq = erroq+(t(inp)-y)^2; wn(1)=wa(1)+alfa*(t(inp)-y)*x(inp,1); wn(2)=wa(2)+alfa*(t(inp)-y)*x(inp,2); bn = ba + alfa*(t(inp)-y); wa=wn; ba=bn end //plot(ciclos,erroq,'r*'); end mprintf('Wn: %d %d - bn %d\n', wn(1),wn(2),bn); mprintf('Test'); for inp=1:14 yl = wn(1)*x(inp,1)+wn(2)*x(inp,2)+bn; if yl >= teta y=1; else y=-1; end mprintf('t(%d)= %d %d\n',inp,t(inp),y) end /* for abc = -3:0.1:3 ord = (-abc*wn(1)-bn)/wn(2); plot(abc,ord,'g.'); end */
132dd43c6fbdc50a9bef369076a4af807b43728c
449d555969bfd7befe906877abab098c6e63a0e8
/2507/CH10/EX10.2/Ex10_2.sce
c5e34aec22b62e1b0ecc3aa544105074115c6314
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
251
sce
Ex10_2.sce
clc clear printf("Example 10.2 | Page number 333 \n\n"); //Find the ratio of mass of saturated liquid to saturated steam //Given Data x = 0.85 //quality of steam printf("The ratio of mass of saturated liquid to saturated steam = %.5f",(1-x)/x)
1bf6e114f368b32be0df3010018b981c56044607
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH8/EX8.8/Example8_8.sce
cc7f378066b9396c8515a7de6183bafc5d2fb1ca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
Example8_8.sce
//clear// //Caption: Program to percentage of burst error detected by CRC //Example8.8 //page 309 clear; clc; close; N =32; Ped = 1-(1/(2^N)); disp(Ped*100,'Percent of burst error detected by CRC for a length of 32 Ped=') //Result //Percent of burst error detected by CRC for a length of 32 Ped=100.
08f5a7ec65bac5b0cf5e26c31c83d55ab37dd544
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/errbar.man.tst
1bfed41da3e6d879df578beb9936e178acb03d0f
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
112
tst
errbar.man.tst
clear;lines(0); t=[0:0.1:2*%pi]'; y=[sin(t) cos(t)]; x=[t t]; plot2d(x,y) errbar(x,y,0.05*ones(x),0.03*ones(x))
f00dbc087a91ca23186d9995f8d81cbd096c7822
449d555969bfd7befe906877abab098c6e63a0e8
/1133/CH4/EX4.4/Example4_4.sce
dd76da165decc202a63b60a275185c2fa1bd4200
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
647
sce
Example4_4.sce
//Example 4.4 clc disp("Using the expression for the frequency") disp("Now, f = 1 / 2*pi*R*C*sqrt(6)") f=(1/(sqrt(6)*2*%pi*9.7*5*10^6))*10^9 // in nF format(5) disp(f,"Therefore, C(in nF) =") disp("Now using the equation(27)") disp(" |A| = g_m * R_L") disp("Therefore, |A| >= 29") disp("Therefore, g_m * R_L >= 29") rl=(29/(5000*10^-6))*10^-3 // in k-ohm format(4) disp(rl,"Therefore, R_L(in k-ohm) >= 29 / g_m =") disp(" R_L = R_D*r_d / R_D+r_d") rd=(40)/4.8823 format(5) disp(rd," Therefore, R_D(in k-ohm) = ") disp("While for minimum value of R_L = 5.8 k-ohm") disp(" R_D = 6.78 k-ohm")
29a95c8e9fd87c9fdd8f86aea3cb4e44c7341bae
449d555969bfd7befe906877abab098c6e63a0e8
/3636/CH3/EX3.3/Ex3_3.sce
c1fae7fbd54485ee9a25c414104ca8d9a7fa7b6a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
203
sce
Ex3_3.sce
clear; clc; ml=0.98//*m0 mt=0.19//*m0 //rest mass m0 = 9.1*10^-31 kg //Calculation mn=6^(2/3)*(ml*mt^2)^(1/3) mprintf("Density of states effective mass of electrons in silicon= %1.1f m0",mn)
ccd74e1248b96650624944c84cc9c351feef16b9
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/ada/acats/tests/c4/c45231d.tst
66be11b1ba0fb3080fc1ac52eda7ed5baeb75cc8
[ "LGPL-2.1-only", "FSFAP", "LGPL-3.0-only", "GPL-3.0-only", "GPL-2.0-only", "GCC-exception-3.1", "LGPL-2.0-or-later", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
Scilab
false
false
7,906
tst
c45231d.tst
-- C45231D.TST -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT THE RELATIONAL AND MEMBERSHIP OPERATIONS YIELD CORRECT -- RESULTS FOR PREDEFINED TYPE $NAME (INCLUDING THE CASE IN -- WHICH THE RELATIONAL OPERATORS ARE REDEFINED). -- SUBTESTS ARE: -- (A). TESTS FOR RELATIONAL OPERATORS. -- (B). TESTS FOR MEMBERSHIP OPERATORS. -- (C). TESTS FOR MEMBERSHIP OPERATORS IN THE CASE IN WHICH THE -- RELATIONAL OPERATORS ARE REDEFINED. -- APPLICABILITY CRITERIA: -- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS THAT SUPPORT A -- PREDEFINED INTEGER TYPE OTHER THAN INTEGER, SHORT_INTEGER, OR -- LONG_INTEGER. -- IF NO SUCH PREDEFINED INTEGER TYPE IS SUPPORTED, THEN THE -- SPECIFICATION OF THE FUNCTION IDENT MUST BE REJECTED. -- MACRO SUBSTITUTION: -- $NAME IS A PREDEFINED INTEGER TYPE OTHER THAN INTEGER, -- SHORT_INTEGER, AND LONG_INTEGER. -- HISTORY: -- RJW 02/04/86 -- THS 04/16/90 ADDED OMITTED "-- N/A => ERROR." MESSAGE AND -- MODIFIED HEADER. WITH REPORT; USE REPORT; PROCEDURE C45231D IS FUNCTION IDENT (X : $NAME) RETURN $NAME IS -- N/A => ERROR. BEGIN RETURN $NAME (IDENT_INT (INTEGER (X))); END IDENT; BEGIN TEST ( "C45231D", "CHECK THAT THE RELATIONAL AND " & "MEMBERSHIP OPERATIONS YIELD CORRECT " & "RESULTS FOR PREDEFINED TYPE $NAME " & "(INCLUDING THE CASE IN WHICH THE " & "RELATIONAL OPERATORS ARE REDEFINED)" ); DECLARE -- (A) I1A, I1B : $NAME := IDENT (1); I2 : $NAME := IDENT (2); CI2 : CONSTANT $NAME := 2; BEGIN -- (A) IF (I2 = CI2) AND (NOT (I2 /= CI2)) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 1" ); END IF; IF (I2 /= 4) AND (NOT (I2 = 4)) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 2" ); END IF; IF (I1A = I1B) AND (NOT (I1A /= I1B)) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 3" ); END IF; IF (I2 >= CI2) AND (NOT (I2 < CI2)) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 4"); END IF; IF (I2 <= 4) AND (NOT (I2 > 4)) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 5" ); END IF; IF (I1A >= I1B) AND (I1A <= I1B) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 6" ); END IF; IF ">" (LEFT => CI2, RIGHT => I1A) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 7" ); END IF; IF "<" (LEFT => I1A, RIGHT => I2) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 8" ); END IF; IF ">=" (LEFT => I1A, RIGHT => I1A ) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 9 "); END IF; IF "<=" (LEFT => I1A, RIGHT => CI2) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 10 "); END IF; IF "=" (LEFT => I1A, RIGHT => I1B ) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 11 "); END IF; IF "/=" (LEFT => CI2, RIGHT => 4) THEN NULL; ELSE FAILED ( "RELATIONAL TEST - 12 "); END IF; END; -- (A) ---------------------------------------------------------------- DECLARE -- (B) SUBTYPE ST IS $NAME RANGE -10 .. 10; I1 : $NAME := IDENT (1); I5 : $NAME := IDENT (5); CI2 : CONSTANT $NAME := 2; CI10 : CONSTANT $NAME := 10; BEGIN -- (B) IF (I1 IN ST) AND (I1 NOT IN CI2 .. CI10) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - B.1" ); END IF; IF (IDENT (11) NOT IN ST) AND (CI2 IN I1 .. I5) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - B.2" ); END IF; IF NOT (I5 NOT IN CI2 .. 10) AND NOT (IDENT (-11) IN ST) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - B.3" ); END IF; IF NOT (I1 IN CI2 .. CI10) AND NOT (I5 NOT IN ST) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - B.4" ); END IF; IF (I1 NOT IN I5 .. I1) AND NOT (I5 IN I5 .. I1) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - B.5" ); END IF; END; -- (B) ------------------------------------------------------------- DECLARE -- (C) SUBTYPE ST IS $NAME RANGE -10 .. 10; I1 : $NAME := IDENT (1); I5 : $NAME := IDENT (5); CI2 : CONSTANT $NAME := 2; CI10 : CONSTANT $NAME := 10; FUNCTION ">" ( L, R : $NAME ) RETURN BOOLEAN IS BEGIN RETURN $NAME'POS (L) <= $NAME'POS (R); END; FUNCTION ">=" ( L, R : $NAME ) RETURN BOOLEAN IS BEGIN RETURN $NAME'POS (L) < $NAME'POS (R); END; FUNCTION "<" ( L, R : $NAME ) RETURN BOOLEAN IS BEGIN RETURN $NAME'POS (L) >= $NAME'POS (R); END; FUNCTION "<=" ( L, R : $NAME ) RETURN BOOLEAN IS BEGIN RETURN $NAME'POS (L) > $NAME'POS (R); END; BEGIN -- (C) IF (I1 IN ST) AND (I1 NOT IN CI2 .. CI10) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - C.1" ); END IF; IF (IDENT (11) NOT IN ST) AND (CI2 IN I1 .. I5) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - C.2" ); END IF; IF NOT (I5 NOT IN CI2 .. 10) AND NOT (IDENT (-11) IN ST) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - C.3" ); END IF; IF NOT (I1 IN CI2 .. CI10) AND NOT (I5 NOT IN ST) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - C.4" ); END IF; IF (I1 NOT IN I5 .. I1) AND NOT (I5 IN I5 .. I1) THEN NULL; ELSE FAILED ( "MEMBERSHIP TEST - C.5" ); END IF; END; -- (C) RESULT; END C45231D;
c2d0dcca992dc4ef87419194289d4102098e6d9c
449d555969bfd7befe906877abab098c6e63a0e8
/3523/CH5/EX5.6.8/Ex5_8.sce
06c969de8661da4c3409f5b3776a0cc41a26c717
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,983
sce
Ex5_8.sce
//Example 8// Ch 5 clc; clear; close; // given data delta=1;//at standard temp and pressure r=1;//radius of conductors in cm s=40;//subconductor to subconductor spacing in cm D=500; //phase to phase spacing in cm E0=30*delta*(1+(0.3/sqrt(delta*r)));//corona onset field in kVpeak/cm printf("corona onset field %f kVpeak/cm",E0) V01=E0*log(D/r);//corona onset voltage using single conductor printf("corona onset voltage V01 is %f kVpeak",V01) V01rms=V01/sqrt(2);//rms onset voltage in kV printf("corona rms onset voltage V01rms %f kV",V01rms) x2 = log(D /(sqrt(s*r))); y2 = (1+((2*r)/s)); V02=2*E0*r*(x2/y2);//corona onset voltage using bundle-2 conductor arranged horizontally and vertically printf("corona onset voltage V02 is %f kVpeak",V02) V02rms=V02/sqrt(2);//rms onset voltage in kV printf("corona rms onset voltage V02rms is %f kV",V02rms) x3 = log(D /((sqrt(2)*(s)^2*r)^0.3)); y3 = (1+((3*sqrt(3)*r)/s)); V03=3*E0*r*(x3/y3);//corona onset voltage using bundle-3 conductor arranged at vertices of an upright or inverted triangle printf("corona onset voltage V03 is %f kVpeak",V03) V03rms=V03/sqrt(2);//rms onset voltage in kV printf("corona rms onset voltage V03rms is %f kV",V03rms) x4 = log(D /((sqrt(2)*(s)^3*r)^0.25)); y4 = (1+((4*sqrt(2)*r)/s)); V04=4*E0*r*(x4/y4);//corona onset voltage using bundle-4 conductor arranged at vertices of a square printf("corona onset voltage V04 is %f kVpeak",V04) V04rms=V04/sqrt(2);//rms onset voltage in kV printf("corona rms onset voltage V04rms is %f kV",V04rms) x5 = log(D /((sqrt(2)*(s)^3*r)^0.25)); y5 = (1+((3*sqrt(2)*r)/s)); V05=4*E0*r*(x5/y5);//corona onset voltage using bundle-4 conductor arranged at vertices of a diamond form square printf("corona onset voltage V05 is %f kVpeak",V05) V05rms=V05/sqrt(2);//rms onset voltage in kV printf("corona rms onset voltage V05rms is %f kV",V05rms) //acc. to eq 5.18 in question 7 corona onset voltage is calculated
91de7be87656bb4bcf28158ea8b71305780e8254
449d555969bfd7befe906877abab098c6e63a0e8
/2135/CH1/EX1.34/Exa_1_34.sce
c8e2ef158c10a30804f36d91e9df522a6b8313e4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Exa_1_34.sce
//Exa 1.34 clc; clear; close; format('v',9); //Given Data : m=1;//Kg v=1;//m^3 T=127+273;//K a=138;//KNm^4/(Kgmol)^2 a=a*10^3;//Nm^4/(Kgmol)^2 M_O2=32;// vm=v*M_O2;//m^3/Kgmol //p*v=n*R*T n=1; R=8314.3;//gas constant p=n*R*T/vm;//N/m^2 disp(p,"Pressure using perfect gas equation in N/m^2 : "); //[p+a/vm^2]*[vm-b]=R*T b=0.0318; p=R*T/(vm-b)-a/vm^2;//N/m^2 disp(p,"Pressure using Vander Walls equation in N/m^2 : ");
c957e8c6f664d11b305ea264c4a1a0246c176ba7
449d555969bfd7befe906877abab098c6e63a0e8
/1430/CH5/EX5.6/exa5_6.sce
ca6526fe2c4045217081e4e8942463d45f79c1d1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
638
sce
exa5_6.sce
//Example 5.6 // DC Steady-state Analysis // Under DC steady-state means inductor acts as a short circuit while the // Capacitor acts as an open circuit //Form figure 5.17(b) i_l=30/(20+40);// Ohm's Law v_c= (40*30)/(20+40); // Voltage divider relationship //Energy stored in capacitor w_c=0.5*(5*10^-6)*400; //Energy stored in Inductor w_l=0.5*(16*10^-3)*(0.5)^2; // total energy stored in the circuit is w=w_l+w_c; disp(i_l,"Current through the inductor(in Amps)="); disp(v_c,"Voltage across the capacitor(in Volts)="); disp(w_l,"Energy stored in inductor(Joules)="); disp(w_c,"Energy stored in Capacitor(Joules)=");
ae9b6e517644fde11f858e5d932d8d6bfff9b61a
449d555969bfd7befe906877abab098c6e63a0e8
/2381/CH1/EX1.8/ex_8.sce
43bbb56d43330107371407130464202737b3391a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
228
sce
ex_8.sce
//Example 8 // Period of motion clc; clear; close; //given data : x=0.16;// in m m1=4;// in kg g=9.8; K=m1*g/x; m=0.50;// in kg T=2*%pi*sqrt(m/K);// disp(T,"The period of motion ,T(seconds) = ") // answer is wrong in textbook
9b1267878a5f6c56a0f90c186dbb99f67d9ebca1
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH12/EX12.11/Ex12_11.sce
b31b69e24f61796d53483dfbe58363f6d00420c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
220
sce
Ex12_11.sce
//EX12_11 Pg-12.30 clc clear Ptotal=10;//radiated power in kW when the carrier is modulated m=0.75;//modulation index Pc=Ptotal/(1+m^2/2)//since Ptotal=Pc*sqrt(1+m^2/2) printf("\n carrier power Pc=%.1f kW \n",Pc)
15bd44f554e09cc2a040c1e6a20bae42ab54c671
ed015189fc1a897f56b6b9fd5306c09f1f3e27dd
/coba.tst
a1e0246847e6ac9ce2f46c115f81722c96b67298
[]
no_license
rival773845/praktikum
18b15c604d3d6c7d81cd25772721bd8bb4182c37
2700a0f7b52e1462d84d124cf5ae4ed725581d90
refs/heads/master
2020-07-25T07:21:00.366356
2019-09-20T03:40:02
2019-09-20T03:40:02
208,212,266
0
0
null
2019-09-20T03:40:03
2019-09-13T06:58:06
Scilab
UTF-8
Scilab
false
false
30
tst
coba.tst
<html> <head </head> </html>
80656895b7fbeabc33d8977ba27644c0669439cc
449d555969bfd7befe906877abab098c6e63a0e8
/2384/CH1/EX1.9/ex1_9.sce
ea281fc9d14dc3ad62a1bfd28ff334c35e35c030
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,350
sce
ex1_9.sce
// Exa 1.9 clc; clear; close; format('v',6) // Given data R1= 30;// in ohm R2= 40;// in ohm R3= 20;// in ohm R4= 60;// in ohm R5= 50;// in ohm V= 240;// in V //Applying KVL in ABDA : I1*-(R1+R2+R3) + R2*I2+R3*I3 =0 (i) //Applying KVL in BCDB : I1*R2+I2*-(R2+R4+R5)+I3*R5 = 0 (ii) //Applying KVL in CFEADC: I1*R3+ R5*I2+I3*-(R3+R5)=-V (iii) A= [-(R1+R2+R3) R2 R3; R2 -(R2+R4+R5) R5; R3 R5 -(R3+R5)]; B= [0 0 -V]; I= B*A^-1;// Solving eq(i), (ii) and (iii) by Matrix method I1= I(1);// in A I2= I(2);// in A I3= I(3);// in A I30_ohm_resistor= I1;// in A I60_ohm_resistor= I2;// in A I50_ohm_resistor= I2-I3;// in A I20_ohm_resistor= I1-I3;// in A I40_ohm_resistor= I1-I2;// in A disp(I30_ohm_resistor,"The current through 30 ohm resistance in A is : ") disp(I60_ohm_resistor,"The current through 60 ohm resistance in A is : ") disp(I50_ohm_resistor,"The current through 50 ohm resistance in A is : ") disp(I20_ohm_resistor,"The current through 20 ohm resistance in A is : ") disp(I40_ohm_resistor,"The current through 40 ohm resistance in A is : ") // Note: In the book there is a mistake in eq(iii), the R.H.S of eq(iii) should be -24 not -240. Since they divide the L.H.S of eq(iii) by 10 and R.H.S not divided, So the answer in the book is wrong
f703ce516db0a5c05cb01ee4c0aafd1f69265a68
1489f5f3f467ff75c3223c5c1defb60ccb55df3d
/tests/test_ods_fsed_2_h.tst
6272b6bc35fb08bc79a2926ca410bcf290561092
[ "MIT" ]
permissive
ciyam/ciyam
8e078673340b43f04e7b0d6ac81740b6cf3d78d0
935df95387fb140487d2e0053fabf612b0d3f9e2
refs/heads/master
2023-08-31T11:03:25.835641
2023-08-31T04:31:22
2023-08-31T04:31:22
3,124,021
18
16
null
2017-01-28T16:22:57
2012-01-07T10:55:14
C++
UTF-8
Scilab
false
false
1,779
tst
test_ods_fsed_2_h.tst
folder_add 111 cd 111 folder_add 222 cd 222 folder_add 333 cd / file_move aaa 111 file_move bbb 111 file_move ccc 111 file_move ddd 111/222 file_move eee 111/222 file_move fff 111/222 file_move ggg 111/222/333 file_move hhh 111/222/333 file_move iii 111/222/333 branch objects 111/ 111/222/ 111/222/333/ 111/222/333/ggg* (3.1 kB) 111/222/333/hhh* (5.7 kB) 111/222/333/iii* (6.7 kB) 111/222/ddd* (3.1 kB) 111/222/eee* (5.7 kB) 111/222/fff* (6.7 kB) 111/aaa* (3.1 kB) 111/bbb* (5.7 kB) 111/ccc* (6.7 kB) xxx (6.7 kB) yyy (5.7 kB) zzz (3.1 kB) dump Total index levels = 0 Total number of nodes = 1 Total number of items = 27 Dumping level #0 [Node 2] flags = 3, dge_link = -1 lft_link = -1, rgt_link = -1 Item #0, data = /111, link = -1 Item #1, data = /111/222, link = -1 Item #2, data = /111/222/333, link = -1 Item #3, data = 1|111/ccc, link = -1 Item #4, data = 1|111|222/fff, link = -1 Item #5, data = 1|111|222|333/iii, link = -1 Item #6, data = 3|111/bbb, link = -1 Item #7, data = 3|111|222/eee, link = -1 Item #8, data = 3|111|222|333/hhh, link = -1 Item #9, data = 4|111/aaa, link = -1 Item #10, data = 4|111|222/ddd, link = -1 Item #11, data = 4|111|222|333/ggg, link = -1 Item #12, data = :/111, link = -1 Item #13, data = :111/222, link = -1 Item #14, data = :111:222/333, link = -1 Item #15, data = |/xxx, link = -1 Item #16, data = |/yyy, link = -1 Item #17, data = |/zzz, link = -1 Item #18, data = |111/aaa, link = -1 Item #19, data = |111/bbb, link = -1 Item #20, data = |111/ccc, link = -1 Item #21, data = |111|222/ddd, link = -1 Item #22, data = |111|222/eee, link = -1 Item #23, data = |111|222/fff, link = -1 Item #24, data = |111|222|333/ggg, link = -1 Item #25, data = |111|222|333/hhh, link = -1 Item #26, data = |111|222|333/iii, link = -1 exit
fc082e42a04ea804b9bc1d11f538784f4ceecd99
449d555969bfd7befe906877abab098c6e63a0e8
/1109/CH1/EX1.8/1_8.sce
667c4059ce8c2a419693c22da4d8d68ebae0fb8f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
235
sce
1_8.sce
clear; clc; R=65;L=1.6*(10^-3);C=.1*(10^-6);G=2.25*(10^-6);f=800; w=5000; Z=R+round(%i*w*L); Y=G+%i*w*C; Zo=sqrt(Z/Y); printf('-Characteristic impedance is Zo = %f /_%f ohms\n',(abs(Zo)),(((atan(imag(Zo),real(Zo))*180/%pi))));
5411bbbc570650b7b10cf94ee5d57a6a963d5464
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set12/s_Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436.zip/Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436/CH2/EX2.12/ex2_12.sce
80146bab2fca80f3c9dfae61c32c743eeee95d87
[]
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
181
sce
ex2_12.sce
errcatch(-1,"stop");mode(2);// Example 2.12, page no-122 p1=10^-2 h1=20 K=p1/h1^2 p2=K*30^2 p2=p2*100 printf("The unknown pressure p2 = %.2f * 10^-2 torr",p2) exit();
4521cd7a736140f1e769918545f47bd832569d6f
449d555969bfd7befe906877abab098c6e63a0e8
/3281/CH6/EX6.6/ex6_6.sce
2466eb4d0ca2a21146d48aa5c77ad51c4579d9e6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
182
sce
ex6_6.sce
//Page Number: 333 //Example 6.6 clc; //Given I0=0.95; //A V0=7D+3; //V Z0=20; //ohm N=20; C=((I0*Z0)/(4*V0))^(1/3); //Gain Ap=-9.54+(47.3*C*N); disp('dB',Ap,'Gain:');
ec4a3d414fba03b89a6320a29229cf9b2f9e2e93
364fc2bac23ae5482a18e5e9392ff63e68642dae
/Annales/2016_exo3.sci
a65b0c9e0f9101d5f5987344548ad33f6a34e216
[]
no_license
Raphael-De-Wang/2M310TP
259e55e9dc931b0a0102ed7a5dbbb31e82b88295
af21ffee07fadeb5b27c5f30d0deb1926972ccee
refs/heads/master
2021-01-11T14:14:21.447623
2017-03-29T20:27:35
2017-03-29T20:27:35
81,227,258
0
0
null
null
null
null
UTF-8
Scilab
false
false
728
sci
2016_exo3.sci
exec 2016_exo2.sci // Q1. function Xheun = Heun(a,x0,T,p) // x(n+1) = x(n) + (h/2)*(2*a + h*a^2)*x(n) hp = T/p; Xheun = [x0]; for k = (2:p+1), Xheun(k) = Xheun(k-1) + (hp/2) * (2*a + hp * a .^ 2) * Xheun(k-1); end endfunction // Q2. Xheun50 = Heun(a,x0,T,p=50); Xheun200 = Heun(a,x0,T,p=200); function graphCmp(a,x0,T,p) plot(1:p+1,Heun(a,x0,T,p),'blue'); plot(1:p+1,SolutionExacte(a,x0,T,p),'red'); plot(1:p+1,EulerImplicite(a,x0,T,p),'green') plot(1:p+1,EulerExplicite(a,x0,T,p),'black') endfunction p = 50; graphCmp(a,x0,T,p) // Q3. p = 50; thetaHeun50 = ErreurGlobale(a,x0,p,T,Xheun50,SolutionExacte) p = 200; thetaHeun200 = ErreurGlobale(a,x0,p,T,Xheun200,SolutionExacte)
eeab312b1a103a25c8bcf4c340b5feb135cf82b2
717ddeb7e700373742c617a95e25a2376565112c
/1766/CH9/EX9.5/EX9_5.sce
c87673d1b9c94cf9dfa9b458e1af88ace2111930
[]
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
641
sce
EX9_5.sce
clc;funcprot(0);//Example 9.5 //Initilisation of Variables T=3000;....//Temparature of filament in a bulb in K L1=0.4*10^-6;....//First Visible range of Wavelength in Mew m L2=0.7*10^-6;....//Last Visible range of Wavelength in Mew m R=5.67*10^-8;.....//Stefens boltsman constant //calculations L1T=L1*T;....// L2T=L2*T;...// F1=0.002;......//The radiation funtions for L1T from blackbody radiation table F2=0.085;......//The radiation funtions for L2T from blackbody radiation table E=R*T^4*(F2-F1);....//Radiation energy that falls the visible range in W/m^2 disp(E,"Radiation energy that falls the visible range in W/m^2:")
42fc81079b288a380e94bd80cbc5b3a7c5715311
5db583d40c20aa406790f7a8c381455186d74544
/data/local refinement-- new algorithm/1.sce
62c0ca4653faf543c40a4091eb81a1c11e506843
[]
no_license
kaiwangntu/kw-phd-thesis
a6e80dab87d04a3f67526a8e597cb8e81a6a3911
456da1c5e8a44ef702675cadd90ec9a4f1a33e7f
refs/heads/master
2021-06-03T18:52:57.236319
2013-04-23T01:17:42
2013-04-23T01:17:42
40,125,552
0
1
null
null
null
null
UTF-8
Scilab
false
false
627
sce
1.sce
#light position 0.000000 0.000000 1.000000 0.000000 #arball transformation 0.804307 0.147733 0.575663 0.000000 -0.593149 0.138834 0.793109 0.000000 0.037245 -0.979297 0.199280 0.000000 0.000000 0.000000 0.000000 1.000000 #translation parameter 0.170000 0.840000 -2.850000 #viewport 0 0 1152 678 #modelview 0.804307 0.031967 0.593456 0.000000 -0.593149 -0.019404 0.804935 0.000000 0.037245 -0.999361 0.003354 0.000000 0.170000 1.382619 -7.728937 1.000000 #projection 1.420865 0.000000 0.000000 0.000000 0.000000 2.414214 0.000000 0.000000 0.000000 0.000000 -1.000004 -1.000000 0.000000 0.000000 -0.020000 0.000000
8e758498a5860e360a04587a474dbe907115b72b
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH9/EX9.6/9_6.sce
1bed4ae21d49215020c732fd1ec4f29a2ccc331d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
291
sce
9_6.sce
clear; clc; close; Pi = 10*10^(3); Po = 500; Vi = 1000; Ro = 20; Gdb = 10*log10(Po/Pi); Gv = 20*log10(sqrt(Po*Ro)/Vi); Ri = Vi^2/Pi; disp(Gdb,'Power gain in decibels = '); disp(Gv,'Voltage gain in decibels = '); disp(Ri,'Ri(ohms) is '); disp('which is not equal to Ro');
cfe56249f547e30c37fb9e80b4f89c4d422a31f6
5f838df28ada5a3bbd5be4c69902b9df4dbffacb
/bilinear_transform.sci
439a13a0d0edd316fc207cb6a1ec9c824c9adbd1
[]
no_license
Sai-Sumedh/filter_design_180070024
dca29c7b95cb43421e1577af3673f29df3a83251
c8348c85b515e9d987404c335f52150933512405
refs/heads/main
2023-01-14T05:11:25.601573
2020-11-12T18:44:36
2020-11-12T18:44:36
312,361,627
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,137
sci
bilinear_transform.sci
// take as input the normalized discrete time specs // give out the analog frequency specifications function [analog_specs]=bilinear_transform_wtoW(critical_w) analog_specs = tan(0.5*critical_w); endfunction // for testing the function //criticalw1 =[1.3099489, 1.3861088, 1.7669079, 1.8430677]; //criticalw2 = [1.3388018, 1.4354662, 2.2426138, 2.3392782]; //criticalW1 = bilinear_transform_wtoW(criticalw1); //criticalW2 = bilinear_transform_wtoW(criticalw2); //disp("Analog W for filter 1"); //disp(criticalW1); //disp("Analog W for filter 2"); //disp(criticalW2); //step = 0.01; //w = 0:step:5; //filter_specs = zeros(1,floor(criticalW(2)/step)); //L_pass = floor(criticalW(3)/step)-floor(criticalW(2)/step); //filter_specs = [filter_specs, ones(1, L_pass)]; //filter_specs = [filter_specs, zeros(1, length(w)-length(filter_specs))]; // subtracting old length //plot(w, filter_specs); // the ideal low pass filter in the analog domain //plot(criticalw, criticalw); //test = rand(200,1); //test_i = 3*gsort(test, 'g', 'i') //analog = transform_ztos(test_i); //plot(test_i, analog, '*')
d792232221c52a5a8f681acb21b72c07b3676bdb
449d555969bfd7befe906877abab098c6e63a0e8
/2078/CH11/EX11.13/Example11_13.sce
d1bcb4c0a97806c03349b742b90b271d9439bb30
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
664
sce
Example11_13.sce
//Exa 11.13 clc; clear; close; //Given data : Vs=66;//kV r=0.5;//cm g1max=50;//kV/cm g2max=40;//kV/cm g3max=30;//kV/cm epsilon_r1=4;//relative permitivity epsilon_r2=4;//relative permitivity epsilon_r3=2.5;//relative permitivity //Q=2*%pi*epsilon0*epsilon_r1*r*g1max=2*%pi*epsilon0*epsilon_r2*r*g2max=2*%pi*epsilon0*epsilon_r3*r*g3max r1=epsilon_r1*r*g1max/(epsilon_r2*g2max);//cm r2=epsilon_r2*r1*g2max/(epsilon_r3*g3max);//cm Vmax=Vs*sqrt(2);//kV //Vmax=g1max*r*log(r1/r)+g2max*r1*log(r2/r1)+g3max*r2*log(R/r2);//kV R=exp((Vmax-g1max*r*log(r1/r)-g2max*r1*log(r2/r1))/g3max/r2)*r2;//cm D=2*R;//cm disp(D,"Inner diameter of lead sheath(cm)");
24f668b32f6648aff6faf1ac26b5bab2d62532bf
449d555969bfd7befe906877abab098c6e63a0e8
/3834/CH12/EX12.4.2/Ex12_4_2.sce
247b79e3fc73225c48445ba4a22aed455c7cf8da
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
526
sce
Ex12_4_2.sce
//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner //Windows 8 //Scilab version- 6.0.0 //Example 12.4.2 clc; clear ; //given w1=10.5E-6;//MFD of transmission fibre in m lambda=1550E-9;//operating wavelength in m w2=5.3E-6;//assumed average MFD of Pirelli EDF-PAX-01 Fiber in m a=w1*w2; y=w2^2+w1^2; z=(2*a)/y; Ldb=-10*log10(z^2);//Connection loss in transmission fibre in dB mprintf("Connection loss in transmission fibre = %.2f dB",Ldb);//the answer vary due to rounding
c0f1db7cc0763330fc0f189322b959454079e6f1
c0c48c5a363ac2c0bf21e72833d72a99771dc6ce
/Simulation_Codes/lab10_18i190002/ex2a.sce
182ac4cc8f4e22c4a470e83b7309985f04df5cce
[]
no_license
shubham1166/Operarions_Research_Projects
3b6664b83d89b2a005b5194489bfd0d95cafe3d8
8f28eea93d9e4ff3d6a8e95160c3f9464ce2fc34
refs/heads/main
2023-03-14T02:48:42.359247
2021-03-03T05:51:28
2021-03-03T05:51:28
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
325
sce
ex2a.sce
clc,clear,clf function twodrand(n) for i=1:n x(i)=rand() y(i)=rand() end scatter(x,y,xlabel('---x-->'),ylabel('---y --->')) endfunction subplot(2,2,1) twodrand(100) title('When n=100') subplot(2,2,2) twodrand(1000) title('When n=1000') subplot(2,2,3) twodrand(1000000) title('When n=1000000')
59a8c3826b68aa8515a611fac4a1472d8d8f0934
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/init.SCI
cbd42d021a48f74b37188cabd5d42737f107b2b4
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
759
sci
init.SCI
store("test","42"); resetall; displayname="\\.\DISPLAY1"; tpe=1; createvar(vp); if tpe==1 then { root.rendertype=RenderSingle; root.vsync=2; root.framerate=1400; vp=addviewport(0,0,1,1,displayname,displayname); } if tpe==2 then { root.rendertype=RenderDual; root.vsync=0; vp=addviewport(0.003,0.003,0.5997,0.5997,displayname,displayname); } if tpe==3 then { root.rendertype=RenderMultithreaded; root.vsync=1; vp=addviewport(0.003,0.003,0.997,0.997,displayname,displayname); } vp.name="main"; #vp.stretchfactor=1; #vp.eyeseparation=5; #vp.focaldistance=15; vp.aperture=deg2rad(60.0); disp1=root.displays.get(displayname); disp1.start; vp.usestereo=true; vp.start; #ExecuteScript(ScriptDir+"\test.sci"); stop;
0dfae801bc2acfd2c21d97d26e48cb8ac74294e7
449d555969bfd7befe906877abab098c6e63a0e8
/3131/CH11/EX11.6/11_6.sce
bcd7b654aa4f8eef840f0300c7d221cdfb16c76a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
538
sce
11_6.sce
clear all; clc; disp("Ex 11_6") //From the potential function analysis and te equilibrium analysis m=69.14/10.58 printf('\n\n m = %0.2f kg',m) //Second derivative of V w.r.t. theta at m=6.53 kg and theta=20 degrees is: theta=20*%pi/180 a=(-73.6*sin(theta))-((m*9.81*-1*(-3.6*cos(theta))^2)/(2*2*(3.69-(3.6*sin(theta)))^(3/2)))-((m*9.81*-3.6*sin(theta))/(2*sqrt(3.69-(3.6*sin(theta))))) printf('\n\n The second derivative of V w.r.t. theta at m=6.53 kg and theta=20 degrees is -%0.1f',a) disp("Unstable equilibrium at theta = 20 degress")
8d88a45a41066c387ac413939bfe0163157d3261
449d555969bfd7befe906877abab098c6e63a0e8
/1646/CH6/EX6.1/Ch06Ex1.sce
89f104e607823b34a6e0779b2cb474a7a2120b77
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
722
sce
Ch06Ex1.sce
// Scilab Code Ex6.1: Page-369 (2011) clc;clear; i = 2e-003;....// Current through X-ray tube, A e = 1.6e-019;....// Charge on an electron, C V = 12.4e+003;....// Potential difference applied across X-ray tube, V m0 = 9.1e-031;....// Rest mass of the electron, Kg n = i/e; // Number of electrons striking the target per second printf("\nThe number of electrons striking the target per sec = %4.2e electrons", n); v = sqrt(2*e*V/m0);....// Velocity of the electrons, m/s printf("\nThe speed with which electrons strike the target = %4.2e m/s", v); // Result // The number of electrons striking the target per sec = 1.25e+016 electrons // The speed with which electrons strike the target = 6.60e+007 m/s
b33a86b7ec99428d4030dbd8b6b1e965d8d4b002
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH40/EX40.10/40_10.sce
b9404c8c72c55de2f31fc7d7f0a5480815a4d086
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
840
sce
40_10.sce
//Problem 40.10: A single-phase circuit is composed of two parallel conductors, each of radius 4 mm, spaced 1.2 m apart in air. The p.d. between the conductors at a frequency of 50 Hz is 15 kV. Determine, for a 1 km length of line, (a) the capacitance of the conductors, (b) the value of charge carried by each conductor, and (c) the charging current. //initializing the variables: e0 = 8.85E-12; er = 1; D = 1.2; // in m r = 0.004; // in m f = 50; // in Hz V = 15000; // in Volts l = 1000; // in m //calculation: //capacitance C = %pi*e0*er/(log(D/r)) //capacitance of a 1 km length Cpkm = C*l //Charge Q Q = Cpkm*V //Charging current I = V*2*%pi*f*Cpkm printf("\n\n Result \n\n") printf("\n capacitance per 1km length is %.2E F",Cpkm) printf("\n Charge Q is %.2E C",Q) printf("\n Charging current is %.3f A",I)
c35e682ea8992f81d225130c9e14e5b68a2d02a9
449d555969bfd7befe906877abab098c6e63a0e8
/1085/CH3/EX3.14/ex3_14.sce
daf52d6faf90fecd4e6683462ef7d0008067afc9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
601
sce
ex3_14.sce
//Exam:3.14 clc; clear; close; a=3.03*10^(-7);//lattice constant(in mm) N_100=1/(a^2);//Number of atoms in the (100) plane of a simple cubic structure N_110=0.707/(a^2);//Number of atoms in the (110) plane of a simple cubic structure N_111=0.58/(a^2);//Number of atoms in the (111) plane of a simple cubic structure disp(N_100,'Number of atoms in the (100) plane of a simple cubic structure(in per mm^2)='); disp(N_110,'Number of atoms in the (110) plane of a simple cubic structure(in per mm^2)='); disp(N_111,'Number of atoms in the (111) plane of a simple cubic structure(in per mm^2)=');
415b26de24dff3daf1a8db565e23a550fab624e0
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.7_4.tst
b0f52c62dd100fdf76c4e49cbc62767fb7c61009
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
509,527
tst
5.7_4.tst
7 314:1 370:1 523:1 1203:1 1485:1 1666:1 1856:1 1986:1 2210:1 2238:1 2268:1 2365:1 2371:1 2506:1 2737:1 2827:1 2912:1 2929:1 3072:2 3422:1 3501:1 3947:1 4288:1 4478:1 4840:1 5078:1 5235:1 5254:1 5256:1 5618:1 6297:1 6679:1 6704:1 6966:2 7432:1 8024:1 8104:1 8131:2 8608:1 8636:1 8659:2 9155:1 9352:1 9405:2 9416:1 10169:1 10459:1 10970:1 11097:1 11333:1 11366:1 11709:1 11797:1 11898:1 12395:1 12867:1 13405:1 13722:1 13801:1 13838:1 13883:1 13896:2 14055:2 14289:1 14315:1 14335:1 14469:1 14539:1 14966:1 15079:1 15138:1 15139:1 15800:1 16115:1 16178:1 16489:1 16519:1 16520:1 16833:1 17046:1 17071:1 17414:1 17549:1 17555:1 17592:2 18334:1 18603:1 18670:1 18833:1 18867:1 18923:1 19019:1 19226:1 19557:1 19573:78 19578:1 19621:1 19740:1 19986:1 20142:1 20773:2 20825:1 20935:2 21054:2 21108:1 21214:2 21627:1 21881:1 21901:1 22176:1 22196:1 22202:1 22334:1 22506:1 22547:1 22549:1 22693:1 22875:1 22995:1 23085:1 23411:1 23455:1 23512:1 23518:1 23519:2 23594:1 23759:1 24303:1 24332:1 24401:1 24418:1 25093:1 25118:1 25200:1 25451:1 25504:1 25575:1 25594:1 25831:1 26075:1 26747:1 26996:1 27155:1 27262:1 27532:1 27678:1 28109:1 28189:1 28234:1 28319:1 28566:1 28611:1 29251:1 29319:1 30203:1 30323:1 30362:1 30382:1 30545:1 30561:1 30615:1 30657:1 7 9:1 314:1 370:1 511:1 523:1 1203:1 1248:1 1485:1 1491:1 1547:1 1666:1 1856:1 1915:1 1960:1 1986:1 2155:1 2210:1 2238:1 2268:1 2274:1 2365:1 2371:2 2383:1 2402:1 2409:1 2506:1 2737:1 2750:1 2827:1 2848:1 2912:1 2929:1 2938:1 3072:2 3395:1 3422:1 3501:1 3538:1 3947:1 4251:1 4288:1 4478:1 4685:1 4840:1 4887:2 4912:1 5078:1 5100:1 5235:1 5254:1 5256:1 5618:1 5647:1 5658:1 5659:1 5994:1 6297:1 6332:1 6386:1 6679:1 6704:1 6725:1 6966:2 7432:2 7732:1 8009:1 8024:1 8104:5 8131:2 8608:1 8636:1 8659:2 8697:1 9155:1 9352:1 9405:2 9416:1 9546:1 9629:1 9955:2 10169:2 10170:1 10183:1 10244:1 10352:1 10450:1 10459:1 10759:1 10970:1 11097:1 11188:1 11245:1 11333:1 11366:1 11709:1 11797:1 11898:1 12321:1 12395:1 12520:1 12573:1 12814:1 12867:1 13405:1 13596:1 13722:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14055:2 14289:1 14315:1 14335:1 14461:1 14469:1 14539:1 14966:1 15079:1 15114:1 15138:1 15139:1 15291:1 15474:1 15497:1 15506:1 15800:1 15983:1 16115:1 16178:1 16489:1 16519:1 16520:1 16594:1 16833:1 17046:1 17071:1 17187:1 17254:1 17414:1 17549:1 17555:1 17592:2 17844:1 17850:1 17939:1 17997:1 18249:1 18266:1 18287:1 18334:1 18603:1 18670:1 18833:1 18867:1 18923:1 19019:1 19226:1 19340:1 19420:1 19557:1 19573:148 19578:1 19621:1 19740:1 19986:1 20142:1 20342:1 20773:2 20825:1 20935:2 21054:2 21103:1 21108:1 21214:2 21627:1 21651:1 21869:1 21881:1 21901:1 22176:1 22196:1 22202:1 22334:1 22506:1 22547:1 22549:1 22636:1 22693:2 22771:1 22875:1 22995:1 23085:1 23123:1 23149:1 23234:1 23411:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23665:1 23724:1 23759:1 23858:1 23959:1 24119:1 24303:1 24332:1 24401:1 24418:1 24760:1 25093:1 25118:1 25147:1 25200:1 25451:1 25490:1 25504:1 25575:1 25594:1 25773:1 25778:1 25831:1 26075:1 26299:2 26388:1 26427:1 26656:1 26747:1 26785:1 26996:1 27155:1 27192:1 27262:1 27328:1 27426:1 27436:1 27492:1 27532:1 27678:1 27737:1 28109:1 28189:1 28234:1 28319:1 28566:1 28611:1 28618:1 28679:1 28949:1 29190:1 29251:1 29319:1 29555:1 29796:1 29857:1 30203:1 30323:1 30362:1 30382:1 30545:1 30561:1 30615:1 30656:2 30657:1 7 9:1 176:1 314:1 370:1 511:1 523:1 745:1 1203:1 1248:1 1412:1 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:1 1730:1 1856:1 1915:1 1960:1 1986:1 2155:1 2210:1 2238:1 2268:1 2274:1 2365:1 2371:2 2383:1 2402:1 2409:1 2410:1 2465:1 2506:1 2658:1 2737:1 2750:1 2827:1 2848:1 2896:1 2912:1 2919:1 2929:1 2938:1 3072:2 3220:1 3395:1 3422:1 3454:1 3501:1 3538:1 3819:1 3947:1 4251:1 4288:1 4395:1 4478:1 4558:1 4685:1 4840:1 4887:2 4912:1 5078:1 5100:1 5235:1 5254:1 5256:1 5516:1 5618:1 5647:1 5658:1 5659:1 5984:1 5994:1 6297:1 6332:1 6386:1 6679:1 6704:1 6718:1 6725:1 6890:1 6966:2 7052:1 7432:2 7531:1 7732:1 7840:1 8009:1 8024:1 8104:6 8131:2 8477:1 8508:1 8608:1 8636:1 8659:2 8697:1 8768:1 8965:1 9155:1 9330:1 9352:1 9405:2 9416:1 9546:2 9629:1 9955:2 10169:2 10170:1 10183:1 10208:1 10244:1 10352:1 10450:1 10459:1 10759:1 10970:1 11061:1 11077:1 11097:1 11188:1 11245:1 11333:1 11366:1 11574:1 11709:1 11797:1 11898:1 12321:1 12362:1 12395:1 12520:1 12573:1 12814:1 12867:1 13018:1 13405:1 13596:1 13722:1 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14055:2 14289:1 14315:1 14335:1 14461:1 14469:1 14539:1 14966:1 15079:1 15114:1 15138:1 15139:1 15291:1 15317:1 15474:1 15497:1 15506:1 15800:1 15983:1 16115:1 16178:1 16210:1 16272:1 16315:1 16489:1 16519:1 16520:1 16594:1 16726:1 16833:1 17032:1 17046:1 17071:1 17187:1 17254:1 17372:1 17414:1 17549:1 17555:1 17592:2 17844:1 17850:1 17939:1 17997:1 18009:1 18249:1 18266:1 18287:1 18334:1 18603:1 18670:1 18833:1 18867:1 18923:1 19019:1 19046:1 19226:1 19340:1 19420:1 19557:1 19573:182 19577:1 19578:1 19621:1 19740:1 19986:1 20049:1 20142:1 20342:1 20773:2 20825:1 20833:1 20935:2 21054:2 21103:1 21108:1 21214:2 21627:1 21651:1 21714:1 21869:1 21881:1 21901:1 22176:1 22196:1 22202:1 22334:1 22506:1 22547:1 22549:1 22636:1 22693:2 22715:1 22771:1 22875:1 22995:1 23085:1 23123:1 23149:1 23234:1 23411:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23665:1 23724:1 23759:1 23858:1 23952:1 23959:1 24119:1 24220:1 24303:1 24332:1 24401:1 24418:1 24760:1 25093:1 25118:1 25147:1 25200:1 25451:1 25490:1 25504:1 25575:1 25594:1 25603:1 25773:1 25778:1 25831:1 26075:1 26299:2 26388:1 26427:1 26656:1 26747:1 26785:1 26996:1 27155:1 27192:1 27262:1 27328:1 27426:1 27436:1 27488:1 27492:1 27532:1 27678:1 27737:1 28109:1 28189:1 28234:1 28319:1 28566:1 28611:1 28618:1 28679:1 28949:1 29190:1 29251:1 29313:1 29319:1 29555:1 29757:1 29796:1 29857:1 29903:1 30203:1 30323:1 30362:1 30382:1 30545:1 30561:1 30615:1 30645:1 30656:2 30657:1 7 9:1 176:1 314:1 370:1 511:1 523:1 609:1 745:1 1203:1 1248:1 1412:1 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:1 1730:1 1856:1 1915:1 1960:1 1986:1 2155:1 2210:1 2238:2 2268:1 2274:1 2365:1 2371:2 2383:1 2402:1 2409:1 2410:1 2465:1 2506:1 2658:1 2737:1 2750:1 2827:1 2848:1 2896:1 2912:1 2919:1 2922:1 2929:1 2938:1 3016:1 3026:1 3072:3 3220:1 3395:1 3422:1 3454:2 3501:1 3538:1 3819:1 3947:1 4066:1 4251:1 4288:1 4395:1 4410:1 4478:1 4486:1 4558:1 4636:1 4651:1 4685:1 4840:1 4887:2 4912:1 5078:1 5100:1 5235:1 5254:1 5256:1 5268:1 5287:1 5473:1 5516:1 5613:1 5618:1 5647:1 5658:1 5659:1 5980:1 5984:1 5994:1 6297:1 6332:1 6386:1 6480:1 6679:1 6704:1 6718:1 6725:1 6890:1 6966:2 7052:1 7246:1 7432:2 7531:1 7690:1 7732:1 7840:1 7878:1 7892:1 7899:1 8009:1 8024:1 8104:6 8131:3 8477:1 8508:1 8608:1 8636:1 8659:3 8697:1 8768:1 8965:1 9155:1 9330:1 9352:1 9405:2 9416:1 9546:2 9629:1 9909:1 9955:2 10096:1 10169:2 10170:1 10183:1 10208:1 10244:1 10352:1 10450:1 10459:1 10656:1 10759:1 10970:1 11061:1 11077:1 11097:1 11187:1 11188:1 11245:1 11333:1 11366:1 11574:2 11709:1 11797:1 11898:1 12023:1 12321:1 12362:1 12370:1 12395:1 12471:1 12509:1 12520:1 12527:1 12573:1 12814:1 12867:1 12886:1 13018:1 13311:1 13405:1 13441:1 13508:1 13596:1 13722:1 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14289:1 14315:1 14335:1 14461:1 14469:1 14539:1 14607:1 14803:1 14966:1 15079:1 15114:1 15138:1 15139:1 15291:1 15300:1 15317:1 15474:1 15497:1 15506:1 15642:1 15800:1 15983:1 16115:1 16178:1 16210:1 16245:1 16272:1 16315:1 16489:1 16519:2 16520:1 16594:1 16726:1 16833:1 16893:1 17032:1 17046:1 17067:1 17071:1 17187:1 17254:1 17304:1 17322:1 17372:1 17414:1 17549:1 17555:2 17592:3 17615:1 17648:1 17700:1 17823:1 17844:1 17850:1 17939:1 17997:1 18009:2 18249:1 18266:1 18287:1 18334:1 18603:1 18670:1 18833:1 18867:1 18923:1 19019:1 19046:1 19226:2 19340:1 19420:1 19503:1 19557:1 19573:248 19577:1 19578:1 19621:1 19740:2 19833:1 19986:1 20049:1 20142:1 20144:1 20254:1 20338:1 20342:1 20773:3 20825:1 20833:1 20879:1 20935:2 21054:2 21103:1 21108:1 21214:3 21460:1 21627:1 21651:1 21714:1 21848:1 21869:1 21881:2 21901:1 22030:1 22176:1 22196:1 22202:1 22334:1 22506:1 22547:2 22549:1 22636:1 22693:2 22715:2 22771:1 22875:1 22995:1 23006:1 23059:1 23085:1 23123:1 23149:1 23169:1 23234:1 23411:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23665:1 23724:1 23746:1 23759:1 23858:2 23952:1 23959:1 24029:1 24119:1 24220:1 24303:1 24332:1 24360:1 24401:1 24418:1 24430:1 24553:1 24760:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25451:1 25480:1 25482:1 25490:1 25504:1 25575:1 25594:1 25600:1 25603:1 25773:1 25778:1 25831:1 26075:2 26299:2 26388:1 26427:1 26648:1 26656:1 26747:1 26785:1 26835:1 26866:1 26996:1 27059:1 27155:1 27192:1 27262:1 27328:1 27329:1 27426:1 27436:1 27488:1 27492:1 27496:1 27515:1 27532:1 27678:1 27737:1 27738:1 27869:1 27993:1 28109:1 28189:1 28234:1 28319:1 28566:1 28603:1 28609:1 28611:1 28618:1 28639:1 28679:1 28924:1 28949:1 29056:1 29190:1 29251:2 29271:1 29313:1 29319:1 29337:1 29340:1 29555:1 29590:1 29616:1 29754:1 29757:1 29796:1 29842:1 29857:1 29903:1 29904:1 29995:1 30187:1 30203:1 30323:1 30337:1 30362:1 30382:1 30465:1 30522:1 30545:1 30561:1 30615:1 30645:1 30656:2 30657:1 7 9:1 176:1 314:1 370:1 455:1 511:1 523:1 609:1 745:2 1097:1 1203:1 1248:1 1412:1 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:1 1730:1 1856:1 1915:1 1960:1 1986:1 2066:1 2155:1 2210:1 2238:2 2268:1 2274:1 2365:1 2371:2 2378:1 2383:1 2402:1 2409:1 2410:1 2465:1 2506:1 2658:1 2737:1 2750:1 2827:1 2848:1 2896:1 2912:1 2919:1 2922:2 2929:1 2938:1 3016:1 3026:1 3072:3 3220:1 3395:1 3422:1 3454:2 3501:1 3538:1 3608:1 3767:1 3819:1 3830:1 3947:1 3987:1 4066:1 4251:1 4288:1 4395:1 4410:1 4478:1 4486:1 4558:1 4636:1 4651:1 4685:1 4840:1 4857:1 4887:2 4912:1 4991:1 5078:1 5100:1 5104:1 5235:1 5254:1 5256:1 5268:1 5276:1 5287:1 5473:1 5516:1 5613:1 5618:1 5647:1 5658:1 5659:1 5980:1 5984:1 5994:1 6297:1 6332:1 6386:1 6480:1 6679:1 6695:1 6704:1 6718:1 6725:1 6890:1 6966:2 7052:1 7246:1 7432:2 7531:1 7690:1 7732:1 7840:2 7878:1 7892:1 7899:1 8009:1 8024:1 8104:7 8131:3 8477:1 8508:1 8608:1 8636:1 8641:1 8659:3 8697:1 8768:1 8919:1 8965:1 9155:1 9173:1 9330:1 9352:1 9405:2 9416:1 9546:2 9629:1 9909:1 9955:2 10096:1 10169:2 10170:1 10183:1 10208:1 10244:1 10352:1 10450:1 10459:1 10489:1 10656:1 10759:1 10840:1 10970:1 11061:1 11077:1 11097:1 11105:1 11187:2 11188:1 11245:1 11333:1 11366:1 11574:2 11709:1 11797:1 11898:1 12018:1 12023:1 12321:1 12362:1 12370:1 12395:1 12471:1 12509:1 12520:1 12527:1 12573:1 12814:1 12867:1 12886:1 12903:1 13018:1 13311:1 13405:1 13441:1 13500:1 13508:1 13596:1 13722:1 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14074:1 14289:1 14315:1 14335:1 14461:1 14469:1 14539:1 14607:1 14803:1 14966:1 15079:1 15114:1 15138:1 15139:1 15291:1 15300:1 15317:1 15323:1 15474:1 15497:1 15506:1 15642:1 15800:1 15983:1 16109:1 16115:1 16178:1 16210:1 16245:1 16272:1 16303:1 16315:2 16489:1 16519:2 16520:1 16594:1 16656:1 16714:1 16726:1 16833:1 16893:1 16960:1 17032:1 17046:1 17067:1 17071:1 17187:1 17254:1 17304:1 17322:1 17372:1 17414:1 17549:1 17555:2 17592:3 17615:1 17648:1 17700:1 17823:1 17844:1 17850:1 17939:1 17997:1 18009:2 18249:1 18266:1 18287:1 18334:1 18603:1 18670:1 18833:1 18867:1 18923:1 19019:1 19046:1 19226:2 19340:1 19420:1 19503:1 19557:1 19573:289 19577:1 19578:1 19621:1 19740:2 19833:1 19986:1 20049:1 20120:1 20142:1 20144:1 20254:1 20338:1 20342:1 20641:1 20773:3 20825:1 20833:1 20879:1 20935:2 20959:1 21054:2 21103:1 21108:1 21214:3 21460:1 21627:1 21651:1 21714:1 21831:1 21848:1 21869:1 21881:2 21901:1 22030:1 22176:1 22196:1 22202:1 22334:1 22506:1 22547:2 22549:1 22636:1 22693:2 22715:2 22771:1 22875:1 22921:1 22995:1 23006:1 23059:1 23085:1 23123:1 23149:1 23169:1 23234:1 23314:1 23411:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23665:1 23724:1 23746:1 23759:1 23858:2 23942:1 23952:1 23959:1 24029:1 24119:1 24220:2 24303:1 24332:1 24360:1 24401:1 24418:1 24430:1 24550:1 24553:1 24753:1 24760:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25451:1 25480:1 25482:1 25490:1 25493:1 25504:1 25526:1 25575:1 25594:1 25595:3 25600:1 25603:1 25773:1 25778:1 25831:1 26075:2 26299:2 26388:1 26427:1 26542:1 26648:1 26656:1 26747:1 26785:1 26835:2 26866:1 26996:1 27059:1 27155:1 27192:1 27206:1 27262:1 27328:1 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27678:1 27737:1 27738:1 27833:1 27869:1 27949:1 27993:1 28109:1 28189:1 28234:1 28319:1 28530:1 28566:1 28603:1 28609:1 28611:1 28618:1 28624:1 28639:1 28679:1 28887:1 28924:1 28949:1 29056:1 29190:1 29251:2 29271:1 29313:1 29319:1 29337:1 29340:1 29513:1 29555:1 29590:1 29616:1 29754:1 29757:1 29796:1 29842:1 29855:1 29857:1 29903:1 29904:1 29995:1 30187:1 30203:1 30323:1 30337:1 30362:1 30382:1 30465:1 30522:1 30545:1 30561:1 30615:1 30645:1 30656:2 30657:1 7 9:1 176:1 314:1 370:1 455:1 511:1 523:1 609:1 619:1 745:2 1097:1 1203:1 1248:1 1320:1 1412:1 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:1 1730:1 1856:1 1915:1 1960:1 1986:1 2066:1 2155:1 2210:1 2238:2 2268:1 2274:1 2279:1 2365:1 2370:1 2371:2 2378:1 2383:1 2402:2 2409:1 2410:1 2465:1 2506:1 2658:1 2737:1 2750:1 2827:1 2848:2 2896:1 2912:1 2919:1 2922:2 2929:1 2938:1 3016:1 3026:1 3072:3 3220:1 3395:1 3422:1 3454:2 3501:1 3538:1 3608:1 3732:1 3767:1 3819:1 3828:1 3830:1 3947:1 3987:1 4066:1 4095:1 4251:1 4288:1 4395:1 4410:1 4478:1 4486:1 4558:1 4632:1 4636:1 4651:1 4685:1 4840:1 4854:1 4857:1 4887:2 4912:1 4991:1 5078:1 5100:1 5104:1 5235:1 5254:1 5256:2 5268:1 5276:1 5286:1 5287:1 5473:1 5516:1 5546:1 5613:1 5618:1 5647:1 5658:1 5659:1 5911:1 5980:1 5984:1 5994:1 6297:1 6332:1 6386:1 6480:1 6520:1 6609:1 6679:1 6695:1 6704:1 6718:1 6725:1 6890:1 6966:2 7052:2 7168:1 7246:1 7360:1 7432:2 7531:1 7690:1 7732:1 7840:2 7878:1 7892:1 7899:1 8009:1 8024:1 8104:8 8131:3 8408:1 8477:1 8508:1 8608:1 8636:1 8641:1 8659:3 8697:1 8768:1 8919:1 8965:1 9155:1 9173:1 9330:1 9352:1 9405:2 9416:1 9487:1 9539:1 9546:2 9629:1 9909:1 9955:2 10096:1 10169:2 10170:1 10183:1 10208:1 10244:1 10352:1 10450:1 10459:1 10489:1 10656:1 10714:1 10759:1 10810:1 10840:1 10970:1 11061:1 11077:1 11097:1 11105:1 11135:1 11187:2 11188:1 11245:1 11333:1 11366:1 11379:1 11574:2 11709:1 11797:1 11898:1 12018:1 12023:1 12321:1 12362:1 12370:1 12395:1 12471:1 12509:1 12520:1 12527:1 12573:1 12723:1 12814:1 12867:1 12886:1 12903:1 12971:1 13018:1 13311:1 13405:1 13441:1 13500:1 13508:1 13510:1 13556:1 13572:1 13596:1 13722:1 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14069:1 14074:1 14085:1 14289:1 14315:1 14335:1 14461:1 14469:1 14539:1 14560:1 14607:1 14798:1 14803:1 14966:1 15079:1 15114:1 15138:1 15139:1 15160:1 15261:1 15291:1 15300:1 15306:1 15317:1 15323:1 15474:1 15497:1 15506:1 15642:1 15675:1 15760:1 15800:1 15983:1 16109:1 16115:1 16178:1 16210:1 16245:1 16272:1 16286:1 16303:1 16315:2 16489:1 16519:2 16520:1 16521:1 16576:1 16594:1 16656:1 16714:1 16726:1 16801:1 16833:1 16893:1 16960:1 17032:1 17046:1 17067:1 17071:1 17187:1 17254:1 17304:1 17322:1 17372:1 17414:1 17549:1 17555:2 17592:3 17615:1 17648:1 17700:1 17823:1 17844:1 17850:1 17859:1 17871:1 17939:1 17997:1 18009:2 18249:1 18266:1 18287:1 18292:1 18334:1 18603:1 18670:1 18740:1 18833:1 18867:1 18923:1 19019:1 19046:1 19226:2 19340:2 19420:1 19503:1 19557:1 19573:325 19577:1 19578:1 19621:1 19740:2 19797:1 19833:1 19986:1 19990:1 20047:1 20049:1 20120:1 20142:1 20144:1 20254:1 20338:1 20342:1 20541:1 20641:1 20773:3 20798:1 20825:1 20830:1 20833:1 20879:1 20935:2 20959:1 20971:1 21024:1 21054:2 21103:1 21108:1 21214:3 21460:1 21513:1 21612:1 21627:1 21651:1 21714:1 21795:1 21831:1 21848:1 21869:1 21881:2 21901:1 22006:1 22030:1 22052:1 22176:1 22196:1 22202:1 22334:1 22506:1 22539:1 22547:2 22549:1 22591:1 22636:1 22693:2 22715:2 22771:1 22845:1 22875:1 22921:1 22937:1 22995:1 23006:1 23059:1 23071:1 23085:1 23123:1 23149:1 23169:1 23234:1 23302:1 23314:1 23324:1 23411:1 23425:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23665:1 23724:1 23746:1 23759:1 23858:3 23942:1 23952:1 23959:1 23997:1 24029:1 24082:1 24119:1 24220:2 24303:1 24332:1 24360:1 24401:1 24418:1 24430:1 24550:1 24553:1 24717:1 24753:1 24760:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25451:1 25460:1 25480:1 25482:1 25490:1 25493:1 25504:1 25526:1 25575:1 25594:1 25595:3 25600:1 25603:1 25630:1 25773:1 25778:1 25831:1 26075:2 26299:3 26388:1 26427:1 26542:1 26648:1 26656:1 26686:1 26747:1 26785:1 26835:2 26866:1 26996:1 27027:1 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27328:2 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27564:1 27678:1 27737:1 27738:1 27833:1 27869:1 27949:1 27993:1 28109:1 28189:1 28234:1 28316:1 28319:1 28530:1 28566:1 28603:1 28609:1 28611:1 28618:1 28624:1 28639:1 28679:1 28887:1 28924:1 28949:1 29056:1 29104:1 29190:1 29251:3 29271:1 29313:1 29319:1 29337:1 29340:1 29513:1 29555:1 29590:1 29597:1 29616:1 29668:1 29754:1 29757:1 29796:1 29842:1 29855:1 29857:1 29903:1 29904:1 29995:1 30187:1 30203:1 30323:1 30337:1 30362:1 30382:1 30465:1 30516:1 30522:1 30545:1 30550:1 30561:1 30615:1 30618:1 30645:1 30648:1 30656:2 30657:1 30669:1 30707:1 7 9:1 19:1 176:1 314:1 370:1 455:1 511:1 523:1 609:1 619:1 745:3 1097:1 1203:1 1248:1 1314:1 1320:1 1412:1 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:1 1730:1 1856:2 1891:1 1915:1 1960:1 1986:2 2066:1 2155:1 2196:1 2210:1 2238:2 2268:1 2274:1 2279:1 2327:1 2365:1 2370:1 2371:3 2378:1 2383:1 2402:2 2409:1 2410:1 2465:1 2506:1 2566:1 2658:1 2701:1 2737:1 2750:1 2827:1 2848:2 2896:1 2912:1 2919:1 2922:2 2929:1 2938:1 3016:1 3026:1 3072:3 3220:1 3276:1 3395:1 3422:1 3454:2 3501:1 3538:1 3608:1 3732:1 3767:1 3819:1 3828:1 3830:1 3940:1 3947:1 3987:1 4066:1 4095:1 4251:1 4288:1 4395:1 4410:1 4460:1 4478:1 4486:1 4517:1 4558:1 4632:1 4636:1 4651:1 4685:1 4840:1 4854:1 4857:1 4887:2 4912:1 4991:1 5078:1 5100:2 5104:1 5235:1 5254:1 5256:3 5268:1 5276:1 5286:1 5287:1 5410:1 5473:1 5516:1 5546:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5872:1 5911:1 5980:1 5984:1 5994:1 6034:1 6297:1 6332:1 6351:1 6386:1 6480:1 6520:1 6609:1 6679:2 6695:2 6704:1 6718:1 6725:1 6727:1 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7168:1 7246:1 7360:1 7432:2 7531:1 7690:1 7732:1 7840:3 7878:1 7892:1 7899:1 7918:1 7985:1 8009:1 8024:1 8042:1 8104:9 8131:3 8408:1 8477:1 8508:1 8608:1 8636:1 8641:1 8659:3 8697:1 8768:1 8915:1 8919:1 8965:1 9093:1 9155:1 9173:1 9190:1 9279:1 9330:1 9352:1 9374:1 9405:2 9416:1 9487:1 9539:1 9546:2 9618:1 9629:1 9781:1 9909:1 9955:2 9975:1 10096:1 10169:2 10170:1 10183:2 10208:1 10244:1 10352:1 10450:1 10459:1 10489:1 10563:1 10621:1 10656:1 10714:1 10731:1 10759:1 10810:1 10840:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:2 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11379:1 11574:2 11586:1 11709:1 11797:1 11898:1 12018:1 12023:1 12049:1 12295:1 12321:1 12336:1 12362:1 12370:1 12395:1 12396:1 12471:1 12509:1 12513:1 12520:1 12527:1 12573:1 12723:1 12814:1 12867:1 12886:1 12903:1 12971:1 13018:1 13311:1 13405:1 13441:1 13500:1 13508:1 13510:1 13556:1 13572:1 13596:1 13640:1 13722:1 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14069:1 14074:1 14085:1 14289:1 14315:1 14335:1 14441:1 14461:1 14469:1 14539:1 14560:1 14607:2 14657:1 14798:1 14803:1 14966:1 15010:1 15079:1 15114:1 15138:1 15139:1 15160:1 15261:1 15291:1 15300:1 15306:1 15317:1 15323:1 15474:1 15497:1 15506:1 15516:1 15642:1 15675:1 15760:1 15774:1 15800:1 15968:1 15983:1 16092:1 16109:1 16115:1 16178:1 16210:1 16245:1 16272:1 16286:1 16303:1 16315:3 16488:1 16489:1 16519:2 16520:1 16521:1 16576:1 16594:1 16656:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 17032:1 17046:1 17059:1 17067:1 17071:1 17187:1 17254:1 17304:1 17322:1 17372:1 17414:1 17450:1 17549:1 17555:2 17592:3 17615:1 17648:1 17700:1 17725:1 17823:1 17844:1 17850:1 17859:1 17871:1 17939:1 17997:1 18009:2 18129:1 18249:1 18266:1 18287:1 18292:1 18334:1 18347:1 18603:1 18670:1 18740:1 18833:1 18867:1 18923:1 19019:1 19046:1 19180:1 19226:2 19340:2 19420:1 19503:1 19505:1 19557:1 19573:391 19577:1 19578:1 19621:2 19740:2 19797:1 19833:1 19986:1 19990:1 20047:1 20049:1 20120:1 20133:1 20142:1 20144:1 20254:1 20338:1 20342:1 20541:1 20641:1 20773:3 20798:1 20825:1 20830:1 20833:1 20879:1 20935:3 20959:1 20971:1 21024:2 21054:2 21103:1 21108:1 21214:3 21460:1 21513:1 21612:1 21627:1 21651:1 21714:1 21795:1 21831:1 21848:1 21869:1 21881:2 21889:1 21901:1 22006:1 22030:1 22052:1 22176:1 22196:1 22202:1 22334:1 22458:1 22506:1 22539:1 22547:2 22549:1 22591:1 22636:1 22656:1 22693:2 22715:2 22753:1 22771:1 22845:1 22875:1 22880:1 22921:1 22937:1 22975:1 22995:1 23006:1 23059:1 23071:1 23085:1 23123:1 23149:1 23169:1 23234:1 23302:1 23314:1 23324:1 23336:1 23349:1 23411:1 23425:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23617:1 23665:1 23724:1 23746:2 23759:1 23858:3 23901:1 23942:1 23952:1 23959:1 23997:1 24029:1 24082:1 24119:1 24220:2 24303:1 24332:1 24360:1 24401:1 24418:1 24430:1 24513:1 24550:1 24553:1 24642:1 24717:1 24753:1 24760:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25396:1 25451:1 25460:1 25480:1 25482:1 25490:1 25493:1 25504:1 25526:2 25575:1 25594:1 25595:3 25600:1 25603:1 25630:1 25773:1 25778:1 25831:1 26075:2 26133:1 26269:1 26299:3 26388:1 26427:1 26537:1 26542:1 26648:1 26656:1 26686:1 26747:1 26785:1 26835:2 26866:1 26996:1 27027:2 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27328:2 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27564:1 27653:1 27678:1 27737:1 27738:1 27767:1 27833:1 27869:1 27949:1 27993:1 28109:1 28189:1 28234:1 28271:1 28316:1 28319:2 28400:1 28530:1 28566:1 28603:1 28609:1 28611:1 28618:1 28624:1 28639:1 28679:1 28826:1 28887:1 28924:1 28949:1 28955:1 29056:1 29104:1 29190:1 29251:3 29271:1 29313:1 29319:1 29331:1 29337:1 29340:1 29357:1 29513:2 29555:1 29590:1 29591:1 29597:1 29616:1 29668:1 29754:1 29757:1 29796:1 29842:1 29855:1 29857:1 29903:1 29904:1 29938:1 29995:1 30187:1 30203:1 30323:1 30337:1 30362:1 30382:1 30403:1 30465:1 30516:1 30522:1 30545:1 30550:1 30561:2 30615:1 30618:1 30645:1 30648:2 30656:2 30657:2 30669:1 30707:1 30721:1 7 9:1 19:1 176:1 314:1 370:1 455:1 511:1 523:1 609:1 610:1 615:1 619:1 745:3 976:1 1000:1 1052:1 1097:1 1201:1 1203:1 1248:1 1314:1 1320:1 1412:1 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:1 1730:1 1856:2 1891:1 1915:1 1960:1 1986:2 2066:1 2155:1 2196:1 2210:1 2238:2 2257:1 2268:1 2274:1 2279:1 2327:1 2365:1 2370:1 2371:3 2378:1 2383:1 2402:2 2409:1 2410:1 2465:1 2506:1 2517:1 2566:1 2589:1 2658:1 2701:1 2737:1 2750:1 2827:1 2848:2 2896:1 2912:1 2919:1 2922:2 2929:1 2933:1 2938:1 3016:1 3026:1 3072:3 3220:1 3276:1 3395:1 3422:1 3454:2 3501:1 3538:1 3608:1 3732:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3940:1 3947:1 3987:1 4066:1 4095:1 4207:1 4251:1 4288:1 4377:1 4395:1 4410:1 4460:1 4478:1 4486:1 4517:1 4558:1 4632:1 4636:1 4651:1 4685:1 4840:1 4854:1 4857:1 4878:1 4887:2 4912:1 4991:1 5078:1 5100:2 5104:1 5136:1 5235:1 5254:1 5256:3 5265:1 5268:1 5276:1 5286:1 5287:1 5410:1 5473:1 5516:1 5546:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5872:2 5911:1 5980:1 5984:1 5994:1 6034:1 6297:1 6332:1 6351:1 6384:1 6386:1 6480:1 6520:1 6543:1 6609:1 6679:2 6695:2 6704:1 6718:1 6725:1 6727:1 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7166:1 7168:2 7246:1 7257:2 7360:1 7432:2 7531:1 7561:1 7622:1 7690:1 7732:1 7751:1 7840:3 7854:1 7878:1 7892:1 7899:1 7918:1 7985:1 8009:1 8024:1 8041:1 8042:1 8104:9 8131:3 8324:1 8408:1 8477:1 8508:1 8608:1 8636:1 8641:1 8659:5 8697:1 8719:1 8768:1 8915:1 8919:1 8965:1 9093:1 9155:1 9173:1 9190:1 9203:1 9279:1 9330:1 9352:1 9374:1 9405:2 9416:1 9487:1 9539:1 9546:2 9618:2 9629:1 9781:1 9782:1 9783:1 9909:1 9955:2 9960:1 9975:1 10096:1 10144:1 10169:2 10170:1 10183:2 10208:1 10244:1 10350:1 10352:1 10383:1 10450:1 10459:1 10489:1 10563:1 10621:1 10656:1 10714:2 10731:1 10759:1 10781:1 10810:1 10826:1 10840:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:2 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11574:2 11586:1 11709:1 11797:1 11898:1 12018:1 12023:1 12049:1 12086:1 12109:1 12295:1 12321:1 12336:1 12349:1 12362:1 12370:1 12395:1 12396:1 12471:1 12509:1 12513:1 12520:1 12527:1 12528:1 12573:1 12723:1 12814:1 12867:1 12886:1 12903:1 12971:1 13018:1 13311:1 13405:1 13441:1 13500:1 13508:1 13510:1 13556:1 13572:1 13596:1 13640:1 13715:1 13722:1 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14069:1 14074:1 14085:1 14289:1 14315:1 14335:1 14404:1 14441:1 14459:1 14461:1 14469:2 14539:1 14560:1 14564:1 14605:1 14607:2 14657:1 14798:1 14803:1 14850:1 14963:1 14966:1 15010:1 15079:1 15114:1 15138:1 15139:1 15160:1 15261:1 15290:1 15291:1 15300:1 15306:1 15317:1 15323:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15642:1 15675:1 15760:1 15774:1 15800:1 15968:1 15983:1 15985:1 16092:1 16109:1 16115:1 16178:1 16210:1 16245:1 16272:1 16286:1 16303:1 16315:3 16488:1 16489:1 16519:2 16520:1 16521:1 16522:1 16576:1 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17059:1 17067:1 17071:2 17187:1 17254:1 17288:1 17304:1 17317:1 17322:1 17372:1 17414:1 17450:1 17549:1 17555:2 17592:3 17615:1 17648:1 17700:1 17725:1 17823:1 17844:1 17850:1 17859:1 17871:1 17939:1 17997:1 18009:2 18129:1 18249:1 18266:1 18287:1 18292:1 18334:1 18343:1 18347:1 18449:1 18603:1 18665:1 18670:1 18740:1 18833:1 18867:1 18923:1 19019:1 19046:1 19076:1 19180:1 19226:2 19340:3 19351:1 19420:1 19503:1 19505:1 19557:1 19573:447 19577:1 19578:1 19621:2 19740:2 19762:1 19797:1 19833:1 19986:1 19990:1 20047:1 20049:1 20120:1 20133:1 20142:1 20144:1 20210:1 20254:1 20338:1 20342:1 20407:1 20473:1 20541:1 20603:1 20641:1 20736:1 20773:3 20798:1 20825:1 20830:1 20833:1 20879:1 20935:3 20959:1 20971:1 21024:2 21054:2 21103:1 21108:1 21214:3 21339:1 21460:1 21513:1 21612:1 21627:1 21651:1 21714:1 21795:1 21831:1 21848:1 21869:1 21881:2 21889:1 21901:1 21928:1 22006:1 22030:1 22052:1 22176:1 22196:1 22202:1 22334:1 22403:1 22458:1 22470:1 22506:1 22539:1 22547:2 22549:1 22591:1 22636:1 22656:1 22693:2 22715:2 22753:1 22771:1 22845:1 22875:1 22880:1 22921:1 22937:1 22975:1 22995:1 23006:1 23059:1 23071:1 23085:1 23123:1 23149:1 23169:1 23202:1 23234:1 23302:1 23314:1 23324:1 23336:1 23349:1 23400:1 23411:1 23425:1 23455:1 23512:1 23518:1 23519:2 23592:1 23594:1 23617:1 23665:1 23724:1 23746:2 23759:1 23858:3 23901:1 23942:1 23952:1 23959:1 23997:1 24029:1 24082:1 24119:1 24220:2 24303:1 24325:1 24332:2 24360:1 24401:1 24418:1 24430:1 24442:1 24513:1 24550:1 24553:1 24592:1 24642:1 24717:1 24753:1 24760:1 24766:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25396:1 25451:1 25460:1 25480:1 25482:1 25489:1 25490:1 25493:1 25504:1 25526:2 25575:1 25594:1 25595:3 25600:1 25603:1 25630:1 25773:1 25778:1 25831:1 25898:1 25955:1 26075:2 26129:1 26133:1 26269:1 26299:3 26388:1 26427:1 26532:1 26537:1 26542:1 26648:1 26656:1 26666:2 26686:1 26747:1 26785:1 26835:2 26866:2 26950:1 26996:1 27027:2 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27328:3 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27564:1 27653:1 27678:1 27737:1 27738:1 27767:1 27833:1 27869:1 27949:1 27993:1 27999:1 28031:1 28109:1 28189:1 28234:1 28271:1 28316:1 28319:2 28330:1 28400:1 28519:1 28530:1 28533:1 28566:1 28586:1 28603:1 28609:1 28611:1 28618:1 28624:1 28639:1 28679:1 28729:1 28826:1 28887:1 28924:1 28949:1 28955:1 29056:1 29104:1 29190:1 29251:3 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:1 29513:2 29549:1 29551:1 29555:1 29590:1 29591:1 29597:1 29616:1 29636:1 29638:1 29668:1 29754:1 29757:1 29796:1 29842:1 29855:1 29857:1 29903:1 29904:1 29938:1 29995:1 30090:1 30118:1 30187:1 30203:1 30236:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30465:1 30516:1 30522:1 30545:1 30550:1 30561:2 30615:1 30618:1 30645:1 30648:2 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 7 9:1 19:1 176:2 187:1 314:1 370:1 455:1 511:1 523:1 527:1 609:1 610:1 615:1 619:2 676:1 745:3 976:1 1000:1 1052:1 1097:1 1201:1 1203:1 1248:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1547:1 1658:1 1666:2 1721:1 1730:2 1748:1 1856:2 1891:1 1915:1 1960:1 1973:1 1986:2 2066:1 2155:1 2196:1 2210:1 2238:3 2257:1 2268:2 2274:1 2279:1 2327:2 2365:1 2370:1 2371:3 2378:1 2383:1 2384:1 2402:2 2409:1 2410:1 2465:1 2506:1 2517:1 2566:1 2589:1 2658:1 2701:1 2737:1 2750:1 2827:1 2848:2 2896:1 2912:1 2919:1 2922:2 2929:2 2933:1 2938:1 3016:1 3026:1 3072:4 3220:1 3276:1 3395:1 3422:2 3454:3 3501:1 3538:1 3602:1 3608:1 3732:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3940:2 3947:1 3987:1 4066:1 4095:1 4207:1 4251:1 4288:1 4299:1 4377:1 4395:1 4410:1 4460:1 4478:1 4486:1 4517:1 4558:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:1 4840:1 4854:1 4857:1 4858:1 4878:1 4887:2 4912:1 4972:1 4991:1 5078:2 5100:2 5104:1 5136:1 5184:1 5235:2 5254:2 5256:4 5265:1 5268:1 5276:1 5286:1 5287:1 5309:1 5410:1 5473:1 5480:1 5516:2 5546:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5872:2 5911:1 5980:1 5984:1 5994:1 6034:1 6038:1 6297:1 6332:1 6351:1 6384:1 6386:1 6480:1 6520:1 6543:1 6609:2 6631:1 6654:1 6679:2 6695:2 6704:2 6718:1 6725:1 6727:2 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7141:1 7166:1 7168:2 7246:1 7253:1 7257:2 7360:1 7432:2 7531:1 7534:1 7561:1 7622:1 7690:1 7732:1 7751:1 7840:3 7854:1 7878:1 7892:1 7899:1 7918:1 7985:2 8009:1 8024:1 8041:1 8042:1 8104:10 8131:4 8324:1 8408:1 8465:1 8477:1 8508:1 8608:2 8636:1 8641:1 8659:5 8697:1 8719:1 8768:1 8915:1 8919:1 8935:1 8965:1 9074:1 9093:1 9155:2 9173:1 9190:1 9203:1 9279:1 9330:1 9352:1 9374:1 9387:1 9405:2 9416:1 9487:1 9539:1 9546:2 9618:2 9629:1 9781:1 9782:1 9783:1 9909:1 9955:2 9960:1 9975:1 10096:1 10144:1 10169:2 10170:1 10183:2 10208:1 10244:1 10319:1 10350:1 10352:1 10383:1 10450:1 10459:1 10489:1 10563:1 10621:1 10656:1 10714:2 10731:2 10759:1 10781:1 10810:1 10826:1 10840:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:2 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11574:3 11586:1 11709:1 11797:1 11898:1 12012:1 12018:2 12023:1 12049:1 12086:1 12109:1 12295:2 12321:1 12336:1 12349:1 12362:1 12370:1 12395:1 12396:1 12471:1 12509:1 12513:1 12520:1 12527:1 12528:1 12573:1 12719:1 12723:1 12735:1 12814:1 12859:1 12867:1 12886:1 12903:1 12971:1 13018:1 13311:1 13405:1 13441:1 13500:1 13508:1 13510:1 13522:1 13556:1 13559:1 13572:1 13596:1 13606:1 13640:1 13715:1 13722:2 13724:1 13757:1 13801:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14069:1 14074:1 14085:1 14289:1 14303:1 14315:2 14335:2 14404:1 14441:1 14459:1 14461:1 14469:2 14539:1 14560:1 14564:1 14605:1 14607:2 14657:1 14755:1 14798:1 14803:1 14850:1 14963:1 14966:1 15010:1 15079:1 15114:1 15138:1 15139:2 15160:1 15261:1 15290:1 15291:1 15300:1 15306:1 15317:1 15323:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15642:1 15675:1 15760:1 15772:1 15774:1 15795:1 15800:1 15968:1 15976:1 15983:1 15985:1 16066:1 16092:1 16109:1 16115:1 16178:2 16210:1 16245:1 16272:1 16286:1 16303:2 16315:3 16488:1 16489:2 16519:2 16520:1 16521:1 16522:1 16530:1 16576:1 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17059:1 17067:1 17071:2 17187:1 17254:1 17288:1 17304:1 17317:1 17322:1 17372:1 17414:1 17450:1 17549:1 17555:3 17592:4 17615:1 17648:1 17700:1 17725:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17939:1 17997:1 18009:2 18052:1 18129:2 18249:1 18266:1 18270:1 18287:1 18292:1 18334:1 18343:1 18347:1 18449:1 18603:1 18665:1 18670:1 18740:1 18796:1 18833:1 18867:1 18923:1 19019:1 19046:1 19076:1 19180:1 19226:3 19340:4 19351:1 19420:1 19503:1 19505:1 19540:1 19557:1 19573:489 19577:1 19578:1 19621:2 19740:2 19762:1 19797:1 19833:1 19986:1 19990:1 20047:1 20049:1 20120:1 20133:1 20142:1 20144:1 20210:1 20254:1 20338:1 20342:1 20407:1 20473:1 20541:1 20576:1 20603:1 20641:1 20711:1 20736:1 20773:4 20798:1 20825:1 20830:1 20833:1 20879:1 20935:3 20959:1 20971:1 21024:2 21054:2 21103:1 21108:1 21214:4 21223:1 21339:1 21460:1 21513:1 21612:1 21627:2 21651:1 21714:2 21795:1 21803:1 21831:1 21848:1 21869:1 21881:3 21889:1 21901:1 21928:1 22006:1 22030:1 22052:1 22176:1 22196:1 22202:1 22223:1 22334:2 22403:1 22458:1 22463:1 22470:1 22506:1 22539:1 22547:3 22549:1 22591:1 22636:1 22656:2 22693:2 22715:2 22753:1 22771:1 22836:1 22845:1 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23036:1 23059:1 23071:1 23085:1 23123:1 23149:1 23169:1 23202:1 23234:1 23302:1 23314:1 23324:1 23336:1 23349:1 23400:1 23411:1 23425:1 23453:1 23455:1 23512:1 23518:1 23519:2 23542:1 23592:1 23594:1 23617:2 23665:1 23701:1 23724:1 23746:2 23759:2 23795:1 23858:3 23901:1 23942:1 23952:1 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24220:2 24303:1 24325:1 24332:2 24360:1 24401:1 24418:1 24430:1 24442:1 24513:1 24550:1 24553:1 24592:1 24642:1 24717:1 24753:1 24760:1 24766:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25396:1 25451:1 25460:1 25480:1 25482:1 25489:1 25490:1 25493:1 25504:1 25526:3 25575:1 25583:1 25594:2 25595:3 25600:1 25603:1 25630:1 25687:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:3 26129:1 26133:1 26269:2 26299:3 26388:1 26427:1 26489:1 26532:1 26537:1 26542:1 26595:1 26648:1 26656:1 26666:2 26686:1 26747:1 26785:1 26835:2 26866:2 26950:1 26996:1 27027:2 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27292:1 27328:4 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27564:1 27653:1 27678:1 27737:1 27738:1 27767:1 27833:1 27869:1 27949:1 27993:1 27999:1 28031:1 28047:1 28109:1 28189:2 28234:1 28271:1 28316:1 28319:3 28330:1 28400:1 28519:1 28530:1 28533:1 28566:1 28586:1 28603:1 28609:1 28611:1 28618:1 28624:1 28639:1 28679:1 28729:1 28826:1 28887:1 28924:1 28949:1 28955:1 29056:1 29104:1 29190:1 29251:3 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:2 29397:1 29513:3 29549:1 29551:1 29555:1 29590:1 29591:1 29597:1 29616:1 29636:1 29638:1 29648:1 29668:1 29754:1 29757:2 29796:1 29842:1 29855:1 29857:1 29903:1 29904:1 29938:1 29944:1 29995:1 30090:1 30118:1 30187:1 30203:1 30236:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30465:1 30516:1 30522:1 30545:1 30550:1 30561:2 30615:1 30618:1 30643:1 30645:1 30648:2 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 30786:1 7 9:1 19:1 35:1 91:1 176:3 187:2 314:1 352:1 370:1 455:1 511:1 523:1 527:1 609:1 610:1 615:1 619:2 676:1 745:3 760:1 976:1 1000:1 1052:1 1097:1 1188:1 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1728:1 1730:3 1748:1 1856:2 1891:1 1915:1 1932:1 1960:1 1973:1 1986:2 2066:1 2078:1 2155:1 2196:1 2210:1 2238:3 2257:1 2268:2 2274:1 2279:1 2327:2 2365:1 2370:1 2371:3 2378:1 2383:1 2384:1 2402:2 2409:2 2410:1 2465:1 2506:1 2517:1 2566:1 2589:1 2658:1 2663:1 2701:1 2737:1 2750:1 2800:1 2827:1 2848:2 2896:1 2898:1 2912:1 2919:2 2922:2 2929:3 2933:1 2938:1 3016:1 3026:1 3072:4 3206:1 3220:2 3276:1 3395:1 3422:2 3454:4 3501:1 3538:2 3602:1 3608:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3874:1 3940:2 3947:1 3987:1 4056:1 4066:1 4095:1 4164:1 4202:1 4207:1 4251:1 4288:1 4299:2 4377:1 4395:1 4410:1 4460:1 4478:1 4486:1 4503:1 4517:2 4551:1 4558:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:2 4840:1 4854:1 4857:1 4858:1 4878:1 4883:1 4887:2 4912:1 4972:1 4991:1 5033:1 5078:2 5100:3 5104:1 5136:1 5184:1 5235:2 5254:2 5256:5 5265:2 5268:1 5276:1 5286:1 5287:1 5309:2 5410:1 5416:1 5473:1 5480:2 5516:2 5546:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:1 5872:2 5911:1 5980:1 5984:1 5994:1 6034:1 6038:1 6060:1 6297:1 6332:1 6351:1 6384:1 6386:1 6480:1 6520:1 6543:1 6609:2 6631:2 6654:2 6679:2 6695:2 6704:2 6711:1 6718:1 6725:1 6727:2 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7141:1 7166:1 7168:2 7246:1 7253:1 7257:2 7360:1 7408:1 7432:2 7521:1 7531:1 7534:1 7561:1 7622:1 7690:1 7732:1 7745:1 7751:1 7785:1 7840:3 7854:1 7878:1 7892:1 7899:1 7918:1 7985:2 8009:1 8024:1 8041:1 8042:1 8104:11 8131:4 8245:1 8324:1 8408:1 8427:1 8465:1 8477:1 8508:1 8563:1 8608:2 8636:1 8641:1 8659:6 8697:1 8719:1 8768:2 8852:1 8855:1 8915:1 8919:1 8935:1 8965:1 9074:1 9093:2 9155:2 9173:1 9190:1 9203:1 9279:1 9330:1 9352:1 9374:1 9387:1 9405:2 9416:1 9487:1 9539:1 9546:2 9618:2 9629:1 9781:1 9782:1 9783:1 9909:1 9955:2 9960:1 9975:1 10096:1 10144:1 10169:2 10170:1 10183:2 10208:1 10244:1 10319:1 10350:1 10352:1 10383:1 10450:1 10459:1 10489:1 10563:1 10621:1 10656:1 10714:2 10731:2 10759:1 10781:1 10810:1 10826:1 10840:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:2 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11552:1 11574:4 11586:1 11709:1 11797:1 11898:1 12012:1 12018:2 12023:1 12049:1 12086:1 12109:1 12189:1 12216:1 12295:2 12316:1 12321:1 12336:1 12349:1 12362:2 12370:1 12395:1 12396:1 12471:1 12509:1 12513:1 12520:1 12527:1 12528:1 12573:1 12719:2 12723:1 12735:2 12814:1 12859:1 12867:1 12886:1 12903:1 12957:1 12971:1 13018:2 13311:1 13405:1 13441:1 13469:1 13498:1 13500:1 13508:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13606:1 13640:1 13641:1 13646:1 13662:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:1 14069:1 14074:1 14085:1 14289:1 14303:1 14315:2 14335:2 14404:1 14441:1 14459:1 14461:1 14469:2 14539:1 14560:1 14564:1 14572:1 14605:1 14607:2 14657:1 14695:1 14755:1 14772:1 14798:1 14803:1 14850:1 14963:1 14966:1 15010:1 15079:1 15114:1 15129:1 15138:1 15139:2 15160:1 15261:1 15290:1 15291:1 15300:1 15306:1 15317:2 15323:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15642:1 15675:1 15708:1 15760:1 15772:1 15774:1 15795:1 15800:1 15925:1 15968:1 15976:1 15983:1 15985:1 16065:1 16066:1 16092:1 16109:1 16115:1 16178:2 16210:1 16245:1 16272:2 16286:1 16303:2 16315:3 16323:1 16331:1 16412:1 16481:1 16488:1 16489:2 16515:1 16519:2 16520:1 16521:1 16522:2 16530:1 16576:2 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:1 17067:1 17071:2 17187:1 17254:1 17288:1 17304:1 17317:1 17322:1 17372:2 17375:1 17414:1 17450:1 17471:1 17549:1 17555:3 17592:4 17615:1 17648:1 17700:1 17725:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17899:1 17939:1 17997:1 18009:3 18052:1 18129:2 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18449:1 18603:1 18665:1 18670:1 18740:1 18796:1 18833:1 18867:1 18923:1 19019:1 19046:1 19076:1 19180:1 19226:4 19237:1 19296:1 19340:6 19351:1 19420:1 19503:1 19505:1 19540:1 19557:1 19573:568 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19818:1 19833:1 19903:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20210:2 20254:1 20327:1 20338:1 20342:1 20363:2 20392:1 20407:3 20473:1 20541:1 20576:1 20603:1 20641:1 20710:1 20711:1 20736:1 20773:4 20798:1 20825:1 20830:1 20833:1 20852:1 20879:1 20935:4 20959:1 20971:1 21024:2 21054:2 21103:1 21108:1 21214:4 21223:1 21254:1 21339:1 21409:1 21460:1 21513:1 21612:1 21627:2 21651:1 21714:3 21778:1 21795:1 21803:1 21831:1 21848:1 21869:1 21881:3 21889:1 21892:1 21901:1 21928:1 21975:1 22006:1 22030:1 22052:1 22137:1 22176:1 22196:1 22202:1 22223:1 22334:2 22403:1 22458:1 22463:1 22470:1 22484:2 22506:1 22539:1 22547:3 22549:1 22591:1 22636:1 22656:2 22693:2 22715:2 22753:1 22771:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23036:2 23059:1 23065:1 23071:1 23085:1 23123:1 23134:1 23149:1 23169:1 23202:2 23216:1 23234:1 23302:1 23314:1 23324:1 23336:1 23349:1 23400:1 23411:1 23425:1 23453:1 23455:1 23512:1 23518:1 23519:2 23542:1 23592:1 23594:1 23617:2 23665:1 23701:1 23724:1 23746:2 23759:2 23795:1 23858:3 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24154:1 24220:2 24303:1 24325:1 24332:2 24360:1 24401:1 24418:1 24430:1 24442:1 24445:1 24513:1 24550:1 24553:1 24592:1 24642:1 24717:1 24753:1 24760:1 24766:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25200:1 25213:1 25396:1 25451:1 25460:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25526:3 25550:1 25575:1 25583:1 25594:3 25595:3 25600:1 25603:2 25630:1 25687:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:4 26129:1 26131:1 26133:1 26269:2 26299:3 26388:1 26427:1 26489:1 26532:1 26537:1 26542:1 26595:1 26648:1 26656:1 26658:1 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26785:1 26835:2 26866:2 26923:1 26950:1 26996:1 27027:2 27051:1 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27292:1 27328:6 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27564:1 27653:1 27678:1 27737:1 27738:1 27767:1 27833:1 27869:1 27949:1 27993:1 27999:1 28031:1 28047:1 28109:1 28189:2 28234:1 28271:1 28282:1 28316:1 28319:4 28330:1 28396:1 28400:1 28479:1 28519:1 28530:1 28533:1 28550:1 28551:1 28566:1 28586:2 28603:1 28609:1 28611:1 28618:1 28624:1 28639:1 28679:1 28729:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28955:1 29056:1 29104:1 29131:1 29190:1 29251:3 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:3 29397:1 29513:3 29549:1 29551:1 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:1 29616:1 29636:1 29638:1 29648:2 29668:1 29752:1 29754:1 29757:2 29796:1 29842:1 29855:1 29857:1 29903:1 29904:1 29938:1 29944:1 29995:1 30090:1 30118:1 30187:1 30203:1 30236:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30437:1 30465:1 30478:1 30516:1 30522:1 30545:1 30550:1 30561:2 30615:1 30618:1 30643:1 30645:1 30648:3 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 30786:1 7 9:1 19:1 35:1 91:1 176:3 187:2 248:1 287:1 314:1 335:1 352:1 370:1 455:1 511:1 523:1 527:1 609:1 610:1 615:1 619:2 676:1 745:3 760:1 900:1 976:1 1000:1 1010:1 1052:1 1080:1 1097:1 1188:1 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1728:1 1730:3 1748:1 1856:2 1891:1 1915:1 1932:1 1960:1 1973:1 1986:2 2066:1 2078:1 2155:1 2157:1 2196:1 2210:1 2238:3 2257:1 2268:2 2274:1 2279:1 2324:1 2327:2 2341:1 2365:1 2370:1 2371:3 2378:1 2383:1 2384:1 2402:2 2405:1 2409:2 2410:1 2465:1 2506:1 2517:1 2566:1 2589:1 2658:1 2663:1 2701:1 2737:1 2750:1 2800:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:2 2929:4 2933:1 2938:1 2983:1 3016:1 3026:2 3072:4 3206:1 3220:2 3276:1 3395:1 3422:2 3454:4 3501:1 3538:2 3600:1 3602:1 3608:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3874:1 3940:2 3947:1 3987:1 4056:1 4066:1 4095:1 4164:1 4202:1 4207:1 4251:1 4288:1 4299:3 4377:1 4395:1 4410:1 4460:1 4478:1 4486:1 4503:1 4517:2 4551:1 4558:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:3 4764:1 4840:1 4854:1 4857:1 4858:1 4878:1 4883:1 4887:2 4912:1 4921:1 4972:1 4991:1 5033:1 5078:2 5100:4 5104:1 5136:1 5184:1 5235:2 5254:2 5256:5 5265:2 5268:1 5276:1 5286:1 5287:1 5309:3 5410:1 5416:1 5473:1 5480:3 5516:2 5546:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:1 5872:2 5911:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:1 6141:1 6242:1 6297:1 6332:1 6351:1 6384:1 6386:1 6480:1 6491:1 6511:1 6520:1 6543:1 6609:2 6631:3 6654:3 6660:1 6679:2 6695:2 6704:2 6711:1 6717:1 6718:1 6725:1 6727:2 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7141:1 7166:2 7168:2 7246:1 7253:1 7257:2 7358:1 7360:1 7408:1 7432:2 7521:1 7531:1 7534:1 7561:1 7622:1 7690:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7985:2 7991:1 8009:1 8024:1 8041:1 8042:1 8104:12 8129:1 8131:4 8245:1 8324:1 8370:1 8408:1 8427:1 8465:1 8477:1 8508:1 8563:1 8565:1 8608:2 8636:1 8641:1 8659:6 8697:1 8719:1 8768:2 8852:1 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 9074:1 9093:2 9154:1 9155:2 9173:1 9190:1 9203:1 9220:1 9226:1 9279:1 9330:1 9352:1 9374:1 9387:1 9405:2 9416:1 9448:1 9487:1 9539:1 9546:2 9618:2 9629:1 9781:1 9782:1 9783:1 9795:1 9909:1 9955:2 9960:1 9975:1 10096:1 10144:1 10169:2 10170:1 10183:2 10208:1 10244:1 10304:1 10319:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10489:1 10563:1 10621:1 10656:1 10714:2 10731:2 10759:1 10781:1 10810:1 10826:1 10840:1 10877:1 10907:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:2 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11552:1 11565:1 11574:4 11586:1 11625:1 11670:1 11709:1 11717:1 11753:1 11797:1 11871:1 11898:1 11964:1 12012:1 12018:2 12023:1 12049:1 12050:1 12086:1 12109:1 12189:1 12216:1 12295:2 12316:1 12321:1 12324:1 12336:1 12337:1 12349:1 12362:2 12370:1 12395:1 12396:1 12471:1 12509:1 12513:1 12520:1 12527:1 12528:1 12573:1 12662:1 12719:3 12723:1 12735:3 12814:1 12859:1 12867:1 12886:1 12903:1 12957:1 12971:1 13018:2 13311:1 13405:1 13441:1 13469:1 13498:1 13500:1 13508:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:1 13662:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:1 14069:1 14074:1 14085:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14441:1 14459:1 14461:1 14469:2 14539:1 14560:1 14564:1 14572:1 14605:1 14607:2 14656:1 14657:1 14695:1 14755:1 14772:1 14798:1 14803:1 14850:1 14963:1 14966:1 15010:1 15079:1 15114:1 15129:1 15138:1 15139:2 15160:1 15261:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15642:1 15675:1 15688:1 15708:1 15760:1 15772:1 15774:1 15795:1 15800:1 15925:1 15968:1 15976:1 15983:1 15985:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16210:1 16211:1 16245:1 16272:3 16286:1 16303:3 16315:3 16323:1 16331:1 16357:1 16412:1 16481:1 16488:1 16489:2 16515:1 16516:1 16519:2 16520:1 16521:1 16522:2 16530:1 16576:2 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:1 17067:1 17071:2 17134:1 17187:1 17254:1 17288:1 17304:1 17317:1 17322:1 17372:2 17375:1 17380:1 17414:1 17450:1 17471:1 17549:1 17555:3 17592:4 17615:1 17641:1 17648:1 17700:1 17725:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17899:1 17939:1 17997:1 18009:3 18052:1 18129:2 18165:1 18189:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18449:1 18603:2 18665:1 18670:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 19019:1 19046:1 19076:1 19093:1 19180:1 19226:4 19237:1 19295:1 19296:1 19340:6 19351:1 19420:1 19503:1 19505:1 19540:1 19557:1 19573:646 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19818:1 19833:1 19866:1 19903:1 19955:1 19980:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20210:2 20254:1 20256:1 20294:1 20327:1 20338:1 20342:1 20363:2 20392:1 20407:3 20473:1 20541:1 20576:1 20591:1 20603:1 20641:1 20710:1 20711:1 20717:1 20736:1 20773:4 20798:1 20825:1 20830:1 20833:1 20852:1 20879:1 20895:1 20935:4 20959:1 20971:1 21024:2 21038:1 21054:2 21103:1 21108:1 21214:4 21223:1 21254:1 21287:1 21339:1 21409:1 21460:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21778:1 21795:1 21803:1 21831:1 21848:1 21869:1 21876:1 21881:3 21889:1 21892:1 21901:1 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:1 22156:1 22176:1 22196:1 22202:1 22223:1 22334:2 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22506:1 22539:1 22543:1 22547:3 22549:1 22560:1 22591:1 22636:1 22656:2 22693:2 22715:2 22753:1 22771:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23036:3 23059:1 23065:1 23071:1 23085:1 23123:1 23134:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23302:1 23314:1 23324:1 23336:1 23349:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23512:1 23518:1 23519:2 23542:1 23592:1 23594:1 23617:2 23665:1 23701:1 23724:1 23746:2 23759:2 23795:1 23858:3 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24154:1 24220:2 24303:1 24325:1 24332:2 24360:1 24401:1 24418:1 24430:1 24439:1 24442:1 24445:1 24510:1 24513:1 24550:1 24553:1 24592:1 24642:1 24717:1 24753:1 24760:1 24766:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:1 25332:1 25396:1 25451:1 25460:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25526:3 25550:1 25575:1 25583:1 25594:3 25595:3 25600:1 25603:2 25630:1 25687:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:4 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26388:1 26427:1 26475:1 26489:1 26532:1 26537:1 26542:1 26595:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26785:1 26835:2 26866:2 26868:1 26923:1 26950:1 26953:1 26996:1 27027:2 27051:1 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27292:1 27328:6 27329:1 27426:1 27436:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27564:1 27653:1 27678:1 27737:1 27738:1 27767:1 27833:1 27869:1 27949:1 27993:1 27999:1 28031:1 28047:1 28060:1 28109:1 28189:2 28190:1 28222:1 28234:1 28247:1 28271:1 28282:1 28316:1 28319:4 28330:1 28396:1 28400:1 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28566:1 28586:2 28603:1 28609:1 28611:1 28618:1 28624:1 28625:1 28639:1 28679:1 28729:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28955:1 29056:1 29104:1 29131:1 29190:1 29251:3 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:4 29364:1 29397:1 29513:3 29549:1 29551:1 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29636:1 29638:1 29648:3 29668:1 29752:1 29754:1 29757:2 29796:1 29827:1 29842:1 29855:1 29857:1 29903:1 29904:1 29938:1 29941:1 29944:1 29995:1 30090:1 30118:1 30187:1 30203:1 30236:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30437:1 30465:1 30478:1 30516:1 30522:1 30545:1 30550:1 30561:2 30615:1 30618:1 30643:1 30645:1 30648:3 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 30786:1 7 9:1 19:1 35:1 91:1 176:3 187:2 248:1 287:1 314:1 335:1 352:1 370:1 455:1 511:1 523:1 527:1 609:1 610:1 615:1 619:2 676:1 745:3 760:1 900:1 976:2 1000:1 1010:1 1052:1 1080:1 1097:1 1188:1 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1728:1 1730:3 1748:1 1794:1 1856:2 1858:1 1891:1 1915:1 1932:1 1960:1 1973:1 1986:2 2066:1 2078:1 2155:1 2157:1 2196:1 2210:1 2238:3 2257:1 2268:2 2274:1 2279:1 2324:1 2327:2 2341:1 2365:1 2370:1 2371:3 2378:1 2383:1 2384:1 2402:2 2405:1 2409:2 2410:1 2465:1 2506:2 2517:1 2566:1 2589:1 2658:1 2663:1 2701:1 2737:1 2750:1 2800:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2983:1 3016:1 3026:2 3064:1 3072:5 3206:1 3220:2 3276:1 3395:1 3422:2 3454:4 3501:1 3538:2 3600:1 3602:1 3608:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3874:1 3940:2 3947:1 3987:1 4056:1 4066:1 4068:1 4095:1 4106:1 4164:1 4202:1 4207:1 4249:1 4251:1 4288:1 4299:3 4303:1 4377:1 4395:1 4410:1 4460:1 4478:1 4486:1 4503:1 4517:2 4551:1 4558:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:3 4764:1 4840:1 4854:1 4857:1 4858:1 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 5033:1 5078:2 5100:5 5104:1 5136:1 5184:1 5235:2 5254:2 5256:5 5265:2 5268:1 5276:1 5286:1 5287:1 5309:3 5410:1 5416:1 5430:1 5473:1 5480:3 5516:2 5546:1 5607:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:1 5872:2 5911:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:1 6141:1 6242:1 6297:1 6332:1 6351:1 6384:1 6386:1 6480:1 6491:1 6511:1 6520:1 6543:1 6609:2 6631:3 6654:3 6660:1 6661:1 6679:2 6695:2 6704:2 6711:1 6712:1 6717:1 6718:1 6725:1 6727:2 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7141:1 7166:2 7168:2 7246:1 7253:1 7257:2 7352:1 7358:1 7360:1 7408:1 7432:2 7521:1 7531:1 7534:1 7561:1 7622:2 7690:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7985:2 7991:1 8009:1 8024:1 8041:1 8042:1 8104:12 8129:1 8131:5 8224:1 8245:1 8324:1 8370:1 8408:1 8427:1 8465:1 8477:1 8508:1 8563:1 8565:1 8608:2 8636:1 8641:1 8659:6 8697:1 8719:2 8768:2 8852:1 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 9074:1 9093:2 9136:1 9154:1 9155:2 9173:1 9190:1 9203:1 9220:1 9226:1 9279:1 9330:1 9352:1 9374:1 9387:1 9405:2 9416:1 9448:1 9487:1 9539:1 9546:2 9618:2 9629:1 9781:1 9782:1 9783:1 9795:1 9796:1 9858:1 9909:1 9955:2 9960:1 9975:1 10096:1 10144:1 10150:1 10169:2 10170:1 10183:2 10208:1 10244:1 10304:1 10319:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10489:1 10563:1 10602:1 10621:1 10656:1 10714:2 10731:2 10759:1 10781:1 10810:1 10826:1 10838:1 10840:1 10877:1 10907:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:3 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11552:1 11565:1 11574:4 11586:1 11625:1 11670:1 11709:1 11717:1 11753:1 11797:1 11871:1 11898:1 11948:1 11964:1 12012:1 12018:2 12023:1 12049:1 12050:2 12086:1 12109:1 12189:1 12216:1 12295:2 12316:1 12321:2 12324:1 12336:1 12337:1 12349:1 12362:2 12370:1 12395:1 12396:1 12471:1 12509:1 12513:1 12520:1 12527:1 12528:1 12573:1 12603:1 12662:1 12719:3 12723:1 12735:3 12814:1 12859:1 12867:1 12886:1 12903:1 12957:1 12971:1 13018:2 13056:1 13232:1 13311:1 13405:1 13441:2 13469:1 13498:1 13500:2 13508:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:1 13662:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:1 14069:1 14074:1 14085:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14441:1 14459:1 14461:1 14469:2 14539:1 14560:1 14564:2 14572:1 14605:1 14607:2 14656:1 14657:1 14695:1 14755:1 14772:1 14798:1 14803:1 14850:1 14853:1 14963:1 14966:2 14991:1 15010:1 15079:1 15114:1 15129:1 15138:1 15139:2 15160:1 15261:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15925:1 15968:1 15976:1 15983:1 15985:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16210:1 16211:1 16245:1 16272:3 16286:1 16303:3 16315:3 16323:1 16331:1 16357:1 16376:1 16412:1 16481:1 16488:1 16489:2 16515:1 16516:2 16519:2 16520:1 16521:1 16522:2 16530:1 16532:1 16576:2 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:1 17067:1 17071:2 17134:1 17156:1 17187:1 17254:1 17288:2 17304:1 17317:1 17322:1 17372:2 17375:1 17380:1 17414:1 17439:1 17450:1 17471:1 17549:1 17555:3 17592:5 17615:1 17641:1 17648:1 17700:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17899:1 17930:1 17939:1 17997:1 18009:3 18052:1 18129:2 18165:1 18189:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18449:1 18603:2 18665:1 18670:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 19010:1 19019:1 19046:1 19076:1 19093:1 19180:1 19226:4 19237:1 19295:1 19296:1 19340:6 19351:2 19420:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:701 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19818:1 19833:2 19866:1 19903:1 19955:1 19980:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20246:1 20254:1 20256:1 20294:1 20327:1 20338:1 20342:1 20363:2 20392:1 20407:3 20473:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20710:1 20711:1 20717:1 20736:1 20773:5 20798:1 20825:1 20830:1 20833:1 20852:1 20879:1 20895:1 20935:4 20959:1 20971:1 21024:2 21038:1 21054:2 21081:1 21103:1 21108:1 21170:1 21214:5 21223:1 21254:1 21287:1 21339:1 21409:1 21460:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21761:1 21778:1 21795:1 21803:1 21831:1 21848:1 21869:1 21876:1 21881:3 21889:1 21892:1 21901:1 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:1 22139:1 22156:1 22176:1 22196:1 22202:1 22223:1 22334:2 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22506:1 22539:1 22543:1 22547:3 22549:1 22560:1 22591:1 22593:1 22636:1 22656:2 22665:1 22693:2 22715:2 22753:1 22771:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23036:3 23059:1 23065:1 23071:1 23085:1 23123:1 23134:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23302:1 23314:1 23324:1 23336:1 23349:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23493:1 23512:1 23518:1 23519:2 23542:1 23592:1 23594:1 23617:2 23665:1 23701:1 23724:1 23746:2 23759:2 23795:1 23858:3 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24134:1 24154:1 24220:2 24303:1 24325:1 24332:2 24360:1 24401:1 24418:1 24430:1 24439:1 24442:1 24445:1 24510:1 24513:1 24550:1 24553:1 24592:1 24642:1 24707:1 24717:1 24753:1 24760:1 24766:1 24819:1 24871:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:1 25332:1 25396:1 25451:1 25460:1 25478:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25526:3 25550:1 25575:1 25583:1 25594:3 25595:3 25600:1 25603:2 25630:1 25687:1 25688:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:4 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26388:1 26427:1 26475:1 26489:1 26508:1 26532:1 26537:1 26542:1 26595:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26785:1 26835:3 26866:2 26868:1 26923:1 26925:1 26938:1 26950:1 26953:1 26996:1 27027:2 27051:1 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27292:1 27328:6 27329:1 27400:1 27426:1 27436:1 27464:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27559:1 27564:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27833:1 27869:1 27949:1 27993:1 27999:1 28031:1 28047:1 28060:1 28109:1 28178:1 28189:2 28190:1 28222:1 28234:1 28247:1 28271:1 28282:1 28316:1 28319:5 28330:1 28396:1 28400:2 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28566:1 28586:2 28603:2 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28639:1 28679:1 28729:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28955:1 29006:1 29056:1 29104:1 29131:1 29166:1 29190:1 29251:3 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:4 29364:1 29397:1 29513:3 29549:1 29551:1 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29636:1 29638:1 29648:3 29668:1 29737:1 29752:1 29754:1 29757:2 29796:1 29827:1 29842:1 29855:2 29857:1 29903:1 29904:1 29938:1 29941:1 29944:1 29995:1 30090:1 30118:1 30187:1 30203:1 30236:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30437:1 30465:1 30478:1 30516:1 30522:2 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30643:1 30645:1 30648:3 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 30786:1 7 9:1 19:1 35:1 91:1 176:3 187:2 229:1 248:2 287:1 314:1 335:1 352:1 370:1 455:1 511:1 523:1 527:1 609:1 610:1 615:1 619:2 658:1 676:1 745:3 760:1 900:1 976:2 1000:1 1010:1 1052:1 1080:1 1097:1 1188:1 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1728:1 1730:3 1748:1 1794:1 1856:2 1858:1 1891:1 1893:1 1915:1 1932:2 1960:1 1973:1 1986:2 2066:1 2078:1 2155:1 2157:1 2196:1 2210:1 2238:3 2257:1 2268:2 2274:1 2279:1 2324:1 2327:2 2341:1 2365:1 2370:1 2371:3 2378:1 2383:1 2384:1 2402:2 2405:1 2409:2 2410:1 2465:1 2496:1 2506:2 2517:1 2566:1 2589:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2983:1 3016:1 3026:3 3064:1 3072:6 3149:1 3206:1 3220:2 3276:1 3381:1 3395:1 3422:2 3454:4 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3874:1 3940:2 3947:1 3986:1 3987:1 4056:1 4066:1 4068:1 4095:1 4106:1 4164:1 4173:1 4202:1 4207:1 4249:1 4251:1 4288:1 4299:3 4303:1 4377:1 4395:1 4410:2 4422:1 4460:1 4478:1 4486:1 4503:1 4517:2 4551:1 4558:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:3 4764:1 4840:1 4854:1 4857:1 4858:1 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 5033:1 5078:2 5100:6 5104:1 5122:1 5136:1 5184:1 5235:2 5254:2 5256:5 5265:2 5268:1 5276:1 5286:1 5287:1 5309:3 5410:1 5416:1 5430:1 5473:1 5480:3 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:1 5872:2 5911:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:1 6141:1 6242:1 6297:1 6332:1 6351:1 6384:1 6386:1 6480:2 6491:1 6511:1 6520:1 6543:1 6609:2 6631:3 6654:3 6660:1 6661:1 6679:2 6695:2 6704:2 6711:1 6712:1 6717:1 6718:1 6725:1 6727:2 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7141:1 7166:3 7168:2 7246:1 7253:1 7257:2 7352:1 7358:1 7360:1 7408:1 7432:2 7521:1 7528:1 7531:1 7534:1 7561:1 7622:2 7690:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7957:1 7985:2 7991:1 8009:1 8024:1 8041:2 8042:1 8104:12 8129:1 8131:6 8224:1 8245:1 8324:1 8355:1 8370:1 8408:1 8427:1 8465:1 8477:1 8508:1 8563:1 8565:1 8608:2 8636:1 8641:1 8659:6 8697:1 8719:2 8768:2 8852:1 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 9074:1 9093:2 9136:1 9154:1 9155:3 9173:1 9190:1 9203:1 9220:1 9226:1 9279:1 9330:1 9352:1 9374:1 9387:1 9405:2 9416:1 9448:1 9487:1 9539:1 9546:2 9618:2 9629:1 9781:1 9782:1 9783:1 9795:1 9796:1 9858:1 9909:1 9955:2 9960:1 9975:1 10096:1 10144:1 10150:1 10169:2 10170:1 10183:2 10208:1 10244:1 10289:1 10304:1 10319:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10489:1 10563:1 10602:1 10621:1 10656:1 10669:1 10684:1 10696:1 10714:2 10731:2 10759:1 10781:1 10810:1 10826:1 10838:1 10840:1 10877:1 10907:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:3 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11552:1 11565:1 11574:4 11586:1 11625:1 11670:1 11709:1 11716:1 11717:1 11753:1 11786:1 11797:1 11871:2 11898:1 11948:1 11964:1 12012:1 12018:2 12023:1 12049:1 12050:2 12086:1 12109:1 12139:1 12189:1 12216:1 12295:2 12316:1 12321:2 12324:1 12333:1 12336:1 12337:1 12340:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12509:1 12513:1 12520:1 12527:1 12528:1 12573:1 12575:1 12603:1 12662:2 12715:1 12719:3 12723:1 12735:3 12814:1 12859:1 12867:1 12886:1 12903:1 12957:1 12971:1 13018:2 13056:1 13232:1 13311:1 13393:1 13405:1 13441:3 13469:1 13498:1 13500:2 13508:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:1 13662:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:1 14069:1 14074:1 14085:1 14237:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14441:1 14459:1 14461:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:1 14607:2 14656:1 14657:1 14695:1 14755:1 14772:1 14798:1 14803:1 14850:1 14853:1 14963:1 14966:2 14991:1 15010:1 15079:1 15114:1 15129:1 15138:1 15139:3 15160:1 15261:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15925:1 15968:1 15976:1 15983:1 15985:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16210:1 16211:1 16245:1 16272:3 16286:1 16303:3 16315:3 16323:1 16331:1 16357:1 16376:2 16412:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:1 16522:2 16530:1 16532:1 16541:1 16576:2 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:1 17067:1 17071:2 17134:1 17156:1 17187:1 17254:1 17257:1 17288:2 17304:1 17307:1 17317:1 17322:1 17372:2 17375:1 17380:1 17414:2 17434:1 17439:1 17450:1 17471:1 17549:1 17555:4 17592:6 17615:1 17641:1 17645:1 17648:1 17700:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17899:1 17930:1 17939:1 17997:1 18009:3 18052:1 18129:2 18165:1 18189:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18449:1 18603:2 18665:1 18670:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 19010:1 19019:1 19046:1 19076:1 19093:1 19180:1 19226:5 19237:1 19295:1 19296:1 19340:6 19351:2 19420:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:756 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19814:1 19818:1 19833:2 19866:1 19903:1 19955:1 19980:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:1 20254:1 20256:1 20294:1 20327:1 20338:1 20342:1 20363:2 20392:1 20407:3 20459:1 20473:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20710:1 20711:1 20717:1 20736:1 20773:6 20798:1 20825:1 20830:1 20833:1 20852:1 20879:1 20895:1 20935:4 20959:1 20971:1 20991:1 21024:3 21038:1 21054:2 21081:1 21103:1 21108:1 21170:1 21214:6 21223:1 21254:1 21269:1 21287:1 21339:1 21409:1 21460:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21761:1 21778:1 21795:1 21803:1 21831:1 21848:1 21859:1 21869:1 21876:1 21881:4 21889:1 21892:1 21901:1 21921:1 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:1 22139:1 22156:1 22176:2 22196:1 22202:1 22223:1 22334:2 22382:1 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22506:1 22529:1 22539:1 22543:1 22547:4 22549:1 22556:1 22560:1 22591:1 22593:1 22636:1 22656:2 22665:1 22693:2 22715:2 22753:1 22771:1 22828:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23036:3 23059:1 23065:1 23071:1 23085:1 23123:1 23134:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23302:1 23314:1 23324:1 23336:1 23349:1 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23480:1 23493:1 23512:1 23518:1 23519:3 23529:1 23542:1 23592:1 23594:1 23617:2 23665:1 23701:1 23724:1 23746:2 23759:3 23795:1 23858:3 23881:1 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24134:1 24154:1 24220:2 24303:1 24325:1 24332:2 24337:1 24360:1 24401:1 24418:1 24430:1 24439:1 24442:1 24445:1 24510:1 24513:1 24550:1 24553:1 24592:1 24642:1 24707:1 24717:1 24753:1 24760:1 24766:1 24784:1 24819:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:2 25332:1 25348:1 25396:1 25451:1 25460:1 25478:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25526:3 25550:1 25575:1 25583:1 25594:4 25595:3 25600:1 25603:2 25630:1 25687:1 25688:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:5 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26388:1 26427:1 26475:1 26489:1 26508:1 26527:1 26532:1 26537:1 26542:1 26595:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26767:1 26785:1 26835:3 26866:2 26868:1 26896:1 26923:1 26925:1 26938:1 26950:1 26953:1 26954:1 26996:1 27027:2 27051:1 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27292:1 27317:1 27328:6 27329:1 27400:1 27426:1 27436:1 27464:1 27470:1 27488:1 27492:1 27496:1 27515:1 27532:1 27559:1 27564:1 27616:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27833:1 27855:1 27869:1 27949:1 27993:1 27999:1 28031:1 28047:1 28060:1 28109:1 28178:1 28189:3 28190:1 28222:1 28234:1 28247:1 28271:1 28282:1 28316:1 28319:5 28330:1 28396:1 28400:2 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28564:1 28566:1 28577:1 28586:2 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28639:1 28679:1 28729:1 28769:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28955:1 29006:1 29056:1 29104:1 29131:1 29166:1 29190:1 29251:3 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:4 29364:1 29397:1 29400:1 29513:3 29549:1 29551:2 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29636:1 29638:1 29648:3 29668:1 29737:1 29752:1 29754:1 29757:2 29796:1 29827:1 29831:1 29842:1 29855:2 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29995:1 30075:1 30081:1 30090:1 30111:1 30118:1 30187:1 30203:1 30209:1 30236:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30437:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30643:1 30645:1 30648:3 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 30786:1 7 9:1 19:1 35:1 91:1 176:3 187:2 229:1 248:2 287:1 314:1 331:1 335:1 352:1 370:1 455:1 473:1 511:1 523:1 527:1 609:1 610:1 615:1 619:2 658:1 676:1 745:3 760:1 900:1 905:1 930:1 976:2 1000:1 1007:1 1010:1 1042:1 1052:1 1080:1 1097:1 1188:1 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1727:1 1728:1 1730:3 1748:1 1794:1 1856:2 1858:1 1891:1 1893:1 1915:1 1932:2 1960:1 1973:1 1986:2 2066:1 2078:1 2155:1 2157:1 2196:1 2210:1 2238:3 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:2 2341:1 2365:1 2370:1 2371:3 2378:1 2383:1 2384:1 2402:2 2405:1 2409:2 2410:1 2465:1 2496:1 2506:2 2517:1 2566:1 2589:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2983:1 3016:1 3026:3 3064:1 3072:7 3107:1 3149:1 3206:1 3220:2 3276:1 3381:1 3395:1 3422:2 3430:1 3454:4 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3819:1 3828:1 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4056:1 4057:1 4066:1 4068:1 4085:1 4095:1 4106:1 4127:1 4164:1 4173:1 4191:1 4202:1 4207:1 4249:1 4251:1 4288:1 4290:1 4299:4 4303:1 4377:1 4395:1 4410:3 4422:1 4438:1 4460:1 4478:1 4486:1 4503:1 4517:2 4551:1 4558:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:4 4764:1 4840:1 4854:1 4857:1 4858:1 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 5033:1 5078:2 5100:6 5104:1 5122:1 5136:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5276:1 5286:1 5287:1 5309:4 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:1 5872:2 5911:1 5940:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:1 6141:1 6242:1 6297:1 6332:1 6351:1 6355:1 6384:1 6386:1 6480:3 6491:1 6511:1 6520:1 6543:1 6609:3 6631:4 6654:4 6660:1 6661:1 6679:2 6695:2 6704:2 6711:1 6712:1 6717:1 6718:1 6725:1 6727:2 6751:1 6890:1 6905:1 6966:2 7016:1 7052:2 7141:1 7166:3 7168:2 7246:1 7253:1 7257:2 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7521:1 7528:1 7531:1 7534:1 7561:1 7622:2 7689:1 7690:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7957:1 7985:2 7991:1 8009:1 8024:2 8041:2 8042:1 8065:1 8104:12 8129:1 8131:6 8224:1 8245:1 8324:1 8355:1 8370:1 8408:1 8427:1 8465:1 8477:1 8508:1 8563:1 8565:1 8608:2 8636:1 8641:1 8659:6 8697:1 8719:2 8768:2 8839:1 8852:1 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 9074:1 9093:2 9136:1 9154:1 9155:4 9173:1 9190:1 9203:1 9220:1 9226:1 9253:1 9279:1 9330:1 9352:2 9374:1 9387:1 9405:2 9416:1 9448:1 9487:1 9516:1 9539:1 9546:2 9618:3 9629:1 9781:1 9782:1 9783:1 9795:1 9796:1 9858:1 9909:1 9955:2 9960:1 9975:1 10096:2 10108:1 10144:1 10150:1 10169:2 10170:2 10183:2 10208:1 10244:1 10289:1 10304:1 10319:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10489:1 10563:1 10572:1 10602:1 10621:1 10656:2 10669:1 10684:1 10696:1 10714:2 10731:2 10759:1 10781:1 10810:1 10826:1 10838:1 10840:1 10877:1 10907:1 10910:1 10970:1 11008:1 11061:1 11077:1 11097:1 11104:1 11105:1 11135:1 11187:3 11188:1 11245:1 11291:1 11333:1 11366:1 11369:1 11370:1 11379:1 11552:1 11565:1 11574:4 11586:1 11625:1 11670:1 11709:1 11716:1 11717:1 11753:1 11786:1 11797:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 12012:1 12018:2 12023:1 12049:1 12050:2 12086:1 12109:1 12139:1 12189:1 12216:1 12295:2 12316:1 12321:2 12324:1 12333:1 12336:1 12337:1 12340:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12509:1 12513:2 12520:1 12527:1 12528:1 12573:1 12575:1 12603:1 12662:2 12715:1 12719:4 12723:1 12735:4 12814:1 12859:1 12867:1 12885:1 12886:1 12903:1 12957:1 12971:1 13018:2 13056:1 13232:1 13311:1 13393:1 13405:1 13441:3 13469:1 13498:1 13500:2 13508:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:1 13662:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13877:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:1 14069:1 14074:1 14085:1 14152:1 14237:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14441:1 14442:1 14459:1 14461:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:1 14607:2 14656:1 14657:1 14695:1 14755:1 14772:1 14798:1 14803:1 14850:1 14853:1 14963:1 14966:2 14983:1 14991:1 15010:1 15079:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15261:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15925:1 15968:1 15976:1 15983:1 15985:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16210:1 16211:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:3 16323:1 16331:1 16357:1 16376:2 16412:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:1 16522:2 16530:1 16532:1 16541:1 16576:2 16594:1 16656:1 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:1 17067:1 17071:2 17134:1 17156:1 17187:1 17254:1 17257:1 17288:2 17304:1 17307:1 17317:1 17322:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:1 17439:1 17450:1 17471:1 17549:1 17555:4 17592:6 17615:1 17641:1 17645:1 17648:1 17684:1 17700:1 17705:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17899:1 17930:1 17939:1 17997:1 18009:3 18052:1 18129:2 18165:1 18189:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18449:1 18603:2 18665:1 18670:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 18989:1 19010:1 19019:1 19046:1 19076:1 19093:1 19180:1 19226:5 19237:1 19295:1 19296:1 19340:6 19351:2 19420:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:884 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19814:1 19818:1 19833:2 19866:1 19903:1 19955:1 19980:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:1 20254:1 20256:1 20294:1 20327:1 20338:1 20342:1 20363:2 20392:1 20407:3 20459:1 20473:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20710:1 20711:1 20717:1 20736:1 20773:6 20798:1 20825:1 20830:1 20833:1 20852:1 20853:1 20879:1 20895:1 20935:4 20959:1 20971:1 20991:1 21024:3 21038:1 21054:2 21081:1 21103:1 21108:1 21170:1 21214:7 21223:1 21254:1 21269:1 21287:1 21339:1 21350:1 21400:1 21409:1 21460:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21761:1 21778:1 21795:1 21803:1 21831:1 21848:1 21859:1 21869:1 21876:1 21881:4 21889:1 21892:1 21901:1 21921:2 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:1 22139:1 22156:1 22176:2 22191:1 22196:1 22202:1 22223:1 22334:2 22382:1 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22506:1 22529:1 22539:1 22543:1 22547:4 22549:1 22556:1 22560:1 22591:1 22593:1 22636:1 22656:2 22665:1 22693:2 22705:1 22715:2 22753:1 22771:1 22828:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23036:4 23059:1 23065:1 23071:1 23085:1 23123:1 23134:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23274:1 23290:1 23302:1 23314:1 23324:1 23336:1 23338:1 23349:1 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23480:2 23493:1 23512:1 23518:1 23519:3 23529:1 23542:1 23592:1 23594:1 23617:2 23665:1 23701:1 23724:1 23746:2 23759:3 23795:1 23858:3 23881:1 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24134:1 24154:1 24220:2 24303:1 24325:1 24332:2 24337:1 24360:1 24401:1 24418:1 24430:1 24439:1 24442:1 24445:1 24510:1 24513:1 24550:1 24553:1 24592:1 24642:1 24707:1 24717:1 24753:1 24760:1 24766:1 24784:1 24819:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:2 25332:1 25348:1 25396:1 25451:1 25460:1 25478:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25511:1 25526:3 25550:1 25575:1 25583:1 25594:4 25595:3 25600:1 25603:2 25630:1 25687:1 25688:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:5 26080:1 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26388:1 26427:1 26475:1 26489:1 26508:1 26527:1 26532:1 26537:1 26542:1 26595:1 26602:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26767:1 26785:1 26835:3 26866:2 26868:1 26896:2 26923:1 26925:1 26938:1 26950:1 26953:1 26954:1 26996:1 27027:2 27051:1 27059:1 27100:1 27155:1 27192:1 27206:1 27262:2 27292:1 27296:1 27317:1 27328:6 27329:1 27400:1 27426:1 27436:1 27464:1 27470:1 27488:1 27492:1 27496:1 27515:2 27532:1 27559:1 27564:1 27616:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27949:1 27993:1 27999:1 28031:1 28047:1 28060:1 28109:1 28178:1 28189:3 28190:1 28222:1 28234:1 28247:1 28271:1 28282:1 28316:1 28319:5 28330:1 28396:1 28400:2 28456:1 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28564:1 28566:1 28577:1 28586:2 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28729:1 28769:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 29006:1 29056:1 29104:1 29131:1 29166:1 29190:1 29251:3 29260:1 29265:1 29271:1 29313:1 29319:1 29327:1 29331:1 29337:1 29340:1 29357:4 29364:1 29397:1 29400:1 29513:3 29549:1 29551:2 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29636:1 29638:1 29648:4 29668:1 29737:1 29752:1 29754:1 29757:2 29796:1 29827:1 29831:1 29842:2 29855:2 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29995:1 30004:1 30075:1 30081:1 30090:1 30111:1 30118:1 30120:1 30187:1 30203:1 30209:1 30236:1 30251:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:1 30437:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30643:1 30645:1 30648:3 30656:2 30657:2 30662:1 30669:1 30707:1 30721:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 176:4 187:2 229:1 248:2 287:1 314:1 331:1 335:1 352:1 370:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:2 658:1 676:1 745:4 760:1 900:1 905:1 906:1 926:1 930:2 976:2 1000:1 1007:1 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1188:2 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:1 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2066:1 2078:2 2155:1 2157:1 2165:1 2196:2 2210:1 2238:4 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:3 2341:1 2348:1 2365:1 2370:1 2371:4 2378:1 2383:2 2384:1 2397:1 2402:2 2405:1 2409:2 2410:1 2465:1 2496:1 2506:2 2517:1 2566:1 2576:1 2589:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2983:1 3016:1 3026:3 3064:1 3072:8 3107:1 3149:1 3206:1 3220:2 3224:1 3276:2 3381:1 3395:1 3402:1 3422:2 3430:1 3454:5 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3773:1 3786:1 3819:1 3828:1 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4056:1 4057:1 4066:1 4068:1 4085:1 4091:1 4095:1 4106:1 4127:1 4164:2 4173:1 4191:1 4202:1 4207:1 4249:1 4251:1 4288:1 4290:1 4299:4 4303:1 4355:1 4377:1 4395:1 4410:3 4422:1 4438:1 4460:1 4478:1 4486:1 4489:1 4503:1 4517:2 4532:1 4551:1 4558:1 4582:1 4613:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:4 4764:1 4778:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5078:2 5100:7 5104:1 5122:1 5136:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:1 5309:4 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6141:1 6242:1 6297:1 6332:1 6351:1 6355:2 6384:1 6386:1 6461:1 6480:4 6491:1 6511:1 6520:1 6543:1 6609:3 6631:4 6654:4 6660:1 6661:1 6679:2 6695:2 6704:2 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:1 6727:2 6751:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:2 7016:1 7052:2 7141:1 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:1 7521:1 7528:1 7531:1 7534:1 7536:1 7542:1 7561:1 7622:2 7689:1 7690:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:15 8129:1 8131:7 8224:1 8245:1 8324:1 8355:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8563:1 8565:1 8608:2 8636:1 8641:1 8659:6 8697:1 8719:2 8742:1 8749:1 8768:2 8839:1 8852:2 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 8978:1 9071:1 9074:1 9076:1 9093:2 9136:1 9154:1 9155:4 9173:2 9190:1 9203:1 9220:1 9226:1 9253:1 9256:1 9279:1 9330:1 9352:2 9374:1 9387:1 9405:2 9416:1 9429:1 9448:1 9487:1 9516:1 9539:1 9546:2 9618:4 9629:1 9781:1 9782:1 9783:1 9795:1 9796:1 9858:1 9908:1 9909:1 9955:2 9960:1 9975:1 10019:1 10022:1 10031:1 10069:1 10096:2 10108:1 10144:1 10150:1 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:1 10304:1 10319:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10489:1 10513:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:1 10696:1 10714:2 10731:2 10737:1 10759:1 10781:1 10810:1 10826:1 10838:1 10840:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:1 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11515:1 11552:1 11565:1 11574:5 11586:1 11625:1 11670:1 11681:1 11709:1 11716:1 11717:1 11753:1 11786:1 11797:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:2 12086:1 12109:1 12121:1 12125:1 12139:1 12189:1 12216:2 12295:2 12316:1 12321:2 12324:1 12333:1 12335:1 12336:1 12337:1 12340:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12509:1 12513:3 12520:1 12527:1 12528:1 12573:1 12575:1 12603:1 12662:2 12715:1 12719:4 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12849:1 12859:1 12867:1 12885:1 12886:1 12903:1 12957:1 12971:1 13018:2 13056:1 13095:1 13232:2 13271:1 13311:1 13393:1 13405:1 13441:3 13469:1 13498:1 13500:2 13508:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13859:1 13877:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:2 14069:1 14074:1 14085:1 14152:1 14237:1 14247:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14438:2 14441:1 14442:1 14459:1 14461:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14695:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15261:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16210:1 16211:3 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:4 16323:1 16331:1 16357:1 16376:2 16412:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:1 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16801:1 16833:1 16843:1 16885:1 16893:1 16960:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:1 17061:1 17067:1 17071:2 17134:1 17149:1 17156:1 17187:1 17254:1 17257:1 17288:2 17304:1 17307:1 17317:1 17322:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17450:2 17471:1 17549:1 17555:4 17592:6 17615:1 17641:1 17645:1 17648:1 17684:1 17700:1 17705:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17887:1 17899:1 17930:1 17939:1 17978:1 17997:1 18009:3 18052:1 18129:3 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18397:1 18449:1 18603:2 18665:1 18670:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 18989:1 19010:2 19019:1 19046:1 19076:1 19093:1 19118:1 19166:1 19180:1 19226:5 19237:1 19295:1 19296:1 19340:6 19351:2 19420:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:992 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19814:1 19818:1 19833:2 19866:1 19903:1 19955:1 19980:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:1 20254:1 20256:1 20274:1 20294:1 20321:1 20327:1 20338:1 20342:1 20363:2 20368:1 20392:1 20396:1 20407:3 20459:1 20473:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20710:1 20711:1 20717:1 20736:1 20773:6 20798:1 20825:1 20830:1 20833:1 20852:1 20853:1 20879:1 20895:1 20935:5 20959:1 20965:1 20971:1 20991:1 21024:3 21038:2 21054:2 21070:1 21081:1 21103:1 21108:1 21170:1 21214:8 21223:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21400:1 21409:1 21460:1 21464:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:1 21778:1 21782:1 21795:1 21803:1 21831:1 21848:1 21859:1 21869:1 21876:1 21881:4 21889:1 21892:1 21899:1 21901:1 21921:2 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:2 22139:1 22156:1 22158:1 22176:2 22191:2 22196:1 22202:1 22223:1 22327:1 22334:2 22354:1 22358:1 22382:1 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22506:1 22529:1 22539:1 22543:1 22547:4 22549:1 22556:1 22560:1 22591:1 22593:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23123:1 23134:2 23136:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:1 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23480:2 23493:1 23512:1 23518:1 23519:3 23529:1 23542:1 23563:1 23592:1 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23795:1 23858:3 23881:1 23888:1 23900:1 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24134:1 24154:1 24220:2 24303:1 24325:1 24332:2 24337:1 24360:1 24401:1 24418:1 24430:1 24439:2 24442:1 24445:1 24510:1 24513:1 24550:1 24553:1 24592:1 24639:1 24642:1 24707:2 24717:1 24753:1 24760:1 24766:1 24784:1 24819:1 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:2 25332:1 25348:1 25396:1 25451:1 25460:1 25478:1 25479:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25511:1 25526:3 25550:1 25575:1 25583:1 25585:1 25594:4 25595:3 25600:1 25603:2 25630:1 25650:1 25687:1 25688:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:5 26080:1 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26388:1 26427:1 26475:1 26489:2 26508:1 26527:1 26532:1 26537:1 26542:1 26595:1 26602:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26767:1 26785:1 26835:3 26866:2 26868:1 26896:2 26923:1 26925:1 26938:1 26950:1 26953:1 26954:1 26996:1 27027:2 27051:1 27059:1 27100:1 27122:1 27155:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:6 27329:1 27400:1 27426:1 27436:1 27464:1 27470:1 27488:1 27492:1 27496:1 27515:2 27532:1 27559:1 27564:1 27616:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27949:1 27969:1 27993:1 27999:1 28007:1 28031:1 28047:1 28060:1 28103:1 28109:1 28178:1 28189:3 28190:1 28222:1 28233:1 28234:1 28247:1 28250:1 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28396:1 28400:2 28456:1 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28564:1 28566:1 28577:1 28586:2 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28769:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 29006:1 29056:1 29104:1 29131:1 29166:1 29190:1 29251:3 29255:1 29260:1 29265:1 29271:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:5 29364:1 29397:1 29400:1 29410:1 29513:3 29526:1 29549:1 29551:3 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29737:1 29752:2 29754:1 29757:2 29796:1 29827:1 29831:1 29842:2 29855:2 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30111:1 30118:1 30120:1 30187:1 30201:1 30203:1 30209:1 30236:1 30251:2 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:1 30437:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30707:1 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 132:1 176:4 187:3 229:1 248:2 287:1 314:1 331:1 335:1 352:1 370:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:2 658:1 676:1 745:4 760:1 900:1 905:1 906:1 926:1 930:2 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1188:2 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:1 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2066:1 2078:2 2082:1 2111:1 2155:1 2157:1 2165:1 2196:3 2210:1 2238:4 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:3 2341:1 2348:1 2365:1 2370:1 2371:5 2375:1 2377:1 2378:1 2383:2 2384:1 2397:2 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2566:1 2576:1 2589:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2983:1 3016:1 3026:3 3064:1 3072:9 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3276:2 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3732:1 3735:1 3748:1 3749:1 3767:1 3770:1 3773:1 3786:1 3819:1 3828:1 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4056:1 4057:1 4066:1 4068:1 4085:1 4091:1 4095:1 4106:1 4127:1 4158:1 4164:2 4173:1 4191:1 4202:1 4207:1 4249:1 4251:1 4288:1 4290:1 4299:4 4303:1 4355:1 4377:1 4395:1 4410:3 4422:1 4438:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:1 4517:2 4532:1 4551:1 4558:1 4582:1 4613:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:4 4764:1 4778:1 4788:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5078:2 5091:1 5100:8 5104:1 5122:1 5136:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:1 5309:4 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:1 6141:1 6213:1 6242:1 6297:1 6332:1 6351:1 6355:2 6384:1 6386:1 6461:1 6480:4 6491:1 6511:1 6520:1 6543:1 6609:3 6631:4 6654:4 6660:1 6661:1 6679:2 6695:2 6696:1 6704:3 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:1 6727:2 6751:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:2 7016:1 7052:2 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:1 7521:1 7528:1 7531:1 7534:1 7536:1 7542:1 7561:1 7622:2 7689:1 7690:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:19 8129:1 8131:8 8224:1 8245:1 8324:1 8355:2 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8563:1 8565:1 8608:2 8636:1 8641:1 8659:7 8697:1 8719:2 8742:1 8749:1 8768:2 8832:1 8839:1 8852:2 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 8978:1 9071:1 9074:1 9076:1 9093:2 9136:1 9154:1 9155:4 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9256:1 9279:1 9330:1 9352:2 9374:1 9387:1 9405:2 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9618:4 9629:1 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:1 9908:1 9909:1 9955:2 9960:1 9975:1 10019:1 10022:1 10031:1 10069:1 10096:2 10108:1 10123:1 10144:1 10150:1 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:1 10304:1 10319:1 10321:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10489:1 10513:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:1 10696:1 10714:2 10731:2 10737:1 10759:1 10781:1 10810:1 10826:1 10838:2 10840:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:1 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11515:1 11552:1 11565:1 11574:6 11586:1 11625:1 11670:1 11681:1 11709:1 11716:1 11717:1 11753:1 11786:1 11797:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:1 12216:2 12295:2 12316:1 12321:2 12324:1 12333:2 12335:1 12336:1 12337:1 12340:1 12345:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12497:1 12509:1 12513:3 12520:1 12527:1 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13095:1 13232:2 13271:1 13311:1 13393:1 13405:1 13441:3 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13859:1 13877:1 13883:1 13896:2 13971:1 14034:1 14055:2 14056:2 14069:1 14074:1 14085:2 14152:2 14237:1 14247:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14438:2 14441:1 14442:1 14459:1 14461:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14695:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16202:1 16210:1 16211:3 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:4 16323:2 16331:1 16357:1 16376:2 16412:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:1 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16833:1 16843:1 16885:1 16893:1 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:2 17134:1 17149:1 17156:1 17187:1 17254:1 17257:1 17288:2 17304:1 17307:1 17317:1 17322:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17450:2 17471:1 17549:1 17555:4 17592:7 17615:1 17641:1 17645:1 17648:1 17684:1 17700:1 17705:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:1 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:1 18052:1 18129:3 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18334:1 18343:1 18347:1 18397:1 18449:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 18989:1 19010:2 19019:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:5 19237:1 19295:1 19296:1 19340:7 19351:2 19420:1 19464:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:1036 19577:1 19578:1 19621:2 19686:1 19740:2 19762:1 19775:1 19797:1 19814:1 19818:1 19833:2 19866:1 19903:1 19955:1 19980:1 19986:1 19990:1 20016:1 20024:1 20047:1 20049:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:1 20254:1 20256:1 20274:1 20294:2 20321:1 20327:1 20338:1 20342:1 20363:2 20368:1 20392:1 20396:1 20407:3 20459:1 20473:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20773:6 20798:1 20825:1 20830:1 20833:1 20852:1 20853:1 20879:1 20895:1 20935:5 20959:1 20965:1 20971:1 20991:1 21024:3 21038:2 21054:2 21070:1 21081:1 21103:1 21108:1 21170:1 21214:9 21223:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21400:1 21409:1 21460:1 21464:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21857:1 21859:1 21869:1 21876:1 21881:5 21889:1 21892:1 21899:1 21901:1 21921:2 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:2 22139:1 22156:1 22158:1 22176:2 22191:2 22196:1 22202:1 22223:1 22327:1 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22506:1 22529:1 22539:1 22543:1 22547:4 22549:1 22556:1 22560:1 22591:1 22593:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23123:1 23134:2 23136:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:1 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23480:2 23493:1 23512:1 23518:1 23519:3 23529:1 23542:1 23563:1 23592:2 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23858:4 23877:1 23881:1 23888:1 23900:1 23901:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24029:1 24082:1 24119:1 24134:1 24147:1 24154:1 24220:2 24303:1 24325:1 24332:2 24337:1 24360:1 24401:1 24418:1 24430:1 24439:2 24442:1 24445:1 24485:1 24510:1 24513:1 24516:1 24550:1 24553:1 24592:1 24633:1 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:1 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:2 25332:1 25348:1 25396:1 25451:1 25460:1 25478:1 25479:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:4 25595:3 25600:1 25603:2 25630:1 25650:1 25652:1 25687:1 25688:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:5 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26317:1 26388:1 26427:1 26475:1 26489:2 26508:1 26527:1 26532:1 26537:1 26542:1 26595:1 26602:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26767:1 26785:1 26835:3 26866:2 26868:1 26896:2 26923:1 26925:1 26938:1 26950:1 26953:1 26954:1 26996:1 27027:2 27051:1 27059:1 27100:1 27122:1 27155:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:7 27329:1 27343:1 27400:2 27426:1 27436:1 27464:1 27470:1 27488:1 27492:1 27496:1 27515:2 27532:1 27559:1 27564:1 27616:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27969:1 27993:1 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28103:1 28109:1 28178:1 28189:3 28190:1 28222:1 28233:1 28234:1 28247:1 28250:1 28266:1 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28564:1 28566:1 28577:1 28586:2 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 29006:1 29056:1 29104:1 29131:1 29166:1 29190:1 29251:3 29255:1 29260:1 29265:1 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:5 29364:1 29397:1 29400:1 29410:1 29513:3 29526:1 29549:1 29551:3 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:1 29831:1 29842:2 29855:2 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30111:1 30118:1 30120:1 30187:1 30201:1 30203:1 30209:1 30236:1 30251:2 30269:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:1 30437:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30707:1 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 120:1 132:1 176:4 187:3 229:1 248:2 287:1 288:1 314:1 331:1 335:1 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:2 658:2 676:1 745:4 760:1 815:1 900:1 905:3 906:1 926:1 930:2 975:1 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:1 1203:1 1248:1 1289:1 1314:1 1320:1 1339:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:1 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2066:1 2078:2 2082:1 2111:1 2155:1 2157:1 2165:1 2196:3 2210:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:3 2341:1 2348:1 2365:1 2370:1 2371:5 2375:1 2377:1 2378:1 2383:2 2384:1 2397:2 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2983:1 3016:1 3026:4 3064:1 3072:10 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3276:2 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3828:1 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4056:1 4057:1 4066:1 4068:1 4085:1 4091:1 4095:1 4106:1 4127:1 4158:2 4164:2 4173:1 4191:1 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:1 4517:2 4532:1 4551:1 4558:1 4582:1 4613:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:4 4764:1 4778:1 4788:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:10 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:1 5309:4 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5647:1 5658:1 5659:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:1 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:1 6355:2 6384:1 6386:1 6430:1 6461:1 6480:4 6491:1 6511:1 6520:1 6543:1 6609:3 6631:4 6654:4 6660:1 6661:1 6679:2 6695:2 6696:1 6704:3 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:2 6727:2 6751:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:3 7016:1 7052:2 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:1 7521:1 7528:1 7531:1 7534:1 7536:1 7542:1 7561:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:19 8129:1 8131:9 8224:1 8245:1 8324:1 8355:2 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:9 8697:1 8719:2 8742:1 8749:1 8768:2 8832:1 8839:1 8852:2 8855:1 8915:1 8919:1 8935:1 8941:1 8965:1 8978:1 9071:1 9074:1 9076:1 9093:2 9136:1 9154:1 9155:4 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9256:1 9279:1 9330:1 9352:2 9374:1 9387:1 9405:3 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9618:4 9629:1 9767:1 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:1 9908:1 9909:1 9955:2 9960:1 9975:1 10019:1 10022:1 10031:1 10069:1 10096:2 10108:1 10123:1 10144:1 10150:1 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:1 10304:1 10319:1 10321:1 10350:1 10352:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:1 10696:1 10714:2 10718:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:1 10838:2 10840:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:1 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11515:1 11552:1 11565:1 11574:6 11586:1 11625:1 11670:1 11681:2 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:1 12216:2 12229:1 12273:1 12295:2 12316:1 12321:2 12324:1 12333:2 12335:2 12336:1 12337:1 12340:1 12345:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12477:1 12497:1 12509:1 12513:3 12520:1 12527:1 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13095:1 13232:2 13271:1 13311:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13859:1 13877:1 13883:1 13896:3 13961:1 13971:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14152:2 14237:1 14247:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14438:2 14441:1 14442:1 14459:1 14461:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14695:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15415:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16202:1 16210:1 16211:3 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:5 16323:2 16331:1 16357:1 16376:3 16412:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:1 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16833:1 16840:1 16843:1 16885:1 16893:1 16952:1 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:2 17134:1 17149:1 17156:1 17187:1 17254:1 17257:1 17288:2 17304:1 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17471:1 17549:1 17555:5 17592:8 17615:1 17641:1 17645:1 17648:1 17684:1 17700:1 17705:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:1 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:1 18052:1 18129:3 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18449:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 18951:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19420:1 19464:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:1093 19574:1 19577:1 19578:1 19621:2 19638:1 19686:1 19740:2 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19866:1 19876:1 19903:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:2 20254:1 20256:1 20274:1 20294:2 20321:1 20327:1 20338:1 20342:1 20363:2 20368:1 20392:1 20396:1 20407:3 20459:1 20473:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:7 20798:1 20825:1 20830:1 20833:1 20852:1 20853:1 20879:1 20895:1 20935:5 20959:1 20965:1 20971:1 20991:1 21017:1 21024:3 21038:2 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21170:1 21214:10 21223:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21857:1 21859:1 21869:1 21876:1 21881:6 21889:1 21892:1 21899:2 21901:1 21921:2 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:2 22139:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22223:1 22327:1 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:1 22470:1 22472:1 22484:2 22487:1 22506:1 22529:1 22539:1 22543:1 22547:5 22549:1 22556:1 22560:1 22591:1 22593:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:1 23459:1 23480:2 23482:1 23492:1 23493:1 23512:1 23518:1 23519:4 23529:1 23542:1 23563:1 23592:2 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23830:1 23858:4 23877:1 23881:1 23888:1 23900:1 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24303:1 24325:1 24332:2 24337:1 24360:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24485:1 24510:2 24513:1 24516:1 24550:1 24553:1 24592:1 24633:1 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:2 25332:1 25348:1 25396:1 25451:1 25460:1 25478:1 25479:1 25480:1 25482:1 25489:1 25490:1 25493:2 25504:1 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25650:1 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25831:1 25898:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:3 26317:1 26388:1 26427:1 26475:1 26489:2 26508:1 26527:1 26532:1 26537:1 26542:1 26543:1 26595:1 26602:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:1 26767:2 26785:1 26835:3 26866:2 26868:1 26896:2 26923:1 26925:1 26938:1 26950:1 26953:1 26954:1 26996:1 27027:2 27051:1 27059:1 27100:1 27122:1 27155:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:7 27329:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27488:1 27492:1 27496:1 27515:2 27532:1 27559:1 27564:1 27616:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27969:1 27993:1 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28103:1 28109:1 28175:1 28178:1 28189:3 28190:1 28222:1 28233:1 28234:1 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28564:1 28566:1 28577:1 28586:2 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 29006:1 29056:1 29087:1 29104:2 29131:1 29166:1 29190:1 29251:3 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:5 29364:1 29397:1 29400:1 29410:1 29513:3 29526:1 29549:1 29551:4 29555:1 29571:1 29590:1 29591:1 29597:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:1 29831:1 29842:2 29855:2 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30111:1 30118:1 30120:1 30187:1 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:1 30437:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30707:1 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:3 229:2 248:2 287:1 288:1 314:1 331:1 335:1 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:2 658:2 676:1 745:4 760:1 815:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:2 1203:1 1248:1 1289:1 1314:1 1320:1 1339:1 1412:2 1485:1 1490:1 1491:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:1 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2165:1 2185:1 2196:4 2210:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:3 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2375:2 2377:1 2378:1 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:1 3016:1 3026:4 3064:1 3072:12 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3276:2 3365:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3828:1 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4127:1 4158:2 4164:2 4173:1 4191:1 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4613:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:4 4764:1 4778:1 4788:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:10 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:1 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5635:1 5647:1 5658:1 5659:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:1 6355:2 6384:1 6386:1 6430:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:3 6631:4 6654:4 6660:1 6661:1 6679:2 6695:2 6696:1 6704:3 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:2 6727:2 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:3 7016:1 7052:2 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:1 7521:1 7528:1 7531:1 7534:1 7536:1 7542:1 7561:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:1 7747:1 7751:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:1 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:22 8129:1 8131:11 8224:1 8245:1 8324:1 8355:2 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:10 8697:1 8719:2 8742:1 8749:1 8768:2 8832:1 8839:1 8852:2 8855:1 8884:1 8915:1 8919:1 8935:1 8939:1 8941:1 8965:1 8978:1 9071:1 9074:1 9076:1 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9256:1 9279:1 9312:1 9330:1 9352:2 9374:1 9387:1 9405:3 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9618:4 9629:1 9767:1 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:1 9908:1 9909:1 9955:2 9960:1 9975:1 10019:1 10022:1 10031:1 10069:1 10096:2 10108:1 10123:1 10144:1 10150:1 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:1 10304:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:2 10696:1 10714:2 10718:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:1 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11515:1 11552:1 11565:1 11574:6 11586:1 11625:1 11670:1 11681:2 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:1 12216:2 12229:1 12273:1 12295:2 12316:1 12321:2 12324:1 12333:2 12335:2 12336:1 12337:1 12340:1 12345:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12477:1 12497:1 12509:1 12513:3 12520:1 12527:1 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13095:1 13232:2 13241:1 13271:1 13311:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13859:1 13877:1 13883:1 13896:3 13961:1 13971:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14152:2 14237:1 14247:1 14289:1 14303:1 14308:1 14315:2 14335:2 14404:1 14438:2 14441:1 14442:1 14459:2 14461:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14695:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:5 16323:2 16331:1 16357:1 16376:3 16412:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16833:1 16840:1 16843:1 16885:1 16893:1 16952:1 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:3 17134:1 17149:1 17156:1 17187:1 17254:1 17257:2 17288:2 17304:1 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17471:1 17549:1 17555:5 17592:10 17615:1 17641:1 17645:2 17648:1 17684:1 17700:1 17705:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:1 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:3 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18449:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18923:1 18951:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19420:1 19464:1 19500:1 19503:1 19505:1 19540:1 19557:1 19573:1168 19574:1 19577:1 19578:1 19621:2 19638:1 19686:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19866:1 19876:1 19903:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:2 20254:1 20256:1 20274:1 20294:2 20321:1 20327:1 20338:1 20342:1 20363:2 20368:1 20392:1 20396:1 20407:3 20459:1 20473:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:9 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20908:1 20935:5 20959:1 20965:1 20971:1 20991:2 21017:1 21024:4 21038:2 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21170:1 21214:12 21223:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21857:1 21859:2 21869:2 21876:1 21881:8 21889:1 21892:1 21899:2 21901:1 21921:2 21928:1 21975:1 22006:1 22030:1 22052:1 22065:1 22137:2 22139:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22223:1 22327:1 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:2 22487:1 22506:1 22529:1 22539:1 22543:1 22547:5 22549:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:1 23480:2 23482:1 23492:1 23493:1 23512:1 23518:1 23519:4 23529:1 23542:2 23563:1 23592:2 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23830:1 23858:4 23876:1 23877:1 23881:1 23888:1 23900:1 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24303:1 24325:2 24332:2 24337:1 24360:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24485:1 24510:2 24513:1 24516:1 24550:1 24553:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25282:2 25332:1 25348:2 25396:1 25451:1 25460:1 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:2 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25650:1 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25831:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:2 26299:4 26317:1 26388:1 26427:1 26460:1 26475:1 26489:2 26508:1 26527:1 26532:1 26537:1 26542:1 26543:1 26595:1 26602:1 26648:1 26656:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26835:3 26838:1 26866:2 26868:1 26896:2 26923:1 26925:1 26938:1 26950:1 26953:1 26954:2 26996:1 27027:2 27051:1 27059:1 27100:1 27122:1 27155:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:7 27329:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27515:2 27532:1 27559:1 27564:1 27616:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28103:1 28109:1 28175:1 28177:1 28178:1 28189:3 28190:1 28222:1 28233:1 28234:1 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 29006:1 29056:1 29087:1 29104:2 29131:1 29166:1 29190:1 29251:4 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:5 29364:1 29397:1 29400:1 29410:1 29513:3 29526:1 29549:1 29551:4 29555:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:1 29831:1 29842:2 29855:3 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:2 30437:1 30447:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30707:1 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 248:2 287:1 288:1 312:1 314:1 331:1 335:1 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:2 658:2 676:1 745:4 760:1 815:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:2 1203:1 1248:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1485:1 1490:1 1491:1 1529:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:1 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2165:1 2185:1 2196:4 2210:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:3 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2375:2 2377:1 2378:1 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:1 3016:1 3026:4 3064:1 3072:13 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3276:2 3365:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:1 3538:2 3600:1 3602:1 3608:1 3656:1 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:1 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4613:1 4631:1 4632:1 4636:1 4651:1 4685:1 4688:1 4740:4 4764:1 4778:1 4788:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:11 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:2 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5635:1 5647:1 5658:1 5659:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:1 6355:2 6384:1 6386:1 6430:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:3 6631:4 6654:4 6660:1 6661:1 6679:2 6695:2 6696:1 6704:3 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:2 6727:2 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:3 7016:1 7052:2 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7303:1 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:1 7473:1 7521:1 7526:1 7528:1 7531:1 7534:1 7536:1 7542:1 7561:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:1 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:2 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:22 8129:1 8131:12 8224:1 8245:1 8324:1 8355:2 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:10 8697:1 8719:2 8742:1 8749:1 8768:2 8832:1 8839:1 8852:2 8855:1 8884:1 8915:1 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9071:1 9074:1 9076:1 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9256:1 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:1 9405:3 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9618:4 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:2 9908:1 9909:1 9955:2 9960:1 9975:1 10019:1 10022:1 10031:1 10069:1 10096:3 10108:1 10123:1 10144:1 10150:1 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:2 10304:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10560:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:2 10696:1 10714:2 10718:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:1 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11515:1 11552:1 11565:1 11574:6 11586:1 11625:1 11670:1 11681:2 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:1 12216:2 12229:1 12272:1 12273:1 12295:2 12316:1 12321:2 12324:1 12333:2 12335:2 12336:1 12337:2 12340:1 12345:1 12349:1 12362:2 12370:1 12395:1 12396:1 12442:1 12471:1 12477:1 12497:1 12509:1 12513:3 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13095:1 13232:2 13241:1 13271:1 13311:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13838:1 13859:1 13877:2 13883:1 13896:3 13927:1 13961:1 13971:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14152:2 14237:1 14247:1 14289:1 14303:1 14308:2 14315:2 14335:2 14404:1 14438:2 14441:1 14442:1 14459:2 14461:1 14463:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14695:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:5 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16833:1 16840:1 16843:1 16885:1 16893:1 16895:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:3 17134:1 17149:1 17156:1 17187:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17471:1 17549:1 17555:5 17592:11 17615:1 17641:1 17645:2 17648:1 17684:2 17700:1 17705:1 17725:1 17782:1 17795:1 17823:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:1 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:3 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18555:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18902:1 18923:1 18951:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1249 19574:1 19577:1 19578:1 19621:2 19638:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:1 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20133:1 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20321:1 20327:1 20338:1 20342:1 20363:2 20368:1 20392:1 20396:1 20407:3 20459:1 20473:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:10 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21170:1 21214:13 21223:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:1 21763:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:9 21889:1 21892:1 21899:2 21901:1 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:1 22137:2 22139:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22223:1 22231:1 22327:1 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:2 22487:1 22506:1 22529:1 22533:1 22539:1 22543:1 22547:5 22549:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:1 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:1 23480:2 23482:1 23492:1 23493:1 23512:1 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23826:1 23830:1 23858:4 23876:1 23877:1 23881:1 23888:1 23900:1 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24303:1 24325:2 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:2 24513:1 24516:1 24550:1 24553:2 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25235:1 25282:2 25332:1 25348:2 25396:1 25451:1 25460:1 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:2 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25650:1 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26460:1 26475:1 26489:2 26508:1 26527:1 26532:1 26537:1 26542:1 26543:1 26595:1 26602:1 26648:1 26656:1 26657:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26835:3 26838:1 26866:2 26868:1 26896:2 26923:1 26925:1 26938:1 26950:1 26953:1 26954:2 26996:1 27027:2 27051:1 27059:1 27100:1 27122:1 27155:1 27162:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27653:1 27678:1 27686:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28103:1 28109:1 28175:1 28177:1 28178:1 28189:3 28190:1 28222:1 28232:1 28233:1 28234:1 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:4 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:5 29364:1 29397:1 29400:2 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:1 29831:1 29842:3 29855:3 29857:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:2 30437:1 30447:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30697:1 30707:1 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 745:4 760:1 777:1 815:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:1 1547:1 1627:1 1658:1 1666:2 1702:1 1718:1 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:2 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2005:1 2053:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:4 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:3 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:1 3016:1 3026:4 3064:2 3070:1 3072:13 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:2 3538:2 3599:1 3600:1 3602:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4612:1 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4764:1 4778:1 4788:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:11 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:2 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:1 6355:2 6384:1 6386:1 6430:1 6448:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:4 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:3 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:2 6727:2 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:3 7016:1 7052:2 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7303:1 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:2 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:25 8129:1 8131:13 8224:1 8245:1 8324:1 8355:2 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:11 8689:1 8697:1 8719:2 8742:1 8749:1 8768:3 8832:1 8839:2 8852:2 8855:1 8884:1 8915:1 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9071:1 9074:1 9076:2 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9559:1 9618:4 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:2 9908:1 9909:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:2 10304:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10560:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:2 10696:1 10699:1 10714:2 10718:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11515:1 11552:1 11565:1 11574:6 11586:1 11608:1 11625:1 11670:1 11681:2 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:2 12216:2 12229:1 12272:1 12273:1 12291:1 12295:2 12316:1 12321:2 12324:1 12333:2 12335:2 12336:1 12337:2 12340:1 12345:1 12349:1 12362:2 12370:1 12374:1 12395:1 12396:1 12436:1 12442:2 12471:1 12477:1 12497:1 12509:1 12513:3 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13095:1 13202:1 13232:2 13241:1 13271:1 13311:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:2 14214:1 14237:1 14247:1 14289:2 14303:1 14308:2 14315:2 14335:2 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14665:1 14695:1 14746:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:5 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16833:1 16840:1 16843:1 16882:1 16885:1 16893:1 16895:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17471:1 17541:1 17543:1 17549:1 17555:5 17592:11 17615:1 17641:1 17645:2 17648:1 17684:2 17700:1 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:2 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:3 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18555:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18882:1 18902:1 18923:1 18951:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1309 19574:1 19577:1 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20133:2 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20321:1 20326:1 20327:1 20338:1 20342:1 20363:3 20368:2 20392:1 20396:1 20407:3 20459:1 20473:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:10 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:13 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21466:1 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:1 21763:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:10 21889:1 21892:1 21899:2 21901:1 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:2 22137:2 22139:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22223:1 22231:1 22235:1 22270:1 22327:2 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:3 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23202:2 23216:1 23234:1 23249:2 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:1 23480:2 23482:1 23492:1 23493:1 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23826:1 23830:1 23858:4 23876:1 23877:1 23881:1 23888:1 23900:1 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:2 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:1 25235:1 25282:2 25332:1 25348:2 25396:2 25451:1 25460:2 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:2 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25650:2 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:2 26896:2 26923:1 26925:1 26938:1 26941:1 26950:1 26953:1 26954:2 26996:1 27027:2 27051:1 27059:1 27083:1 27100:1 27122:1 27155:1 27162:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27653:2 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28083:1 28090:1 28103:1 28109:1 28175:1 28177:1 28178:1 28189:3 28190:2 28222:1 28232:1 28233:1 28234:1 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:4 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:7 29364:1 29397:1 29400:2 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29690:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30362:1 30382:1 30403:1 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 745:5 760:1 777:1 815:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:1 1547:1 1627:2 1658:1 1666:2 1702:1 1718:1 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:2 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2005:1 2053:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:4 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:3 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:1 3016:1 3026:4 3064:2 3070:1 3072:16 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:2 3538:2 3599:1 3600:1 3602:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4612:1 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4764:1 4778:1 4788:1 4789:1 4840:1 4854:1 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:12 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:2 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:1 6355:2 6384:1 6386:1 6430:1 6448:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:4 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:3 6706:2 6711:2 6712:1 6717:1 6718:1 6720:1 6725:2 6727:2 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:3 7016:1 7052:2 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7303:1 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7601:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:2 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:25 8129:1 8131:15 8224:1 8245:1 8324:1 8343:1 8355:2 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:11 8689:1 8697:1 8719:2 8742:1 8749:1 8768:3 8832:1 8839:2 8852:2 8855:1 8884:1 8915:1 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9071:1 9074:1 9076:2 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9559:1 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:2 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:2 10304:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10560:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:2 10696:1 10699:1 10714:2 10718:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:1 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11515:1 11552:1 11565:1 11574:6 11586:1 11608:1 11625:1 11670:1 11681:2 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:2 12216:2 12229:1 12272:1 12273:1 12291:1 12295:2 12316:1 12321:2 12324:1 12331:1 12333:2 12335:2 12336:1 12337:2 12340:1 12345:1 12349:1 12362:2 12370:1 12374:1 12395:1 12396:1 12436:1 12442:2 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13095:1 13202:1 13232:2 13241:1 13268:1 13271:1 13311:1 13333:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 14006:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:2 14214:1 14237:1 14247:1 14289:2 14303:1 14308:2 14315:2 14335:2 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14665:1 14695:1 14746:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:6 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16826:1 16833:1 16840:1 16843:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17471:1 17541:1 17543:1 17549:1 17555:5 17592:14 17615:1 17641:1 17645:2 17648:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:2 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:3 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18555:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18882:1 18902:1 18923:1 18951:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1332 19574:1 19577:1 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20133:2 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20321:1 20326:1 20327:1 20338:1 20342:1 20363:3 20368:2 20392:1 20396:1 20407:3 20459:1 20473:1 20479:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:13 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:16 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21466:1 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:12 21889:1 21892:1 21899:2 21901:2 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:2 22137:2 22139:1 22152:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22223:1 22231:1 22235:1 22270:1 22327:2 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:3 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23216:1 23234:1 23249:2 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23665:1 23674:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:2 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:2 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:2 25235:1 25282:2 25332:1 25348:2 25396:2 25451:1 25460:2 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:2 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:2 26896:2 26923:1 26925:1 26938:1 26941:1 26950:1 26953:1 26954:2 26996:1 27027:2 27051:1 27059:1 27083:1 27100:1 27122:1 27155:1 27162:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28083:1 28090:1 28103:1 28109:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:1 28232:1 28233:1 28234:2 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:4 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:7 29364:1 29397:1 29400:2 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29690:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:1 30382:1 30403:1 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:2 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:2 30673:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 745:5 760:1 777:1 815:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:1 1547:1 1627:2 1658:1 1666:2 1702:1 1714:1 1718:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1856:2 1858:2 1891:1 1893:2 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2005:1 2053:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2224:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:1 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:3 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:1 3016:1 3026:4 3064:2 3070:1 3072:18 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:2 3538:2 3599:1 3600:1 3602:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:1 3831:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4612:1 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:12 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:2 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:2 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:1 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6448:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:5 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:3 6706:2 6711:2 6712:1 6717:2 6718:1 6720:1 6725:2 6727:2 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6966:3 7016:1 7052:2 7134:1 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7264:1 7303:1 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7601:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:2 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:25 8129:1 8131:17 8224:1 8245:1 8324:1 8343:1 8355:2 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:11 8689:1 8697:1 8719:2 8742:1 8749:1 8768:3 8832:1 8839:2 8852:2 8855:1 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9071:1 9074:1 9076:2 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:1 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:1 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9559:1 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:2 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:2 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10560:1 10563:1 10572:1 10602:1 10621:1 10656:3 10669:1 10684:2 10696:1 10699:1 10714:2 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11515:1 11552:1 11565:1 11574:6 11586:1 11608:1 11625:1 11670:1 11681:2 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:2 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:2 12216:2 12229:1 12272:1 12273:1 12291:1 12295:2 12316:1 12321:2 12324:1 12331:1 12333:2 12335:2 12336:1 12337:2 12340:1 12345:1 12349:1 12362:2 12370:1 12374:1 12395:1 12396:1 12436:1 12442:2 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12619:1 12662:2 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13057:1 13095:1 13202:1 13232:2 13241:1 13268:1 13271:1 13311:1 13333:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13575:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:2 14214:1 14237:1 14247:1 14289:2 14303:1 14308:2 14315:2 14335:2 14350:1 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14665:1 14695:1 14746:1 14749:1 14755:2 14772:1 14798:1 14803:1 14816:2 14850:1 14853:1 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:1 16272:3 16286:1 16288:1 16303:3 16315:6 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:1 16801:1 16826:1 16833:1 16840:1 16843:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17471:1 17541:1 17543:1 17549:1 17555:5 17580:1 17592:16 17615:1 17641:1 17645:2 17648:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:2 17899:1 17909:1 17930:1 17939:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:4 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18555:1 18603:2 18665:1 18670:1 18733:1 18740:1 18796:1 18821:1 18833:1 18867:1 18882:1 18902:1 18923:1 18951:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1364 19574:1 19577:1 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20133:2 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20321:1 20326:1 20327:1 20338:1 20342:1 20363:3 20368:2 20392:1 20396:1 20407:3 20459:1 20473:1 20479:1 20509:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:15 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21466:1 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:13 21889:1 21892:1 21899:2 21901:2 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:2 22137:2 22139:1 22152:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22223:1 22231:1 22235:1 22270:1 22327:2 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:3 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:2 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:2 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:2 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:2 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:1 25140:1 25147:1 25187:1 25200:1 25213:2 25235:1 25282:2 25332:1 25348:2 25396:2 25451:1 25460:2 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:3 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25814:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:2 26896:2 26923:1 26925:1 26938:1 26941:1 26950:1 26953:1 26954:2 26996:1 27027:2 27051:1 27059:1 27083:1 27100:1 27122:1 27155:1 27162:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28083:1 28090:1 28103:1 28109:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:1 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28948:1 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:7 29364:1 29397:1 29400:2 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29563:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29690:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 722:1 745:5 760:1 777:1 815:1 843:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1041:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:1 1547:1 1627:2 1658:1 1666:2 1702:1 1714:1 1718:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1855:1 1856:2 1858:2 1891:1 1893:3 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2005:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2224:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:4 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:2 3016:1 3026:4 3064:2 3070:1 3072:18 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:2 3538:2 3599:1 3600:1 3602:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:1 3831:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4364:1 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4612:1 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:14 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:3 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:2 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6448:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:5 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:3 6706:2 6711:2 6712:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:1 6966:3 7016:1 7052:2 7134:1 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7601:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:26 8129:1 8131:17 8224:1 8245:1 8324:1 8343:1 8355:3 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:11 8689:1 8697:1 8719:2 8742:1 8749:1 8768:3 8832:1 8839:2 8852:2 8855:1 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9037:1 9071:1 9074:1 9076:2 9080:1 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:2 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:2 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9559:1 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9821:1 9858:2 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10244:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10560:1 10563:1 10572:1 10602:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:2 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11552:1 11565:1 11574:6 11586:1 11608:1 11625:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:3 12086:1 12109:1 12121:1 12125:1 12139:1 12189:2 12216:2 12229:1 12272:1 12273:1 12291:1 12295:2 12316:1 12321:2 12324:1 12331:1 12333:3 12335:2 12336:1 12337:3 12340:1 12345:2 12349:1 12362:2 12370:1 12374:1 12395:1 12396:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13057:1 13070:1 13095:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13575:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:3 14214:1 14237:1 14247:1 14289:2 14303:1 14308:3 14315:2 14335:2 14350:1 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14582:1 14590:1 14605:2 14607:2 14656:1 14657:1 14658:1 14665:1 14695:1 14746:1 14749:1 14755:2 14772:1 14780:1 14798:1 14803:1 14816:2 14850:1 14853:1 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 14995:1 15001:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:6 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:2 16801:1 16826:1 16833:1 16840:1 16843:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17467:1 17471:1 17541:1 17543:1 17549:1 17555:5 17580:1 17592:16 17615:1 17641:1 17645:2 17648:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:2 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:4 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18477:1 18555:1 18603:2 18665:1 18670:1 18733:1 18740:2 18796:1 18821:2 18833:1 18867:1 18882:1 18902:1 18923:1 18951:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1448 19574:1 19577:1 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20127:1 20133:2 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20321:1 20326:1 20327:1 20338:1 20342:1 20363:3 20368:2 20392:1 20396:1 20407:3 20459:1 20473:1 20479:1 20509:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:1 20675:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:15 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21466:1 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:13 21889:1 21892:1 21899:2 21901:2 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:2 22074:1 22137:2 22139:1 22152:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:2 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:3 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:3 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23075:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:2 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:2 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:4 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:2 25140:1 25147:1 25187:1 25200:1 25213:2 25235:1 25282:3 25332:1 25348:2 25396:2 25451:2 25460:2 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:3 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25814:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:2 26896:2 26923:1 26925:1 26938:1 26941:1 26945:1 26950:1 26953:1 26954:2 26956:1 26996:1 27027:2 27051:1 27059:1 27082:1 27083:1 27100:1 27122:1 27155:1 27162:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28069:1 28083:1 28090:1 28103:1 28109:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:1 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28437:1 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28932:1 28946:1 28948:1 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:8 29364:1 29397:1 29400:3 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29563:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29690:1 29732:1 29737:1 29752:2 29754:1 29756:1 29757:2 29770:1 29796:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 722:1 745:5 760:1 777:1 815:1 843:1 900:1 905:3 906:1 926:1 930:2 957:1 975:1 976:2 1000:1 1007:3 1010:1 1041:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:1 1547:1 1627:2 1658:1 1666:2 1702:1 1714:1 1718:2 1721:1 1727:1 1728:1 1730:3 1748:2 1794:1 1855:1 1856:2 1858:2 1891:1 1893:3 1913:1 1915:1 1932:2 1960:2 1973:1 1986:2 2005:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2224:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:4 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:1 2912:1 2913:1 2919:2 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:2 3016:1 3026:4 3064:2 3070:1 3072:18 3090:1 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:6 3501:2 3538:2 3599:1 3600:1 3602:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:1 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:1 3831:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:1 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4364:1 4377:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:1 4558:1 4582:1 4612:1 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:14 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:3 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5286:2 5287:2 5309:4 5315:1 5374:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6448:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:5 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:3 6706:2 6711:2 6712:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6966:3 7016:1 7052:2 7134:1 7141:2 7166:3 7168:2 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7601:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:26 8129:1 8131:17 8224:1 8245:1 8324:1 8343:1 8355:3 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:11 8689:1 8697:1 8719:2 8742:1 8749:1 8768:3 8832:1 8839:2 8852:2 8855:1 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:2 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:2 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9559:1 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9797:1 9821:1 9858:2 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10239:1 10244:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10560:1 10563:1 10572:1 10602:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:2 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11552:1 11565:1 11574:6 11586:1 11608:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:4 12086:1 12109:1 12121:1 12125:1 12139:1 12189:2 12216:2 12229:1 12272:1 12273:1 12291:1 12295:2 12316:1 12321:2 12324:1 12331:1 12333:3 12335:2 12336:1 12337:3 12340:1 12345:2 12349:1 12362:2 12370:1 12374:1 12395:1 12396:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13057:1 13070:1 13095:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:1 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13575:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:3 14214:1 14237:1 14247:1 14289:2 14303:1 14308:3 14315:2 14335:2 14350:1 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14582:2 14590:1 14605:2 14607:2 14656:2 14657:1 14658:1 14665:1 14695:1 14746:1 14749:1 14755:2 14772:1 14780:1 14798:1 14803:1 14816:2 14850:1 14853:1 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 14995:1 15001:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:2 15320:1 15323:1 15332:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:6 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:2 16801:1 16826:1 16833:1 16840:1 16843:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17194:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17434:1 17437:2 17439:1 17445:1 17450:2 17467:1 17471:1 17541:1 17543:1 17549:1 17555:5 17580:1 17592:16 17615:1 17641:1 17645:2 17648:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:2 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17997:1 18009:3 18036:2 18052:1 18129:4 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18477:1 18555:1 18603:2 18665:1 18670:1 18733:1 18740:2 18796:1 18821:2 18833:1 18867:1 18882:1 18902:1 18923:1 18951:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19226:6 19237:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1493 19574:1 19577:2 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20127:1 20133:2 20142:1 20144:1 20153:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20321:1 20326:1 20327:1 20338:1 20342:1 20363:3 20368:2 20392:1 20396:1 20407:3 20459:1 20473:1 20479:1 20509:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:1 20675:1 20681:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:15 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21466:1 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:1 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:13 21889:1 21892:1 21899:2 21901:2 21908:1 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:2 22074:1 22137:2 22139:1 22152:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:2 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22463:2 22470:1 22472:1 22484:3 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:3 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:1 23065:1 23071:1 23075:1 23085:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:2 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:2 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:4 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:2 25140:1 25147:1 25187:1 25200:1 25213:2 25235:1 25282:3 25332:1 25348:2 25396:2 25451:2 25460:2 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:3 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:5 25595:3 25600:1 25603:3 25630:1 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25773:1 25778:1 25789:1 25814:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:6 26080:2 26129:1 26131:1 26133:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:2 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:2 26896:2 26923:1 26925:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27027:2 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27155:1 27162:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28069:1 28083:1 28090:1 28103:1 28109:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:1 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28437:1 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28831:1 28887:1 28924:1 28932:1 28946:1 28948:1 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:8 29364:1 29397:1 29400:3 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29563:1 29571:1 29590:1 29591:1 29597:1 29599:1 29608:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29679:1 29690:1 29732:1 29737:1 29752:2 29754:1 29756:1 29757:2 29759:1 29770:1 29796:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:1 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:2 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 722:1 745:5 760:1 777:1 815:1 843:1 846:1 900:1 905:3 906:1 926:1 930:3 957:1 975:1 976:2 1000:1 1007:3 1010:1 1041:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1452:1 1461:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:1 1547:1 1627:2 1658:1 1666:2 1702:1 1714:1 1718:2 1721:1 1727:1 1728:1 1730:3 1748:2 1785:1 1794:1 1855:1 1856:2 1858:2 1891:1 1893:3 1913:1 1915:1 1932:3 1960:2 1973:1 1986:2 2005:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2224:1 2238:4 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:4 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:1 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:2 3016:1 3026:4 3064:2 3070:1 3072:18 3090:1 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:3 3430:1 3454:7 3501:2 3538:2 3599:1 3600:1 3602:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:2 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:2 3831:1 3846:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:2 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4158:2 4164:2 4173:1 4191:2 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4364:1 4377:1 4378:1 4395:1 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4612:1 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:16 5104:1 5122:1 5136:1 5177:1 5184:1 5235:2 5254:3 5256:5 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5284:1 5286:2 5287:2 5289:1 5309:4 5315:1 5363:1 5374:1 5377:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:1 6213:1 6242:1 6297:1 6306:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6445:1 6448:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:5 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:3 6706:2 6711:2 6712:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6966:3 7016:1 7052:2 7134:1 7141:2 7166:4 7168:2 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7601:1 7622:2 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:1 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8008:1 8009:1 8024:2 8026:1 8041:3 8042:1 8065:1 8104:26 8129:1 8131:17 8200:1 8224:1 8226:1 8245:1 8324:1 8343:1 8348:1 8355:3 8359:1 8370:1 8379:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8559:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:11 8689:2 8697:1 8719:2 8742:1 8749:1 8768:3 8806:1 8832:1 8839:2 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9136:1 9154:2 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9253:2 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:2 9429:1 9448:1 9487:1 9516:2 9539:1 9546:2 9559:1 9605:1 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9797:1 9821:1 9858:2 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10239:1 10244:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:1 10602:1 10610:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:2 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11165:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11521:1 11552:1 11565:1 11574:6 11586:1 11608:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11952:1 11964:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:4 12086:1 12109:1 12121:1 12125:1 12139:1 12141:1 12189:2 12216:2 12229:1 12272:1 12273:1 12291:1 12295:2 12313:1 12316:1 12320:1 12321:2 12324:1 12331:1 12333:3 12335:2 12336:1 12337:3 12340:1 12345:2 12349:1 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12957:1 12971:2 13018:2 13056:1 13057:1 13070:1 13095:1 13130:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13341:1 13365:1 13393:1 13405:1 13441:5 13469:1 13498:2 13500:2 13508:1 13509:1 13510:1 13522:1 13551:1 13556:1 13559:1 13572:1 13574:1 13575:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:3 14214:1 14237:1 14247:1 14289:2 14303:1 14308:3 14315:2 14335:2 14350:1 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14560:1 14564:2 14572:1 14582:2 14590:1 14605:2 14607:2 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14746:1 14749:1 14755:2 14772:1 14780:1 14798:1 14803:1 14816:2 14850:1 14853:1 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 14995:1 15001:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15317:3 15320:1 15323:1 15332:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:1 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:6 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:3 16801:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17194:1 17254:1 17257:2 17261:1 17288:2 17304:2 17307:1 17317:1 17322:1 17363:1 17372:2 17375:1 17380:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:1 17450:2 17467:1 17471:1 17541:1 17543:1 17549:1 17555:5 17580:1 17592:16 17615:1 17641:1 17645:2 17648:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17882:1 17887:2 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17997:1 18009:3 18015:1 18036:2 18052:1 18129:4 18142:1 18157:1 18165:1 18189:1 18239:1 18249:2 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18477:1 18555:1 18603:2 18646:1 18664:1 18665:1 18670:1 18733:1 18740:2 18796:1 18821:2 18833:1 18867:1 18882:1 18902:1 18923:1 18951:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:7 19351:2 19362:1 19420:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1558 19574:1 19577:2 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:1 19788:1 19797:1 19809:1 19814:1 19818:1 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20116:1 20120:1 20127:1 20133:2 20142:1 20144:1 20153:1 20181:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20338:1 20342:1 20363:3 20368:2 20377:1 20392:1 20396:1 20407:3 20459:1 20473:1 20479:1 20509:2 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:2 20675:1 20681:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:15 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21038:2 21047:1 21054:3 21070:1 21081:1 21087:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21460:1 21464:2 21466:1 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:13 21889:1 21892:1 21899:2 21901:2 21908:1 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:1 22065:2 22074:1 22137:2 22139:1 22152:1 22156:1 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:2 22334:3 22354:1 22358:1 22382:1 22384:1 22403:1 22458:1 22459:1 22463:2 22470:1 22472:1 22484:3 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:2 22848:1 22875:3 22876:1 22880:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23085:1 23110:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:3 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:1 23390:2 23398:1 23400:1 23411:1 23425:1 23441:1 23453:1 23455:2 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:2 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:2 24299:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:4 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25089:1 25093:1 25118:2 25140:1 25147:1 25187:1 25200:1 25213:2 25235:1 25282:3 25332:1 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25477:1 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:6 25595:3 25600:1 25603:3 25630:1 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25731:1 25773:1 25778:1 25789:1 25814:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:7 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26220:1 26269:3 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26764:1 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:3 26896:2 26923:1 26925:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27027:2 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27155:1 27162:1 27186:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:8 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:1 28069:1 28083:1 28090:1 28103:1 28109:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:1 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:1 28332:1 28333:1 28352:1 28377:1 28396:1 28400:2 28437:1 28441:1 28456:1 28476:1 28479:1 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28830:1 28831:2 28887:1 28924:1 28932:1 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:8 29364:1 29397:1 29400:3 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:1 29756:1 29757:2 29759:1 29770:1 29796:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:2 384:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:2 676:1 722:1 745:5 760:1 777:1 809:1 815:1 818:1 843:1 846:1 900:1 905:3 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1007:3 1010:1 1041:1 1042:1 1052:1 1080:1 1084:1 1097:1 1174:1 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1314:1 1320:1 1324:1 1339:1 1412:3 1452:1 1461:1 1473:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:3 1547:1 1627:2 1658:1 1666:2 1702:1 1714:1 1718:2 1721:1 1727:1 1728:2 1730:3 1748:2 1785:1 1794:1 1855:1 1856:2 1858:2 1891:1 1893:3 1913:1 1915:1 1932:3 1960:2 1973:1 1986:2 2005:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:4 2383:2 2384:1 2390:1 2397:3 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2650:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:2 3016:1 3026:4 3064:2 3070:1 3072:18 3090:1 3107:1 3139:1 3149:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:4 3430:1 3454:8 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3608:1 3656:2 3678:1 3704:1 3732:1 3735:2 3748:1 3749:1 3760:1 3767:1 3770:1 3773:1 3786:1 3819:1 3827:1 3828:2 3830:2 3831:1 3846:1 3874:1 3897:1 3940:2 3947:1 3986:1 3987:1 4024:1 4056:2 4057:1 4066:1 4068:1 4076:1 4085:1 4091:1 4095:1 4106:1 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:1 4355:2 4364:1 4377:1 4378:1 4395:2 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4583:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:17 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5235:2 5254:3 5256:6 5260:1 5263:1 5265:2 5268:1 5270:1 5276:1 5284:1 5286:2 5287:2 5289:1 5309:4 5315:1 5363:1 5374:1 5377:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6213:1 6233:1 6242:1 6297:1 6306:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6445:1 6448:1 6457:1 6461:1 6480:5 6491:1 6511:1 6520:1 6543:1 6609:5 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:4 6706:2 6711:2 6712:1 6713:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6966:3 7016:1 7052:2 7134:1 7141:3 7166:4 7168:2 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:1 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:2 7805:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:1 8065:1 8104:26 8129:1 8131:17 8200:1 8224:1 8226:2 8245:1 8324:1 8343:1 8348:1 8355:3 8359:1 8370:1 8379:1 8386:1 8408:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8559:1 8563:1 8565:1 8608:2 8622:1 8636:1 8641:1 8659:12 8689:2 8697:1 8719:3 8742:1 8749:1 8768:3 8806:1 8819:1 8832:1 8839:2 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9136:1 9154:3 9155:5 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:2 9429:1 9448:1 9452:1 9487:1 9516:2 9539:1 9546:2 9559:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9797:1 9821:1 9858:2 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10096:3 10108:1 10123:1 10144:1 10150:2 10169:2 10170:2 10183:2 10208:1 10228:1 10239:1 10244:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:1 10602:1 10610:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11165:1 11187:3 11188:1 11245:1 11291:1 11300:3 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11517:1 11521:1 11552:1 11565:1 11574:7 11586:1 11608:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11952:1 11964:1 11973:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:4 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:1 12189:2 12191:1 12216:2 12229:1 12272:2 12273:1 12291:1 12295:2 12313:2 12316:1 12320:1 12321:2 12324:1 12331:1 12333:3 12335:2 12336:1 12337:3 12340:1 12345:2 12349:1 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13018:2 13056:1 13057:1 13070:1 13095:1 13130:1 13137:1 13196:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13341:1 13365:1 13393:1 13405:1 13441:5 13469:1 13482:1 13498:2 13500:2 13508:1 13509:1 13510:1 13522:1 13551:2 13556:1 13559:1 13572:1 13574:1 13575:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13896:3 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:3 14214:1 14237:1 14247:1 14289:2 14303:1 14308:3 14315:2 14335:2 14350:1 14404:1 14409:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:2 14607:2 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14746:1 14749:1 14755:2 14772:1 14780:1 14798:1 14803:1 14816:2 14850:1 14853:1 14879:1 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:1 14983:1 14991:1 14995:1 15001:1 15010:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15309:1 15317:3 15320:1 15323:1 15332:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15511:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:1 16040:1 16065:2 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:6 16323:2 16331:1 16335:1 16357:1 16376:3 16412:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:1 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16623:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:3 16801:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:2 16960:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:2 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17194:1 17254:1 17257:2 17261:1 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:1 17450:2 17467:1 17471:1 17541:1 17543:1 17549:1 17555:5 17580:1 17592:16 17615:1 17641:1 17645:2 17648:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17997:1 18009:3 18015:1 18036:2 18052:1 18129:4 18142:1 18157:1 18165:2 18189:1 18239:1 18249:2 18253:1 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18321:1 18334:1 18343:1 18347:1 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18646:1 18664:1 18665:1 18670:1 18672:1 18733:1 18740:2 18796:1 18821:2 18833:1 18867:1 18882:2 18902:1 18923:1 18951:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:8 19351:3 19362:1 19420:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1608 19574:1 19577:2 19578:1 19621:2 19638:1 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:2 19788:1 19797:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:1 19903:2 19909:1 19910:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20067:1 20116:1 20120:1 20127:1 20133:2 20142:1 20144:1 20153:1 20181:1 20196:1 20210:2 20238:1 20246:3 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20338:1 20342:1 20363:5 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20476:1 20479:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:2 20675:1 20681:1 20710:1 20711:1 20717:1 20736:1 20754:1 20755:1 20773:15 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21070:1 21081:1 21087:1 21097:1 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21459:1 21460:2 21464:2 21466:2 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21855:1 21857:1 21859:2 21869:2 21876:1 21881:13 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21928:1 21975:1 22005:1 22006:1 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:3 22334:4 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22458:1 22459:1 22463:2 22470:1 22472:1 22484:5 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:1 22591:1 22593:1 22604:1 22611:1 22629:1 22636:1 22656:2 22665:1 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:1 22836:1 22845:3 22848:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23083:1 23085:1 23110:1 23122:1 23123:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23274:1 23290:1 23302:1 23314:1 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:1 23390:2 23398:1 23400:1 23411:1 23425:1 23440:1 23441:1 23453:1 23455:2 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23764:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:2 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24134:1 24147:1 24154:1 24158:1 24220:2 24277:2 24299:1 24303:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:1 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:4 24513:1 24516:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:2 24824:1 24871:1 24909:1 25009:1 25089:1 25093:1 25118:2 25140:1 25147:1 25157:1 25187:1 25200:1 25213:2 25235:1 25282:3 25332:1 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25477:1 25478:1 25479:1 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25526:3 25550:1 25575:1 25583:1 25585:1 25594:7 25595:3 25600:1 25603:3 25630:1 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25731:1 25773:1 25778:1 25789:1 25814:1 25815:1 25831:1 25847:1 25898:1 25931:1 25955:1 25995:1 26065:1 26075:8 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26269:4 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:1 26511:1 26527:1 26532:1 26537:2 26542:1 26543:1 26595:2 26602:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26764:1 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:4 26896:2 26923:1 26925:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27186:1 27192:1 27206:1 27262:2 27284:1 27292:1 27296:1 27317:1 27328:9 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:2 28069:1 28083:1 28090:2 28103:1 28109:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:2 28332:1 28333:1 28352:1 28377:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:2 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28564:1 28566:1 28577:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28630:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28830:1 28831:2 28887:1 28924:1 28932:1 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:1 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:8 29364:1 29397:1 29400:3 29410:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30576:1 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:2 384:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:3 676:1 722:1 745:5 760:1 777:1 809:1 815:1 818:1 843:1 846:1 900:1 905:4 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1003:1 1007:3 1010:1 1041:2 1042:1 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1308:2 1314:1 1320:1 1324:1 1339:1 1412:3 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:3 1547:1 1627:2 1658:1 1666:2 1702:1 1704:1 1714:1 1718:2 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1855:1 1856:2 1858:2 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:1 1986:2 1987:1 2005:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:1 2375:2 2377:1 2378:4 2383:2 2384:1 2390:1 2397:3 2400:1 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2650:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:2 3016:1 3026:4 3064:2 3070:1 3072:18 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:4 3430:1 3454:8 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3608:1 3650:1 3656:2 3678:1 3690:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3814:1 3819:1 3827:1 3828:2 3830:2 3831:1 3846:1 3874:1 3897:1 3899:1 3940:2 3947:1 3986:1 3987:1 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:2 4355:2 4364:1 4377:1 4378:1 4395:2 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4583:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:21 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5235:2 5254:3 5256:6 5260:2 5263:1 5265:2 5268:1 5270:2 5276:1 5284:1 5286:2 5287:2 5289:1 5309:4 5315:1 5347:1 5363:1 5374:1 5377:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6213:1 6233:1 6242:1 6291:1 6297:1 6306:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6445:1 6448:1 6457:1 6461:1 6480:5 6491:1 6500:1 6511:1 6520:1 6543:1 6609:5 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:4 6706:2 6711:2 6712:1 6713:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6966:3 7016:1 7052:2 7134:2 7141:3 7166:4 7168:2 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:2 7805:1 7808:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:1 8065:1 8104:27 8115:1 8129:1 8131:17 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8379:1 8386:1 8408:1 8410:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8542:1 8559:1 8563:1 8565:2 8608:2 8622:1 8636:1 8641:1 8659:13 8689:2 8697:1 8719:3 8742:1 8749:1 8768:3 8806:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:3 8994:2 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9136:2 9154:3 9155:6 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:2 9429:1 9448:1 9452:1 9487:1 9516:2 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9797:1 9821:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10144:1 10150:2 10157:1 10169:2 10170:2 10183:2 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:2 10489:1 10513:1 10559:1 10560:1 10563:1 10572:1 10602:1 10610:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11165:1 11173:1 11187:3 11188:1 11197:1 11245:1 11291:1 11300:3 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11565:1 11574:7 11586:1 11608:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11952:1 11964:1 11973:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:4 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12189:2 12191:1 12216:2 12229:1 12272:2 12273:1 12291:1 12295:2 12301:1 12313:2 12316:1 12319:1 12320:1 12321:2 12324:1 12331:2 12333:4 12335:2 12336:1 12337:3 12340:1 12345:3 12349:1 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13018:2 13056:1 13057:1 13070:1 13095:1 13130:1 13137:1 13196:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13341:1 13365:2 13393:1 13405:1 13441:5 13462:1 13469:1 13482:1 13498:2 13500:2 13508:1 13509:1 13510:1 13522:1 13551:2 13556:1 13559:1 13572:1 13574:1 13575:1 13585:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13885:1 13896:4 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:3 14214:1 14237:1 14247:1 14283:1 14289:2 14303:1 14308:3 14315:2 14335:2 14350:1 14404:1 14409:1 14431:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14803:1 14816:2 14850:1 14853:1 14863:2 14879:2 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15054:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15309:1 15317:3 15320:1 15323:1 15332:1 15372:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15511:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15769:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:2 16040:1 16065:2 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:2 16331:1 16335:1 16357:1 16376:4 16412:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16623:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:3 16801:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:3 16960:2 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:3 17061:1 17064:1 17067:1 17071:4 17134:1 17149:1 17156:1 17187:1 17194:1 17196:1 17254:1 17257:2 17261:1 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:2 17450:2 17467:1 17471:1 17541:1 17543:1 17549:1 17555:5 17580:1 17583:1 17592:16 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17997:1 18009:3 18015:1 18036:2 18052:1 18129:4 18142:1 18157:1 18165:2 18189:2 18239:2 18249:2 18253:1 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18321:1 18334:1 18342:1 18343:1 18347:1 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18646:1 18664:1 18665:1 18670:1 18672:2 18733:1 18740:2 18785:1 18796:1 18821:2 18833:1 18867:1 18882:2 18902:1 18923:1 18951:2 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19070:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:8 19351:3 19362:1 19420:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1710 19574:1 19577:2 19578:1 19621:2 19638:2 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:2 19788:1 19797:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:2 19909:1 19910:1 19955:1 19980:1 19986:1 19990:1 20005:1 20016:1 20024:1 20047:1 20049:1 20059:1 20067:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:1 20144:1 20153:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20338:1 20342:1 20363:5 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20476:1 20479:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:2 20675:1 20681:1 20710:1 20711:1 20717:1 20736:1 20754:2 20755:1 20773:15 20793:1 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21070:1 21081:1 21087:1 21097:2 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21425:1 21459:1 21460:2 21464:2 21466:2 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21851:1 21855:1 21857:1 21859:2 21869:2 21872:1 21876:1 21881:13 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:1 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:3 22334:4 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22458:1 22459:1 22463:2 22470:1 22472:1 22484:5 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:2 22591:1 22593:1 22604:1 22611:1 22616:1 22620:1 22629:1 22636:1 22656:2 22665:2 22693:2 22694:1 22705:1 22715:2 22736:1 22746:1 22753:1 22771:1 22828:1 22835:2 22836:1 22845:3 22848:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23083:1 23085:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23255:1 23274:1 23290:1 23294:1 23302:1 23314:2 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23390:2 23398:1 23400:1 23411:1 23421:1 23425:1 23440:1 23441:1 23453:1 23455:3 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23764:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24125:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24277:2 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:2 24430:1 24439:3 24442:1 24445:1 24482:1 24485:1 24510:4 24513:1 24514:1 24516:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24871:1 24873:1 24899:1 24909:1 25009:1 25089:1 25093:1 25118:2 25140:1 25147:1 25157:2 25187:1 25200:1 25213:2 25235:1 25282:3 25304:1 25332:1 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:3 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25731:1 25773:1 25778:1 25789:1 25814:1 25815:1 25831:1 25838:1 25847:1 25898:1 25931:1 25955:1 25964:1 25995:1 26013:1 26021:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26269:4 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26527:1 26532:1 26537:2 26542:2 26543:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27176:1 27186:2 27192:1 27206:1 27253:1 27262:3 27284:1 27292:1 27296:1 27317:1 27328:9 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28090:2 28103:1 28109:1 28121:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:2 28332:1 28333:1 28341:1 28352:1 28377:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:2 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28563:1 28564:1 28566:1 28577:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28630:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28830:1 28831:2 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 28992:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:8 29364:1 29397:1 29400:3 29410:2 29417:1 29471:1 29513:3 29526:1 29549:1 29551:4 29555:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30576:2 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 352:1 370:2 384:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 582:1 609:1 610:1 615:1 619:3 658:4 676:1 722:1 745:5 760:1 777:1 809:1 815:1 818:1 843:1 846:1 900:1 905:4 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1003:1 1007:3 1010:1 1041:2 1042:3 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1308:2 1314:1 1320:1 1324:1 1339:1 1412:3 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:3 1547:1 1627:2 1658:1 1666:2 1702:1 1704:1 1714:3 1718:2 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1855:1 1856:2 1858:2 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:1 1986:2 1987:1 2005:1 2036:2 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2383:2 2384:1 2390:1 2397:4 2400:1 2402:2 2405:1 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2627:1 2641:1 2650:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2800:1 2802:1 2811:1 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:2 3016:1 3026:4 3064:2 3070:1 3072:18 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:4 3424:1 3430:1 3454:8 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3814:1 3819:1 3827:1 3828:2 3830:2 3831:1 3846:1 3874:1 3897:1 3899:1 3940:2 3947:1 3986:1 3987:1 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4284:1 4288:1 4290:1 4299:4 4303:2 4355:2 4364:1 4377:1 4378:1 4395:2 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:1 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:21 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5235:2 5254:3 5256:6 5260:2 5263:1 5265:2 5268:1 5270:2 5276:1 5284:1 5286:2 5287:2 5289:1 5309:4 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:1 5430:1 5473:1 5480:4 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6213:1 6233:1 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6445:1 6448:1 6457:1 6461:1 6480:5 6491:1 6500:1 6511:1 6520:1 6543:1 6609:7 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:4 6706:2 6711:2 6712:1 6713:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6966:3 7016:1 7052:2 7134:2 7141:3 7166:4 7168:3 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7720:1 7732:1 7745:2 7747:1 7751:1 7769:1 7785:1 7795:2 7805:1 7808:1 7816:1 7840:3 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:3 8065:3 8104:28 8115:1 8129:1 8131:17 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8379:1 8386:1 8408:1 8410:1 8427:1 8465:1 8477:1 8489:1 8508:1 8537:1 8542:1 8559:1 8563:1 8565:2 8608:2 8622:1 8636:1 8641:1 8659:15 8689:2 8697:1 8719:3 8742:1 8749:1 8768:3 8806:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:1 8967:1 8978:3 8994:2 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9136:2 9154:3 9155:6 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9279:1 9292:1 9303:1 9312:1 9330:1 9352:2 9374:1 9387:2 9405:3 9409:2 9416:2 9429:1 9448:1 9452:1 9487:1 9516:2 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9797:1 9821:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10144:1 10150:2 10157:1 10169:2 10170:2 10183:2 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:2 10489:1 10513:1 10559:1 10560:1 10563:1 10572:1 10602:1 10610:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11095:1 11097:1 11099:1 11104:1 11105:1 11127:1 11135:1 11154:1 11165:1 11173:1 11187:3 11188:1 11197:1 11245:1 11291:1 11300:3 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11565:1 11574:7 11586:1 11608:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11952:1 11964:1 11973:1 11992:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:4 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12189:2 12191:1 12216:2 12229:1 12272:2 12273:1 12291:1 12295:2 12301:1 12313:2 12316:1 12319:1 12320:1 12321:2 12324:1 12331:2 12333:4 12335:2 12336:1 12337:3 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13018:2 13056:1 13057:1 13070:1 13095:1 13130:1 13137:1 13196:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13341:1 13365:2 13393:1 13405:1 13441:5 13462:1 13469:1 13482:1 13498:2 13500:2 13508:1 13509:1 13510:1 13522:1 13551:2 13556:1 13559:1 13572:1 13574:1 13575:1 13585:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:1 13834:1 13836:1 13838:1 13859:1 13877:2 13883:2 13885:1 13896:4 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:3 14214:1 14237:1 14247:1 14283:1 14289:2 14303:1 14308:3 14315:2 14335:2 14340:1 14350:1 14404:1 14409:1 14431:1 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14803:1 14816:2 14850:1 14853:1 14863:2 14879:2 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15054:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15309:1 15317:3 15320:1 15323:1 15332:1 15372:1 15381:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15511:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:1 15769:1 15772:1 15774:2 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16009:2 16040:1 16065:2 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:2 16331:1 16335:1 16357:1 16376:5 16412:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:2 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16594:1 16623:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:3 16801:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:1 16885:1 16893:1 16895:1 16943:1 16952:3 16960:2 16985:1 16988:1 17032:1 17046:1 17048:1 17051:1 17052:1 17059:3 17061:1 17064:2 17067:1 17071:4 17074:1 17134:1 17149:1 17156:1 17187:1 17194:1 17196:1 17254:1 17257:2 17261:1 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17541:1 17543:1 17549:1 17555:5 17580:1 17583:1 17592:16 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17700:2 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17997:1 18009:3 18015:1 18036:2 18052:1 18115:1 18129:4 18142:1 18157:1 18165:2 18189:2 18239:2 18249:2 18253:1 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18321:1 18334:1 18342:1 18343:1 18347:1 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18733:1 18740:3 18785:1 18796:1 18821:2 18833:1 18867:1 18882:2 18902:1 18923:1 18951:2 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19070:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:8 19351:3 19362:1 19420:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1749 19574:1 19577:2 19578:1 19621:2 19638:2 19646:1 19682:1 19686:1 19696:1 19740:3 19762:1 19775:2 19788:1 19797:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:2 19909:1 19910:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20024:1 20047:1 20049:1 20059:1 20067:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:1 20144:1 20153:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20338:1 20342:1 20363:5 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20476:1 20479:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20629:1 20641:2 20675:1 20681:1 20710:1 20711:1 20717:1 20736:1 20754:2 20755:1 20773:15 20793:1 20798:1 20825:1 20830:2 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20991:2 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21070:1 21081:1 21087:1 21097:2 21103:1 21108:1 21109:1 21122:1 21142:2 21143:1 21170:1 21214:18 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21350:1 21399:1 21400:1 21409:1 21425:1 21459:1 21460:2 21464:2 21466:2 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21881:13 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:1 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:3 22334:4 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22470:1 22472:1 22484:5 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:2 22591:1 22593:1 22604:1 22611:1 22616:1 22620:1 22629:1 22636:1 22656:2 22665:2 22693:2 22694:1 22705:1 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22828:1 22835:2 22836:1 22845:3 22848:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23083:1 23085:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23255:1 23274:1 23290:1 23294:1 23302:1 23314:2 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23390:2 23398:1 23400:1 23411:1 23421:1 23425:1 23440:1 23441:1 23453:1 23455:3 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:4 23529:1 23542:2 23550:1 23563:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:2 23759:3 23763:1 23764:1 23769:1 23795:1 23820:1 23826:1 23830:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24125:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24277:2 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:2 24430:1 24439:3 24442:1 24445:1 24482:1 24485:2 24510:4 24513:1 24514:1 24516:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24871:1 24873:1 24899:1 24909:1 25009:1 25046:3 25089:1 25093:1 25118:2 25140:1 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25235:1 25282:3 25304:1 25332:1 25337:2 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:3 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25650:2 25652:2 25687:1 25688:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25847:1 25898:1 25931:1 25955:1 25964:1 25995:1 26013:1 26021:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26269:4 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26527:1 26532:1 26537:2 26542:2 26543:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26835:3 26838:1 26866:3 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27176:1 27186:2 27192:1 27206:1 27253:1 27262:3 27284:1 27292:1 27296:1 27317:1 27328:9 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:1 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28090:2 28103:1 28109:1 28121:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:5 28330:2 28332:1 28333:1 28337:1 28341:1 28352:1 28377:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:2 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28559:1 28563:1 28564:1 28566:1 28577:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28616:1 28618:1 28624:1 28625:1 28630:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:1 28769:1 28806:1 28826:1 28830:1 28831:2 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 28992:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29251:5 29255:1 29260:1 29265:2 29271:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29357:8 29364:1 29397:1 29400:3 29410:2 29417:1 29471:1 29513:5 29526:1 29549:1 29551:4 29555:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29855:3 29857:1 29873:1 29889:1 29903:1 29904:1 29922:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:3 30545:1 30550:1 30561:3 30576:2 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:2 30721:1 30772:1 30786:1 7 9:1 19:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 566:1 582:1 609:1 610:1 615:1 619:4 658:4 676:1 722:1 745:5 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 905:6 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1248:1 1286:1 1289:1 1308:2 1314:1 1320:1 1324:1 1339:1 1412:3 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:1 1539:3 1547:1 1627:2 1658:1 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1820:1 1855:1 1856:2 1858:2 1862:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:1 2310:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:4 2400:1 2402:2 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2619:1 2627:1 2641:1 2650:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2800:1 2802:1 2811:2 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:18 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3365:1 3369:1 3381:1 3395:1 3396:1 3402:1 3422:4 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3874:1 3897:1 3899:1 3940:2 3947:1 3986:1 3987:1 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:4 4303:2 4355:2 4364:1 4377:1 4378:1 4395:2 4410:3 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:22 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5235:2 5254:3 5256:6 5260:2 5263:1 5265:2 5268:1 5270:2 5276:1 5284:1 5286:2 5287:2 5289:1 5309:4 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:4 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6213:1 6233:1 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6520:1 6543:1 6609:8 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:3 6696:1 6704:4 6706:2 6711:2 6712:1 6713:1 6717:2 6718:1 6720:1 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6966:3 7016:1 7052:2 7134:2 7141:3 7166:4 7168:3 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7346:1 7352:1 7358:1 7360:1 7408:1 7410:1 7432:2 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7720:1 7732:1 7745:3 7747:1 7751:1 7769:1 7785:1 7795:2 7805:1 7808:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:4 8065:3 8089:1 8104:31 8115:1 8129:1 8131:17 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8379:1 8386:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:1 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:16 8689:2 8697:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:2 8967:1 8978:3 8994:2 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9279:1 9292:1 9300:1 9303:1 9312:1 9330:1 9352:2 9374:1 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:1 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10144:1 10150:2 10157:1 10169:2 10170:2 10183:2 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:1 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:2 10489:1 10513:1 10559:1 10560:1 10563:1 10572:1 10602:1 10610:1 10621:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11020:1 11024:1 11061:1 11077:1 11095:1 11097:1 11099:1 11104:1 11105:1 11127:2 11135:1 11154:1 11163:1 11165:1 11173:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11300:4 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11379:1 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:1 11565:1 11574:7 11586:1 11608:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11910:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:1 11997:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:4 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:3 12273:2 12291:1 12295:2 12301:1 12313:2 12316:1 12319:1 12320:1 12321:2 12324:1 12331:2 12333:4 12335:2 12336:1 12337:3 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12409:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13005:1 13018:2 13056:1 13057:1 13070:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13498:2 13500:2 13508:1 13509:1 13510:1 13522:1 13551:2 13556:1 13559:2 13572:1 13574:1 13575:1 13585:1 13596:1 13600:1 13606:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:1 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:1 13896:5 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:4 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:3 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14431:2 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14803:1 14816:2 14850:1 14853:1 14863:2 14879:2 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15054:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15306:1 15309:1 15317:3 15320:1 15321:1 15323:1 15332:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15497:1 15506:1 15511:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:2 15781:1 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16040:1 16065:2 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16210:1 16211:4 16227:1 16232:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:3 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16585:1 16593:1 16594:1 16623:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:4 16801:1 16802:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16943:1 16952:3 16960:2 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:2 17067:1 17071:4 17074:1 17134:1 17149:1 17156:1 17187:1 17194:1 17196:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17541:1 17543:1 17549:1 17555:5 17580:1 17583:1 17592:16 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17997:1 18009:3 18015:1 18036:2 18052:1 18115:1 18129:4 18142:1 18157:1 18165:2 18189:2 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18321:1 18334:1 18342:1 18343:1 18347:1 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18733:1 18740:3 18785:1 18796:1 18821:2 18833:1 18867:1 18882:2 18902:3 18912:1 18923:1 18951:2 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19055:1 19070:1 19076:1 19093:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:8 19351:3 19362:3 19379:1 19420:1 19429:1 19436:1 19439:1 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1893 19574:1 19577:2 19578:1 19621:2 19638:2 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:1 20144:1 20153:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:5 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20475:1 20476:1 20479:1 20508:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:1 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:2 20755:1 20762:1 20773:15 20793:1 20798:1 20825:1 20830:3 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21070:1 21081:1 21087:1 21097:2 21103:1 21108:1 21109:1 21122:1 21142:3 21143:1 21152:1 21156:1 21170:1 21214:18 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21714:3 21726:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21881:13 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:1 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22327:3 22334:4 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22470:1 22472:1 22484:5 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:2 22591:1 22593:1 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:2 22694:1 22705:1 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22828:1 22835:2 22836:1 22845:3 22848:1 22852:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23255:1 23274:1 23290:1 23294:1 23302:1 23314:2 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23390:2 23398:1 23400:1 23411:1 23421:1 23425:1 23440:1 23441:1 23453:1 23455:4 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:3 23759:3 23763:1 23764:1 23769:1 23795:1 23820:1 23826:1 23830:1 23850:1 23858:5 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24125:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:2 24430:1 24439:3 24442:1 24445:1 24482:1 24485:2 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24707:2 24717:2 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24871:1 24873:1 24899:1 24909:1 25009:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:1 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25235:1 25279:1 25282:3 25304:1 25332:1 25337:2 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25471:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:3 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25650:3 25652:2 25687:1 25688:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25847:1 25898:1 25931:1 25955:1 25964:1 25995:1 26013:1 26021:1 26026:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26269:5 26286:1 26299:4 26317:1 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26527:1 26532:1 26537:2 26542:2 26543:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26833:1 26835:3 26838:1 26866:3 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27206:1 27253:1 27262:3 27284:1 27292:1 27296:1 27317:1 27328:11 27329:2 27332:1 27343:1 27367:1 27400:2 27426:1 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:1 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28090:2 28103:1 28109:1 28121:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:1 28377:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:2 28519:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:1 28618:2 28624:2 28625:1 28630:1 28633:1 28639:1 28679:1 28685:1 28729:1 28740:3 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 28992:1 28999:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29345:1 29357:8 29364:1 29397:1 29400:3 29410:2 29417:1 29471:1 29506:1 29513:5 29526:1 29549:1 29551:4 29555:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:3 29857:1 29873:1 29889:1 29903:1 29904:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30154:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30364:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30545:1 30550:1 30561:3 30576:2 30609:1 30615:1 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:3 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 566:1 574:1 582:1 609:1 610:1 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 905:6 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:1 1248:1 1286:1 1289:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1412:3 1436:1 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1627:2 1658:2 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:2 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:1 2310:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:2 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2619:1 2627:1 2641:1 2650:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2800:1 2802:1 2811:2 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:18 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3316:1 3365:1 3369:1 3381:1 3382:1 3395:1 3396:1 3402:1 3422:4 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3874:1 3897:1 3899:1 3940:2 3947:1 3957:1 3986:1 3987:1 4009:1 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:4 4303:2 4355:2 4364:1 4377:1 4378:1 4395:3 4410:3 4419:1 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:23 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5217:1 5235:2 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:1 5284:1 5286:2 5287:2 5289:1 5309:4 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:4 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5982:1 5984:1 5994:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6213:1 6233:1 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6609:8 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:4 6706:2 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 7016:1 7052:3 7116:1 7134:2 7141:3 7166:4 7168:3 7246:1 7253:1 7257:2 7259:1 7264:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:2 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:1 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:4 8065:3 8089:1 8091:1 8104:31 8115:1 8129:1 8131:17 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8379:1 8386:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:1 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:18 8689:2 8697:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:2 8967:1 8978:3 8994:2 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9279:1 9292:1 9300:1 9303:1 9312:1 9330:1 9352:2 9353:2 9374:1 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10135:2 10144:1 10150:2 10157:1 10169:2 10170:2 10183:2 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10311:1 10319:1 10321:1 10350:1 10352:2 10370:1 10383:1 10441:1 10450:1 10459:1 10466:1 10471:2 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10649:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10970:1 11008:1 11010:1 11020:1 11024:1 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11154:1 11163:1 11165:1 11173:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11300:4 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:1 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:1 11565:1 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11901:1 11909:1 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:1 11997:1 12000:1 12012:1 12018:2 12023:1 12029:1 12049:1 12050:5 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:2 12291:1 12295:2 12301:1 12313:2 12316:1 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:3 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12409:1 12410:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12863:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13005:1 13018:2 13056:1 13057:1 13070:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:1 13311:1 13333:1 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13498:2 13500:2 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:1 13574:1 13575:1 13585:1 13596:1 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:1 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:1 13896:5 13927:1 13961:1 13971:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:4 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:3 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14431:2 14438:3 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14803:1 14816:2 14850:1 14853:1 14863:2 14879:2 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:1 15139:3 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:1 15306:1 15309:1 15317:3 15320:1 15321:1 15323:1 15332:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15537:1 15554:1 15562:1 15592:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:1 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16209:1 16210:1 16211:4 16227:1 16232:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:3 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16585:1 16593:1 16594:1 16618:1 16623:1 16656:2 16698:1 16714:1 16726:1 16762:1 16795:4 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16943:1 16944:1 16952:3 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17071:4 17074:2 17104:1 17134:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17227:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17541:1 17543:1 17549:1 17555:5 17580:1 17583:1 17592:16 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17987:1 17997:1 18009:3 18015:1 18036:2 18052:1 18115:1 18129:4 18142:1 18157:1 18165:2 18189:2 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:1 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18733:1 18740:3 18785:1 18796:1 18821:2 18833:1 18867:1 18882:2 18902:3 18912:1 18923:1 18951:2 18958:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:8 19351:3 19362:3 19379:1 19420:1 19429:1 19436:1 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:1992 19574:1 19577:2 19578:1 19621:2 19638:2 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20475:1 20476:1 20479:1 20508:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:2 20755:1 20762:1 20773:15 20793:1 20798:1 20801:1 20825:1 20830:3 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21070:1 21081:1 21087:1 21097:2 21103:1 21108:1 21109:1 21122:1 21142:3 21143:1 21152:1 21156:1 21170:1 21214:18 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21669:1 21711:1 21714:3 21726:1 21735:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21831:1 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21881:13 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:2 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:4 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22470:1 22472:1 22473:1 22484:6 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:2 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:2 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23390:2 23397:1 23398:1 23400:1 23411:1 23421:1 23425:1 23433:1 23440:1 23441:1 23453:1 23455:4 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:1 23710:1 23724:1 23746:3 23759:3 23763:1 23764:1 23769:1 23795:1 23820:1 23826:1 23830:1 23850:1 23858:6 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 24025:1 24029:1 24082:1 24088:1 24119:1 24125:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:2 24430:1 24439:3 24442:1 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24707:2 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24893:1 24899:1 24909:1 24999:1 25009:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25332:1 25337:2 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25471:2 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:2 25687:1 25688:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25847:1 25898:1 25931:1 25955:1 25964:1 25995:1 26013:1 26021:1 26026:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26269:5 26286:1 26299:4 26317:1 26387:2 26388:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26527:1 26532:1 26537:2 26542:3 26543:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26833:1 26835:3 26838:1 26866:4 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27206:1 27235:1 27253:1 27262:3 27284:1 27292:1 27296:1 27317:1 27328:11 27329:2 27332:1 27343:1 27367:1 27400:2 27426:2 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28090:2 28103:1 28109:1 28121:1 28175:1 28177:1 28178:2 28189:3 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28308:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:1 28377:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:3 28519:1 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28624:2 28625:1 28630:1 28633:1 28639:1 28667:1 28679:1 28685:1 28729:1 28740:3 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 28992:1 28999:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29506:1 29513:5 29526:1 29549:1 29551:4 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:3 29857:2 29873:1 29889:1 29903:1 29904:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30027:1 30039:1 30043:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30154:1 30187:2 30201:1 30203:1 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30364:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30530:1 30545:1 30550:1 30561:3 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 80:1 91:1 111:1 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 566:1 574:1 582:1 609:1 610:1 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 905:6 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:1 1248:1 1270:1 1286:1 1289:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1627:2 1658:2 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:1 2299:1 2310:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:2 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2619:1 2627:1 2641:1 2650:1 2658:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2800:1 2802:1 2811:2 2827:1 2848:2 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:19 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3206:1 3220:2 3224:1 3267:1 3276:2 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:4 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3874:1 3897:1 3899:1 3940:2 3947:1 3957:1 3986:1 3987:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:4 4303:2 4307:1 4355:2 4364:1 4377:1 4378:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4503:2 4517:2 4532:1 4551:2 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:23 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5217:1 5235:2 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:1 5284:1 5286:2 5287:2 5288:1 5289:1 5309:4 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:4 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6213:1 6233:1 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6609:8 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:4 6706:2 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:1 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 7016:1 7052:3 7116:1 7134:2 7141:3 7166:4 7168:3 7246:1 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:4 8065:3 8089:1 8091:1 8104:31 8115:1 8129:1 8131:18 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8379:1 8386:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:1 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:18 8689:2 8697:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8935:1 8939:1 8941:1 8965:2 8967:1 8978:3 8994:2 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9279:1 9292:1 9300:1 9303:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:1 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10135:2 10144:1 10150:2 10157:1 10169:2 10170:2 10183:2 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10311:1 10319:1 10321:1 10334:1 10350:1 10352:2 10370:1 10383:1 10439:1 10441:1 10450:1 10459:1 10466:1 10471:2 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10649:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:1 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:1 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:1 11565:1 11571:1 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:1 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:5 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:2 12291:1 12295:2 12301:1 12313:2 12316:1 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:3 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:1 12409:1 12410:1 12424:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12839:1 12849:1 12859:1 12863:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13005:1 13018:2 13056:1 13057:1 13070:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:1 13284:1 13311:1 13332:1 13333:2 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:1 13574:1 13575:1 13585:1 13596:1 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:1 13896:5 13927:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:4 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:3 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14551:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:1 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14913:1 14949:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:1 15114:1 15129:1 15138:2 15139:3 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:2 15306:1 15309:1 15317:3 15320:1 15321:1 15323:1 15332:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:1 15562:1 15592:1 15616:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15857:1 15891:1 15925:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16209:1 16210:1 16211:4 16227:1 16232:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:1 16480:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:3 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16585:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:4 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16943:1 16944:2 16952:3 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17071:4 17074:2 17104:1 17134:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17227:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17580:1 17583:1 17592:17 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17987:1 17997:1 18009:3 18015:1 18036:2 18052:1 18054:1 18115:1 18129:4 18142:1 18157:1 18165:2 18189:2 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18731:1 18733:1 18740:3 18785:1 18796:1 18821:2 18833:2 18867:1 18882:2 18902:3 18912:1 18923:1 18951:2 18958:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:1 19163:1 19166:1 19180:1 19221:1 19226:7 19237:1 19273:1 19295:1 19296:1 19340:8 19351:3 19362:3 19379:1 19420:1 19429:1 19436:1 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:2033 19574:1 19577:2 19578:1 19621:2 19638:2 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20475:1 20476:1 20479:1 20508:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:2 20755:1 20762:1 20773:16 20793:1 20798:1 20801:1 20825:1 20830:3 20833:1 20852:1 20853:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21070:1 21081:1 21087:1 21097:2 21103:1 21108:1 21109:1 21122:1 21142:3 21143:1 21152:1 21156:1 21170:1 21214:19 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:1 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21735:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:1 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:14 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:2 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:4 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:2 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:1 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23390:2 23397:1 23398:1 23400:1 23411:2 23421:1 23425:1 23433:1 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:1 23724:1 23746:3 23759:3 23763:1 23764:2 23769:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23858:6 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 23999:1 24025:1 24029:1 24082:1 24088:1 24103:1 24119:1 24125:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:1 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24893:1 24899:1 24909:1 24999:1 25009:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25332:1 25337:2 25348:2 25351:1 25396:2 25428:1 25451:2 25459:1 25460:2 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25847:1 25859:1 25898:1 25931:1 25955:1 25964:2 25995:1 26013:1 26021:1 26026:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26247:1 26269:5 26286:1 26299:4 26317:1 26387:2 26388:1 26393:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26527:1 26532:1 26537:2 26542:3 26543:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:1 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26833:1 26835:3 26838:1 26866:4 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:11 27329:2 27332:1 27343:1 27367:1 27400:2 27426:2 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:1 27993:2 27999:1 28007:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28090:2 28103:1 28109:1 28121:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:1 28266:2 28271:2 28282:2 28296:1 28308:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:3 28519:1 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28624:2 28625:1 28630:1 28633:1 28639:1 28667:1 28679:1 28685:1 28729:1 28740:3 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:1 28959:1 28992:1 28999:1 29006:1 29056:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29506:1 29513:5 29526:1 29549:1 29551:4 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:3 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30154:1 30171:1 30187:2 30201:1 30203:2 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30364:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30530:1 30545:1 30550:1 30561:3 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 80:1 91:1 111:2 120:1 132:1 176:4 187:4 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 566:1 574:1 582:1 609:1 610:1 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 905:6 906:1 926:1 930:3 957:1 975:1 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:1 1248:1 1270:1 1273:1 1286:1 1289:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1627:2 1658:2 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:1 2268:2 2274:1 2279:2 2299:1 2310:1 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2517:1 2533:1 2566:1 2576:1 2589:1 2619:1 2627:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2800:1 2802:1 2811:2 2827:1 2848:3 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:4 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:19 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3267:1 3276:2 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:5 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:1 3874:1 3897:1 3899:1 3940:2 3947:1 3957:1 3986:1 3987:1 4001:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:4 4303:2 4307:1 4355:2 4364:1 4377:1 4378:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4685:1 4688:1 4740:4 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:2 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5078:2 5091:1 5100:24 5104:1 5122:1 5136:1 5143:1 5177:1 5184:1 5217:1 5235:2 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:1 5284:1 5286:2 5287:2 5288:1 5289:1 5309:4 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:4 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:2 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6213:1 6233:1 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6609:8 6631:4 6654:4 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:5 6706:2 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7052:4 7116:1 7134:2 7141:3 7166:4 7168:3 7246:1 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:3 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:3 8042:4 8065:3 8089:1 8091:1 8104:32 8115:1 8129:1 8131:18 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8379:1 8386:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:1 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:19 8689:2 8697:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8965:2 8967:1 8978:3 8994:2 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:1 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9698:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9973:1 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10135:2 10144:1 10150:3 10157:1 10169:2 10170:2 10183:3 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10352:2 10370:1 10383:1 10439:1 10441:1 10450:1 10459:1 10466:1 10471:2 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:1 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:1 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:1 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:5 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:2 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:3 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:2 12409:1 12410:1 12424:1 12436:1 12442:3 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:4 12720:1 12723:1 12735:4 12738:1 12757:1 12794:1 12814:1 12830:1 12839:1 12849:1 12859:1 12863:1 12867:2 12885:1 12886:1 12903:1 12927:1 12957:1 12971:2 13005:1 13018:2 13056:1 13057:1 13070:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:1 13284:1 13311:1 13332:1 13333:2 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:1 13574:1 13575:1 13585:1 13596:1 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:1 13896:5 13927:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:4 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:3 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14539:1 14551:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14913:1 14949:1 14953:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:1 15114:1 15122:1 15129:1 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:2 15306:1 15309:1 15317:3 15320:1 15321:1 15323:1 15332:1 15354:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:1 15562:1 15592:1 15600:1 15616:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15857:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16209:1 16210:1 16211:5 16227:1 16232:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:1 16480:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:4 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16585:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:4 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16943:1 16944:2 16952:3 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17227:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:2 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:17 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17686:1 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:1 17980:1 17987:1 17997:1 18009:3 18015:1 18036:2 18052:1 18054:1 18107:1 18115:1 18129:4 18142:1 18157:1 18165:2 18189:2 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18731:1 18733:1 18740:3 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18902:3 18912:1 18923:1 18951:2 18958:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:1 19163:1 19166:1 19180:1 19204:1 19221:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:8 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:1 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19557:1 19573:2076 19574:1 19577:2 19578:1 19621:2 19638:2 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20459:1 20466:1 20473:1 20475:1 20476:1 20479:1 20508:1 20509:2 20519:1 20537:1 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:2 20755:1 20762:1 20773:16 20793:1 20798:1 20801:1 20825:1 20830:4 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21070:1 21081:1 21087:1 21097:2 21103:1 21108:1 21109:1 21122:1 21142:3 21143:1 21152:1 21156:1 21170:1 21214:19 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:2 21505:1 21513:1 21523:1 21612:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21735:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:1 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:14 21889:1 21892:1 21899:2 21901:3 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:2 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:5 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:1 22547:5 22549:1 22553:1 22556:1 22560:2 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:1 22937:1 22975:2 22995:2 23006:1 23011:1 23036:4 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23216:1 23234:1 23249:4 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23411:2 23421:1 23425:1 23433:1 23436:1 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:1 23724:1 23746:3 23759:3 23763:1 23764:2 23769:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23858:6 23864:1 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 23999:1 24025:1 24029:1 24082:2 24088:1 24103:1 24119:1 24125:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:1 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24893:1 24899:1 24909:1 24999:1 25009:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25332:1 25337:2 25348:2 25351:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25847:1 25859:1 25886:1 25898:1 25931:1 25955:1 25964:2 25995:1 26013:1 26021:1 26026:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26247:1 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26527:1 26532:1 26537:2 26542:3 26543:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:1 26658:3 26659:1 26666:2 26686:2 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26833:1 26835:3 26838:1 26866:5 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:11 27329:2 27332:1 27343:1 27367:1 27400:2 27426:2 27436:1 27464:1 27470:1 27472:1 27478:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28090:2 28103:1 28109:1 28121:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:2 28266:2 28271:2 28282:2 28296:1 28308:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28437:1 28441:1 28456:1 28476:1 28479:3 28519:1 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28624:2 28625:1 28630:1 28633:1 28639:1 28667:1 28679:1 28685:1 28729:1 28740:3 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:2 28959:1 28992:1 28999:2 29006:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29506:1 29513:5 29526:1 29549:1 29551:4 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:4 29649:1 29668:1 29674:1 29679:1 29690:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:3 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30154:1 30171:1 30187:2 30201:1 30203:2 30209:1 30236:1 30251:2 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30362:2 30364:1 30382:1 30403:2 30421:2 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30530:1 30545:1 30550:1 30561:3 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:2 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 905:7 906:1 926:1 930:3 934:1 957:1 975:1 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:1 1248:1 1270:1 1273:1 1286:1 1289:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1407:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1627:2 1658:2 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:2 2268:2 2274:1 2279:2 2299:1 2310:1 2313:1 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2517:1 2533:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:1 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:1 2802:1 2811:2 2827:1 2848:3 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:7 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:19 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:2 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:5 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:1 3874:1 3897:1 3899:1 3907:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:1 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:1 4883:1 4887:3 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:2 5091:1 5100:26 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:2 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:1 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:5 6706:2 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7246:1 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:1 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:5 8042:5 8065:3 8089:1 8091:1 8104:32 8115:1 8129:1 8131:18 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:4 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:19 8689:2 8697:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8965:2 8967:1 8978:3 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9670:1 9676:1 9698:1 9704:1 9746:1 9760:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9973:1 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10135:2 10144:1 10150:3 10157:1 10169:2 10170:2 10183:3 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:2 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:1 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:1 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:1 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:5 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:4 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:2 12409:1 12410:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12794:1 12814:1 12830:1 12839:1 12849:1 12859:1 12860:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:1 13057:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:1 13284:1 13300:1 13311:1 13332:1 13333:2 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:1 13574:1 13575:1 13585:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:1 13896:5 13927:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:1 14074:1 14085:2 14119:1 14152:6 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14517:1 14539:1 14544:2 14551:1 14560:2 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14900:1 14913:1 14949:1 14953:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:1 15114:1 15122:1 15129:1 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:2 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15332:2 15354:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:1 15616:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15857:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16209:1 16210:1 16211:5 16227:1 16232:1 16245:1 16259:2 16272:3 16286:1 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:1 16480:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:4 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16585:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16943:1 16944:2 16952:4 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17227:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:17 17615:1 17641:1 17645:2 17648:1 17664:1 17684:2 17686:1 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:2 17980:1 17987:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18149:1 18157:1 18165:2 18189:2 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18515:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18731:1 18733:1 18740:3 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:1 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19221:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19555:1 19557:1 19573:2137 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20425:1 20459:1 20466:1 20473:1 20475:1 20476:1 20479:1 20508:1 20509:2 20519:1 20537:3 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:3 20755:1 20762:1 20773:16 20781:1 20793:1 20798:1 20801:1 20825:1 20830:4 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:1 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21197:1 21214:19 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:2 21505:1 21513:1 21523:1 21612:1 21626:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21735:1 21740:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:14 21889:1 21892:1 21899:2 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:2 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:5 22354:1 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:2 22545:1 22547:5 22549:1 22553:1 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:2 22937:1 22975:2 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23210:1 23216:1 23234:1 23245:1 23249:4 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23411:2 23421:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:1 23724:1 23746:3 23759:3 23763:1 23764:2 23769:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:6 23864:1 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23931:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 23999:1 24025:1 24029:1 24055:1 24082:2 24088:1 24103:1 24119:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24893:1 24899:1 24909:1 24987:1 24999:1 25009:1 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25311:1 25332:1 25337:2 25348:2 25351:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25931:1 25955:1 25964:2 25995:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26247:1 26267:1 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:2 26542:3 26543:2 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:5 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27400:2 27426:2 27436:1 27464:1 27470:1 27472:2 27478:2 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:3 28247:1 28250:2 28266:2 28271:2 28282:2 28296:1 28308:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:1 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28624:2 28625:1 28630:1 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:1 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:2 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29231:1 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29506:2 29513:5 29526:1 29549:1 29551:6 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:4 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30447:1 30457:1 30465:1 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30530:1 30545:1 30550:1 30561:3 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:1 30665:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 511:1 523:1 527:1 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 905:7 906:1 926:2 930:3 934:1 957:1 975:2 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1050:1 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:1 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1407:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1627:2 1658:2 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2248:1 2257:2 2268:2 2274:1 2279:2 2299:1 2310:1 2313:2 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:1 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:1 2802:1 2811:2 2827:1 2848:3 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:7 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:20 3090:1 3107:1 3109:1 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:3 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:5 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:1 3874:1 3897:1 3899:1 3907:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:1 4887:3 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:2 5091:1 5100:26 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:2 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:1 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:5 6706:3 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7246:2 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:6 8042:5 8065:3 8089:1 8091:1 8104:32 8115:1 8129:1 8131:19 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:4 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:20 8689:2 8697:1 8707:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8951:1 8965:2 8967:1 8978:3 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9670:1 9676:1 9698:1 9704:1 9746:1 9760:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9973:1 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10135:2 10144:1 10150:4 10157:1 10169:2 10170:2 10183:4 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:3 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:1 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:5 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:4 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:2 12409:2 12410:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12794:1 12814:1 12830:1 12839:1 12849:1 12859:1 12860:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:1 13057:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:2 13284:1 13288:1 13300:1 13311:1 13332:1 13333:2 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:1 13574:1 13575:1 13585:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:1 13896:5 13927:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:1 14055:3 14056:2 14069:2 14074:1 14085:2 14119:1 14152:6 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14517:1 14539:1 14544:2 14551:1 14560:3 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14900:1 14913:1 14949:1 14953:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15122:1 15129:1 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:2 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15332:2 15354:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:1 15616:1 15634:1 15640:1 15642:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:1 16286:1 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:2 16480:1 16481:1 16484:1 16488:1 16489:2 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16577:1 16585:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:2 16952:4 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17227:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:18 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:1 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17826:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:3 17980:1 17987:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18149:1 18157:2 18165:2 18189:2 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18515:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18731:1 18733:1 18740:3 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:1 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19221:1 19224:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19555:1 19557:1 19573:2178 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20425:1 20459:1 20466:1 20473:1 20475:1 20476:1 20479:1 20508:1 20509:2 20519:1 20537:3 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:3 20755:1 20762:1 20773:17 20781:1 20793:1 20798:1 20801:1 20825:1 20830:5 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:1 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21185:1 21197:1 21214:20 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:3 21505:1 21513:1 21523:1 21612:1 21626:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21735:1 21740:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:15 21889:1 21892:1 21899:3 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:3 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:5 22354:2 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:2 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:2 22937:1 22975:2 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23210:1 23216:2 23234:1 23245:1 23249:4 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23410:1 23411:2 23421:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:1 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:7 23864:1 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23931:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 23999:1 24025:1 24029:1 24055:1 24082:2 24088:1 24102:1 24103:1 24119:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24893:1 24899:1 24909:1 24912:1 24987:1 24999:1 25009:1 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25311:1 25332:1 25337:2 25348:2 25351:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25931:1 25955:1 25964:2 25995:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26185:1 26199:1 26220:1 26247:1 26267:2 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:2 26542:3 26543:2 26568:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:4 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27400:3 27426:2 27436:1 27464:1 27470:1 27472:2 27478:2 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28047:1 28053:1 28060:1 28061:3 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:4 28247:1 28250:2 28266:2 28271:3 28282:2 28296:1 28308:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:1 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:1 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:2 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28946:2 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29231:1 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29506:2 29513:5 29526:1 29549:1 29551:7 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:4 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30111:2 30112:1 30118:1 30120:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30447:1 30457:1 30465:2 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30530:1 30545:1 30550:1 30561:3 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:2 30665:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 511:1 523:1 527:2 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 902:1 905:7 906:1 926:2 930:3 934:1 957:1 975:2 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1050:1 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:1 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1407:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1627:2 1658:2 1666:2 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2247:1 2248:1 2257:2 2268:2 2274:1 2279:2 2299:1 2310:1 2313:2 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2358:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:1 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:1 2802:1 2811:2 2827:1 2848:3 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:7 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:20 3090:1 3107:1 3109:2 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:3 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:5 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:2 3874:1 3897:1 3899:1 3907:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:1 4887:3 4896:1 4907:1 4912:1 4921:1 4930:2 4972:1 4983:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:2 5091:1 5100:26 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:2 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:1 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5903:1 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:5 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:5 6706:3 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7246:2 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7601:1 7622:2 7633:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:6 8042:5 8065:3 8089:1 8091:1 8104:32 8115:1 8129:1 8131:19 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8408:1 8410:1 8427:1 8465:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:4 8565:2 8570:1 8608:2 8622:1 8636:1 8641:1 8659:20 8689:2 8697:1 8707:1 8719:3 8742:1 8749:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8951:1 8965:2 8967:1 8978:3 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9573:1 9605:2 9618:5 9629:1 9670:1 9676:1 9698:1 9704:1 9746:1 9760:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9973:1 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:1 10135:2 10144:1 10150:4 10157:1 10169:2 10170:3 10183:4 10206:1 10208:1 10228:1 10239:1 10244:1 10261:1 10289:3 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:3 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:3 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:1 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:1 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11293:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11866:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:5 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12159:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:4 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:2 12409:2 12410:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:4 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12794:1 12814:1 12830:1 12839:1 12849:1 12859:1 12860:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:1 13057:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:2 13284:1 13288:1 13300:1 13311:1 13332:1 13333:2 13341:1 13365:2 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:1 13574:1 13575:1 13585:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:2 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:2 13896:5 13927:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:2 14055:3 14056:2 14069:3 14074:1 14085:2 14119:1 14152:6 14213:1 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:2 14335:2 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14517:1 14539:1 14544:2 14551:1 14560:4 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14900:1 14913:1 14949:1 14953:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15122:1 15129:1 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:2 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15332:2 15354:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:1 15616:1 15634:1 15640:1 15642:1 15643:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:2 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:1 16286:2 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:2 16480:1 16481:1 16484:1 16488:1 16489:2 16490:1 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16577:1 16585:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:2 16952:4 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17227:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:18 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17826:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:3 17980:1 17987:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18149:1 18157:2 18165:2 18189:2 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18344:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18515:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18731:1 18733:1 18740:3 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19019:1 19021:1 19035:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:1 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19221:1 19224:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19555:1 19557:1 19573:2187 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20425:1 20459:1 20466:1 20473:1 20475:1 20476:2 20479:1 20508:1 20509:2 20519:2 20537:3 20541:1 20543:1 20576:1 20591:1 20603:1 20624:1 20629:1 20641:2 20675:1 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:3 20755:1 20762:1 20773:17 20781:1 20793:1 20798:1 20801:1 20825:1 20830:5 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:1 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21185:1 21197:1 21214:20 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21499:3 21505:1 21513:1 21523:1 21612:1 21626:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21731:1 21735:1 21740:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:15 21889:1 21892:1 21899:3 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:4 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:5 22354:2 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:2 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:2 22937:1 22975:2 22987:1 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23210:1 23216:2 23234:1 23245:1 23249:5 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23410:1 23411:2 23421:1 23423:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23595:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:1 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23794:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:7 23864:1 23876:1 23877:1 23881:1 23888:1 23900:3 23901:2 23931:1 23942:1 23952:2 23959:1 23970:1 23975:1 23997:1 23999:1 24025:1 24029:1 24055:1 24082:2 24088:1 24102:1 24103:1 24119:1 24121:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24362:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24893:1 24899:1 24909:1 24912:1 24987:1 24999:1 25009:2 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25311:1 25332:1 25337:2 25348:2 25351:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25931:1 25955:1 25964:2 25995:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26153:1 26185:1 26199:1 26220:1 26247:1 26267:2 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:2 26542:3 26543:2 26568:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:5 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27200:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27400:3 27426:2 27436:1 27464:1 27470:1 27472:2 27478:2 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27767:1 27775:1 27802:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28035:1 28047:1 28053:1 28060:1 28061:3 28062:1 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:4 28247:1 28250:2 28266:2 28271:3 28282:2 28296:1 28308:1 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:1 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:2 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:2 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28945:1 28946:2 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29231:1 29251:5 29255:1 29260:1 29265:4 29271:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29506:2 29513:5 29526:1 29549:1 29551:7 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29844:1 29855:4 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30097:1 30111:2 30112:1 30118:1 30120:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30447:1 30457:1 30465:2 30478:1 30479:1 30483:1 30485:1 30516:1 30522:4 30530:1 30545:1 30550:1 30561:3 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:2 30665:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 396:1 398:1 399:1 415:1 455:1 473:1 476:1 511:1 523:1 527:2 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 658:4 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 902:1 905:7 906:1 926:2 930:3 934:1 957:1 975:2 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1050:1 1052:1 1080:1 1084:1 1097:1 1138:1 1174:2 1188:2 1201:3 1203:1 1233:1 1240:2 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1407:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:1 1529:1 1533:2 1539:3 1547:1 1559:1 1627:2 1658:2 1666:2 1670:1 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2247:1 2248:1 2257:2 2268:3 2274:1 2279:2 2299:1 2310:1 2313:2 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2358:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:3 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:1 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2682:1 2698:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:1 2802:1 2811:2 2827:1 2848:3 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:7 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:21 3090:1 3107:1 3109:2 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:3 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:6 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:2 3874:1 3897:1 3899:1 3907:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:1 4887:3 4896:1 4907:1 4908:2 4912:1 4921:1 4930:2 4972:1 4983:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:3 5086:1 5091:1 5100:26 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:3 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:1 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:2 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5903:1 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6204:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:6 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:6 6706:3 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7246:2 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7599:1 7601:1 7622:2 7633:1 7651:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:6 8042:5 8065:3 8089:1 8091:1 8094:1 8104:32 8115:1 8129:1 8131:20 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8408:1 8410:1 8427:1 8465:1 8467:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:4 8565:2 8570:1 8608:3 8622:1 8636:2 8641:1 8659:20 8689:2 8697:1 8707:1 8719:3 8742:1 8749:1 8751:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8951:1 8955:1 8965:2 8967:1 8978:3 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9564:1 9573:1 9605:2 9618:6 9629:1 9670:1 9676:1 9698:1 9704:1 9746:1 9760:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9973:2 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:2 10135:2 10144:1 10150:4 10157:1 10169:2 10170:3 10183:4 10206:1 10208:1 10228:3 10239:1 10244:1 10261:1 10289:3 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:3 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:4 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:3 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:3 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11293:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11497:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11729:1 11753:1 11755:1 11781:1 11786:1 11797:1 11837:1 11840:1 11866:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:1 11952:1 11964:1 11968:1 11973:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:5 12060:1 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12159:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:4 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:2 12409:2 12410:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:5 12520:1 12527:2 12528:1 12573:1 12575:1 12603:1 12609:1 12619:1 12662:3 12712:1 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12794:1 12814:1 12830:1 12839:1 12849:1 12859:1 12860:1 12862:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:1 13057:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:2 13284:1 13288:1 13300:1 13311:1 13332:1 13333:2 13341:1 13365:2 13378:1 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:2 13574:1 13575:1 13585:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:3 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13883:2 13885:2 13896:5 13927:1 13935:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:2 14055:3 14056:2 14069:3 14074:1 14085:2 14119:1 14152:6 14213:1 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:3 14335:3 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14517:1 14539:1 14544:2 14551:1 14560:4 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14900:1 14911:1 14913:1 14949:1 14953:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15122:2 15129:1 15136:2 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:3 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15332:2 15354:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:1 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:1 15616:1 15634:1 15640:1 15642:1 15643:1 15659:1 15675:1 15688:1 15708:1 15726:1 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:3 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:2 16286:2 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:5 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:2 16480:1 16481:1 16484:1 16488:1 16489:2 16490:1 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16577:1 16585:1 16587:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:2 16952:4 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17220:1 17227:1 17235:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:19 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17826:1 17827:1 17832:1 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:1 17939:1 17941:1 17978:3 17980:1 17987:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18149:1 18157:2 18165:2 18189:2 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18344:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18481:1 18515:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18681:1 18728:1 18731:1 18733:1 18740:3 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19019:2 19021:1 19035:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:2 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19221:1 19224:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19555:1 19557:2 19573:2239 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20425:1 20459:1 20466:1 20473:1 20475:1 20476:2 20479:1 20508:1 20509:2 20519:2 20537:3 20541:1 20543:1 20576:1 20591:1 20595:1 20603:1 20624:1 20629:1 20641:2 20661:1 20675:2 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:3 20755:1 20762:1 20773:18 20781:1 20793:1 20798:1 20801:1 20819:1 20825:1 20830:5 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:5 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:2 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:1 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21185:1 21197:1 21214:21 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21364:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21489:1 21499:3 21505:1 21513:1 21523:1 21612:1 21626:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21731:1 21735:1 21740:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:16 21889:1 21892:1 21899:3 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:4 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:6 22354:2 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:2 22493:1 22495:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:2 22937:1 22975:2 22987:1 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23210:1 23216:2 23234:1 23245:1 23249:5 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23339:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23410:1 23411:2 23421:1 23423:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23595:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:3 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23794:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:8 23864:1 23876:1 23877:1 23879:1 23881:1 23888:2 23900:3 23901:2 23931:1 23942:1 23952:2 23959:1 23970:1 23975:2 23997:1 23999:1 24025:1 24029:1 24055:1 24082:2 24088:1 24102:1 24103:1 24119:1 24121:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24201:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24362:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:1 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24887:1 24893:1 24899:1 24909:1 24912:1 24921:1 24987:1 24999:1 25009:2 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25102:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25212:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25311:1 25332:1 25337:2 25348:2 25351:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25465:1 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:3 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25931:1 25955:1 25964:2 25995:1 26001:1 26012:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26153:1 26158:2 26159:1 26185:1 26199:1 26220:1 26247:1 26267:2 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26426:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:2 26542:3 26543:2 26568:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26790:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:5 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27200:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27375:1 27400:3 27426:2 27436:1 27464:1 27470:1 27472:2 27478:2 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27767:1 27770:1 27775:1 27802:1 27811:1 27833:1 27855:1 27869:1 27871:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28035:1 28047:1 28053:1 28060:1 28061:3 28062:1 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:5 28247:1 28250:2 28266:2 28271:3 28282:2 28296:1 28308:2 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:1 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:2 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:2 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28945:1 28946:2 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29231:1 29251:5 29255:1 29260:1 29265:4 29271:1 29283:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:3 29410:2 29417:1 29464:1 29471:1 29480:1 29506:2 29513:5 29526:1 29549:1 29551:7 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29843:1 29844:1 29855:4 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30097:1 30111:2 30112:1 30118:1 30120:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30334:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30447:1 30457:1 30465:2 30478:1 30479:2 30483:1 30485:1 30516:1 30522:4 30524:1 30530:1 30545:1 30550:1 30561:4 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:2 30665:1 30666:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 391:1 396:1 398:1 399:1 415:1 455:1 473:1 476:1 511:1 523:1 527:2 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 651:2 658:5 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 890:1 900:1 902:1 905:7 906:1 926:2 930:3 934:1 957:1 975:2 976:3 1000:1 1003:1 1007:4 1010:1 1041:2 1042:3 1050:1 1052:1 1080:1 1084:1 1097:1 1138:1 1157:1 1174:2 1188:2 1201:3 1203:2 1233:1 1240:2 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1407:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:2 1529:1 1533:2 1539:3 1547:1 1559:1 1627:2 1658:2 1666:2 1670:1 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2247:1 2248:1 2257:2 2268:3 2274:1 2279:2 2299:1 2310:1 2313:2 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2348:1 2358:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:4 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:1 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2682:1 2698:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:1 2802:1 2803:1 2811:2 2827:1 2848:3 2856:1 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:7 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3064:2 3070:1 3072:21 3090:1 3107:1 3109:2 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:3 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:6 3424:1 3430:1 3454:8 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3658:1 3678:1 3690:1 3701:1 3704:1 3727:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:2 3874:1 3897:1 3899:1 3907:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4249:1 4251:1 4254:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:1 4887:3 4896:1 4907:1 4908:2 4912:1 4921:1 4930:2 4972:1 4983:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:3 5086:1 5091:1 5100:26 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:3 5254:3 5256:7 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:1 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:3 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5817:1 5818:1 5826:2 5838:1 5872:2 5903:1 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6204:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:6 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:6 6706:3 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7246:2 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7599:1 7601:1 7622:2 7633:1 7651:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:6 8042:5 8065:3 8089:1 8091:1 8094:1 8104:33 8115:1 8129:1 8131:20 8169:1 8200:1 8224:1 8226:2 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8408:1 8410:1 8427:1 8465:1 8467:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:4 8565:2 8570:1 8608:3 8622:1 8636:3 8641:1 8659:20 8689:2 8697:1 8707:1 8719:3 8742:1 8749:1 8751:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8951:1 8955:1 8965:2 8967:1 8978:3 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9564:1 9573:1 9605:2 9618:6 9629:1 9670:1 9676:1 9698:1 9704:1 9746:1 9760:1 9764:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9806:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:1 9955:2 9960:1 9973:2 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:2 10135:2 10144:1 10150:4 10157:1 10169:2 10170:3 10183:4 10206:1 10208:1 10228:3 10239:1 10244:1 10261:1 10289:3 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:3 10360:1 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10559:1 10560:1 10563:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:4 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10737:1 10759:1 10781:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:3 10907:2 10910:1 10962:1 10970:1 11008:1 11010:1 11020:1 11024:3 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:2 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11245:1 11257:1 11291:1 11293:1 11300:4 11323:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11497:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11574:7 11586:1 11608:1 11620:1 11625:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11729:1 11753:1 11755:2 11781:1 11786:1 11797:1 11837:1 11840:1 11866:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:2 11952:1 11964:1 11968:1 11973:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:1 12050:6 12060:1 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12159:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12335:2 12336:1 12337:4 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12393:1 12395:1 12396:2 12409:2 12410:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:5 12520:1 12527:2 12528:1 12573:1 12575:1 12577:1 12603:2 12609:1 12619:1 12662:3 12712:1 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12794:1 12814:1 12830:1 12839:1 12849:1 12859:1 12860:1 12862:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:2 13057:1 13065:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13264:1 13268:1 13271:2 13284:1 13288:5 13300:1 13311:1 13332:1 13333:2 13341:1 13365:2 13378:1 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:2 13574:1 13575:1 13585:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:3 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13859:1 13877:2 13879:1 13883:2 13885:2 13896:5 13927:1 13935:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:2 14055:3 14056:2 14069:3 14074:1 14085:2 14119:1 14152:6 14213:1 14214:2 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:3 14335:3 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14469:2 14517:1 14539:1 14544:2 14551:1 14560:4 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:1 14853:1 14863:2 14879:2 14888:2 14900:1 14911:1 14913:1 14949:1 14953:1 14960:1 14963:1 14966:2 14975:2 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15122:2 15129:1 15136:2 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:3 15304:1 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15332:2 15354:1 15372:1 15381:1 15394:2 15414:1 15415:1 15440:1 15441:1 15456:2 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:1 15616:1 15634:1 15640:1 15642:1 15643:1 15659:1 15675:1 15688:1 15708:1 15726:2 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:3 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:2 16286:2 16288:1 16303:3 16313:1 16315:7 16323:3 16331:1 16335:1 16357:1 16373:1 16376:6 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:2 16480:1 16481:1 16484:1 16488:1 16489:3 16490:1 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16573:1 16576:2 16577:1 16585:1 16587:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:2 16952:4 16960:3 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17220:1 17227:1 17235:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:19 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17826:1 17827:1 17832:2 17844:1 17850:1 17859:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:1 17930:2 17939:1 17941:1 17978:3 17980:1 17987:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18149:1 18157:2 18165:2 18189:2 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18344:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18481:1 18515:1 18555:1 18557:1 18603:2 18620:1 18646:1 18664:1 18665:1 18670:1 18672:2 18674:1 18681:1 18728:1 18731:1 18733:1 18740:3 18757:1 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19019:3 19021:1 19035:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:2 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19221:1 19224:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19555:1 19557:3 19573:2272 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:1 19740:3 19744:1 19762:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19866:1 19876:2 19903:3 19909:1 19910:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:3 20425:1 20459:1 20466:1 20473:1 20475:1 20476:2 20479:1 20508:1 20509:2 20519:2 20537:3 20541:1 20543:1 20576:1 20591:1 20595:1 20603:1 20624:1 20629:1 20641:2 20661:1 20675:2 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:3 20755:1 20762:1 20773:18 20781:1 20793:1 20798:1 20801:1 20819:1 20825:1 20830:5 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:6 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:3 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:1 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21185:1 21197:1 21214:21 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21364:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21489:1 21499:3 21505:1 21513:1 21518:1 21523:1 21612:1 21625:1 21626:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21731:1 21735:1 21740:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:16 21889:1 21892:1 21899:3 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:4 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:6 22354:2 22358:1 22382:1 22384:1 22403:1 22427:1 22441:1 22453:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:2 22493:1 22495:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:3 22876:1 22880:1 22889:1 22921:2 22937:1 22975:2 22987:1 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23210:1 23216:2 23234:1 23245:1 23249:5 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23339:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23410:1 23411:2 23421:1 23423:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23595:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:3 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23794:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:8 23864:1 23876:1 23877:1 23879:1 23881:1 23888:2 23900:3 23901:2 23931:1 23942:1 23952:2 23959:1 23970:1 23975:2 23997:1 23999:1 24025:1 24029:1 24055:1 24082:2 24088:1 24102:1 24103:1 24119:1 24121:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24201:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24362:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:2 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24887:1 24893:1 24899:1 24909:1 24912:1 24921:1 24987:1 24999:1 25009:2 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25102:1 25118:2 25140:2 25147:1 25157:2 25187:1 25200:1 25212:1 25213:2 25228:1 25234:1 25235:1 25279:1 25282:3 25304:1 25311:1 25332:1 25337:2 25348:2 25351:1 25388:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25465:1 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:4 25504:2 25511:2 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:3 25687:1 25688:1 25689:1 25690:1 25731:1 25773:1 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25931:1 25955:1 25964:2 25995:1 26001:1 26012:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26153:1 26158:2 26159:1 26185:1 26199:1 26220:1 26247:1 26267:2 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26397:1 26426:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:2 26542:3 26543:2 26568:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:1 26737:1 26747:2 26764:2 26767:2 26785:1 26790:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:5 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27200:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27375:1 27400:3 27426:2 27436:1 27464:1 27470:1 27472:2 27478:2 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27742:1 27767:1 27770:1 27775:1 27802:1 27811:1 27833:1 27855:1 27869:1 27871:1 27921:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28035:1 28047:1 28053:1 28060:1 28061:3 28062:1 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:5 28247:1 28250:2 28266:2 28271:3 28282:2 28296:1 28308:2 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:1 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:2 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:2 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28867:1 28887:1 28924:1 28932:2 28945:1 28946:3 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29210:2 29231:1 29251:5 29255:1 29260:1 29265:4 29271:1 29283:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:4 29410:2 29417:1 29464:1 29471:1 29480:1 29506:2 29513:5 29526:1 29549:1 29551:7 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29843:1 29844:1 29855:4 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30097:1 30111:2 30112:1 30118:1 30120:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30334:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30447:1 30457:1 30465:2 30478:1 30479:2 30483:1 30485:1 30516:1 30522:4 30524:1 30530:1 30545:1 30550:1 30561:4 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:2 30665:1 30666:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:1 352:1 370:2 384:1 391:1 396:1 398:1 399:1 415:1 455:1 473:1 476:1 511:1 517:1 523:1 527:2 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 651:2 658:5 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 866:1 890:1 900:1 902:1 905:7 906:1 926:2 930:3 934:1 957:1 975:2 976:3 1000:1 1003:1 1007:4 1010:1 1013:1 1041:2 1042:3 1050:1 1052:1 1080:1 1084:1 1097:1 1138:1 1157:1 1174:2 1188:2 1201:3 1203:2 1233:1 1240:2 1242:1 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1407:1 1412:3 1436:2 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:2 1501:1 1529:1 1533:2 1539:3 1547:1 1559:1 1627:2 1658:2 1666:2 1670:1 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:1 1820:1 1830:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1913:1 1915:1 1932:4 1960:2 1973:2 1986:2 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2247:1 2248:1 2257:2 2268:3 2274:1 2279:2 2299:1 2310:1 2313:2 2315:1 2316:1 2320:1 2322:1 2324:2 2327:5 2340:1 2341:1 2346:1 2348:1 2358:1 2365:1 2370:1 2371:6 2373:2 2375:2 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2397:5 2400:1 2402:3 2405:2 2409:4 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:2 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2682:1 2698:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:1 2802:1 2803:1 2811:2 2827:1 2848:3 2856:2 2864:1 2896:1 2898:2 2912:3 2913:1 2919:3 2922:3 2929:7 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3026:5 3043:1 3064:2 3070:1 3072:21 3090:1 3102:2 3106:1 3107:1 3109:2 3138:1 3139:1 3149:1 3158:1 3170:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:3 3316:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:6 3424:1 3430:1 3454:9 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3658:1 3678:1 3690:1 3701:1 3704:1 3727:1 3731:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:2 3874:1 3897:1 3899:1 3907:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4008:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4246:1 4249:1 4251:1 4254:1 4259:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4438:1 4440:1 4460:1 4478:1 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:1 4887:3 4896:1 4907:1 4908:3 4912:1 4921:1 4930:2 4972:1 4983:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:3 5086:1 5091:1 5100:26 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:3 5254:4 5256:8 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:1 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:4 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:1 5684:1 5698:1 5711:1 5736:1 5817:1 5818:1 5826:2 5838:1 5872:2 5903:1 5904:1 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6204:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6322:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:6 6491:1 6500:1 6511:1 6513:1 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:6 6706:3 6711:2 6712:2 6713:1 6717:2 6718:1 6720:2 6725:2 6727:2 6738:1 6740:1 6751:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7018:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7202:1 7246:2 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7407:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:1 7596:1 7599:1 7601:1 7622:2 7633:1 7651:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:3 8026:1 8041:6 8042:5 8065:3 8089:1 8091:1 8094:2 8104:34 8115:1 8129:1 8131:21 8169:1 8200:1 8224:1 8226:2 8228:1 8245:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8408:1 8410:1 8427:1 8465:1 8467:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:4 8564:1 8565:2 8570:1 8608:3 8622:1 8636:3 8641:1 8659:20 8669:1 8689:2 8697:1 8707:1 8719:3 8742:1 8749:1 8751:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:1 8934:1 8935:1 8939:1 8941:1 8951:1 8955:1 8965:2 8967:1 8978:3 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9107:1 9136:2 9154:3 9155:7 9173:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9505:1 9516:2 9524:1 9539:1 9546:2 9559:1 9564:2 9573:1 9605:2 9618:6 9629:1 9632:1 9670:1 9676:1 9698:2 9704:1 9721:1 9746:1 9760:1 9764:1 9767:2 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9806:1 9821:1 9823:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:2 9955:2 9960:1 9973:3 9975:1 10017:1 10019:2 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:2 10135:2 10144:1 10150:4 10157:1 10169:2 10170:3 10183:4 10206:1 10208:1 10228:3 10239:1 10244:1 10261:1 10289:4 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:3 10360:1 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10559:1 10560:1 10563:1 10567:1 10572:2 10602:1 10610:1 10621:1 10638:1 10649:1 10656:4 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10735:1 10737:1 10759:1 10781:1 10790:1 10806:1 10810:2 10826:2 10838:2 10840:1 10843:1 10863:1 10877:1 10905:3 10907:2 10910:1 10962:2 10970:1 11008:1 11010:1 11020:1 11024:3 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:3 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11212:1 11245:1 11257:1 11291:1 11293:1 11300:4 11323:1 11332:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11469:2 11473:1 11497:1 11499:1 11515:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11574:8 11586:1 11608:1 11620:1 11625:1 11653:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11729:2 11753:1 11755:2 11781:1 11786:1 11797:1 11837:1 11840:1 11866:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:2 11952:1 11964:1 11968:1 11973:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:2 12050:6 12060:1 12086:1 12109:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12159:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12277:1 12291:1 12295:2 12301:1 12313:2 12316:2 12319:1 12320:1 12321:2 12324:1 12331:3 12333:4 12334:1 12335:2 12336:1 12337:4 12340:1 12345:4 12349:3 12362:3 12370:1 12374:1 12377:1 12393:1 12395:1 12396:2 12409:2 12410:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:5 12520:1 12523:1 12527:2 12528:1 12573:1 12575:1 12577:1 12603:2 12609:1 12619:1 12662:3 12712:1 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12794:1 12814:1 12830:1 12831:1 12839:1 12849:1 12859:1 12860:1 12862:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:2 13057:1 13065:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13241:1 13260:1 13264:1 13268:1 13271:2 13284:1 13288:5 13300:1 13311:1 13332:1 13333:2 13341:1 13365:2 13378:1 13380:1 13393:1 13405:1 13441:7 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13551:2 13554:1 13556:1 13559:2 13569:1 13572:2 13574:1 13575:1 13585:1 13589:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:3 13724:1 13738:1 13757:1 13801:2 13834:1 13836:2 13838:1 13841:1 13859:1 13877:2 13879:1 13883:2 13885:2 13896:5 13927:1 13935:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:2 14055:3 14056:2 14069:3 14074:1 14085:2 14119:1 14152:6 14213:1 14214:2 14216:1 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:3 14335:3 14340:1 14350:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:3 14439:1 14441:1 14442:1 14459:2 14461:1 14463:1 14464:1 14467:1 14468:1 14469:2 14517:1 14539:1 14544:2 14551:1 14560:4 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14737:1 14746:1 14749:1 14755:2 14772:1 14780:1 14785:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:2 14853:1 14863:2 14879:2 14884:1 14888:2 14900:1 14911:1 14913:1 14949:1 14953:1 14960:2 14963:1 14966:2 14975:2 14980:1 14983:1 14991:1 14995:1 15001:1 15010:1 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15122:3 15129:1 15136:2 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:3 15304:1 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15324:1 15332:2 15354:1 15372:1 15381:1 15382:1 15394:2 15414:1 15415:1 15440:1 15441:1 15453:1 15456:2 15464:1 15474:1 15479:1 15497:1 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:1 15616:1 15634:1 15640:1 15642:1 15643:1 15659:1 15675:1 15688:1 15708:1 15726:2 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15884:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16040:1 16065:3 16066:1 16092:1 16109:1 16113:1 16115:1 16144:1 16178:3 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:2 16286:2 16288:1 16303:3 16313:1 16315:7 16323:4 16331:1 16335:1 16357:1 16373:1 16376:6 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16474:2 16480:1 16481:1 16484:1 16488:2 16489:4 16490:1 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16560:1 16573:1 16576:2 16577:1 16585:1 16587:1 16593:1 16594:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:2 16952:4 16960:3 16978:1 16985:1 16988:1 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17220:1 17227:2 17235:1 17254:1 17257:2 17261:3 17288:3 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17385:1 17414:2 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:19 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17826:1 17827:1 17832:2 17844:1 17850:1 17859:1 17862:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:2 17930:2 17939:1 17941:1 17962:1 17978:3 17980:1 17987:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18146:1 18149:1 18157:2 18165:2 18189:2 18202:1 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18344:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18481:1 18515:1 18555:1 18557:1 18603:2 18620:1 18644:1 18646:1 18664:1 18665:2 18670:1 18672:2 18674:1 18681:1 18728:1 18731:1 18733:1 18740:3 18757:1 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19013:1 19019:3 19021:1 19035:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:2 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19208:1 19221:1 19224:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:1 19513:1 19540:1 19555:1 19557:3 19573:2377 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:2 19740:3 19744:1 19762:1 19772:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19853:1 19866:1 19876:2 19903:3 19909:1 19910:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:2 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:4 20425:1 20459:1 20466:1 20473:1 20475:1 20476:2 20479:1 20508:1 20509:2 20519:2 20537:3 20541:1 20543:1 20576:1 20591:1 20595:1 20603:1 20624:1 20629:1 20641:2 20661:1 20675:2 20681:1 20710:2 20711:1 20717:1 20731:1 20733:1 20736:1 20740:1 20754:3 20755:1 20762:1 20773:18 20781:1 20790:1 20793:1 20798:1 20801:1 20819:1 20825:1 20830:5 20833:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:1 20935:7 20959:1 20964:1 20965:1 20967:1 20971:1 20984:1 20991:2 21012:1 21017:1 21024:4 21029:1 21038:3 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:1 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21185:1 21197:1 21214:21 21223:1 21228:1 21238:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21364:1 21399:1 21400:1 21409:1 21425:2 21459:1 21460:2 21464:2 21466:2 21489:1 21499:3 21505:1 21513:1 21518:1 21523:1 21612:1 21625:1 21626:1 21627:2 21651:1 21669:2 21711:1 21714:3 21726:1 21731:1 21735:1 21740:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:16 21889:1 21892:1 21899:3 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:4 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22327:3 22334:6 22349:1 22354:2 22358:1 22382:1 22384:2 22403:1 22427:1 22441:1 22453:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:2 22493:2 22495:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:1 22705:2 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22875:4 22876:1 22880:1 22882:1 22889:1 22921:2 22937:1 22975:2 22987:1 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23202:2 23208:1 23210:1 23216:2 23234:1 23245:1 23249:5 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23339:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23410:1 23411:2 23421:1 23423:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:1 23592:2 23594:1 23595:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:3 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23794:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:8 23864:1 23876:1 23877:1 23879:1 23881:1 23885:1 23888:2 23900:3 23901:2 23931:1 23942:1 23947:1 23952:2 23959:1 23970:2 23975:2 23997:1 23999:1 24021:1 24025:1 24026:1 24029:1 24055:2 24082:2 24088:1 24102:1 24103:1 24119:2 24121:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24201:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24360:1 24362:1 24368:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:3 24482:1 24485:3 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24824:1 24855:1 24871:1 24873:1 24887:1 24893:1 24899:1 24909:1 24912:1 24921:1 24987:1 24999:1 25009:2 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25102:1 25118:2 25120:1 25140:2 25147:1 25157:2 25162:1 25187:1 25200:1 25212:1 25213:2 25228:1 25234:1 25235:2 25279:1 25282:3 25304:1 25311:1 25332:1 25337:2 25348:2 25351:1 25388:1 25396:2 25402:1 25428:1 25451:2 25459:1 25460:2 25465:1 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:5 25504:2 25511:2 25518:1 25523:1 25526:4 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:3 25687:1 25688:1 25689:1 25690:1 25731:1 25773:2 25778:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25930:1 25931:1 25934:1 25955:1 25964:2 25995:1 26001:1 26012:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26153:1 26158:3 26159:1 26185:1 26199:1 26220:1 26247:1 26267:2 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26397:1 26426:1 26427:1 26431:1 26460:1 26475:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:2 26542:3 26543:2 26568:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:3 26737:1 26747:2 26764:2 26767:2 26785:1 26790:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:5 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:1 26953:1 26954:2 26956:1 26996:1 27003:1 27011:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:1 27176:1 27186:2 27192:1 27200:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27306:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27375:1 27400:3 27426:2 27436:1 27464:1 27470:1 27472:2 27478:2 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27620:1 27624:1 27629:1 27652:1 27653:2 27664:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27742:1 27767:1 27770:1 27775:1 27802:1 27811:1 27833:1 27855:1 27869:1 27871:1 27921:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28035:1 28047:1 28053:1 28060:1 28061:3 28062:1 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:5 28247:1 28250:2 28266:2 28271:3 28282:2 28296:1 28308:2 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28339:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:1 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28535:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28577:1 28581:1 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:2 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:2 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28854:1 28867:1 28887:1 28907:1 28924:1 28932:2 28945:1 28946:4 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29206:1 29210:2 29231:1 29251:5 29255:1 29260:1 29265:4 29271:1 29283:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:5 29410:2 29417:1 29464:1 29471:1 29480:1 29506:2 29513:5 29526:1 29549:1 29551:7 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29605:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29843:1 29844:1 29855:4 29857:2 29873:1 29876:1 29889:1 29903:1 29904:1 29909:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30007:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30097:1 30111:2 30112:1 30118:1 30120:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30334:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30447:1 30457:1 30465:2 30478:2 30479:2 30483:1 30485:1 30489:1 30516:1 30522:4 30524:1 30530:1 30545:1 30550:1 30561:4 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:2 30665:1 30666:1 30669:3 30673:1 30689:1 30697:1 30707:4 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:4 187:5 229:2 235:1 243:2 248:2 269:1 287:1 288:1 312:1 314:1 331:1 335:2 341:3 352:1 370:2 372:1 384:1 391:1 396:1 398:1 399:1 415:1 455:1 473:1 476:2 482:1 511:1 517:1 523:1 527:2 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 651:2 658:5 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 866:1 890:1 900:1 902:1 905:8 906:1 926:2 930:4 934:1 957:1 975:2 976:3 1000:1 1003:1 1007:5 1010:1 1013:1 1041:2 1042:3 1050:1 1052:2 1080:1 1084:1 1097:1 1138:1 1157:1 1174:2 1188:2 1201:3 1203:2 1233:1 1240:2 1242:1 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1397:1 1407:1 1412:3 1436:2 1439:1 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:2 1501:1 1529:1 1533:2 1539:3 1547:1 1559:1 1627:2 1658:2 1666:2 1670:1 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:2 1820:1 1830:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1910:1 1913:1 1915:1 1930:1 1932:4 1960:2 1973:2 1986:3 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2086:1 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2247:1 2248:1 2257:2 2268:3 2274:1 2279:2 2299:1 2310:1 2313:2 2315:1 2316:1 2320:1 2322:1 2324:2 2327:5 2340:2 2341:1 2346:1 2348:1 2358:1 2365:1 2370:1 2371:6 2373:2 2375:3 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2391:1 2397:5 2400:1 2402:3 2405:2 2409:6 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2534:1 2539:1 2566:1 2576:1 2589:1 2619:1 2627:2 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2682:1 2698:1 2701:1 2737:1 2750:1 2756:1 2775:1 2800:3 2802:1 2803:1 2811:2 2827:1 2829:1 2848:3 2856:2 2860:1 2864:1 2896:1 2898:2 2912:4 2913:1 2919:3 2922:3 2929:8 2933:1 2938:1 2974:1 2977:1 2981:1 2983:3 3016:1 3021:1 3024:1 3026:5 3043:1 3060:1 3064:2 3070:1 3072:22 3090:1 3102:2 3106:1 3107:1 3109:2 3138:1 3139:1 3149:1 3158:1 3170:1 3189:1 3204:1 3206:1 3220:2 3224:1 3250:1 3267:2 3276:3 3316:1 3335:1 3365:1 3369:1 3381:1 3382:2 3395:1 3396:1 3402:1 3422:6 3424:1 3430:1 3432:1 3454:10 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3658:1 3678:1 3690:1 3701:1 3704:1 3727:1 3731:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:2 3874:1 3897:1 3899:1 3907:1 3933:1 3940:2 3947:1 3957:1 3986:1 3987:2 4001:1 4003:1 4008:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:2 4192:1 4202:1 4207:1 4246:1 4249:1 4251:1 4254:1 4259:1 4284:1 4288:1 4290:1 4299:5 4303:2 4307:1 4310:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4433:1 4438:1 4440:1 4460:1 4478:2 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:1 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4698:1 4701:1 4740:5 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:1 4887:3 4896:1 4907:1 4908:3 4912:1 4921:1 4930:2 4972:1 4983:1 4987:1 4991:1 4998:1 5033:1 5040:1 5042:1 5078:3 5086:1 5091:1 5100:27 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:1 5217:1 5225:1 5235:4 5254:5 5256:8 5260:2 5263:2 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:2 5309:5 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:4 5430:1 5473:1 5480:5 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:2 5684:1 5698:1 5711:1 5736:1 5817:1 5818:1 5826:2 5838:1 5872:3 5903:1 5904:1 5911:1 5940:3 5947:1 5980:1 5982:2 5984:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6204:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6322:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:1 6445:1 6448:1 6457:1 6461:1 6462:1 6480:6 6491:1 6500:1 6511:1 6513:2 6520:1 6543:1 6553:1 6609:8 6631:5 6654:5 6660:1 6661:1 6679:2 6688:1 6695:4 6696:1 6704:6 6706:3 6711:2 6712:2 6713:1 6717:2 6718:1 6720:4 6725:2 6727:2 6738:1 6740:1 6751:1 6767:1 6826:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7018:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7202:1 7246:2 7248:1 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7407:1 7408:1 7410:1 7432:3 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:2 7596:1 7599:1 7601:1 7622:2 7633:1 7651:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7956:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:4 8026:1 8041:6 8042:7 8065:3 8089:1 8091:1 8093:1 8094:2 8104:37 8115:1 8129:2 8131:22 8154:1 8169:1 8200:1 8224:1 8226:2 8228:1 8245:1 8286:2 8319:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8399:1 8408:1 8410:1 8427:1 8465:1 8467:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:5 8564:1 8565:2 8570:1 8608:3 8622:1 8636:3 8641:2 8659:20 8669:1 8689:2 8697:1 8707:1 8719:3 8742:1 8749:1 8751:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:1 8839:4 8852:2 8855:2 8884:1 8915:2 8919:2 8934:1 8935:1 8939:1 8941:1 8951:1 8955:1 8965:2 8967:1 8978:3 8988:2 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9101:1 9107:1 9136:2 9154:3 9155:7 9173:2 9189:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9306:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9499:1 9505:1 9516:2 9519:1 9524:1 9539:1 9546:2 9559:1 9564:2 9573:1 9605:2 9618:6 9629:1 9632:1 9670:1 9676:1 9698:2 9704:1 9721:1 9746:1 9760:1 9764:1 9767:2 9769:1 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9806:1 9821:1 9823:1 9854:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:2 9955:2 9960:1 9973:3 9975:1 10017:1 10019:4 10022:1 10031:1 10069:2 10073:1 10096:3 10108:1 10123:2 10135:2 10144:1 10150:4 10157:1 10166:1 10169:2 10170:3 10183:4 10206:1 10208:1 10228:3 10239:1 10244:1 10261:1 10289:4 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10350:1 10351:1 10352:3 10360:1 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10516:1 10559:1 10560:1 10563:1 10567:1 10572:3 10602:1 10610:1 10621:1 10638:1 10649:1 10656:4 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10735:1 10737:1 10759:1 10781:1 10790:1 10806:1 10810:2 10826:2 10831:1 10838:2 10840:1 10842:1 10843:1 10863:1 10877:1 10905:3 10907:2 10910:1 10962:2 10970:1 11008:1 11010:1 11020:1 11024:3 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:3 11135:1 11147:1 11154:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11212:1 11245:1 11257:1 11291:1 11293:1 11300:4 11323:1 11332:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11395:1 11469:2 11473:1 11497:1 11499:1 11515:1 11516:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11573:1 11574:8 11586:1 11608:1 11620:1 11625:1 11653:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:1 11729:2 11753:2 11755:2 11761:1 11766:1 11781:1 11786:1 11797:1 11837:1 11840:1 11866:1 11871:3 11897:1 11898:1 11901:1 11909:2 11910:1 11927:1 11948:2 11952:1 11964:1 11968:1 11973:1 11974:1 11976:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:2 12050:6 12060:1 12086:1 12109:1 12115:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12159:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:4 12273:3 12277:1 12291:1 12295:2 12296:1 12301:1 12313:2 12316:2 12319:1 12320:1 12321:3 12324:1 12329:1 12331:3 12333:4 12334:1 12335:2 12336:1 12337:4 12340:2 12345:4 12349:3 12362:3 12370:1 12374:1 12377:1 12393:1 12395:1 12396:2 12409:2 12410:1 12411:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:5 12520:1 12523:1 12527:2 12528:1 12573:1 12575:1 12577:1 12603:2 12609:1 12619:1 12645:1 12662:3 12712:1 12715:1 12719:5 12720:1 12723:1 12735:5 12738:1 12757:1 12775:1 12794:1 12814:1 12830:1 12831:1 12839:1 12849:1 12859:1 12860:1 12862:1 12863:1 12867:2 12885:1 12886:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 13005:1 13018:2 13056:2 13057:1 13065:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13237:1 13240:1 13241:1 13260:1 13264:1 13268:1 13271:2 13284:1 13288:5 13300:1 13305:1 13311:1 13332:1 13333:2 13341:1 13365:2 13378:1 13380:1 13393:1 13405:1 13441:7 13453:1 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:1 13538:1 13551:2 13552:1 13554:1 13556:1 13559:2 13569:1 13572:2 13574:1 13575:1 13585:1 13589:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:1 13715:1 13722:3 13724:1 13734:1 13738:1 13757:1 13801:2 13808:1 13834:1 13836:2 13838:1 13841:1 13859:1 13877:2 13879:1 13883:2 13885:2 13896:5 13906:1 13927:1 13935:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:2 14055:3 14056:2 14057:1 14069:3 14074:1 14085:2 14119:1 14152:6 14213:1 14214:2 14216:1 14237:1 14247:1 14283:1 14289:2 14303:1 14308:4 14313:1 14315:3 14335:3 14340:1 14350:1 14395:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:5 14439:1 14441:1 14442:1 14453:1 14459:3 14461:1 14463:1 14464:1 14467:1 14468:1 14469:2 14473:1 14517:1 14534:1 14539:1 14544:2 14551:1 14560:4 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:1 14658:1 14665:2 14675:1 14695:1 14705:1 14730:1 14737:1 14746:3 14749:1 14755:2 14772:1 14780:1 14785:1 14787:1 14798:1 14801:1 14803:1 14816:2 14818:1 14850:2 14853:1 14863:2 14879:2 14884:1 14888:2 14900:1 14905:1 14911:1 14913:1 14949:1 14953:1 14960:2 14963:1 14966:2 14975:2 14980:1 14983:1 14991:1 14992:1 14995:1 15001:1 15010:2 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15119:1 15122:3 15129:1 15136:2 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:3 15304:1 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15324:1 15332:2 15354:1 15372:1 15381:1 15382:1 15394:2 15414:1 15415:1 15440:1 15441:1 15453:1 15456:2 15464:1 15474:1 15479:2 15497:2 15506:1 15511:1 15516:1 15529:1 15537:1 15552:1 15554:2 15562:1 15587:1 15592:2 15600:2 15616:1 15634:1 15640:1 15642:1 15643:1 15659:1 15675:1 15688:1 15708:1 15726:2 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15884:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16037:1 16040:1 16065:3 16066:1 16092:1 16109:2 16113:1 16115:1 16144:1 16178:3 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:2 16286:2 16288:1 16299:1 16303:3 16313:1 16315:7 16323:4 16331:1 16335:1 16357:1 16373:1 16376:6 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16463:1 16474:2 16480:1 16481:1 16484:2 16488:2 16489:4 16490:1 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16560:1 16573:1 16576:2 16577:1 16581:1 16585:1 16587:1 16593:1 16594:1 16612:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:6 16801:1 16802:1 16825:1 16826:1 16833:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:2 16952:4 16960:3 16978:1 16985:1 16988:2 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17146:1 17149:1 17156:1 17158:1 17187:1 17194:1 17196:1 17220:1 17227:2 17235:1 17254:1 17257:2 17261:3 17288:3 17289:1 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17383:1 17385:1 17414:3 17424:1 17434:1 17437:3 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:2 17535:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:19 17601:1 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:2 17700:3 17705:1 17725:1 17741:1 17782:1 17795:1 17823:1 17826:1 17827:1 17832:2 17844:1 17850:1 17859:1 17862:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:2 17930:2 17939:1 17941:1 17962:1 17978:3 17980:1 17987:2 17991:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18146:1 18149:1 18157:2 18165:2 18189:2 18202:1 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18344:1 18347:1 18362:2 18397:1 18446:1 18449:1 18456:1 18477:1 18481:1 18515:1 18555:1 18557:1 18603:2 18620:1 18644:1 18646:1 18664:1 18665:3 18670:1 18672:2 18674:1 18681:1 18728:1 18730:1 18731:1 18733:1 18740:3 18757:1 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19013:1 19019:3 19021:1 19035:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:2 19122:1 19163:1 19166:1 19180:1 19187:1 19204:1 19208:1 19221:1 19224:1 19226:7 19237:1 19273:1 19284:1 19295:1 19296:1 19316:1 19340:9 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:3 19439:2 19464:1 19500:1 19503:1 19505:3 19513:1 19535:1 19540:1 19555:1 19557:3 19573:2473 19574:1 19577:2 19578:1 19621:2 19638:3 19646:1 19682:1 19685:1 19686:1 19696:2 19740:3 19744:2 19762:1 19772:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19853:1 19866:1 19876:2 19903:3 19909:1 19910:1 19921:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:3 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:4 20425:1 20459:1 20466:1 20473:1 20475:1 20476:2 20479:1 20508:1 20509:2 20519:2 20537:3 20541:1 20543:1 20576:1 20591:1 20595:1 20603:1 20624:1 20629:1 20641:2 20661:1 20675:2 20681:1 20710:2 20711:1 20717:1 20731:2 20733:1 20736:1 20740:2 20754:3 20755:1 20762:2 20773:18 20781:1 20790:1 20793:1 20798:1 20801:1 20819:1 20825:1 20830:5 20833:1 20845:1 20852:1 20853:1 20873:1 20879:1 20895:1 20907:1 20908:2 20935:7 20959:1 20962:1 20964:1 20965:1 20967:1 20971:1 20983:1 20984:1 20991:2 21012:1 21017:1 21023:1 21024:4 21029:1 21038:3 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21122:2 21126:1 21142:3 21143:1 21152:1 21156:1 21170:1 21185:1 21197:1 21214:22 21223:1 21224:1 21228:1 21238:1 21241:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21364:1 21399:1 21400:1 21409:1 21425:2 21435:1 21441:1 21459:1 21460:2 21464:2 21466:2 21489:1 21499:3 21505:1 21511:1 21513:1 21518:1 21523:1 21612:1 21625:1 21626:1 21627:2 21651:1 21669:2 21711:1 21712:1 21714:3 21718:1 21726:1 21731:1 21735:1 21740:1 21748:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:2 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:17 21889:1 21892:1 21899:3 21901:5 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:4 22065:2 22074:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:3 22195:1 22196:1 22202:1 22208:1 22223:1 22231:1 22235:1 22270:1 22300:1 22324:1 22327:3 22334:6 22349:1 22354:2 22358:1 22382:1 22384:2 22403:1 22427:1 22441:1 22453:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22484:6 22487:2 22493:2 22495:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22609:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:3 22694:2 22705:3 22715:2 22718:1 22736:1 22746:1 22753:1 22771:1 22803:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22866:1 22875:5 22876:1 22880:1 22882:1 22889:1 22921:2 22937:1 22975:2 22987:1 22995:2 23006:1 23011:1 23036:5 23059:2 23065:2 23071:2 23075:1 23083:1 23084:1 23085:1 23099:1 23110:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23198:1 23202:2 23208:1 23210:1 23216:2 23234:1 23245:1 23249:6 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23339:1 23349:1 23366:1 23378:3 23387:1 23390:2 23397:1 23398:1 23400:1 23401:1 23410:1 23411:2 23421:1 23423:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:2 23592:2 23594:1 23595:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:3 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23794:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:8 23864:1 23876:1 23877:1 23879:1 23881:1 23885:1 23888:2 23900:3 23901:2 23931:1 23942:1 23947:1 23952:2 23957:1 23959:1 23970:2 23975:2 23997:1 23999:1 24021:1 24025:1 24026:1 24029:1 24055:2 24082:2 24088:1 24102:1 24103:1 24119:2 24121:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24201:1 24220:2 24221:1 24277:2 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24349:1 24360:1 24362:1 24368:1 24372:1 24375:1 24401:1 24418:3 24430:1 24439:3 24442:2 24445:3 24482:1 24485:3 24503:1 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24720:1 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24823:1 24824:1 24855:1 24871:1 24873:1 24887:1 24893:1 24899:1 24909:1 24912:1 24921:1 24987:1 24999:1 25009:2 25013:1 25029:1 25036:1 25040:1 25046:3 25089:1 25093:1 25097:1 25102:1 25118:2 25120:1 25140:2 25147:1 25157:2 25162:1 25187:1 25200:1 25212:1 25213:2 25218:1 25228:1 25234:1 25235:2 25279:1 25282:3 25304:1 25311:2 25332:1 25337:2 25348:2 25351:1 25388:1 25396:2 25402:1 25426:1 25428:1 25451:2 25459:2 25460:2 25465:1 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:5 25504:2 25511:2 25518:1 25523:1 25526:5 25543:1 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:3 25660:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:2 25778:1 25781:1 25785:1 25789:1 25814:1 25815:1 25831:1 25838:1 25840:2 25847:1 25859:2 25886:1 25898:1 25930:1 25931:1 25934:1 25955:2 25964:3 25995:1 26001:1 26012:1 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26153:1 26158:3 26159:1 26185:1 26199:1 26220:1 26247:1 26267:2 26269:5 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26397:1 26426:1 26427:1 26431:1 26460:1 26475:1 26477:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:4 26542:3 26543:2 26568:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26686:2 26689:1 26721:3 26737:1 26747:2 26764:2 26767:2 26785:1 26790:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:6 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:2 26953:1 26954:2 26956:1 26996:1 27003:1 27011:1 27027:2 27034:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27155:1 27162:1 27164:2 27176:1 27186:2 27192:1 27200:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27306:1 27317:1 27328:12 27329:2 27332:1 27343:1 27367:1 27375:1 27400:3 27426:3 27436:1 27464:1 27470:1 27472:2 27478:2 27486:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27620:1 27624:1 27629:1 27652:1 27653:2 27664:1 27665:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27742:1 27767:1 27770:1 27775:1 27802:1 27811:1 27833:1 27855:1 27869:1 27871:1 27900:1 27921:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28035:1 28047:1 28053:1 28060:1 28061:3 28062:1 28069:1 28083:1 28087:1 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:5 28247:1 28250:2 28266:2 28271:3 28279:1 28282:2 28296:1 28308:2 28316:1 28319:6 28330:2 28332:1 28333:1 28337:1 28339:1 28341:1 28352:2 28377:1 28389:1 28396:2 28400:2 28407:1 28437:1 28441:1 28456:3 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28535:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28572:1 28577:1 28581:2 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:2 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28729:2 28734:1 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:1 28854:1 28867:1 28887:1 28907:1 28924:1 28932:2 28945:1 28946:4 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29206:1 29210:2 29231:1 29251:6 29255:1 29260:1 29265:4 29271:1 29283:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29400:5 29410:2 29417:1 29464:1 29471:1 29480:1 29506:4 29513:6 29526:1 29549:1 29551:7 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29605:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29648:5 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29765:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29843:1 29844:1 29855:4 29857:3 29873:1 29876:1 29889:1 29903:1 29904:1 29909:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29995:1 30003:1 30004:1 30007:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30097:1 30111:3 30112:1 30118:1 30120:1 30142:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:3 30265:1 30269:1 30272:1 30321:1 30323:1 30329:1 30334:1 30337:1 30353:1 30360:2 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30440:1 30447:1 30457:1 30465:2 30478:2 30479:2 30483:1 30485:1 30489:1 30516:1 30522:4 30524:1 30530:1 30545:1 30550:1 30561:4 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:1 30656:3 30657:2 30660:1 30662:2 30665:1 30666:1 30669:3 30673:1 30689:1 30697:1 30707:6 30721:1 30772:1 30786:1 7 9:1 19:1 21:1 35:1 48:1 80:1 91:1 111:2 120:1 132:1 176:5 187:6 229:2 235:1 243:2 248:2 269:1 287:1 288:1 293:1 312:1 314:1 331:1 335:2 341:3 352:1 370:2 372:1 384:1 391:1 396:1 398:1 399:1 415:2 455:1 472:1 473:1 476:2 482:1 511:1 517:1 523:1 527:2 566:1 570:1 574:1 582:1 609:1 610:2 615:1 619:4 651:2 658:5 676:1 682:1 722:1 745:6 760:1 777:1 809:1 815:1 818:1 843:1 846:1 866:1 890:1 900:1 902:1 905:8 906:1 926:2 930:4 934:2 957:1 975:2 976:3 1000:1 1003:1 1004:1 1007:5 1010:1 1013:1 1041:2 1042:3 1050:1 1052:2 1080:1 1082:1 1084:1 1097:1 1138:1 1145:1 1157:1 1174:2 1188:2 1201:3 1203:2 1233:1 1240:2 1242:1 1248:1 1270:1 1273:1 1286:1 1289:1 1292:1 1306:1 1308:2 1314:1 1320:1 1324:1 1327:1 1339:1 1377:1 1397:1 1407:1 1412:3 1436:2 1439:1 1452:1 1461:1 1473:1 1475:1 1485:1 1490:1 1491:1 1497:2 1501:1 1509:1 1529:1 1533:2 1539:3 1547:1 1559:1 1627:2 1658:2 1660:1 1666:2 1670:1 1702:1 1704:1 1714:3 1718:3 1721:1 1727:1 1728:3 1730:3 1748:2 1750:1 1785:1 1794:1 1802:2 1820:1 1830:1 1855:1 1856:3 1858:2 1862:1 1868:1 1891:1 1893:3 1910:1 1913:1 1915:1 1930:1 1932:4 1960:2 1973:2 1986:3 1987:1 1989:1 1993:1 2002:1 2005:1 2036:2 2050:1 2053:1 2055:1 2062:1 2066:1 2078:2 2082:2 2086:1 2111:1 2155:1 2157:1 2158:1 2165:1 2166:1 2185:1 2196:4 2210:1 2224:1 2238:5 2247:1 2248:1 2257:2 2268:3 2274:1 2279:2 2281:1 2299:1 2310:1 2313:2 2315:1 2316:1 2320:1 2322:1 2324:2 2327:5 2340:2 2341:1 2346:1 2348:1 2358:1 2365:1 2370:1 2371:6 2373:2 2375:3 2377:1 2378:4 2382:1 2383:2 2384:2 2390:1 2391:1 2397:5 2400:1 2402:3 2405:2 2409:6 2410:1 2465:1 2488:1 2496:1 2503:1 2506:2 2512:1 2517:1 2533:1 2534:1 2539:1 2566:1 2576:1 2589:1 2608:1 2619:1 2627:2 2639:1 2641:1 2650:1 2658:1 2661:1 2663:1 2671:1 2679:1 2682:1 2698:1 2701:1 2737:2 2750:1 2756:1 2775:1 2780:1 2800:3 2802:1 2803:1 2811:2 2827:1 2829:1 2848:3 2856:2 2860:1 2864:1 2896:1 2898:2 2912:4 2913:1 2919:3 2922:3 2929:8 2933:1 2938:2 2974:1 2977:1 2981:1 2983:3 3016:1 3021:1 3024:1 3026:5 3043:1 3060:1 3064:2 3070:1 3072:22 3090:1 3102:2 3106:1 3107:1 3109:2 3138:1 3139:1 3149:1 3158:1 3170:1 3189:1 3204:1 3206:1 3220:2 3224:2 3250:1 3267:3 3276:3 3316:1 3335:1 3365:1 3369:1 3381:1 3382:3 3395:1 3396:1 3402:1 3422:6 3424:1 3430:1 3432:1 3454:11 3462:1 3501:2 3508:1 3538:2 3599:1 3600:1 3602:1 3606:1 3607:1 3608:1 3618:1 3650:1 3656:2 3658:1 3678:1 3690:1 3701:1 3704:1 3727:1 3731:1 3732:1 3735:2 3748:1 3749:1 3760:2 3767:1 3770:1 3773:1 3786:1 3795:1 3814:1 3819:1 3827:1 3828:3 3830:2 3831:1 3846:1 3865:2 3874:1 3897:1 3899:1 3907:1 3933:1 3940:2 3943:1 3947:1 3957:1 3986:1 3987:3 4001:1 4003:2 4008:1 4009:2 4024:1 4045:1 4056:2 4057:1 4066:1 4068:2 4076:1 4085:1 4091:1 4095:1 4106:2 4117:1 4127:1 4143:1 4158:2 4164:2 4173:1 4191:3 4192:1 4202:1 4207:1 4246:1 4249:1 4251:1 4254:1 4259:1 4274:1 4284:1 4288:1 4290:1 4299:6 4303:2 4307:1 4310:1 4349:1 4355:2 4364:1 4377:1 4378:1 4385:1 4395:3 4410:3 4419:2 4422:1 4433:1 4438:1 4440:1 4460:3 4478:3 4485:1 4486:2 4489:1 4491:1 4503:2 4517:2 4532:2 4542:1 4551:2 4555:1 4558:1 4582:1 4583:1 4597:1 4609:1 4612:2 4613:1 4631:1 4632:1 4636:1 4651:2 4654:1 4665:1 4685:1 4688:1 4698:1 4701:1 4740:6 4752:1 4764:1 4765:1 4778:1 4788:1 4789:1 4822:1 4838:1 4840:1 4854:2 4857:1 4858:2 4878:2 4883:2 4887:3 4896:1 4907:1 4908:3 4912:1 4921:1 4930:2 4972:1 4983:1 4987:1 4991:1 4998:1 5024:1 5033:1 5040:1 5042:1 5078:3 5086:1 5091:1 5100:27 5104:1 5122:1 5136:1 5143:1 5177:1 5182:1 5184:3 5217:1 5225:1 5235:5 5254:5 5256:9 5260:2 5263:3 5265:2 5268:1 5270:2 5276:2 5284:1 5286:2 5287:2 5288:1 5289:3 5309:6 5315:1 5347:1 5363:1 5367:2 5374:1 5377:1 5410:1 5416:4 5430:1 5473:1 5480:6 5516:2 5539:1 5546:1 5576:1 5606:1 5607:1 5613:1 5618:2 5627:1 5635:1 5647:1 5649:1 5655:1 5658:1 5659:2 5684:1 5698:1 5711:1 5736:1 5817:1 5818:1 5826:2 5838:1 5872:3 5903:1 5904:2 5911:1 5940:4 5947:1 5958:1 5980:1 5982:2 5984:1 5987:1 5994:1 6029:1 6034:1 6038:1 6057:1 6060:2 6065:1 6077:2 6141:2 6156:1 6165:1 6191:1 6204:1 6213:1 6233:2 6242:1 6291:1 6297:1 6306:1 6322:1 6329:1 6332:1 6351:2 6355:2 6384:1 6386:1 6430:1 6441:2 6445:1 6448:1 6457:1 6461:1 6462:1 6480:6 6491:1 6500:1 6511:1 6513:2 6520:1 6541:1 6543:1 6553:1 6609:8 6631:6 6654:6 6660:1 6661:1 6679:2 6680:1 6688:1 6695:4 6696:1 6704:7 6706:3 6711:2 6712:2 6713:1 6715:1 6717:2 6718:1 6720:4 6725:2 6727:2 6733:1 6738:1 6740:1 6751:1 6767:1 6800:1 6826:1 6847:1 6872:2 6877:1 6890:1 6905:1 6911:1 6929:1 6931:2 6965:1 6966:3 6991:1 7016:1 7018:1 7045:1 7052:5 7116:1 7134:2 7141:4 7166:4 7168:3 7202:1 7246:2 7248:1 7253:1 7257:2 7259:1 7264:1 7287:1 7299:1 7303:1 7321:2 7340:1 7346:1 7352:1 7358:1 7359:1 7360:1 7407:1 7408:1 7410:1 7432:5 7462:1 7470:2 7473:1 7521:1 7526:2 7528:2 7531:2 7534:1 7536:1 7542:1 7544:2 7561:2 7592:1 7596:1 7599:1 7601:1 7622:2 7633:1 7651:1 7688:1 7689:1 7690:1 7706:1 7720:1 7732:1 7745:3 7747:1 7751:1 7762:1 7769:1 7785:1 7795:2 7796:1 7805:1 7808:1 7814:1 7816:1 7840:4 7854:1 7867:1 7878:1 7881:4 7892:1 7899:1 7914:1 7918:1 7956:1 7957:1 7985:2 7991:1 8005:1 8008:1 8009:1 8024:4 8026:1 8041:8 8042:7 8065:3 8089:1 8091:1 8093:1 8094:2 8104:37 8115:1 8129:2 8131:22 8154:1 8169:1 8200:1 8224:1 8226:2 8228:1 8245:1 8286:2 8319:1 8324:1 8329:1 8343:1 8348:1 8355:4 8359:1 8369:1 8370:1 8375:1 8379:1 8386:1 8387:1 8399:1 8408:1 8410:1 8427:1 8465:3 8467:1 8477:2 8489:1 8508:1 8537:1 8542:1 8559:1 8563:5 8564:1 8565:2 8570:1 8608:3 8622:1 8636:3 8641:2 8659:20 8669:1 8689:2 8697:2 8707:1 8719:3 8742:1 8749:1 8751:1 8753:1 8768:3 8806:1 8813:1 8819:1 8832:2 8839:4 8852:2 8855:2 8884:1 8915:2 8919:2 8934:1 8935:1 8939:1 8941:1 8951:1 8955:1 8965:2 8967:1 8978:3 8988:2 8994:2 8997:1 9034:1 9037:2 9071:1 9074:1 9076:2 9080:1 9093:2 9101:1 9107:1 9136:2 9154:3 9155:7 9173:2 9189:2 9190:1 9203:1 9220:1 9226:1 9237:1 9238:1 9253:2 9254:1 9256:2 9259:1 9279:1 9292:1 9300:1 9303:1 9305:1 9306:1 9312:1 9330:1 9352:2 9353:2 9370:1 9374:2 9375:1 9387:2 9405:3 9409:3 9416:2 9429:1 9448:1 9452:1 9487:1 9499:1 9505:1 9513:1 9516:2 9519:1 9524:1 9538:1 9539:1 9546:2 9559:1 9564:2 9573:1 9605:2 9618:6 9629:1 9632:1 9670:1 9676:1 9698:2 9704:1 9721:1 9746:1 9760:1 9764:1 9767:2 9769:1 9781:1 9782:1 9783:1 9795:1 9796:2 9797:1 9806:1 9821:1 9823:1 9854:1 9858:3 9864:1 9882:1 9908:1 9909:1 9946:2 9955:2 9960:1 9973:3 9975:1 10017:2 10019:4 10022:1 10031:1 10069:2 10073:1 10083:1 10096:3 10108:1 10123:2 10135:2 10144:1 10150:4 10157:1 10166:1 10169:3 10170:3 10183:4 10206:1 10208:1 10228:3 10239:1 10244:1 10261:1 10289:4 10304:1 10308:1 10311:1 10319:1 10321:1 10334:1 10342:1 10350:1 10351:1 10352:3 10360:1 10370:1 10383:1 10439:2 10441:1 10450:1 10459:1 10466:1 10471:2 10481:1 10489:1 10513:1 10516:1 10559:1 10560:1 10563:1 10567:1 10572:3 10602:1 10610:1 10621:1 10638:1 10649:1 10656:4 10661:1 10663:1 10669:1 10684:2 10696:1 10699:1 10714:3 10718:2 10729:1 10731:2 10735:1 10737:1 10759:1 10781:1 10790:1 10806:1 10810:2 10826:2 10831:1 10836:1 10838:2 10840:1 10842:1 10843:1 10863:1 10877:1 10905:3 10907:2 10910:1 10962:2 10970:1 11008:1 11010:1 11020:1 11024:3 11061:2 11077:1 11095:1 11097:1 11099:1 11104:1 11105:2 11127:3 11135:1 11147:1 11154:1 11161:1 11163:1 11165:1 11173:1 11185:1 11187:3 11188:1 11197:1 11212:1 11245:1 11257:1 11291:1 11293:1 11300:4 11323:2 11332:1 11333:1 11356:1 11363:1 11366:1 11369:1 11370:1 11374:1 11379:1 11395:1 11469:2 11473:1 11497:1 11499:1 11515:1 11516:1 11517:1 11521:1 11552:2 11558:2 11565:1 11571:2 11573:1 11574:9 11579:1 11586:1 11608:1 11620:1 11625:1 11630:1 11653:1 11655:1 11670:1 11673:1 11681:2 11688:1 11709:1 11716:1 11717:2 11729:2 11753:2 11755:2 11761:1 11766:1 11781:1 11786:1 11797:1 11837:1 11840:1 11866:1 11871:3 11897:1 11898:1 11901:1 11909:3 11910:1 11927:1 11948:2 11952:1 11964:1 11968:1 11973:1 11974:1 11976:1 11992:2 11997:1 12000:1 12012:2 12018:2 12023:1 12029:1 12049:2 12050:7 12060:1 12086:1 12109:1 12115:1 12116:1 12121:1 12125:1 12139:1 12141:2 12150:1 12159:1 12170:1 12171:1 12177:1 12189:3 12191:1 12216:2 12229:1 12272:5 12273:3 12277:1 12291:1 12295:2 12296:1 12301:1 12313:2 12316:2 12319:1 12320:1 12321:3 12324:1 12329:1 12331:3 12333:4 12334:1 12335:2 12336:1 12337:4 12340:2 12345:4 12349:4 12362:3 12370:1 12374:1 12377:1 12393:1 12395:1 12396:2 12409:2 12410:1 12411:1 12421:1 12424:1 12436:1 12442:3 12454:1 12471:1 12477:1 12497:1 12509:1 12510:1 12513:5 12520:1 12523:1 12527:2 12528:1 12573:1 12575:1 12577:1 12603:2 12609:1 12613:1 12619:1 12645:1 12662:3 12702:1 12712:1 12715:1 12719:6 12720:1 12723:1 12735:6 12738:1 12757:1 12775:1 12794:2 12814:1 12830:1 12831:1 12839:1 12843:1 12849:1 12859:1 12860:2 12862:1 12863:1 12867:2 12885:1 12886:1 12902:1 12903:1 12912:1 12927:1 12957:1 12971:2 12982:1 12990:1 13005:1 13018:2 13056:2 13057:1 13065:1 13070:1 13081:1 13095:1 13114:1 13130:1 13137:1 13196:1 13202:1 13229:1 13232:2 13237:1 13240:1 13241:1 13260:1 13264:1 13268:1 13271:2 13280:1 13284:1 13288:5 13300:2 13305:1 13311:1 13332:1 13333:2 13341:1 13361:1 13365:2 13378:1 13380:1 13393:1 13405:1 13409:1 13441:7 13453:1 13462:1 13469:1 13482:1 13493:1 13498:2 13500:2 13505:1 13508:1 13509:1 13510:1 13522:4 13538:1 13551:2 13552:1 13554:1 13556:1 13559:2 13569:1 13572:2 13574:1 13575:1 13585:1 13589:1 13591:1 13596:2 13600:1 13606:1 13621:1 13640:1 13641:2 13646:2 13647:1 13651:1 13662:1 13677:2 13715:1 13722:3 13724:1 13734:1 13738:1 13757:1 13774:1 13801:3 13808:1 13834:1 13836:2 13838:1 13841:1 13859:1 13877:2 13879:1 13883:2 13885:2 13896:5 13906:1 13927:1 13935:1 13961:1 13971:1 13973:1 13985:1 14006:1 14034:1 14042:2 14055:3 14056:2 14057:1 14069:3 14074:1 14085:2 14119:1 14152:7 14213:1 14214:2 14216:1 14237:1 14247:1 14260:1 14283:1 14289:2 14303:3 14308:4 14313:1 14315:3 14335:3 14339:1 14340:1 14350:1 14359:1 14395:1 14404:1 14409:2 14430:1 14431:2 14437:1 14438:5 14439:2 14441:1 14442:1 14453:1 14459:3 14461:1 14463:1 14464:1 14467:1 14468:1 14469:2 14473:1 14517:1 14534:1 14539:1 14544:2 14551:1 14560:4 14564:3 14572:1 14582:2 14590:1 14605:3 14607:2 14613:1 14656:2 14657:3 14658:1 14665:2 14675:1 14695:1 14705:1 14730:2 14737:1 14746:3 14749:1 14755:2 14772:1 14780:1 14785:1 14787:1 14798:1 14801:1 14803:1 14816:2 14818:2 14850:3 14853:1 14863:2 14879:2 14884:1 14888:2 14900:2 14905:1 14911:1 14913:1 14949:1 14953:1 14960:2 14963:1 14966:2 14975:2 14980:1 14983:1 14991:1 14992:1 14995:1 15001:1 15010:2 15013:1 15054:1 15064:1 15079:1 15094:1 15112:2 15114:1 15119:1 15122:3 15129:1 15136:2 15138:2 15139:3 15147:1 15150:1 15160:1 15171:1 15186:1 15221:1 15241:1 15261:1 15267:1 15283:1 15290:1 15291:1 15300:1 15302:3 15304:1 15306:1 15309:1 15317:3 15320:1 15321:1 15323:2 15324:1 15332:2 15354:1 15372:1 15381:1 15382:1 15394:2 15414:1 15415:1 15440:1 15441:1 15453:1 15456:2 15464:1 15474:1 15479:2 15497:2 15506:1 15511:1 15516:3 15529:1 15537:1 15552:1 15554:2 15559:1 15562:1 15587:1 15592:2 15600:2 15616:1 15634:1 15637:1 15640:1 15642:1 15643:1 15659:1 15675:1 15688:1 15708:1 15726:2 15744:1 15760:2 15769:1 15772:1 15774:3 15781:1 15795:2 15796:1 15800:1 15842:1 15857:1 15884:1 15891:1 15925:1 15946:1 15968:1 15976:1 15983:1 15985:1 16007:1 16009:2 16029:1 16037:1 16040:1 16065:3 16066:1 16092:1 16109:2 16113:1 16115:1 16144:1 16178:3 16202:1 16209:1 16210:1 16211:6 16227:1 16232:1 16245:1 16259:2 16272:3 16273:2 16286:2 16288:1 16299:1 16303:3 16313:1 16315:7 16323:4 16331:1 16335:1 16357:1 16373:1 16376:6 16408:1 16412:1 16436:1 16438:1 16446:1 16447:1 16463:1 16474:2 16480:1 16481:1 16484:2 16488:2 16489:4 16490:1 16500:2 16515:1 16516:2 16519:2 16520:1 16521:5 16522:2 16530:1 16532:1 16541:1 16555:1 16560:1 16573:1 16576:2 16577:1 16581:1 16585:1 16587:1 16593:1 16594:1 16612:1 16618:1 16623:1 16656:2 16690:1 16698:1 16714:1 16726:1 16762:1 16795:7 16801:1 16802:1 16825:1 16826:1 16833:1 16836:1 16840:1 16843:1 16854:1 16882:2 16885:1 16893:1 16895:1 16899:1 16943:1 16944:3 16952:4 16960:3 16978:1 16985:1 16988:2 17032:1 17046:1 17048:1 17051:2 17052:1 17059:3 17061:1 17064:3 17067:1 17069:1 17071:4 17074:2 17104:1 17134:1 17142:1 17146:1 17149:1 17156:1 17158:1 17187:2 17194:1 17196:1 17220:1 17227:2 17235:1 17254:1 17257:2 17261:3 17288:3 17289:1 17304:2 17307:1 17317:2 17322:1 17348:1 17363:1 17372:2 17375:2 17380:1 17383:1 17385:1 17414:3 17417:1 17424:1 17434:1 17437:4 17439:1 17445:2 17450:2 17467:1 17471:1 17507:1 17510:2 17535:1 17541:1 17543:1 17549:1 17555:5 17566:1 17580:1 17583:1 17592:19 17601:1 17615:1 17641:1 17645:2 17648:1 17652:1 17664:1 17684:2 17686:2 17700:3 17705:1 17725:2 17726:1 17734:1 17741:1 17782:1 17795:1 17823:1 17826:1 17827:1 17832:2 17844:1 17850:2 17859:1 17862:1 17864:1 17871:1 17874:1 17882:1 17887:3 17899:1 17909:2 17930:2 17939:1 17941:1 17962:1 17978:3 17980:1 17987:2 17991:1 17997:1 18007:1 18009:3 18015:1 18036:2 18052:1 18054:1 18070:1 18107:1 18115:1 18129:4 18142:1 18146:1 18149:1 18157:2 18165:2 18189:2 18202:1 18210:1 18235:1 18239:2 18249:2 18253:1 18266:2 18270:1 18278:2 18285:1 18287:1 18291:1 18292:1 18293:1 18313:1 18319:1 18321:1 18334:1 18342:1 18343:1 18344:1 18347:1 18362:2 18369:1 18397:1 18446:2 18449:1 18456:1 18462:1 18477:1 18481:1 18515:1 18555:1 18557:1 18603:2 18620:1 18644:1 18646:1 18664:1 18665:3 18670:1 18672:2 18674:1 18681:1 18699:1 18728:1 18730:1 18731:1 18733:1 18740:3 18757:1 18782:1 18785:1 18796:1 18821:2 18833:3 18867:1 18882:2 18887:1 18902:3 18912:1 18923:1 18951:2 18958:1 18964:1 18978:1 18988:1 18989:1 19010:2 19013:1 19019:3 19021:1 19035:1 19046:1 19055:1 19070:1 19076:1 19093:1 19102:1 19118:2 19122:1 19142:1 19163:1 19166:1 19180:1 19187:1 19204:1 19208:1 19221:1 19224:1 19226:7 19234:1 19237:1 19273:1 19284:1 19295:1 19296:1 19316:1 19340:10 19351:3 19362:3 19371:1 19379:1 19420:1 19429:1 19436:4 19439:2 19464:1 19500:1 19503:1 19505:3 19512:2 19513:1 19535:1 19540:1 19555:1 19557:3 19573:2569 19574:1 19577:2 19578:1 19621:2 19638:3 19642:1 19646:1 19682:1 19685:1 19686:1 19696:2 19740:3 19744:2 19762:1 19772:1 19775:2 19787:1 19788:1 19797:1 19806:1 19809:1 19814:1 19818:2 19833:3 19835:1 19853:1 19855:1 19866:1 19876:2 19903:3 19909:1 19910:1 19921:1 19929:1 19937:1 19955:1 19980:1 19986:1 19990:1 20005:3 20016:1 20021:2 20024:1 20047:1 20049:1 20052:1 20059:1 20067:1 20080:1 20084:1 20086:1 20100:1 20116:1 20120:1 20125:1 20127:1 20133:2 20142:2 20144:1 20153:1 20161:1 20167:1 20179:1 20181:1 20196:1 20210:2 20238:1 20246:4 20254:1 20256:1 20274:1 20294:3 20299:1 20321:1 20326:1 20327:1 20332:1 20338:1 20342:1 20363:6 20365:1 20368:3 20377:1 20392:2 20396:1 20407:4 20425:2 20459:1 20466:1 20473:1 20475:1 20476:2 20479:1 20496:1 20508:1 20509:2 20519:2 20537:4 20541:1 20543:1 20563:1 20576:1 20591:1 20595:1 20603:1 20624:1 20629:1 20641:2 20661:1 20675:2 20681:1 20710:2 20711:1 20717:1 20731:2 20733:1 20736:1 20740:2 20754:3 20755:1 20762:2 20773:18 20781:1 20790:1 20793:1 20798:1 20801:1 20819:1 20821:1 20825:1 20830:5 20833:1 20845:1 20852:2 20853:1 20873:1 20879:1 20895:1 20907:1 20908:2 20935:7 20959:1 20962:1 20964:1 20965:1 20967:1 20971:1 20983:1 20984:1 20991:2 21012:1 21017:1 21023:1 21024:4 21029:1 21038:3 21047:1 21054:3 21056:1 21057:1 21064:1 21070:1 21081:1 21087:1 21097:3 21103:1 21108:1 21109:1 21116:1 21122:2 21126:2 21142:3 21143:1 21152:1 21155:1 21156:1 21170:1 21185:1 21197:1 21214:22 21223:1 21224:1 21228:1 21238:1 21241:1 21254:1 21269:1 21285:1 21287:1 21339:1 21348:1 21350:1 21364:1 21399:1 21400:1 21409:1 21425:2 21435:1 21441:1 21459:1 21460:2 21464:2 21466:2 21489:1 21499:3 21505:1 21511:1 21513:1 21518:1 21523:1 21612:1 21625:1 21626:1 21627:2 21651:1 21669:2 21697:1 21711:1 21712:1 21714:3 21718:1 21726:1 21731:1 21735:1 21740:1 21748:1 21761:2 21763:1 21778:2 21782:1 21795:1 21801:1 21803:1 21805:1 21831:3 21848:1 21851:1 21855:1 21857:1 21859:2 21869:3 21872:1 21876:1 21879:1 21881:17 21889:1 21892:1 21899:3 21901:6 21908:1 21921:2 21923:1 21928:1 21975:1 21993:1 22001:1 22005:1 22006:3 22030:1 22052:4 22065:2 22074:1 22116:1 22137:2 22139:1 22152:1 22156:2 22158:1 22176:2 22179:1 22191:4 22195:1 22196:1 22202:1 22208:1 22223:1 22225:1 22231:1 22235:1 22270:1 22300:1 22309:1 22320:1 22324:2 22327:3 22334:6 22349:1 22354:2 22358:1 22382:1 22384:2 22403:1 22427:1 22441:1 22453:1 22458:1 22459:1 22463:2 22464:1 22470:1 22472:1 22473:1 22480:1 22484:6 22487:2 22493:2 22495:1 22506:1 22529:2 22531:1 22533:1 22539:1 22542:1 22543:3 22545:1 22547:5 22549:1 22553:2 22556:1 22560:2 22574:1 22591:1 22593:2 22604:1 22609:1 22611:1 22616:1 22620:1 22629:1 22636:2 22656:2 22665:2 22693:5 22694:2 22705:3 22715:2 22718:1 22736:1 22746:1 22753:3 22771:1 22803:1 22822:1 22828:1 22835:2 22836:1 22845:4 22848:2 22852:1 22866:1 22875:5 22876:1 22880:1 22882:1 22887:1 22889:1 22921:2 22937:1 22975:2 22987:1 22995:2 23006:1 23011:1 23036:6 23059:2 23065:2 23071:2 23075:1 23083:1 23084:2 23085:1 23099:1 23110:1 23113:1 23122:1 23123:1 23133:1 23134:2 23136:1 23149:1 23169:1 23175:1 23186:1 23198:1 23202:2 23208:1 23210:2 23216:2 23234:1 23242:1 23245:1 23249:6 23255:1 23274:2 23290:1 23294:1 23302:1 23314:3 23320:1 23324:1 23336:1 23338:1 23339:1 23349:1 23366:1 23378:3 23387:1 23390:3 23397:1 23398:1 23400:1 23401:1 23410:1 23411:2 23421:1 23423:1 23425:1 23433:1 23436:2 23440:1 23441:1 23450:1 23453:1 23455:4 23459:2 23465:1 23480:2 23482:1 23492:1 23493:2 23512:2 23518:1 23519:5 23529:1 23542:2 23550:1 23563:1 23583:2 23592:2 23594:1 23595:1 23601:1 23617:2 23655:1 23665:1 23674:1 23694:1 23701:2 23710:3 23720:1 23724:1 23727:1 23746:3 23759:3 23763:1 23764:2 23769:1 23794:1 23795:1 23808:1 23820:1 23826:1 23830:1 23850:1 23851:1 23858:8 23864:1 23876:1 23877:1 23879:1 23881:1 23885:1 23888:2 23900:3 23901:2 23909:1 23931:1 23942:1 23947:1 23949:1 23952:2 23957:1 23959:1 23970:2 23975:2 23997:1 23999:1 24001:1 24021:1 24025:1 24026:1 24029:1 24055:2 24082:2 24088:1 24102:1 24103:2 24119:2 24121:1 24125:1 24127:1 24134:1 24147:1 24154:1 24158:1 24186:1 24197:1 24199:1 24201:1 24220:2 24221:1 24277:3 24289:1 24293:1 24299:1 24303:1 24323:1 24325:3 24332:2 24337:1 24349:1 24360:1 24362:1 24368:1 24372:1 24375:1 24401:1 24418:3 24430:1 24439:4 24442:3 24445:3 24482:1 24485:3 24487:1 24503:1 24510:4 24513:1 24514:1 24516:1 24534:1 24550:1 24553:2 24565:1 24592:1 24606:1 24633:2 24639:1 24642:1 24649:1 24707:2 24708:1 24717:2 24720:1 24721:1 24753:1 24760:1 24766:1 24784:1 24819:3 24823:1 24824:1 24855:1 24871:1 24873:1 24887:1 24893:1 24899:1 24909:1 24912:1 24921:1 24987:1 24999:1 25009:2 25013:1 25029:1 25036:1 25040:1 25046:3 25061:1 25089:1 25093:1 25097:1 25102:1 25118:2 25120:1 25140:2 25147:2 25157:2 25162:1 25177:1 25187:1 25200:1 25212:1 25213:2 25218:1 25228:1 25234:1 25235:2 25279:1 25282:3 25304:1 25311:2 25332:1 25337:2 25348:2 25351:1 25388:1 25396:2 25402:1 25426:1 25428:1 25430:1 25451:2 25459:2 25460:2 25465:1 25471:2 25474:1 25477:1 25478:1 25479:3 25480:2 25482:1 25489:1 25490:1 25493:5 25504:2 25511:2 25518:1 25523:1 25526:5 25540:1 25543:1 25550:1 25575:1 25583:1 25585:1 25594:8 25595:3 25600:1 25603:3 25630:2 25635:1 25641:1 25650:3 25652:3 25660:2 25687:1 25688:1 25689:1 25690:1 25731:1 25773:2 25778:1 25781:1 25785:1 25789:1 25814:1 25815:1 25828:1 25831:1 25838:1 25840:3 25847:1 25859:2 25886:1 25898:1 25930:1 25931:1 25934:1 25955:2 25964:3 25995:1 26001:1 26012:2 26013:2 26021:1 26026:1 26042:1 26065:1 26075:9 26080:2 26129:1 26131:1 26133:1 26146:1 26153:1 26158:3 26159:1 26185:1 26199:1 26200:1 26220:1 26247:1 26267:2 26269:6 26286:1 26299:5 26317:1 26387:2 26388:1 26393:1 26397:1 26426:1 26427:1 26431:1 26460:1 26475:1 26477:1 26489:2 26508:2 26511:1 26524:1 26527:1 26532:1 26537:4 26542:3 26543:2 26567:1 26568:1 26582:1 26595:2 26602:1 26619:1 26648:1 26656:1 26657:2 26658:3 26659:1 26666:2 26683:1 26686:2 26689:1 26721:4 26737:1 26747:2 26764:2 26767:2 26785:1 26790:1 26802:1 26810:1 26833:1 26835:3 26838:1 26866:6 26868:6 26896:2 26923:1 26925:1 26929:1 26938:1 26941:1 26945:2 26950:2 26953:1 26954:2 26956:1 26996:1 27003:1 27011:1 27012:1 27027:2 27034:1 27037:1 27051:1 27059:1 27069:1 27082:2 27083:1 27100:1 27122:1 27127:1 27142:1 27155:1 27162:1 27164:2 27176:1 27186:2 27192:1 27200:1 27206:1 27235:1 27253:1 27262:4 27284:1 27292:1 27296:1 27306:1 27317:1 27328:13 27329:2 27332:1 27343:1 27367:1 27375:1 27400:3 27426:3 27436:1 27455:1 27464:1 27470:1 27472:2 27478:2 27486:1 27488:1 27492:1 27496:1 27508:1 27515:3 27532:1 27559:1 27564:1 27616:1 27620:1 27624:1 27629:1 27652:1 27653:2 27664:1 27665:1 27678:2 27679:1 27681:1 27686:1 27698:2 27737:1 27738:1 27742:1 27767:1 27770:2 27775:1 27802:1 27811:1 27833:1 27855:1 27869:1 27871:1 27900:1 27921:1 27924:1 27949:1 27955:1 27969:2 27993:2 27999:1 28007:1 28030:1 28031:1 28035:1 28047:1 28053:1 28060:1 28061:3 28062:1 28069:1 28083:1 28087:2 28090:2 28103:1 28109:1 28121:1 28164:1 28166:1 28175:1 28177:1 28178:2 28189:4 28190:2 28192:1 28222:2 28232:1 28233:1 28234:5 28247:1 28250:2 28266:2 28271:3 28279:1 28282:2 28296:1 28308:2 28316:1 28319:6 28330:2 28332:2 28333:1 28337:1 28339:1 28341:1 28352:2 28377:1 28389:2 28396:2 28400:2 28407:1 28437:1 28441:1 28456:3 28476:1 28479:3 28519:2 28525:1 28530:1 28533:1 28535:1 28537:1 28545:1 28550:1 28551:1 28554:1 28559:1 28563:1 28564:1 28566:1 28572:1 28577:1 28581:2 28586:2 28597:1 28599:1 28602:1 28603:2 28607:1 28609:1 28611:1 28614:1 28616:2 28618:2 28621:1 28624:2 28625:1 28630:2 28633:2 28634:1 28639:1 28667:1 28679:1 28685:1 28717:1 28729:2 28734:1 28740:3 28757:1 28769:1 28806:1 28826:1 28830:1 28831:2 28833:2 28854:1 28867:1 28887:1 28907:1 28924:1 28932:2 28945:1 28946:4 28948:2 28949:1 28954:1 28955:3 28959:1 28975:2 28981:1 28992:1 28999:2 29006:1 29053:1 29056:1 29065:1 29087:1 29095:1 29104:2 29131:1 29166:1 29170:1 29190:1 29206:1 29210:2 29231:1 29251:6 29255:1 29260:1 29265:4 29271:1 29283:1 29285:1 29287:1 29307:1 29313:1 29319:1 29322:1 29327:1 29331:1 29337:1 29340:1 29342:1 29345:1 29357:8 29364:1 29365:1 29378:1 29381:1 29397:1 29399:1 29400:5 29410:2 29417:1 29464:1 29471:1 29480:1 29506:4 29513:6 29526:1 29549:1 29551:9 29555:1 29558:1 29563:1 29571:2 29590:1 29591:1 29597:1 29599:1 29605:1 29608:1 29609:1 29611:2 29616:1 29620:1 29631:1 29636:1 29638:1 29645:1 29648:6 29649:1 29668:1 29674:1 29679:1 29690:1 29694:1 29706:1 29732:1 29737:1 29752:2 29754:2 29756:1 29757:2 29759:1 29765:1 29770:1 29796:1 29826:1 29827:2 29831:1 29840:1 29842:3 29843:1 29844:1 29855:4 29857:3 29873:1 29876:1 29889:1 29903:1 29904:1 29909:1 29913:1 29914:1 29922:1 29923:1 29938:1 29941:1 29944:1 29970:1 29971:1 29995:1 30003:1 30004:1 30007:1 30027:1 30037:1 30039:1 30043:1 30062:1 30075:1 30081:1 30090:1 30094:1 30097:1 30111:3 30112:1 30118:1 30120:1 30142:1 30154:1 30160:1 30171:1 30187:2 30201:1 30203:2 30209:2 30236:1 30251:4 30265:1 30269:2 30272:1 30321:1 30323:1 30329:1 30334:1 30337:1 30353:1 30360:3 30362:2 30364:1 30382:1 30403:2 30412:1 30421:2 30425:1 30437:1 30440:1 30447:1 30457:1 30465:2 30478:2 30479:2 30483:1 30485:1 30489:1 30516:1 30522:4 30524:1 30530:1 30545:1 30550:1 30561:4 30576:2 30609:1 30615:2 30618:1 30631:1 30640:1 30641:1 30643:1 30645:1 30648:3 30649:2 30656:3 30657:2 30660:1 30662:2 30665:1 30666:1 30669:3 30673:1 30689:1 30697:1 30707:6 30721:1 30772:1 30786:1
4e8f1be8eb06faaf510e7f9083c7f04409c11ad6
9cb37875b74a713c93c09fa50ccc70ac0f71ecdb
/ManipulationPlanner/SCENARIO/ManipulationPr2IkeaTop.sce
88fb6633dd8bc14169304d542f26fa327803b72c
[]
no_license
jmainpri/move3d-assets
a5b621daaedaaf8784fed0da1e80d029c83f3983
939db49d17a14e052bb58324b70e6112803d3105
refs/heads/master
2021-01-16T17:48:56.669119
2016-02-16T14:04:09
2016-02-16T14:04:09
20,237,987
1
0
null
null
null
null
UTF-8
Scilab
false
false
27,904
sce
ManipulationPr2IkeaTop.sce
#************************************************************ # Scenario of grande_salle # # date : Mon Nov 7 23:07:32 2011 #************************************************************ p3d_sel_desc_name P3D_ENV grande_salle p3d_sel_desc_name P3D_ROBOT MOVING_BOX p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT LOTR_TAPE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT WALLE_TAPE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT GREY_K7 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT GREY_TAPE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.889000 -2.748000 1.192000 -0.878049 0.000000 83.556000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN3 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT LOWTABLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT LONG_TABLE1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT LONG_TABLE2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SQUARE_TABLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT CHAIR1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT CHAIR2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT TRASHBIN p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SHELF p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HRP2TABLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.975610 -2.380488 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SIMPLECHAIR p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SMALLBOARD p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT LARGEBOARD p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HRP2BARTable p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT IKEA_SHELF p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.121000 -2.662000 0.765000 -0.878049 0.000000 -26.496000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SURPRISE_BOX p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT TOYCUBE_WOOD p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PLACEMAT_RED p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PLACEMAT_BLUE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PLACEMAT_GREEN p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PLACEMAT_PURPLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT ACCESSKIT p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT CUPHANDLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SPACENAVBOX p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PINK_TRASHBIN p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PAPERDOG p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT BLUE_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT ORANGE_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.746000 -2.539000 0.754000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT YELLOW_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.910000 -2.309000 0.765000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT RED_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT COFFEEJAR p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PR_2CYLINDER p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HUMCYLINDER p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT VISBALL_INTERNAL p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PR2_GRIPPER p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PR2_GRIPPER_LEFT p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT VISBALL_MIGHTABILITY p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SAHandRight2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT PR2_ROBOT p3d_set_robot_steering_method Multi-Localpath p3d_set_robot_radius 1.000000 p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -16.213125 11.015992 -3.394920 -86.788964 -170.590763 -75.311296 -179.888019 21.883665 21.883665 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.829192 -2.739756 1.288991 -0.878049 0.000000 -6.444000 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -16.213125 11.015992 -3.394920 -86.788964 -170.590763 -75.311296 -179.888019 12.369185 12.369185 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.829192 -2.739756 1.288991 -0.878049 0.000000 -6.444000 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config config_1 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634146 -2.780488 1.053659 0.000000 -0.878049 0.000000 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_12 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -16.213125 11.015992 -3.394920 -86.788964 -170.590763 -75.311296 -179.888019 12.369185 12.369185 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.889000 -2.748000 1.192000 -0.878049 0.000000 83.556000 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_11 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -16.213125 11.015992 -3.394920 -86.788964 -170.590763 -75.311296 -179.888019 21.883665 12.369185 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.889000 -2.748000 1.192000 -0.878049 0.000000 83.556000 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_10 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 -0.000000 0.000000 -0.000000 0.252511 -63.316234 39.219512 -19.882776 -18.188223 12.410578 -3.394920 -105.629348 -169.000122 -92.407464 -177.008005 21.883665 21.883665 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.789632 -2.736778 1.191828 -0.878049 0.000000 83.556000 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_9 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_7 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_6 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_5 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_4 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_3 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_2 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_set_robot_config configTraj_1 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.146341 -2.390244 0.000000 0.000000 0.000000 0.000000 0.252511 -63.316234 39.219512 -19.882776 -27.592344 52.471305 3.165854 -130.344096 -149.325953 -79.582047 172.158564 2.790675 2.790675 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 8.994976 8.994976 2.616095 1.262378 2.421759 4.634145 -2.780486 1.053660 0.000009 -0.878038 0.000002 4.634146 -1.902439 1.053659 0.000000 0.000000 0.000000 p3d_constraint p3d_lin_rel_dofs 1 15 1 14 2 1.000000 0.000000 0 p3d_constraint p3d_lin_rel_dofs 1 25 1 24 2 1.000000 0.000000 0 p3d_constraint p3d_pr2_arm_ik 7 6 7 9 10 11 12 13 1 32 0 1 8 p3d_set_cntrt_Tatt 2 1.000000 -0.000000 0.000006 -0.180000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 p3d_set_cntrt_Tatt2 2 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 1.000000 0.000000 0.000000 -0.180000 p3d_constraint p3d_pr2_arm_ik 7 16 17 19 20 21 22 23 1 33 0 1 18 p3d_set_cntrt_Tatt 3 1.000000 -0.000000 0.000000 -0.180000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 p3d_set_cntrt_Tatt2 3 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 1.000000 0.000000 0.000000 -0.180000 p3d_constraint p3d_fix_jnts_relpos 1 32 1 13 0 0 p3d_set_cntrt_Tatt 4 1.000000 -0.000000 -0.000000 0.180000 -0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000001 p3d_constraint p3d_fix_jnts_relpos 1 33 1 23 0 0 p3d_set_cntrt_Tatt 5 1.000000 -0.000000 0.000000 0.180001 0.000000 1.000000 0.000000 0.000002 -0.000000 -0.000000 1.000000 0.000000 p3d_set_object_base_and_arm_constraints 32 1 0 2 2 3 p3d_set_arm_data 2 3 32 p3d_set_arm_data 3 3 33 p3d_set_camera_pos 4.651175 -2.483671 1.013091 1.957752 2.265000 0.665000 0.000000 0.000000 1.000000 0.000000
a179e0f9741d84a6e112ea59749dc6bcc92d4e9f
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH11/EX11.9/ex_11_9.sce
2ed8b2b164fb01369775149858cda8069cf2684d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
839
sce
ex_11_9.sce
//find size of bolt required clc //soltuion //given D=300//mm p=1.5//N/mm^2 n=8 fy=330//N/mm^2 fe=240//n/mm^2 //P1=1.5*P2 Fs=2 K=0.5 pi=3.14 P2=(pi/4)*D^2*p//N P1=1.5*P2//N Pmax=P1+K*P2//N printf("the max force on head is,%f N\n",Pmax) Pmax1=Pmax/n//N//load on each bolt Pmin=P1/n//N Pm=(Pmin+Pmax1)/2//N//average load Pv=(Pmax1-Pmin)/2//N//variable load printf("the mean and vaiable load acting are Pm and Pv,%f N\n,%f N\n",Pm,Pv) //let dc core diametr of bolt in mm //As=(pi/4)*dc^2//mm^2//stress area of bolt //fm=Pm/As=29534/dc^2//N/mm^2 //fv=Pv/As=4220/dc^2//N/mm^2 //acc to soderberg's formula , //fv=fe[(1/Fs)-(fm/fy)] //4420/dc^2=240*[(1/2)-29534/(dc^2*330)] dc=sqrt(25700/120)//mm printf("the value of core dai is,%f mm\n",dc) printf("the standard value of core diametr is 14.933 mm fron T11.1")
98fb3fffb9e10b7f0b94e2554e3e35eae1b92dcb
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.1.1/Unix/scilab-2.1.1/macros/util/c_link.sci
8a2f49934b54c15fd9194ac8872568a0080347dd
[ "MIT", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
437
sci
c_link.sci
function [rep]=c_link(name) // check if 'name' is already linked // rep=%f; if type(name)<>10 then error("c_link : name must be a string"); return end tablnk=link(); if prod(size(tablnk))=0 then rep=%f ;return;end nn=length(tablnk(1))-length(name); bb=' '; for i=1:(nn-1);bb=bb+ ' ';end namep=name+bb tablnk=[tablnk;namep]; nt=prod(size(tablnk)); k=1;while tablnk(k)<>namep then k=k+1,end if k=nt then rep=%f;else rep=%t;end
4b08e980c7c61f91ec1d86c49ee0303cb6231d75
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH1/EX1.33/1Ex33.sce
45318111f3a7875bd6ea1a7278454d4276962fd7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
203
sce
1Ex33.sce
//chapter 1 Ex 33 clc; clear; close; //The given series is in geometric progression a1=2; a2=2^2; n=10; r=a2/a1; Sum=a1*(r^n-1)/(r-1); //formula for GP printf("The required sum is %d",Sum);
e94d89280aa849a0c35351fe383adbf9c7855627
6b778fe7ce057aaef2abb8bcf50d716047b597b0
/test/issue228.tst
6adc8a231336e0aa7bcbf84787152de4ca1572b9
[ "Apache-2.0" ]
permissive
grobian/carbon-c-relay
a9cfa93e51afca31df8fbb3f0115e4678e0502ca
741937387d08e877d3c28583a7c453c99bf506f1
refs/heads/master
2023-07-04T23:29:37.333774
2023-01-26T15:27:39
2023-01-26T15:27:39
15,357,351
368
132
Apache-2.0
2022-09-16T07:03:46
2013-12-21T10:33:29
C
UTF-8
Scilab
false
false
75
tst
issue228.tst
foo.bar this wrong foo.bar 42 42 foo.bar 4.2 4.2 blah 4.2 4.2 blah 42 42
a729a93457d4dc52bdcf16889db746a0bc434b4f
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH14/EX14.3/Ex14_3.sce
ff31e944addb6199377c6bea5e8c36bd3e198fe2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
687
sce
Ex14_3.sce
//Ex14_3 clc VREF=-10 disp("VREF= "+string(VREF)+" V") // Reference voltage RF=5*10^(3) disp("RF= "+string(RF)+ " ohm") //Feedback resistance R=10*10^(3) disp("R= "+string(R)+ " ohm") // resistance vLSB=(-RF*VREF)/(8*R)// Since IF=I/8,so vLSB=(-RF*IF)=(-RF*I/8)=(-RF*VREF/8*R) disp("vLSB=(-RF*VREF)/(8*R)="+string(vLSB)+" V") // Equivalent voltage for binary word 0001 vo=-2*vLSB// Since current IF=I/4 disp("vo = -2*vLSB ="+string(vo)+" V") // Equivalent voltage for binary word 0010=2 (in decimal) vo=-15*vLSB// Since current IF=I+(I/2)+(I/4)+(I/8)=(15*I/8),so vo=15*VLSB disp("vo= -15*vLSB ="+string(vo)+" V") // Equivalent voltage for binary word 0010=2 (in decimal)
02b3ee1523f53ba4781517bf5103f35d4cc398dc
ca1417111d678336ecbd04c8fd928a283a5165e6
/commandes.sce
774dcb43cab479dafcaa4f1427480aa331a2fd25
[]
no_license
Vayel/IMAG-TPLaTeX
3ddaf14eda8673de7125574ffa4a43b3b5ec9163
b565da1501169c8f6836d0b793f744e0037783f7
refs/heads/master
2021-01-10T15:25:43.030008
2015-11-19T11:31:29
2015-11-19T11:31:29
46,116,927
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,360
sce
commandes.sce
// Mini stage Scilab/LaTeX // Guyot - Lefoulon // Question 1 // help spec id = eye(3, 3) // ----------- // Question 2 // ----------- A = [ 1, 0, 3, 1 1, 2, 0, 1 0, 1, 3, 0 ] size(A) first_line = A(1,:) last_col = A(:,$) l2_c3 = A(2, 3) diago = diag(A) trian_sup = triu(A) trian_inf = tril(A) // ----------- // Question 3 // ----------- J = ones(10, 10) id = diag(diag(J)) id_sup = diag(diag(J, 1), 1) id_inf = diag(diag(J, -1), -1) d = id .* 2 d_sup = id_sup .* -1 C = d + d_sup + id_inf c = zeros(1, 10) c(1) = 2 c(2) = 1 r = zeros(1, 10) r(1) = 2 r(2) = -1 C = toeplitz(c, r) // ----------- // Question 4 // ----------- x = linspace(0, 2*%pi, 6) y = linspace(0, 2*%pi, 21) plot(x, sin(x), 'b', y, sin(y), 'r') xtitle('Graphe de la fonction sinus') legend('n = 6', 'n = 21') n = 50 x = linspace(0, 2*%pi, n) subplot(2, 2, 1) plot(x, sin(x)) xtitle('sin') x = linspace(-10, 10, n) subplot(2, 2, 2) plot(x, exp(x)) xtitle('exp') subplot(2, 2, 3) plot(x, x.^2 .* (x-1)) xtitle('x^2 * (x-1)') subplot(2, 2, 4) plot(x, (x+1)./(x.^2+1)) xtitle('(x+1)/(x^2+1)') // ----------- // Exercice 3 // ----------- // 1. function In = I(n) if n = 0 then In = exp(1) - 1 else In = exp(1) - n * I(n-1) end endfunction x = I(20) // 2. function In = Isum(n, m) In = 0 for k = 0:m In = In + 1/factorial(k) * 1/(1+k+n) end endfunction x = Isum(20, 1000) // ----------- // Exercice 4 // ----------- function I = rectangle(n) dx = 1/(n-1) x = 0:dx:1 y = x.^20 .* exp(x) I = 0 for i = 1:n I = I + dx * y(i) end endfunction I = rectangle(10000) // ----------- // Exercice 7 // ----------- // 2. function lambda = lambdak(mat, k) lambda = 0 n = size(mat(:,1))(1) for j = 1:n if j ~= k then lambda = lambda + abs(mat(k, j)) end end endfunction function [cx, cy, r] = dk(mat, k) a = mat(k, k) cx = real(a) cy = imag(a) r = lambdak(mat, k) endfunction function plot_dks(mat, st) [n, m] = size(mat) disp(n) a = linspace(0, 2*%pi, 100) for k = 1:n [cx, cy, r] = dk(mat, k) x = cx + r*cos(a) y = cy + r*sin(a) plot2d(x, y, style=st) end endfunction A = [ 1 + %i, %i, 2 3, 2 + %i, 1 1, %i, 6 ] clf; plot_dks(A, 10) // 3. [R, diagevals] = spec(A) diago = diag(diagevals) for k = 1:3 c = diago(k, 1) plot2d([real(c)], [imag(c)], style=-21) end
437e0b07085f823aa9e40270b3cedc6362a4eba6
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testgoodanim.sce
20310384ee03e6495424da80335784dbf9e25aa5
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
495
sce
testgoodanim.sce
clf; z=[0:0.01:2*%pi]; // to plot the trajectory for t=0:0.01:1 // loop to increment the time // compute the new position x=cos(2*%pi*t); // x-coordinate y=sin(2*%pi*t); // y-coordinate drawlater() clf; // parameterize the graphics window A=gca();A.data_bounds=[-1.2,-1.2;1.2,1.2];A.isoview="on"; plot(cos(z),sin(z),'-b') // trajectory in blue plot(x,y,'.r') // the red point advances drawnow() sleep(10) // to have enough time to see the figure end
2bde9c72e5f8555cba0bdcd4a2ebdd1f3c6f6b3f
449d555969bfd7befe906877abab098c6e63a0e8
/1673/CH5/EX5.5/5_5.sce
523f35dd9928303c7fc402460c0f6f5678677d13
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
275
sce
5_5.sce
//cubic spline //example 5.5 //page 191 clc;clear;close; x=[1 2 3]; y=[6 18 42]; m0=40; m1=(3*(y(3)-y(1))-m0)/4; X=poly(0,'X'); s1=m0*((x(2)-X)^2)*(X-x(1))-m1*((X-x(1))^2)*(x(2)-X)+y(1)*((x(2)-X)^2)*[2*(X-x(1))+1]+y(2)*((X-x(1))^2)*[2*(x(2)-X)+1]; disp(s1,'s1=');
af0420f84afb68c9d1b505ee0158654d1c56580e
7c8f8373b8f5e06d3ebe218c8485afadb95cf70f
/scilab/silnia.sci
05b7dd774441b212f734461b7c19f8330e5236fa
[]
no_license
invalidCorgi/polibuda
432b41e3ebbd169812017f0fd462b59f428b9516
4a4cd16efee42e010140bd991fbd5cf034955507
refs/heads/master
2021-09-24T11:50:05.097437
2018-10-09T11:12:10
2018-10-09T11:12:10
119,171,250
0
0
null
null
null
null
UTF-8
Scilab
false
false
176
sci
silnia.sci
function N = silnia(n) N=1 while (modulo(n,1)<>0) | (n<1) n=input("Podaj n:") end while(n>=2) N=N*n n=n-1 end endfunction
4555ed8e8d04597e59fc74117e5cba0cf1a44651
c67157a12058b6af9250654154c4cd14b7c0ece5
/Documents/Lagrange.sce
5154344415f825e6a4361fe4456bfb46f59108a2
[ "Apache-2.0" ]
permissive
PeterPirog/PRT_calculations
70c77dc52bb8f80ff952bd60e77578f9db88efb8
7e1e72173700fbfd624a67c7b6984256de878f42
refs/heads/master
2021-04-20T14:58:22.359411
2021-04-14T12:55:40
2021-04-14T12:55:40
249,693,308
0
0
null
null
null
null
UTF-8
Scilab
false
false
695
sce
Lagrange.sce
function y = lagrange_interp(x,data) for i = 1:length(x) y(i) = P(x(i),data); end endfunction function y = P(x,data) n = size(data,1); xi = data(:,1); yi = data(:,2); L = cprod_e(xi,x) ./ cprod_i(xi); y = yi' * L; endfunction function y = cprod_e(x,a) n = length(x); y(1) = prod(a-x(2:$)); for i = 2:n-1 y(i) = prod(a-x(1:i-1))*prod(a-x(i+1:$)); end y(n) = prod(a-x(1:$-1)); endfunction function y=cprod_i(x) n = length(x); y(1) = prod(x(1)-x(2:$)); for i = 2:n-1 y(i) = prod(x(i)-x(1:i-1))*prod(x(i)-x(i+1:$)); end y(n) = prod(x(n)-x(1:$-1)); endfunction
aa12dea154cf97ddd3829bfbc4a2debc56a5c3b0
449d555969bfd7befe906877abab098c6e63a0e8
/881/CH4/EX4.4/exa4_4.sce
fd67501b3e7e507c8057edd895f9dc0be2f885ea
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,102
sce
exa4_4.sce
clc; //Example 4.4 //Page no 128 Vc=10; //Vp m=1; Rl=10; m1=0.5; //(a) disp("(a)The carrier power is found by substituting into equation 4-18 (pgno 126): "); Pc=((Rl^2)/(2*Rl)); disp('W',Pc,"Pc = "); disp("The upper and lower sideband power is found by substituting into equation 4-21 (pgno 127):"); P=(((m^2)*Pc)/4); disp('W',P,"Pusb = Plsb = "); //(b) disp("(b)The total sideband power is "); Ps=(((m^2)*Pc)/2); disp('W',Ps,"Psbt = "); //(c) disp("(c)The total power in the modulated is found by substituting into equation 4-25 (pgno 127)"); Pt=(5*[1+(m^2)/2]); disp('W',Pt,"Pt = "); //(d) disp("(d)The carrier power is found by substituting into equation 4-18 "); Pc1=Pc; disp('W',Pc1,"Pc "); disp("The upper and lower sideband power is found by substituting into equation 4-21 (pgno 127):"); P1=(((m1^2)*Pc)/4); disp('W',P1,"Pusb = Plsb = "); disp("The total sideband power is "); Ps1=(((m1^2)*Pc)/2); disp('W',Ps1,"Psbt = "); disp("The total power in the modulated is found by substituting into equation 4-25 (pgno 127)"); Pt1=(5*[1+(m1^2)/2]); disp('W',Pt1,"Pt = ");