blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c13fb115ecfe22c47565ee260745c8bd53a6c9ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH6/EX6.26/Ex6_26.sce | c8b188180a5d909fb2bd228c3630d673330ee82f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 860 | sce | Ex6_26.sce | // chapter 6
// example 6.26
// fig. 6.72
// Determine overlap angles
// page-370-371
clear;
clc;
// given
Em=120; // in V
f=50; // supply frequency
L=0.33; // in mH
Id=4; // in A (load current)
alpha=15; // in degree (firing angle)
// calculate
L=L*1E-3; // changing unit from mH to H
// since Id=(Em/(2*%pi*f*L))*(1-cosd(u)) therefore we get
u1=acosd(1-Id*(2*%pi*f*L/Em)); // calclation of overlap angle for case I
u2=acosd(cosd(alpha)-Id*(2*%pi*f*L/Em))-alpha; // calclation of overlap angle for case II
printf("\nThe overlap angle for transfer of current from a conducting thyristor to the commutating diode is \t u1=%.3f degree",u1);
printf("\nThe overlap angle for transfer of current from the commutating diode to a thyristoris \t\t\t u2=%.3f degree",u2);
// Note: The answers for u1 and u2 vary slightly due to precise calculation upto 6 decimal digit |
221bcd9677fc44d0804bd9320563823f144d291a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH12/EX12.13/Ex12_13.sce | e0739980658098fee6a597d05aa105f304976426 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | sce | Ex12_13.sce | clc
//to show that for frequency <10^9 Hz ,a sample of silicon will act like a good conductor
sigma=200 //in mhos/m
omega=2*%pi*10^9
epsilon0=8.85*10^-12 //permittivity in free space
epsilon=12*epsilon0
sigma1=sigma/(omega*epsilon) //sigma1=sigma/(omega*epsilon)
disp("sigma1="+string(sigma1)+"unitless")
//if sigma/(omega*epsilon) is greater than 1 , silicon is a good conductor at frequency <10^9 Hz
//to calculate penetration depth
f=10^6 //frequency in Hz
muo=4*%pi*10^-7 //permeability of free space
sigma=200
del=sqrt(2/(2*%pi*f*muo*sigma))
disp("penetration depth is del="+string(del)+"m")
|
2441c57aebbea926bd4ae7f04f6377c0f544e022 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1967/CH18/EX18.4/18_4.sce | 8c42c802d84cdfd8c959eaed52d782d0b3fcd9eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 18_4.sce | clc
//initialisation of variables
clear
n1= 1 //mole
n2= 400 //mole
H1= 5638 //cal
H2= 23540 //cal
L= -1.54 //cal/mole
l1= -2.16 //cal/mole
l2= 5842 //cal/mole
//CALCULATIONS
Q1= n2*L+H1+H2
Q2= n2*l1+2*l2
Q= Q2-Q1
//RESULTS
printf ('Heat change = %.f cal',Q)
|
7256cca5fc7151d13e25a5baf5d189f1ffddf2ff | 0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8 | /klava/kernel/ntreelib/tests/002_join.tst | 1cbe2a11caefbbd4fc691840dc76013db98ee237 | [] | no_license | seth1002/antivirus-1 | 9dfbadc68e16e51f141ac8b3bb283c1d25792572 | 3752a3b20e1a8390f0889f6192ee6b851e99e8a4 | refs/heads/master | 2020-07-15T00:30:19.131934 | 2016-07-21T13:59:11 | 2016-07-21T13:59:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,456 | tst | 002_join.tst | # test: long (hashed) nodes
#
create "test.td"
autocheck on
clear
printf test0.tmp norm
# 001 ------------------
add 1 "'long signature must be folded to hashed node'"
printf test1.tmp norm
printf test2.tmp norm
compare 002_join_001.txt norm
del "'long signature must be folded to hashed node'"
compare test0.tmp norm
# 002 ------------------
add 1 "'0123456789ABCDEF'"
printf test1.tmp norm
printf test2.tmp norm
compare 002_join_002.txt norm
del "'0123456789ABCDEF'"
compare test0.tmp norm
# 003 ------------------
add 1 "'0123456789ABCDEF0'"
printf test1.tmp norm
printf test2.tmp norm
compare 002_join_003.txt norm
del "'0123456789ABCDEF0'"
compare test0.tmp norm
# 004 ------------------
# just below hashed threshold (should remain joined)
add 1 "'0123456789ABCDEF0123456'"
printf test1.tmp norm
printf test2.tmp norm
compare 002_join_004.txt norm
del "'0123456789ABCDEF0123456'"
compare test0.tmp norm
# 005 ------------------
# just above hashed threshold (should become hashed)
add 1 "'0123456789ABCDEF01234567'"
printf test1.tmp norm
compare 002_join_005.txt norm
del "'0123456789ABCDEF01234567'"
compare test0.tmp norm
# 006 ------------------
# extended above hashed threshold
add 1 "'0123456789ABCDEF0123456'"
printf test1.tmp norm
compare 002_join_004.txt norm
add 2 "'0123456789ABCDEF01234567890123'"
compare 002_join_006.txt norm
del "'0123456789ABCDEF0123456'"
del "'0123456789ABCDEF01234567890123'"
compare test0.tmp norm
# 007 ------------------
# short hashed node - stored as joined
add 1 "'0123456789ABCDEF01234567890123'"
printf test1.tmp norm
add 2 "'0123456789ABCDEF01234567890123456789'"
compare 002_join_007.txt norm
del "'0123456789ABCDEF01234567890123456789'"
del "'0123456789ABCDEF01234567890123'"
compare test0.tmp norm
# 008 ------------------
# long hashed nodes - converting to/from joined
add 1 "'0123456789ABCDEF01234567890123'"
printf test1.tmp norm
add 2 "'0123456789ABCDEF0123456789012345678901234567890123456789'"
printf test2.tmp norm
add 3 "'0123456789ABCDEF01234567890123456789'"
printf test3.tmp norm
add 4 "'0123456789ABCDEF0123456789012345678901234567890'"
printf test4.tmp norm
compare 002_join_008a.txt norm
del "'0123456789ABCDEF01234567890123'"
printf test5.tmp norm
del "'0123456789ABCDEF01234567890123456789'"
printf test6.tmp norm
del "'0123456789ABCDEF0123456789012345678901234567890'"
compare 002_join_008b.txt norm
del "'0123456789ABCDEF0123456789012345678901234567890123456789'"
compare test0.tmp norm
# 009 ------------------
# splitting node in two short, then merge into hashed
add 1 "'0123456789ABCDEF0123456789012345678901234567890123456789'"
printf test1.tmp norm
add 2 "'0123456789ABCDEF01234567890123456789'"
printf test2.tmp norm
add 3 "'0123456789ABCDEF012345678901234567890123'"
printf test3.tmp norm
add 4 "'0123456789ABCDEF012345678901234567890123456'"
printf test4.tmp norm
compare 002_join_009a.txt norm
del "'0123456789ABCDEF012345678901234567890123'"
printf test5.tmp norm
compare 002_join_009b.txt norm
del "'0123456789ABCDEF012345678901234567890123456'"
printf test6.tmp norm
compare 002_join_009c.txt norm
del "'0123456789ABCDEF01234567890123456789'"
compare test1.tmp norm
del "'0123456789ABCDEF0123456789012345678901234567890123456789'"
compare test0.tmp norm
|
8454c4f860d815fd6b1b5d86d861e1989cc2dd76 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH9/EX9.15/ch9_15.sci | 923ffce41d95a6a04b74756d5d391a3ec6af9135 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 951 | sci | ch9_15.sci | //to calculate the min resistance to be added and speed of the motor
clc;
V=400;
a=2.5;
X2=.4;
R2=0.08;
n_s=750;
w_s=2*%pi*n_s/60;
T=250;
//T=(3/w_s)*((V/sqrt(3))/a)*R2t/(R2t^2+X2^2);
//after solving
//R2t^2-1.304*R2t+0.16=0
function [x1,x2]=quad(a,b,c)
d=sqrt(b^2-4*a*c);
x1=(-b+d)/(2*a);
x2=(-b-d)/(2*a);
endfunction
[x1 x2]=quad(1,-1.304,0.16);
if(x1>x2)
R2t=x2;
else
R2t=x1
end
Rext=R2t-R2;
disp(Rext,'external resistance(ohm)');
//T=(3/w_s)*((V/sqrt(3))/a)*(R2t/s)/((R2t/s)^2+X2^2);
//after solving
//(R2t/s)^2-1.304*(R2t/s)+0.16=0
[x1 x2]=quad(1,-1.304,0.16);
s=x2/x1;
n=n_s*(1-s);
disp(n,'speed(rpm)');
//T=(3/w_s)*((V/sqrt(3))/a)*(R2/s)/((R2/s)^2+X2^2);
//after solving
//(R2/s)^2-1.304*(R2/s)+0.16=0
[x1 x2]=quad(1,-1.304,0.16);
R2=0.08;
s1=R2/x1;
s2=R2/x2;
if(s1>s2)
ss=s2;
else
ss=s1
end
n=n_s*(1-ss);
disp(n,'speed(rpm)');
|
efe01e6b6cd82c2dbd1e8ec6d48ad010428d3398 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2747/CH13/EX13.2/Ex13_2.sce | 57a94751eae44570b02de758b5bb780ed7c8ea36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 557 | sce | Ex13_2.sce |
clc
clear
//Initialization of variables
m1=5.28
m2=1.28
m3=23.52
//calculations
m=m1+m2+m3
x1=m1/m
x2=m2/m
x3=m3/m
C=12/44 *m1/ m
O=(32/44 *m1 + m2)/m
N=m3/m
sum1=(x1+x2+x3)*100
sum2=(C+N+O)*100
//results
printf("From gravimetric analysis, co2 = %.1f percent , o2 = %.1f percent and n2 = %.1f percent",x1*100,x2*100,x3*100)
printf("\n From ultimate analysis, co2 = %.2f percent , o2 = %.2f percent and n2 = %.2f percent",C*100,O*100,N*100)
printf("\n Sum in case 1 = %.1f percent",sum1)
printf("\n Sum in case 2 = %.1f percent",sum2)
|
38ca85b8ce9f2f6291c1789946bf87976390f5ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH6/EX6.2/Ex6_2.sce | ec90610d3e18724d716bda288b85d6b55c5c6a20 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | sce | Ex6_2.sce | // Variable Declaration
E_c = 100.0 //Safe working stress(kV/cm) rms
V = 130.0 //Operating voltage(kV) rms
d = 1.5 //Diameter of conductor(cm)
// Calculation Section
ln_D = 2*V/(E_c*d)+log(d)
D = exp(ln_D)
thick_1 = (D-d)/2 //Insulation thickness(cm)
d_2 = 2*V/E_c
D_2 = 2.718*d_2 //Sheath diameter(cm)
thick_2 = (D_2-d_2)/2 //Insulation thickness(cm)
// Result Section
printf('(i) Internal sheath radius = %.2f cm' ,thick_1)
printf('(ii) Internal sheath radius = %.2f cm' ,thick_2)
|
c4c44f747959edb914d6fd1a9369a63a2fb18f22 | 449d555969bfd7befe906877abab098c6e63a0e8 | /527/CH7/EX7.5/7_5exam.sce | 78e90d4922c7849dad80a404add393c9d82f0cfb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 883 | sce | 7_5exam.sce | //Engineering and Chemical Thermodynamics
//Example 7.5
//Page no :319
clear ; clc ;
//Given
P = 50 ; // [bar]
T = 25 + 273.2 ; //[K]
y_eth = 0.2 ;
y_pro = 0.8 ;
T_c_eth = 305.5 ; //[K],From Appendix A.1
T_c_pro = 370 ; //[K],From Appendix A.1
P_c_eth = 48.7 ; //[bar],From Appendix A.1
P_c_pro = 42.4 ; // [bar],From Appendix A.1
w_eth = 0.099 ;//From Appendix A.1
w_pro = 0.153 ;//From Appendix A.1
log_w_0 = -0.579 ;// By double liner interpolation
log_w_1 = -0.406 ;// By double liner interpolation
T_pc = y_eth * T_c_eth + y_pro * T_c_pro ;
P_pc = y_eth * P_c_eth + y_pro * P_c_pro ;
w_mix = y_eth * w_eth + y_pro * w_pro ;
Pr = P / P_pc ;
Tr = T /T_pc ;
X = log_w_0 + w_mix * log_w_1 ;
sai = 10^(X) ;
f = sai * P ;
disp(" Example: 7.5 Page no : 319") ;
printf("\n Fugacity co-efficient = %.2f\n\n Fugacity = %.1f bar",sai,f); |
620b90cc4175ee4181dbae2c11d518fc77c2b08b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2279/CH7/EX7.17/Ex7_17.sce | 7a9b0c45041e4c9f5e10eaa3df8c3c807162cef8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex7_17.sce | //Discrete Time Fourier Transform of discrete sequence
//x[n]= (a^n).u[-n], |a|>1
clear;
clc;
close;
a1 = 3;
min_limit = -20;
n = min_limit:0
for i=1:length(n)
x1(i) = (a1^n(i));
end
Wmax = 2*%pi;
K = 4;
k = 0:(K/1000):K;
W = k*Wmax/K;
x1 = x1';
XW1 = x1* exp(-sqrt(-1)*n'*W);
XW1_Mag = abs(XW1);
W = [-mtlb_fliplr(W), W(2:1001)]; // Omega from -Wmax to Wmax
XW1_Mag = [mtlb_fliplr(XW1_Mag), XW1_Mag(2:1001)];
[XW1_Phase,db] = phasemag(XW1);
XW1_Phase = [-mtlb_fliplr(XW1_Phase),XW1_Phase(2:1001)];
subplot(3,1,1);
plot2d3('gnn',n,x1);
xtitle('Discrete Time Sequence x[n]','n','x[n]')
subplot(3,1,2);
plot2d(W,XW1_Mag);
xtitle('Magnitude Response abs(X(jW))','w','|X(jW)|')
subplot(3,1,3);
plot2d(W,XW1_Phase);
xtitle('Phase Response <(X(jW))','w','<(X(jW))')
|
60481754b426e125989e749cbe367f1fbc53126d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1619/CH1/EX1.7.2/Example1_7_2.sce | f310c5dc659c88a87a22cdc4f477bdfd2f5ed470 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | Example1_7_2.sce | // Example 1.7.2 page 1.14
// To calculate the critical angel
clc;
clear;
n1= 1.50; // RI of glass..
n2 = 1; // RI of air...
// According to Snell's law...
// n1*sin(phi1)= n2*sin(phi2);
// From definition of critical angel phi2 = 90 degrees and phi1 will be critical angel
phiC=asind((n2/n1)*sin(%pi/2));
printf('The Critical angel is %.2f degrees',phiC);
|
027e2875243b2bb21c23254aaeb7180ccc7154af | c206e3f57b0a6f75bd1feefefecd29398746c358 | /scripts/aprende.sci | d4c4757ea7add98d4f3dbd7c43b72012231d2377 | [] | no_license | danielfcollier/scilab-image-processing-scripts | e092a7c1a6a0ade906c020218a9571290245e40f | 43d78cb06dc6c27ab8663f351e4c172d038280ce | refs/heads/main | 2023-04-12T20:05:52.840157 | 2021-04-27T18:56:06 | 2021-04-27T18:56:06 | 362,219,761 | 0 | 0 | null | null | null | null | ISO-8859-1 | Scilab | false | false | 746 | sci | aprende.sci | function aprende()
figura = "tools_treina.jpg";
O = gray_imread(figura);
[l c] = size(O);
O = round(255*O+1);
// L = localvar(O,ones(3,3));
// limiarizacao
A = 1*( O < otsu_im(O) );
if( sum(A) > ( l*c/1.5) )
A = 1 - A;
end
// segmentação
M1 = ones(3,3);
M2 = ones(7,7);
A = erode( dilate(A,M2),M1 );
A = dilate( erode(A,M1),M2 );
// preenchimento
A = deleta_bit(A,0);
[Al, n] = bwlabel(A,4);
Alb = Al.*bwborder(A,8);
if(n~=5)
error("problema nos objetos");
end
// calculo dos descritores
for i=1:n
ob_i = find(Al==i);
compac(i) = (length(find(Alb==i))^2)/length(ob_i);
var(i) = variance(O(ob_i));
med(i) = mean(O(ob_i));
end
save('val_descritores.dat',compac,var,med);
endfunction
|
061238af740e6053d3b19ed6c1118739d348c2f2 | 503a589f3c10f1a86c73815e1b25555498209a44 | /singal-processing/singalProcessing.sce | a19dfa9836a1c0031cce01a7959a1db89dfbe222 | [
"MIT"
] | permissive | himanshuMaheshwari2311/Image-Processing-Lab | fb75354a2fa2ebe9329724904e3bb4b7db5a7144 | 4b2ac6b8d93ab807d3487072085080d6f9ce65f0 | refs/heads/master | 2022-04-13T19:36:45.646594 | 2020-04-15T16:47:39 | 2020-04-15T16:47:39 | 253,865,202 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,905 | sce | singalProcessing.sce | //utility function
function [x] = multiply(a, b)
for i = 1:201
x(i) = a(i) * b(i);
end
endfunction
t =0:0.1:20;
unit_step = ones(1, 201)
ramp = 0.1 * t; //k = 0.1
expo1 = exp(0.2 * t) //a = 0.2
expo2 = exp(-0.2 * t) //a = -0.2
sint = sin(t);
cost = cos(t);
/*
subplot(3, 1, 1);
plot(t, unit_step);
xlabel("t", "fontsize", 2);
ylabel("u(t)", "fontsize", 2);
legend("unit step function");
subplot(3, 1, 2);
plot(t, sint, t, cost);
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("sin(t)", "cos(t)");
subplot(3, 1, 3);
plot(t, expo2, t, expo1);
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("e^(at)", "e^(-at)");
*/
/*
plot(t, multiply(ramp, sint)', t, multiply(ramp, cost)', t, multiply(sint, cost)');
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("r(t) * sin(t)", "r(t) * cos(t)", "sin(t) * cos(t)");
*/
/*
plot(t, multiply(expo1, sint)', t, multiply(expo1, cost)', t, multiply(sint, cost)');
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("e^(at) * sin(t)", "e^(at) * cos(t)", "sin(t) * cos(t)");
*/
/*
plot(t, ramp+sint, t, ramp+cost, t, sint+cost);
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("r(t) + sin(t)", "r(t) + cos(t)", "sin(t) + cos(t)");
*/
/*
plot(t, expo2+sint, t, expo2+cost, t, sint+cost);
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("e^(-at) + sin(t)", "e^(-at) + cos(t), sin(t) + cos(t)");
*/
/*
plot(t, multiply(expo1, ramp), t, expo1-ramp, t, expo1+ramp);
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("e^(at) * r(t)", "e^(at) - r(t)", "e^(at) + r(t)");
*/
/*
plot(t, sint+cost+ramp, t, sint-cost+ramp, t, multiply(sint, cost));
xlabel("t", "fontsize", 2);
ylabel("x(t)", "fontsize", 2);
legend("r(t) + sin(t) + cos(t)", "sin(t) - cos(t) + r(t)", "sin(t) * cos(t)");
*/
|
37b00882432798cd761bbffc01bbe81359033ba2 | 037362195179268c71b89f6485fb796c82311d07 | /Native Scilab Algorithms/demos/linear_regression.sce | 91037e0c27bb9703a256f1c83a8f9cea066cae41 | [] | no_license | SoumitraAgarwal/machine-learning-Toolbox-SCILAB | 34a6884fd0138548955e836836181df0c8169ab1 | ef4dc44a9676a2b63e8c8fa0ce7c0452a98b44fa | refs/heads/master | 2020-03-15T03:59:52.960122 | 2017-08-28T16:36:20 | 2017-08-28T16:36:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 799 | sce | linear_regression.sce |
function linear_regression(data)
t1= t(:,1);
t2= t(:,2);
clf(0);scf(0);
plot(t1,t2,'bx');
x = t1; y = t2;
[m, n] = size(x);
// Add intercept term to x
x = [ones(m, 1) x];
// Initialize fitting parameters
theta = zeros(n + 1, 1);
// Learning rate and number of iterations
a = 0.01;
n_iter = 10000;
for iter = 1:n_iter do
theta = theta - a * (x' *(x*theta-y)) / m;
J(iter) = 1/(2*m) * sum((x*theta -y).^2)
end
disp(theta)
clf(1);scf(1);
plot(t1,t2,'rx');
plot(x(:,2), x*theta, '-')
//cost function plot to check convergence
clf(2);scf(2);
plot(1:n_iter, J');
xtitle('Convergence','Iterations','Cost');
endfunction
//demo for the above feature
data=csvRead("random_linear.csv");
linear_regression(data);
|
2e109c7f0d6eca250ca71316901c596f8bc81ab3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /40/CH8/EX8.16/Exa_8_16.sce | e26b99b6f50aa1855c7ec826858e62b9e9e19250 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 295 | sce | Exa_8_16.sce | //signal interpolation using FFT
xn=[0 1 0 -1];
XDFT=fft(xn,-1)
ZT=[0 -2*%i 0 zeros(1:27) 0 2*%i];
xn1=fft(ZT,1);
t=0:1/length(xn1):1-(1/length(xn1));
a=gca();
a.x_location="origin";
plot2d(t,xn1);
xlabel('time t');
ylabel('Amplitude');
xtitle('Interpolated Sinusoid:4 samples over one period'); |
5aebcc89ec207627363bd1d9392b2b85790b385f | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH1/EX1.21/1_21.sce | 56f1a1486d1ef7e062afc7b88014d5d964c3f9d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | 1_21.sce | //Eg No. 1.21
//Pg No. 43
clc ;
clear ;
close ;
printf('did not have a scilab analogy for the c++ code, for details go the page no. 43') |
bdb6e411f24ebdded2081b9e6017ad4538aaa949 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH7/EX7.6/Ex7_6.sce | 899229b02c2ddf6d8a3d4c2a457874d23d1f5d95 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,398 | sce | Ex7_6.sce | // Scilab Code Ex7.6: Page-378 (2008)
clc; clear;
// For first set (3, 2, 2)
m = 3; n = 2; p = 2; // Coefficients of intercepts along three axes
m_inv = 1/m; // Reciprocate the first coefficient
n_inv = 1/n; // Reciprocate the second coefficient
p_inv = 1/p; // Reciprocate the third coefficient
mul_fact = double(lcm(int32([m,n,p]))); // Find l.c.m. of m,n and p
m1 = m_inv*mul_fact; // Clear the first fraction
m2 = n_inv*mul_fact; // Clear the second fraction
m3 = p_inv*mul_fact; // Clear the third fraction
printf("\nThe plane (%d %d %d) has intercepts %da, %db and %dc on the three axes.", m, n, p, m1, m2, m3);
// For second set (1 1 1)
m = 1; n = 1; p = 1; // Coefficients of intercepts along three axes
m_inv = 1/m; // Reciprocate the first coefficient
n_inv = 1/n; // Reciprocate the second coefficient
p_inv = 1/p; // Reciprocate the third coefficient
mul_fact = double(lcm(int32([m,n,p]))); // Find l.c.m. of m,n and p
m1 = m_inv*mul_fact; // Clear the first fraction
m2 = n_inv*mul_fact; // Clear the second fraction
m3 = p_inv*mul_fact; // Clear the third fraction
printf("\nThe plane (%d %d %d) has intercepts a, b and c on the three axes.", m, n, p);
// Result
// The plane (3 2 2) has intercepts 2a, 3b and 3c on the three axes.
// The plane (1 1 1) has intercepts a, b and c on the three axes. |
f34090a4c9c88b485a359c6629570e4221e2aad4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH7/EX7.2/Ex7_2.sce | 2ac2d8b63d1b103a5b5df21352b03789596b95b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | Ex7_2.sce | //Example 7-2, Page no - 222
clear
clc
N = 14
discrete_levels = 2^N
num_vltg_inc =2^N-1
resolution = 12/discrete_levels
printf('The numbedr of discrete levels that are represented \n using N number of bits are %d',discrete_levels)
printf('\n the number odf voltage increments required to divide \n the voltage range are %d',num_vltg_inc)
printf('\n Resolution of the digitization %.1f microvolt',resolution*10^6)
|
14d8d4a5fc86ecc78eafee5e0a112dc4a4052e3c | fc97dca636256fc30f018840e244a173c06ec54b | /hard/tests/functionNegation.tst | 9db62d0ed06de74eaf944279e3530cbfa9a2d094 | [
"MIT"
] | permissive | tuomasb/compiler | 23fd2190bc6911380a5acf45241c1f2b2580538f | aa366ace6f2c29b5e0080faf8c50dcb7be0b02f4 | refs/heads/master | 2020-05-17T21:51:17.977674 | 2014-06-09T00:24:17 | 2014-06-09T00:24:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 103 | tst | functionNegation.tst | int complement(int number) {
return 0 - number;
}
main {
print(complement(4));
return 0 - 4;
}
|
810ff2553c0a770de4fe26935c38e3cf53b2d254 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH8/EX8.3/Ex8_3.sce | cec110aebee90720c88cc14f1e29f5b9485ec517 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,470 | sce | Ex8_3.sce | clear all; clc;
disp("Use the velocity diagram shown in figure 8.2 or 8.4")
disp("We have Vatanß2=Vatanα2-Um")
disp("Or tanß2=tanα2-Um/Va")
tanbeta2=tan(75*%pi/180)-1200/500
printf(" Thus tanß2= %0.2f",tanbeta2)
beta2=((atan(tanbeta2))*180/%pi)
printf("\n Thus ß2= %0.2f",beta2)
disp("Also Vatanß3=Vatanα3+Um")
disp("tanß3=tanα3+Um/Va")
tanbeta3=tan(10*%pi/180)+1200/500
printf(" tanß3= %0.2f",tanbeta3)
beta3=((atan(tanbeta3))*180/%pi)
printf("\n ß3= %0.2f",beta3)
disp("From Cp*deltaT0s=deltaE=Um(Vu2+Vu3)=UmVa(tanα2+tanα3)")
deltaE=1200*500*(tan(75*%pi/180)+tan(10*%pi/180))
printf(" Thus Cp*deltaT0s=deltaE= %g=2.34*10^6 ((ft/s)^2)",deltaE)
deltaT0s=(2.34*(10^6))/(0.24*778*32.2)
disp("deltaT0s=(2.34*(10^6))/(0.24*778*32.2)")
printf(" Thus deltaT0s= %0.2f R which is rounded off to 890R",deltaT0s)
disp("Hence neglecting leakage and mechanical losses , we have shaft power output Ps=mCpdeltaT0s")
Ps=50*2.34*(10^6)/(32.2*550)
printf("\n Hence we have Ps= %0.2f hp wich is rounded off to 6607hp",Ps)
disp("The degree of reaction at the mean radius can be determined from equation 8.5A")
R=(500/(2*1200))*(tan(68.8*%pi/180)-tan(53.1*%pi/180))
printf("\n Thus R = %0.3f",R)
disp("To determine the radii the flow area A2 can be determined from m=rho2*A2*Va. The density rho2 can be determined from p2 and T2 which can be caalculated as follows.")
disp("From Cp*T02=CpT2+V2^2/2 and V2= VA/cosα2")
V2=500/(cos(75*%pi/180))
printf("\n V2= %0.0f ft/s",V2)
T2=2000-(1932^2)/(2*0.24*778*32.2)
printf("\n Thus we have T2= %0.0f degrees Farenheit = 2150R",T2)
disp("From the definition of loss coefficient εe we have Ts2=T2-εsV2^2/(2*Cp)")
Ts2=1690-(0.08*(1932^2))/(2*.24*778*32.2)
printf("\n Ts2= %0.2f degrees Farenheit which is equal to 2125.2R",Ts2)
//Let x= P2/p01
x=(2125.2/2460)^(1.4/0.4)
printf("\n and P2/p01= %0.2f",x)
P2=200*0.60
printf("\n P2= %0.0f psia",P2)
disp("Hence the density can be calculated as rho2=p2/(R*T2)")
rho2=120*144/(53.3*2150)
printf("\n Thus ro2=%0.3f lbm/ft^3",rho2)
A2=50/(0.151*500)
printf("\n A2=m/(rho2*Va)=%0.3f ft^2",A2)
//let y=rt^2-rh^2
y=0.662/%pi
printf("\n rt^2-rh^2=A2/pi=%0.3f",y)
rm=30*1200/(8000*%pi)
printf(" and rm= %0.2f ft",rm)
disp("rt^2+rh^2=2*rm^2=4.09ft^2")
disp("and 1.466ft,rh=1.393ft")
rt=1.466
rh=1.393
b=rt-rh
printf(" b= %0.3f ft=0.88in",b)
|
de351d8fc4361d04da1f3f346a8c9d78ce0333ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1541/CH2/EX2.30/Chapter2_Example30.sce | d800c1fa88ad3c09dd3bfdfd01d0056b9c233bc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 737 | sce | Chapter2_Example30.sce | //Chapter-2, Example 2.30, Page 2.57
//=============================================================================
clc
clear
//INPUT DATA
V1=250;//Primary voltage in V
V2=100;//Secondary voltage in V
I1=0.4;//Primary current in A
Wo=36;//No load power input in W
//CALCULATIONS
K=(V2/V1);//Voltage transformation ratio
q=acosd(Wo/(V1*I1));//Phase angle in degree
Im=(I1*sind(q));//Magnetising current in A
Iw=(I1*cosd(q));//Working current in A
I=(I1*V1*cosd(q));//Iron loss in W
//OUTPUT
mprintf('(a)Turns ratio is %3.1f \n(b)Magnetising current is %3.3f A \n(c)Working current is %3.3f A \n(d)Iron loss is %3.0f W',K,Im,Iw,I)
//=================================END OF PROGRAM==============================
|
2589a838198362152e2235ddaebc4830164523b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH2/EX2.19/Ex2_19.sce | aa0e60d7d86ff5c7331448c3d39276f1f27afc33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | Ex2_19.sce | //Finding resistance
//Example 2.19(pg. 33)
clc
clear
R1=18.6//resistacne in ohms
Kl=5//since l2=5*l1
Ka=3// since a2=3*a1
R2=R1*Kl/Ka
// resistivity is same because wires are of same material
printf('Thus the resistance of another conductor is %3.1f ohms',R2)
|
af63ce64b7c5628267e575acdcd85428ea528aac | e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432 | /Semana_9/a2senocoseno.sce | 392e8fc11f4bd0cbf0ed805ac9d4882d9f36dce3 | [] | no_license | lordjuacs/MateIII | 70def332063e56eb10fb47678a7e6130dc0dca63 | 164c53b61c9e35e565121f77ba2c578680a3ab56 | refs/heads/master | 2021-05-24T15:56:01.078904 | 2020-07-27T19:57:34 | 2020-07-27T19:57:34 | 253,643,962 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | a2senocoseno.sce | clc
A = [1 0 1; 1/2 sqrt(3)/2 1; -1/2 sqrt(3)/2 1; 1 0 1; -1/2 -sqrt(3)/2 1; 1/2 -sqrt(3)/2 1]
y = [1 1.6 1.4 0.6 0.2 0.8]'
disp(A, "A")
disp(y, "y")
[Q R] = qr(A)
R = R(1:3,:)
Q = Q(:,1:3)
disp(Q, "Q")
disp(R, "R")
c = inv(R)*Q'*y
disp(c,"c")
|
62f1066a3182db95669142accaa25cc008118b4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH6/EX6.13/Ex6_13.sce | 801f4a7f210fb34999edded08c278750b976aa96 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 933 | sce | Ex6_13.sce | // Example 6.13
clear all;
clc;
// Using the data given in the problem 6.12
rdist = 25.4; // Distance between the rods in cm
a = 1.02; // Radius of the rod in cm
b = rdist/sqrt(%pi); // Radius of equivalent cell
V = (b^2-a^2)/a^2; // Ratio of volumes of moderator to fuel
// Using the data from Table II.3 for Uranium-238 density and atom density
rho = 19.1; // Uranium-238 density in g/cm^3
N_F = 0.0483; // Atom density in terms of 10^(24)
// Using Table 6.5 for Uranium-238
A = 2.8;
C = 38.3;
// Using Table 6.6 for graphite
// Let zeta_M*SIGMA_sM = s
s = 0.0608;
I = A+C/sqrt(a*rho); // Empirical expression of resonance integral parameter
// Calculation
p = exp(-(N_F*I)/(s*V));
// Result
printf("\n Resonance escape probability = %.4f \n",p);
|
3d15c2d6f2a3aa9ab36b0cf13eafba454b386362 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH12/EX12.32/example12_32.sce | 5d439621babc4b1f1c35a07818ae7eeb0f7c0038 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 477 | sce | example12_32.sce | clc
// Given that
f = 60 // operating frequency in Hz
d = 1.6 // diameter in meter
B = 0.5 // magnetic field at the orbit in tesla
e = 1.6e-19 // charge on an electron in Coulomb
// Sample Problem 32 on page no. 12.44
printf("\n # PROBLEM 32 # \n")
printf(" Standard formula used \n")
printf(" E_ = 3e8 * r * B / 1e6 \n")
r = d / 2
w = 2 * %pi * f
E = 4 * e * w * r^2 * B
E_ = 3e8 * r * B / 1e6
printf("\n Energy gained per turn is %f eV.\n Final energy is %d MeV.",E / e,E_)
|
ff7b2e1ddd7c22e02f350f90a58b70870e946bf0 | 9075eb7fae04907e48cd0a730255fdc9b69071f9 | /sci/FFT_Mat.sce | 8a48d1eb7b2be994e4a39c457aee321831aabd63 | [] | no_license | philippematthieu/GolfBall | 2173288fd434cc2abf5ee277fa584757fc172ebf | fe75825b89187dc68e78fe8d60c1a9f5596db075 | refs/heads/master | 2021-07-25T22:54:22.866727 | 2020-12-16T10:06:40 | 2020-12-16T10:06:40 | 66,164,790 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 87,957 | sce | FFT_Mat.sce | // Copyright (C) 2016 - Corporation - Author
//
// About your license if you have any
//
// Date of creation: 26 oct. 2016
//
//// Copyright (C) 2016 - Corporation - Author
////
//// About your license if you have any
////
//// Date of creation: 10 oct. 2016
//// Anntenne SMA
//chdir('D:\Golf\portaudio_0.2\portaudio_0.2');
//exec('D:\Golf\portaudio_0.2\portaudio_0.2\loader.sce',-1)
//chdir('D:\Golf\stftb\');
//exec('D:\Golf\stftb\loader.sce',-1)
chdir('C:\Users\F009770\Documents\Golf\Radar');
//stacksize('max');
/////////////////////////////////////////////////////////////////
function phase = angle(A)
phase = atan(imag(A),real(A))
endfunction;
////////////////////////////////////////////////////////////////////
function [s2Centre, s2f,MaxFreq] = plotFFT(s2,Fs)
//[wft,wfm,fr]=wfir('bp',48,[1000/22050 5000/22050],'hm',[-1 -1]);
[wft,wfm,fr] = wfir('bp',64,[0.03 0.11],'hm',[-1 -1]);
N=size(s2,'c'); // definition du nombre d'échantillons
tau = 1 / Fs; // interval temporel de l'echantillonnage
t = (0:N - 1) * tau; // construction du vecteur temps
w = 6000*%pi/180;
//s2 = sin(w*t).*sin(w/3*t);
s2Centre = s2 - mean(s2); // recentrage du signal autour de l'axe abscice.
//s2Centre(abs(s2Centre)<0.0012)=0; // filtrage bourin pour supprimer les valeurs faibles
//s2=s2(1:9000)=0;
f=Fs*(0:(N)-1)/N;
[s2f zf] = filter(wft,1,s2Centre); // filtrage du signal par le filtre passe bande
//densite spectrale
s2_fft = (fft(s2Centre));
s2f_fft = fft(s2f);
conjuguee_s2 = conj(s2_fft);
conjuguee_s2f = conj(s2f_fft);
s2_densite = s2_fft.*conjuguee_s2;
s2f_densite = s2f_fft.*conjuguee_s2f;
s2f_densite_real = abs(real(s2f_densite));
n=50;
s2f_densite_real_moy = filter(ones(1,n),n,s2f_densite_real);
s2_densite_real = abs(real(s2_densite));
n=50;
s2_densite_real_moy = filter(ones(1,n),n,s2_densite_real); //
s2_fft_real = abs(real(s2_fft));
s2f_fft_real = abs(real(s2f_fft));
[m,n]=max(s2f_fft_real(2:$/2));
a = f(2:$/2);
MaxFreq = a(n);
//s2_densite(1,$/2+1:$) = [];
figure();title(' signal');plot2d(t,s2Centre);
figure();title(' fft complète');plot2d(f(2:$/2),s2_fft_real(2:$/2));plot2d(fr*Fs,wfm);
figure();title(' fft filtrée');plot2d(f(2:$/2),s2f_fft_real(2:$/2));plot2d(fr*Fs,wfm);
figure();title(' densite complète');plot2d(f(2:$/2),s2_densite(2:$/2));plot2d(fr*Fs,wfm);
figure();title(' densite filtrée');plot2d(f(2:$/2),s2f_densite(2:$/2));plot2d(fr*Fs,wfm);
figure();title(' densite filtrée moyenne');plot2d(f(2:$/2),s2f_densite_real_moy(2:$/2));plot2d(fr*Fs,wfm);
figure();title(' densite moyenne');plot2d(f(2:$/2),s2_densite_real_moy(2:$/2));plot2d(fr*Fs,wfm);
//title(a_tl,"Signal Filtré");plot(a_tl,t,s2f);
//title(a_bl,"FFT Filtrée");plot(a_bl,f(2:$/2),s2f_fft(2:$/2));
s2_densite = s2_densite(2:$/2);
endfunction
//////////////////////// Fin de plotFFT() //////////////////////////////
/////////////////////////////////////////////////////////////////////////
// Tracking ball
function TrackingBall()
n = aviopen('red-car-video.avi');
im = avireadframe(n); //get a frame
obj_win = camshift(im, [12, 6, 15, 13]); //initialize tracker
while ~isempty(im),
obj_win = camshift(im); //camshift tracking
obj_win
im = rectangle(im, obj_win, [0,255,0]);
imshow(im);
im = avireadframe(n);
end;
aviclose(n);
endfunction;
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//%% fenetre de Hanning
function H=hanning(N)
t=[1:N];
H=0.5-0.5*cos(2*%pi*t/N);
endfunction
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function wrpm = Freq2RpmSpin(RadarFreq)
//wrpm = RadarFreq * 60 * 3.6 /(%pi*0.043 * 19.49);//v = 2πr × RPM × (60/1000) km/hr
wrpm = RadarFreq*60/(2*%pi*0.021335*19.49*3.6);
endfunction
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function RadarFreq = RpmSpin2Freq(wrpm)
//RadarFreq = wrpm /( 60 * 3.6 /(%pi*0.043 * 19.49));
RadarFreq = wrpm * 2*%pi*0.021335*19.49*3.6/60;
endfunction
function [tt,f,M1] = animFFT(s2,Fs,nbEchantillon,pas,anim,seuil)
N = size(s2,2);
tau = 1 / Fs; // interval temporel de l'echantillonnage
t = (0:N - 1) * tau; // construction du vecteur temps
f=Fs*(0:(nbEchantillon)-1)/nbEchantillon;
s2Centre = s2;// - mean(s2); // recentrage du signal autour de l'axe abscice.
b=modulo(N,nbEchantillon);
s2Centre=[s2Centre, zeros(nbEchantillon - b,1)'];
if (anim > 0) then
figure();
subplot(2,1,1);
a = gca();
a.auto_clear = "off";
plot(t,s2);
subplot(2,1,2);
a = gca();
a.auto_clear = "on";
s2max = max(s2);
subplot(2,1,1);
plot([0 0],[0 s2max],'r');
e = gce();
end;
M1=[];tt=[];
for ii=1:pas:(size(s2Centre,2) - nbEchantillon),
if (anim > 1) then
drawlater();
delete(e);
subplot(2,1,1);
plot([t(ii) t(ii)],[0 s2max],'r');
e = gce();
end;
//densite spectrale
s2_fft = (fft(s2Centre(1,ii:ii + nbEchantillon)));
if max(real(s2_fft)) < seuil then
s2_densite = zeros(s2_fft);
else
s2_densite = abs(real(s2_fft));
//s2_densite = s2_densite/max(s2_densite);
end;
tt = [tt;t(ii)];
M1 = [M1;s2_densite];
if (anim > 1) then
subplot(2,1,2);
plot(f(1:$/2),s2_densite(1,1:$/2));
drawnow();
end;
end;
M1 = M1(:,1:$/2);
f= f(1:$/2);
if (anim > 0) then
subplot(2,1,2);
xset("colormap",jetcolormap(64));
Sgrayplot(tt,f,M1);
end;
endfunction
function y = fftpadding(x)
//y = fft([x zeros(size(x,2)-1)]);
y = fft([x zeros(2-1)]);
endfunction
function w1 = padding(w,N)
//w=window('re',N);
P = length(w);
w1 = [zeros(1,N*P)];
//w1(1:N/2) = w(1:N/2);
//w1(P*N:-1:P*N-N/2+1) = w(N:-1:N/2+1);
w1(1:N:$) = w;
endfunction
function w1 = padding2(w)
P = length(w);
w1 = [zeros(1,2*P-1)];
w1(1:2:$) = w;
w1= [w1 zeros(1,(ceil(size(w1,2)/32)-size(w1,2)/32)*32)];
endfunction
function w1 = padding3(w)
w2 = (w(1:$-1) + w(2:$))/2;
P = length(w);
w1 = [zeros(1,2*P-1)];
w1(1:2:$) = w;
w1(2:2:$) = w2;
[w1 zeros(1,(ceil(size(w1,2)/32)-size(w1,2)/32)*32)];
endfunction
function [fftFiltree, f1] = FftFiltree(x, Fs, FreqMin, FreqMax, fType)
if (fType == 0),
[wft,wfm,fr] = wfir('bp',64,[FreqMin/Fs FreqMax/Fs ],'re',[-1 -1]);
fftFiltree = real(abs(fftpadding(filter(wft,1,x))));
f1 = Fs*(0:(size(fftFiltree,2))-1)/size(fftFiltree,2);
else
ll = find(((f1) <= FreqMin) | ((f1) >= FreqMax));// Filtrage bourin par suppression de valeur
fftFiltree(ll) = fftFiltree(ll)/20;
f1 = Fs*(0:(size(fftFiltree,2))-1)/size(fftFiltree,2);
end;
endfunction
function xdensite = DensiteSpec(x)
xfft = real(abs(fft(x)));
xdensite = abs(real(xfft.*conj(xfft)));
xdensite = xdensite(1:$/2);
endfunction
function [densiteFiltree, f1] = DensiteFiltree(x, Fs, FreqMin, FreqMax, fType)
[fftFiltree, f1] = FftFiltree(x, Fs, FreqMin, FreqMax, fType)
densiteFiltree = abs(real(fftFiltree.*conj(fftFiltree)));
endfunction
function [M1, tt, f] = animDensite(s2,Fs,nbEchantillon,pas,anim,seuil1,normalize)
N = size(s2,2);
tau = 1 / Fs; // interval temporel de l'echantillonnage
t = (0:N - 1) * tau; // construction du vecteur temps
f=Fs*(0:(nbEchantillon)-1)/nbEchantillon;
s2Centre = s2 - mean(s2); // recentrage du signal autour de l'axe abscice.
//=modulo(N,nbEchantillon);
//s2Centre=[s2Centre, zeros(nbEchantillon - b,1)'];// s2Centre=[s2Centre, zeros(2*(nbEchantillon - b),1)'];
if (anim > 0) then
figure();
subplot(2,1,1);
a = gca();
a.auto_clear = "off";
plot(t,s2);
//[enveloppe,time] = Enveloppe(s2, Fs,1300, 6000);
//plot(t,enveloppe/max(enveloppe));
subplot(2,1,2);
a = gca();
a.auto_clear = "on";
s2max = max(s2);
subplot(2,1,1);
plot([0 0],[0 s2max],'r');
e = gce();
end;
M1=[];tt=[];
for ii=1:pas:(size(s2Centre,2) - nbEchantillon),
if (anim > 1) then
drawlater();
delete(e);
subplot(2,1,1);
plot([t(ii) t(ii)],[0 s2max],'r');
e = gce();
end;
//densite spectrale
s2CentreBW =s2Centre(1,ii:ii + nbEchantillon);// BARTLETT WELCH
s2CentreBW = s2CentreBW.*window('hn',length(s2CentreBW));// BARTLETT WELCH
s2_fft = (fftpadding(s2CentreBW));
// a = find(dbv(real(s2_fft)) < seuil);
// s2_fft(a) = 0;
// if max(dbv(real(s2_fft))) < seuil then
// s2_densite = zeros(s2_fft);
// else
s2_densite = abs(real(s2_fft.*conj(s2_fft)));//abs(real(s2_fft.*conj(s2_fft)));
//s2_densite = s2_densite .* s2_densite;
a = find(dbv(real(s2_densite)) < seuil1);
s2_densite(a) = 0;
//a = find(dbv(real(s2_densite)) > seuil2);
//s2_densite(a) = 0;
if (normalize == 0) then
s2_densite = s2_densite;
else
if (max(s2_densite) == 0) then s2_densite = zeros(s2_densite);
else s2_densite = s2_densite/max(s2_densite);
end;
end;
// end;
tt = [tt;t(ii)];
M1 = [M1;s2_densite];
if (anim > 1) then
subplot(2,1,2);
plot(f(1:$/2),s2_densite(1,1:$/2-1));
drawnow();
end;
end;
M1 = M1(:,1:$/2);
f= f(1:$/2);
if (anim > 0) then
subplot(2,1,2);
xset("colormap",jetcolormap(64));
Sgrayplot(tt,f/19.49,M1(:,1:$-1)/19.49);
end;
endfunction
function [M1, tt, f] = animDensite2(s2,Fs,nbEchantillon,pas,anim,seuil1,normalize)
N = size(s2,2);
tau = 1 / Fs; // interval temporel de l'echantillonnage
t = (0:N - 1) * tau; // construction du vecteur temps
f=Fs*(0:(nbEchantillon)-1)/nbEchantillon;
s2Centre = s2 - mean(s2); // recentrage du signal autour de l'axe abscice.
M1=[];
tt=[];
for ii=1:pas:(size(s2Centre,2) - nbEchantillon),
s2CentreBW =s2Centre(1,ii:ii + nbEchantillon);// BARTLETT WELCH
s2CentreBW = s2CentreBW.*window('hn',length(s2CentreBW));// BARTLETT WELCH
[s2_densite,F]=frpowerspec(s2CentreBW+0*%i);
s2_densite = dbv(real(s2_densite));
a = find(s2_densite) < seuil1;
s2_densite(a) = -1000;
if (normalize == 0) then
s2_densite = s2_densite;
else
if (max(s2_densite) == 0) then
s2_densite = zeros(s2_densite);
else
s2_densite = s2_densite/max(s2_densite);
end;
end;
tt = [tt;t(ii)];
M1 = [M1; s2_densite'];
end;//Fin For
M1 = M1(:,$/2:$-1);
f= f(1:$/2);
if (anim > 0) then
//subplot(2,1,2);
figure();
xset("colormap",jetcolormap(64));
Sgrayplot(tt,f/19.49,M1(:,1:$)/19.49);
end;
endfunction
function [M1, tt, f] = animDensite3(s2,Fs,nbEchantillon,pas,anim,seuil1,normalize)
N = size(s2,2);
tau = 1 / Fs; // interval temporel de l'echantillonnage
t = (0:N - 1) * tau; // construction du vecteur temps
f=Fs*(0:(nbEchantillon)-1)/nbEchantillon;
s2Centre = s2 - mean(s2); // recentrage du signal autour de l'axe abscice.
M1=[];
tt=[];
for ii=1:pas:(size(s2Centre,2) - nbEchantillon),
s2CentreBW =s2Centre(1,ii:ii + nbEchantillon);// BARTLETT WELCH
s2CentreBW = s2CentreBW.*window('hn',length(s2CentreBW));// BARTLETT WELCH
[s2_densite,F]=frpowerspec(s2CentreBW+0*%i);
s2_densite = (real(s2_densite));
a = find(s2_densite) < seuil1;
s2_densite(a) = -1000;
if (normalize == 0) then
s2_densite = s2_densite;
else
if (max(s2_densite) == 0) then
s2_densite = zeros(s2_densite);
else
s2_densite = s2_densite/max(s2_densite);
end;
end;
tt = [tt;t(ii)];
M1 = [M1; s2_densite'];
end;//Fin For
M1 = M1(:,$/2:$-1);
f= f(1:$/2);
if (anim > 0) then
//subplot(2,1,2);
figure();
xset("colormap",jetcolormap(64));
Sgrayplot(tt,f/19.49,M1(:,1:$)/19.49);
end;
endfunction
function [M1,tt,f] = animHilbert(s2,Fs,nbEchantillon,pas,anim,seuil)
N = size(s2,2);
tau = 1 / Fs; // interval temporel de l'echantillonnage
t = (0:N - 1) * tau; // construction du vecteur temps
f=Fs*(0:(nbEchantillon)-1)/nbEchantillon;
s2Centre = s2;// - mean(s2); // recentrage du signal autour de l'axe abscice.
b=modulo(N,nbEchantillon);
s2Centre=[s2Centre, zeros(nbEchantillon - b,1)'];
if (anim > 0) then
figure();
subplot(2,1,1);
a = gca();
a.auto_clear = "off";
plot(t,s2);
subplot(2,1,2);
a = gca();
a.auto_clear = "on";
s2max = max(s2);
subplot(2,1,1);
plot([0 0],[0 s2max],'r');
e = gce();
end;
M1=[];tt=[];
for ii=1:pas:(size(s2Centre,2) - nbEchantillon),
if (anim > 1) then
drawlater();
delete(e);
subplot(2,1,1);
plot([t(ii) t(ii)],[0 s2max],'r');
e = gce();
end;
// pause
[s2_fft,F] = frpowerspec(hilbert(s2Centre(1,ii:ii + nbEchantillon)));//frpowerspec(s2CentreBW+0*%i
if max(real(s2_fft)) < seuil then
s2_densite = zeros(s2_fft);
else
s2_densite = abs(real(s2_fft));
//s2_densite = s2_densite/max(s2_densite);
end;
tt = [tt;t(ii)];
M1 = [M1;s2_densite'];
if (anim > 1) then
subplot(2,1,2);
plot(f(1:$/2),s2_densite(1,1:$/2));
drawnow();
end;
end;
M1 = M1(:,1:$/2);
f= f(1:$/2);
if (anim > 0) then
subplot(2,1,2);
xset("colormap",jetcolormap(64));
Sgrayplot(tt,f,M1);
end;
endfunction
function out = dbv(in)
in(find(in==0))= -%inf;
out = 20 * log10(abs(in));
endfunction
function s2f = filtrageVitesse(s2)
Fs = 44100;
[wft,wfm,fr]=wfir('bp',64,[1000/Fs 8000/Fs],'tr',[-1 -1]); // définition de la fenetre du filtre passa bande
[s2f zf] = filter(wft,1,s2); // filtrage du signal par le filtre passe bande
endfunction
function s2f = filtrageHigh(s2)
Fs = 44100;
[wft,wfm,fr]=wfir('bp',64,[14000/Fs 22000/Fs],'tr',[-1 -1]); // définition de la fenetre du filtre passa bande
[s2f zf] = filter(wft,1,s2); // filtrage du signal par le filtre passe bande
endfunction
function s2f = filtrage(s2,FreqMin,FreqMax)
Fs = 44100;
[wft,wfm,fr]=wfir('bp',64,[FreqMin/Fs FreqMax/Fs],'tr',[-1 -1]); // définition de la fenetre du filtre passa bande
[s2f zf] = filter(wft,1,s2); // filtrage du signal par le filtre passe bande
endfunction
function s2f = filtrageVitesseSpin(s2)
Fs = 44100;
[wft,wfm,fr]=wfir('bp',33,[0/Fs 6000/Fs],'tr',[-1 -1]); // définition de la fenetre du filtre passa bande
[s2f zf] = filter(wft,1,s2); // filtrage du signal par le filtre passe bande
endfunction
function s2f = filtrageSpin2(s2)
Fs = 44100;
[wft,wfm,fr]=wfir('bp',64,[0/Fs 200/Fs],'tr',[-1 -1]); // définition de la fenetre du filtre passa bande
[s2f zf] = filter(wft,1,s2); // filtrage du signal par le filtre passe bande
endfunction
function afficheMesCourbes()
chdir('C:\Users\F009770\Documents\Golf\portaudio_0.2\');
exec('C:\Users\F009770\Documents\Golf\portaudio_0.2\loader.sce',-1)
chdir('C:\Users\F009770\Documents\Golf\Radar');
stacksize('max');
fichier = 'BalleFil5Tombe.wav';
fichier = 'fer7Radar.wav';
[z,Fs,bits]=wavread(fichier); // lecture du fichier wav
s2 = z(2,:);// prise en compte uniquement du canal 2, car le 1 n'est pas utilise dans mon appli
s2 = s2 -mean(s2); // recentrage du signal autour de l'axe abscice.
//s2f=filtrageVitesse(s2(6500:11000)); // fer7_5
s2f=filtrageVitesse(s2(1:17500)); // fer7Radar.wav
[tt1,f1,M1]=animFFT(s2f,44100,30,0);
[tt2,f2,M2]=animFFT(s2f,44100,300,0);
[tt3,f3,M3]=animFFT(s2f,44100,600,0);
[tt4,f4,M4]=animFFT(s2f,44100,1200,0);
[tt5,f5,M5]=animFFT(s2f,44100,3000,0);
figure();
subplot(3,2,1);plot(s2f);
subplot(3,2,2);xset("colormap",hotcolormap(64));Sgrayplot(tt1,f1/19.49,M1/19.49);title("Fenetre 30 pts km/h filtre 1kHz-6kHz");
subplot(3,2,3);xset("colormap",hotcolormap(64));Sgrayplot(tt2,f2/19.49,M2/19.49);title("Fenetre 300 pts km/h filtre 1kHz-6kHz");
subplot(3,2,4);xset("colormap",hotcolormap(64));Sgrayplot(tt3,f3/19.49,M3/19.49);title("Fenetre 600 pts km/h filtre 1kHz-6kHz");
subplot(3,2,5);xset("colormap",hotcolormap(64));Sgrayplot(tt4,f4/19.49,M4/19.49);title("Fenetre 1200 pts km/h filtre 1kHz-6kHz");
subplot(3,2,6);xset("colormap",hotcolormap(64));Sgrayplot(tt5,f5/19.49,M5/19.49);title("Fenetre 3000 pts km/h filtre 1kHz-6kHz");
s2f=filtrageVitesse(s2(1:7000));
[tt5,f5,M5]=animFFT(s2f,44100,300,0);
M5Sqr = M5.^2;
figure();plot(f5/19.49,sum(M5Sqr,'r'));
[v,l]=max(sum(M5Sqr,'r'));
vBall = f5(l)/19.49
vClubMax = vBall /1.2;
vClubMin = vBall / 1.5;
ll = find((f5/19.49) < vClubMax);
[v,l]=max(sum(M5Sqr(:,ll),'r'));
vClub = f5(l)/19.49
SmashFactor = vBall / vClub
s2f=filtrageSpin2(s2(1:30000));
[tt1,f1,M1]=animFFT(s2f,44100,30,0);
[tt2,f2,M2]=animFFT(s2f,44100,300,0);
[tt3,f3,M3]=animFFT(s2f,44100,600,0);
[tt4,f4,M4]=animFFT(s2f,44100,1200,0);
[tt5,f5,M5]=animFFT(s2f,44100,3000,0);
figure();
subplot(3,2,1);plot(s2f);
subplot(3,2,2);xset("colormap",hotcolormap(64));Sgrayplot(tt1,f1*60,M1*60);title("Fenetre 30 pts RPM filtre 0kHz-200Hz");
subplot(3,2,3);xset("colormap",hotcolormap(64));Sgrayplot(tt2,f2*60,M2*60);title("Fenetre 300 pts RPM filtre 0kHz-200Hz");
subplot(3,2,4);xset("colormap",hotcolormap(64));Sgrayplot(tt3,f3*60,M3*60);title("Fenetre 600 pts RPM filtre 0kHz-200Hz");
subplot(3,2,5);xset("colormap",hotcolormap(64));Sgrayplot(tt4,f4*60,M4*60);title("Fenetre 1200 pts RPM filtre 0kHz-200Hz");
subplot(3,2,6);xset("colormap",hotcolormap(64));Sgrayplot(tt5,f5*60,M5*60);title("Fenetre 3000 pts RPM filtre 0kHz-200Hz");
s2f=filtrageVitesse(s2(1:6000));
[tt1,f1,M1]=animFFT(s2f,44100,30,0);
[tt2,f2,M2]=animFFT(s2f,44100,300,0);
[tt3,f3,M3]=animFFT(s2f,44100,600,0);
[tt4,f4,M4]=animFFT(s2f,44100,1200,0);
[tt5,f5,M5]=animFFT(s2f,44100,3000,0);
figure();
subplot(3,2,1);plot(s2f);
subplot(3,2,2);xset("colormap",matcolormap(64));Sgrayplot(tt1,f1*60,M1*60);title("Fenetre 30 pts RPM filtre 1kHz-6kHz");
subplot(3,2,3);xset("colormap",matcolormap(64));Sgrayplot(tt2,f2*60,M2*60);title("Fenetre 300 pts RPM filtre 1kHz-6kHz");
subplot(3,2,4);xset("colormap",matcolormap(64));Sgrayplot(tt3,f3*60,M3*60);title("Fenetre 600 pts RPM filtre 1kHz-6kHz");
subplot(3,2,5);xset("colormap",matcolormap(64));Sgrayplot(tt4,f4*60,M4*60);title("Fenetre 1200 pts RPM filtre 1kHz-6kHz");
subplot(3,2,6);xset("colormap",matcolormap(64));Sgrayplot(tt5,f5*60,M5*60);title("Fenetre 3000 pts RPM filtre 1kHz-6kHz");
endfunction
function [vBall, vClub, SmashFactor,thetaLoft, ShafLeanImp, launchAngle, SpinZ] = Info(M5,f5,Club)
M5Sqr = M5.^2;
//figure();g=gca();g.axes_reverse=["on","off","off"];plot(sum(M5.^2,'r'),f5/19.49);
[v,l]=max(sum(M5Sqr,'r')); // 2 version, a confirmer !!
//[v,l]=max(M5Sqr,'c');
vBall = max(f5(l)/19.49);
vClubMax = vBall /1.2;
vClubMin = vBall / 1.5;
ll = find(((f5/19.49) >= vClubMin) & ((f5/19.49) <= vClubMax));
[v,l]=max(sum(M5Sqr(:,ll),'r'));
vClub = f5(ll(l))/19.49;
SmashFactor = vBall / vClub;
[thetaLoft, ShafLeanImp, launchAngle, SpinZ] = LaunchAngle(vBall, vClub, Club);
//disp(SmashFactor,vClub, vBall);
endfunction
function [vBall, vBallCorrigee, vClub, SmashFactor,thetaLoft, ShafLeanImp, launchAngle, SpinZC, SpinZM, SpinLR, gamaFacePath,PointShoot,tt5x,f5x] = Info2(xg, Club, Fs)
//fichier = uigetfile("*.wav", "D:\Users\f009770\Documents\Golf\Radar\");[x,Fs,bits]=wavread(fichier);
//xg = x(1,1:$);xd = x(2,1:$);xd = xd - mean(xd);
xg = xg - mean(xg);
u = padding3(xg);
Fs = Fs*2;
//
// Recherche de la vitesse de la Balle
//
[wft,wfm,fr] = wfir('bp',256,[1000/Fs 6000/Fs ],'re',[-1 -1]); // passe bande
xf = filter(wft,1,u); // passe bande filtrage centre sur 1kHz 6kHz
[M5,tt5,f5]=animDensite3(xf,Fs, 256*16 ,32*16 , 0, -15,1);//xtitle("Freq complet");
//fig = figure();fig.color_map = jetcolormap(64);Sgrayplot(tt5,f5,M5(:,1:$-1));
M5Sqr = M5.^2;
[v,l]=max(sum(M5Sqr,'r')); // 2 version, a confirmer !
FBall = max(f5(l));
vBall = FBall / 19.49;
[wftsb,wfm,fr] = wfir('sb',255,[(FBall*.95)/Fs (FBall*1.05)/Fs ],'re',[-1 -1]); // coupe bande autour de la balle
// JAUNE Tout le SIGNAL band pass sur 1000 à 6000
[M5,tt5,f5]=animDensite3(xf,Fs, 256*2 ,32*2 , 0, -15,1);//xtitle("Freq complet");
[m,k] = max(sum(M5.^2,'r'));
f=figure();plot(f5,sum(M5(1:$,1:$).^2/m,'r'),'y'); //
//[m,k] = max(sum(M5,'r'));
//FBall = f5(k);vBall = FBall / 19.49;
// Recherche de la vitesse du Club
//
Fenetre = 32;dt=0;
[wft2,wfm,fr] = wfir('bp',256,[(FBall/1.5)/Fs (FBall/1)/Fs ],'re',[-1 -1]); // coupe bande autour de la club
[M5,tt5,f5]=animDensite3(filter(wft2,1,xf),Fs, 256*4 ,Fenetre*4 , 0, -150,0); // NON NORMALISE !!
[m1,k1] = max(sum(M5.^2,'c')); PointShoot = tt5(k1)*Fs;// temps du shoot
[m,k] = max(sum(M5.^2,'r'));
FClub = f5(k);
vClub = FClub/19.49;
// BLEUE BandPass du début au shoot Club. Vitesse du Club
//[M5,tt5,f5]=animDensite(filter(wft2 ,1,xf(1:PointShoot+200)),Fs, 256*4 ,Fenetre*4 , 0, -50, 0); //xtitle("Freq around Smash Club");
[m1,k1]=max(xf);
[M5,tt5,f5]=animDensite3(filter(wft2 ,1,xf(k1-3*1024:k1+4*1024)),Fs, 256*4 ,Fenetre*4 , 0, -10, 0);
[m,k] = max(sum(M5.^2,'r'));
scf(f);plot(f5,sum(M5(1:$,1:$).^2,'r')/m,'b'); // vitesse du shaft (1er pic), vitesse de la balle 2eme pic) //
FClub = f5(k);
vClub = FClub/19.49;
// ROUGE Hipass coupé de FreqBall
[wft3 ,wfm,fr] = wfir('bp',255,[(FBall)/Fs (FBall+1500)/Fs ],'hm',[-1 -1]); // Passe haut arpès de la balle
[M5,tt5,f5]=animDensite3(filter(wft3 ,1,filter(wftsb ,1,xf(PointShoot+dt:$*3/4))),Fs, 256*16 ,32*16 , 0, -5,1);
[m,k] = max(sum(M5,'r'));
scf(f);plot(f5,sum(M5(1:$,1:$)/m,'r'),'r'); // vitesse du shaft (1er pic), vitesse de la balle 2eme pic)
FreqSpinMax = f5(k);
// MAGENTA Pass Bas coupée de FreqBall
[wft4,wfm,fr] = wfir('bp',256,[(FBall-1400)/Fs (FBall)/Fs ],'hm',[-1 -1]);
[M5,tt5,f5]=animDensite3(filter(wft4,1,filter(wftsb ,1,xf(PointShoot+dt:$*3/4))),Fs, 256*16 ,32*16 , 0, -5,1);
[m,k] = max(sum(M5.^2,'r'));
FreqSpinMin = f5(k);
scf(f);plot(f5,sum(M5(1:$,1:$).^2,'r')/m,'m');
// VERT CoupeBand de FreqBall
[wft,wfm,fr] = wfir('bp',256,[(FBall-1500)/Fs (FBall+1500)/Fs ],'re',[-1 -1]); // passe bande
[M5,tt5,f5]=animDensite3(filter(wftsb ,1,filter(wft,1,xf(PointShoot+dt:$*3/4))),Fs, 256*16 ,32*16 , 0, -55,1);//coupe bande");
[m,k] = max(sum(M5.^2,'r'));
scf(f);plot(f5,sum(M5(1:$,1:$).^2/m,'r'),'g'); // Passe bas avant de la balle
Mref = sum(M5(1:$,1:$).^2,'r');
[e,f]=find((f5<(vBall*19.49-200)));
[g,h]=max(Mref(f));FreqSpinMin = f5(h);
[e,f]=find((f5>(vBall*19.49+100)));
[g,h]=max(Mref(f));FreqSpinMax = f5(size(Mref,2)-size(Mref(f),2)+h);
// affichage de la legende
hl=legend(['vBall: '+string(vBall)+' smashfactor '+ string(vBall / vClub);'vClub: '+string(vClub);'FreqSpinMin: '+string((FreqSpinMin - 0)*1)+' Hz';'FreqSpinMax: '+string(FreqSpinMax);'BackSpinM: '+string(Freq2RpmSpin(FreqSpinMax-FreqSpinMin))+' rpm']);
SpinLR = 0;//Freq2RpmSpin( [(FreqSpinMin - FBall) , (FreqSpinMax - FBall)]); // spin Left Rigth
SpinZM = [15.*(FBall - FreqSpinMin), (FreqSpinMax - FBall)*15.;];
SmashFactor = vBall / vClub;
[thetaLoft, ShafLeanImp, launchAngle, SpinZC, gamaFacePath] = LaunchAngle(vBall, vClub, Club, SpinLR);
vBallCorrigee = vBall/cos(launchAngle*%pi/180);
//disp(SmashFactor,vClub, vBall);
[M51,tt5,f5]=animDensite3(filter(wft ,1,xf(PointShoot:$)),Fs, 256 ,32 , 0, -5,1);
[wft5 ,wfm,fr] = wfir('bp',255,[(FBall+300)/Fs (FBall+1500)/Fs ],'hm',[-1 -1]); // Passe haut arpès de la balle
[M51,tt5,f5]=animDensite3(filter(wft ,1,xf(PointShoot:$)),Fs, 256 * 8*4,32 * 8*4 , 0, -5,1);
// [M51,tt5,f5]=animDensite(filter(wft3 ,1,xf(PointShoot:$)),Fs, 256 ,32 , 0, -5,1);
[c,d]=find((M51==1));
//[c,d]=find((M51>.8));
figure();
//plot(tt5(c(1:$-1)),f5(d(1:$-1))-f5(d(2:$)), 'rx');
plot(tt5(c),f5(d),'bo');
tt5x = tt5(c);f5x = f5(d);
endfunction
function [xd,SP, F] = Info3(Club,fichier,thrplus,range)
[x,Fs,bits]=wavread(fichier);
xg = x(1,1:$);xd = x(2,1:$);xg = xg - mean(xg); xd = xd - mean(xd);xg = xg([range(1):range(2)]); xd = xd([range(1):range(2)]);
[wft,wfm,fr] = wfir('bp',256,[1000/Fs 6000/Fs ],'re',[-1 -1]); // passe bande
u = filter(wft,1,padding3(xg));
Fs = Fs*2;
[thr,sorh,keepapp] = ddencmp('den','wv',u);
xd = wdencmp('gbl',u,'db3',4,thr+thrplus,sorh,keepapp);
[SP,F]=frpowerspec(xd+0*%i);plot(F($/2:$)*44100*2,SP($/2:$));
SP=SP($/2:$);F=F($/2:$);
endfunction
function [test, M5, tt5, f5, vClub, vBall, SmashFactor,thetaLoft, ShafLeanImp, launchAngle, SpinZ] = LaunchMonitoring(test, Coeff, spin)
/////////////////////////// Affichage des courbes Simulé de références //////////////
/////////////////////////// avec la fft capturée //////////////
// lecture du signal
// lecture de largeur de spectre se fait à -20db
//
//fichier = 'serie211.wav';
forder = 64;
//[test,Fs,bits] = wavread(fichier); // serie211 : 122.68kmh et 154.23kmh
test = test - mean(test);
[wft, wfm, fr] = wfir('bp',forder,[0.044 0.09],'hm',[-1 -1]);
//Fs = 44100;
nbEchantillon = 1024*1;
// boucle de détection de début de swing, ou le joueur bouge
// l'indice ii donne le début du signal
for ii=2:size(test , 2)/nbEchantillon,
s2_fft = abs(real(fft(filter(wft,1, test((ii)*nbEchantillon+1:nbEchantillon*(ii+1))))));
if (max(s2_fft, 'c') > 3) then,
break;
end;
end;//
// Identificatin de la vitesse de club
//[wft,wfm,fr] = wfir('bp',48,[0.044 0.09],'hm',[-1 -1]);
s2_fft = abs(real(fft(filter(wft,1, test((ii)*nbEchantillon+1:nbEchantillon*(ii+1))))));
f1 = Fs*(0:(size(s2_fft,2))-1)/size(s2_fft,2);
//figure();plot(f1(1:$/2)/19.49, s2_fft(1:$/2)/max(s2_fft(1:$/2)),'b');
[m,k] = max(s2_fft,'c');
VClub = Fs*((k)-1)/size(s2_fft,2)/19.49;//vitesse probable du club, qui est la première détection de vitesse seuille
// Identification de la vitesse de balle probable
s2_fft = abs(real(fft(filter(wft,1, test((ii+4)*nbEchantillon+1:nbEchantillon*(ii+5))))));
//f1 = Fs*(0:(size(s2_fft,2))-1)/size(s2_fft,2);
//plot(f1(1:$/2)/19.49, s2_fft(1:$/2)/max(s2_fft(1:$/2)),'r');
[m,k] = max(s2_fft,'c');
VBall = Fs*((k)-1)/size(s2_fft,2)/19.49;//vitesse probable de la balle, qui est la première détection de vitesse seuil f1 = Fs*((k)-1)/size(s2_fft,2)
[M5,tt5,f5]=animDensite(filter(wft,1, test((ii-1)*nbEchantillon+1:nbEchantillon*(ii+10))),44100, 1024 ,16 , 0, -70, 1);
//fig = figure();fig.color_map = jetcolormap(64);Sgrayplot(tt5,f5/19.49,M5/19.49);
[vClub, vBall, SmashFactor,thetaLoft, ShafLeanImp, launchAngle, SpinZ] = Info(M5,f5,'7');
// identification précise de la vitesse de la balle avec un filtrage passe bande fin
freqC = VBall*19.49/Fs ;
[wft,wfm,fr] = wfir('bp',forder,[freqC freqC+0.000001 ],'hm',[-1 -1]);
s2_fft = abs(real(fft(filter(wft,1, test((ii+4)*nbEchantillon+1:nbEchantillon*(ii+8))))));
//f1 = Fs*(0:(size(s2_fft,2))-1)/size(s2_fft,2);
//plot(f1(1:$/2)/19.49, s2_fft(1:$/2)/max(s2_fft(1:$/2)),'r');
[m,k] = max(s2_fft,'c');
VBall = Fs*((k)-1)/size(s2_fft,2)/19.49;//vitesse probable de la balle, qui est la première détection de vitesse seuil
///////////////////////////
// calcul du signal de référence simulé en fonction de la vitesse de balle pour identifier le spin
//
//t = (0:size(f1, 2)-1)/Fs;
//spin = 5500; //a déterminer par corrélation entre simulation et capture
Ref_total = GenereSignalSimu(44100, 4096, 0.03, VClub, VBall, spin, Coeff, 0);
ff1 = Fs*(0:(size(Ref_total,2))-1)/size(Ref_total,2);
[wft,wfm,fr] = wfir('bp',forder,[(VBall-5)*19.49/Fs (VBall+5)*19.49/Fs],'hm',[-0 -0]);
//Ref_total_fft = abs(real(fft(Ref_total)));//
Ref_total_fft = abs(real(fft(filter(wft,1,Ref_total))));
Ref_spin = GenereSignalSimu(44100, 4096, 0.03, VClub, VBall, spin, [0, 1, 0],0);
[wft,wfm,fr] = wfir('bp',forder,[(VBall-5)*19.49/Fs (VBall+5)*19.49/Fs],'hm',[-1 -1]);
Ref_spin_fft = abs(real(fft( Ref_spin)));//
Ref_ball = GenereSignalSimu(44100, 4096, 0.03, VClub, VBall, spin, [1, 0, 0],0);
[wft,wfm,fr] = wfir('bp',forder,[(VBall-5)*19.49/Fs (VBall+5)*19.49/Fs],'hm',[-1 -1]);
Ref_ball_fft = abs(real(fft(filter(wft,1,Ref_ball)))); //
Ref_club = GenereSignalSimu(44100, 4096, 0.03, VClub, VBall, spin, [0, 0, 1],0);
[wft,wfm,fr] = wfir('bp',forder,[(VClub-5)*19.49/Fs (VClub+5)*19.49/Fs],'hm',[-1 -1]);
Ref_club_fft = abs(real(fft(Ref_club))); //
//////////////////////////////////////////
// affichage des courbes simulées et captées
figure();
plot2d(ff1(1:$/2)/19.49,[ ...
Ref_total_fft(1:$/2)/max(Ref_total_fft(1:$/2)); ...
Coeff(1)*Ref_ball_fft(1:$/2)/max(Ref_ball_fft(1:$/2));...
Coeff(2)*Ref_spin_fft(1:$/2)/max(Ref_spin_fft(1:$/2));...
Coeff(3)*Ref_club_fft(1:$/2)/max(Ref_club_fft(1:$/2))]');
f1 = Fs*(0:(size(s2_fft,2))-1)/size(s2_fft,2);
plot(f1(1:$/2)/19.49, s2_fft(1:$/2)/max(s2_fft(1:$/2)),'r');
// freqC = VBall*19.49/Fs ;
// [wft,wfm,fr] = wfir('sb',129,[freqC freqC+0.0000001 ],'re',[-1 -1]);
// s2_fft = abs(real(fft(filter(wft,1, test((ii+4)*nbEchantillon+1:nbEchantillon*(ii+8))))));
// plot(f1(1:$/2)/19.49, s2_fft(1:$/2)/max(s2_fft(1:$/2)),'r');
//
legends(['Signal Total';'Signal Ball: ' + string(VBall) + ' kmh';'Signal Spin: '+ string(spin(1))+' '+string(spin($))+'rpm';'Signal Capturé'; 'Signal Club VClub: ' + string(VClub) + ' kmh'],[1 2 3 5 4],opt=1);
// Pxy = fft(filter(wft,1, test((ii+4)*nbEchantillon+1:nbEchantillon*(ii+8))));
// figure();
// subplot(2,1,1);plot(ff1(1:$/2),Pxy(1:$/2));
// a=angle(Pxy(1:$/2));
// subplot(2,1,2);plot(ff1(1:$/2),a);
//
// Pxy = fft(filter(wft,1, Ref_total/10));
// //figure();
// subplot(2,1,1);plot(ff1(1:$/2),Pxy(1:$/2),'r');
// a=angle(Pxy(1:$/2));
// subplot(2,1,2);plot(ff1(1:$/2),a,'r');
endfunction
//-----------------------------------------------------------------------------
// Written by Philippe.CASTAGLIOLA@univ-nantes.fr
// Université de Nantes & IRCCyN UMR CNRS 6597
//-----------------------------------------------------------------------------
function Y=savitzkygolayM(X,p,nL,nR)
//-----------------------------------------------------------------------------
[argout,argin]=argn()
if (argin<3)|(argin>4)
error("incorrect number of arguments")
end
if (p<=0)|(p~=floor(p))
error("argument ''p'' must be an integer >= 1")
end
if (nL<0)|(nL~=floor(nL))
error("argument ''nL'' must be an integer >= 0")
end
if argin==3
nR=nL
end
if (nR<0)|(nR~=floor(nR))
error("argument ''nR'' must be an integer >= 0")
end
n1=nL+nR+1
if n1<p
error("condition nL+nR+1 >= p not satisfied")
end
[row,col]=size(X)
n=row*col
X=[X(1)*ones(nL,1);matrix(X,n,1);X(n)*ones(nR,1)]
n=n+nL+nR
C=pinv(cumprod([ones(n1,1),(-nL:nR)'*ones(1,p)],"c"))
c=C(1,:)
Y=zeros(X)
for i=1:n1
Y(nL+1:n-nR)=Y(nL+1:n-nR)+X(i:n-n1+i)*c(i)
end
Y=matrix(Y(nL+1:n-nR),row,col)
endfunction
////////////////////////////////////////////////////////////////////////////////////////////////
//This file is part of the Cardiovascular Wawes Analysis toolbox
//Copyright (C) 2014 - INRIA - Serge Steer
//This file must be used under the terms of the CeCILL.
//This source file is licensed as described in the file COPYING, which
//you should have received as part of this distribution. The terms
//are also available at
//http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function y=sgolayfilt(X,varargin)
//filter signal using Savitzky-Golay Filter.
// y=sgolayfilt(X,B)
// y=sgolayfilt(X,k,nf [,w])
//
// X :
// B : a real n by n array: the set of filter coefficients: the early rows
// of B smooth based on future values and later rows smooth based on
// past values, with the middle row using half future and half past.
// In particular, you can use row i to estimate x(k) based on the i-1
// preceding values and the n-i following values of x values as
// y(k) = B(i,:) * x(k-i+1:k+n-i).
// k : a positive scalar with integer value: the polynomial order, must
// be odd
// nf : a positive scalar with integer value: the FIR filter length,
// must be odd and greater the k+1
// w : a real vector of length nf with positive entries: the weights.
// If omitted no weights are applied.
//
// References:
// - Abraham Savitzky et Marcel J. E. Golay, « Smoothing and
// Differentiation of Data by Simplified Least Squares Procedures »,
// Analytical Chemistry, vol. 8, no 36, 1964, p. 1627–1639 (DOI 10.1021/ac60214a047)
// - http://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_filter
if type(X)<>1|~isreal(X) then
error(msprintf(_("%s: Wrong type for argument %d: Real matrix expected.\n"),...
"sgolayfilt",1))
end
if size(X,1) == 1 then X = X(:);end
if or(size(varargin)==[2 3]) then
B = sgolay(varargin(:))
else
B=varargin(1)
if type(B)<>1|~isreal(B) then
error(msprintf(_("%s: Wrong type for argument %d: Real matrix expected.\n"),...
"sgolayfilt",2))
end
end
n=size(B,1);
if size(X,1) < n,
error(msprintf(_("%s: Wrong size for argument %d: At least %d expected.\n"),"sgolayfilt",1,size(B,1)))
end
// The first k rows of B are used to filter the first k points
// of the data set based on the first n points of the data set.
// The last k rows of B are used to filter the last k points
// of the data set based on the last n points of the dataset.
// The remaining data is filtered using the central row of B.
k = floor(n/2);
z = filter(B(k+1,:), 1, X);
y = [B(1:k,:)*X(1:n,:) ; z(n:$,:) ; B(k+2:n,:)*X($-n+1:$,:) ];
endfunction
///////////////////////////////////////////////////////////////////////////////////////////////
//This file is part of the Cardiovascular Wawes Analysis toolbox
//Copyright (C) 2014 - INRIA - Serge Steer
//This file must be used under the terms of the CeCILL.
//This source file is licensed as described in the file COPYING, which
//you should have received as part of this distribution. The terms
//are also available at
//http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function [B,C] = sgolay(k,nf,w)
// Savitzky-Golay Filter Design.
// k : a positive scalar with integer value: the polynomial order
// nf : a positive scalar with integer value: the FIR filter length,
// must be odd and greater the k+1
// w : a real vector of length nf with positive entries: the
// weights. If omitted no weights are applied.
// B : a real n by n array: the set of filter coefficients: the early rows
// of B smooth based on future values and later rows smooth based on
// past values, with the middle row using half future and half past.
// In particular, you can use row i to estimate x(k) based on the i-1
// preceding values and the n-i following values of x values as
// y(k) = B(i,:) * x(k-i+1:k+n-i).
// C : a real n by k+1 array: the matrix of differentiation filters. Each
// column of C is a differentiation filter for derivatives of order
// P-1 where P is the column index. Given a signal X with length nf,
// an estimate of the P-th order derivative of its middle value can be
// found from:
// (P)
// X ((nf+1)/2) = P!*C(:,P+1)'*X
// References:
// - Abraham Savitzky et Marcel J. E. Golay, « Smoothing and
// Differentiation of Data by Simplified Least Squares Procedures »,
// Analytical Chemistry, vol. 8, no 36, 1964, p. 1627–1639 (DOI 10.1021/ac60214a047)
// - http://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_filter
if type(k)<>1|int(k)<>k|size(k,'*')<>1 then
error(msprintf(_("%s: Wrong value for input argument #%d: An integer value expected.\n"),"sgolay",2))
end
if k > nf-1 then
error('The degree must be less than the frame length.'),
end
if type(k)<>1|int(k)<>k|size(k,'*')<>1 then
error(msprintf(_("%s: Wrong type for input argument #%d: a scalar with integer value expected.\n"),...
"sgolay",1))
end
if type(nf)<>1|int(nf)<>nf|size(nf,'*')<>1 then
error(msprintf(_("%s: Wrong type for input argument #%d: a scalar with integer value expected.\n"),...
"sgolay",2))
end
if modulo(nf,2)<>1 then
error(msprintf(_("%s: Wrong value for input argument #%d: Must be odd.\n"),"sgolay",2))
end
if nf<=k then
error(msprintf(_("%s: Incompatible input arguments #%d and #%d: Argument #%d expected to be less than argument #%d.\n"),"sgolay",1,2,2,1))
end
//compute the Vandermonde matrix
J=(ones(k+1,1)*(-(nf-1)./2:(nf-1)./2)).^((0:k)'*ones(1,nf));
if argn(2)==3 then
if type(w)<>1|~isreal(w) then
error(msprintf(_("%s: Wrong type for argument %d: Real vector expected.\n"),...
"sgolay",3))
end
if size(w,"*")<>nf then
error(msprintf(_("%s: Incompatible input arguments #%d and #%d\n"),"sgolay",2,3))
end
// Check to see if all elements are positive
if min(w) <= 0 then
error(msprintf(_("%s: Wrong values for input argument #%d: Elements must be positive.\n"),...
"sgolay",3))
end
// Diagonalize the vector to form the weighting matrix
J = J*diag(sqrt(w))
end
//Compute the matrix of differentiators C=J'/(J*W*J')
C = pinv(J);
// Compute the projection matrix B
B = C*J;
endfunction
///////////////////////////////////////////////////////////////////////////////////////////////
function s1 = HighSpeed(FMin, FMax)
figure();plot(1);ax = gca();ax.auto_clear = 'on';
Fs = 44100;
N = 256;//Fs*0.01;
f = Fs*(0:(N)-1)/N;
[wft,wfm,fr] = wfir('bp',128,[FMin/Fs FMax/Fs ],'hm',[-1 -1]);
while %T
//y = pa_recordwav(N,Fs ,1);
//s2_fft = abs(real(fft(filter(wft,1,pa_recordwav(N,Fs ,1)'))));
//plot(f(2:$/2),s2_fft(2:$/2));
//s2_densite_real = abs(real(s2_fft.*conj(s2_fft)));
//plot(f(2:$/16),s2_densite_real(2:$/16));
//[m,k]=max(s2_densite_real);
//m
//f(k)/19.49
//if (max(s2_fft,'c') > 3) then,
if (max(abs(real(fft(filter(wft,1,pa_recordwav(N,44100 ,1)')))),'c') > .3) then,
break;
end;
end
s1 = pa_recordwav(N*3000,Fs ,1)';
plot(s1);
[M5,tt5,f5]=animDensite(filter(wft,1, s1),44100, 512 ,16 , 1, -75,1);
endfunction
function Ref = GenereSignalSimu(Fs, N, TImpact, VClub, VBall, RPMSpin,Coeff, Phase)
f1 = Fs*(0:N-1)/N;
t = (0:size(f1,2)-1)/Fs;
//// AM Modulation
//BasebandFrequency = 10e3;
//CarrierFrequency = 100e3;
//SamplingFrequency = 1e6;
//BufferLength = 200;
//n = 0:(BufferLength - 1);
//BasebandSignal = sin(2*%pi*n / (SamplingFrequency/BasebandFrequency));
//CarrierSignal = sin(2*%pi*n / (SamplingFrequency/CarrierFrequency));
//plot(n, BasebandSignal)
//plot(n, CarrierSignal)
//ModulatedSignal_AM = CarrierSignal .* (1+BasebandSignal);
//plot(n, BasebandSignal)
//plot(n, ModulatedSignal_AM)
//
//
////signal module FM
//BasebandFrequency = 10e3;
//CarrierFrequency = 100e3;
//SamplingFrequency = 1e7;
//BufferLength = 2000;
//n = 0:(BufferLength - 1);
//BasebandSignal = sin(2*%pi*n / (SamplingFrequency/BasebandFrequency));
//CarrierSignal = sin(2*%pi*n / (SamplingFrequency/CarrierFrequency));
//
//BasebandSignal_integral = -cos(2*%pi*n / (SamplingFrequency/BasebandFrequency));
//ModulatedSignal_FM = sin((2*%pi*n / (SamplingFrequency/CarrierFrequency)) + BasebandSignal_integral);
//plot(n, ModulatedSignal_FM)
tclub=t;
kImpact = find(TImpact==t);
kFin = find((TImpact+0.02)==t);
Fvb = zeros(tclub);
Fvb(kImpact:$) = VBall*19.49;
tvb=t;
tvb(1:kImpact)=0;
tclub(kFin-1:$)=0;
Fclub = zeros(tclub);
Fclub(1:kImpact*3) = (VClub*19.49);//*(-(linspace(-1.,1,size(tclub(1:kImpact*3),2))).^2+0);
Fclub(1:kImpact*3) = Fclub(1:kImpact*3) - min(Fclub);
if (size(RPMSpin,2) == 1)
Fspin1 = zeros(tvb);
Fspin1(kImpact:$) = RpmSpin2Freq(RPMSpin);
Fspin2 = zeros(tvb);
Fspin2(kImpact:$) = RpmSpin2Freq(RPMSpin);
else
Fspin1 = zeros(tvb);
Fspin1(kImpact:$) = RpmSpin2Freq(RPMSpin(1));
Fspin2 = zeros(tvb);
Fspin2(kImpact:$) = RpmSpin2Freq(RPMSpin(2));
end;
CoeffClub = [-sin(linspace(%pi,2*%pi,size(find(tclub~=0),2))) * Coeff(3) ];
CoeffClub = [CoeffClub tclub(kFin-2:$)];
Ref = Coeff(1)*sin(2*%pi*Fvb.*tvb + Phase) + Coeff(2)*(1*sin(2*%pi*(Fvb - Fspin1).*tvb + Phase) + 1*sin(2*%pi*(Fvb + Fspin2).*tvb) + Phase) + Coeff(3).*sin(2*%pi*CoeffClub.*Fclub.*tclub + 0) ;//;
Ref = 0.15*Ref/max(Ref);
endfunction
function F=TOC(f,psi,A,B)
// f expression littérale de la fonction
// psi expression littérale de psi
// A facteur d'échelle
// B valeur de temps
// Le résultat est une matrice comportant autant de lignes
// que de facteurs d'échelle A et autant de colonnes
// que de valeurs de temps
F=zeros(length(A),length(B));
[nbl nbc]=size(F);
// Valeur du facteur d'échelle
for i=1:nbl
a=A(i);
// Valeur de temps
for j=1:nbc
b=B(j);
// Intégration du produit de l'ondelette par la
// fonction au point a,b
w=inttrap(t,eval(f).*eval(psi));
F(i,j)=w;
end
end
endfunction
///////////////////////////////////////////////////////////////////////////////////////////////
function [VBall, VClub, Spin, SpinAxis, xresult]=GetSwing(x, Fs, FreqMin, FreqMax, seuil)
x = x - mean(x);
v = format();
format(5);
Fenetre = 4;
nbEchantillon = 256*4/Fenetre;
// boucle de détection de début de swing, ou le joueur bouge
// l'indice ii donne le début du signal
ii=1;
s2_fft = 0;
while ((max(s2_fft,'c') < seuil)),
ii=ii+1;
s2_fft = FftFiltree(x(nbEchantillon*(ii)*Fenetre+1:nbEchantillon*(ii+1)*Fenetre),Fs, FreqMin, FreqMax, 0);
end;
// Identification de la vitesse du Club
[s2_fft, f1] = FftFiltree(x((ii*0.5)*nbEchantillon*Fenetre+1:nbEchantillon*Fenetre*(ii+1.5)),Fs,FreqMin,FreqMax, 0);
[m,k] = max(s2_fft,'c');VClub = Fs*((k)-1)/size(s2_fft,2)/19.49;//vitesse probable du club, qui est la première détection de vitesse seuille
// Identification de la vitesse de balle probable
// itération 4 x, on prend le max d chaque itération, puis le max des max.
VBall = 0;
for jj = -2:0//8:24
//pause
[s2_ffta, f1] = FftFiltree(x((ii+(4+jj)*Fenetre)*nbEchantillon+1:nbEchantillon*(ii+(5+jj)*Fenetre)),Fs,FreqMin,FreqMax, 0);
[m1,k1] = max(s2_ffta,'c');VBall = max(VBall,Fs*((k1)-1));//vitesse probable de la balle, qui est la première détection de vitesse seuil f1 = Fs*((k)-1)/size(s2_fft,2)
end;
VBall = VBall/size(s2_ffta,2)/19.49;
// Calcul du SPIN
MIN = 0;
for jj=2:3
[s2_fftb, f1] = FftFiltree(x((ii+(4+jj)*Fenetre)*nbEchantillon+1:nbEchantillon*(ii+(5+jj)*Fenetre)),Fs,(VBall*19.49-RpmSpin2Freq(10000)) , (VBall*19.49-RpmSpin2Freq(2000)), 0);
[m1 k1]=max(s2_fftb); MIN = max(MIN, (f1(k1)));
end;
MAX = 0;
for jj=2:3
[s2_fftc, f1] = FftFiltree(x((ii+(4+jj)*Fenetre)*nbEchantillon+1:nbEchantillon*(ii+(5+jj)*Fenetre)),Fs,(VBall*19.49+RpmSpin2Freq(2000)) , (VBall*19.49+RpmSpin2Freq(10000)), 0);
[m1 k1]=max(s2_fftc); MAX = max(MAX,(f1(k1)));
end;
Spin = [(Freq2RpmSpin(-MIN+VBall*19.49) ) Freq2RpmSpin((MAX - VBall*19.49)) Freq2RpmSpin((MAX-VBall*19.49)-(VBall*19.49-MIN))];
SpinAxis = asin(Spin(3)/sqrt(((Spin(1)+Spin(2))/2)^2+Spin(3)^2))*180/%pi;
//V0Ballms*sin(LaunchAngle); // Vy
//gamaFacePath = asin(Spin(3) / (V0initms(4)* Sac.coeffSpinLift(Sac.Type == Club)));//
xresult = x((ii-1)*nbEchantillon+1:nbEchantillon*(ii+8));
figure();
f1 = Fs*(0:(size(s2_ffta,2))-1)/size(s2_ffta,2);
plot(f1(1:$/2), s2_ffta(1:$/2)/max(s2_ffta(1:$/2)),'black'); // Centré sur le mouvement de la balle avec un passe bande large
f1 = Fs*(0:(size(s2_fft,2))-1)/size(s2_fft,2);
plot(f1(1:$/2), s2_fft(1:$/2)/max(s2_fft(1:$/2)),'r'); // Centré sur la vitesse du Club avec un passe bande étroit +/- 10Hz
f1 = Fs*(0:(size(s2_fftb,2))-1)/size(s2_fftb,2);
plot(f1(1:$/2), s2_fftb(1:$/2)/max(s2_fftb(1:$/2)),'cyan'); // centré sur le Spin MIN
f1 = Fs*(0:(size(s2_fftc,2))-1)/size(s2_fftc,2);
plot(f1(1:$/2), s2_fftc(1:$/2)/max(s2_fftc(1:$/2)),'b'); // centré sur le Spin Max
title(['VClub: '+ string(VClub) + ' VBall: ' + string(VBall)+ ' Spin: ' + string(Spin(1)) + ' ' + string(Spin(2)) + ' ' + string(Spin(3))]);
legend(['VBall: ' + string(VBall) ; 'Spin bas: ' + string(Spin(2)) ; 'VClub: '+ string(VClub) ; 'Spin haut: ' + string(Spin(1))]);
format(10);
endfunction
function V=DebruitageGauche(U, scale, delay, threshold)
// Débruitage par seuillage d'un signal u utilisant la transformée en ondelettes
// par moyennisaton sur le demi-axe réel négatif (filtre presque causal avec un délai)
W=2^(scale-1)*6+delay; // largeur de la fenêtre
// Initialisation
x=Initialize(W);
for n=2:delay
// Mise à jour de l'état sans calcul de la sortie
u=U(n-1);
x=Update(x,u);
end
for n=(delay+1):length(U)
// Mise à jour de l'état
u=U(n-1);
x=Update(x,u);
// calcul de la sortie
u=U(n);
v=Outputs(x,u,scale, delay,threshold);
V(n-delay)=v;
end
endfunction
function[y] = pmdemod(x,Vc,Em,Ec,fc,fs)
//x - FM modulated signal
//Vc- carrier amplitude signal
//Em - Message signal amplitude in volts
//Ec - Carrier signal amplitude in volts
//fc - Carrier signal frequency in Hz
//fs - Sampling frequency in samples/sec
Xdiff = diff(x); //Converting the FM signal into AM signal
//Envelope changes are recovered by taking the difference
//between successive samples
Xdiff = [Xdiff,Xdiff($)];
//AM demodulation using envelope detector
Xdem = Xdiff.*Vc;
//Digital IIR butterworth filter of 5th order, cutoff freuency = fc/fs
H = iir(5,'lp','butt',[fc/fs,0],[0,0]);
num = coeff(H(2));
den = coeff(H(3));
num = num(length(num):-1:1);
den = den(length(den):-1:1);
[y,zi] = filter(num,den,abs(Xdem));//AC to DC conversion and LPF filtering
y = filter(num,den,y,zi);
plot(y,'r');
title('PM demodulated Signal')
endfunction
function y = fmdemod(x,fc,fs)
//x - FM modulated signal
//Vc- carrier amplitude signal
//Em - Message signal amplitude in volts
//Ec - Carrier signal amplitude in volts
//fc - Carrier signal frequency in Hz
//fs - Sampling frequency in samples/sec
//Em = 2;//2 volts
//Vc = 6;//6 volts
//fc = 10;//in hertz
//fs = 100;//in samples/sec
//y = fmdemod(x,Vc,Em,Ec,fc,fs);
Xdiff = diff(x); //Converting the FM signal into AM signal
t=getT(xgf,Fs);
Vc = cos(2*%pi*fc*t);
//Envelope changes are recovered by taking the difference
//between successive samples
Xdiff = [Xdiff,Xdiff($)];
//AM demodulation using envelope detector
Xdem = Xdiff.*Vc;
//Digital IIR butterworth filter of 5th order, cutoff freuency = fc/fs
H = iir(5,'lp','butt',[fc/fs,0],[0,0]);
num = coeff(H(2));
den = coeff(H(3));
num = num(length(num):-1:1);
den = den(length(den):-1:1);
[y,zi] = filter(num,den,abs(Xdem));//AC to DC conversion and LPF filtering
y = filter(num,den,y,zi);
//plot(y,'r');
//title('FM demodulated Signal')
endfunction
function[y]=ampdemod(x,fc,fs,Em,Ec)
//x - AM modulated signal
//Vc - carrier signal
//fc - carrier frequency
//Em - message signal amplitude
//Ec- carrier signal amplitude
t=getT(xgf,Fs);
Vc = cos(2*%pi*fc*t);
xdem = x.*Vc;
//IIR digital butterworth Low Pass filter of cutoff
//frequency fc/fs and order 7
H = iir(7,'lp','butt',[fc/fs,0],[.1,.1]);
num = coeff(H(2));
den = coeff(H(3));
num = num(length(num):-1:1);
den = den(length(den):-1:1);
y = filter(num,den,xdem);
// y = y/Em;
// y = y-Ec;plot()
endfunction
function [x,x2] = demod(y, Fc, Fs, method, P1)
//%DEMOD Signal demodulation for communications simulations.
//% X = DEMOD(Y,Fc,Fs,METHOD,OPT) demodulates the carrier signal Y with a
//% carrier frequency Fc and sampling frequency Fs, using the demodulation
//% scheme in METHOD. OPT is an extra, sometimes optional, parameter whose
//% purpose depends on the demodulation scheme you choose.
//%
//% Fs must satisfy Fs > 2*Fc + BW, where BW is the bandwidth of the
//% modulated signal.
//%
//% METHOD DEMODULATION SCHEME
//% 'am', Amplitude demodulation, double side-band, suppressed carrier
//% 'amdsb-sc' OPT not used.
//% 'amdsb-tc' Amplitude demodulation, double side-band,transmitted carrier
//% OPT is a scalar which is subtracted from the decoded message
//% signal. It defaults to zero.
//% 'amssb' Amplitude demodulation, single side-band
//% OPT not used.
//% 'fm' Frequency demodulation
//% OPT is a scalar which specifies the constant of frequency
//% modulation kf, which defaults to 1.
//% 'pm' Phase demodulation
//% OPT is a scalar which specifies the constant of phase
//% modulation kp, which defaults to 1.
//% 'pwm' Pulse width demodulation
//% By setting OPT = 'centered' you tell DEMOD that the pulses
//% are centered on the carrier period rather than being
//% "left justified".
//% 'ppm' Pulse position demodulation
//% OPT is not used.
//% 'qam' Quadrature amplitude demodulation
//% For QAM signals, use [X1,X2] = DEMOD(Y,Fc,Fs,'qam')
//%
//% If Y is a matrix, its columns are demodulated.
//%
//% % Example:
//% % Demodulate a received signal which is frequency modulated at
//% % carrier frequency 3KHz.
//%
//% Fs = 8000; % sampling frequency
//% t = (0:1000-1)/Fs; % time vector
//% s = 4*cos(2*pi*500*t); % modulating signal
//% x = modulate(s,3e3,Fs,'fm',0.1); % modulated signal
//% rx = x + sqrt(1e-3)*randn(size(x)); % received signal
//% y = demod(rx,3e3,Fs,'fm'); % demodulated signal
//% [px,fx] = pwelch(rx,[],0,length(x),Fs); % PSD, received signal
//% [py,fy] = pwelch(y,[],0,length(y),Fs); % PSD, demodulated signal
//%
//% subplot(211);
//% plot(fx/1e3,px); grid on
//% title('Received signal')
//% ylabel('Amplitude(Watts)')
//%
//% subplot(212);
//% plot(fy/1e3,py,'r'); grid on
//% title('Demodulated Signal')
//% xlabel('Frequency(KHz)');
//% ylabel('Amplitude(Watts)')
//%
//% See also MODULATE in the Signal Processing Toolbox, and PAMDEMOD,
//% QAMDEMOD, GENQAMDEMOD, FSKDEMOD, PSMDEMOD, MSKDEMOD in the
//% Communications System Toolbox.
//
//% Copyright 1988-2013 The MathWorks, Inc.
//narginchk(3,5)
//% Cast to enforce precision rules
//Fc = signal.internal.sigcasttofloat(Fc,'double','demod','Fc', 'allownumeric');
//Fs = signal.internal.sigcasttofloat(Fs,'double','demod','Fs', 'allownumeric');
//% Checks if Y is a valid numeric data input. Cast to double since filtfilt
//% does not accept single inputs.
//isInputSingle = signal.internal.sigcheckfloattype(y,'single','demod','Y');
y = double(y);
x2=[];
if Fc >= Fs/2,
error(message('signal:demod:InvalidRange'));
end
if nargin<4,
method = 'am';
end
[r,c]=size(y);
if r*c == 0,
x = []; return
end
if (r==1), //% convert row vector to column
y = y(:); len = c;
else
len = r;
end
if strcmpi(method,'fm'),
if nargin < 5, P1 = 1; end
//P1 = signal.internal.sigcasttofloat(P1,'double','demod','OPT', 'allownumeric');
t = (0:1/Fs:((len-1)/Fs))';
t = t(:,ones(1,size(y,2)));
yq = hilbert(y).*exp(-%i*2*%pi*Fc*t);
x = (1/P1)*[zeros(1,size(yq,2)); diff(unwrap(angle(yq)))];
x2=[];
elseif strcmpi(method,'pm'),
if nargin < 5, P1 = 1; end
//P1 = signal.internal.sigcasttofloat(P1,'double','demod','OPT', 'allownumeric');
t = (0:1/Fs:((len-1)/Fs))';
t = t(:,ones(1,size(y,2)));
yq = hilbert(y).*exp(-%i*2*%pi*Fc*t);
x = (1/P1)*angle(yq);
elseif strcmpi(method,'pwm'),
//% precondition input by thresholding:
y = y>.5;
t = (0:1/Fs:((len-1)/Fs))';
len = ceil( len * Fc / Fs); //% length of message signal
x = zeros(len,size(y,2));
if nargin < 5
P1 = 'left';
end
if strcmpi('centered',P1)
for i = 1:len,
t_temp = t-(i-1)/Fc;
ind = (t_temp >= -1/2/Fc) & (t_temp < 1/2/Fc) ;
for j1 = 1:size(y,2) //% for each column ...
x(i,j1) = sum(y(ind,j1))*Fc/Fs;
end
end
x(1,:) = x(1,:)*2;
elseif strcmpi('left',P1)
for i = 1:len,
t_temp = t-(i-1)/Fc;
ind = (t_temp >= 0) & (t_temp < 1/Fc) ;
for j2 = 1:size(y,2) //% for each column ...
x(i,j2) = sum(y(ind,j2))*Fc/Fs;
end
end
else
error(message('signal:demod:SignalErr'))
end
//% w=diff([1; find(diff(y))]); //% <-- a MUCH faster way, but not robust
//% x=w(1:2:length(w))/Fs;
elseif strcmpi(method,'ptm') | strcmpi(method,'ppm'),
//% precondition input by thresholding:
y = y>.5;
t = (0:1/Fs:((len-1)/Fs))'*Fc;
len = ceil( len * Fc / Fs); //% length of message signal
x = zeros(len,size(y,2));
for i = 1:len
t_temp = t-(i-1);
ind = find( (t_temp >= 0) & (t_temp<1) );
for j3 = 1:size(y,2) //% for each column ...
ind2 = y(ind,j3)==1;
x(i,j3) = t_temp(min(ind(ind2)));
end
end
elseif strcmpi(method,'qam'),
t = (0:1/Fs:((len-1)/Fs))';
t = t(:,ones(1,size(y,2)));
x = 2*y.*cos(2*%pi*Fc*t);
x2 = 2*y.*sin(2*%pi*Fc*t);
[b,a]=butter(5,Fc*2/Fs);
for i = 1:size(y,2),
x(:,i) = filtfilt(b,a,x(:,i));
x2(:,i) = filtfilt(b,a,x2(:,i));
end
if (r==1), //% convert x2 from a column to a row if necessary
x2 = x2.';
end
if isInputSingle
x2 = single(x2);
end
end
if (r==1), //% convert x from a column to a row
x = x.';
end
//x = single(x);
endfunction
function [enveloppe,t] = Enveloppe(xx, Fs,fb, fh)
[wft,wfm,fr] = wfir('bp',256,[fb/Fs fh/Fs ],'hm',[-1 -1]);
t = (0:size(xx,2)-1)/Fs;
I=filter(wft,1,2*%pi*cos(t*Fs).*xx);
Q=filter(wft,1,2*%pi*sin(t*Fs).*xx);
enveloppe = (sqrt(I.^2+Q.^2));
endfunction
function Xenv = specenv(Xamp, f)//peaks=peak_detect(signal,threshold)
[Xpks, pksind] = findpeaks(Xamp+%eps);
fpks = (pksind-1)*(f(2) - f(1));
Xenv = interp1(fpks, Xpks, f, 'pchip');
Eenv = smooth(Xenv);
endfunction
function [Rxx] = autocorrelation(x)
//Autocorrelation of a given Input Sequence
//Finding out the period of the signal using autocorrelation technique
L = length(x);
h = zeros(1,L);
for i = 1:L
h(L-i+1) = x(i);
end
N = 2*L-1;
Rxx = zeros(1,N);
for i = L+1:N
h(i) = 0;
end
for i = L+1:N
x(i) = 0;
end
for n = 1:N
for k = 1:N
if(n >= k)
Rxx(n) = Rxx(n)+x(n-k+1)*h(k);
end
end
end
disp('Auto Correlation Result is')
Rxx
disp('Center Value is the Maximum of autocorrelation result')
[m,n] = max(Rxx)
disp('Period of the given signal using Auto Correlation Sequence')
n
endfunction
function y=getDistance(u,club)
[vBall, vBallCorrigee, vClub, SmashFactor,thetaLoft, ShafLeanImp, launchAngle, SpinZC, SpinZM, SpinLR, gamaFacePath,PointShoot] = Info2(u,club);
[wft1,wfm,fr] = wfir('bp',256,[(vBall*19.49-1000)/Fs (vBall*19.49+1000)/Fs ],'hm',[-1 -1]);
up=[u(PointShoot:$) zeros(1,2^ceil(log2(size(u(PointShoot:$),2)))-size(u(PointShoot:$),2))];
y=filter(wft1,1,up);
Fs = 44100;
N = size(y,2);
TailleWin = 256;
n = N/TailleWin;
f = Fs*(0:(TailleWin-1))/TailleWin;
figure();
for ii = 0:(n-1)
s2_fft = abs(real(fft(y((1+ii*TailleWin):((ii+1)*TailleWin)))));
[m(ii+1),k(ii+1)] = max(s2_fft);
end;
pause
endfunction
function xk=getArmonicFFT(u, niem)
N=size(u,2);
n = 1:N;
for k = 1:N
xk(1,k) = sum(u.*exp((-2*%pi*%i/N).*n.*k));
end
endfunction
// first input argument: the amplititude of message signal
// second input argument: the frequency of message signal
function s = cr_mod(valA,valB)
clf;
x= [0:0.001:2*%pi]';
z= cos((50-valB)*x) - cos((50+valB)*x);
z = valA *z;
plot(x, z);
xlabel("Time");
ylabel("Amplititude");
xtitle("Plot of amplitude modulated wave");
s=0;
endfunction
function [x,Vm,Vc,t]=fmmod(Ec,Em,fm,fc,fs,tfin)
//Ec -carrier amplitude in volts
//Em - message signal amplitude in volts
//fm - modulating signal frequency Hz
//fc - carrier signal frequency in Hz
//fs - sampling frequency in samples/sec
//k - frequency sensitivity in Hz/volts
t = 0:1/fs:tfin;
Vm = Em*sin(2*%pi*fm*t);
Vc = Ec*sin(2*%pi*fc*t);
k = 1.5;
x = Ec*sin((2*%pi*fc*t)+(k*Em/fm)*cos(2*%pi*fm*t));
subplot(3,1,1)
plot(t,Vm)
title('Modulating Signal')
subplot(3,1,2)
plot(t,Vc)
title('Carrier Signal')
subplot(3,1,3)
plot(t,x);
legend('FM Signal')
title('Frequency Modulated Signal')
endfunction
//Example
//Em = 2; //2 volts
//Ec = 6; //4 volts
//fm = 5; //2 Hz
//fc = 10; //10 Hz
//fs = 100; //samples/sec
function [x,Vm,Vc,t]=ampmod(Ec,Em,fm,fc,fs,tfin)
//Ec -carrier amplitude in volts
//Em - message signal amplitude in volts
//fm - modulating signal frequency Hz
//fc - carrier signal frequency in Hz
//fs - sampling frequency in samples/sec
t = 0:1/fs:tfin;
Vm = Em*sin(2*%pi*fm*t);
Vc = Ec*sin(2*%pi*fc*t);
x = (Ec+Em*sin(2*%pi*fm*t)).*(sin(2*%pi*fc*t));
subplot(3,1,1)
plot(t,Vm)
title('Modulating Signal')
subplot(3,1,2)
plot(t,Vc)
title('Carrier Signal')
subplot(3,1,3)
plot(t,x);
title('Amplitude Modulated Signal')
endfunction
//Example
//Em = 8; //8 volts
//Ec = 10; //20 volts
//fm = 2; //2 Hz
//fc = 10; //10 Hz
//fs = 100; samples/sec
//ampmod(Ec,Em,fm,fc,fs)
function[x,Vm,Vc,t]=pmmod(Ec,Em,fm,fc,fs,tfin)
//Ec -carrier amplitude in volts
//Em - message signal amplitude in volts
//fm - modulating signal frequency Hz
//fc - carrier signal frequency in Hz
//fs - sampling frequency in samples/sec
//k - Phase sensitivity in rad/volts
t = 0:1/fs:tfin;
Vm = Em*sin(2*%pi*fm*t);
Vc = Ec*sin(2*%pi*fc*t);
k = 1;
x = Ec*sin((2*%pi*fc*t)+(k*Em)*sin(2*%pi*fm*t));
subplot(3,1,1)
plot(t,Vm)
title('Modulating Signal')
subplot(3,1,2)
plot(t,Vc)
title('Carrier Signal')
subplot(3,1,3)
plot(t,x);
legend('PM Signal')
title('Phase Modulated Signal')
endfunction
//Example
//Em = 2; //2 volts
//Ec = 6; //4 volts
//fm = 5; //2 Hz
//fc = 10; //10 Hz
//fs = 100; samples/sec
function freqMax = afficheDemod(x, Fs, v)
[wft,wfm,fr] = wfir('bp',254,[1200/Fs 6000/Fs ],'hn',[-1 -1]);
[x1,y] = demod(x, v * 19.49, Fs,'am');
[wft1,wfm,fr] = wfir('bp',254,[30/Fs 12000/Fs ],'re',[-1 -1]);
x1 = filter(wft1,1,x1);
[M51,tt5,f5]=animDensite(filter(wft1,1,x1), Fs, 256*16 ,32*16 , 1, -0,1);
figure();plot(f5,sum(M51(:,1:$-1)/max(sum(M51(:,1:$-1),'r')),'r'),'b');
[x2,y2] = demod(x1, 43, Fs,'pm');
[wft2,wfm,fr] = wfir('bp',254,[30/Fs 1200/Fs ],'re',[-1 -1]);
x2 = filter(wft2,1,x2);
[M51,tt5,f5]=animDensite(x2,44100, 256*16*2 ,32*16*2 , 0, -0,1);
plot(f5,sum(M51(:,1:$-1)/max(sum(M51(:,1:$-1),'r')),'r'),'r');
[m,k]=max(sum(M51(:,1:$-1),'r'));
freqMax = f5(k);
endfunction
function freqMax = afficheDemod2(x, Fs, v)
[wft,wfm,fr] = wfir('bp',254,[((v-50)*19.49)/Fs ((v+50)*19.49)/Fs ],'hn',[-1 -1]);
[x2,y2] = demod(filter(wft,1,x), 100, Fs,'pm');
[wft2,wfm,fr] = wfir('bp',254,[30/Fs 1200/Fs ],'re',[-1 -1]);
x2 = filter(wft2,1,x2);
[M51,tt5,f5]=animDensite3(x2,44100, 256*16*2 ,32*16*2 , 0, -0,1);
plot(f5,sum(M51(:,1:$-1)/max(sum(M51(:,1:$-1),'r')),'r'),'r');
[x1,y] = demod(x2, v * 19.49, Fs,'am');
[wft1,wfm,fr] = wfir('bp',254,[30/Fs 200/Fs ],'re',[-1 -1]);
x1 = filter(wft1,1,x1);
[M51,tt5,f5]=animDensite3(filter(wft1,1,x1), Fs, 256*16 ,32*16 , 0, -0,1);
plot(f5,sum(M51(:,1:$-1)/max(sum(M51(:,1:$-1),'r')),'r'),'b');
legend('Phase Demo','Amp Demo');
[m,k]=max(sum(M51(:,1:$-1),'r'));
freqMax = f5(k);
endfunction
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
function AfficheTFCT(y, larFenetre, pasFenetre, beta, Fs)
// Affichage de la TFCT du signal après fenêtrage
nbEch = size(y,'r');
fq=(0:nbEch-1)*Fs/nbEch;
wTFD=window('hn',nbEch,beta)';
wTFCT=window('hn',larFenetre,beta)';
fMin = 1;
fMax = Fs/2;
indTFCT=find(fq>= fMin & fq<=fMax);
stft=TFCT(y,wTFCT,pasFenetre,-1);
[nbFreq nbSpec]=size(stft);// Nombre de fréquences Nombre de spectres
indFreqHaute=indTFCT($);
indFreqBasse=indTFCT(1);
//Matplot(abs(stft(indFreqHaute:-1:indFreqBasse,:))/max(abs(stft))*256);
f = figure();f.color_map = hotcolormap(4);Sgrayplot(tt5,fq,stft);
endfunction
//
// Transformée de Fourier à court terme
//
function X=TFCT(x,w,pas,signe)
larFen=length(w);
if signe==-1 then
N=length(x);
origFen=1:pas:N-1;
X=zeros(larFen,length(origFen));
for i=1:length(origFen)
xf=[x(origFen(i):min(origFen(i)+larFen-1,N));zeros(larFen-(min(origFen(i)+larFen-1,N)-origFen(i)+1),1)];
X(:,i)=fft(xf.*w);
end
else
X=zeros(signe,1);
sw2=zeros(signe,1);
[nbFreq nbSpectre ]=size(x);
for i=1:nbSpectre
ind=(i-1)*pas+1:min((i-1)*pas+larFen,length(X));
xx=ifft(x(:,i)).*w;
X(ind)= X(ind)+xx(1:ind($)-ind(1)+1);
sw2(ind)=sw2(ind)+w(1:ind($)-ind(1)+1).^2;
end
ind=find(sw2==0)
if length(ind)>0
disp('Attention fenêtre avec valeur nulle. Reconstruction incomplète');
end
ind=find(abs(sw2)>0);
X(ind) = X(ind) ./ sw2(ind);
end
endfunction
function [fdb] = F_Dopp_B(t,v,rpm)
r = 0.043/2;
Vlumiere = 299792458 ; // m/s
Freq = 10.525e9; // 1/s
lambda = Vlumiere / Freq;
w = rpm*2*%pi/60;
fdb = 2*(v+r*w*cos(w*t))/lambda;
endfunction
function s_B = signal_B(t,v,rpm)
//t=1:size(xg,2);
// v vitesse en m/s
Vlumiere = 299792458 ; // m/s
Freq = 10.525e9; // 1/s
lambda = Vlumiere / Freq;
w = rpm*2*%pi/60;
s_B = signal_A(t,v,rpm).*smod_B(t,v,rpm);
endfunction
function s_A = signal_A(t,v,rpm)
// v vitesse en m/s
r = 0.043/2;
Vlumiere = 299792458 ; // m/s
Freq = 10.525e9; // 1/s
lambda = Vlumiere / Freq;
w = rpm*2*%pi/60;
a_t = 2; // amplitude recu du signal ==> Enveloppe
s_A = a_t * exp(-%i*2*%pi*(2*v/lambda)*t);
endfunction
function s_modb = smod_B(t,v,rpm)
// v vitesse en m/s
r = 0.043/2;
Vlumiere = 299792458 ; // m/s
Freq = 10.525e9; // 1/s
lambda = Vlumiere / Freq;
w = rpm*2*%pi/60;
d_t = 0.1; // intensite de reflexion du point B
s_modb = exp(-%i*2*r*sin(w*t)/lambda)*d_t;
s_modb = s_modb-mean(s_modb);
endfunction
function rpm = deltaF(df)
r = 0.043/2;
rpm = df*60/(2*%pi*r*19.49);
endfunction
function N = getPointShoot(x, Fs, FBall)
Fenetre = 32;dt=0;
[wft2,wfm,fr] = wfir('bp',256,[(FBall/1.5)/Fs (FBall/1)/Fs ],'re',[-1 -1]); // coupe bande autour de la club
[M5,tt5,f5]=animDensite3(filter(wft2,1,x),Fs, 256*2*4 ,Fenetre*4 , 0, -50,0); // NON NORMALISE !!
[m1,k1] = max(sum(M5.^2,'c')); N = tt5(k1)*Fs;// temps du shoot
endfunction
function [Line, tt5] = afficheVitesse(x,Fs)
[wft,wfm,fr] = wfir('bp',254,[1000/Fs 6000/Fs ],'hn',[-1 -1]);
//[s2_densite,F]=frpowerspec(filter(wft,1,x)+0*%i);
[M5,tt5,f5]=animDensite3(filter(wft,1,padding2(afficheDenoise(x,0.0))),2*Fs, 256*16*2 ,32*16*2 , 0, -15,0);
M5Sqr = M5.^2;
//drawlater();
for ii=1:size(M5Sqr,1)
[j,k] = max(M5Sqr(ii,:));
Line(ii) = f5(k);
end;
//plot(tt5,Line,'o');
//drawnow();
endfunction
function Sig = afficheDenoise(x,thrplus)
[thr,sorh,keepapp] = ddencmp('den','wv',x);
Sig = wdencmp('gbl',x,'db3',4,thr+thrplus,sorh,keepapp);
endfunction
function tt = getT(x,fs)
tt=(0:size(x,2)-1)/fs;
endfunction
function y = Acquisition(Fe, D, nbEch)
global z;
z=[];
nbCanaux=2;
indFluxEntree = 0;
DefNbCanaux(nbCanaux);
DefFreqEch(Fe);
PrepAcq(D,indFluxEntree);
OuvrirFlux();
DebutAcq();
sleep(fix((nbEch*1000)/Fe)+1);
[x err index]=LectureDonnee(nbEch);
err=0;
N=nbEch;
t=(0:N-1)'/Fe;
sleep(fix((nbEch*1000)/Fe)+1);
while (size(z,1) < D*Fe )
[x err index]=LectureDonnee(nbEch);
tic()
y=x(1:1:N)';
z=[z ;y];
e=toc();
tps=fix((nbEch/Fe-e)*1000);
// Temps nécessaire pour avoir de nouveaux échantillons
if tps>=0
sleep(tps+1);
end
end
FinAcq();
endfunction
function cf = polyfit1(x,y,n)
A = ones(length(x),n+1)
for i=1:n
A(:,i+1) = x(:).^i
end
cf = lsq(A,y(:))
endfunction
function p = polyfitMat(x,y,n)
x = x(:);
y = y(:);
mu= [mean(x);stdev(x)];
x = (x - mu(1))/mu(2);
//% Construct the Vandermonde matrix V = [x.^n ... x.^2 x ones(size(x))]
V(:,n+1) = ones(length(x),1);//,class(x));
for j = n:-1:1
V(:,j) = x.*V(:,j+1);
end
[Q,R] = qr(V,'e');
p = R\(Q'*y);
endfunction
function [PSD,F]=pWelch(x,varargin);
//PSD,F]=pWelch(x,windowl,noverlap,nf,fs,opt)
if argn(2)<1 then
error(msprintf(_("%s: Wrong number of input argument: %d to %d expected.\n"),"pWelch",1,6))
end
if type(x)<>1|and(size(x)>1)|~isreal(x) then
error(msprintf(_("%s: Wrong type for input argument #%d: A real vector expected.\n"),"pWelch",1))
end
x=x(:);
[w,sec_step,F,pad,opt,scal]=pWelch_options(varargin)
windowl=size(w,'*')
wpower=w'*w;//the window energy
nsecs=int((size(x,"*")-windowl+sec_step)/sec_step);
if nsecs<=0 then
PSD=[]
f=[]
return
end
ind=1:windowl;
PSD=0;
for k=1:nsecs
xd=x(ind+(k-1)*sec_step);
xe=w.*(xd-mean(xd));
fx=fft([xe;pad]);
PSD=PSD+real(fx.*conj(fx));
end
PSD=PSD/(nsecs*wpower*scal);
if opt=="onesided" then
n=ceil((size(F,'*')+1)/2)
F=F(1:n)
PSD=2*PSD(1:n)
end
endfunction
function [w,sec_step,F,pad,opt,scal]=pWelch_options(optlist)
//windowl,noverlap,nf,fs,opt,scale
withF=%f
nopt=size(optlist)
if nopt<1|optlist(1)==[] then
windowl=int(size(x,'*')/8)
w=window("hm",windowl)';
else
windowl=optlist(1)
if type(windowl)<>1|~isreal(windowl) then
error(msprintf(_("%s: Wrong type for input argument #%d: A real array expected.\n"),"pWelch",2))
end
if size(windowl,'*')>1 then
w=windowl(:)
windowl=size(w,'*')
else
w=window("hm",windowl)';
end
end
if nopt<2|optlist(2)==[] then
noverlap=round(windowl/2)
else
noverlap=optlist(2);
if type(noverlap)<>1|~isreal(noverlap)|size(noverlap,'*')>1|int(noverlap)<>noverlap then
error(msprintf(_("%s: Wrong type for input argument #%d: A positive integer expected.\n"),"pWelch",3))
end
end
if nopt<4|optlist(4)==[] then
fs=1
scal=2*%pi
else
fs=optlist(4)
if type(fs)<>1|size(fs,'*')<>1|fs<=0 then
error(msprintf(_("%s: Wrong type for input argument #%d: A positive real expected.\n"),"pWelch",5))
end
scal=fs
end
if nopt<3|optlist(3)==[] then
nf=max(256,2^nextpow2(windowl))
F=(0:(nf-1))*(fs/nf);
else
nf=optlist(3)
if type(nf)<>1|or(nf<0) then
error(msprintf(_("%s: Wrong type for input argument #%d: A positive real array expected.\n"),"pWelch",4))
end
if size(nf,'*')==1 then
F=(0:(nf-1))*(fs/nf)
else
F=nf
nf=size(F,'*')
withF=%t
end
end
if nopt<5 then
if withF then opt="twosided"; else opt="onesided";end
else
opt=optlist(5)
if type(opt)<>10|size(opt,'*')<>1 then
error(msprintf(_("%s: Wrong type for input argument #%d: A character string expected.\n"),"pWelch",5))
end
if withF&opt<>"twosided" then
error(msprintf(_("%s: Wrong value for input argument #%d: Must be in the set {%s}.\n"),"pWelch",5,"""twosided"""))
elseif and(opt<>["onesided","twosided"]) then
error(msprintf(_("%s: Wrong value for input argument #%d: Must be in the set {%s}.\n"),"pWelch",5,strcat(["""onesided""","""twosided"""],",")))
end
end
F=(0:(nf-1))'*(fs/nf);
sec_step=windowl-noverlap
if windowl<nf then
pad=zeros(nf-windowl,1)
else
pad=[]
end
endfunction
function peaks=peak_detect(signal,threshold)
// This function detect the peaks of a signal :
// --------------------------------------------
// For an input row vector "signal" , the function return
// the position of the peaks of the signal.
//
// The ouput "peaks" is a row vector (size = number of peaks),
// "peaks" =[] if no peak is found.
//
// Optional argument "threshold" eliminates the peaks under
// the threshold value (noise floor).
//
// Clipped peaks (more than 2 samples of the signal at the same value)
// are not detected.
// -------------------------------------------------------------------
// Jean-Luc GOUDIER 11-2011
// -------------------------------------------------------------------
[nargout,nargin] = argn(0);
if nargin==2 then ts=threshold;
end;
if nargin==1 then ts=min(signal);
end;
[r c]=size(signal);
Ct=getlanguage();
if Ct=="fr_FR" then
Msg="Erreur : le signal n''est pas un vecteur colonne";
else
Msg="Error : signal is not a row vector";
end
if r>1 then
error(Msg);
end;
Lg=c-1;
d_s=diff(signal);
dd_s=[d_s(1),d_s(1,:)]; // diff first shift
d_s=[d_s(1,:),d_s(Lg)]; // diff size correction
ddd_s=[dd_s(1),dd_s(1,1:Lg)]; // diff second shift
Z=d_s.*dd_s; // diff zeros
peaks=find(((Z<0 & d_s<0)|(Z==0 & d_s<0 & ddd_s>0)) & signal>ts);
endfunction
function y = envFIR(x,n)
//% construct ideal hilbert filter truncated to desired length
fc = 1;
t = fc/2 * ((1-n)/2:(n-1)/2)';
hfilt = sinc(t) .* exp(%i*%pi*t);
//% multiply ideal filter with tapered window
beta = 8;
firFilter = hfilt .* window('kr',n,beta)';
firFilter = firFilter / sum(real(firFilter));
//% apply filter and take the magnitude
y = zeros(x);
for chan=1:size(x,2)
y(:,chan) = abs(conv(x(:,chan),firFilter,'same'));
end
endfunction
// Copyright (C) 2013 - 2016 - Michael Baudin
// Copyright (C) 2010 - DIGITEO - Michael Baudin
// Copyright (C) 1993 - 1995 - Anders Holtsberg
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function [y,delta]=polyval(varargin)
// Polynomial evaluation
//
// Calling Sequence
// y = polyval(p,x)
// y = polyval(p,x,S)
// y = polyval(p,x,S,mu)
// y = polyval(p,x,[],mu)
// [y,delta] = polyval(p,x,S)
// [y,delta] = polyval(p,x,S,mu)
//
// Parameters
// p : a (n+1)-by-1 matrix of doubles, the coefficients of the polynomial, with powers in decreasing order
// x : a nx-by-my matrix of doubles, the points where to evaluate the polynomial
// S : the optional data structure from polyfit
// y : a nx-by-my matrix of doubles, the value of the polynomial at x
// delta : a nx-by-my matrix of doubles, the error estimate on y
//
// Description
// If p is a vector of length n+1 whose elements are the coefficients of
// a polynomial, then <literal>y=polyval(p,x)</literal> is the value of
// the polynomial, defined by its coefficients p, evaluated at x.
//
// These coefficients are ordered with powers in decreasing order:
//
// <latex>
// p(x) = p_1 x^n + p_2 x^{n-1} + ... + p_n x + p_{n+1}.
// </latex>
//
// If x is a matrix, the polynomial is evaluated at all
// points in x.
//
// <literal>[y,delta]=polyval(p,x,S)</literal> uses the optional output
// generated by <literal>polyfit</literal> to generate error
// estimates, y+/-delta.
// If the observations used by polyfit were associated
// with independent random errors from the normal distribution,
// approximately 68% of the predictions are in the interval
// [p-delta,p+delta].
//
// In the example below, we show how to use this
// in order to compute the bounds for the population predicted by
// a quadratic polynomial.
//
// Examples
// p=[3 2 1];
// y=polyval(p,[5 7 9])
// expected=[86 162 262]
//
// // Evaluate for x matrix
// x = linspace(0,%pi,10);
// y = sin(x);
// p = polyfit(x,y,3);
// // Evaluate at x matrix
// x = linspace(0,%pi,12);
// x=matrix(x,3,4)
// f=polyval(p,x)
// y=sin(x)
//
// // Evaluate 95% confidence bounds,
// // i.e. +/- 2*delta
// // Source: [1,2]
// cdate=(1790:10:1990)';
// pop=[
// 3.929214
// 5.308483
// 7.239881
// 9.638453
// 12.860702
// 17.063353
// 23.191876
// 31.443321
// 38.558371
// 50.189209
// 62.979766
// 76.212168
// 92.228496
// 106.02154
// 123.20262
// 132.16457
// 151.3258
// 179.32317
// 203.30203
// 226.5422
// 248.70987
// ];
// scf();
// plot(cdate,pop,"+")
// // Calculate fit parameters
// [p,S] = polyfit(cdate,pop,2);
// // Evaluate the fit and the prediction error estimate (delta)
// [pop_fit,delta] = polyval(p,cdate,S);
// // Plot the data, the fit, and the confidence bounds
// plot(cdate,pop_fit,"g-")
// plot(cdate,pop_fit+2*delta,"r:")
// plot(cdate,pop_fit-2*delta,"r:")
// // Annotate the plot
// xlabel("Census Year");
// ylabel("Population (millions)");
// title("Quadratic Polynomial Fit with Confidence Bounds")
//
// Authors
// Copyright (C) 2013 - 2016 - Michael Baudin
// Copyright (C) 2010 - DIGITEO - Michael Baudin
// Copyright (C) 1993 - 1995 - Anders Holtsberg
//
// Bibliography
// [1] http://en.wikipedia.org/wiki/Polynomial_interpolation
// [2] http://www.mathworks.fr/fr/help/matlab/data_analysis/programmatic-fitting.html
// [3] Numerical Computing with MATLAB, Cleve Moler, 2004
//
[lhs,rhs]=argn();
apifun_checkrhs ( "polyval" , rhs , 2:4 );
apifun_checklhs ( "polyval" , lhs , 1:2 );
//
p = varargin ( 1 );
x = varargin ( 2 );
S = apifun_argindefault(varargin,3,[]);
mu = apifun_argindefault(varargin,4,[]);
//
// Check Type
apifun_checktype ( "polyval" , p , "p" , 1 , "constant" );
apifun_checktype ( "polyval" , x , "x" , 2 , "constant" );
if (S<>[]) then
apifun_checktype ( "polyval" , S , "S" , 3 , "st" );
end
apifun_checktype ( "polyval" , mu , "mu" , 4 , "constant" );
//
// Check Size
apifun_checkvector ( "polyval" , p , "p" , 1 );
// Do not check x : vector or matrix
if (mu<>[]) then
apifun_checkvector ( "polyval" , mu , "mu" , 4, 2 );
end
//
// Check content
expfields=[
"R"
"df"
"normr"
];
if (S<>[]) then
if (fieldnames(S)<>expfields) then
error(msprintf(gettext("%s: Wrong input argument #%d: Expected output argument of polyfit"),"polyval",3));
end
end
if (mu<>[]) then
alpha = number_properties("tiniest");
apifun_checkgreq ( "polyval" , mu(2) , "mu(2)" , 4, alpha );
end
// Standardize, if required
if (mu<>[]) then
x=(x-mu(1))/mu(2);
end
//
y=[];
delta=[];
[nargout,nargin] = argn(0);
[m,n] = size(x);
nc = max(size(p));
// Do general case where X is an array
y = zeros(m,n);
for i = 1:nc
y = x .* y+p(i);
end
if (rhs>2)&(nargout>1) then
// Compute delta
x = x(:);
R=S.R;
degreef=S.df;
normr=S.normr;
// Construct Vandermonde matrix.
V(:,nc) = ones(length(x),1);
for j = nc-1:-1:1
V(:,j) = x .* V(:,j+1);
end
// Solve system with backslash
E = V/R;
if nc==1 then
e = sqrt(1+E .* E);
else
e = sqrt(1+sum(E.^2,"c")');
end
if degreef==0 then
warning(msprintf(gettext("%s: zero degrees of freedom implies infinite error bounds."),"polyval"));
delta = %inf*e;
else
delta = e*normr/sqrt(degreef);
end
delta = matrix(delta,m,n);
end
endfunction
// Copyright (C) 2013 - 2016 - Michael Baudin
// Copyright (C) 2010 - DIGITEO - Michael Baudin
// Copyright (C) 1993 - 1995 - Anders Holtsberg
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function [p,S,mu] = polyfit(x,y,n)
// Polynomial curve fitting
//
// Calling Sequence
// p = polyfit(x,y,n)
// [p,S] = polyfit(x,y,n)
// [p,S,mu] = polyfit(x,y,n)
//
// Parameters
// x : a nx-by-mx matrix of doubles
// y : a nx-by-mx matrix of doubles
// n : a 1-by-1 matrix of doubles, integer value, n>=0
// p : a 1-by-(n+1) matrix of doubles, the coefficients of the polynomial
// S : a structure to estimate the errors of evaluations (see below )
// mu : a 1-by-2 matrix of doubles, the standardizing parameter : mu(1) is mean(x) and mu(2)=stdev(x). Use mu to standardize the data for a more accurate evaluation of p, using the mean and the standard deviation.
//
// Description
// <literal>polyfit(x,y,n)</literal> finds the coefficients of a polynomial p(x) of
// degree n that fits the data, p(x(i)) to y(i), in a least-squares sense.
//
// These coefficients are ordered with powers in decreasing order:
//
// <latex>
// p(x) = p_1 x^n + p_2 x^{n-1} + ... + p_n x + p_{n+1}.
// </latex>
//
// The implementation is based on the QR decomposition.
//
// <literal>[p,S]=polyfit(x,y,n)</literal> returns the polynomial coefficients
// p and a data structure S for use with <literal>polyval</literal> to produce
// error estimates on predictions.
//
// The following are the fields of S.
// <itemizedlist>
// <listitem><para>
// S.R : Cholesky factors from the QR decomposition
// </para></listitem>
// <listitem><para>
// S.df : the number of degrees of freedom : nx-(n+1)
// </para></listitem>
// <listitem><para>
// S.norm : the 2-norm of the residuals
// </para></listitem>
// </itemizedlist>
//
// The computation of the coefficients p can be difficult in the case where
// the inputs x are of very different orders of magnitude.
// In order to get more accurate results, we can use the mu output argument.
// This has the effect of computing the standard variable
// z from :
//
// <latex>
// z_i = \frac{x_i-\overline{x}}{\sigma_x}
// </latex>
//
// where <latex>\overline{x}</latex> is the mean and
// <latex>\sigma_x</latex> is the standard deviation.
// This reduces the condition number of the associated Vandermonde
// matrix.
// In this case, the mu argument must be passed to the polyval function
// in order to evaluate the polynomial.
// This allows polyval to evaluate the polynomial depending on z.
//
// Examples
// x = linspace(0,%pi,10)';
// y = sin(x)
// p = polyfit(x,y,3)
// // Evaluate :
// f = polyval(p,x)
// // Compare with a table
// disp([x y f abs(f-y)])
// // Compare with a polynomial
// ff = p(1)*x.^3+p(2)*x.^2+p(3)*x+p(4)
// // Compare with a graphics
// // Notice that the fit is good up to x=%pi,
// // then the fit is not good anymore.
// x = linspace(0,4,100)';
// y = sin(x);
// f = polyval(p,x);
// scf();
// plot(x,y,"r-")
// plot(x,f,"b-")
// plot([%pi %pi],[-1 1],"g-")
// legend(["Sin","Polynomial","Limit"],"in_lower_left");
// xtitle("Degree 3 least squares polynomial","X","F(x)")
//
// // A difficult example : scaling is necessary.
// x=[-1e15 1.e6 1e15];
// y=[-12. 0 12.];
// p=polyfit(x,y,2) // A warning is generated
// [p,S,mu]=polyfit(x,y,2) // No problem
// // Evaluate :
// y2=polyval(p,x,S,mu)
//
// // Source [2]
// // Caution : the urban definition changes in 1950
// cdate=(1790:10:1990)';
// pop=[
// 3.929214
// 5.308483
// 7.239881
// 9.638453
// 12.860702
// 17.063353
// 23.191876
// 31.443321
// 38.558371
// 50.189209
// 62.979766
// 76.212168
// 92.228496
// 106.02154
// 123.20262
// 132.16457
// 151.3258
// 179.32317
// 203.30203
// 226.5422
// 248.70987
// ];
// scf();
// // Plot the data
// plot(cdate,pop,"+")
// // Calculate fit parameters
// [p,S] = polyfit(cdate,pop,2);
// // Evaluate the fit
// pop_fit = polyval(p,cdate,S);
// // Plot the fit
// plot(cdate,pop_fit,"g-")
// // Annotate the plot
// legend("Polynomial Model","Data","Location","in_upper_left");
// xtitle("","Census Year","Population (millions)");
//
// Authors
// Copyright (C) 2013 - 2016 - Michael Baudin
// Copyright (C) 2010 - DIGITEO - Michael Baudin
// Copyright (C) 1993 - 1995 - Anders Holtsberg
//
// Bibliography
// [1] http://en.wikipedia.org/wiki/Polynomial_interpolation
// [2] USA population : Population: 1790 to 1990, http://www.census.gov/population/censusdata/table-4.pdf
// [3] http://www.mathworks.fr/fr/help/matlab/data_analysis/programmatic-fitting.html
// [4] Numerical Computing with MATLAB, Cleve Moler, 2004
//
[lhs,rhs]=argn();
apifun_checkrhs ( "polyfit" , rhs , 3:3 );
apifun_checklhs ( "polyfit" , lhs , 1:3 );
//
// Check Type
apifun_checktype ( "polyfit" , x , "x" , 1 , "constant" );
apifun_checktype ( "polyfit" , y , "y" , 2 , "constant" );
apifun_checktype ( "polyfit" , n , "n" , 3 , "constant" );
//
// Check Size
nx=size(x,"*");
apifun_checkvector ( "polyfit" , x , "x" , 1 , nx );
apifun_checkvector ( "polyfit" , y , "y" , 2 , nx );
apifun_checkscalar ( "polyfit" , n , "n" , 3 );
//
// Check content
apifun_checkgreq ( "polyfit" , n , "n" , 3 , 0 );
apifun_checkflint ( "polyfit" , n , "n" , 3 );
//
x=x(:);
y=y(:);
//;
if lhs==3 then
// Compute mean and standard deviation
mu(1)=mean(x);
mu(2)=stdev(x);
// Standardize the input x
x=(x-mu(1))/mu(2);
end
//
//% Construct the Vandermonde matrix V = [x.^n ... x.^2 x ones(size(x))]
//vander=makematrix_vandermonde(x,n+1);
vander(:,n+1) = ones(length(x),1);
for j = n:-1:1
vander(:,j) = x.*vander(:,j+1);
end
// Reverse the columns
vander=vander(:,$:-1:1);
[Q,R] = qr(vander,"e");
Q = Q(:,1:size(R,2));
R = R(1:size(R,2),:);
//
condR=cond(R);
if (condR>1/sqrt(%eps)) then
warning(msprintf("%s: The matrix R is ill-conditionned : %e.\n Please use the standardizing mu output argument.\n","polyfit",condR));
end
//
p = R\(Q'*y);
r = y - vander*p; //residuals
p=p';
freed = nx - (n+1); //degree of freedom
//on return : Choleski factor and the norm of residuals
S.R=R;
S.df=freed;
S.normr=norm(r);
endfunction
|
1ad5ae03bd136fc976d051215d63490aaeff4f95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH27/EX27.9/ques9.sce | 305d4d97372a3ec601adf77c57029f7df12f9a74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 408 | sce | ques9.sce | //ques7
clc
disp('Solution using Eulers Method ');
disp x y;
n=input('Input the number of iteration :-');
x=0.2;
m=1;
y=1;
yn=1;
y1=1;
k=1;
for i=1:n
yn=y;
for i=1:4
m=(k+y1)/2;
yn=y+0.2*m;
y1=(sqrt(yn)+x);
disp(yn);
end
disp('-----------------------');
y=yn;
m=y1;
yn=yn+0.2*m;
disp(yn);
x=x+0.2;
yn=y;
k=m;
end
disp('The value of y is :-');
disp(y); |
f50cb48af09cc18d1433ce2d3d69b4b6f2cddeae | 449d555969bfd7befe906877abab098c6e63a0e8 | /887/CH5/EX5.4/5_4.sce | 21f22637db7342cddfc5cf8db463f9f62df25e01 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,529 | sce | 5_4.sce | clc
//ex5.4
L=0.3;
C=40*10^-6;
R=100;
V_s_max=100; //peak value of given voltage
W=500; //angular frequency
V_s_phi=%pi/6; //phase angle in degrees
V_s=complex(V_s_max*cos(V_s_phi),V_s_max*sin(V_s_phi)); //phasor for voltage source
Z_L=%i*W*L; //complex impedance of inductance
Z_C=-%i/(W*C); //complex impedance of capacitance
Z_eq=R+Z_L+Z_C; //R,Z_L and Z_C in series
I=V_s/Z_eq; //phasor current
V_R=R*I;
V_L=Z_L*I;
V_C=Z_C*I;
printf(" All the values in the textbook are approximated hence the values in this code differ from those of Textbook")
//for resistance R
disp('For resistance R')
V_R_max=sqrt((real(V_R)^2)+(imag(V_R)^2));
V_R_phi=(atan(imag(V_R)/real(V_R)))*180/%pi;
disp(V_R_max,'peak value of voltage in volts')
disp(V_R_phi,'phase angle in degrees')
//result : V_R=Vcos(wt+phi) V-peak voltage
//for inductance L
disp('For inductance L')
V_L_max=sqrt((real(V_L)^2)+(imag(V_L)^2));
V_L_phi=(atan(imag(V_L)/real(V_L)))*180/%pi;
disp(V_L_max,'peak value of voltage in volts')
disp(V_L_phi,'phase angle in degrees')
//result : V_L=Vcos(wt+phi) V-peak voltage
//for capacitor C
disp('For capacitor C')
V_C_max=sqrt((real(V_C)^2)+(imag(V_C)^2));
V_C_phi=(atan(imag(V_C)/real(V_C)))*180/%pi;
disp(V_C_max,'peak value of voltage in volts')
disp(V_C_phi,'phase angle in degrees') //cos(t)=cos(t-180) (we get 75 instead of -105 given in textbook)
//result : V_C=Vcos(wt+phi) V-peak voltage
disp('The phasor diagram cannot be plotted')
|
27f1e1f4ee7de58f767203b62e47b4b9a17b190d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH2/EX2.15/exa_2_15.sce | c52a042f88587034815c0d4acf9b388ab54d0f1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | exa_2_15.sce | // Example 2.15
clc;
clear;
close;
// Given data
Int_energy_changes= 20;// in kJ/kg
Q= 0;// in kJ
W= -90;// in kJ
E= Q-W;// change in internal energy in kJ/kg
m= E/Int_energy_changes;// in kg
disp(m,"The mass of the fluid in the system in kg is : ")
|
7aa8e4b4c8b7ed91b9d0a0e695d10ee712b99d2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /51/CH11/EX11.19/11_19.sce | 6a03c6881ee93138bc694f8feff1feaae8df2211 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,142 | sce | 11_19.sce | clc;
clear;
x1=0.5;//m
x2=0.3;//m
Acritical=0.1;//m^2
//at x1, Max1 is found as
Max1=2.8;
//and px/p0,x is found as
pratio1=0.04;
//For this value of Max, py/px is found as
prat1=9;
pfraction1=prat1*pratio1;//where pfraction=py/p0,x = pIII/p0,x
//at x2, Max2 is found as
Max2=2.14;
//for this value of Max2, the following are found
prat2=5.2;
prat22=0.66;//where prat22=p0,y/p0,x
May=0.56;
//for this valur of May, Ay/Acritical is found as
Aratio=1.24;
Arat=(Acritical+(x1^2))/(Acritical+(x2^2));//where Aratio=A2/Ay
Afraction=Aratio*Arat;//where Afraction=A2/Acritical
A2=Acritical+(x1^2);//m^2
Acritical1=A2/Afraction;//where Acritical1 critical area for the isentropic flow downstream of the shock
//with the value of Afraction, the following are found
Ma2=0.26;
pfraction=0.95;//where pfraction=p2/p0,y
//hence,
pfrac=pfraction*prat22;//where pfrac=p2/p0,x
disp(pfraction1,"The ratio of back pressure to inlet stagnation pressure that will result in a normal shock at the exit of the duct=")
disp(pfrac,"The value of back pressure to inlet stagnation pressure required to position the shock at (x=0.3 m)=")
|
b09f372f697fbaae82e186de65c2d35356eb53f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1580/CH9/EX9.16/Ch09Ex16.sce | 9b4d33931bc590d3bd4c5fc97633189981f3d992 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | Ch09Ex16.sce | // Scilab Code Ex9.16: Page-9.47 ; (2004)
clc;clear;
e = 1.6e-19; // Electronic charge, C
B = 1.5; // Magnetic field, tesla
I = 50; // Current, ampere
n = 8.4e+28; // Electron density, per metre cube
t = 0.5e-2; // thickness of slab, metre
RH = 1/(n*e); // Hall coefficent
V_H = RH*I*B/t; // Hall voltage, volt
printf("\nHall Voltage = %3.3f micro volt", V_H/1e-6);
//Result
// Hall Voltage = 1.116 micro volt
|
4e999a6163af08ba87df76e8cbb6a660c048c3f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH2/EX2.2/Ex2_2.sce | 2cecc7b322a2749d84854ee3cc13b7e44514dfb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | Ex2_2.sce | clc
//to calculate ratio of intensity
//I1/I2=1/25
//formula is a1/a2=sqrt(I1/I2)=1/5
a2=5 //a2=5*a1
a1=1
I=((1+5)^2)/((1-5)^2)
disp("ratio of intensity at the maxima and minima in the interference pattern is Imax/Imin=((a1+a2)^2)/((a1-a2)^2)="+string(((a1+a2)^2)/((a1-a2)^2))+"unitless")
//answer is given in terms of ratio
|
7503b35f89207861d169ec81d9693beff910de41 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH11/EX11.2/11_2.sce | 78415357fcfe15d236420607ef167f8aff138006 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | 11_2.sce | clc
//Initialization of variables
d=0.006 //m
U=0.01 //m/s
gaml=8000 //N/m^3
gams=7.9*10^3 *9.81
mu=13.9
//calculations
mu= d^2 /18 *(gams - gaml)/U
RN= U*d*(gaml/9.81) /mu
//results
printf("Viscosity of oil = %.1f Ns /m^2",mu)
|
78bff318818353843d5d0f168c9e42167e8feceb | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH2/EX2.4/Example2_4.sce | 6db7c40e219b74eb87d8ca3f4d2e88b7082e668a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example2_4.sce | //Resistance R, Voltage V, Current I
close();
clear;
clc;
R1 = 5;//ohm
R2 = 15;
R3 = 5;
R4 = 4;
R5 = 12;
V5 = 132;//V
I = V5/R5;
I1 = (R1+R2)/(R1+R2+R3)*I;
I2 = R3/(R1+R2+R3)*I;
mprintf('I1 = %0.1f A\nI2 = %0.1f A',I1,I2); |
e73c8e5a2da6c4eaa2168699a7e4fef3232d4975 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH2/EX2.19/Ex2_19.sce | b50515b7b399ba2b9aed8c534c20b1484a84af36 | [] | 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 | 151 | sce | Ex2_19.sce | errcatch(-1,"stop");mode(2);//Ex:2.19
;
;
C=10*10^-6;
V=250;//in volts
Q=V*C*1000;//in millicoulomb
printf("Charged stored =%f mC",Q);
exit();
|
02b1fd61a2f6cd91ac1b69d98b74ceb969f15e0c | 61129043aed87983b640a33b1c260316043fa570 | /drawing/primitives/hex_3d.sci | 56a089907447d44224c672fa491098abc2460bbf | [] | no_license | dgerod/gfx4scilab | 7643dbb42fcbea772af12017dccf484544da6f79 | 4aafc59f241a9383de65e4fb25eefef80660bf64 | refs/heads/master | 2021-01-19T03:35:08.368764 | 2017-04-08T06:05:33 | 2017-04-08T06:05:33 | 61,438,380 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,517 | sci | hex_3d.sci | // =============================================================================
// gfx4scilab - drawing
// dgerod@xyz-lab.org.es
// =============================================================================
function [Hex3d] = dw_Hex3d_create(R, T)
Hex3d = 0;
if rt_ishomog(T) == %T then
r = (1/2)*sqrt(3)*R;
s = R - r;
dim = struct("R",R, "r", r," s", s);
Hex3d = struct("dim", dim, "T", T);
end
return [Ret,Hex3d];
endfunction
// -----------------------------------------------------------------------------
function [Points] = dw_Hex3d_getPoints(Hex3d)
r = Hex3d.dim.r;
R = Hex3d.dim.R;
T = Hex3d.T
hex(:,1) = [R/2,r,0]';
hex(:,2) = [R,0,0]';
hex(:,3) = [R/2,-r,0]';
hex(:,4) = [-R/2,-r,0]';
hex(:,5) = [-R,0,0]';
hex(:,6) = [-R/2,r,0]';
hex = hex';
a = T * [hex'; ones(1,size(hex',2))];
Points = (a(1:3,:))';
return [Points];
endfunction
// -----------------------------------------------------------------------------
function [Handle] = dw_Hex3d_draw(Hex3d)
Handle = list();
p = dw_Hex3d_getPoints(Hex3d);
// Add first point to last position for closing the figure.
points = [p; p(1,:)];
// Prepare coordenates.
hex_x = points(:,1);
hex_y = points(:,2);
hex_z = points(:,3);
Handle($+1) = param3d(hex_x, hex_y, hex_z);
return [Handle];
endfunction
// =============================================================================
|
27b1e3919518d67f3aed3d86f4117475a619c238 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3763/CH7/EX7.2/Ex7_2.sce | 01019ddb3f32936751131fafc1283433aaac67c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | Ex7_2.sce | clear
//
//
//
//Variable declaration
e=1.6*10**-19 //charge(coulomb)
new=6.8*10**15 //frequency(revolutions per second)
mew0=4*%pi*10**-7
R=5.1*10**-11 //radius(m)
//Calculation
i=(e*new) //current(ampere)
B=mew0*i/(2*R) //magnetic field at the centre(weber/m**2)
A=%pi*R**2
d=i*A //dipole moment(ampere/m**2)
//Result
printf("\n magnetic field at the centre is %0.0f weber/m**2",B)
printf("\n dipole moment is %0.0f *10**-24 ampere/m**2",d*10**24)
|
40c5b69c3731b334579ce06cd4f3a6d04ad1059c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3811/CH3/EX3.12/Ex3_12.sce | 0c48d7af4d6efdb648e3fdeed7b7a5ac5e43039f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 610 | sce | Ex3_12.sce | //Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 3
//example 3.12
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
f=500; //frequency at the load side in Hz
t=1/f; //time for one cycle in sec
tseg=t/6; //time of the switching segment in sec
tcon=3*tseg; //conduction period of each transistor in sec
tcon1=tcon*10^3; //conduction period of each transistor in msec
disp(tcon1,'The conduction period of each transistor in msec is')
|
54266aa9e3247654e3c23a5e5a5a920765945c14 | 4014300a072f0492747983563943f01f78a1b16d | /test/unit_test/reports/tst-assume.tst | 7ce5410aaee1f2caf05d03c082ebda9c7f08afd4 | [
"BSD-3-Clause"
] | permissive | eyasuashenafi/ninja | e351cc90e8c815e018447750cd40fa38796f6c51 | daf739b82e48d3b60c43cf699fbb39f96d9fa27a | refs/heads/master | 2020-12-03T13:50:39.324069 | 2012-09-28T14:23:00 | 2012-09-28T14:23:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 662 | tst | tst-assume.tst | description = Assume states during program downtime
logfile = assumed_states_during_program_downtime.log
assumed states during program downtime #1 {
assumestatesduringnotrunning = true
start_time = 1202684400
end_time = 1202770800
host_name {
testhost
}
correct {
TIME_UP_SCHEDULED = 0
TIME_UP_UNSCHEDULED = 86400
TIME_UNDETERMINED_NOT_RUNNING = 0
}
}
first state is undetermined {
start_time = 1202690000
end_time = 1202699000
host_name {
testhost
}
correct {
TIME_UP_UNSCHEDULED = 3800
TIME_UNDETERMINED_NOT_RUNNING = 5200
subs {
testhost {
TIME_UP_UNSCHEDULED = 3800
TIME_UNDETERMINED_NOT_RUNNING = 5200
}
}
}
}
|
8158a46db6b108110a00da3e25b664e4c9000f17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1586/CH12/EX12.8/EXP12_8.sce | d6ddd193b93a34956e69f20744192014317bad08 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | EXP12_8.sce | clc;funcprot(0);//EXAMPLE 12.8
// Initialisation of Variables
d=0.001;........//Actual distence between one alpha plate to next alpha plate
S=14;..........//Spacings between between one alpha plate to next alpha plate
//CALCULATIONS
lamida=d/S;......//The interlamellar spacing between one alpha plate to next alpha plate in Pearlite Microstructure
disp(lamida,"The interlamellar spacing between one alpha plate to next alpha plate in Pearlite Microstructure:")
|
10b150c641ea0649a9ae9c6c20b757eaab5ba447 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH13/EX13.2/13_2.sce | d328c9b921071ab6d6e5a3d4e10452a580c11fd3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | 13_2.sce | clear;
clc
P=4
f=50
G=200
H=6
J=G*H
mprintf("\n(a)stored energy = %.0f MJ",J)
Pl=120
Pl1=160
Pa=Pl-Pl1
M=J/(180*f)
a=Pa/M
mprintf("\n(b)acceleration = %.0f elec deg/ sec sq",a)
c=5
t=c/f
dd=.5*a*t*t
N=120*f/P
a=a*60/(180*P)
Nn=N+(a*t)
mprintf("\n(c)change in power angle = %.1f elec deg, change in speed = %.1f rpm",dd,Nn)
G2=150
H2=4
Gb=100
Heq=((G*H)+(H2*G2))/Gb
mprintf("\n(d)Equivalent inertia constant = %.0f MJ/MVA",Heq)
|
dd2638fdf8cd78127f0d60baaf9cbb39b6cc4979 | 2875b7a7a87e6280e5aac1fb50dc04dfbcc23d3f | /lec/kalman/scilab/1dof_KBF.sce | 868e407660aec3ae85b8f7092eb41763454c7285 | [] | no_license | ktysd/ktysd.github.io | eb8946c877a6cb209960be57bfbcc1fe429abedd | 1e29a628e63ea476b4891da5c12276d1ae11c4a7 | refs/heads/master | 2021-04-26T15:07:02.322758 | 2020-11-02T07:33:51 | 2020-11-02T07:33:51 | 123,993,111 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,992 | sce | 1dof_KBF.sce | clear; clf();
///// definition of target system /////
c=0.3; k=1; dt=0.1; tn=200;
A=[0, 1; -k, -c];
D=[0; 1];
C=[0, 1];
x0=[1; 0];
///// solve the target system /////
function dx = eom(t,x,A,D,w)
dx = A*x + D*w;
endfunction
function x = eom_solve(x0,t0,dt,A,D,w)
xx=ode( x0, t0, [t0,t0+dt], list(eom,A,D,w) );
x=xx(:,$); //dt 後の解
endfunction
function [xx,yy,tt] = solve_target(x0,tn,dt,A,D,C,Q,R)
x=x0; xx=[x0']; yy=[(C*x0)']; tt=[0];
rand('seed',9);
wt=sqrt(Q)*rand(size(Q,'c'),tn,'normal');
vt=sqrt(R)*rand(size(R,'c'),tn,'normal');
for ti=1:tn
t = ti*dt;
/// solve target system ///
x = eom_solve(x,t,dt,A,D,wt(ti));
y = C*x + vt(ti);
/// Store data ///
xx = [xx;x']; yy = [yy;y']; tt = [tt;t];
end
endfunction
///// Kalman Bucy filtering /////
exec KBF.sci;
function xx = KalmanBucyFilter(yy,tt,x0,P0,A,D,C,Q,R);
//initial condition
X0 = KBF_setX0( x0, P0 );
X = X0; xx=[]; tn=length(tt); dt=tt(2)-tt(1);
for ti=1:tn
//filtering
X = KBF(yy(ti),X,tt(ti),dt,A,D,C,Q,R);
xf = KBF_mean(X,2);
xx = [xx;xf'];
end
endfunction
///// Numerical Integration /////
function xx=numint(x0,yy,dt)
xx=[]; tn=max(size(yy));
x=x0(1);
for ti=1:tn
xx = [xx;x'];
x = x + yy(ti)*dt;
end
endfunction
///// Calculating and plotting /////
function plot_result(tt,xx,yy,xxf,xxint)
clf();
subplot(2,1,1);
g=gca(); g.isoview="off"; //座標軸の取得; 縦横比1;
g.data_bounds=[0,-1.5;20,1.5]; //座標軸の設定
plot(tt,xx(:,2), "g.", tt,yy, "b-", tt,xxf(:,2), "r-");
legend("Real","Noisy measured","Filtered");
xlabel("Time"); ylabel("Measurement");
subplot(2,2,3);
plot(xx(:,1),xx(:,2), "g.", xxint,yy, "b-");
legend("Real","Num. int");
xlabel("Sum of y_n*dt"); ylabel("y_n");
subplot(2,2,4);
plot(xx(:,1),xx(:,2), "g.", xxf(:,1),xxf(:,2), "r-");
legend("Real","Filtered");
xlabel("x_1"); ylabel("x_2");
g=gca(); g.isoview="off"; //座標軸の取得; 縦横比1;
g.data_bounds=[-1,-1.5;1.2,1.5]; //座標軸の設定
endfunction
tn=200; x0=[1; 0];
///// noiseless system + noisy measurement /////
Q=1e-16; R=0.1;
[xx,yy,tt]=solve_target(x0,tn,dt,A,D,C,Q,R);
xxf = KalmanBucyFilter(yy,tt,x0,[0,0;0,0],A,D,C,Q,R);
xxint=numint(x0,yy,dt);
plot_result(tt,xx,yy,xxf,xxint);
prefix="1dof_KBF_Q0_R1";
xs2eps(0,prefix+".eps"); xs2png(0,prefix+".png");
// noisy system + noiseless measurement
Q=0.1; R=1e-16;
[xx,yy,tt]=solve_target(x0,tn,dt,A,D,C,Q,R);
xxf = KalmanBucyFilter(yy,tt,x0,[0,0;0,0],A,D,C,Q,R);
xxint=numint(x0,yy,dt);
plot_result(tt,xx,yy,xxf,xxint);
prefix="1dof_KBF_Q1_R0";
xs2eps(0,prefix+".eps"); xs2png(0,prefix+".png");
// noisy system + noisy measurement
Q=0.1; R=0.1;
[xx,yy,tt]=solve_target(x0,tn,dt,A,D,C,Q,R);
xxf = KalmanBucyFilter(yy,tt,x0,[0,0;0,0],A,D,C,Q,R);
xxint=numint(x0,yy,dt);
plot_result(tt,xx,yy,xxf,xxint);
prefix="1dof_KBF_Q1_R1";
xs2eps(0,prefix+".eps"); xs2png(0,prefix+".png");
|
3815c264f7364a5aa4391fefd10baaff1d6030e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH9/EX9.11/11.sce | c6da59adba213d6dd9c3609632b519e7bdfb861e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 947 | sce | 11.sce | clc
Q=0.05; // m^3/s
v=2; // m/s
f=0.005;
L_s=5; // m
d=0.178; // m
g=9.81; // m/s^2
L_d=20; // m
p2=1.5*10^5; // N/m^2
p1=0.5*10^5; // N/m^2
rho=1000; //kg/m^3
z2=15; // m
z1=5; // m
N1=1500/60; // rps
d=(4*Q/%pi/v)^(1/2);
H_f_s=4*f*L_s/d*v^2/2/g;
H_f_d=4*f*L_d/d*v^2/2/g;
H=1/(1-0.25)*((p2-p1)/rho/g + v^2/2/g + z2 - z1 + H_f_s + H_f_d);
// n=rho*g*Q*H/P
Q=[0 5 10 15 20 25];
H=[9.25 8.81 7.85 6.48 4.81 2.96];
P=[- 0.96 1.03 1.19 1.26 1.45];
n=[0 45 75 800 75 50];
H=27.96; // m
H1=6.48; // m
Q1=0.015; // m^3/s
Q=0.05; // m^3/s
D1=0.15; // m
n=0.80;
disp("Differential Head =")
disp(H)
disp("m")
N=N1*(H/H1)^(3/4)*(Q1/Q)^(1/2);
D=D1*(Q*N1/Q1/N)^(1/5);
disp("The impeller diameter =")
disp(D)
disp("m")
disp("The rotational speed at maximum efficiency =")
disp(N)
disp("rps")
P=rho*g*Q*H/n;
disp("Power input to the pump =")
disp(P)
disp("W")
N_s=N1*Q1^(1/2)/H1^(3/4);
|
c7ac079f8e8bb7379cdaddc8799b480371c632c5 | 638792a4fe4462b8d15e3374e76b149c6f5ee3e0 | /FISH/MCT_FISH_practice.sce | 39f24cd130e58d4c8193d0146434e37ef6c15884 | [] | no_license | katielavigne/fMRI_tasks | 8cdb3bc63486a2b44118bc8b4c67b5799cd5080b | abd1f0b089f454531723186d50afdfa17912321c | refs/heads/main | 2023-09-01T12:59:35.488292 | 2021-11-03T12:26:15 | 2021-11-03T12:26:15 | 424,210,826 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,736 | sce | MCT_FISH_practice.sce | scenario = "fMRI-only version for MCT project";
#scenario_type = trials;
#scenario_type = fMRI;
scenario_type = fMRI_emulation;
scan_period = 2000;
pulses_per_scan = 1;
pulse_code = 1;
#pcl_file="MCT_EEG_fMRI_fish_greenlakeisfocal.pcl";
pcl_file="MCT_FISH_practice.pcl";
#write_codes = true;
#pulse_width=10;
active_buttons = 3;
button_codes= 3,1,9;
default_background_color=0,0,0;
default_font="arial";
default_font_size = 40;
#default_text_color = 255,255,255;
default_text_color=255,255,255;
########################################################################
begin;
$xoffleft='-80';
$xoffright='80';
$defaultITIdur='1000';
box {height=200; width=340; color=123,123,123;} frame_box;
box {height=20; width=20; color=0,0,0;} blacksquare_box;
box {height=20; width=20; color=123,123,123;} greysquare_box;
box {height=24; width=24; color=255,255,255;} whitesquare_box;
ellipse_graphic{ellipse_height = 150; ellipse_width=120; color = 40,210,160,255;}green_ellipse;
ellipse_graphic{ellipse_height = 150; ellipse_width=120; color = 40,160,210,255;}blue_ellipse;
bitmap { filename="fixn_point.png";}fixn;
bitmap { filename="whitefish_for_fixn.png"; } bmp_whitefish_fixn;
bitmap { filename="blackfish_for_fixn.png"; } bmp_blackfish_fixn;
bitmap { filename="blackfish_pointingleft.png"; } bmp_blackfishpointingleft_fixn;
bitmap { filename="blackfish_pointingright.png"; } bmp_blackfishpointingright_fixn;
bitmap { filename="whitefish_pointingleft.png"; } bmp_whitefishpointingleft_fixn;
bitmap { filename="whitefish_pointingright.png"; } bmp_whitefishpointingright_fixn;
bitmap { filename="whitefish_for_blue_lake.png"; } bmp_whitefish_bluelake;
bitmap { filename="blackfish_for_blue_lake.png"; } bmp_blackfish_bluelake;
bitmap { filename="whitefish_for_green_lake.png"; } bmp_whitefish_greenlake;
bitmap { filename="blackfish_for_green_lake.png"; } bmp_blackfish_greenlake;
text {caption="+";}fixn_txt;
#######################################################################
#######################################################################
#######################################################################
picture { # blank background for ITI
box frame_box; x=0; y=0;
bitmap fixn; x=0; y=0;
}default;
#######################################################################
# main display picture
picture { # set proper x & y coordinates for each fish in pcl
box frame_box; x=0; y=0;
ellipse_graphic green_ellipse; x=$xoffleft; y=0; #green_ellipse; x=$xoffleft; y=0;
ellipse_graphic blue_ellipse; x=$xoffright; y=0;
LOOP $i 30;
bitmap bmp_whitefish_greenlake; x=$xoffleft; y=0;
ENDLOOP;
LOOP $i 30;
bitmap bmp_whitefish_bluelake; x=$xoffright; y=0;
ENDLOOP;
bitmap bmp_whitefish_fixn; x=0; y=0;
# top boxes, yes response
box whitesquare_box; x=0; y=40;
box greysquare_box; x=0; y=40; # picture part number 66
# bottom boxes, no response
box whitesquare_box; x=0; y=-40;
box greysquare_box; x=0; y=-40; # picture part number 68
text {caption="YES"; font_color=0,0,0; background_color=123,123,123; font_size=14;}yes_txt; x=0; y=70;
text {caption="NO"; font_color=0,0,0; background_color=123,123,123; font_size=14;}no_txt; x=0; y=-70;
#text debug_txt; x=0; y=-100;
#text debugrow2_txt; x=0; y=-130;
}display_pic;
#############################################################################
bitmap {filename="FISHscreenshot.bmp";} screenshot;
picture{
bitmap screenshot; x=0; y=0;
text {caption="Index finger for yes";
font_size=14;
font="arial";
}instructions_txtL; x=0; y=-125;
text {caption="Middle finger for no";
font_size=14;
font="arial";
}instructions_txtR; x=0; y=-150;
text {caption="INSTRUCTIONS";
font_size=14;
font="arial";
}instrct; x = 0; y = 125;
}instructions_pic1;
########################################################
trial{
trial_type = specific_response;
trial_duration = forever;
terminator_button = 3;
stimulus_event{
picture instructions_pic1;
}instructions_event;
}instructions_trial;
########################################################
trial{
stimulus_event{
picture default;
code="ITI";
#port_code=99;
duration=$defaultITIdur;
}ITI_event;
}ITI_trial;
trial{
stimulus_event{
picture display_pic;
}display_event;
}display_trial;
trial{
stimulus_event{
picture display_pic;
duration=500;
}responseshown_event;
}responseshown_trial;
trial {
picture default;
code = "start_trial";
duration = 1000;
mri_pulse = 1;
}start_trial;
#trial display_trial;
trial {
all_responses = false; # responses made in this trial will be ignored
picture {text{caption = "Thank you. Please remember to stay still /n
until the scanner stops.";}; x = 0; y = 0;}finished;
code = "thanks";
duration = 10000;
}end_trial;
|
ec11c7c7813d99fa057ef74eb9c486024cd65a3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH4/EX4.12/Ex4_12.sce | f4be54ec2344031912220a75ab2dcaaa39cdb1ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 455 | sce | Ex4_12.sce | //Example 4_12
clc();
clear;
//To calculate distance betweenadjacent atoms
molwt=23+35.5 //units in grams/mol
avagadro=6.023*10^23 //units in gm/mol
mass=molwt/avagadro //units in gm
unitvol=2.18 //units in gm/cm^3
noofmol=unitvol/mass //units in gm/cm^3
total=2*noofmol //units in gm/cm^3
printf("number of atoms in NaCl is")
disp(total)
printf("atom/cm^3")
a=(1/total)^(1/3)
a=a*10^8 //units in A
printf("\nradius a=%.2f A",a)
|
e32bbf1be8480c9e2f994bed8ac5e3ff7074e160 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1962/CH2/EX2.17/example2_17.sce | 01c05135a36d810f6bb72f54d65701ff350ad27c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | example2_17.sce | //example 2.17
//page 90
clc; funcprot(0);
//initialisation of variable
pi=3.14;
ax=2.6;
ay=1.5;
g=9.81;
m=-ax/(ay+g);
//y2=y1-m*6; putting this value in second equation
y1=0.81;
y2=2.19;
x=linspace(0,15,15);
y=-11310*-y2-2600*x;
clf()
plot(y,x);
//from the graph maximum occurs when
x=0;
disp(x,"maximum occurs at that value");
clear
|
1e83c4742aa0cc3f6e3269260b48169694792ed8 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/ok_scope_sort2.tst | 580e343bd65ad807862cf69add9aca00bb1bbdc8 | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 196 | tst | ok_scope_sort2.tst | ; test scope of define-sort
(set-logic QF_UF)
(define-sort A () Bool)
(push 1)
(define-sort B () Bool)
(declare-fun x () A)
(declare-fun y () B)
(pop 1)
(declare-fun xx () A)
(define-sort B () A)
|
a1e47503d2ffad1ad70b04c6319c747aed661750 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH16/EX16.16/16_16.sce | 62c65b424bb2e8aea1f28aa44a5204733b203238 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sce | 16_16.sce | clear;
clc;
Ro=600;R1=240;
R2=((Ro*Ro)-(4*R1*R1))/(4*R1);
d=acosh(1+(2*R1/R2));
printf("Value of shunt resistance = %d ohm\n",R2);
printf(" Attenuation = %f db",round(d*8.686*10)/10);
|
f61a6ea34d974fa7d646fcffca435d6f52d1b613 | 10009b400a1cb3f79eac088e0da3485079ab5ef5 | /matlab/fft.sce | cd2b0f7977ed4b89f3f6f6f57b9f826c2b0eedac | [] | no_license | Paimon97/7-semestr | 36e14102688103ead95b2d515ce926929893e642 | 99d21228b1c5b0fa08cf35f5aee5eb38eed7084d | refs/heads/master | 2020-07-31T10:57:10.938684 | 2019-12-24T15:22:54 | 2019-12-24T15:22:54 | 210,580,371 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | fft.sce | N = 100; // number of elements of the signal
n = 0:N - 1;
w1 = %pi/5; // 1st frequency
w2 = %pi/10; // 2nd frequency
s1 = sin(w1*n); // 1st component of the signal
s2 = cos(w2*n); // 2nd component of the signal
f = s1 + s2; // signal
//plot(n, f);
F = fft(f); // it calculates the Fourier Transform
F_abs = abs(F); // F_abs is the absolute value of each element of F
plot(n, F_abs);
|
149478531b0fb06843bc8de3259c1e6250e7b64a | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH10/EX10.2/Example_10_2.sce | 1437ee19714bf288319ea6a9487d72895d3fab3a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,589 | sce | Example_10_2.sce | //Caption: Correlation for Grouped Data (Karl Pearson's Coefficient of Correlation)
//Example10.2
//Page372
clear;
clc;
X = [9,11;11,13;13,15;15,17];//Rate of return
Y = [2,4;4,6;6,8];//Equity (crores of Rs.)
[m1,n1] = size(X);
[m2,n2] = size(Y);
for i = 1:m1
Xmid(i) = mean(X(i,:));
end
for i = 1:m2
Ymid(i) = mean(Y(i,:));
end
a = [2,5,1;5,7,2;3,7,8;1,3,6];
disp(Xmid,'Mid-Xi=');
disp(Ymid,'Mid-Yi=');
disp(a,'aij=');
for i = 1:length(Xmid)
for j = 1:length(Ymid)
fij(i,j) = a(i,j)*Xmid(i)*Ymid(j);
fj(j) = sum(a(:,j));
fjYj(j)= fj(j)*Ymid(j);
fjYj2(j) = fj(j)*(Ymid(j)^2);
end
fi(i)= sum(a(i,:));
fiXi(i) = fi(i)*Xmid(i);
fiXi2(i) = fi(i)*(Xmid(i)^2);
sumfij(i) = sum(fij(i,:));
end
N = sum(fj);
disp(N,'N=')
disp(fij,'fij=')
disp(fj,'fj=')
disp(fjYj,'fjYj=')
disp(fjYj2,'fjYj2=')
disp(fi,'fi=')
disp(fiXi,'fiXi=')
disp(fiXi2,'fiXi2=')
disp(sumfij,'sigmafij=')
sumfjYj = sum(fjYj);
disp(sumfjYj,'fjYj=')
sumfjYj2 = sum(fjYj2);
disp(sumfjYj2,'fjYj2=')
ssumfij = sum(sumfij);
disp(ssumfij,'Sigmafij=')
sumfiXi = sum(fiXi);
disp(sumfiXi,'SigmafiXi=')
sumfiXi2 = sum(fiXi2);
disp(sumfiXi2,'SigmafiXi2=')
rg = (N*ssumfij-sumfiXi*sumfjYj)/(sqrt(N*sumfiXi2-sumfiXi^2)*sqrt(N*sumfjYj2-sumfjYj^2));
disp(rg,'The correlation coefficient rg =')
//Result
// Mid-Xi=
//
// 10.
// 12.
// 14.
// 16.
//
// Mid-Yi=
//
// 3.
// 5.
// 7.
//
// aij=
//
// 2. 5. 1.
// 5. 7. 2.
// 3. 7. 8.
// 1. 3. 6.
//
// N=
//
// 50.
//
// fij=
//
// 60. 250. 70.
// 180. 420. 168.
// 126. 490. 784.
// 48. 240. 672.
//
// fj=
//
// 11.
// 22.
// 17.
//
// fjYj=
//
// 33.
// 110.
// 119.
//
// fjYj2=
//
// 99.
// 550.
// 833.
//
// fi=
//
// 8.
// 14.
// 18.
// 10.
//
// fiXi=
//
// 80.
// 168.
// 252.
// 160.
//
// fiXi2=
//
// 800.
// 2016.
// 3528.
// 2560.
//
// sigmafij=
//
// 380.
// 768.
// 1400.
// 960.
//
// fjYj=
//
// 262.
//
// fjYj2=
//
// 1482.
//
// Sigmafij=
//
// 3508.
// SigmafiXi=
//
// 660.
//
// SigmafiXi2=
//
// 8904.
//
// The correlation coefficient rg =
//
// 0.3426722
|
1f14ba4b9c61ed18d9698de5959ccf988586d4ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH1/EX1.16/Ex1_16.sce | d7e2c5c6fa9ebcf3eb8037faf6978c9ed8bd678e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | Ex1_16.sce | clear
//Given
m=9*10**9 //C
q1=10*10**-6
q2=5*10**-6
r=0.05
//Calculation
//
F1=m*q1*q2/r**2
F2=m*q1*q2/r**2
F3=sqrt(F1**2+F2**2+(2*F1*F2*cos(120)*180/3.14))
//Result
printf("\n Resultant charge is %0.0f N",F3*10**-1)
|
3fe96bae9aa8c7de0d65fb37fc7ea401e41ec33f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH5/EX5.29/Ex5_29.sce | 3aa0e3fac163efb62af9a312a673fc75575e685d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | Ex5_29.sce | clc;
Ef=1.4; // p.u excitation EMF
xs=1.2; // p.u synchronous reactance
p=0.5; // p.u synchronous power being delivered
i=1; // percentage increment in prime mover torque
vt=1; // rated per phase voltage
de=asind((p*xs)/(Ef*vt)); // load angle
dp=(i*p)/100; // increase in p.u real power
ip=(dp/p)*100;
printf('Percentage increase in real power is %d percent of its previous value\n',ip);
iq=-tand(de)*ip;
printf('Percentage decrease in reactive power is %f percent of its previous value\n',-iq);
|
d218581a9e6dec176b1d06dd893556cae8c2cb47 | 0156c657b547f9ab9045d6ddbc14e31954096a78 | /Assignment 2.sce | 4d41d82a9218ec2ff67454a6d28dc395ff1438a9 | [] | no_license | anihm136/LA_2020_Assignments | 18e2e30c86c8c196aca04fd11aeb3227465c3f41 | 4982b560f584ca08f14caa846cf7cbecdd5657ce | refs/heads/master | 2021-01-03T05:41:46.213301 | 2020-04-13T18:12:06 | 2020-04-13T18:12:06 | 239,946,265 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 946 | sce | Assignment 2.sce | function m=makeMatrix(r, c)
// Creates a matrix from user input and returns it
m = zeros(r, c)
for i = 1:r
for j = 1:c
message = "Enter the element at [" + string(i) + "," + string(j) +"]"
m(i,j) = input(message)
end
end
endfunction
a = makeMatrix(3,3);
disp('Convert to U matrix:');
a(2,:) = a(2,:)-(a(2,1)/a(1,1))*a(1,:)
a(3,:) = a(3,:)-(a(3,1)/a(1,1))*a(1,:)
a(3,:) = a(3,:)-(a(3,2)/a(2,2))*a(2,:)
disp('The column space is:')
f=0
for i=1:3
for j=i:3
if a(j,i)~=0 then
disp(b(:,i))
f=1
break
end
end
end
if f==0 then
disp([0 0 0])
end
b = makeMatrix(3, 3);
[m,n] = size(b)
[v,pivots] = rref(b)
r = length(pivots)
disp(r,'Rank = ')
cs = b(:,pivots)
disp(cs,'Column space = ')
rs = v(1:r,:)'
disp(rs,'Row space = ')
ns = kernel(b)
disp(ns,"Null space = ")
lns = kernel(b')
disp(lns,"Left Null space = ")
|
ee38a50de5d5b170dec75b492968aa9e4923a5a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH13/EX13.14/ques14.sce | ad536f85d9ffacc025fea145706fda7617d95e82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 520 | sce | ques14.sce | //ques14
clc
disp('solution of the given linear differential equation is given by : ');
disp('CF + PI');
syms c1 c2 c3 c4 x
m=poly(0,'m');
f=(m^4+2*m^2+1);
r=roots(f);
disp(r);
disp('CF is given by ');
cf=real((c1+c2*x)*exp(r(1)*x)+(c3+c4*x)*exp(r(3)*x));
disp(cf);
disp('----------------------------------');
disp('PI =*{1/(D^4+2*D+1)[x^2*cos(x)]');
disp('using identities it reduces to : ');
pi=-1/48*((x^4-9*x^2)*cos(x)-4*x^3*sin(x));
disp(pi);
y=cf+pi;
disp('The solution is : y=');
disp(y);
|
cdcb4386a6f90a1f655e85c07dd140414881cf49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH10/EX10.11/10_11.sce | f58b3d24125ea0b3f690e6e9c0e278873619d7a5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,966 | sce | 10_11.sce | clear;
clc;
printf("\t\t\tExample Number 10.11\n\n\n");
// cross-flow exchanger with both fluid unmixed
// Example 10.11 (page no.-547-549)
// solution
pa = 101325;// [Pa] pressure of air
Ti = 15.55;// [degree celsius] initial temperature of air
Tf = 29.44;// [degree celsius] final temperature of air
Thw = 82.22;// [degree celsius] hot water temperature
U = 227;// [W/square meter degree celsius] overall heat transfer coefficient
S = 9.29;// [square meter] total surface area of heat exchanger
R = 287;// [] universal gas constant
Cc = 1006;// [J/kg degree celsius] specific heat of air
Ch = 4180;// [J/kg degree celsius] specific heat of water
// the heat transfer is calculated from the energy balance on the air. first, the inlet air density is
rho = pa/(R*(Ti+273.15));// [kg/cubic meter]
// so the mass flow of air (the cold fluid) is
mdot_c = 2.36*rho;// [kg/s]
// the heat transfer is then
q = mdot_c*Cc*(Tf-Ti);// [W]
// from the statement of the problem we do not know whether the air or water is the minimum fluid. a trial and error procedur must be used with figure 10-15(page no.-545) or table 10-3(page no.-543).
// we assume that the air is the minimum fluid and then check out our assumption. then
Cmin = mdot_c*Cc;// [W/degree celsius]
NTU_max = U*S/Cmin;
// and the effectiveness based on the air as the minimum fluid is
E = (Tf-Ti)/(Thw-Ti);
// entering figure 10-15, we are unable to match these quantities with the curves. this require that the hot fluid be the minimum. we must therefore assume values for the water flow rate until we are able to match the performance as given by figure 10-15 or table 10-3. we first note that
Cmax = mdot_c*Cc;// [W/degree celsius] (a)
// NTU_max = U*S/Cmin; (b)
// E = dT_h/(Thw-Ti) (c)
// dT_h = q/Cmin (d)
// now we assume different values for Cmin abd calculate different-different values for NTU_max, dT_h, and E
// for
Cmin_by_Cmax1 = 0.5;
Cmin1 = Cmin_by_Cmax1*Cmax;// [W/degree celsius]
NTU_max1 = U*S/Cmin1;
dT_h1 = q/Cmin1;// [degree celsius]
E1_c1 = dT_h1/(Thw-Ti);// calculated
E1_t1 = 0.65;// from table
// for
Cmin_by_Cmax2 = 0.25;
Cmin2 = Cmin_by_Cmax2*Cmax;// [W/degree celsius]
NTU_max2 = U*S/Cmin2;
dT_h2 = q/Cmin2;// [degree celsius]
E1_c2 = dT_h2/(Thw-Ti);// calculated
E1_t2 = 0.89;// from table
// for
Cmin_by_Cmax3 = 0.22;
Cmin3 = Cmin_by_Cmax3*Cmax;// [W/degree celsius]
NTU_max3 = U*S/Cmin3;
dT_h3 = q/Cmin3;// [degree celsius]
E1_c3 = dT_h3/(Thw-Ti);// calculated
E1_t3 = 0.92;// from table
// we estimate the water-flow rate as about
Cmin = 660;// [W/degree celsius]
mdot_h = Cmin/Ch;// [kg/s]
// the exit water temperature is accordingly
Tw_exit = Thw-q/Cmin;// [degree celsius]
printf("the exit water temperature is %f degree celsius",Tw_exit);
printf("\n\n the heat transfer is %f kW",q/1000); |
b08ac492dbbac6c8407cd894df06144c2ab36fb9 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.18_11.tst | d306425403f2cd1196fdf19d2574ef0bd68d965d | [] | 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 | 560,040 | tst | 5.18_11.tst | 18 209:2 298:1 687:1 734:1 869:1 887:1 1417:2 1453:1 1454:1 1494:1 1884:1 2098:2 2333:1 2600:1 2639:1 2670:1 2704:2 2726:1 2832:2 2923:1 2963:1 3006:1 3016:1 3179:1 3419:1 3647:1 3812:1 4436:1 4465:1 4513:1 4563:1 4565:1 5153:1 5254:1 5333:1 5744:1 6100:1 6102:1 6367:1 6525:1 6652:1 6818:1 6913:1 7191:1 7210:1 7238:1 7408:1 7890:3 8087:1 8132:1 8688:1 8779:1 9120:1 9132:1 9156:1 9190:1 10014:3 10552:1 10582:1 10773:1 11056:1 11283:1 11364:2 11507:1 11618:1 11814:2 12610:1 12735:3 12903:1 13052:1 13590:1 13757:1 14187:1 14239:1 14543:1 14630:1 14870:1 15516:1 15579:2 15607:1 16075:1 16182:1 16246:1 16372:1 16502:1 16884:1 16952:1 16971:2 16974:1 17426:1 17556:1 17564:1 17657:2 17663:1 18182:1 18386:1 18428:1 18454:1 18503:1 18779:1 18808:1 19031:1 19079:1 19656:2 20028:1 20321:1 20355:1 20522:1 20587:1 20903:1 21024:1 21130:2 21147:1 21149:1 21461:1 21558:2 21640:2 21970:2 21997:1 22028:55 22382:1 22722:2 22813:1 22892:1 23106:1 23149:1 23622:1 23667:1 23746:1 23791:1 24164:1 24204:1 24282:1 24286:2 24294:1 24356:1 24526:2 24718:1 24766:1 24880:1 25230:1 25292:1 25406:1 25440:1 25531:2 25794:1 26203:1 26286:1 26322:1 26451:1 26471:1 26505:1 26703:1 26713:1 26806:2 26919:1 26930:1 27006:1 27150:1 27198:1 27273:1 27304:2 27484:1 27625:1 27717:1 27778:1 27902:1 28027:1 28066:2 28194:1 28449:1 28559:1 28632:1 28733:1 28928:1 29226:1 29242:1 29545:1 29555:1 29678:2 29777:1 30091:1 30185:1 30191:1 30338:1 30358:1 30864:1 31113:1 31182:3 31400:1 31536:3 31583:1 31610:2 31611:1 31712:1 31812:1 31833:1 32065:1 32114:1 32132:1 32172:2 32679:1 32955:1 33065:1 33216:2 33618:1 34353:1 34430:1 34460:1 34485:1 34614:1
18 144:1 209:4 298:2 687:1 734:1 857:1 869:1 887:1 1016:1 1145:1 1417:4 1453:2 1454:1 1494:2 1675:1 1884:1 1963:1 2098:4 2267:1 2333:2 2415:1 2600:1 2606:1 2639:2 2648:1 2670:1 2704:3 2726:2 2832:4 2923:1 2963:2 3006:2 3016:2 3147:1 3179:1 3419:1 3549:1 3559:1 3647:2 3812:1 4436:1 4465:1 4513:1 4563:2 4565:1 4819:1 5153:2 5254:2 5333:2 5744:1 6048:1 6100:1 6102:2 6255:1 6367:1 6525:2 6652:1 6818:1 6913:1 7173:1 7191:2 7210:1 7238:2 7408:1 7420:1 7426:1 7542:1 7549:1 7724:1 7890:5 7919:1 8087:1 8132:1 8688:1 8779:1 9093:1 9120:1 9132:2 9156:2 9190:2 9341:1 9631:1 9927:1 10014:5 10093:1 10117:1 10552:1 10582:2 10773:1 11056:1 11099:1 11283:2 11364:4 11507:1 11618:1 11780:1 11814:3 12167:1 12610:1 12735:5 12903:1 13052:1 13393:1 13590:1 13757:1 14168:1 14187:1 14239:2 14543:2 14630:2 14731:1 14870:2 15516:1 15579:4 15607:2 15756:1 16075:1 16182:2 16229:1 16246:1 16328:1 16372:1 16502:2 16884:1 16952:1 16971:3 16974:2 17386:1 17426:2 17556:2 17564:1 17657:3 17663:2 18182:1 18272:2 18386:1 18428:2 18454:1 18503:1 18577:1 18779:2 18808:1 19031:2 19079:1 19378:1 19529:1 19656:4 19997:2 20028:2 20186:1 20321:1 20355:1 20522:2 20587:2 20903:2 21024:2 21130:4 21147:1 21149:2 21461:1 21494:1 21558:4 21640:3 21970:3 21997:2 22028:133 22172:1 22382:1 22722:4 22813:1 22892:1 23106:3 23149:2 23264:1 23622:1 23667:1 23746:1 23791:1 23979:1 24047:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24526:3 24698:1 24718:1 24766:1 24880:1 24943:1 25230:1 25292:1 25406:2 25440:2 25531:4 25794:2 26144:1 26203:1 26204:1 26286:2 26322:1 26451:2 26471:1 26505:2 26703:2 26713:2 26806:3 26919:1 26930:2 27006:2 27150:1 27198:2 27239:1 27273:1 27304:4 27484:1 27625:2 27634:1 27717:2 27778:2 27902:1 28027:2 28066:4 28194:2 28449:2 28559:2 28632:1 28733:2 28800:1 28928:1 29226:2 29242:2 29545:1 29555:2 29656:1 29678:4 29777:2 29830:1 30091:1 30097:1 30169:1 30185:2 30191:2 30338:2 30358:1 30864:1 31113:1 31182:5 31400:1 31536:5 31583:1 31610:3 31611:1 31712:1 31812:1 31833:1 32065:2 32114:2 32132:1 32172:4 32291:1 32679:1 32928:1 32955:1 33003:1 33065:1 33216:4 33618:2 34353:2 34430:2 34460:2 34485:1 34614:2
18 144:1 209:4 298:2 304:1 381:1 687:1 734:1 748:1 857:1 869:1 887:1 1016:1 1145:1 1417:4 1453:2 1454:1 1494:2 1660:1 1661:1 1675:1 1715:1 1774:1 1884:1 1963:1 2098:4 2267:1 2304:1 2333:2 2415:1 2429:1 2471:1 2526:1 2577:1 2593:1 2600:1 2606:1 2639:2 2648:1 2670:1 2704:4 2726:2 2776:1 2832:4 2923:1 2963:2 3003:1 3006:2 3016:2 3131:1 3147:1 3179:1 3255:1 3377:1 3419:1 3549:1 3559:1 3647:2 3665:1 3735:1 3781:1 3812:1 4255:1 4436:1 4465:1 4513:1 4563:2 4565:1 4819:1 4850:1 5153:2 5254:2 5333:2 5359:1 5538:1 5549:1 5744:1 6048:1 6100:1 6102:2 6255:1 6367:1 6525:2 6652:1 6818:1 6913:1 7106:1 7164:1 7173:1 7191:2 7210:1 7238:2 7347:1 7408:2 7420:1 7426:1 7530:1 7542:1 7549:1 7724:1 7890:5 7919:1 7954:1 8087:1 8132:1 8688:2 8775:1 8779:1 9093:1 9120:1 9129:1 9132:2 9156:2 9190:2 9341:1 9553:1 9631:1 9755:1 9927:1 10014:5 10093:1 10117:1 10309:1 10469:1 10552:1 10582:2 10773:1 11056:1 11099:1 11283:2 11357:1 11364:4 11507:1 11618:1 11780:1 11814:4 12167:1 12610:1 12735:5 12903:1 12938:1 13052:1 13141:1 13226:1 13393:1 13590:1 13690:1 13757:1 13813:1 13885:1 14168:1 14187:1 14239:2 14543:2 14630:2 14731:1 14870:2 14941:1 15234:1 15516:1 15579:4 15607:2 15756:1 15979:1 16075:1 16182:2 16229:1 16246:2 16328:1 16372:1 16502:2 16884:1 16952:1 16971:4 16974:2 17078:1 17082:1 17258:1 17386:1 17426:2 17551:1 17556:2 17564:1 17588:1 17590:1 17657:3 17663:2 18182:1 18272:3 18305:1 18335:1 18386:1 18428:2 18454:1 18503:1 18577:1 18779:2 18808:1 19031:2 19079:1 19378:1 19529:1 19656:4 19922:1 19997:3 20028:2 20186:1 20321:1 20355:1 20360:1 20418:1 20522:2 20587:2 20660:1 20677:1 20903:2 21024:2 21130:4 21135:1 21147:1 21149:2 21461:1 21494:1 21558:4 21640:4 21970:4 21997:2 22028:263 22172:1 22382:1 22722:4 22813:1 22892:1 22995:1 23106:4 23149:2 23264:1 23622:1 23637:1 23667:1 23746:1 23791:1 23979:1 24047:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24393:1 24526:3 24698:1 24704:1 24718:1 24766:1 24880:1 24943:1 25200:1 25205:1 25230:1 25292:1 25406:2 25440:2 25531:4 25794:2 26144:1 26203:1 26204:1 26286:2 26322:1 26339:1 26451:2 26471:1 26505:2 26703:2 26713:2 26806:3 26883:1 26919:1 26930:2 27006:2 27150:1 27198:2 27239:1 27273:1 27304:4 27396:1 27484:1 27625:2 27634:1 27717:2 27778:2 27902:1 28027:2 28047:1 28066:4 28194:2 28449:2 28559:2 28572:1 28632:1 28733:2 28800:1 28928:1 28998:1 29205:1 29226:2 29242:2 29545:1 29555:2 29656:1 29678:4 29777:2 29830:1 30067:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30288:1 30338:2 30358:1 30373:1 30639:1 30864:1 31113:1 31182:5 31400:1 31536:5 31583:1 31610:4 31611:1 31712:1 31812:1 31833:1 32065:2 32114:2 32132:1 32172:4 32291:1 32503:1 32679:1 32928:1 32955:1 32979:1 33003:1 33049:1 33065:1 33216:4 33618:2 34353:2 34430:2 34460:2 34485:1 34614:2
18 144:1 209:4 298:2 304:1 381:1 417:1 687:1 712:1 734:1 748:1 788:1 857:1 869:1 887:1 1016:1 1080:1 1145:1 1417:4 1453:2 1454:1 1459:1 1494:2 1533:1 1660:1 1661:1 1675:1 1715:2 1735:1 1774:1 1884:1 1963:1 2041:1 2098:4 2267:1 2304:1 2333:2 2415:1 2429:1 2471:1 2526:1 2577:2 2587:1 2593:1 2600:1 2606:1 2639:2 2648:1 2670:1 2689:1 2704:5 2726:2 2776:2 2832:4 2923:1 2963:2 3003:1 3006:2 3016:2 3131:1 3147:1 3179:1 3255:1 3377:2 3419:1 3496:1 3549:1 3559:1 3647:2 3665:1 3735:1 3781:1 3812:1 4255:1 4421:1 4434:1 4436:1 4455:1 4465:1 4513:1 4563:2 4565:1 4700:1 4819:1 4850:1 5113:1 5153:2 5155:1 5254:2 5333:2 5359:1 5409:1 5538:1 5549:1 5647:1 5744:1 6048:1 6100:1 6102:2 6214:1 6255:1 6367:1 6407:1 6525:2 6652:1 6761:1 6775:1 6818:1 6913:1 7106:1 7164:1 7173:1 7191:2 7210:1 7238:2 7347:1 7408:2 7420:1 7423:1 7426:1 7530:1 7542:1 7549:1 7724:1 7890:5 7919:1 7954:1 8040:1 8087:1 8132:1 8141:1 8688:2 8775:1 8779:1 9093:1 9120:1 9129:1 9132:2 9156:2 9190:2 9341:1 9553:1 9631:1 9673:1 9725:1 9755:2 9762:1 9764:1 9927:1 10014:5 10093:1 10117:1 10309:1 10469:1 10509:1 10542:1 10552:1 10582:2 10773:1 11056:1 11099:1 11283:3 11357:1 11364:4 11507:1 11618:1 11643:1 11721:1 11780:1 11814:5 12005:1 12167:1 12337:1 12610:1 12671:1 12735:5 12903:1 12938:1 13052:1 13087:1 13106:1 13141:1 13226:1 13393:1 13590:1 13690:1 13757:1 13813:1 13824:1 13847:1 13885:1 14168:1 14187:1 14214:1 14221:1 14232:1 14239:2 14543:2 14630:2 14731:1 14870:2 14941:1 15234:2 15516:1 15579:4 15607:2 15720:1 15756:1 15792:1 15826:1 15858:1 15865:1 15979:1 16075:1 16082:1 16182:2 16229:1 16246:2 16265:1 16328:1 16372:1 16502:2 16646:1 16694:1 16884:1 16892:1 16952:1 16971:5 16974:2 17029:1 17078:1 17082:1 17258:1 17386:1 17426:2 17551:1 17556:2 17564:1 17588:1 17590:1 17657:3 17663:2 17883:1 17969:1 18182:1 18272:3 18305:1 18335:1 18386:1 18428:2 18454:1 18503:1 18577:1 18779:2 18808:1 18981:1 19031:2 19079:1 19369:1 19378:1 19396:1 19529:1 19656:4 19922:1 19997:3 20028:2 20186:1 20204:1 20321:1 20355:1 20360:1 20418:1 20522:2 20581:1 20587:2 20636:1 20660:1 20677:1 20735:1 20888:1 20903:2 21024:2 21033:1 21071:1 21096:1 21130:4 21135:1 21147:1 21149:2 21216:1 21234:1 21461:2 21494:1 21558:4 21640:5 21751:1 21970:5 21997:2 22028:387 22172:1 22382:1 22554:1 22722:4 22813:1 22892:1 22897:1 22995:1 23106:4 23149:2 23264:1 23476:1 23529:1 23622:1 23637:1 23667:1 23746:1 23791:1 23846:1 23979:1 24047:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24393:1 24526:3 24698:1 24704:1 24718:1 24766:1 24878:1 24880:1 24943:1 25001:1 25185:1 25200:1 25205:1 25230:1 25292:1 25393:1 25406:2 25440:2 25531:4 25681:1 25794:2 26028:1 26074:1 26144:1 26203:1 26204:1 26286:2 26322:1 26339:1 26450:1 26451:2 26471:1 26505:2 26703:2 26713:2 26806:3 26841:1 26883:1 26919:1 26930:2 27006:2 27108:1 27150:1 27198:2 27239:1 27273:2 27304:4 27339:1 27396:1 27484:1 27502:1 27601:1 27618:1 27625:2 27634:1 27644:1 27714:1 27717:2 27778:2 27848:1 27902:1 28027:2 28047:1 28066:4 28194:2 28425:1 28449:2 28559:2 28572:1 28612:1 28622:1 28628:1 28632:1 28733:2 28800:1 28928:1 28998:1 29028:1 29205:1 29226:2 29242:2 29545:1 29555:2 29567:1 29656:1 29678:4 29777:2 29779:1 29830:1 30067:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30220:1 30288:1 30338:2 30358:1 30373:1 30549:1 30639:1 30779:1 30864:1 30904:1 31095:1 31113:1 31182:5 31400:1 31536:5 31583:1 31610:5 31611:1 31659:1 31712:1 31812:1 31833:1 31925:1 32022:1 32065:2 32114:2 32132:1 32146:1 32172:4 32291:1 32503:1 32606:1 32679:1 32928:1 32955:1 32979:1 33003:1 33049:2 33065:1 33214:1 33216:4 33285:1 33395:1 33477:1 33557:2 33618:2 33661:1 33787:1 34094:1 34268:1 34353:2 34356:1 34405:1 34430:2 34460:2 34485:1 34614:2
18 7:1 144:1 209:4 255:1 298:2 304:1 321:1 381:1 417:1 687:1 704:1 712:1 721:1 734:1 748:1 788:1 857:1 869:1 887:1 1016:1 1049:1 1080:1 1101:1 1145:1 1358:1 1417:4 1453:2 1454:1 1459:1 1494:2 1533:1 1660:1 1661:1 1675:1 1715:2 1735:1 1774:2 1870:1 1884:1 1963:1 2037:1 2041:2 2098:4 2267:1 2284:1 2304:1 2333:2 2415:1 2422:1 2429:1 2471:1 2526:1 2546:1 2577:2 2587:1 2593:1 2597:1 2600:1 2606:1 2639:2 2648:1 2670:2 2689:1 2704:7 2726:2 2742:1 2776:2 2787:1 2832:4 2923:1 2933:1 2963:2 3003:1 3006:2 3016:2 3131:2 3147:1 3179:1 3255:2 3374:1 3377:2 3419:1 3496:1 3549:1 3559:1 3647:2 3665:1 3735:1 3781:1 3812:1 4255:1 4291:1 4329:1 4421:1 4434:1 4436:1 4455:1 4465:2 4513:1 4563:2 4565:1 4700:1 4819:1 4850:1 5113:1 5153:2 5155:1 5254:2 5333:2 5359:1 5409:1 5538:1 5549:1 5647:1 5698:1 5744:1 5927:1 6048:1 6100:1 6102:2 6177:1 6214:2 6255:1 6367:1 6407:1 6525:2 6652:1 6761:1 6775:1 6818:1 6913:1 7106:1 7164:1 7173:1 7191:2 7210:1 7238:2 7347:1 7408:2 7420:1 7423:1 7426:1 7444:1 7530:1 7542:1 7549:1 7724:1 7890:5 7919:1 7954:1 8040:1 8082:1 8085:1 8087:1 8132:1 8141:1 8688:2 8775:1 8779:1 8809:1 8913:1 9055:1 9073:1 9093:1 9120:2 9129:1 9132:2 9149:1 9156:3 9190:2 9341:1 9553:1 9631:1 9665:1 9673:1 9715:1 9725:2 9755:2 9760:1 9762:1 9764:1 9927:1 9972:1 10014:5 10093:1 10117:1 10231:1 10309:2 10469:1 10478:1 10509:1 10542:1 10552:1 10582:2 10773:1 11056:1 11099:1 11261:1 11283:3 11357:1 11364:4 11416:1 11507:1 11618:1 11643:1 11721:1 11780:1 11814:7 12005:1 12167:1 12337:2 12455:1 12494:1 12573:1 12610:1 12671:2 12735:5 12903:2 12925:1 12938:1 13052:1 13087:1 13106:1 13141:1 13226:1 13393:1 13590:1 13690:1 13742:1 13757:1 13810:1 13813:2 13824:1 13847:1 13885:1 14025:1 14168:1 14187:2 14214:1 14221:1 14232:1 14239:2 14367:1 14496:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:1 15234:2 15326:1 15516:1 15579:4 15606:1 15607:2 15720:2 15756:1 15792:1 15826:1 15858:1 15865:1 15899:1 15979:1 16075:1 16082:1 16182:2 16229:1 16246:2 16265:1 16328:1 16372:1 16502:2 16646:1 16694:1 16884:1 16892:1 16952:1 16971:7 16974:2 17029:1 17078:2 17082:1 17258:1 17386:1 17426:2 17551:1 17556:2 17564:1 17588:1 17590:1 17657:3 17663:2 17883:1 17969:2 18025:1 18182:1 18272:4 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18503:1 18577:1 18641:1 18662:1 18748:1 18779:2 18808:1 18981:1 19031:2 19079:1 19081:1 19239:1 19369:1 19378:1 19396:1 19529:1 19650:1 19656:4 19922:1 19997:4 20028:2 20186:1 20204:1 20321:1 20355:1 20360:1 20418:1 20522:2 20581:1 20587:2 20621:1 20636:1 20648:1 20660:1 20670:1 20677:1 20735:1 20847:1 20888:1 20903:2 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21149:2 21216:1 21234:1 21461:4 21494:1 21558:4 21640:7 21751:1 21970:7 21997:2 22028:488 22172:1 22241:1 22290:1 22382:1 22549:1 22554:1 22655:1 22722:4 22767:1 22774:1 22789:1 22813:1 22892:1 22897:1 22995:1 23106:6 23149:2 23161:1 23205:1 23264:1 23476:1 23529:1 23545:1 23622:1 23630:1 23637:1 23639:1 23667:1 23746:1 23791:1 23846:1 23979:1 24047:1 24111:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24384:1 24393:1 24526:3 24698:1 24704:1 24718:1 24766:1 24878:1 24880:1 24943:1 25001:1 25185:1 25200:1 25205:1 25230:1 25292:1 25393:1 25406:2 25440:2 25463:1 25504:1 25531:4 25681:1 25794:2 25992:1 26028:1 26042:1 26074:1 26144:1 26203:1 26204:1 26286:2 26322:1 26339:1 26450:1 26451:2 26471:1 26505:2 26703:2 26713:2 26806:3 26824:1 26841:1 26883:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27239:1 27273:3 27304:4 27339:2 27396:1 27484:1 27493:1 27502:2 27601:1 27618:1 27625:2 27634:1 27644:1 27714:1 27717:2 27778:2 27848:1 27902:1 28027:2 28047:1 28066:4 28194:2 28377:1 28425:1 28449:2 28559:2 28572:1 28612:1 28622:2 28628:1 28632:1 28733:2 28800:1 28928:1 28998:1 29028:1 29205:1 29226:2 29242:2 29545:1 29555:2 29567:1 29627:1 29656:1 29678:4 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 30067:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30220:2 30288:1 30338:2 30358:1 30373:1 30549:1 30639:1 30775:1 30779:1 30808:1 30864:1 30904:1 31030:1 31095:1 31113:1 31182:5 31400:1 31460:1 31477:1 31536:5 31583:1 31610:7 31611:1 31659:1 31712:1 31725:1 31812:1 31833:1 31925:1 32022:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32291:1 32346:1 32385:1 32424:1 32503:1 32606:1 32674:1 32679:1 32928:2 32955:1 32962:1 32979:1 33003:1 33020:1 33049:2 33065:1 33094:1 33150:1 33155:1 33214:1 33216:4 33285:1 33390:1 33395:1 33421:1 33477:1 33557:2 33618:2 33661:2 33787:1 33852:1 34010:1 34094:2 34268:1 34353:2 34356:1 34405:1 34430:2 34460:2 34485:1 34614:2
18 7:1 22:1 144:1 209:4 234:1 255:1 298:2 304:1 321:1 375:1 381:1 417:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 788:1 795:1 857:1 869:2 887:1 904:1 1016:1 1049:2 1080:1 1101:1 1145:1 1223:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:1 1494:2 1526:1 1533:1 1660:1 1661:1 1675:1 1715:2 1735:1 1774:2 1870:1 1884:1 1949:1 1963:1 2037:1 2041:3 2098:4 2144:1 2267:1 2272:1 2284:1 2304:1 2333:2 2363:1 2367:1 2415:1 2422:2 2429:1 2471:1 2526:1 2546:1 2577:2 2587:1 2592:1 2593:1 2597:1 2600:1 2606:1 2639:2 2648:1 2652:1 2670:2 2689:1 2691:1 2704:7 2726:2 2742:1 2776:3 2787:1 2817:1 2832:4 2919:1 2923:1 2933:1 2963:2 2985:1 3003:1 3006:2 3016:2 3131:2 3133:1 3147:1 3179:1 3255:2 3374:1 3377:2 3379:1 3419:1 3496:1 3549:1 3559:1 3563:1 3647:2 3665:1 3735:1 3781:1 3812:1 3824:1 4255:1 4266:1 4291:2 4329:1 4366:1 4421:1 4434:1 4436:1 4455:1 4465:2 4513:1 4563:2 4565:1 4645:1 4649:1 4684:1 4700:1 4819:1 4850:1 5113:1 5153:2 5155:1 5204:1 5254:2 5327:1 5333:2 5359:1 5409:1 5437:1 5513:1 5538:1 5549:1 5647:1 5698:2 5744:1 5748:1 5761:1 5927:1 5943:1 5950:1 6048:2 6100:1 6102:2 6177:1 6214:2 6255:1 6367:1 6376:1 6407:1 6421:1 6502:1 6512:1 6525:2 6652:1 6761:1 6775:1 6818:1 6913:1 6949:1 7106:1 7164:1 7172:1 7173:1 7191:2 7210:1 7238:2 7347:1 7408:2 7420:1 7423:1 7426:2 7444:1 7530:1 7542:1 7549:1 7554:1 7724:1 7890:5 7919:1 7954:1 8040:1 8082:1 8085:1 8087:1 8132:1 8141:1 8207:1 8210:1 8263:1 8347:1 8688:2 8724:1 8775:1 8779:1 8809:2 8913:1 9055:1 9073:1 9093:1 9120:2 9129:1 9132:2 9149:1 9156:4 9190:2 9333:1 9341:1 9553:1 9631:1 9665:1 9673:2 9715:1 9725:2 9755:2 9760:1 9762:1 9764:1 9927:1 9972:2 10014:5 10093:1 10104:1 10105:1 10117:1 10231:1 10243:1 10309:2 10469:1 10478:1 10509:1 10542:1 10552:1 10582:2 10748:1 10773:1 11056:1 11099:1 11261:1 11283:3 11357:1 11364:4 11416:1 11507:1 11618:1 11643:1 11692:1 11721:1 11780:1 11814:7 12005:1 12167:1 12337:2 12455:2 12494:1 12573:1 12610:1 12671:2 12696:1 12735:5 12903:2 12905:1 12925:1 12926:1 12938:1 13052:1 13087:1 13106:1 13113:1 13141:1 13226:1 13393:1 13590:1 13690:1 13742:1 13757:1 13810:1 13813:2 13824:1 13847:1 13885:1 14025:1 14168:1 14187:2 14214:1 14221:1 14232:1 14239:2 14350:1 14367:1 14496:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:1 15052:1 15065:1 15234:2 15326:1 15347:1 15498:1 15516:1 15579:4 15606:1 15607:2 15689:1 15720:2 15756:1 15773:1 15792:1 15826:1 15858:1 15865:1 15899:1 15979:1 15995:1 16075:1 16082:1 16168:1 16182:2 16229:1 16246:2 16265:1 16328:1 16372:1 16502:2 16561:1 16646:1 16694:1 16884:1 16892:1 16916:1 16952:1 16971:7 16974:2 17024:1 17029:1 17078:2 17082:1 17140:1 17258:1 17386:1 17426:2 17551:1 17556:2 17564:1 17588:1 17590:1 17657:4 17663:2 17883:1 17937:1 17969:2 18025:1 18182:1 18272:4 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18503:1 18577:1 18641:1 18662:1 18748:1 18779:2 18808:1 18818:1 18891:1 18981:1 19001:1 19031:2 19079:1 19081:1 19239:1 19369:1 19378:1 19396:1 19529:1 19650:1 19656:4 19902:1 19922:1 19997:4 20028:2 20186:1 20204:1 20228:1 20308:1 20321:1 20355:1 20360:1 20418:1 20522:2 20581:1 20587:2 20604:1 20608:1 20621:1 20634:1 20636:1 20648:1 20660:1 20670:1 20677:1 20735:1 20847:1 20888:1 20903:2 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21149:2 21164:1 21216:1 21234:1 21461:4 21494:1 21519:1 21558:4 21640:7 21751:1 21865:1 21970:7 21997:2 22028:638 22112:1 22172:1 22241:1 22290:1 22382:1 22549:1 22554:1 22655:1 22722:4 22767:1 22774:1 22789:1 22793:1 22813:1 22884:1 22892:1 22897:1 22995:1 23009:1 23077:1 23106:7 23149:3 23161:1 23205:1 23264:1 23331:1 23476:1 23529:1 23545:1 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23746:1 23787:1 23791:1 23846:1 23856:1 23949:1 23979:1 24047:1 24111:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24384:1 24393:1 24463:1 24526:4 24698:1 24704:1 24718:1 24744:1 24766:1 24794:1 24841:1 24878:1 24880:1 24884:1 24943:1 25001:1 25185:1 25200:1 25205:1 25230:1 25292:1 25393:1 25406:2 25440:2 25463:1 25504:1 25505:1 25531:4 25681:1 25794:2 25992:1 26028:1 26042:1 26074:1 26144:1 26203:1 26204:1 26286:2 26322:2 26339:1 26348:1 26395:1 26430:1 26450:1 26451:2 26471:1 26505:2 26565:1 26668:1 26703:2 26709:1 26713:2 26722:1 26765:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27228:1 27239:1 27273:3 27304:4 27339:3 27396:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27601:1 27618:1 27625:2 27634:1 27644:1 27714:1 27717:2 27778:2 27848:1 27902:1 28027:2 28047:1 28066:4 28106:1 28194:2 28377:1 28425:1 28449:2 28453:1 28559:2 28572:1 28612:1 28622:2 28628:1 28632:1 28733:2 28795:1 28800:1 28928:1 28998:1 29000:1 29028:1 29205:1 29226:2 29242:2 29493:1 29545:1 29555:2 29567:1 29627:1 29656:1 29678:4 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 30067:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30220:2 30288:1 30338:2 30358:1 30373:1 30417:1 30549:1 30593:1 30639:1 30657:1 30705:1 30740:1 30775:1 30779:1 30808:1 30864:1 30904:1 31030:1 31095:1 31113:1 31182:5 31400:1 31460:1 31477:1 31536:5 31583:1 31590:1 31610:7 31611:1 31659:1 31699:1 31712:1 31725:1 31757:1 31812:1 31833:1 31925:1 31967:1 31992:1 32022:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32291:1 32346:1 32385:1 32419:1 32424:1 32503:1 32606:1 32643:1 32674:1 32679:1 32759:1 32909:1 32928:4 32955:1 32962:1 32977:1 32979:1 33003:1 33020:1 33049:2 33065:1 33092:1 33094:1 33150:1 33155:1 33214:1 33216:4 33271:1 33285:1 33390:1 33395:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:1 33787:1 33852:1 34010:1 34094:2 34268:1 34353:2 34356:1 34405:1 34430:2 34460:2 34463:1 34485:1 34614:2
18 7:1 22:1 144:1 209:4 234:1 235:1 255:1 298:2 304:1 321:1 375:1 381:1 417:1 621:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 788:1 795:1 857:1 869:2 887:1 904:1 1016:1 1049:2 1077:1 1080:1 1101:1 1145:1 1223:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:1 1473:1 1494:2 1526:1 1533:1 1638:1 1660:1 1661:1 1675:1 1715:2 1735:1 1774:2 1866:1 1870:1 1884:1 1949:1 1963:1 2037:1 2041:3 2098:4 2144:1 2154:1 2267:1 2272:1 2284:1 2304:1 2333:2 2363:1 2367:1 2371:1 2413:1 2415:1 2422:3 2429:1 2471:1 2526:1 2546:1 2557:1 2577:2 2587:1 2592:1 2593:1 2597:1 2600:1 2606:1 2639:2 2648:1 2652:1 2653:1 2670:2 2689:1 2691:1 2704:8 2726:2 2742:1 2776:3 2787:1 2817:1 2832:4 2919:1 2923:1 2933:1 2963:2 2983:1 2985:1 3003:1 3006:2 3016:2 3131:2 3133:1 3147:1 3179:1 3255:2 3374:2 3377:2 3379:1 3419:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:1 3735:1 3781:1 3812:1 3824:1 4255:1 4266:1 4291:2 4329:1 4366:1 4421:1 4434:1 4436:1 4455:1 4465:2 4513:1 4563:2 4565:1 4645:1 4649:1 4684:1 4700:1 4736:1 4819:1 4825:1 4850:1 4936:1 5113:1 5153:2 5155:1 5204:1 5254:2 5327:1 5333:2 5359:1 5409:1 5437:1 5513:1 5538:1 5549:1 5647:1 5698:2 5744:4 5748:1 5761:1 5927:1 5943:1 5950:1 6035:1 6048:2 6100:1 6102:2 6177:1 6214:2 6255:1 6367:1 6376:1 6407:1 6421:1 6502:1 6512:1 6525:2 6652:1 6761:1 6775:1 6818:1 6913:1 6949:1 7106:1 7147:1 7164:1 7172:1 7173:2 7191:2 7210:1 7238:2 7347:1 7408:2 7420:1 7423:1 7426:2 7444:1 7530:1 7542:1 7549:1 7554:1 7632:1 7724:1 7890:5 7919:1 7954:1 8040:1 8082:1 8085:1 8087:1 8132:1 8141:1 8207:1 8210:1 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:2 8724:1 8775:1 8779:1 8809:3 8913:1 8951:1 9055:1 9073:1 9093:1 9101:2 9120:2 9129:1 9132:2 9136:1 9149:1 9156:5 9190:2 9229:1 9333:1 9341:1 9553:1 9631:1 9665:1 9673:2 9697:1 9715:1 9725:2 9755:2 9760:1 9762:1 9764:1 9927:1 9972:3 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10231:1 10243:1 10309:2 10469:1 10478:1 10497:1 10509:1 10542:1 10552:1 10582:2 10641:1 10686:1 10748:1 10773:1 10908:1 11056:1 11099:1 11108:1 11143:1 11261:1 11283:3 11357:1 11364:4 11416:1 11507:2 11538:1 11618:1 11643:1 11692:1 11721:1 11780:1 11814:8 11948:1 12005:1 12167:1 12188:1 12275:1 12284:2 12337:2 12455:3 12494:1 12506:1 12556:1 12573:2 12610:1 12671:2 12696:1 12735:5 12903:2 12905:1 12925:1 12926:1 12938:1 13052:1 13087:1 13106:1 13113:1 13141:1 13156:1 13226:1 13393:1 13507:1 13590:1 13690:1 13715:1 13742:1 13757:2 13775:1 13787:1 13810:1 13813:2 13824:1 13847:1 13885:1 14025:1 14168:1 14187:2 14214:1 14221:1 14232:1 14239:2 14350:1 14367:1 14496:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:2 15052:1 15065:1 15116:1 15219:1 15234:2 15326:1 15347:1 15462:1 15498:1 15516:1 15579:4 15594:1 15606:1 15607:2 15689:1 15720:2 15756:1 15773:2 15792:1 15826:1 15858:1 15865:1 15899:1 15979:1 15995:1 16075:1 16082:1 16168:1 16182:2 16229:1 16246:2 16265:1 16328:1 16372:1 16381:1 16426:1 16502:2 16561:1 16646:1 16694:1 16882:1 16884:1 16892:1 16916:1 16952:1 16971:8 16974:2 17024:1 17029:1 17078:2 17082:1 17140:1 17258:1 17386:1 17412:1 17426:2 17551:1 17556:2 17564:1 17588:1 17590:1 17657:4 17663:2 17883:1 17937:1 17950:1 17969:2 18025:1 18182:1 18272:4 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18469:1 18503:1 18577:1 18641:1 18662:1 18701:1 18748:1 18779:2 18808:1 18818:2 18891:1 18981:1 19001:1 19031:2 19079:1 19081:1 19109:1 19238:1 19239:1 19369:1 19378:1 19396:1 19428:1 19529:1 19650:1 19656:4 19794:1 19902:1 19922:1 19926:1 19997:4 20028:2 20186:1 20204:2 20228:1 20293:2 20308:1 20321:1 20355:1 20360:1 20418:1 20492:1 20522:2 20581:1 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:1 20660:1 20670:1 20677:1 20735:1 20847:1 20888:1 20903:2 21010:1 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21216:1 21234:1 21461:4 21494:1 21519:1 21558:4 21640:8 21751:1 21865:1 21970:8 21997:2 22028:729 22112:1 22172:1 22241:1 22272:1 22286:1 22290:1 22382:1 22549:1 22554:1 22590:1 22655:1 22722:4 22767:1 22774:1 22789:1 22793:1 22813:1 22817:1 22875:1 22884:2 22892:1 22897:1 22968:1 22995:1 23009:1 23027:1 23077:1 23106:7 23121:1 23149:3 23161:1 23205:1 23264:1 23331:1 23476:1 23520:1 23529:1 23545:1 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23746:1 23787:1 23791:1 23813:1 23846:1 23856:1 23949:1 23979:1 24047:2 24111:1 24153:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24359:1 24384:1 24393:1 24432:1 24463:1 24526:4 24672:1 24698:1 24704:1 24718:1 24728:1 24744:1 24766:1 24794:1 24841:1 24878:1 24880:1 24884:1 24943:1 25001:2 25185:1 25200:1 25205:1 25230:1 25284:1 25292:1 25351:1 25393:1 25406:2 25440:2 25463:1 25504:1 25505:1 25531:4 25610:1 25681:1 25723:1 25765:1 25794:2 25810:1 25972:1 25992:1 26028:1 26042:1 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26232:1 26286:2 26322:2 26339:1 26348:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:1 26505:2 26565:1 26668:1 26703:2 26709:1 26713:2 26722:1 26765:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27215:1 27228:1 27239:1 27273:3 27304:4 27339:3 27396:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27573:1 27601:1 27618:1 27625:2 27634:1 27644:1 27714:1 27717:2 27778:2 27816:1 27848:1 27902:1 28027:2 28047:1 28066:4 28106:1 28114:1 28185:1 28194:2 28280:1 28377:1 28425:1 28449:2 28453:1 28559:2 28572:1 28612:1 28622:2 28628:1 28632:1 28641:1 28733:2 28795:1 28800:1 28928:1 28998:1 29000:1 29015:1 29028:1 29205:1 29226:2 29242:2 29352:1 29477:1 29493:1 29545:1 29555:2 29567:1 29599:1 29627:1 29656:1 29678:4 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 30067:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30338:2 30358:1 30373:1 30417:1 30549:1 30593:1 30639:1 30657:1 30705:1 30740:1 30756:1 30775:1 30779:1 30808:1 30864:1 30904:1 31030:1 31095:1 31113:1 31182:5 31400:1 31425:1 31460:1 31477:1 31536:5 31583:1 31590:1 31610:8 31611:1 31659:1 31699:1 31712:1 31725:1 31757:1 31812:1 31833:1 31925:1 31967:1 31992:1 32022:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32246:1 32291:1 32294:1 32346:1 32385:1 32387:1 32419:1 32424:1 32503:1 32606:1 32643:1 32674:1 32679:1 32759:1 32909:1 32928:5 32938:1 32955:1 32962:1 32974:1 32977:1 32979:1 33003:1 33020:1 33049:2 33065:1 33072:1 33092:1 33094:1 33150:1 33155:1 33214:1 33216:4 33259:1 33271:1 33285:1 33390:1 33395:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:1 33783:1 33787:1 33852:1 34010:2 34094:2 34268:1 34307:1 34330:1 34353:2 34356:1 34405:1 34430:2 34448:1 34460:2 34463:1 34485:1 34614:2
18 7:1 22:1 77:1 144:1 209:4 234:1 235:1 255:1 298:2 304:1 308:1 321:1 375:1 381:2 417:1 621:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 788:1 795:1 844:1 857:1 869:2 887:1 904:1 1016:1 1049:2 1077:1 1080:1 1101:1 1145:1 1223:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1526:1 1533:1 1638:1 1655:1 1660:1 1661:1 1675:1 1715:2 1735:1 1774:2 1866:1 1870:1 1884:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2267:1 2272:1 2284:1 2304:1 2333:2 2363:1 2367:1 2371:1 2413:1 2415:1 2422:3 2429:1 2471:1 2526:1 2546:1 2557:1 2577:2 2587:1 2592:1 2593:1 2597:2 2600:1 2606:1 2639:2 2648:1 2652:1 2653:1 2670:2 2689:1 2691:1 2704:9 2726:2 2742:1 2776:4 2787:1 2817:1 2832:4 2919:1 2923:1 2933:1 2963:2 2983:1 2985:1 3003:1 3006:2 3016:2 3131:2 3133:1 3147:1 3179:1 3255:2 3268:1 3374:2 3377:3 3379:1 3419:1 3428:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:2 3735:1 3781:1 3785:1 3812:1 3824:1 3863:1 4255:1 4266:1 4291:2 4329:1 4366:1 4376:1 4421:1 4434:1 4436:1 4455:1 4465:2 4513:1 4563:2 4565:1 4579:1 4645:1 4649:1 4684:1 4700:1 4707:1 4721:1 4736:1 4819:1 4825:1 4850:1 4936:1 4961:1 5113:1 5153:2 5155:1 5204:1 5254:2 5327:1 5333:2 5359:2 5386:1 5409:1 5437:1 5513:1 5538:1 5549:1 5639:1 5647:1 5698:2 5744:4 5748:1 5761:1 5886:1 5927:1 5943:1 5950:1 6035:1 6048:2 6100:1 6102:2 6177:1 6214:2 6255:1 6275:1 6367:1 6376:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6525:2 6559:1 6652:1 6761:1 6775:1 6818:1 6913:2 6949:1 7106:1 7147:1 7164:1 7172:1 7173:2 7191:2 7210:1 7238:2 7347:2 7408:3 7420:1 7423:1 7426:2 7444:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:1 7890:5 7919:1 7954:1 8040:1 8082:1 8085:1 8087:1 8132:1 8141:1 8207:1 8210:1 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:2 8724:1 8775:1 8779:2 8809:3 8913:1 8951:1 9055:1 9073:1 9093:1 9101:2 9120:2 9129:1 9132:2 9136:1 9144:1 9149:1 9156:5 9181:1 9190:2 9229:1 9333:1 9341:1 9494:1 9553:1 9603:1 9631:1 9665:1 9673:2 9697:2 9715:1 9725:2 9755:2 9760:1 9762:1 9764:1 9927:1 9972:3 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10231:1 10243:1 10309:2 10469:1 10478:1 10497:1 10509:1 10542:1 10552:1 10582:2 10620:1 10641:2 10686:1 10748:1 10773:1 10908:1 11056:1 11099:1 11108:1 11143:1 11261:1 11283:3 11357:1 11364:4 11416:1 11442:1 11507:2 11538:1 11601:1 11618:1 11643:1 11685:1 11692:1 11721:1 11772:1 11780:1 11814:9 11925:1 11948:1 12005:1 12167:1 12188:1 12275:2 12284:2 12337:2 12376:1 12455:3 12474:1 12494:1 12506:1 12556:1 12573:2 12610:1 12671:2 12696:1 12735:5 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13087:1 13102:1 13106:1 13113:1 13141:1 13156:1 13226:1 13298:1 13393:1 13453:1 13507:1 13590:1 13690:1 13715:1 13742:1 13757:2 13775:1 13787:1 13810:1 13813:2 13824:1 13843:1 13847:1 13885:1 14025:1 14119:1 14168:1 14187:2 14214:1 14221:1 14232:1 14239:2 14350:1 14367:1 14496:1 14523:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:2 15001:1 15052:1 15065:1 15116:1 15219:1 15234:2 15326:1 15347:1 15462:1 15498:1 15516:1 15579:4 15594:1 15606:1 15607:2 15689:1 15720:2 15756:1 15773:2 15792:1 15826:1 15858:1 15865:1 15899:1 15979:1 15995:1 16075:1 16082:1 16168:1 16182:2 16220:1 16229:1 16246:3 16265:1 16328:1 16372:1 16381:1 16426:1 16502:2 16561:1 16646:1 16694:1 16882:1 16884:1 16892:1 16916:1 16952:1 16971:9 16974:2 17024:1 17029:1 17078:2 17082:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17551:1 17556:2 17564:1 17588:1 17590:1 17592:1 17655:1 17657:4 17663:2 17745:1 17883:1 17937:1 17950:1 17969:2 18025:1 18152:1 18182:1 18272:4 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18469:1 18503:1 18577:1 18641:1 18662:1 18701:1 18748:1 18779:2 18808:1 18818:2 18891:1 18981:2 19001:1 19031:2 19079:1 19081:1 19109:1 19136:1 19238:1 19239:1 19339:1 19369:1 19378:1 19396:1 19428:1 19529:1 19585:1 19650:1 19656:4 19712:1 19794:1 19902:1 19922:1 19926:1 19986:1 19997:4 20028:2 20186:1 20204:2 20228:1 20293:2 20308:1 20321:1 20355:2 20360:1 20418:1 20492:1 20522:2 20581:1 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:1 20660:1 20670:1 20677:1 20735:1 20847:1 20888:1 20903:2 20918:1 20996:1 21010:1 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21216:1 21234:1 21327:1 21412:1 21461:4 21494:1 21519:1 21558:4 21640:9 21751:1 21810:1 21865:1 21970:9 21997:2 22028:838 22112:1 22172:1 22241:1 22262:1 22272:1 22286:1 22290:1 22382:1 22549:1 22554:1 22590:1 22655:1 22722:4 22767:1 22774:1 22789:1 22793:1 22813:1 22817:1 22875:1 22884:2 22892:1 22897:1 22968:1 22995:2 23009:1 23027:1 23033:1 23035:1 23077:1 23106:7 23121:1 23149:3 23161:1 23205:1 23264:1 23275:1 23331:1 23340:1 23476:1 23510:1 23520:1 23529:1 23545:1 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23746:1 23787:1 23791:1 23813:1 23827:1 23846:1 23856:1 23949:1 23979:1 24047:2 24111:1 24153:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24359:1 24384:1 24393:1 24432:1 24463:1 24484:1 24526:5 24607:1 24672:1 24698:1 24704:1 24718:1 24728:1 24744:1 24766:1 24794:1 24841:1 24878:1 24880:2 24884:1 24943:1 24992:1 25001:3 25059:1 25166:1 25170:1 25185:1 25200:1 25205:1 25230:1 25282:1 25284:1 25292:1 25351:1 25393:1 25406:2 25440:2 25463:1 25504:1 25505:1 25531:4 25610:1 25681:1 25723:1 25765:1 25794:2 25810:1 25972:1 25992:1 26028:1 26042:1 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26232:1 26286:2 26313:1 26322:2 26339:1 26348:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:1 26505:2 26565:1 26650:1 26667:1 26668:1 26703:2 26709:1 26713:2 26722:1 26765:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27215:1 27228:1 27239:2 27273:3 27304:4 27339:3 27396:1 27414:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27573:1 27601:1 27618:1 27625:2 27634:1 27644:1 27714:1 27717:2 27778:2 27816:1 27848:1 27902:2 28027:2 28047:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28280:1 28377:1 28425:2 28449:2 28453:1 28559:2 28572:1 28612:1 28622:2 28628:1 28632:1 28641:1 28733:2 28795:1 28800:1 28928:1 28941:1 28973:1 28995:1 28998:1 29000:1 29015:1 29028:1 29205:2 29226:2 29242:2 29352:1 29477:1 29493:1 29545:1 29555:2 29567:1 29599:1 29627:1 29656:1 29678:4 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 30067:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30338:2 30358:1 30373:2 30417:1 30549:1 30593:1 30639:1 30657:1 30705:1 30740:1 30756:1 30775:1 30779:1 30808:1 30864:1 30904:1 31030:1 31095:1 31113:1 31182:5 31211:1 31400:1 31425:1 31436:1 31460:1 31477:1 31536:5 31583:1 31590:1 31610:9 31611:1 31637:1 31659:1 31699:1 31703:1 31712:2 31725:1 31757:1 31812:1 31833:1 31925:1 31961:1 31967:1 31992:1 32022:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32246:1 32291:1 32294:1 32346:1 32385:1 32387:2 32419:1 32424:1 32502:1 32503:1 32606:1 32643:1 32674:1 32679:1 32759:1 32799:1 32909:1 32928:5 32938:1 32955:1 32962:1 32974:1 32977:1 32979:1 33003:1 33020:1 33049:2 33061:1 33065:1 33072:1 33092:1 33094:1 33150:1 33155:1 33214:1 33216:4 33259:1 33271:1 33285:1 33378:1 33390:1 33395:1 33412:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:1 33735:1 33783:1 33787:1 33852:1 33922:1 34010:2 34094:2 34268:1 34307:1 34330:1 34353:2 34356:1 34405:1 34430:2 34448:1 34460:2 34463:1 34485:1 34523:1 34614:2
18 7:1 22:1 77:1 144:1 209:4 234:1 235:1 255:2 298:2 304:1 308:1 321:1 375:1 381:2 417:1 621:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 775:1 788:1 795:1 844:1 857:1 869:2 887:1 904:1 1016:1 1049:3 1077:1 1080:1 1101:1 1145:1 1223:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1526:1 1533:1 1638:1 1655:1 1660:1 1661:1 1671:1 1675:1 1715:2 1735:1 1774:2 1778:1 1781:1 1866:2 1870:1 1884:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2413:1 2415:1 2422:3 2429:1 2463:1 2471:1 2526:1 2546:1 2557:1 2577:3 2587:1 2592:1 2593:1 2597:2 2600:1 2606:1 2639:2 2644:1 2648:1 2652:1 2653:1 2659:1 2670:2 2673:2 2689:1 2691:2 2704:9 2726:2 2742:1 2776:4 2787:1 2817:1 2832:4 2891:1 2919:1 2923:1 2933:1 2963:2 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:2 3268:1 3287:1 3374:2 3377:3 3379:1 3419:1 3428:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:3 3735:1 3781:1 3785:1 3812:1 3824:1 3863:1 3872:1 4255:1 4266:1 4291:2 4329:1 4366:1 4376:1 4421:1 4434:1 4436:1 4455:1 4462:1 4465:2 4513:1 4563:2 4565:1 4579:1 4645:1 4649:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:1 4766:1 4806:1 4819:1 4825:1 4850:1 4936:1 4961:1 5113:1 5153:2 5155:1 5204:1 5254:2 5327:1 5333:2 5359:2 5386:1 5409:1 5437:1 5513:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:2 5744:5 5748:1 5761:1 5774:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6048:2 6100:1 6102:2 6110:1 6177:1 6214:2 6249:1 6255:1 6263:1 6275:1 6343:2 6367:1 6376:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6525:2 6559:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6949:1 7106:1 7147:2 7164:1 7172:1 7173:2 7191:2 7210:1 7238:2 7287:1 7347:2 7408:3 7420:2 7423:1 7426:2 7444:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:1 7755:2 7890:5 7919:1 7954:1 8040:1 8082:1 8085:2 8087:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:2 8724:1 8775:1 8779:2 8809:3 8913:1 8951:1 9029:1 9055:1 9073:1 9093:1 9101:2 9120:2 9129:1 9132:2 9136:1 9144:1 9149:1 9156:8 9181:1 9190:2 9229:1 9333:1 9341:1 9369:1 9494:1 9553:1 9603:1 9631:1 9665:1 9673:2 9697:3 9715:1 9725:2 9755:2 9760:1 9762:1 9764:1 9927:1 9972:3 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10231:1 10243:1 10309:2 10335:2 10469:1 10478:1 10497:1 10509:1 10542:1 10552:1 10582:2 10620:1 10641:2 10686:1 10748:1 10773:1 10908:1 11056:1 11099:1 11108:1 11136:1 11143:1 11261:1 11283:3 11357:1 11364:4 11416:1 11442:1 11507:2 11538:1 11601:1 11618:1 11643:1 11685:1 11692:1 11714:1 11721:1 11741:1 11772:1 11780:1 11814:9 11925:1 11948:1 12005:1 12092:2 12167:1 12188:1 12275:2 12284:2 12337:2 12376:1 12455:3 12474:1 12494:1 12506:1 12556:2 12573:2 12589:1 12610:1 12671:2 12696:1 12735:5 12752:1 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13087:1 13102:1 13106:1 13113:1 13141:1 13156:1 13226:1 13298:1 13393:1 13453:1 13507:1 13590:1 13690:1 13699:1 13715:1 13742:1 13757:2 13775:1 13785:1 13787:1 13810:1 13813:2 13824:1 13832:1 13843:1 13847:1 13885:1 13964:1 14011:1 14025:1 14119:1 14168:1 14187:2 14214:1 14221:1 14232:1 14239:2 14350:1 14367:1 14369:1 14394:1 14496:1 14523:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:2 15001:1 15052:1 15065:1 15116:1 15209:1 15219:1 15234:2 15326:1 15347:1 15462:1 15498:1 15516:1 15546:1 15579:4 15594:1 15606:1 15607:2 15676:1 15689:1 15720:2 15756:1 15773:2 15792:1 15826:1 15858:1 15865:1 15899:1 15979:1 15995:1 16075:1 16082:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:3 16265:1 16328:1 16372:1 16381:1 16426:1 16468:1 16502:2 16561:1 16646:1 16694:1 16793:2 16882:1 16884:1 16892:1 16916:1 16952:1 16971:9 16974:2 17024:1 17029:1 17078:2 17082:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17530:1 17551:1 17556:2 17564:1 17588:1 17590:1 17592:2 17655:1 17657:4 17663:2 17745:1 17748:1 17786:1 17883:1 17926:1 17937:1 17950:1 17969:2 18025:1 18152:1 18182:1 18272:5 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18469:1 18503:1 18577:1 18614:1 18641:1 18662:1 18701:1 18748:1 18779:2 18808:1 18818:2 18891:1 18981:2 19001:1 19031:2 19042:1 19079:1 19081:1 19109:1 19129:1 19136:1 19238:1 19239:1 19339:1 19369:1 19376:1 19378:1 19396:1 19428:1 19529:1 19585:1 19650:1 19656:4 19712:1 19794:1 19902:1 19922:1 19926:1 19986:1 19997:5 20016:1 20028:2 20186:1 20204:2 20228:1 20293:2 20308:1 20321:1 20355:2 20360:1 20418:1 20492:1 20522:2 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:1 20660:1 20670:1 20677:1 20722:1 20735:1 20740:1 20847:1 20854:1 20888:1 20903:2 20918:1 20996:1 21010:1 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21199:1 21216:1 21234:1 21327:1 21404:1 21412:1 21461:4 21494:1 21519:1 21558:4 21640:9 21751:1 21782:1 21810:1 21865:1 21970:9 21997:2 22028:962 22112:1 22172:1 22200:2 22241:1 22262:1 22272:1 22286:1 22290:1 22302:1 22382:1 22549:1 22554:1 22590:1 22655:1 22722:4 22767:1 22774:1 22789:1 22793:1 22813:1 22817:1 22875:1 22884:2 22892:1 22897:2 22968:2 22995:3 23009:1 23027:1 23028:1 23033:1 23035:1 23077:1 23106:8 23121:1 23149:3 23161:2 23205:1 23264:1 23275:2 23331:1 23340:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23746:1 23787:1 23791:1 23813:1 23827:1 23846:1 23856:1 23949:1 23979:1 24047:2 24111:1 24113:1 24153:1 24164:2 24204:2 24282:1 24286:4 24294:2 24356:1 24359:1 24384:1 24393:1 24432:1 24463:1 24484:1 24501:1 24526:5 24607:1 24672:1 24698:1 24704:1 24718:1 24728:1 24744:1 24766:1 24794:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24943:1 24992:1 25001:3 25031:1 25059:1 25166:1 25170:1 25181:1 25185:2 25200:1 25205:1 25230:1 25251:1 25282:1 25284:1 25292:1 25328:1 25351:1 25393:2 25406:2 25440:2 25463:1 25504:1 25505:1 25531:4 25610:1 25681:1 25701:1 25723:1 25765:1 25794:2 25810:1 25921:2 25972:1 25992:1 26028:1 26042:1 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26286:2 26313:1 26322:2 26339:1 26348:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:1 26505:2 26533:1 26565:1 26650:1 26667:1 26668:1 26703:2 26709:1 26713:2 26722:1 26729:1 26765:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27215:1 27228:1 27239:3 27273:3 27304:4 27339:3 27395:1 27396:1 27414:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:1 27573:1 27601:1 27618:1 27625:2 27634:1 27644:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27848:1 27902:2 28027:2 28047:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28280:1 28350:1 28377:1 28425:2 28434:1 28441:1 28449:2 28453:1 28559:2 28572:1 28612:1 28622:2 28628:1 28632:1 28641:2 28733:2 28795:1 28800:1 28928:1 28941:1 28973:1 28980:1 28995:1 28998:1 29000:1 29015:1 29028:1 29191:1 29205:2 29226:2 29242:2 29352:1 29477:1 29493:1 29531:1 29545:1 29555:2 29567:1 29599:1 29627:1 29656:1 29678:4 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 29907:1 30067:1 30072:1 30091:1 30097:1 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30338:2 30358:1 30373:3 30417:1 30549:1 30593:1 30616:1 30639:1 30657:1 30705:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:1 30864:2 30904:1 31030:1 31095:1 31113:1 31182:5 31211:1 31317:1 31400:1 31415:1 31425:2 31436:1 31454:2 31460:1 31477:1 31536:5 31583:1 31590:1 31610:9 31611:1 31637:1 31659:1 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31925:1 31961:1 31967:1 31992:1 32022:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32291:1 32294:1 32346:1 32385:1 32387:2 32419:1 32424:1 32502:1 32503:1 32556:2 32606:1 32643:1 32674:1 32679:1 32759:1 32799:1 32857:1 32909:1 32928:5 32938:1 32955:1 32962:1 32974:1 32977:1 32979:1 33003:1 33020:1 33029:1 33049:2 33061:1 33065:1 33072:1 33092:1 33094:1 33150:1 33155:1 33214:1 33216:4 33259:1 33271:1 33275:1 33285:1 33378:1 33390:1 33395:1 33412:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:1 33735:1 33754:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34094:2 34268:1 34279:1 34307:1 34330:1 34353:2 34356:1 34405:1 34430:2 34448:1 34460:2 34463:1 34485:1 34523:1 34614:2
18 7:1 22:1 77:1 144:1 209:4 231:1 234:1 235:1 255:2 298:2 304:1 308:1 321:1 375:1 381:2 417:1 621:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 775:1 788:1 795:4 827:1 844:1 857:1 869:2 887:1 904:1 1016:1 1049:3 1077:1 1080:2 1101:1 1106:1 1145:1 1223:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:1 1638:1 1655:1 1660:1 1661:1 1671:1 1675:1 1715:2 1735:1 1774:2 1775:1 1778:1 1781:1 1866:3 1870:1 1884:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2413:1 2415:1 2422:3 2429:1 2463:1 2471:1 2526:1 2546:1 2557:1 2577:3 2587:1 2592:1 2593:1 2597:2 2600:1 2606:1 2639:2 2644:1 2648:1 2652:1 2653:1 2659:1 2660:1 2670:2 2673:2 2689:1 2691:2 2704:9 2726:2 2742:1 2776:4 2787:1 2817:1 2832:4 2891:1 2919:1 2923:1 2933:1 2963:2 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:2 3268:1 3287:1 3374:2 3377:3 3379:1 3419:1 3428:1 3435:1 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:3 3735:1 3781:1 3785:1 3812:1 3820:1 3824:1 3825:1 3863:1 3872:1 4118:1 4255:1 4266:1 4291:2 4329:1 4366:1 4376:1 4377:1 4421:1 4434:2 4436:1 4455:1 4462:1 4465:2 4513:1 4551:1 4563:2 4565:1 4579:1 4645:1 4649:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:1 4766:1 4806:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4961:1 5113:2 5153:2 5155:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:1 5409:1 5437:1 5472:1 5513:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:2 5744:5 5748:1 5761:1 5774:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6041:1 6048:2 6100:1 6102:2 6110:1 6177:2 6214:2 6249:1 6255:1 6263:1 6275:1 6343:3 6367:1 6376:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6522:1 6525:2 6559:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6949:1 7106:1 7147:2 7164:1 7172:1 7173:2 7191:2 7210:1 7238:2 7287:1 7347:3 7408:3 7420:2 7423:1 7426:2 7444:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:1 7755:3 7890:5 7919:1 7954:1 8040:1 8082:1 8085:2 8087:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:3 8724:1 8775:1 8779:2 8809:3 8913:1 8951:1 9029:1 9055:1 9073:1 9093:1 9101:2 9120:2 9129:1 9132:2 9136:1 9144:1 9149:1 9156:9 9181:1 9190:2 9229:1 9333:1 9341:1 9369:1 9494:1 9553:1 9603:1 9631:1 9665:1 9673:2 9697:3 9715:1 9725:2 9755:2 9760:1 9762:2 9764:1 9927:1 9972:3 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10231:1 10243:1 10293:1 10309:2 10335:2 10469:1 10478:1 10497:1 10509:1 10542:1 10552:1 10582:2 10620:1 10631:1 10641:2 10686:1 10748:1 10773:1 10908:1 11056:1 11099:1 11108:1 11136:1 11143:1 11261:1 11283:3 11306:1 11357:1 11364:4 11416:1 11430:1 11442:1 11485:1 11507:2 11538:1 11601:1 11618:1 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:2 11772:1 11780:1 11814:9 11925:1 11948:1 12005:1 12092:2 12167:1 12188:1 12275:2 12284:2 12287:1 12337:2 12376:1 12455:3 12474:1 12494:1 12506:1 12556:2 12573:2 12589:2 12610:1 12671:2 12673:1 12696:1 12735:5 12752:1 12842:1 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13087:1 13102:1 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13507:1 13590:1 13678:1 13690:1 13699:1 13715:1 13742:1 13757:2 13775:1 13785:1 13787:1 13810:1 13813:2 13824:2 13832:1 13843:2 13847:1 13885:1 13964:1 14011:1 14018:1 14025:1 14119:1 14168:1 14187:2 14214:1 14221:1 14232:1 14239:2 14350:1 14367:1 14369:1 14394:1 14496:1 14523:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:2 15001:1 15052:1 15065:1 15116:1 15209:1 15219:1 15234:2 15326:1 15347:1 15462:1 15498:1 15516:1 15546:1 15579:4 15594:1 15606:1 15607:2 15676:1 15689:1 15720:2 15756:1 15763:1 15773:2 15792:1 15826:1 15858:1 15865:1 15899:1 15979:1 15995:1 16075:1 16082:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:3 16265:2 16328:1 16372:1 16381:1 16426:1 16468:1 16502:2 16561:1 16646:2 16694:1 16793:3 16882:1 16884:1 16892:1 16916:1 16952:1 16971:9 16974:2 17024:1 17029:1 17078:2 17082:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17530:1 17551:1 17556:2 17564:1 17588:1 17590:1 17592:2 17655:1 17657:4 17663:2 17745:1 17748:1 17786:1 17883:1 17926:1 17937:1 17950:1 17969:3 18025:1 18143:2 18152:1 18182:1 18272:5 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18469:1 18503:1 18577:1 18614:1 18641:1 18662:1 18696:1 18701:2 18748:1 18779:2 18808:1 18818:2 18891:1 18981:3 19001:1 19031:2 19042:2 19079:1 19081:1 19109:1 19129:1 19136:1 19181:1 19238:1 19239:1 19339:1 19369:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19585:1 19650:1 19656:4 19712:1 19794:1 19833:1 19902:1 19922:1 19926:1 19986:1 19997:5 20016:1 20028:2 20186:1 20204:2 20228:1 20293:2 20308:1 20310:1 20321:1 20355:2 20360:1 20418:1 20492:1 20522:2 20537:1 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:2 20651:2 20660:1 20670:1 20677:1 20722:1 20735:1 20740:1 20847:1 20854:1 20888:2 20903:2 20918:1 20996:1 21010:1 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21199:1 21216:1 21234:1 21327:1 21404:1 21412:1 21461:4 21494:1 21519:1 21558:4 21640:9 21751:2 21782:1 21810:1 21865:1 21970:9 21997:2 22028:1091 22112:1 22168:1 22172:1 22200:2 22232:1 22241:1 22262:1 22272:1 22286:1 22290:1 22302:1 22382:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22767:1 22774:1 22789:1 22793:1 22813:1 22817:1 22865:1 22875:1 22884:2 22892:1 22897:3 22968:3 22995:3 23009:1 23027:1 23028:1 23033:1 23035:1 23077:1 23106:8 23121:1 23149:3 23161:2 23205:1 23264:1 23275:2 23331:1 23340:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23746:1 23787:1 23791:1 23813:1 23827:1 23846:1 23856:1 23949:1 23979:1 24047:2 24096:1 24111:1 24113:1 24153:1 24164:2 24204:2 24243:1 24282:1 24286:4 24294:2 24356:1 24359:1 24384:1 24393:1 24432:1 24463:1 24484:1 24501:1 24526:5 24607:1 24672:1 24698:1 24704:1 24718:1 24728:1 24744:1 24766:1 24794:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:1 24916:1 24943:1 24992:1 25001:3 25031:1 25059:1 25166:1 25170:1 25181:1 25185:2 25200:1 25205:1 25230:1 25251:1 25282:1 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25463:1 25504:1 25505:1 25517:1 25531:4 25560:1 25610:1 25681:2 25701:1 25723:1 25765:1 25794:2 25810:1 25850:1 25921:3 25972:1 25992:1 26028:1 26042:1 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26286:2 26313:1 26322:2 26339:1 26348:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:1 26505:2 26533:1 26565:1 26650:1 26667:1 26668:1 26703:2 26709:1 26713:2 26722:1 26729:1 26765:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27215:1 27228:1 27239:3 27273:3 27293:1 27304:4 27339:3 27395:1 27396:1 27414:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:1 27573:1 27601:1 27618:1 27625:2 27634:1 27644:2 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27848:1 27902:2 28027:2 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28280:1 28350:1 28377:1 28422:1 28425:2 28434:1 28441:1 28449:2 28453:1 28559:2 28572:1 28612:1 28622:2 28628:1 28632:1 28641:3 28733:2 28795:1 28800:1 28928:1 28941:1 28973:1 28980:1 28995:1 28998:1 29000:1 29015:1 29028:1 29191:1 29205:3 29226:2 29242:2 29296:1 29352:1 29477:1 29493:1 29531:2 29545:1 29555:2 29567:1 29599:1 29627:1 29656:1 29678:4 29752:1 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 29907:1 30067:1 30072:1 30091:1 30097:1 30111:1 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30338:2 30358:1 30373:3 30417:1 30475:1 30549:1 30593:1 30616:1 30639:1 30657:1 30705:1 30717:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:1 30864:2 30874:1 30904:1 31030:1 31095:1 31113:1 31182:5 31211:1 31317:1 31400:1 31415:1 31425:2 31436:1 31454:3 31460:1 31477:1 31536:5 31583:1 31590:1 31610:9 31611:1 31637:1 31659:1 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32291:1 32294:3 32346:1 32385:1 32387:2 32419:1 32424:1 32502:1 32503:1 32513:1 32556:3 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32759:1 32799:1 32857:1 32909:1 32928:5 32938:1 32955:1 32962:1 32974:1 32977:1 32979:1 33003:1 33020:1 33029:1 33049:2 33061:1 33065:1 33072:1 33092:1 33094:1 33150:1 33155:1 33214:1 33216:4 33259:1 33271:1 33275:1 33285:1 33378:1 33390:2 33395:1 33412:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:1 33735:2 33754:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34030:1 34094:2 34117:1 34268:1 34279:2 34307:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34448:1 34460:2 34463:1 34485:1 34523:1 34614:2
18 7:1 22:1 77:1 144:1 209:4 231:1 234:1 235:1 237:1 255:2 298:2 304:1 308:1 321:1 375:1 381:2 417:1 441:1 621:1 684:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 775:1 788:1 795:4 807:1 827:1 844:1 857:1 869:2 887:1 904:1 1016:1 1049:3 1061:1 1077:1 1080:2 1101:1 1106:1 1145:1 1223:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:1 1638:1 1655:1 1660:1 1661:1 1671:1 1675:1 1715:2 1735:1 1774:2 1775:1 1778:1 1781:1 1866:3 1870:1 1884:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2413:1 2415:1 2422:4 2429:1 2463:1 2471:1 2526:1 2546:1 2557:1 2577:3 2587:1 2592:1 2593:1 2597:2 2600:1 2605:1 2606:1 2639:2 2640:1 2644:1 2648:1 2652:1 2653:1 2659:1 2660:1 2670:2 2673:3 2689:1 2691:2 2704:10 2726:2 2742:1 2776:4 2787:1 2817:1 2832:4 2891:1 2919:1 2923:1 2933:1 2963:2 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:3 3268:1 3287:1 3374:2 3377:3 3379:1 3419:1 3428:2 3435:1 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:3 3735:1 3781:1 3785:1 3812:1 3820:1 3824:1 3825:1 3863:1 3870:2 3872:1 3898:1 3935:1 4118:1 4139:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4421:1 4434:2 4436:1 4455:1 4462:1 4465:2 4491:1 4503:1 4513:1 4551:1 4563:2 4565:1 4579:1 4645:1 4649:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:1 4766:1 4806:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4961:1 5082:1 5113:2 5153:2 5155:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:1 5409:1 5434:1 5437:1 5472:1 5513:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5744:6 5748:1 5761:1 5774:1 5812:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6041:1 6048:2 6100:1 6102:2 6110:1 6177:2 6214:2 6249:1 6255:1 6263:1 6275:1 6343:3 6367:1 6376:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6926:1 6949:1 7106:1 7147:2 7164:1 7172:1 7173:2 7191:2 7210:1 7238:2 7287:1 7347:3 7408:3 7420:2 7422:1 7423:1 7426:2 7444:1 7525:1 7526:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:1 7755:3 7890:5 7919:1 7954:2 8040:1 8082:1 8085:2 8087:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:3 8724:1 8775:1 8779:2 8809:4 8839:1 8913:1 8951:1 9011:1 9029:1 9055:2 9073:1 9093:1 9099:1 9101:3 9120:2 9122:1 9129:1 9132:2 9136:1 9144:1 9149:1 9156:9 9181:2 9190:2 9229:1 9333:1 9341:1 9369:1 9494:1 9553:1 9603:1 9631:1 9665:1 9673:2 9697:4 9715:1 9725:2 9755:3 9760:1 9762:2 9764:1 9808:1 9927:1 9972:4 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10469:1 10478:1 10497:1 10509:1 10541:1 10542:1 10552:1 10572:2 10582:2 10620:1 10631:1 10641:2 10686:1 10698:1 10748:2 10773:1 10908:1 11056:1 11099:1 11108:1 11136:1 11143:1 11261:1 11283:3 11306:1 11357:2 11364:4 11416:1 11430:1 11442:1 11485:1 11507:2 11538:1 11601:1 11618:1 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:2 11772:1 11780:1 11814:10 11925:1 11948:1 12005:1 12092:2 12167:1 12188:1 12275:2 12284:2 12287:1 12337:2 12361:1 12376:1 12455:4 12474:1 12494:1 12506:1 12556:2 12573:2 12589:2 12610:1 12671:2 12673:1 12696:1 12735:5 12752:1 12842:1 12884:1 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13087:1 13102:1 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13507:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:1 13742:1 13757:2 13759:1 13775:1 13785:1 13787:1 13810:1 13813:3 13824:2 13832:1 13843:2 13847:1 13885:1 13964:1 14011:1 14018:1 14025:1 14119:1 14168:1 14187:2 14210:1 14214:1 14221:1 14232:1 14239:2 14347:1 14350:1 14367:1 14369:1 14394:1 14496:1 14523:1 14543:2 14630:2 14731:1 14870:2 14941:1 14968:2 15001:1 15052:1 15065:1 15116:1 15209:1 15219:1 15234:3 15300:1 15326:1 15347:1 15462:1 15498:1 15516:1 15546:1 15579:4 15594:1 15606:1 15607:2 15676:1 15689:1 15720:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15858:1 15865:2 15899:1 15979:1 15995:1 16075:1 16082:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:3 16265:2 16328:1 16372:1 16381:1 16426:1 16468:1 16502:2 16561:1 16571:1 16646:2 16694:1 16793:3 16882:1 16884:1 16892:1 16916:1 16920:1 16952:1 16971:10 16974:2 17024:1 17029:1 17078:2 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17530:1 17551:1 17556:2 17564:1 17588:1 17590:1 17592:2 17655:1 17657:5 17663:2 17745:1 17748:1 17786:2 17883:1 17893:1 17926:1 17937:1 17950:1 17969:3 18025:1 18143:2 18152:1 18171:1 18182:1 18272:5 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18469:1 18503:1 18577:1 18614:1 18641:1 18662:2 18696:1 18701:2 18748:1 18779:2 18808:1 18818:2 18891:1 18981:3 19001:1 19031:2 19042:2 19079:1 19081:1 19109:1 19129:2 19136:1 19157:1 19181:1 19238:1 19239:1 19306:1 19339:1 19369:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19585:1 19613:1 19650:1 19656:4 19712:1 19794:1 19833:1 19902:1 19922:1 19926:1 19986:1 19997:5 20016:2 20028:2 20186:1 20204:2 20228:1 20293:2 20308:1 20310:1 20321:1 20355:2 20360:1 20418:1 20492:1 20513:1 20522:2 20537:1 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:2 20651:2 20660:1 20670:2 20677:1 20722:2 20735:1 20740:1 20847:1 20854:1 20888:2 20903:2 20918:1 20996:1 21010:1 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21199:1 21216:1 21234:1 21327:1 21404:1 21412:1 21461:5 21469:1 21494:1 21519:1 21558:4 21618:1 21640:10 21739:1 21751:2 21782:1 21810:1 21865:1 21970:10 21997:2 22028:1195 22112:1 22168:1 22172:1 22200:2 22232:1 22241:1 22262:1 22272:1 22286:1 22290:1 22302:1 22382:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22865:1 22875:1 22884:2 22892:1 22897:3 22968:3 22995:3 23009:1 23027:1 23028:2 23033:1 23035:1 23077:1 23088:1 23106:8 23121:1 23149:3 23161:2 23205:1 23264:1 23275:2 23299:1 23331:1 23340:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23745:1 23746:1 23787:1 23791:1 23813:1 23827:1 23846:1 23856:1 23882:1 23921:1 23949:1 23979:1 24047:2 24096:1 24111:1 24113:1 24153:1 24164:2 24173:1 24204:2 24243:1 24282:1 24286:4 24294:2 24356:1 24359:1 24384:1 24393:2 24432:1 24463:1 24484:1 24495:1 24501:1 24526:5 24596:1 24607:1 24672:1 24698:1 24704:1 24718:1 24728:1 24744:1 24766:1 24794:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:1 24916:1 24943:1 24992:1 25001:3 25031:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:1 25205:1 25230:1 25251:1 25282:1 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25463:2 25503:1 25504:1 25505:1 25517:1 25531:4 25560:1 25610:1 25681:2 25701:1 25723:1 25765:1 25794:2 25810:1 25838:1 25850:1 25888:1 25921:3 25972:1 25992:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26286:2 26313:1 26322:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:1 26505:2 26533:1 26565:1 26650:1 26667:1 26668:2 26703:2 26709:1 26713:2 26722:1 26729:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27215:1 27228:1 27239:3 27273:4 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27414:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:1 27573:1 27601:1 27618:1 27625:2 27634:1 27644:2 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27848:1 27902:2 27968:1 28027:2 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28280:1 28350:1 28377:1 28382:1 28422:1 28425:2 28434:1 28441:1 28449:2 28453:1 28559:2 28572:1 28592:1 28612:1 28622:2 28628:1 28632:1 28641:3 28733:2 28795:1 28800:1 28928:1 28941:1 28973:1 28980:1 28984:1 28995:1 28998:1 29000:1 29015:1 29028:1 29191:1 29205:3 29226:2 29242:2 29296:1 29352:1 29370:1 29477:1 29493:1 29531:3 29545:1 29555:2 29567:1 29599:1 29627:1 29656:1 29678:4 29752:1 29777:2 29779:1 29792:1 29830:1 29838:1 29871:1 29907:2 29962:1 30053:1 30067:1 30072:1 30091:1 30097:1 30111:1 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30338:2 30358:1 30373:3 30417:1 30475:1 30549:1 30593:1 30616:1 30639:1 30657:1 30700:1 30705:1 30717:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:2 30864:2 30874:1 30904:1 31030:1 31095:1 31113:1 31182:5 31211:1 31317:1 31400:1 31415:1 31425:4 31436:1 31454:3 31460:2 31477:1 31500:1 31536:5 31583:1 31590:1 31610:10 31611:1 31637:1 31659:1 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32291:1 32294:3 32346:1 32385:1 32387:2 32419:1 32424:1 32502:1 32503:1 32513:1 32556:3 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32759:1 32799:1 32857:1 32909:1 32928:5 32938:1 32955:1 32962:1 32974:1 32977:1 32979:1 33003:1 33020:1 33029:1 33049:3 33061:1 33065:1 33072:1 33092:1 33094:1 33150:1 33155:1 33214:1 33216:4 33259:1 33271:1 33275:1 33285:1 33378:1 33390:2 33395:1 33412:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:2 33735:2 33754:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34030:1 34094:2 34114:1 34117:1 34255:1 34268:1 34279:2 34307:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34448:1 34460:2 34463:1 34485:1 34523:1 34614:2
18 7:1 22:1 77:1 144:1 209:4 231:1 234:1 235:1 237:1 255:2 298:2 304:1 308:1 321:1 375:1 381:2 417:1 441:1 621:1 684:1 687:1 704:1 712:1 714:1 721:1 734:1 748:1 775:1 788:1 795:5 807:1 827:1 844:2 857:1 869:2 887:1 904:1 1016:1 1021:1 1049:3 1061:1 1077:1 1080:2 1101:1 1106:1 1145:2 1223:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1655:1 1660:1 1661:1 1671:1 1675:1 1715:2 1735:1 1774:2 1775:1 1778:1 1781:1 1866:3 1870:1 1884:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:1 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2413:1 2415:1 2422:4 2429:1 2463:1 2471:1 2526:1 2546:1 2557:1 2577:3 2580:1 2587:1 2592:1 2593:1 2597:2 2600:1 2605:1 2606:1 2616:1 2639:2 2640:1 2644:1 2648:1 2652:1 2653:1 2659:1 2660:1 2670:2 2673:3 2680:1 2689:1 2691:2 2704:11 2726:2 2742:1 2776:4 2787:1 2817:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:3 3268:1 3287:1 3359:1 3374:2 3377:3 3379:1 3419:1 3428:2 3434:1 3435:1 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:3 3735:1 3781:1 3785:1 3812:1 3820:1 3824:1 3825:1 3863:1 3870:2 3872:1 3898:1 3935:1 4118:1 4139:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4421:1 4434:2 4436:1 4455:1 4462:1 4465:2 4491:2 4503:1 4513:1 4551:1 4563:2 4565:1 4579:1 4645:1 4649:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:1 4766:1 4780:1 4806:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4961:1 5082:1 5113:2 5153:2 5155:1 5176:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:2 5409:1 5434:1 5437:1 5472:1 5513:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5744:7 5748:1 5761:2 5774:1 5812:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6041:1 6048:2 6100:1 6102:2 6110:1 6177:2 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6343:4 6367:1 6376:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:1 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6926:2 6949:1 7106:1 7111:1 7147:2 7164:1 7172:1 7173:2 7191:2 7210:1 7238:2 7287:1 7347:4 7408:3 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:2 7755:4 7890:5 7919:1 7954:3 7985:1 8040:1 8082:2 8085:2 8087:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:4 8724:1 8775:1 8779:2 8809:4 8839:1 8859:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:2 9093:2 9099:1 9101:3 9120:2 9122:2 9129:1 9132:2 9136:1 9144:1 9149:1 9156:10 9181:2 9189:1 9190:2 9229:1 9333:1 9341:1 9369:1 9373:1 9494:1 9546:1 9553:1 9603:1 9631:1 9665:1 9673:2 9697:4 9715:1 9725:2 9755:3 9760:1 9762:2 9764:1 9808:1 9913:1 9927:1 9972:4 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10469:1 10478:1 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10686:1 10698:1 10748:2 10773:1 10908:1 10981:1 11056:1 11099:1 11108:1 11136:1 11143:1 11261:1 11283:3 11306:1 11357:2 11364:4 11416:1 11430:1 11442:1 11485:1 11507:2 11538:1 11601:1 11618:1 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:2 11772:1 11780:2 11782:1 11814:11 11816:1 11925:1 11948:1 12005:1 12092:2 12108:1 12167:1 12188:1 12275:2 12284:2 12287:1 12337:2 12361:1 12376:1 12455:4 12474:1 12494:1 12506:1 12511:1 12556:2 12573:2 12589:2 12610:1 12671:2 12673:1 12696:2 12735:5 12752:1 12842:1 12862:1 12884:2 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13087:1 13102:3 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:1 13742:1 13757:2 13759:1 13775:1 13785:2 13787:1 13793:1 13810:1 13813:3 13824:2 13832:1 13843:2 13847:1 13885:1 13964:1 14011:1 14018:1 14025:1 14119:1 14168:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14347:1 14350:1 14367:1 14369:1 14394:1 14496:1 14523:1 14543:2 14630:2 14731:1 14802:1 14870:2 14941:1 14968:2 15001:1 15052:1 15065:1 15116:1 15209:1 15219:1 15234:3 15300:1 15326:1 15347:1 15462:1 15498:1 15516:1 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15676:1 15689:1 15720:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15858:1 15865:2 15899:1 15979:1 15995:1 16075:1 16082:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:3 16265:2 16328:1 16372:1 16381:1 16405:1 16426:1 16468:1 16502:2 16561:1 16571:1 16646:2 16694:1 16793:4 16860:1 16882:1 16884:1 16892:1 16916:1 16920:1 16952:1 16971:11 16974:2 17024:1 17026:1 17029:1 17078:2 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17530:1 17551:1 17556:2 17564:1 17588:1 17590:1 17592:2 17655:1 17657:5 17663:2 17745:1 17748:1 17786:2 17883:1 17893:1 17926:1 17937:1 17950:1 17969:3 18025:1 18143:2 18152:1 18171:1 18182:1 18272:5 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18424:1 18428:2 18454:1 18469:1 18503:1 18577:1 18614:1 18641:1 18662:2 18696:1 18701:2 18748:1 18761:1 18779:2 18808:1 18818:2 18891:1 18981:3 19001:1 19031:2 19042:2 19079:1 19081:1 19109:1 19129:2 19136:1 19157:1 19181:1 19238:1 19239:1 19306:1 19339:1 19369:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19650:1 19656:4 19712:1 19794:1 19833:1 19902:1 19922:1 19926:1 19986:1 19997:5 20016:2 20028:2 20186:1 20204:2 20228:2 20293:2 20308:1 20310:1 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20513:1 20522:2 20537:1 20550:1 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:2 20651:3 20660:1 20670:2 20677:1 20722:2 20730:2 20735:1 20740:1 20847:1 20854:1 20888:2 20903:2 20918:2 20996:1 21010:1 21024:2 21033:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21199:2 21216:1 21234:1 21293:1 21327:1 21404:1 21412:1 21461:6 21469:1 21494:1 21519:1 21558:4 21618:1 21640:11 21739:1 21751:2 21782:1 21810:2 21865:1 21970:11 21997:2 22028:1326 22112:1 22168:1 22172:1 22200:3 22232:1 22241:1 22262:1 22272:1 22286:1 22290:1 22302:1 22382:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22884:2 22892:1 22897:3 22958:1 22968:3 22995:3 23009:1 23027:2 23028:2 23033:1 23035:1 23077:1 23088:1 23106:8 23121:1 23144:1 23149:3 23161:2 23205:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23622:1 23630:1 23637:1 23639:1 23667:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:1 23846:1 23856:1 23882:1 23921:1 23949:1 23979:1 24047:2 24096:1 24111:1 24113:1 24153:1 24162:1 24164:2 24173:2 24204:2 24243:1 24282:1 24286:4 24294:2 24356:1 24359:1 24384:1 24393:2 24432:1 24463:1 24484:1 24495:1 24501:1 24526:6 24596:1 24607:1 24672:1 24698:1 24701:1 24704:1 24718:1 24728:1 24744:1 24766:1 24794:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:1 24916:1 24943:1 24992:1 25001:3 25031:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:1 25205:1 25230:1 25251:1 25282:1 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25463:2 25503:1 25504:1 25505:1 25517:1 25531:4 25560:1 25610:1 25681:2 25701:1 25723:1 25765:1 25794:2 25810:1 25838:1 25850:1 25888:1 25921:4 25968:1 25972:1 25992:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26278:1 26286:2 26313:1 26322:2 26335:1 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:1 26505:2 26533:1 26565:1 26650:1 26667:1 26668:3 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27027:1 27108:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:3 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27414:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:1 27573:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27848:1 27902:2 27960:1 27968:1 28027:2 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28280:1 28350:1 28377:1 28382:1 28422:1 28425:2 28434:1 28441:1 28449:2 28453:1 28548:1 28559:2 28572:1 28592:1 28612:1 28622:2 28628:1 28632:1 28641:3 28733:2 28795:1 28800:1 28928:1 28941:1 28973:1 28980:1 28984:1 28995:1 28998:1 29000:1 29015:1 29028:1 29191:1 29205:5 29226:2 29242:2 29296:1 29352:1 29370:1 29477:1 29480:1 29493:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29656:1 29678:4 29752:1 29777:2 29779:1 29792:1 29812:1 29830:1 29838:1 29871:1 29907:2 29962:2 30053:1 30067:1 30072:1 30091:1 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30338:2 30358:1 30373:4 30417:1 30475:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:2 30864:2 30874:1 30904:1 31030:1 31095:1 31113:1 31182:5 31211:1 31317:2 31400:1 31415:1 31425:5 31436:1 31454:4 31460:2 31477:1 31488:1 31500:1 31536:5 31583:1 31590:1 31610:11 31611:1 31619:1 31637:1 31659:1 31667:1 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32103:1 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32419:1 32424:1 32496:1 32502:1 32503:1 32513:1 32556:4 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32759:1 32799:1 32857:1 32909:1 32928:5 32938:1 32955:1 32962:1 32974:2 32977:1 32979:1 33003:1 33020:1 33029:1 33049:3 33061:1 33065:1 33072:1 33092:1 33094:1 33104:1 33150:2 33155:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33477:1 33557:2 33618:2 33661:2 33690:2 33735:2 33750:1 33752:1 33754:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34030:1 34094:2 34114:1 34117:1 34255:1 34268:1 34279:2 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34448:1 34460:2 34463:1 34467:1 34485:1 34523:1 34614:2
18 7:1 22:1 77:1 144:1 209:4 231:1 234:1 235:1 237:1 255:2 298:2 304:1 308:1 321:1 346:1 375:1 381:2 392:1 417:1 441:1 621:1 684:1 687:1 704:1 712:1 714:1 721:1 734:1 748:2 775:1 788:1 795:5 807:1 827:1 844:3 857:1 869:2 887:1 904:1 1009:1 1016:1 1021:1 1049:3 1061:1 1077:1 1080:2 1101:1 1106:1 1145:2 1223:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:2 1735:1 1774:2 1775:1 1778:1 1781:1 1843:1 1866:3 1870:1 1884:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2382:1 2413:1 2415:1 2422:4 2429:1 2463:1 2471:1 2526:1 2546:1 2557:1 2577:3 2580:1 2587:1 2592:1 2593:1 2597:2 2600:1 2605:1 2606:1 2616:1 2639:2 2640:1 2644:1 2648:1 2652:1 2653:1 2654:1 2659:1 2660:1 2670:2 2673:3 2680:2 2689:1 2691:2 2704:12 2726:2 2742:1 2776:4 2787:1 2817:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:3 3268:2 3287:1 3359:2 3374:2 3377:3 3379:1 3419:1 3428:3 3434:1 3435:1 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:5 3735:3 3781:1 3785:1 3812:1 3820:1 3824:1 3825:1 3863:1 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4118:1 4139:1 4185:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4421:1 4434:2 4436:1 4455:1 4462:1 4465:2 4491:2 4503:1 4513:1 4551:1 4556:1 4563:2 4565:1 4579:1 4645:1 4649:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:1 4766:1 4780:1 4806:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4952:1 4961:1 5030:1 5082:1 5113:2 5153:2 5155:1 5176:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:1 5472:1 5513:1 5528:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5744:9 5748:1 5761:2 5774:1 5812:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6041:1 6048:2 6100:2 6102:2 6110:1 6177:2 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6343:4 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6926:2 6949:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:2 7191:2 7210:1 7238:2 7287:1 7347:4 7408:3 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:3 7755:4 7823:1 7845:1 7873:1 7890:5 7919:1 7954:4 7985:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8460:1 8489:1 8688:4 8724:1 8775:1 8779:2 8809:4 8839:1 8859:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:1 9132:2 9136:1 9144:1 9149:1 9156:12 9181:3 9189:1 9190:2 9214:1 9229:1 9333:1 9341:1 9369:1 9373:2 9494:1 9546:1 9553:2 9603:2 9631:1 9665:1 9673:2 9677:1 9697:4 9715:1 9725:2 9755:4 9760:1 9762:2 9764:1 9808:1 9899:1 9913:1 9927:1 9945:1 9972:4 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:1 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10657:1 10686:1 10698:1 10748:2 10757:1 10773:1 10908:1 10981:1 11056:1 11099:1 11105:1 11108:1 11136:1 11143:1 11261:1 11283:3 11306:1 11357:2 11364:4 11416:1 11430:1 11442:1 11485:1 11507:2 11538:1 11601:1 11618:1 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:2 11772:1 11780:2 11782:1 11814:12 11816:1 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12188:1 12198:1 12275:2 12284:2 12287:1 12337:2 12361:1 12376:1 12455:4 12474:1 12494:1 12506:1 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:2 12735:5 12752:1 12842:1 12862:1 12884:2 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:1 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:1 13793:2 13810:1 13813:3 13824:2 13832:1 13843:2 13847:1 13885:1 13964:1 14011:1 14018:1 14025:1 14119:1 14168:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14347:1 14350:1 14367:2 14369:1 14394:1 14496:1 14506:1 14523:1 14543:2 14630:2 14731:1 14802:1 14870:2 14941:1 14968:2 15001:1 15030:1 15042:1 15052:1 15065:1 15071:2 15116:1 15209:1 15219:1 15234:3 15300:2 15326:1 15347:1 15462:1 15498:1 15516:2 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15858:1 15865:2 15899:1 15979:2 15995:1 16075:1 16082:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:3 16265:2 16328:1 16372:1 16381:1 16405:1 16426:1 16468:1 16502:2 16561:1 16571:1 16646:2 16694:1 16728:1 16793:4 16860:1 16882:1 16884:1 16892:1 16916:1 16920:1 16952:1 16971:12 16974:2 17024:1 17026:1 17029:1 17078:2 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17530:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:1 17592:2 17630:1 17655:1 17657:5 17663:2 17745:1 17748:1 17763:1 17786:2 17883:1 17893:1 17926:1 17937:1 17950:1 17969:3 18025:1 18031:1 18143:2 18152:1 18171:1 18182:1 18272:6 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18454:1 18469:1 18503:1 18508:1 18577:1 18614:1 18641:1 18662:2 18696:1 18701:2 18706:1 18748:1 18761:1 18779:2 18808:1 18818:2 18891:1 18981:3 19001:1 19007:1 19031:2 19042:2 19079:1 19081:1 19109:1 19129:2 19136:1 19157:1 19181:1 19238:1 19239:1 19306:1 19339:1 19369:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:1 19794:1 19833:1 19902:1 19922:1 19926:1 19986:1 19997:6 20016:2 20028:2 20186:1 20204:2 20228:2 20293:2 20308:1 20310:1 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20513:1 20522:2 20537:1 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:2 20651:3 20660:1 20670:2 20677:2 20722:2 20730:2 20735:1 20740:1 20766:1 20847:1 20854:1 20888:2 20903:2 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21071:1 21096:2 21130:4 21135:1 21147:1 21148:1 21149:2 21164:1 21199:2 21216:2 21234:1 21293:1 21321:1 21327:1 21404:1 21412:1 21461:6 21469:1 21494:1 21519:1 21558:4 21618:1 21640:12 21698:1 21739:1 21751:2 21782:1 21810:3 21865:1 21970:12 21997:2 22028:1476 22112:1 22168:1 22172:1 22200:3 22232:1 22241:1 22262:1 22272:1 22286:1 22290:1 22293:1 22302:1 22382:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22884:2 22892:1 22897:3 22931:1 22958:1 22968:3 22995:6 23009:1 23027:2 23028:2 23033:1 23035:1 23077:1 23088:1 23106:9 23121:1 23144:1 23149:3 23161:2 23169:1 23205:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23407:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:2 23639:1 23654:1 23667:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:1 23846:1 23856:1 23882:2 23921:1 23949:1 23979:1 24047:2 24096:1 24111:1 24113:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24243:1 24282:1 24286:4 24294:2 24322:1 24356:1 24359:1 24384:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:1 24513:1 24526:6 24596:1 24607:1 24623:1 24672:1 24698:1 24701:1 24704:2 24718:1 24728:1 24744:1 24766:1 24794:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:2 24916:1 24933:1 24943:1 24992:1 25001:4 25031:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:1 25205:1 25230:1 25251:1 25282:1 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25463:2 25503:1 25504:1 25505:1 25509:1 25517:1 25531:4 25560:1 25610:1 25681:2 25701:1 25723:1 25765:1 25794:2 25810:1 25838:1 25850:1 25888:1 25921:4 25968:1 25972:1 25992:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26278:1 26286:2 26313:1 26322:2 26335:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26471:2 26496:1 26505:2 26533:1 26565:2 26650:1 26667:1 26668:3 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26903:1 26914:1 26919:1 26930:2 27006:2 27008:1 27027:1 27108:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:3 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27414:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:2 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27848:1 27902:2 27960:1 27968:1 28027:2 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28350:1 28377:1 28382:1 28422:1 28425:3 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28464:1 28537:1 28548:1 28559:2 28572:2 28592:1 28612:1 28622:2 28628:1 28632:1 28641:4 28733:2 28795:1 28800:1 28865:1 28928:1 28941:1 28973:1 28980:1 28984:1 28995:1 28998:2 29000:1 29015:1 29028:1 29046:1 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29474:1 29476:1 29477:1 29480:1 29483:1 29493:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29812:1 29830:1 29838:1 29871:1 29902:1 29907:2 29962:2 30053:1 30067:1 30072:2 30091:1 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30338:3 30358:1 30373:6 30417:1 30475:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:2 30864:2 30874:1 30904:1 31030:1 31095:1 31113:1 31182:5 31211:1 31317:2 31400:1 31415:1 31425:5 31436:1 31454:4 31460:2 31477:1 31488:1 31500:1 31536:5 31583:1 31590:1 31610:12 31611:1 31619:1 31637:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32103:2 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32419:1 32424:1 32471:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:4 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32759:1 32799:1 32823:1 32857:2 32909:1 32928:5 32938:1 32955:2 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:3 33061:1 33065:1 33072:1 33092:1 33094:1 33104:1 33150:3 33155:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33557:2 33618:2 33661:2 33690:2 33735:2 33750:1 33752:1 33754:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34030:1 34094:2 34114:1 34117:1 34255:1 34268:1 34279:2 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34448:1 34460:2 34463:1 34467:1 34485:1 34523:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:1 237:1 255:2 298:2 304:1 308:1 321:1 346:1 375:1 381:2 392:1 417:1 441:1 512:1 621:1 684:2 687:1 704:1 712:1 714:1 721:1 734:1 748:2 775:1 788:1 795:5 807:1 827:1 844:3 857:1 869:2 887:1 904:1 1009:1 1016:1 1021:1 1049:3 1061:1 1077:1 1080:2 1101:1 1106:1 1145:2 1223:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:2 1735:1 1774:2 1775:1 1778:1 1781:1 1843:1 1866:4 1870:1 1884:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2382:1 2413:1 2415:1 2422:4 2429:1 2463:1 2471:1 2526:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:1 2592:1 2593:1 2597:2 2600:1 2605:1 2606:1 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:1 2654:1 2659:1 2660:1 2670:2 2673:3 2680:2 2689:1 2691:2 2704:13 2726:2 2742:1 2776:4 2787:1 2817:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:3 3268:2 3287:1 3359:2 3374:3 3377:3 3379:1 3419:1 3428:3 3434:1 3435:1 3445:1 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:3 3781:1 3785:1 3803:1 3812:1 3820:1 3824:1 3825:1 3863:1 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4118:1 4139:1 4185:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4421:1 4434:2 4436:1 4455:1 4462:1 4465:2 4491:2 4503:1 4506:1 4513:1 4551:1 4556:1 4563:2 4565:1 4579:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4952:1 4961:1 5030:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:1 5472:1 5513:1 5528:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5744:9 5748:1 5761:2 5774:1 5812:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6041:1 6048:2 6100:2 6102:2 6110:1 6142:1 6177:2 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6343:4 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6926:2 6949:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:2 7191:2 7198:1 7210:1 7238:2 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:1 7549:1 7554:1 7632:1 7724:1 7735:3 7755:4 7823:1 7845:1 7873:1 7890:5 7919:1 7954:4 7972:1 7985:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8460:2 8489:1 8541:1 8646:1 8688:4 8724:1 8775:1 8779:2 8809:4 8839:1 8859:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:1 9132:2 9136:1 9144:1 9148:1 9149:1 9156:12 9181:3 9189:1 9190:2 9214:1 9229:1 9278:1 9333:1 9341:1 9369:1 9373:2 9494:1 9546:1 9553:2 9603:2 9631:1 9665:1 9673:2 9677:1 9697:4 9715:1 9725:2 9755:4 9760:2 9762:2 9764:1 9808:1 9809:1 9899:1 9913:1 9927:1 9945:1 9972:4 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10124:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:1 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10908:1 10981:1 11056:1 11099:1 11105:1 11108:1 11136:1 11143:1 11261:1 11283:3 11299:1 11306:1 11334:1 11357:2 11364:4 11416:1 11430:1 11442:1 11485:1 11507:2 11538:1 11601:1 11618:2 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:2 11772:1 11780:3 11782:1 11814:13 11816:1 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12188:1 12198:1 12275:2 12284:2 12287:1 12292:1 12337:2 12361:1 12376:1 12455:4 12474:1 12494:1 12506:1 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:2 12735:5 12752:1 12842:1 12862:1 12884:2 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:1 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:1 13793:2 13810:1 13813:3 13824:2 13832:1 13843:3 13847:1 13885:1 13923:1 13964:1 14011:1 14018:1 14025:1 14119:1 14168:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14347:1 14350:1 14367:2 14369:1 14394:1 14422:1 14496:1 14506:1 14523:1 14543:2 14548:1 14630:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:1 14968:3 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:4 15300:2 15326:1 15347:1 15462:1 15498:1 15516:2 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15740:1 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15858:1 15865:2 15899:1 15979:2 15995:1 16075:1 16082:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:4 16265:2 16328:1 16331:1 16372:1 16381:1 16405:1 16426:1 16468:1 16502:2 16542:1 16561:1 16565:1 16571:1 16646:2 16694:1 16728:1 16793:4 16860:1 16882:1 16884:2 16892:1 16914:1 16916:1 16920:1 16952:1 16971:13 16974:2 17024:1 17026:1 17029:1 17078:2 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:1 17426:2 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17630:1 17655:1 17657:5 17663:2 17745:1 17748:1 17763:1 17786:3 17883:1 17893:1 17926:1 17937:1 17950:1 17969:3 18025:1 18031:1 18143:2 18152:1 18171:1 18182:1 18242:1 18272:7 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18454:1 18469:1 18503:1 18508:1 18577:1 18614:1 18641:1 18662:2 18696:1 18701:2 18706:1 18748:1 18761:1 18779:2 18808:1 18818:2 18876:1 18891:1 18981:3 19001:1 19007:1 19031:2 19042:2 19079:1 19081:1 19109:1 19129:2 19136:1 19157:1 19181:1 19238:1 19239:1 19306:1 19339:1 19369:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:1 19794:1 19833:1 19902:1 19922:1 19926:1 19986:1 19997:7 20016:2 20028:2 20186:1 20204:2 20228:2 20293:2 20308:1 20310:1 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:1 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:2 20651:3 20660:1 20670:2 20677:2 20722:2 20730:3 20735:1 20740:1 20766:1 20847:1 20854:1 20888:2 20903:2 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21067:1 21071:1 21096:2 21130:4 21135:1 21141:1 21147:1 21148:1 21149:2 21164:1 21199:2 21216:2 21234:1 21293:1 21321:1 21327:1 21333:1 21404:1 21412:1 21461:6 21469:1 21494:1 21519:1 21528:1 21558:4 21618:1 21640:13 21698:1 21739:1 21751:2 21782:1 21810:3 21865:1 21970:13 21997:2 22028:1586 22112:1 22168:1 22172:1 22200:3 22232:1 22241:1 22262:1 22272:2 22286:2 22290:1 22293:1 22302:1 22382:1 22469:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22884:2 22892:1 22897:3 22931:1 22958:1 22968:4 22995:6 23009:1 23027:2 23028:3 23033:1 23035:1 23051:1 23077:1 23088:1 23106:10 23121:1 23144:1 23149:3 23161:2 23169:1 23205:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23407:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:2 23639:1 23654:1 23667:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:1 23846:1 23854:1 23856:1 23882:2 23921:1 23949:1 23979:1 24047:2 24056:1 24096:1 24111:1 24113:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24243:1 24282:1 24286:4 24294:2 24322:1 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:1 24513:1 24526:6 24595:1 24596:1 24607:1 24623:1 24672:1 24698:1 24701:1 24704:2 24710:1 24718:1 24728:1 24744:1 24766:1 24794:1 24797:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:2 24907:1 24916:1 24933:1 24943:1 24992:1 25001:4 25031:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25282:1 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25463:2 25503:1 25504:1 25505:1 25509:1 25517:1 25531:4 25560:1 25608:1 25610:1 25681:2 25701:1 25723:1 25765:1 25794:2 25810:1 25838:1 25850:1 25888:1 25921:4 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26278:1 26286:2 26313:1 26322:2 26335:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:1 26471:2 26496:1 26505:2 26513:1 26533:1 26565:2 26608:1 26650:1 26667:1 26668:3 26671:1 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26914:1 26919:1 26925:1 26930:2 27006:2 27008:1 27027:1 27108:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:3 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27414:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:2 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27848:1 27902:2 27960:1 27968:1 27983:1 28027:2 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28350:1 28377:1 28382:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28464:1 28537:1 28548:1 28559:2 28572:2 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28733:2 28795:1 28800:1 28865:1 28928:1 28941:1 28973:1 28980:1 28984:1 28995:1 28998:2 29000:1 29015:1 29028:1 29046:1 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29474:1 29476:1 29477:1 29480:1 29483:1 29493:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29812:1 29830:1 29838:1 29871:1 29902:1 29907:3 29962:2 30053:1 30067:1 30072:2 30091:1 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30338:3 30358:1 30373:7 30417:1 30471:1 30475:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:2 30864:2 30874:1 30904:1 31030:1 31042:1 31095:1 31113:1 31182:5 31211:1 31317:2 31400:1 31415:1 31425:5 31436:1 31454:4 31460:2 31477:1 31488:1 31500:1 31536:5 31583:1 31590:1 31610:13 31611:1 31619:2 31624:1 31637:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32076:1 32103:2 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:4 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32759:1 32799:1 32823:1 32857:2 32893:1 32909:1 32928:6 32938:1 32955:3 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:3 33061:1 33065:1 33072:1 33092:1 33094:1 33096:1 33104:1 33150:3 33155:1 33157:1 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33557:2 33618:2 33661:2 33690:2 33735:3 33750:1 33752:1 33754:1 33782:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34030:1 34094:2 34114:1 34117:1 34255:1 34268:1 34279:3 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:1 34448:1 34460:2 34463:1 34467:1 34485:1 34523:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:1 237:1 255:2 298:2 304:1 308:1 321:1 346:1 375:1 381:2 392:1 417:1 436:1 441:1 512:1 621:1 659:1 684:2 687:1 704:1 712:1 714:1 721:1 734:1 748:2 775:1 788:1 795:5 807:1 827:1 844:3 857:1 869:2 871:1 887:1 904:1 1009:1 1016:1 1021:1 1048:1 1049:3 1061:1 1077:1 1080:2 1101:1 1106:1 1145:2 1223:1 1287:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:2 1735:1 1772:1 1774:2 1775:1 1778:1 1781:1 1843:2 1851:1 1866:4 1870:1 1884:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2382:1 2413:1 2415:1 2422:4 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:1 2592:1 2593:1 2597:2 2600:1 2604:1 2605:1 2606:1 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:1 2654:1 2659:1 2660:1 2665:1 2670:2 2673:3 2680:2 2689:1 2691:2 2704:14 2716:1 2726:2 2742:1 2776:4 2787:1 2817:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3255:4 3268:2 3287:1 3359:2 3374:3 3377:3 3379:1 3419:1 3428:4 3434:1 3435:1 3445:2 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3803:1 3812:1 3820:1 3824:1 3825:1 3863:1 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4118:1 4139:1 4185:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4418:1 4421:1 4434:2 4436:1 4453:1 4455:1 4462:1 4465:2 4491:2 4503:1 4506:2 4513:1 4551:1 4556:1 4563:2 4565:1 4579:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4952:1 4961:1 5030:2 5082:1 5113:2 5153:2 5155:1 5176:1 5189:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:1 5472:1 5513:1 5528:2 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:9 5748:1 5760:1 5761:3 5774:1 5812:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 6035:1 6041:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:1 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6913:2 6926:2 6949:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:2 7191:2 7198:1 7210:1 7238:2 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:1 7632:1 7711:1 7724:1 7735:3 7755:5 7823:1 7845:1 7873:1 7890:5 7919:1 7954:4 7972:1 7985:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8416:1 8460:2 8489:1 8541:1 8646:1 8688:4 8724:1 8775:1 8779:2 8809:4 8839:1 8859:1 8884:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:2 9132:2 9136:1 9144:1 9148:1 9149:1 9156:12 9181:4 9189:1 9190:2 9214:1 9229:1 9278:1 9333:1 9341:1 9369:1 9373:2 9494:1 9546:1 9553:2 9564:1 9603:2 9631:1 9665:1 9673:2 9677:1 9697:4 9715:1 9725:2 9755:4 9760:2 9762:2 9764:1 9808:1 9809:1 9899:1 9913:1 9927:1 9945:1 9972:4 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10124:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:1 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10908:1 10981:2 11056:1 11099:1 11105:1 11108:1 11136:1 11143:1 11261:1 11283:3 11299:1 11306:1 11334:1 11357:2 11364:4 11416:1 11430:1 11442:1 11478:1 11485:1 11507:2 11538:1 11601:1 11618:2 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:3 11772:1 11780:3 11782:1 11810:1 11814:14 11816:2 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12188:1 12198:1 12275:2 12284:2 12287:1 12292:1 12337:2 12361:1 12376:1 12433:1 12455:4 12474:1 12476:1 12494:1 12506:1 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12735:5 12752:1 12842:1 12862:1 12884:2 12900:1 12903:2 12905:1 12923:1 12925:1 12926:2 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13478:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:1 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:1 13793:2 13810:1 13813:4 13824:2 13832:1 13843:3 13847:1 13885:1 13923:1 13964:1 14011:1 14018:1 14025:1 14119:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:1 14394:1 14422:1 14496:1 14506:1 14523:1 14543:2 14548:1 14630:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:1 14968:3 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:4 15300:2 15326:1 15347:1 15462:1 15498:1 15516:2 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15740:1 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15858:1 15865:2 15899:1 15979:3 15995:1 16037:1 16075:1 16082:2 16132:1 16168:1 16182:2 16220:1 16229:1 16246:4 16265:2 16328:1 16331:1 16372:1 16381:1 16405:1 16426:1 16468:1 16502:2 16542:1 16561:1 16565:2 16571:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16882:1 16884:2 16892:1 16899:1 16914:1 16916:1 16920:1 16952:1 16971:14 16974:2 17024:1 17026:1 17029:1 17078:3 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:2 17426:2 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17620:1 17630:1 17655:1 17657:5 17663:2 17745:1 17748:1 17763:1 17786:3 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:1 18031:1 18082:1 18143:2 18152:1 18171:1 18182:1 18242:1 18272:7 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18577:1 18614:1 18641:1 18662:2 18696:1 18701:2 18706:1 18748:1 18761:1 18779:2 18808:1 18818:2 18876:1 18891:1 18981:3 19001:1 19007:1 19031:2 19042:3 19079:1 19081:1 19109:1 19129:2 19136:1 19157:1 19181:1 19195:1 19238:1 19239:1 19306:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:2 19794:1 19833:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:7 20016:2 20028:2 20071:1 20186:1 20204:2 20228:3 20293:2 20308:1 20310:1 20315:1 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:1 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:3 20735:1 20740:1 20766:1 20847:1 20854:1 20888:2 20903:2 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21067:1 21071:1 21096:2 21130:4 21135:2 21141:1 21147:1 21148:1 21149:2 21164:1 21199:3 21216:3 21234:1 21293:1 21321:1 21327:1 21333:1 21404:1 21412:1 21461:6 21469:1 21494:1 21519:1 21528:1 21558:4 21618:1 21640:14 21698:1 21739:1 21751:2 21782:1 21810:3 21865:1 21970:14 21997:2 22028:1675 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:2 22286:2 22290:1 22293:1 22302:1 22382:1 22469:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22884:2 22892:1 22897:3 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:3 23033:1 23035:1 23051:2 23077:1 23088:1 23106:10 23121:1 23144:1 23149:3 23161:2 23169:1 23205:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23347:1 23407:1 23421:1 23476:1 23505:1 23510:1 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:2 23639:1 23654:1 23667:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:2 23846:1 23854:1 23856:1 23882:2 23921:1 23949:1 23979:1 24047:2 24056:1 24096:1 24111:1 24113:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24243:1 24282:1 24286:4 24294:2 24317:1 24322:1 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:1 24513:1 24526:6 24530:1 24557:1 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:2 24710:1 24718:1 24728:1 24744:1 24766:1 24794:1 24797:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25282:2 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25463:2 25503:1 25504:1 25505:1 25509:1 25517:1 25531:4 25560:1 25608:1 25610:1 25681:2 25701:1 25723:1 25765:1 25794:2 25810:1 25838:1 25850:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26278:1 26286:2 26313:1 26322:2 26335:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:1 26471:2 26496:1 26505:2 26513:1 26533:1 26565:2 26588:1 26608:1 26630:1 26650:1 26667:1 26668:3 26671:1 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26914:1 26919:1 26925:1 26930:2 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:4 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:2 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27960:1 27968:1 27983:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28350:1 28377:1 28382:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28464:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28733:2 28795:1 28800:1 28865:1 28928:1 28941:1 28973:1 28980:1 28984:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:1 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29474:1 29476:1 29477:1 29480:1 29483:1 29493:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29812:1 29830:1 29838:1 29871:1 29902:1 29907:3 29962:2 30053:1 30067:1 30072:2 30091:1 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30338:3 30358:1 30373:7 30417:1 30471:1 30475:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:2 30864:2 30874:1 30904:1 31030:1 31042:1 31095:1 31113:1 31182:5 31211:1 31317:2 31400:1 31415:1 31425:6 31436:1 31454:5 31460:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:14 31611:1 31619:2 31624:1 31637:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31909:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32076:1 32103:2 32114:2 32132:1 32146:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:5 32604:1 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:1 32909:1 32928:6 32938:1 32955:3 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:3 33061:1 33065:1 33072:1 33092:1 33094:1 33096:1 33104:1 33150:3 33155:1 33157:1 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33557:2 33618:2 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 34010:2 34030:1 34094:2 34114:1 34117:1 34255:1 34268:1 34279:3 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:1 34448:1 34460:2 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:1 321:1 346:1 375:1 381:2 392:2 417:1 432:2 436:1 441:1 512:1 523:1 621:1 659:1 684:2 687:1 704:1 712:1 714:1 721:1 734:1 748:2 775:1 788:1 795:5 807:1 827:1 844:3 857:1 869:2 871:1 887:1 904:1 1005:1 1009:1 1016:1 1021:1 1048:1 1049:3 1061:1 1077:1 1080:2 1101:1 1106:1 1145:2 1223:1 1287:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:2 1735:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1843:2 1851:1 1866:4 1870:1 1884:1 1899:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:2 2304:1 2333:2 2363:1 2367:1 2371:1 2382:1 2413:1 2415:1 2422:4 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:2 2592:1 2593:1 2597:2 2600:1 2604:1 2605:1 2606:1 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:1 2654:1 2659:1 2660:1 2665:1 2670:2 2673:4 2680:2 2689:1 2691:2 2693:1 2704:15 2716:1 2726:2 2742:1 2761:1 2776:4 2787:1 2817:1 2819:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3231:1 3255:5 3268:2 3287:1 3359:2 3374:3 3377:3 3379:1 3419:1 3428:5 3434:1 3435:1 3445:2 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3786:1 3803:1 3812:1 3820:1 3824:1 3825:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4118:1 4139:1 4153:1 4185:1 4199:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4418:1 4421:1 4434:2 4436:1 4453:1 4455:1 4462:1 4465:2 4491:2 4503:1 4506:2 4513:1 4551:1 4556:1 4563:2 4565:1 4579:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:1 4819:1 4825:1 4850:1 4893:1 4898:1 4936:1 4952:1 4961:1 5030:2 5082:1 5113:2 5153:2 5155:1 5176:1 5189:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:2 5472:1 5513:1 5528:2 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:9 5748:1 5760:1 5761:3 5774:1 5812:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:1 6035:1 6041:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:2 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6882:1 6913:2 6926:2 6949:1 6987:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:2 7191:2 7198:1 7210:1 7238:2 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:1 7632:1 7711:1 7724:1 7735:3 7755:5 7823:1 7845:1 7873:1 7890:5 7891:1 7919:1 7931:1 7954:4 7972:1 7985:1 8018:1 8029:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8416:1 8460:2 8489:1 8541:1 8646:1 8688:4 8724:1 8775:1 8779:2 8809:4 8819:1 8839:1 8859:1 8884:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:3 9132:2 9136:1 9144:1 9148:1 9149:1 9156:13 9181:5 9184:1 9189:1 9190:2 9214:1 9229:1 9278:1 9333:1 9341:1 9369:1 9373:2 9494:1 9546:1 9553:2 9564:1 9603:2 9631:1 9665:1 9673:2 9677:1 9697:5 9715:1 9725:2 9755:6 9760:2 9762:2 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:1 9945:1 9972:4 10014:5 10093:1 10104:1 10105:1 10109:1 10117:1 10124:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:1 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10908:1 10981:2 11056:1 11099:1 11105:1 11108:1 11136:1 11143:1 11261:1 11283:3 11299:1 11306:1 11334:1 11357:2 11364:4 11416:1 11430:1 11442:1 11478:1 11485:1 11507:2 11538:1 11601:1 11618:2 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:3 11772:1 11780:3 11782:1 11810:1 11814:15 11816:2 11910:1 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12188:1 12198:1 12275:2 12284:2 12287:1 12292:1 12337:2 12361:1 12376:1 12433:1 12455:4 12474:1 12476:1 12494:1 12506:1 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12735:5 12752:1 12842:1 12862:1 12884:3 12900:1 12903:2 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:1 13333:1 13393:1 13453:1 13478:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:1 13793:2 13810:1 13813:5 13824:2 13832:1 13843:3 13847:1 13885:1 13923:1 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:1 14394:1 14422:1 14496:1 14506:2 14523:1 14543:2 14548:1 14563:1 14630:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:2 14968:3 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:4 15287:1 15300:3 15326:1 15347:1 15462:1 15498:1 15516:2 15521:1 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15740:1 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15851:1 15858:1 15865:2 15899:1 15979:3 15995:1 16037:1 16061:1 16067:1 16075:1 16082:2 16091:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:4 16265:2 16328:1 16331:1 16372:1 16381:1 16405:1 16426:1 16468:1 16502:2 16542:1 16561:1 16565:2 16571:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16882:1 16884:2 16892:1 16899:1 16914:1 16916:1 16920:1 16952:1 16971:15 16974:2 17024:1 17026:1 17029:1 17078:4 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:2 17426:2 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17620:1 17630:1 17655:1 17657:5 17663:2 17745:1 17748:1 17763:1 17786:3 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:1 18031:1 18082:1 18143:2 18152:1 18171:1 18182:1 18242:1 18272:7 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:1 18577:1 18614:1 18641:1 18662:2 18664:1 18696:1 18701:2 18706:1 18748:1 18761:1 18779:2 18808:1 18818:2 18876:1 18891:1 18981:3 19001:1 19007:1 19031:2 19042:3 19079:1 19081:1 19093:1 19109:1 19123:1 19129:2 19136:1 19157:1 19181:1 19195:1 19238:1 19239:1 19306:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:2 19794:1 19833:1 19892:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:7 20016:2 20028:2 20032:1 20071:1 20186:1 20204:2 20228:3 20293:2 20308:1 20310:1 20315:1 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:1 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:3 20735:1 20740:1 20747:1 20766:1 20847:1 20854:1 20888:2 20903:2 20907:1 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21067:2 21071:1 21096:2 21130:4 21135:3 21141:1 21147:1 21148:1 21149:2 21164:1 21199:3 21216:3 21234:1 21293:1 21321:1 21327:1 21333:1 21404:1 21412:1 21461:6 21469:1 21494:1 21519:1 21528:1 21558:4 21618:1 21640:15 21698:1 21739:1 21751:2 21782:1 21810:3 21856:1 21865:1 21970:15 21997:2 22006:1 22028:1720 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:2 22286:2 22290:1 22293:1 22302:1 22382:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22884:2 22892:1 22897:3 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:3 23033:1 23035:1 23051:2 23077:1 23088:1 23106:11 23121:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23347:1 23407:1 23421:1 23476:1 23505:1 23510:1 23511:1 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:3 23639:1 23654:1 23667:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:2 23846:1 23854:1 23856:1 23882:3 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:1 24111:1 24113:2 24128:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24243:1 24282:1 24286:4 24294:2 24317:1 24322:2 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:1 24513:1 24526:6 24530:1 24557:2 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:2 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24794:1 24797:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25282:2 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25450:1 25463:2 25503:1 25504:1 25505:1 25509:1 25517:1 25531:4 25560:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:2 25850:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26197:1 26203:1 26204:1 26219:1 26232:1 26278:1 26286:2 26313:1 26322:2 26335:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:1 26467:1 26471:2 26496:1 26505:2 26513:1 26533:1 26551:1 26552:1 26565:2 26588:1 26608:1 26630:1 26650:1 26667:1 26668:4 26671:1 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26914:1 26919:1 26925:1 26930:2 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:4 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:3 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27670:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27960:1 27968:1 27983:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28301:1 28350:1 28377:1 28382:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28464:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:1 28733:2 28795:1 28800:1 28822:1 28865:1 28928:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:2 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29474:1 29476:1 29477:2 29480:1 29483:1 29493:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29812:1 29830:1 29838:1 29871:1 29902:1 29907:3 29962:2 30053:1 30067:1 30072:2 30091:1 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30338:3 30358:1 30373:7 30417:1 30471:1 30475:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30795:1 30808:2 30864:2 30874:1 30904:1 31030:1 31042:1 31095:1 31113:1 31182:5 31211:1 31317:2 31400:1 31415:1 31425:6 31436:1 31454:5 31460:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:15 31611:1 31619:2 31624:1 31637:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31909:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32159:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:5 32604:1 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:1 32909:1 32928:6 32938:1 32955:3 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:4 33061:1 33065:1 33072:1 33092:1 33094:1 33096:1 33104:1 33150:3 33155:1 33157:1 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:2 33360:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33557:2 33618:2 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:1 33783:1 33787:1 33839:1 33852:1 33891:1 33922:1 33984:1 33997:1 34010:2 34030:1 34094:2 34114:1 34117:1 34145:1 34255:1 34268:1 34279:3 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:1 34448:1 34460:2 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:1 321:1 346:1 375:1 381:2 392:2 417:1 432:2 436:1 441:1 512:1 523:1 621:1 659:1 684:2 687:1 704:1 712:1 714:1 721:1 734:1 748:2 775:1 788:1 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 887:1 904:1 1005:1 1009:1 1016:1 1021:1 1048:1 1049:3 1061:1 1077:1 1080:2 1095:1 1101:1 1106:1 1145:2 1223:1 1267:1 1287:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:2 1735:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1843:2 1851:1 1866:4 1870:1 1884:1 1899:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:3 2304:1 2333:2 2363:1 2367:1 2371:1 2382:1 2399:1 2413:1 2415:1 2422:5 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:2 2592:1 2593:1 2597:2 2600:1 2604:1 2605:1 2606:1 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:2 2654:1 2659:1 2660:1 2665:1 2670:2 2673:4 2680:2 2689:1 2691:2 2693:1 2704:16 2716:1 2726:2 2742:1 2761:1 2776:4 2787:1 2817:1 2819:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:1 2985:1 3003:1 3006:2 3016:2 3028:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3231:1 3255:5 3268:2 3287:1 3359:2 3374:3 3377:3 3379:1 3419:1 3428:6 3434:1 3435:1 3445:2 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3786:1 3803:1 3812:1 3820:1 3824:1 3825:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4118:1 4139:1 4153:1 4185:1 4199:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4418:1 4421:1 4434:2 4436:1 4453:1 4455:1 4462:2 4465:2 4491:2 4503:1 4506:2 4513:1 4551:1 4556:1 4563:2 4565:1 4579:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:1 4819:1 4825:1 4850:1 4893:1 4898:1 4930:1 4936:1 4952:1 4961:1 5030:2 5082:1 5113:2 5153:2 5155:1 5176:1 5189:1 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:2 5472:1 5513:1 5528:2 5533:1 5538:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:9 5748:1 5760:1 5761:3 5774:1 5812:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:1 6016:1 6035:1 6041:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:2 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6882:1 6913:2 6926:2 6949:1 6987:1 7024:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:2 7191:2 7198:1 7210:1 7238:2 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:1 7632:1 7711:1 7724:1 7735:3 7755:5 7823:1 7845:1 7873:1 7890:5 7891:1 7919:1 7931:1 7954:4 7972:1 7985:1 7995:1 8018:1 8029:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8416:1 8460:2 8489:1 8541:1 8646:1 8688:4 8709:1 8724:1 8775:1 8779:2 8809:5 8819:1 8839:1 8859:1 8884:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:4 9132:2 9136:1 9144:1 9148:1 9149:1 9156:14 9181:6 9184:1 9189:1 9190:2 9214:1 9229:1 9278:1 9333:1 9341:1 9369:1 9373:2 9494:1 9546:1 9553:2 9564:1 9603:2 9631:1 9665:1 9673:2 9677:1 9697:5 9715:1 9725:2 9755:6 9760:2 9762:2 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:1 9945:1 9972:5 10014:5 10093:1 10104:1 10105:1 10109:1 10116:1 10117:1 10124:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:2 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10908:1 10981:3 11056:1 11099:1 11105:1 11108:1 11136:1 11143:1 11261:1 11283:3 11299:1 11306:1 11334:1 11357:2 11364:4 11416:1 11430:1 11442:1 11478:1 11485:1 11507:2 11538:1 11601:1 11618:2 11643:1 11650:1 11685:1 11692:1 11714:1 11721:1 11741:3 11772:1 11780:3 11782:1 11810:2 11814:16 11816:2 11910:1 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12188:1 12198:1 12275:2 12284:2 12287:1 12292:1 12337:2 12361:1 12376:2 12433:1 12455:5 12474:1 12476:1 12494:1 12506:1 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12735:5 12752:1 12801:1 12842:1 12862:1 12884:3 12900:1 12903:2 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:2 13302:1 13333:1 13393:1 13453:1 13478:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:1 13793:2 13810:1 13813:5 13824:2 13832:1 13843:3 13847:1 13885:1 13923:1 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14394:2 14422:1 14496:1 14506:3 14523:1 14543:2 14548:1 14563:1 14630:2 14689:1 14731:1 14802:1 14826:1 14870:2 14893:1 14941:2 14968:3 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:4 15287:1 15300:3 15326:1 15347:1 15462:1 15498:1 15516:2 15521:1 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15740:1 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15851:1 15858:1 15865:2 15899:1 15979:3 15995:2 16037:1 16061:1 16067:1 16075:1 16082:2 16091:1 16132:1 16168:1 16182:2 16220:1 16229:1 16246:4 16265:2 16328:1 16331:1 16372:1 16381:1 16405:1 16426:1 16468:1 16502:2 16542:1 16561:1 16565:2 16571:1 16604:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16882:1 16884:2 16892:1 16899:1 16914:1 16916:1 16920:1 16952:1 16971:16 16974:2 17024:1 17026:1 17029:1 17078:4 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:2 17426:2 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17620:1 17630:1 17655:1 17657:5 17663:2 17700:1 17745:1 17748:1 17763:1 17786:3 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18082:1 18143:2 18152:2 18171:1 18182:1 18242:1 18272:7 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:1 18577:1 18614:1 18641:1 18662:2 18664:1 18696:1 18701:2 18706:1 18748:1 18761:1 18779:2 18808:1 18818:2 18876:1 18891:1 18981:3 19001:1 19007:1 19031:2 19042:3 19079:1 19081:1 19093:1 19109:1 19123:1 19129:2 19136:1 19157:1 19181:1 19195:1 19238:1 19239:1 19306:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:2 19794:1 19833:1 19892:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:7 20016:2 20028:2 20032:1 20071:1 20170:1 20186:1 20204:2 20228:3 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:1 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20847:1 20854:1 20888:2 20903:2 20907:1 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21067:2 21071:1 21096:2 21130:4 21135:4 21141:1 21147:1 21148:1 21149:2 21164:1 21199:3 21216:3 21234:1 21293:1 21321:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21528:1 21558:4 21618:1 21640:16 21698:1 21739:1 21751:2 21782:1 21810:3 21856:1 21865:1 21970:16 21997:2 22006:1 22028:1780 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:2 22286:2 22290:1 22293:1 22302:1 22382:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22884:2 22892:1 22897:3 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:3 23033:1 23035:1 23051:2 23077:1 23088:1 23106:11 23121:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23347:1 23407:1 23421:1 23476:1 23505:1 23510:1 23511:1 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:3 23639:1 23654:1 23667:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:2 23846:1 23854:1 23856:1 23882:4 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:1 24111:1 24113:2 24128:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24243:1 24282:1 24286:4 24294:2 24317:1 24322:2 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:3 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:2 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24794:1 24797:1 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25098:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25282:2 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25440:2 25450:1 25463:2 25503:1 25504:1 25505:1 25509:1 25517:1 25531:4 25560:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:2 25850:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26194:1 26197:1 26203:1 26204:1 26219:1 26232:1 26278:1 26286:2 26313:1 26322:2 26335:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:1 26467:1 26471:2 26496:1 26505:2 26513:1 26533:1 26551:1 26552:1 26565:2 26588:1 26608:1 26630:1 26650:1 26667:1 26668:4 26671:1 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26914:1 26919:1 26925:1 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:4 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:3 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27670:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27960:1 27968:1 27983:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28301:1 28350:1 28377:1 28382:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28464:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:1 28733:2 28795:1 28800:1 28822:1 28865:1 28928:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:2 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29474:1 29476:1 29477:2 29480:1 29483:1 29493:1 29517:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:1 29838:1 29871:1 29902:1 29907:3 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30091:1 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:1 30475:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 31030:1 31042:1 31078:1 31095:1 31113:1 31182:5 31211:1 31317:2 31400:1 31415:1 31423:1 31425:6 31436:1 31454:5 31460:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:16 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31909:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:1 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:1 32159:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:5 32604:1 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:1 32909:1 32928:6 32938:1 32955:3 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:4 33061:1 33065:1 33072:1 33092:1 33094:1 33096:1 33104:1 33150:3 33155:1 33157:1 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:2 33360:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33521:1 33557:2 33618:2 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:1 33783:1 33787:1 33839:1 33852:1 33891:1 33897:1 33922:1 33984:1 33997:1 34010:2 34030:1 34094:2 34114:1 34117:1 34145:1 34255:1 34268:1 34279:3 34284:1 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:1 34448:1 34460:2 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:1 321:1 346:1 375:1 381:2 392:3 417:1 432:4 436:1 441:1 512:3 523:1 621:1 659:1 684:3 687:1 704:1 712:1 714:1 721:1 734:1 748:2 775:1 788:1 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 887:1 898:1 904:1 1005:2 1009:1 1016:1 1021:1 1048:1 1049:3 1051:1 1061:1 1077:1 1080:2 1095:1 1101:1 1106:1 1145:2 1223:1 1267:1 1287:1 1312:1 1337:1 1358:1 1417:4 1452:1 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:3 1735:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1843:2 1851:1 1866:4 1870:1 1884:2 1899:1 1901:1 1949:1 1963:1 1965:1 2037:1 2041:3 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:3 2304:1 2333:2 2337:1 2363:1 2367:1 2371:1 2382:1 2399:1 2413:1 2415:1 2422:5 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:3 2592:1 2593:1 2597:2 2600:1 2604:1 2605:1 2606:1 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:2 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:1 2680:2 2689:1 2691:2 2693:1 2704:16 2716:1 2726:2 2742:1 2761:1 2776:4 2787:1 2817:1 2819:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:2 2985:1 3003:1 3006:2 3016:2 3028:1 3040:1 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3231:1 3255:5 3268:2 3287:1 3359:2 3374:4 3377:3 3379:1 3419:1 3428:6 3434:1 3435:2 3445:2 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3786:2 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4118:1 4139:1 4153:1 4185:1 4199:1 4255:1 4266:2 4291:2 4329:2 4366:1 4376:1 4377:1 4418:1 4421:1 4434:2 4436:1 4453:1 4455:1 4462:2 4465:2 4491:2 4503:1 4506:2 4513:2 4551:1 4556:1 4563:2 4565:1 4579:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:2 4819:1 4825:1 4850:1 4862:1 4893:1 4898:1 4930:1 4936:1 4952:1 4961:1 5030:2 5082:1 5113:2 5153:2 5155:1 5176:1 5189:2 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:3 5472:1 5513:1 5528:2 5533:1 5538:1 5543:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:10 5748:1 5760:1 5761:3 5774:1 5812:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:1 6016:1 6035:1 6041:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:3 6436:1 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6882:2 6913:2 6926:2 6949:1 6982:1 6987:1 7024:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:3 7191:2 7198:2 7210:1 7238:2 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:3 7444:1 7482:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:2 7632:1 7711:1 7724:1 7735:3 7755:5 7803:1 7815:1 7823:1 7845:1 7873:1 7890:5 7891:1 7919:1 7931:1 7954:4 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8416:1 8460:3 8489:1 8539:1 8541:1 8646:2 8688:4 8709:1 8724:1 8775:1 8779:2 8809:5 8819:2 8839:1 8859:1 8884:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:4 9132:2 9136:1 9144:1 9148:1 9149:1 9156:16 9181:6 9184:1 9189:1 9190:2 9214:1 9229:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:1 9373:2 9426:1 9494:1 9546:1 9553:2 9564:1 9603:2 9631:1 9665:1 9673:2 9677:1 9697:5 9715:1 9725:2 9755:8 9760:3 9762:2 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:2 9945:1 9972:5 10014:5 10026:1 10093:1 10104:1 10105:1 10109:1 10116:1 10117:1 10124:2 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:2 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10908:1 10962:1 10981:3 11056:1 11099:1 11105:1 11108:1 11136:2 11143:1 11261:1 11283:3 11287:1 11291:1 11299:1 11306:1 11334:1 11353:1 11357:2 11364:4 11416:1 11430:1 11434:1 11442:1 11478:1 11485:1 11507:2 11538:1 11601:1 11618:3 11643:1 11650:1 11685:1 11692:2 11714:1 11721:1 11741:3 11772:1 11780:3 11782:1 11810:2 11814:16 11816:2 11910:2 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12170:1 12188:1 12198:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:2 12433:1 12455:5 12474:1 12476:1 12494:1 12506:2 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12735:5 12752:1 12801:1 12842:1 12862:1 12884:3 12900:1 12903:2 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13226:1 13298:2 13302:1 13333:1 13393:1 13453:1 13478:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:2 13793:2 13810:1 13813:5 13824:2 13832:1 13843:3 13847:1 13885:1 13923:2 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14394:2 14422:1 14475:1 14496:1 14506:3 14523:1 14543:2 14548:2 14563:1 14578:1 14630:2 14689:1 14727:1 14731:1 14802:1 14826:1 14870:2 14893:1 14941:2 14968:4 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:5 15287:1 15300:4 15326:1 15347:1 15462:1 15498:1 15516:2 15521:1 15546:1 15579:4 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15851:1 15858:1 15865:2 15899:1 15979:3 15995:2 16037:1 16061:1 16067:2 16075:1 16082:2 16091:1 16132:2 16168:1 16182:2 16192:1 16220:1 16229:1 16246:4 16265:2 16315:1 16328:1 16331:1 16372:1 16381:1 16405:1 16426:1 16468:2 16502:2 16542:1 16561:1 16565:2 16571:1 16604:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:16 16974:2 17024:1 17026:1 17029:1 17078:4 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17386:1 17412:2 17426:2 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17620:1 17630:1 17655:1 17657:5 17663:2 17700:1 17745:1 17748:1 17763:1 17786:4 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18082:1 18143:2 18152:2 18171:1 18182:1 18242:1 18272:7 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:1 18614:1 18641:1 18662:2 18664:2 18696:1 18701:2 18706:1 18731:1 18748:1 18761:1 18779:2 18808:1 18812:1 18818:2 18876:2 18891:1 18981:3 19001:1 19007:1 19031:2 19042:3 19079:1 19081:1 19087:1 19093:1 19109:1 19123:1 19129:2 19136:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19306:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:2 19794:1 19833:1 19847:1 19892:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:7 20016:2 20028:2 20032:2 20071:1 20170:1 20186:1 20204:2 20228:3 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20621:2 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20847:1 20854:1 20888:2 20903:2 20907:1 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21067:3 21071:1 21096:2 21130:4 21135:4 21141:2 21147:1 21148:1 21149:2 21164:1 21199:3 21216:3 21234:1 21293:1 21321:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21528:1 21554:1 21558:4 21618:1 21640:16 21698:1 21702:1 21739:1 21751:2 21782:1 21810:3 21856:1 21865:1 21970:16 21997:2 22006:1 22028:1885 22071:1 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:3 22286:3 22290:1 22293:1 22302:1 22382:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:2 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:3 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:4 23033:1 23035:1 23051:2 23077:1 23088:1 23106:12 23121:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23347:1 23407:1 23421:1 23476:1 23505:1 23510:1 23511:2 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:2 23846:1 23854:2 23856:1 23882:4 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24243:1 24282:1 24286:4 24294:2 24317:1 24322:3 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:3 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:2 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25282:2 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25428:1 25440:2 25450:2 25463:2 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:3 25850:1 25863:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26194:1 26197:1 26203:1 26204:1 26219:1 26232:1 26237:1 26278:1 26286:2 26313:1 26322:2 26335:2 26339:2 26348:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:3 26467:1 26471:2 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26565:2 26588:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:2 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:4 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:4 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27670:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27960:1 27968:1 27983:2 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28301:1 28350:1 28377:1 28382:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28464:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:2 28733:2 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:3 29097:1 29171:1 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:1 29493:1 29517:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29902:1 29907:4 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30091:2 30097:1 30111:2 30166:1 30169:1 30185:2 30191:2 30220:2 30245:1 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:2 30475:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 31030:1 31042:2 31078:1 31095:1 31113:1 31182:5 31211:1 31230:1 31317:2 31386:1 31400:1 31415:1 31423:1 31425:6 31436:1 31454:5 31460:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:16 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31909:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:1 32159:1 32172:4 32217:2 32246:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:5 32604:1 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:2 32909:1 32928:7 32938:1 32955:3 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:5 33061:1 33065:1 33071:1 33072:1 33092:1 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:3 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33521:1 33557:2 33570:1 33618:2 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33787:1 33839:1 33852:1 33891:1 33897:1 33922:1 33984:1 33997:2 34010:2 34030:1 34094:2 34114:1 34117:1 34145:2 34255:1 34268:1 34279:3 34284:1 34307:1 34309:1 34330:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:2 34448:1 34460:2 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:1 321:1 346:1 374:1 375:1 381:2 392:3 417:1 432:4 436:1 441:1 512:3 523:1 621:1 659:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:1 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 887:1 898:1 904:1 1005:2 1009:1 1016:1 1021:1 1048:1 1049:3 1051:1 1061:1 1077:1 1080:2 1095:1 1101:1 1106:1 1145:2 1223:1 1267:1 1287:1 1312:1 1337:1 1358:1 1417:4 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:3 1735:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1843:2 1851:1 1866:4 1870:1 1884:2 1899:1 1901:1 1949:1 1951:1 1963:1 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:3 2304:1 2333:2 2337:1 2363:1 2367:1 2371:1 2382:1 2399:1 2413:1 2415:1 2422:6 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:3 2592:1 2593:1 2597:3 2600:1 2604:1 2605:1 2606:2 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:2 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:2 2693:1 2704:16 2716:1 2726:2 2742:1 2761:1 2776:4 2787:1 2817:1 2819:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:2 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3231:1 3255:5 3268:2 3287:1 3359:2 3374:5 3377:3 3379:1 3419:1 3428:6 3434:1 3435:2 3445:2 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3786:2 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4093:1 4118:1 4139:1 4153:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:1 4329:2 4366:1 4376:1 4377:1 4418:1 4421:1 4434:2 4436:1 4453:1 4455:1 4462:2 4465:2 4491:2 4503:1 4506:2 4513:2 4551:1 4556:1 4563:2 4565:1 4579:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:2 4819:1 4825:1 4850:1 4862:2 4893:1 4898:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5082:1 5113:2 5153:2 5155:1 5176:1 5189:3 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:3 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:10 5748:1 5760:1 5761:3 5774:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:1 6016:1 6035:1 6041:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:3 6436:2 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6882:2 6913:2 6926:2 6949:1 6982:2 6987:1 7024:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:3 7191:2 7198:2 7210:1 7238:2 7268:1 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:4 7444:1 7482:1 7505:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:2 7632:1 7638:1 7711:1 7724:1 7735:3 7755:5 7803:1 7815:1 7823:1 7845:1 7854:1 7873:1 7890:5 7891:1 7919:1 7931:1 7954:5 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:3 8489:1 8539:2 8541:1 8646:2 8688:4 8709:1 8724:1 8775:1 8779:2 8809:6 8819:2 8839:1 8859:1 8884:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9065:1 9073:3 9093:2 9099:1 9101:3 9120:2 9122:2 9129:4 9132:2 9136:1 9144:1 9148:1 9149:1 9156:17 9181:6 9184:1 9189:1 9190:2 9214:1 9229:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:1 9373:2 9407:1 9426:1 9494:1 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9673:2 9677:1 9697:5 9715:1 9725:2 9755:8 9760:4 9762:2 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:2 9945:1 9972:6 10014:5 10026:1 10093:1 10104:1 10105:1 10109:1 10116:1 10117:1 10124:2 10187:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10467:1 10469:2 10478:2 10497:1 10509:1 10529:1 10541:1 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11056:1 11099:1 11105:1 11108:1 11136:3 11143:1 11261:1 11283:3 11287:4 11291:1 11293:1 11299:2 11306:1 11319:1 11334:2 11353:1 11357:2 11364:4 11416:1 11430:1 11434:1 11442:1 11478:1 11485:1 11507:2 11538:1 11601:1 11618:3 11643:1 11650:1 11685:1 11692:2 11714:1 11721:1 11730:1 11741:3 11772:1 11780:3 11782:1 11810:2 11814:16 11816:2 11910:2 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:2 12433:1 12455:6 12462:1 12471:1 12474:1 12476:1 12494:1 12506:2 12511:1 12551:1 12556:2 12573:2 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12725:1 12735:5 12752:1 12801:1 12842:1 12862:1 12884:3 12900:2 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13169:1 13226:1 13251:1 13294:2 13298:2 13302:1 13305:1 13333:1 13393:1 13453:1 13478:1 13507:1 13574:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13775:1 13785:3 13787:2 13793:2 13810:1 13813:5 13824:2 13832:1 13843:3 13847:1 13885:1 13923:2 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14394:2 14422:1 14475:1 14496:1 14506:3 14523:1 14543:2 14548:2 14563:1 14578:1 14630:2 14689:1 14727:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:3 14968:5 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:6 15287:1 15300:4 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15546:1 15579:4 15593:1 15594:1 15606:1 15607:2 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15851:1 15858:1 15865:2 15899:1 15979:3 15995:2 16037:1 16061:1 16067:2 16075:1 16082:2 16091:1 16132:3 16168:1 16182:2 16192:1 16220:1 16229:1 16246:4 16265:2 16315:2 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:1 16565:2 16571:1 16604:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:16 16974:2 17024:1 17026:1 17029:1 17078:4 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17331:1 17386:1 17412:2 17426:2 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17620:1 17630:1 17655:1 17657:5 17663:2 17667:1 17700:1 17745:1 17748:1 17763:1 17786:5 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18082:1 18143:2 18152:2 18171:1 18182:1 18242:1 18272:9 18274:1 18286:1 18294:1 18305:1 18335:1 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:1 18614:1 18641:1 18662:2 18664:2 18696:1 18701:2 18706:2 18731:1 18748:1 18761:1 18779:2 18808:1 18812:1 18818:2 18876:2 18891:1 18981:3 19001:1 19007:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19123:1 19129:2 19136:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19306:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:2 19794:1 19833:1 19847:1 19892:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:9 20011:1 20016:2 20028:2 20032:2 20042:1 20071:1 20170:1 20186:1 20189:1 20204:2 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20619:1 20621:2 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20847:1 20854:1 20888:2 20903:2 20905:1 20907:1 20918:2 20996:1 21010:1 21024:2 21033:1 21042:1 21067:3 21071:1 21096:2 21130:4 21135:4 21141:3 21147:1 21148:1 21149:2 21164:1 21199:3 21216:3 21234:1 21293:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21528:1 21554:1 21558:4 21618:1 21640:16 21698:1 21702:2 21739:1 21751:2 21782:1 21810:3 21812:1 21856:1 21865:1 21970:16 21997:2 22006:1 22028:1930 22071:1 22082:1 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:3 22286:3 22290:1 22293:1 22302:1 22310:1 22382:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:2 22771:1 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:4 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:5 23033:1 23035:1 23051:2 23077:1 23088:1 23106:14 23121:1 23129:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:2 23299:1 23324:1 23331:1 23340:1 23347:1 23407:1 23421:1 23476:1 23505:1 23510:1 23511:2 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:2 23846:1 23854:2 23856:1 23882:4 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24153:1 24162:1 24164:2 24173:2 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24317:1 24322:3 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:3 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:3 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:1 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:1 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25282:2 25284:1 25292:1 25328:1 25351:1 25393:3 25406:2 25428:1 25440:2 25450:2 25463:2 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:3 25850:1 25863:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26194:1 26197:1 26203:1 26204:1 26219:1 26232:1 26237:1 26278:1 26286:2 26313:1 26322:2 26334:1 26335:2 26339:2 26348:1 26360:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:3 26467:1 26471:2 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:2 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:5 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27544:2 27553:4 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27670:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27960:1 27968:1 27983:2 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:1 28185:1 28194:2 28200:1 28201:1 28280:1 28301:1 28350:1 28377:1 28382:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:2 28733:2 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:3 29096:1 29097:1 29166:1 29171:1 29191:1 29205:5 29226:2 29242:2 29296:1 29338:1 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:1 29493:1 29517:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29902:1 29907:5 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30079:1 30091:2 30096:2 30097:1 30111:2 30166:2 30169:1 30185:2 30191:2 30220:2 30245:2 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:2 30475:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 31030:1 31042:2 31078:1 31095:1 31113:1 31182:5 31211:1 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:1 31425:6 31436:1 31454:5 31460:2 31462:1 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:16 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31757:1 31769:1 31812:1 31833:1 31909:1 31918:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:1 32159:1 32172:4 32217:2 32246:1 32267:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32481:1 32496:1 32502:1 32503:1 32513:1 32537:1 32556:5 32604:1 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:2 32909:1 32928:7 32938:1 32955:3 32962:1 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33049:5 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:3 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33521:1 33526:2 33529:2 33557:2 33570:2 33618:2 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33787:1 33839:1 33852:1 33891:1 33897:1 33922:1 33984:1 33997:2 34010:2 34030:1 34094:2 34114:1 34117:1 34145:2 34255:1 34268:1 34279:3 34284:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:3 34448:1 34460:2 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 77:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:1 346:1 374:1 375:1 381:2 392:3 417:1 432:5 436:1 441:1 512:3 523:1 621:1 639:1 659:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 887:1 898:1 904:1 1005:3 1009:1 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:1 1077:1 1080:2 1095:1 1101:1 1106:1 1145:2 1223:1 1267:2 1287:1 1312:1 1337:1 1358:1 1417:4 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:1 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2382:1 2399:1 2413:1 2415:2 2422:7 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:3 2592:1 2593:1 2597:3 2600:1 2604:1 2605:1 2606:3 2616:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:2 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:2 2693:1 2704:16 2716:1 2726:2 2742:1 2761:1 2776:4 2787:1 2817:1 2819:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:2 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3231:1 3255:5 3268:2 3287:1 3359:2 3374:7 3377:3 3379:1 3419:1 3428:8 3434:1 3435:2 3445:2 3467:1 3496:1 3549:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3786:2 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4093:1 4118:1 4139:1 4153:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4366:1 4376:1 4377:1 4418:1 4421:1 4434:2 4436:1 4453:1 4455:1 4462:2 4465:2 4491:2 4503:1 4506:2 4513:3 4551:1 4556:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:3 4819:1 4825:1 4850:1 4862:2 4893:1 4898:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5254:2 5327:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:4 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:12 5748:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:1 6016:1 6035:1 6041:1 6043:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:4 6436:2 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6540:1 6559:1 6564:2 6628:1 6652:1 6761:1 6775:1 6818:1 6833:1 6882:3 6913:2 6926:2 6949:1 6982:2 6987:1 7024:1 7106:1 7111:1 7147:2 7164:2 7172:1 7173:3 7191:2 7198:2 7210:1 7238:2 7268:1 7287:1 7347:4 7408:4 7420:2 7422:1 7423:1 7426:4 7444:1 7482:1 7505:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:2 7632:1 7638:1 7711:1 7724:1 7735:3 7755:5 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7890:5 7891:1 7919:1 7931:1 7954:5 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8079:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8489:1 8539:2 8541:1 8646:3 8688:4 8707:1 8709:1 8724:1 8775:1 8779:2 8809:7 8819:2 8839:1 8859:1 8884:1 8913:1 8951:1 8956:1 9011:1 9029:2 9055:2 9065:1 9073:3 9092:1 9093:2 9099:1 9101:3 9120:2 9122:2 9129:4 9132:2 9136:1 9144:1 9148:1 9149:1 9156:17 9181:8 9184:1 9189:1 9190:2 9214:1 9229:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:1 9373:3 9407:1 9426:1 9488:1 9494:2 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9673:2 9677:1 9697:7 9715:1 9725:2 9755:9 9760:4 9762:2 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:3 9945:1 9972:7 10014:5 10026:1 10093:1 10097:1 10104:1 10105:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:1 10188:1 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10389:1 10467:1 10469:2 10478:2 10497:1 10509:1 10529:1 10541:2 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11056:1 11066:1 11099:1 11105:1 11108:1 11136:3 11143:1 11261:1 11283:3 11287:4 11291:1 11293:1 11299:2 11306:1 11319:1 11334:2 11353:1 11357:2 11364:4 11416:2 11430:1 11434:2 11442:1 11478:1 11485:1 11507:2 11538:1 11600:1 11601:1 11618:3 11643:1 11650:1 11685:1 11692:2 11714:1 11721:1 11730:1 11741:3 11772:1 11780:3 11782:1 11810:2 11814:16 11816:2 11910:3 11925:1 11948:1 12005:1 12090:1 12092:2 12108:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:2 12433:1 12455:7 12462:1 12471:1 12474:1 12476:1 12494:1 12506:2 12511:1 12551:1 12556:2 12573:3 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12725:1 12735:5 12737:1 12752:1 12801:1 12842:1 12862:1 12884:3 12900:2 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13169:1 13201:1 13226:1 13251:1 13294:2 13298:2 13302:1 13305:1 13333:1 13393:1 13453:1 13478:1 13507:1 13519:1 13574:1 13575:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13771:1 13775:2 13785:4 13787:2 13793:3 13810:1 13813:5 13824:2 13832:1 13843:3 13847:1 13885:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:4 14523:1 14543:2 14548:2 14563:1 14578:1 14630:2 14689:1 14727:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:3 14968:7 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:2 15116:1 15209:1 15213:1 15219:1 15234:6 15287:1 15300:4 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15546:1 15574:1 15579:4 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15899:1 15979:3 15995:3 16037:1 16061:1 16067:3 16075:1 16082:2 16091:1 16132:3 16168:1 16182:2 16192:1 16220:1 16229:1 16246:4 16265:2 16315:2 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:1 16565:2 16571:1 16604:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:16 16974:2 17024:1 17026:1 17029:1 17078:4 17082:1 17113:1 17121:1 17139:1 17140:1 17258:1 17316:1 17331:1 17386:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17616:1 17620:1 17630:1 17655:1 17657:5 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:6 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18082:1 18143:2 18152:2 18171:1 18182:1 18242:1 18272:9 18274:1 18286:1 18294:1 18305:1 18335:1 18378:1 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:1 18614:1 18641:1 18662:2 18664:3 18696:1 18701:2 18706:2 18731:1 18748:1 18761:1 18779:2 18808:1 18812:1 18818:2 18876:2 18891:1 18981:3 19001:1 19007:1 19009:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19114:1 19123:1 19129:2 19136:1 19142:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19306:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19650:1 19656:4 19712:3 19753:1 19794:1 19833:1 19847:1 19892:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:9 20000:1 20011:2 20016:2 20028:2 20032:3 20042:1 20071:1 20170:1 20186:1 20189:1 20193:1 20199:1 20204:2 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20364:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20619:1 20621:2 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20797:1 20847:1 20854:1 20888:2 20903:2 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21024:2 21033:1 21042:1 21067:3 21071:1 21096:2 21130:4 21135:4 21141:4 21147:1 21148:1 21149:2 21164:1 21199:3 21216:3 21234:1 21293:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21528:1 21554:1 21558:4 21618:1 21640:16 21698:1 21702:2 21739:1 21751:2 21782:1 21810:3 21812:1 21856:1 21865:1 21970:16 21997:2 22006:1 22028:2011 22071:1 22082:1 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:5 22286:5 22290:1 22293:1 22302:1 22310:1 22382:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:3 22771:1 22774:1 22789:1 22793:1 22813:1 22817:1 22834:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:4 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:6 23033:1 23035:1 23051:2 23077:1 23088:1 23106:15 23121:1 23129:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:2 23299:2 23324:1 23331:1 23340:1 23347:1 23348:1 23407:1 23421:1 23476:1 23505:1 23510:1 23511:3 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:3 23846:1 23854:2 23856:1 23882:5 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:3 24162:1 24164:2 24173:2 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:3 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:4 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:3 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:1 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:1 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25258:1 25282:2 25284:1 25292:1 25328:1 25333:1 25351:1 25393:3 25406:2 25428:1 25440:2 25450:2 25463:2 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:3 25849:1 25850:1 25863:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26194:1 26197:1 26203:1 26204:1 26219:1 26232:1 26237:1 26278:1 26286:2 26313:1 26322:2 26334:1 26335:2 26339:2 26348:1 26360:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:3 26467:1 26471:2 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:6 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27525:1 27544:2 27549:1 27553:4 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:2 27670:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27960:1 27968:1 27983:3 28004:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28238:1 28280:1 28301:1 28303:1 28327:1 28350:1 28377:1 28382:1 28389:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:2 28733:2 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:3 29096:1 29097:1 29166:1 29171:1 29191:1 29205:5 29226:2 29242:2 29296:1 29331:1 29338:1 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:1 29493:1 29517:1 29531:3 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29902:1 29907:6 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30079:1 30091:3 30096:2 30097:1 30111:2 30166:2 30169:2 30185:2 30191:2 30220:2 30245:2 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:3 30475:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:1 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31182:5 31211:1 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:5 31460:2 31462:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:16 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:1 31757:1 31769:1 31812:1 31833:1 31909:1 31918:1 31925:2 31961:1 31967:1 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:2 32159:1 32172:4 32217:2 32246:1 32267:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32481:1 32496:1 32502:1 32503:1 32513:1 32537:1 32540:1 32556:5 32604:1 32606:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:3 32909:1 32928:9 32929:1 32938:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33031:1 33049:6 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:3 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33521:1 33526:2 33529:2 33557:2 33570:2 33618:2 33625:1 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33812:1 33839:1 33852:1 33891:1 33897:1 33922:1 33984:1 33997:3 34010:3 34030:1 34094:2 34114:1 34117:1 34145:3 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:2 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 77:1 95:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:1 346:1 374:1 375:1 381:2 392:3 417:1 432:5 436:1 441:1 510:1 512:3 523:1 621:1 639:1 659:1 660:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 887:1 898:1 904:1 998:1 1005:3 1009:1 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:1 1077:1 1080:2 1091:1 1095:1 1101:1 1106:1 1145:2 1223:1 1267:3 1287:1 1312:1 1337:1 1358:1 1417:4 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1696:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:1 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:1 2399:1 2413:1 2415:2 2422:8 2423:1 2429:1 2463:1 2471:1 2526:1 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:3 2592:1 2593:1 2597:3 2600:1 2604:1 2605:1 2606:4 2616:1 2618:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:2 2693:1 2704:16 2716:1 2726:2 2742:1 2761:1 2776:4 2787:1 2799:1 2817:1 2819:1 2821:1 2832:4 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:2 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3126:1 3131:2 3133:1 3147:1 3179:1 3194:1 3231:1 3255:5 3268:2 3287:1 3359:2 3374:9 3377:3 3379:1 3419:1 3428:8 3434:1 3435:2 3445:2 3467:1 3496:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3778:1 3781:1 3785:1 3786:2 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4093:1 4118:1 4139:1 4153:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:1 4384:1 4418:1 4421:1 4433:1 4434:3 4436:1 4453:1 4455:1 4462:2 4465:2 4491:2 4503:1 4506:2 4513:3 4551:1 4556:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4806:1 4811:3 4819:1 4825:1 4850:1 4862:2 4893:1 4898:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5254:2 5327:1 5329:1 5331:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:4 5450:1 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:13 5748:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:4 6436:2 6476:1 6502:1 6512:1 6513:1 6522:1 6525:2 6540:1 6559:1 6564:2 6628:2 6652:1 6761:1 6775:1 6818:1 6833:1 6882:3 6913:2 6926:2 6949:1 6982:2 6987:1 7024:1 7106:1 7111:1 7131:1 7147:2 7164:2 7172:1 7173:3 7191:2 7198:2 7210:1 7238:2 7268:2 7287:1 7347:4 7353:1 7408:4 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:1 7525:1 7526:1 7530:1 7542:1 7543:2 7549:1 7554:2 7632:1 7638:1 7711:1 7724:1 7735:3 7755:5 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7890:5 7891:1 7919:1 7931:1 7954:7 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8079:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8489:1 8539:2 8541:1 8646:3 8688:4 8707:1 8709:1 8724:1 8775:1 8779:2 8809:8 8819:2 8839:1 8843:1 8859:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:1 9029:2 9055:2 9065:1 9073:3 9092:1 9093:2 9099:1 9101:4 9120:2 9122:2 9129:4 9132:2 9136:1 9144:1 9148:1 9149:1 9156:18 9181:8 9184:1 9189:1 9190:2 9214:1 9229:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:2 9373:3 9407:1 9426:1 9488:1 9494:2 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9673:2 9677:1 9697:8 9715:1 9725:2 9755:10 9760:4 9762:2 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:3 9945:1 9972:8 10014:5 10026:1 10093:1 10094:1 10097:2 10104:1 10105:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:2 10188:3 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10389:1 10467:1 10469:2 10478:2 10497:1 10509:1 10529:1 10541:2 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11056:1 11066:1 11099:1 11105:1 11108:1 11136:3 11143:1 11261:1 11283:3 11287:4 11291:1 11293:1 11299:2 11306:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11430:1 11434:2 11442:1 11478:1 11485:1 11507:2 11538:1 11551:1 11600:1 11601:1 11618:3 11643:1 11650:1 11685:1 11692:2 11714:1 11721:1 11730:2 11741:3 11772:1 11780:3 11782:1 11810:2 11814:16 11816:2 11910:3 11925:1 11948:1 12005:1 12090:1 12092:2 12105:1 12108:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:2 12433:1 12455:8 12462:1 12471:1 12474:1 12476:1 12494:1 12506:2 12511:1 12551:1 12556:2 12573:3 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:5 12737:1 12752:1 12792:1 12801:1 12842:1 12862:1 12884:3 12900:3 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13169:1 13201:1 13226:1 13251:1 13294:2 13298:2 13302:1 13305:1 13333:1 13341:1 13393:1 13453:1 13478:1 13507:1 13519:1 13574:1 13575:1 13590:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13771:1 13775:2 13785:5 13787:2 13793:3 13810:1 13813:5 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:1 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:4 14523:1 14543:2 14548:2 14563:1 14578:1 14630:2 14689:1 14727:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:3 14968:9 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:1 15156:1 15209:1 15213:1 15219:1 15234:7 15287:1 15300:4 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15546:1 15574:1 15579:4 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15899:1 15979:3 15995:4 16037:1 16061:1 16067:3 16075:1 16082:2 16091:1 16132:3 16168:1 16182:2 16192:1 16220:1 16229:1 16246:4 16265:2 16315:2 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:1 16565:2 16571:1 16604:1 16646:2 16694:1 16699:1 16728:1 16793:5 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:16 16974:2 17024:1 17026:1 17029:1 17078:4 17082:1 17113:1 17121:1 17139:1 17140:1 17207:1 17258:1 17316:1 17331:1 17386:1 17394:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17616:1 17620:1 17630:1 17655:1 17657:5 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:9 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18082:1 18143:2 18152:3 18171:2 18182:1 18242:1 18272:9 18274:1 18286:1 18294:1 18305:1 18335:1 18378:2 18383:1 18386:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:1 18614:1 18641:1 18662:2 18664:3 18696:1 18701:2 18706:2 18731:1 18748:1 18761:1 18779:2 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:4 19001:1 19007:1 19009:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19123:1 19129:2 19136:1 19142:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19529:1 19571:1 19585:1 19613:1 19640:1 19643:1 19650:1 19656:4 19712:3 19753:1 19794:1 19833:1 19847:1 19892:1 19902:1 19922:1 19926:1 19982:1 19986:1 19990:1 19997:9 20000:2 20011:2 20016:2 20028:2 20032:3 20042:1 20071:1 20170:1 20186:1 20189:1 20193:2 20199:1 20204:2 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20364:1 20370:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:2 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20797:1 20847:1 20854:1 20888:2 20903:2 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:1 21042:1 21067:3 21071:1 21096:2 21130:4 21135:4 21141:4 21147:1 21148:1 21149:2 21164:1 21198:1 21199:3 21216:3 21234:1 21293:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21528:1 21554:1 21558:4 21618:1 21640:16 21698:1 21702:2 21739:2 21751:2 21782:1 21810:3 21812:1 21856:2 21865:1 21970:16 21997:2 22006:1 22028:2069 22071:1 22082:1 22112:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:5 22285:1 22286:5 22290:1 22293:1 22302:1 22310:2 22382:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:3 22771:1 22774:1 22789:1 22793:1 22813:1 22817:1 22832:1 22834:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:5 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:9 23033:1 23035:1 23051:2 23077:1 23088:1 23106:15 23121:1 23129:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:2 23299:2 23324:1 23331:1 23340:1 23347:1 23348:1 23407:1 23421:1 23476:1 23505:1 23510:1 23511:3 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:3 23846:1 23854:2 23856:1 23882:5 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:4 24162:1 24164:2 24173:3 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:3 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:4 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:1 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25251:1 25258:1 25282:2 25284:1 25292:1 25328:1 25333:1 25351:1 25388:1 25393:3 25406:2 25428:1 25440:2 25450:2 25463:2 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:3 25849:1 25850:1 25863:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26194:1 26197:1 26203:1 26204:1 26219:1 26227:1 26232:1 26237:1 26278:1 26286:2 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26360:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:3 26467:1 26471:2 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26797:1 26806:4 26824:1 26841:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:7 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27525:1 27544:2 27549:1 27553:4 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27644:3 27670:1 27686:1 27714:1 27717:2 27720:1 27778:2 27816:1 27842:1 27848:1 27871:1 27902:2 27945:1 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28238:1 28280:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:2 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:3 29096:1 29097:1 29166:1 29171:1 29191:1 29205:5 29226:3 29242:2 29296:1 29331:1 29338:2 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29698:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29902:1 29907:9 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30166:2 30169:2 30185:2 30191:2 30220:2 30245:2 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:3 30475:1 30537:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31182:5 31211:1 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:5 31460:2 31462:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:16 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:1 31757:1 31769:1 31812:1 31833:1 31843:1 31909:1 31918:1 31925:3 31961:1 31967:1 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:3 32159:1 32172:4 32186:1 32217:2 32246:1 32267:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32471:1 32481:1 32496:1 32502:1 32503:1 32513:1 32537:1 32540:1 32556:5 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:3 32909:1 32928:10 32929:1 32938:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:1 33031:1 33047:1 33049:7 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33160:1 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:3 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33412:1 33421:1 33426:1 33477:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:1 33570:2 33618:2 33625:1 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33812:1 33839:1 33852:1 33891:1 33897:1 33922:1 33984:1 33997:3 34010:3 34030:1 34094:2 34114:1 34117:1 34145:3 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:3 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 432:6 436:1 441:1 445:1 510:1 512:3 523:1 536:1 621:1 639:1 659:1 660:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 887:1 898:1 904:1 911:1 998:1 1005:4 1009:1 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:1 1077:1 1080:2 1091:1 1095:1 1101:1 1104:1 1106:1 1145:2 1223:1 1267:3 1287:1 1312:1 1337:1 1358:1 1417:4 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1696:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:1 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:1 2399:1 2413:1 2415:3 2422:12 2423:1 2429:1 2463:1 2471:1 2499:1 2526:2 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:3 2592:1 2593:1 2597:4 2600:1 2604:1 2605:1 2606:4 2616:1 2618:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:2 2693:1 2704:16 2716:1 2726:3 2742:1 2761:1 2776:4 2787:1 2799:1 2817:1 2819:1 2821:1 2832:4 2853:1 2881:1 2891:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:2 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:1 3131:2 3133:1 3147:1 3179:1 3188:1 3194:1 3231:1 3255:6 3268:2 3287:1 3359:2 3374:9 3377:3 3379:1 3419:1 3425:1 3428:10 3434:1 3435:2 3445:2 3467:1 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:1 4093:1 4118:1 4130:1 4139:1 4153:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:1 4384:1 4418:1 4421:1 4433:1 4434:3 4436:1 4453:1 4455:1 4462:2 4465:2 4491:2 4503:1 4506:2 4513:3 4551:1 4556:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:1 4850:1 4862:2 4893:1 4898:1 4912:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5254:2 5327:1 5329:1 5331:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:4 5450:1 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:1 5698:3 5716:1 5744:13 5748:1 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:5 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:4 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6540:1 6559:1 6564:2 6567:1 6628:2 6652:1 6761:1 6775:1 6818:1 6833:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 7024:1 7039:1 7106:1 7111:1 7129:1 7131:1 7147:2 7164:2 7172:1 7173:4 7191:2 7198:2 7210:1 7238:2 7268:2 7287:1 7347:4 7353:1 7408:4 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:2 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7549:1 7554:2 7632:1 7638:1 7711:1 7724:1 7735:3 7755:5 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:5 7891:1 7919:1 7931:1 7954:7 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8079:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8476:1 8489:1 8539:2 8541:1 8546:1 8637:1 8646:3 8686:1 8688:4 8707:1 8709:1 8723:1 8724:1 8775:2 8779:2 8809:12 8819:2 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:1 9029:2 9055:2 9065:1 9073:3 9092:1 9093:2 9099:1 9101:4 9108:1 9120:2 9122:2 9129:4 9132:2 9136:1 9144:1 9148:1 9149:1 9156:18 9181:10 9184:1 9189:1 9190:2 9214:1 9229:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:2 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9673:2 9677:1 9697:8 9715:1 9725:2 9755:12 9760:5 9762:2 9763:1 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:4 9945:1 9972:12 10014:5 10026:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:2 10188:3 10201:1 10231:1 10243:1 10293:1 10309:2 10335:2 10340:1 10389:1 10416:1 10467:1 10469:2 10478:2 10497:1 10509:1 10529:1 10541:2 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:1 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11099:1 11105:1 11108:1 11136:3 11143:1 11160:1 11261:1 11283:3 11285:1 11287:6 11291:17 11293:1 11299:2 11306:1 11311:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11430:1 11434:2 11442:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:1 11600:1 11601:1 11618:3 11643:1 11650:1 11685:1 11692:2 11714:1 11721:1 11730:2 11741:3 11772:1 11780:3 11782:1 11810:2 11814:16 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12090:1 12092:2 12105:1 12108:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12433:1 12455:12 12462:1 12471:1 12474:1 12476:1 12494:1 12503:1 12506:2 12511:1 12551:1 12556:2 12573:3 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:5 12737:1 12752:1 12792:1 12801:1 12842:1 12862:1 12884:3 12900:3 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13168:1 13169:1 13201:1 13226:1 13251:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13341:1 13393:1 13453:1 13478:1 13507:1 13519:1 13563:1 13574:1 13575:1 13590:1 13645:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13771:1 13775:2 13785:5 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:2 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:1 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:5 14523:1 14543:2 14548:2 14563:1 14578:1 14630:2 14689:1 14727:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:4 14962:1 14968:9 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:1 15156:1 15209:1 15213:1 15219:1 15234:7 15287:1 15300:5 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15546:1 15574:1 15579:4 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15874:1 15889:1 15899:1 15977:1 15979:3 15995:4 16037:1 16061:1 16067:4 16075:1 16082:2 16091:1 16132:3 16168:1 16182:2 16192:1 16220:1 16229:1 16246:4 16265:2 16315:2 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:1 16565:2 16571:1 16604:1 16646:2 16694:1 16699:1 16728:1 16752:1 16793:5 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:16 16974:2 17024:1 17026:1 17029:1 17078:5 17082:1 17113:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17316:1 17331:1 17333:1 17386:1 17394:1 17397:1 17400:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17616:1 17620:1 17630:1 17655:1 17657:5 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:9 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18242:1 18272:10 18274:1 18286:1 18294:1 18305:1 18335:1 18378:2 18383:1 18386:1 18414:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:1 18614:1 18641:1 18662:2 18664:4 18696:1 18701:2 18703:1 18706:2 18731:1 18748:1 18761:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:4 19001:1 19007:1 19009:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19123:1 19129:2 19136:1 19142:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19487:1 19498:1 19529:1 19571:1 19585:1 19607:1 19613:1 19640:1 19643:1 19650:1 19656:4 19703:1 19712:4 19753:1 19794:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19982:1 19986:1 19990:2 19997:10 20000:2 20011:2 20016:2 20028:2 20032:4 20042:1 20071:1 20170:1 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20364:1 20370:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:2 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:1 21042:1 21067:3 21071:1 21096:2 21130:4 21135:4 21141:4 21147:1 21148:1 21149:2 21164:1 21198:1 21199:3 21216:3 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21528:1 21554:1 21558:4 21580:1 21618:1 21640:16 21698:1 21702:2 21739:2 21751:2 21782:1 21810:3 21812:1 21856:2 21865:1 21970:16 21997:2 22006:1 22026:1 22028:2132 22071:1 22079:1 22082:1 22112:1 22133:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22262:1 22272:5 22285:1 22286:5 22290:1 22293:1 22302:1 22310:2 22382:1 22388:1 22393:1 22469:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:6 22771:2 22774:1 22789:1 22793:1 22813:1 22817:2 22832:1 22834:1 22836:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:5 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:9 23033:1 23035:1 23051:2 23077:1 23088:1 23106:15 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:2 23299:2 23324:1 23331:1 23340:2 23347:1 23348:1 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:4 23846:1 23854:2 23856:1 23882:6 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:4 24162:1 24164:2 24173:3 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:6 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:1 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25237:1 25251:1 25258:1 25282:2 25284:1 25292:1 25328:1 25333:1 25351:1 25388:1 25393:3 25406:2 25428:1 25440:2 25450:3 25463:2 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25888:1 25921:5 25968:1 25972:1 25987:1 25992:1 26024:1 26028:1 26042:1 26046:2 26074:1 26077:1 26144:1 26187:1 26194:1 26197:1 26203:1 26204:1 26219:1 26227:1 26232:1 26237:2 26278:1 26286:2 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26360:1 26369:1 26387:1 26395:1 26428:1 26430:1 26450:1 26451:2 26453:3 26467:1 26471:2 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:4 26824:1 26841:1 26849:1 26852:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:7 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:3 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:2 27945:1 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28238:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:1 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29166:1 29171:1 29191:1 29205:5 29226:3 29242:2 29296:1 29331:1 29338:2 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29698:1 29706:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29896:1 29902:1 29907:9 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30166:4 30169:2 30185:2 30191:2 30220:2 30245:2 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:3 30475:1 30537:1 30543:1 30549:1 30593:1 30616:1 30639:1 30657:2 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31167:1 31182:5 31211:1 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:5 31460:2 31462:2 31477:1 31488:1 31500:1 31536:5 31558:1 31583:1 31590:1 31610:16 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:1 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31870:1 31909:1 31918:1 31925:3 31961:1 31967:1 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:3 32159:1 32172:4 32180:1 32186:1 32211:1 32217:2 32246:1 32267:1 32281:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32454:1 32471:1 32481:1 32496:1 32502:1 32503:1 32513:1 32537:2 32540:1 32556:5 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:3 32909:1 32928:11 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:1 33049:8 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33160:1 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33477:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:1 33570:2 33618:2 33625:1 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33812:1 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34010:3 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:3 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:6 436:1 441:1 445:1 510:1 512:3 523:1 536:1 621:1 639:1 659:1 660:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:1 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1145:2 1223:1 1267:3 1287:1 1312:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1696:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:2 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:1 2399:1 2413:1 2415:3 2422:13 2423:1 2429:1 2463:1 2471:1 2499:1 2526:2 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:4 2592:1 2593:1 2597:4 2600:1 2604:1 2605:1 2606:4 2616:1 2618:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:3 2693:1 2704:17 2716:1 2726:3 2742:1 2761:1 2776:4 2787:1 2799:1 2817:1 2819:1 2821:1 2832:4 2853:1 2881:1 2891:2 2919:1 2923:1 2933:1 2963:2 2967:1 2983:2 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3179:1 3188:1 3194:1 3231:1 3255:6 3268:2 3275:1 3287:1 3359:2 3374:10 3377:3 3379:1 3419:1 3425:1 3428:10 3434:1 3435:2 3445:2 3467:1 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4062:2 4093:1 4118:1 4130:1 4139:1 4153:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:1 4384:2 4418:1 4421:1 4433:2 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4503:1 4506:2 4513:3 4551:1 4556:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:1 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:2 4850:1 4862:2 4893:1 4898:1 4912:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5253:1 5254:2 5327:1 5329:1 5331:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:4 5450:2 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:2 5698:3 5716:1 5744:14 5748:1 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:4 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6540:1 6559:1 6564:2 6567:1 6628:2 6652:1 6761:2 6775:1 6818:1 6833:1 6837:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 7013:1 7024:1 7039:1 7106:1 7111:1 7129:1 7131:1 7147:2 7164:2 7172:1 7173:4 7191:2 7198:2 7210:1 7238:2 7268:3 7287:1 7347:4 7353:1 7408:4 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7549:1 7554:2 7632:1 7638:1 7711:1 7721:1 7724:1 7735:3 7755:6 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:5 7891:1 7919:1 7931:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8079:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8476:1 8489:1 8539:2 8541:1 8546:1 8637:1 8646:3 8686:1 8688:4 8707:1 8709:1 8723:1 8724:1 8775:2 8779:2 8805:1 8809:13 8819:2 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:1 9029:2 9055:2 9065:1 9073:3 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:2 9122:2 9129:5 9132:2 9136:1 9144:1 9148:1 9149:1 9156:19 9181:10 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:8 9715:1 9725:2 9755:12 9760:5 9762:2 9763:1 9764:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:4 9945:1 9972:13 10014:5 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:2 10188:4 10201:1 10231:1 10243:1 10293:1 10309:2 10331:1 10335:2 10340:1 10389:1 10416:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:1 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11261:1 11283:3 11285:1 11287:6 11291:17 11293:1 11299:2 11306:2 11311:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11430:1 11434:2 11442:2 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:3 11643:1 11650:1 11685:1 11692:2 11714:1 11721:1 11730:3 11741:3 11772:1 11780:3 11782:1 11810:2 11814:17 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12090:1 12092:2 12105:1 12108:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12433:1 12455:13 12462:1 12471:1 12474:1 12476:1 12494:1 12503:1 12506:2 12511:1 12551:1 12556:2 12573:3 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:5 12737:1 12752:1 12792:1 12801:1 12820:1 12842:1 12862:1 12884:3 12900:3 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13341:1 13393:1 13453:1 13478:1 13507:1 13519:1 13563:1 13574:1 13575:1 13590:1 13645:1 13665:1 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:5 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:5 14962:1 14968:10 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15209:1 15213:1 15219:1 15234:7 15287:1 15300:5 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15523:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:1 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15874:1 15889:1 15899:1 15977:1 15979:3 15990:1 15995:4 16037:1 16061:1 16067:4 16075:1 16082:2 16091:1 16132:3 16168:1 16182:2 16192:1 16220:1 16229:1 16246:4 16265:2 16313:1 16315:2 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:1 16565:2 16571:1 16601:1 16604:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:17 16974:2 16978:1 17024:1 17026:1 17029:1 17078:5 17082:1 17113:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17316:1 17331:1 17333:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17564:1 17571:1 17588:1 17590:2 17592:2 17616:1 17620:1 17630:1 17655:1 17657:5 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:10 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18215:1 18242:1 18272:10 18274:1 18286:1 18294:1 18305:1 18335:1 18378:2 18383:1 18386:1 18414:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:2 18614:1 18641:1 18662:2 18664:4 18696:1 18701:2 18703:1 18706:2 18731:1 18748:1 18761:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:5 19001:1 19007:1 19009:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19123:1 19129:2 19136:1 19142:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19487:1 19498:1 19529:1 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:1 19656:4 19703:1 19712:4 19753:1 19794:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19982:1 19986:1 19990:2 19997:10 20000:2 20011:2 20016:2 20028:2 20032:4 20042:2 20071:1 20170:1 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20364:1 20370:1 20413:1 20418:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:2 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:1 21042:1 21067:4 21071:1 21096:2 21130:4 21135:4 21141:4 21147:1 21148:1 21149:2 21164:1 21198:1 21199:3 21216:3 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21528:1 21554:1 21558:4 21580:1 21618:1 21640:17 21698:1 21702:2 21739:2 21751:2 21782:1 21810:3 21812:1 21856:2 21865:1 21970:17 21997:2 22006:1 22026:1 22028:2180 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22258:1 22262:1 22272:5 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22310:2 22382:1 22388:1 22393:1 22469:1 22471:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:6 22771:3 22774:1 22789:1 22793:1 22813:1 22817:2 22832:1 22834:1 22836:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:10 23033:1 23035:1 23051:2 23077:1 23088:1 23106:15 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:2 23299:2 23324:1 23331:1 23340:2 23347:1 23348:1 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:4 23846:1 23854:2 23856:1 23882:6 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:6 24530:1 24557:6 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:1 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25237:1 25251:1 25258:1 25282:2 25284:1 25292:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 26024:1 26028:2 26042:1 26046:2 26074:1 26077:1 26144:1 26149:1 26187:1 26194:1 26197:1 26203:1 26204:1 26219:1 26227:1 26232:1 26237:2 26278:1 26286:2 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26360:1 26369:1 26375:1 26387:1 26395:1 26428:1 26430:1 26441:1 26450:1 26451:2 26453:3 26467:1 26471:2 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:4 26824:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:7 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:2 27945:2 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28238:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28537:1 28548:1 28559:2 28572:3 28592:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29145:1 29166:1 29171:1 29191:1 29205:5 29226:3 29242:2 29296:1 29331:1 29338:2 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29896:1 29902:1 29907:10 29908:1 29962:2 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30166:5 30169:2 30185:2 30191:2 30220:2 30245:3 30288:1 30311:1 30314:1 30338:3 30358:1 30373:7 30417:1 30471:3 30475:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31167:1 31182:5 31204:1 31211:1 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:5 31558:2 31583:1 31590:1 31605:1 31610:17 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:1 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:1 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:3 32159:1 32172:4 32180:1 32186:2 32211:1 32217:2 32246:1 32267:1 32281:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32454:1 32471:1 32481:1 32487:1 32496:1 32502:1 32503:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:3 32909:1 32928:11 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:2 33049:8 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33160:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33477:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33618:2 33625:1 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33812:1 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34010:3 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:3 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:6 436:1 441:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 621:1 639:1 659:1 660:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1141:1 1145:2 1223:1 1267:3 1287:1 1312:1 1330:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1535:1 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1696:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:2 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:1 2399:1 2413:1 2415:3 2422:14 2423:1 2429:1 2463:1 2471:1 2499:1 2526:2 2537:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:4 2592:1 2593:1 2597:4 2600:1 2604:1 2605:1 2606:4 2610:1 2616:1 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:3 2693:1 2704:19 2716:1 2726:3 2742:1 2761:1 2776:4 2787:1 2799:1 2817:1 2819:1 2821:1 2832:4 2853:1 2881:1 2891:2 2919:1 2923:1 2933:1 2963:2 2967:1 2983:3 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3179:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3268:2 3275:1 3287:1 3359:2 3374:10 3377:3 3379:1 3419:1 3425:1 3428:12 3434:1 3435:2 3445:2 3460:1 3467:2 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3820:1 3824:1 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4043:1 4062:3 4093:1 4118:1 4130:1 4139:1 4153:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:2 4384:2 4418:1 4421:1 4433:2 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4503:1 4506:2 4513:3 4551:1 4556:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:3 4830:1 4850:1 4862:2 4893:1 4898:1 4912:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5071:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5253:1 5254:2 5294:1 5327:1 5329:1 5331:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:4 5450:2 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:2 5698:3 5716:1 5744:14 5748:1 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:4 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6540:1 6559:1 6564:2 6567:1 6628:2 6652:1 6727:1 6761:2 6775:1 6818:1 6833:1 6837:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:1 7013:1 7024:1 7039:1 7106:1 7111:1 7129:1 7131:1 7147:2 7164:2 7172:1 7173:5 7191:2 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:4 7353:1 7408:4 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7554:2 7632:1 7638:1 7711:1 7721:1 7724:2 7735:3 7755:6 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:6 7891:1 7919:1 7931:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8053:1 8079:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8476:1 8477:1 8489:1 8539:2 8541:1 8546:1 8637:1 8646:3 8686:1 8688:4 8707:1 8709:1 8723:1 8724:1 8775:2 8779:2 8805:1 8809:14 8819:2 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:2 9029:2 9055:2 9065:1 9073:3 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:19 9181:12 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:10 9715:1 9725:2 9755:12 9760:5 9762:2 9763:1 9764:1 9795:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:4 9945:1 9972:14 10014:6 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:2 10188:4 10201:1 10207:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10389:1 10416:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:1 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11261:1 11283:3 11285:1 11287:6 11291:17 11293:1 11299:2 11306:2 11311:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11430:1 11434:2 11442:2 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11714:1 11721:1 11730:3 11741:3 11772:1 11780:3 11782:1 11810:2 11814:19 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12433:1 12455:14 12462:1 12471:1 12474:1 12476:1 12494:1 12503:1 12506:3 12511:1 12525:1 12551:1 12556:2 12573:3 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:6 12737:1 12752:1 12792:1 12801:1 12820:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13393:1 13453:1 13478:1 13507:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13645:1 13665:2 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:6 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14870:2 14893:1 14941:6 14962:1 14968:10 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15209:1 15213:1 15214:1 15219:1 15234:7 15287:1 15300:5 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15523:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:2 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15874:1 15889:1 15899:1 15977:1 15979:3 15990:1 15995:4 16033:1 16037:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16132:3 16156:1 16168:1 16182:2 16192:1 16216:1 16220:1 16229:1 16246:4 16265:2 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:1 16565:2 16571:1 16601:1 16604:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:19 16974:2 16978:1 17024:1 17026:1 17029:1 17078:5 17082:1 17113:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17316:1 17331:1 17333:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17560:1 17564:1 17571:1 17588:1 17590:2 17592:2 17616:1 17620:1 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:10 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18215:1 18242:1 18272:10 18274:1 18286:1 18294:1 18305:1 18335:1 18378:3 18383:1 18386:1 18414:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:2 18614:1 18641:1 18658:1 18662:2 18664:4 18696:1 18701:2 18703:1 18706:2 18731:1 18748:1 18761:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:5 19001:1 19007:1 19009:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19123:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19256:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:1 19656:4 19703:1 19712:5 19753:1 19794:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19982:1 19986:1 19990:2 19997:10 20000:3 20011:2 20016:2 20028:2 20032:4 20042:2 20071:1 20170:1 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:1 20364:1 20370:1 20405:1 20413:1 20418:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:1 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:1 21042:1 21067:4 21071:1 21096:2 21130:4 21135:5 21141:4 21147:1 21148:1 21149:2 21164:1 21198:1 21199:3 21216:3 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:1 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21528:1 21554:1 21558:4 21580:1 21618:2 21640:19 21698:1 21702:2 21739:2 21751:2 21782:1 21810:3 21812:1 21856:2 21865:1 21970:19 21997:2 22006:1 22026:1 22028:2231 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:1 22200:3 22232:1 22240:1 22241:1 22258:1 22262:1 22272:5 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22310:2 22382:1 22388:1 22393:1 22469:1 22471:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:7 22771:3 22774:1 22789:1 22793:1 22813:1 22817:2 22832:1 22834:1 22836:1 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:10 23033:1 23035:1 23051:2 23077:1 23088:1 23106:15 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:2 23299:3 23324:1 23331:1 23340:2 23347:1 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:5 23846:1 23854:2 23856:1 23882:7 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:7 24530:1 24557:7 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25170:1 25181:1 25185:2 25200:2 25205:1 25230:1 25237:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25472:1 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 26024:1 26028:2 26042:1 26046:2 26056:1 26074:1 26077:1 26144:1 26149:1 26187:1 26194:1 26197:1 26203:1 26204:1 26219:1 26227:1 26232:2 26237:2 26278:1 26283:1 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:1 26360:1 26369:1 26375:1 26380:1 26387:1 26395:1 26428:1 26430:1 26441:1 26450:1 26451:2 26453:3 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:5 26824:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:8 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:2 27945:2 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28238:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28537:1 28548:1 28559:2 28572:3 28592:1 28600:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29145:1 29166:1 29171:1 29175:1 29191:1 29205:5 29226:3 29242:2 29296:1 29331:1 29338:2 29340:1 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29896:1 29902:1 29907:10 29908:1 29962:2 29973:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30166:5 30169:2 30185:2 30191:2 30220:2 30245:4 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31131:1 31167:1 31182:6 31204:1 31211:2 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:6 31558:2 31572:1 31583:1 31590:1 31605:1 31610:19 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:2 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:3 32159:1 32172:4 32180:1 32186:2 32211:1 32217:2 32246:1 32267:1 32281:1 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32496:1 32502:1 32503:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:2 32893:3 32909:1 32928:11 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:2 33049:8 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33160:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33477:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33618:2 33625:1 33654:1 33661:2 33690:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33812:1 33838:1 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:3 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:3 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:6 436:1 441:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 621:1 639:1 659:1 660:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1141:1 1145:2 1223:1 1267:3 1287:1 1312:1 1330:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1525:1 1526:1 1533:2 1535:1 1638:1 1642:1 1655:1 1660:1 1661:2 1671:1 1675:1 1696:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:2 1965:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:1 2399:1 2413:1 2415:3 2422:14 2423:1 2429:1 2463:1 2471:1 2499:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:4 2592:1 2593:1 2597:4 2600:1 2604:1 2605:1 2606:4 2610:2 2616:1 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:3 2693:1 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2799:1 2817:1 2819:1 2821:1 2832:4 2853:1 2881:1 2891:2 2919:1 2923:1 2933:1 2963:2 2967:1 2983:3 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3179:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3268:2 3275:1 3287:1 3359:2 3374:10 3377:3 3379:1 3419:1 3425:1 3428:12 3434:1 3435:2 3445:2 3460:1 3467:2 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3820:1 3824:3 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4043:1 4062:3 4093:1 4118:1 4130:1 4139:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:2 4384:2 4418:1 4421:1 4433:2 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4503:1 4506:2 4513:3 4551:1 4556:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:3 4830:1 4850:1 4862:2 4893:1 4898:1 4912:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5071:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5253:1 5254:2 5294:1 5327:1 5329:1 5331:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:5 5450:2 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5639:1 5647:2 5698:3 5704:1 5716:1 5744:14 5748:1 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:2 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6540:1 6559:1 6564:2 6567:1 6628:2 6652:1 6727:1 6761:2 6775:1 6818:1 6833:1 6837:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:1 7013:1 7024:1 7039:1 7106:1 7111:1 7129:1 7131:1 7147:2 7164:2 7172:1 7173:5 7191:2 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:4 7353:1 7408:4 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7554:2 7632:1 7638:1 7646:1 7711:1 7721:1 7724:2 7735:3 7755:6 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:6 7891:1 7919:1 7931:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8053:1 8079:1 8082:2 8085:2 8087:1 8092:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8476:1 8477:1 8489:1 8539:2 8541:1 8546:1 8637:1 8646:3 8686:1 8688:4 8707:1 8709:1 8723:2 8724:1 8775:2 8779:2 8805:1 8809:14 8819:2 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:2 9029:2 9055:2 9065:1 9073:3 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:19 9181:12 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9546:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:10 9715:1 9725:2 9755:13 9760:5 9762:2 9763:1 9764:1 9795:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:4 9945:1 9972:14 10000:1 10014:6 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:2 10188:4 10201:1 10207:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10389:1 10416:2 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:2 11302:1 11306:2 11311:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11430:1 11434:2 11442:2 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12167:1 12170:1 12188:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12433:2 12455:14 12462:1 12471:1 12474:1 12476:1 12494:1 12503:1 12506:3 12511:1 12525:1 12551:1 12556:2 12573:3 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:6 12737:1 12752:1 12792:1 12801:1 12820:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:1 12933:1 12938:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13393:1 13453:1 13478:1 13507:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13645:2 13665:2 13678:1 13690:1 13699:1 13715:2 13742:1 13757:2 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:6 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14835:1 14870:2 14893:1 14941:6 14962:1 14968:10 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15209:1 15213:1 15214:1 15219:1 15234:8 15287:1 15300:5 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15523:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:2 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15874:1 15889:1 15899:1 15977:1 15979:3 15990:1 15995:4 16033:1 16037:2 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16132:3 16156:1 16168:1 16182:2 16192:1 16216:1 16220:1 16229:1 16246:4 16265:2 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16502:2 16542:1 16561:3 16565:2 16571:1 16601:1 16604:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:2 17026:1 17029:1 17078:5 17082:1 17113:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17316:1 17331:1 17333:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17560:1 17564:1 17571:1 17588:1 17590:2 17592:3 17616:1 17620:1 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:10 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18215:1 18242:1 18272:10 18274:1 18286:1 18294:1 18305:1 18335:1 18378:3 18383:1 18386:1 18414:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18503:1 18508:1 18534:2 18577:2 18614:1 18641:1 18658:1 18662:2 18664:4 18696:1 18701:2 18703:1 18706:2 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:5 19001:1 19007:1 19009:1 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19123:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:1 19238:1 19239:1 19256:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:1 19656:4 19703:1 19712:5 19753:1 19757:1 19794:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19982:1 19986:1 19990:2 19997:10 20000:3 20011:3 20016:2 20028:2 20032:4 20042:2 20071:1 20170:1 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:2 20364:1 20370:1 20405:1 20413:1 20418:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:2 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:1 21042:1 21067:4 21071:1 21096:2 21130:4 21135:5 21141:4 21147:1 21148:1 21149:2 21164:1 21198:1 21199:3 21216:3 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21528:1 21554:1 21558:4 21580:1 21618:2 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:3 21812:1 21856:2 21865:1 21970:20 21997:2 22006:1 22026:1 22028:2336 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:2 22200:3 22232:1 22240:1 22241:1 22258:1 22262:1 22272:5 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22310:2 22382:1 22388:1 22393:2 22469:1 22471:1 22533:1 22549:1 22554:1 22561:1 22590:1 22655:1 22722:4 22748:1 22767:7 22771:3 22774:1 22789:1 22793:1 22813:1 22817:2 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:10 23033:1 23035:1 23051:2 23077:1 23088:1 23106:16 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:3 23299:3 23324:1 23331:1 23340:2 23347:1 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23813:1 23827:5 23846:1 23854:2 23856:1 23882:7 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:1 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:1 24526:7 24530:1 24557:7 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24836:1 24841:1 24856:1 24878:1 24880:2 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24943:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25170:1 25180:1 25181:1 25185:2 25200:2 25205:1 25230:1 25237:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25472:1 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 26024:1 26028:2 26042:1 26046:2 26056:1 26074:1 26077:1 26096:1 26144:1 26149:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:1 26232:2 26237:2 26278:1 26283:1 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:1 26360:1 26369:1 26375:1 26380:1 26387:1 26395:1 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:5 26824:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27239:8 27250:1 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:2 27945:2 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28238:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:1 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28530:1 28537:1 28548:1 28559:2 28572:3 28592:1 28600:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29145:1 29166:1 29171:1 29175:1 29191:1 29205:5 29226:3 29242:2 29296:1 29331:1 29338:2 29340:1 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29858:1 29871:1 29896:1 29902:1 29907:10 29908:1 29962:2 29973:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30166:5 30169:2 30185:2 30191:2 30220:2 30245:4 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31167:2 31182:6 31204:1 31211:2 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:6 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:2 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:3 32159:1 32172:4 32180:1 32186:2 32211:1 32217:2 32246:1 32267:1 32281:2 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32496:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:3 32893:3 32909:1 32928:11 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:2 33049:8 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33160:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33618:2 33625:1 33654:1 33661:2 33690:4 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33812:1 33838:1 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:3 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:3 34463:1 34467:1 34485:1 34519:1 34523:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 621:1 639:1 659:1 660:1 679:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:1 748:2 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1141:1 1145:2 1223:1 1257:1 1267:3 1287:1 1312:1 1330:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1655:1 1660:2 1661:2 1671:1 1675:1 1696:1 1715:3 1716:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:1 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:1 2399:1 2413:1 2415:3 2422:14 2423:1 2425:1 2429:1 2463:1 2471:1 2499:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:4 2592:1 2593:1 2596:1 2597:4 2600:1 2604:1 2605:1 2606:4 2610:2 2616:1 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2689:1 2691:3 2693:1 2697:1 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2799:1 2817:1 2819:1 2821:1 2832:4 2841:1 2853:1 2881:1 2891:2 2919:1 2923:1 2933:1 2963:2 2967:1 2983:3 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3179:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:13 3434:1 3435:2 3445:2 3460:1 3467:2 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3820:1 3824:3 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4043:1 4062:3 4093:1 4118:1 4130:1 4139:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:2 4384:2 4418:1 4421:1 4433:2 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4500:1 4503:1 4506:2 4513:3 4551:1 4556:1 4559:1 4563:2 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:3 4830:1 4850:1 4862:2 4893:1 4898:1 4912:1 4930:1 4936:1 4938:1 4952:1 4961:1 5030:2 5062:1 5071:1 5082:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5253:1 5254:2 5294:1 5327:1 5329:1 5331:1 5333:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:5 5450:2 5472:1 5513:1 5528:2 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5639:1 5647:2 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6177:3 6202:1 6209:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6727:1 6761:2 6775:1 6777:1 6818:1 6833:1 6837:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:1 7013:1 7024:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:2 7172:1 7173:5 7191:2 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:6 7353:1 7408:5 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7632:1 7638:1 7646:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:6 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:6 7891:1 7919:1 7931:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8053:1 8079:1 8082:2 8085:2 8087:1 8092:1 8097:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:5 8476:1 8477:1 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:2 8724:1 8775:2 8779:2 8805:1 8809:14 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:3 9029:2 9055:2 9065:1 9073:4 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:19 9181:13 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9496:1 9546:1 9548:1 9553:2 9564:1 9603:2 9613:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:10 9715:1 9725:2 9755:13 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:1 9867:1 9899:1 9913:1 9927:1 9931:4 9945:1 9972:14 10000:1 10014:6 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10124:2 10160:1 10187:2 10188:5 10201:1 10207:1 10214:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:1 10389:1 10416:2 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:2 10582:2 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:2 11302:1 11306:2 11311:1 11316:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12433:2 12455:14 12462:1 12471:1 12474:1 12476:1 12494:1 12503:1 12506:3 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12610:1 12622:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:6 12737:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13393:1 13453:1 13478:1 13507:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:2 13665:3 13678:1 13690:1 13699:1 13715:2 13742:1 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:6 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14941:6 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15209:1 15213:1 15214:2 15219:1 15234:9 15287:1 15300:5 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15756:2 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:1 15865:2 15874:1 15889:1 15899:1 15977:1 15979:3 15990:1 15995:4 16033:1 16037:2 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16132:3 16156:1 16168:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:5 16265:2 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16492:1 16502:2 16542:1 16561:3 16565:2 16571:1 16601:1 16604:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17316:1 17331:1 17333:1 17377:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17571:1 17588:1 17590:3 17592:3 17616:1 17620:1 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:11 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18215:1 18242:1 18272:10 18274:1 18286:1 18294:1 18305:1 18335:1 18378:4 18383:1 18386:1 18414:1 18421:1 18424:1 18428:2 18442:1 18454:1 18469:1 18479:1 18503:1 18508:1 18534:3 18577:2 18614:1 18641:1 18658:1 18662:3 18664:4 18696:1 18701:2 18703:1 18706:2 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:5 19001:1 19007:1 19009:1 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19123:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:2 19208:1 19238:1 19239:1 19256:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:1 19656:4 19703:1 19712:6 19753:1 19757:1 19794:1 19805:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19982:1 19986:1 19990:2 19997:10 20000:4 20011:4 20016:2 20028:2 20032:4 20042:2 20071:1 20170:1 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:1 20418:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:2 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:2 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:2 21130:4 21135:5 21141:4 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:3 21216:4 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21528:1 21554:1 21558:4 21570:1 21580:1 21618:3 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21970:20 21997:2 22006:1 22026:1 22028:2459 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:2 22200:3 22232:1 22240:1 22241:1 22258:1 22262:2 22272:5 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22306:1 22310:2 22382:1 22388:1 22393:2 22469:1 22471:1 22533:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:4 22748:1 22767:7 22771:3 22774:1 22789:1 22793:1 22794:1 22813:1 22817:2 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23018:1 23027:2 23028:11 23033:1 23035:1 23051:2 23077:1 23088:1 23106:16 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:3 23299:4 23324:1 23331:1 23340:2 23347:2 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23787:1 23791:1 23798:1 23813:1 23827:6 23846:1 23854:2 23856:1 23882:7 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24111:1 24113:2 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:2 24526:7 24530:1 24557:7 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:2 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25472:1 25487:1 25490:1 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 26024:1 26028:2 26042:1 26046:2 26056:1 26074:1 26077:1 26096:1 26144:1 26149:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:1 26232:2 26237:2 26278:1 26283:1 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:1 26360:1 26369:1 26375:1 26380:1 26387:1 26395:1 26401:1 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:5 26824:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:1 26914:1 26919:1 26925:3 26930:2 26982:1 27006:2 27008:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27230:1 27239:9 27250:1 27273:5 27285:1 27293:1 27304:4 27339:3 27379:1 27395:1 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27486:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:2 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28106:1 28114:2 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28456:1 28464:1 28471:1 28484:1 28530:2 28537:1 28548:1 28559:2 28572:3 28592:1 28600:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:2 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:1 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29340:1 29352:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:2 29838:1 29842:1 29858:1 29871:1 29877:1 29896:1 29902:1 29907:10 29908:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30166:6 30169:2 30185:2 30191:2 30195:1 30220:2 30245:4 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:2 31182:6 31204:1 31211:2 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:6 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:2 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32148:3 32159:1 32172:4 32180:1 32186:2 32211:1 32217:2 32246:1 32267:1 32281:2 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:11 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:2 33049:8 33061:1 33065:1 33071:1 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33150:3 33155:1 33157:2 33160:2 33181:1 33199:1 33214:1 33216:4 33259:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33618:2 33625:1 33654:1 33661:2 33690:4 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:1 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:3 34463:1 34467:1 34475:1 34485:1 34519:1 34523:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 621:1 639:1 659:1 660:1 679:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:2 748:3 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1141:1 1145:2 1223:1 1257:1 1267:3 1272:1 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:2 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:2 2399:1 2413:2 2415:3 2422:14 2423:1 2425:1 2429:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:4 2592:1 2593:1 2596:1 2597:4 2600:1 2604:1 2605:1 2606:4 2610:2 2616:2 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2689:1 2691:3 2693:1 2697:1 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2797:1 2799:1 2817:1 2819:1 2821:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:3 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3173:1 3179:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:14 3434:1 3435:2 3445:2 3460:1 3467:2 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:2 3870:2 3872:1 3898:1 3916:1 3935:1 3949:1 4043:1 4062:3 4093:1 4111:1 4118:1 4130:1 4139:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:1 4433:2 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:3 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5030:2 5062:1 5071:1 5082:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:4 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:1 5331:1 5333:3 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:5 5450:2 5472:1 5513:1 5528:3 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5927:1 5943:1 5948:1 5950:1 5995:2 6016:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6177:3 6202:1 6209:1 6214:2 6249:1 6255:1 6260:1 6263:2 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6727:2 6761:2 6775:1 6777:1 6818:1 6833:1 6837:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7024:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:3 7172:1 7173:7 7191:3 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:6 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:7 7891:1 7897:1 7919:1 7931:1 7949:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8053:1 8079:1 8082:2 8085:2 8087:1 8092:1 8097:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8261:1 8263:1 8271:1 8347:1 8389:1 8390:1 8416:1 8460:6 8476:1 8477:1 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:2 8724:1 8775:2 8779:2 8805:1 8809:14 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:3 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:20 9181:14 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:11 9715:1 9725:2 9755:13 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:1 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9972:14 10000:1 10014:7 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10119:1 10124:2 10160:1 10187:2 10188:5 10201:1 10207:1 10214:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:1 10389:1 10416:2 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11176:1 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:2 11302:1 11306:2 11311:1 11316:1 11319:1 11334:2 11353:1 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12433:2 12455:14 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:3 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:1 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:7 12737:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13362:1 13393:1 13453:1 13478:1 13506:1 13507:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:2 13665:3 13678:1 13690:1 13699:1 13715:2 13742:1 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:1 14506:7 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14941:7 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15209:1 15213:1 15214:2 15219:1 15234:9 15287:1 15290:1 15300:5 15326:1 15347:1 15425:1 15462:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15720:2 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:2 15874:1 15889:1 15899:1 15977:1 15979:4 15990:1 15995:4 16033:1 16037:2 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16132:3 16156:1 16168:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16492:1 16502:2 16542:1 16561:3 16565:2 16571:1 16601:1 16604:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17571:1 17588:1 17590:3 17592:4 17616:1 17620:1 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17786:11 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:1 18272:11 18274:1 18286:1 18294:1 18305:2 18335:1 18378:4 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18534:3 18548:1 18551:1 18577:2 18614:1 18641:1 18658:1 18662:3 18664:4 18696:1 18701:2 18703:1 18706:2 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:5 19001:1 19007:1 19009:1 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:1 19656:5 19703:1 19712:6 19753:1 19757:1 19794:1 19805:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19982:1 19986:1 19990:2 19997:11 20000:4 20011:4 20016:2 20028:2 20032:4 20042:2 20071:1 20170:2 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:2 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:3 20722:2 20730:4 20735:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:2 21130:5 21135:6 21141:4 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:3 21216:4 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21528:1 21554:1 21558:5 21570:1 21580:1 21618:3 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21970:20 21997:2 22006:1 22026:1 22028:2500 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:2 22200:3 22210:1 22232:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22306:1 22310:2 22369:1 22382:1 22388:1 22393:2 22469:1 22471:1 22533:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:5 22730:1 22748:1 22767:7 22771:3 22774:1 22789:1 22793:1 22794:1 22813:1 22817:2 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:11 23033:1 23035:1 23051:2 23077:1 23088:1 23106:17 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:3 23292:1 23299:4 23324:1 23331:1 23340:2 23347:2 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23813:1 23827:6 23846:1 23854:2 23856:1 23882:8 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24513:2 24526:7 24530:1 24557:8 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25472:1 25487:1 25490:1 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26074:1 26077:1 26086:1 26096:1 26144:1 26149:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:1 26232:2 26237:2 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:1 26360:1 26369:1 26375:1 26380:1 26387:1 26395:1 26401:1 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:5 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:1 26919:1 26925:3 26930:2 26945:1 26982:1 27006:2 27008:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27230:1 27239:10 27250:1 27273:5 27285:1 27293:1 27304:5 27339:3 27379:1 27395:1 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27486:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:2 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28106:1 28114:2 28168:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:1 28507:1 28530:2 28537:1 28548:1 28559:2 28572:4 28592:1 28600:2 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:3 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:1 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29340:1 29352:1 29354:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:3 29838:1 29842:1 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:10 29908:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:6 30169:2 30185:2 30191:2 30195:1 30220:2 30245:4 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:2 31182:7 31204:1 31211:2 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:6 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:7 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:2 31992:1 32022:1 32051:2 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32147:1 32148:3 32159:1 32172:4 32180:1 32186:2 32211:1 32217:2 32246:1 32267:1 32281:2 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:1 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32799:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:12 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:2 33049:8 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:1 33150:3 33155:1 33157:2 33160:2 33181:1 33199:1 33214:1 33216:5 33259:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33618:3 33625:1 33654:1 33661:2 33690:4 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:1 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34018:1 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34270:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:4 34463:1 34467:1 34475:1 34485:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 578:1 621:1 639:1 659:1 660:1 679:1 683:1 684:3 687:1 704:1 712:1 714:2 721:1 734:2 748:3 755:1 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1141:1 1145:2 1223:1 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1899:1 1901:1 1933:1 1949:1 1951:1 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2244:1 2265:2 2267:1 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2379:1 2382:2 2399:1 2413:2 2415:3 2422:14 2423:1 2425:1 2429:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:4 2592:1 2593:1 2596:1 2597:4 2598:1 2600:1 2604:1 2605:1 2606:4 2610:2 2616:2 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:1 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2689:1 2691:3 2693:1 2697:1 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:4 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3173:1 3179:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:15 3434:1 3435:2 3445:2 3460:1 3467:3 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:3 3870:2 3872:1 3898:1 3916:1 3931:1 3935:1 3949:1 4043:1 4062:4 4093:1 4111:1 4118:1 4130:1 4139:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:2 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:1 4433:2 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:3 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5030:2 5062:1 5071:1 5082:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:4 5202:1 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:1 5331:1 5333:3 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:5 5450:2 5466:1 5467:1 5472:1 5513:1 5528:3 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:1 5948:1 5950:1 5995:2 6001:1 6016:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:2 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:1 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6727:2 6761:2 6775:1 6777:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7024:1 7032:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:3 7172:1 7173:7 7191:3 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:1 7422:1 7423:1 7426:4 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:6 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7897:1 7919:1 7931:1 7949:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8053:1 8079:1 8082:2 8085:2 8087:1 8092:1 8097:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8261:1 8263:1 8271:1 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:14 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:20 9181:15 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9321:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:1 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:11 9715:1 9725:2 9755:13 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:1 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9972:14 10000:1 10014:8 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10119:1 10124:2 10160:1 10187:2 10188:5 10201:1 10207:1 10214:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:1 10389:1 10416:2 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10641:2 10657:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:2 11302:1 11306:2 11311:1 11316:1 11319:1 11334:2 11338:1 11353:1 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11465:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12118:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12382:1 12433:2 12455:14 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:4 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:1 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:8 12737:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13362:1 13393:1 13453:1 13478:1 13506:1 13507:1 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13665:4 13678:1 13690:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:7 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14941:9 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15209:1 15213:1 15214:2 15219:1 15234:9 15287:1 15290:1 15300:5 15326:1 15339:1 15347:1 15425:1 15462:1 15494:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:2 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:2 15874:1 15889:1 15899:1 15939:1 15977:1 15979:4 15990:1 15995:4 16033:1 16037:2 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:3 16156:1 16168:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16492:2 16502:2 16542:1 16561:3 16565:2 16571:1 16601:1 16604:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16801:1 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17571:1 17588:1 17590:3 17592:4 17616:1 17620:1 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:11 17871:1 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18143:2 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:1 18272:11 18274:1 18286:1 18293:1 18294:1 18305:2 18335:1 18378:5 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18534:3 18548:1 18551:1 18577:2 18614:1 18641:1 18658:1 18662:3 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:5 19001:1 19007:1 19009:1 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:2 19656:6 19703:1 19712:7 19753:1 19757:1 19794:1 19805:1 19833:1 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19982:1 19986:2 19990:2 19997:11 20000:5 20011:4 20016:2 20028:2 20032:4 20042:2 20071:1 20170:2 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:2 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:3 20722:2 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:2 21130:6 21135:6 21141:4 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:3 21216:4 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21970:20 21997:2 22006:1 22026:1 22028:2590 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:2 22200:3 22210:1 22232:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22306:1 22310:2 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22748:1 22767:7 22771:3 22774:1 22789:1 22793:1 22794:1 22813:1 22817:2 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:11 23033:1 23035:1 23051:2 23077:1 23088:1 23106:17 23121:1 23129:1 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:3 23292:1 23299:5 23324:1 23331:1 23340:2 23347:3 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23813:1 23827:7 23846:1 23847:1 23854:2 23856:1 23882:8 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24557:8 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26074:1 26077:1 26086:1 26096:1 26144:1 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:1 26232:2 26237:2 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:1 26383:1 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26464:1 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:1 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27230:1 27239:10 27250:1 27273:5 27285:1 27293:1 27304:6 27339:3 27379:1 27395:1 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27486:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:2 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28106:1 28114:2 28168:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:2 28507:1 28530:2 28537:1 28548:1 28559:2 28572:4 28590:1 28592:1 28600:3 28603:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:3 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:2 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29340:2 29352:1 29354:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:1 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:3 29838:1 29842:1 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:10 29908:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:7 30169:2 30185:2 30191:2 30195:1 30220:2 30245:4 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32147:2 32148:3 32159:1 32172:4 32180:1 32186:2 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:12 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:2 33049:8 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:1 33150:3 33155:1 33157:2 33160:2 33181:1 33199:1 33214:1 33216:6 33259:1 33260:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33618:3 33625:1 33654:1 33661:2 33690:4 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34270:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:2 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:4 34448:1 34460:4 34463:1 34464:1 34467:1 34475:1 34485:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 578:1 621:1 639:1 659:1 660:1 679:1 683:1 684:3 687:1 704:1 712:1 714:3 721:1 734:2 748:3 755:1 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1141:1 1145:2 1223:1 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1417:4 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:1 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1899:1 1901:1 1933:1 1949:1 1951:2 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2372:1 2379:1 2382:2 2399:1 2413:2 2415:3 2422:14 2423:1 2425:1 2429:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:5 2592:1 2593:1 2596:1 2597:4 2598:1 2600:1 2604:1 2605:1 2606:4 2610:2 2616:2 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2689:1 2691:3 2693:1 2697:1 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:4 2985:1 3003:1 3006:2 3016:2 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3173:1 3179:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:16 3434:1 3435:2 3445:2 3460:1 3467:3 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:3 3870:2 3872:1 3898:1 3916:1 3931:1 3935:1 3949:1 4043:1 4062:4 4093:1 4111:1 4118:1 4130:1 4139:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:1 4431:1 4433:3 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:3 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5030:2 5062:1 5071:1 5082:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5202:1 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:1 5331:1 5333:3 5343:1 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:5 5450:3 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:1 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:2 6228:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:1 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6775:1 6777:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7024:1 7032:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:3 7172:1 7173:7 7191:3 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:1 7422:1 7423:1 7426:5 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:6 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7897:1 7919:1 7931:1 7949:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:1 8040:1 8053:1 8079:1 8082:2 8085:2 8087:1 8092:2 8097:1 8132:1 8141:1 8207:1 8210:1 8232:1 8241:2 8243:1 8261:1 8263:1 8271:1 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:14 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:21 9181:16 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9321:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:2 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:11 9715:1 9725:2 9755:13 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:1 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9972:14 10000:1 10014:8 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:1 10109:1 10116:1 10117:1 10119:1 10124:2 10160:1 10187:2 10188:6 10201:1 10207:1 10214:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:1 10389:1 10416:2 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10641:2 10657:1 10681:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:1 10922:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11306:2 11311:1 11316:1 11319:1 11334:3 11338:1 11345:1 11353:1 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11465:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12118:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12382:1 12433:2 12455:14 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:4 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:1 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:8 12737:1 12750:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13258:1 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13362:1 13393:1 13453:1 13478:1 13506:1 13507:1 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13665:4 13678:2 13690:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:7 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14941:9 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15116:1 15152:2 15156:1 15158:1 15209:1 15213:1 15214:2 15219:1 15234:9 15287:1 15290:1 15300:5 15326:1 15339:1 15347:1 15425:1 15462:1 15494:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:2 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:2 15874:1 15889:1 15899:1 15939:1 15977:1 15979:4 15990:1 15995:4 16033:1 16037:2 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:3 16156:1 16168:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:1 16405:1 16426:1 16468:3 16492:2 16502:2 16542:1 16561:3 16565:2 16571:1 16601:1 16604:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16801:1 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16914:2 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17571:1 17588:1 17590:3 17592:4 17616:1 17620:1 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17882:1 17883:1 17893:1 17915:1 17926:1 17937:1 17950:1 17969:4 18021:1 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:2 18147:1 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:1 18272:12 18274:1 18286:1 18293:1 18294:1 18305:2 18335:1 18378:5 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18534:3 18548:1 18551:1 18577:2 18614:1 18641:1 18658:1 18662:3 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18939:1 18981:6 19001:1 19007:1 19009:2 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:2 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:2 19656:6 19703:1 19712:8 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19926:1 19974:1 19975:1 19982:1 19985:1 19986:2 19990:2 19997:12 20000:5 20011:5 20016:2 20028:2 20032:4 20042:2 20071:1 20134:1 20170:2 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:2 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:3 20722:2 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:2 21130:6 21135:6 21141:5 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21970:20 21997:2 22006:1 22026:1 22028:2621 22071:1 22079:1 22082:2 22112:1 22133:1 22168:1 22172:2 22200:3 22210:1 22232:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:1 22302:1 22306:1 22310:2 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22748:1 22767:7 22771:3 22774:1 22789:1 22793:1 22794:1 22813:1 22817:2 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23106:18 23121:1 23129:2 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:1 23264:1 23275:3 23292:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:3 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23813:1 23827:8 23846:1 23847:1 23854:2 23856:1 23882:8 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24557:9 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:1 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:1 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:1 25794:2 25810:1 25838:4 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26074:1 26077:1 26086:1 26096:1 26144:1 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:1 26232:2 26237:2 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:1 26383:1 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26464:1 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:1 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27214:1 27215:1 27228:1 27230:1 27239:11 27250:1 27273:5 27285:1 27293:1 27304:6 27339:3 27379:1 27395:2 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27468:1 27484:1 27486:1 27492:1 27493:1 27502:2 27525:1 27526:1 27544:2 27549:1 27553:5 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:3 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28106:1 28114:2 28168:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:2 28507:1 28530:2 28537:1 28548:1 28559:2 28572:4 28590:1 28592:1 28600:3 28603:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28733:3 28795:1 28800:1 28822:1 28865:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:3 29000:1 29003:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29100:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:2 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29340:2 29352:1 29354:1 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:2 29531:3 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29792:1 29798:1 29812:1 29830:3 29838:1 29842:1 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:11 29908:1 29948:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:7 30169:2 30185:2 30191:2 30195:1 30220:2 30245:4 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30795:1 30799:1 30808:2 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31317:2 31386:1 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:1 31918:1 31925:4 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32146:1 32147:2 32148:3 32159:1 32172:4 32180:1 32186:3 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32341:1 32346:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:12 32929:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:3 33049:8 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:1 33150:3 33155:1 33157:2 33160:3 33181:1 33199:1 33214:1 33216:6 33259:1 33260:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:1 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34270:1 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34446:1 34448:1 34460:5 34463:1 34464:1 34467:1 34475:1 34485:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:2 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 536:1 539:1 565:1 578:1 621:1 639:1 659:1 660:1 679:1 683:1 684:3 687:1 704:1 712:1 714:3 721:1 734:2 748:3 755:1 775:1 788:2 795:5 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:2 1185:1 1223:1 1256:1 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1417:4 1437:2 1442:1 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:1 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1899:1 1901:1 1933:1 1949:1 1951:2 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2123:1 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2372:1 2379:1 2382:2 2399:1 2413:2 2415:3 2422:15 2423:1 2425:1 2429:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:5 2592:1 2593:1 2596:1 2597:4 2598:1 2600:1 2604:1 2605:1 2606:4 2610:2 2616:2 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2687:1 2689:1 2691:3 2693:1 2697:1 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3153:1 3173:1 3179:1 3182:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:18 3434:1 3435:2 3445:2 3451:1 3460:1 3467:3 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:3 3870:2 3872:1 3898:2 3916:1 3921:1 3931:1 3935:1 3949:1 4043:1 4062:4 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:1 4431:1 4433:3 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5030:2 5062:1 5071:1 5082:2 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5202:1 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:1 5331:1 5333:3 5343:2 5347:1 5359:2 5384:1 5386:3 5409:1 5434:1 5437:5 5450:3 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:1 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:2 6228:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:6 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6775:1 6777:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7024:1 7032:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:3 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:1 7422:1 7423:1 7426:5 7443:1 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:6 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7897:1 7919:1 7931:1 7949:1 7954:8 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:1 8092:3 8097:1 8132:1 8141:1 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8342:1 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:15 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:22 9181:18 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9321:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:2 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:12 9715:1 9725:2 9755:14 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:2 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9970:1 9972:15 9984:2 10000:1 10014:8 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:2 10107:1 10109:1 10116:1 10117:1 10119:1 10124:2 10160:1 10187:2 10188:6 10201:1 10207:2 10214:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:1 10389:1 10416:2 10428:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10641:2 10657:1 10681:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:2 10922:1 10948:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11306:2 11311:1 11316:1 11319:1 11334:3 11338:1 11345:1 11353:1 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11465:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12118:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:2 12337:2 12361:1 12376:3 12382:1 12431:1 12433:2 12455:15 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:1 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:8 12737:1 12750:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13258:1 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13362:1 13370:1 13393:1 13453:1 13478:1 13506:1 13507:2 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13665:4 13678:2 13690:1 13692:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14788:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14941:9 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15152:2 15156:1 15158:1 15209:1 15213:1 15214:2 15219:1 15234:10 15287:1 15290:1 15300:6 15326:1 15339:1 15347:1 15425:1 15462:1 15494:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:2 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:3 15874:1 15889:1 15899:1 15939:1 15977:1 15979:4 15990:1 15995:4 16033:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:3 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16278:1 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:2 16405:1 16426:1 16468:3 16492:2 16502:2 16542:1 16561:3 16565:2 16571:1 16601:1 16604:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:6 16801:1 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16905:1 16914:2 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17383:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17438:1 17468:1 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17616:1 17620:2 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17882:1 17883:1 17893:2 17915:1 17926:1 17937:1 17950:1 17969:4 18021:1 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:2 18147:2 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:2 18272:12 18274:1 18286:1 18293:1 18294:1 18305:2 18335:1 18378:5 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18525:1 18527:1 18534:3 18548:1 18551:1 18577:2 18614:1 18641:1 18658:1 18662:3 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18924:1 18939:2 18956:1 18981:6 19001:1 19007:1 19009:2 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19127:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:2 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:2 19656:6 19703:1 19711:1 19712:8 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19926:2 19974:1 19975:1 19982:1 19985:1 19986:2 19990:2 19997:12 20000:5 20011:5 20016:2 20028:2 20032:4 20042:2 20071:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:1 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:2 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:3 20722:2 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:2 21130:6 21135:6 21141:5 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21966:1 21970:20 21975:1 21997:2 22006:1 22026:1 22028:2662 22071:1 22079:1 22082:2 22112:1 22133:1 22147:1 22168:1 22172:2 22200:3 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:1 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22748:1 22767:8 22771:3 22774:1 22789:1 22793:1 22794:1 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23090:1 23106:18 23121:1 23129:2 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:2 23264:1 23275:3 23292:1 23294:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:3 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23813:1 23827:9 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:1 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:10 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:1 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:2 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:5 25849:1 25850:1 25863:1 25880:1 25888:1 25921:6 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26074:1 26077:1 26086:1 26096:1 26144:1 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:3 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:2 26383:1 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26464:1 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:2 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:1 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:11 27250:1 27273:5 27285:1 27293:1 27304:6 27339:3 27379:1 27395:2 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27459:1 27468:1 27484:1 27486:1 27492:1 27493:1 27495:1 27502:2 27525:1 27526:1 27532:1 27544:2 27549:1 27553:6 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:3 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28106:1 28114:2 28168:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:2 28507:1 28530:2 28537:1 28548:1 28559:2 28572:4 28590:1 28592:1 28600:3 28603:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28733:3 28782:1 28795:1 28800:1 28822:1 28865:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:3 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:2 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:2 29527:1 29531:3 29539:1 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:1 29812:1 29830:3 29838:1 29842:1 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:11 29908:1 29948:1 29950:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:7 30169:2 30185:2 30191:2 30195:1 30220:2 30245:5 30275:1 30288:1 30311:1 30314:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30793:1 30795:1 30799:1 30808:2 30824:1 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31296:1 31317:2 31386:1 31395:1 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:6 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31557:1 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:2 31918:1 31925:4 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:4 32180:1 32186:3 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32341:1 32346:1 32365:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:6 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:14 32929:1 32937:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 33003:1 33020:1 33029:2 33031:1 33047:3 33049:9 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:1 33150:3 33155:1 33157:2 33160:3 33181:1 33199:1 33214:1 33216:6 33259:1 33260:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:1 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34270:2 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:1 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:1 209:4 231:2 234:1 235:2 237:1 255:2 298:2 304:1 308:2 321:2 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 536:1 539:1 547:1 565:1 578:1 621:1 639:1 659:1 660:1 679:2 683:1 684:3 687:1 704:1 712:1 714:3 721:1 734:2 748:3 755:1 775:1 788:2 795:6 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:2 1185:1 1223:1 1256:1 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1899:1 1901:1 1933:1 1949:1 1951:2 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2123:1 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:15 2423:1 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:5 2592:1 2593:1 2596:1 2597:4 2598:1 2600:1 2604:1 2605:1 2606:4 2610:2 2616:2 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2687:1 2689:1 2691:3 2693:1 2697:2 2704:20 2716:1 2726:3 2733:1 2742:1 2761:1 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3095:1 3126:2 3131:2 3133:1 3147:1 3153:2 3173:1 3179:1 3182:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:19 3434:1 3435:2 3445:2 3451:1 3460:1 3467:3 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:3 3870:2 3872:1 3898:2 3916:1 3921:1 3931:1 3935:1 3949:1 3995:1 4043:1 4062:4 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:1 4153:1 4161:1 4184:1 4185:1 4199:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:1 4431:1 4433:4 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:3 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:1 4649:1 4672:1 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5030:2 5062:1 5071:1 5082:2 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5202:1 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:1 5331:1 5333:3 5343:2 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:4 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:1 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:2 6228:2 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:7 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6775:1 6777:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7024:1 7032:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:3 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:1 7422:1 7423:1 7426:5 7443:1 7444:1 7482:1 7505:3 7525:3 7526:1 7530:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:7 7767:1 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7897:1 7919:1 7931:1 7949:1 7954:8 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:1 8092:3 8097:1 8132:1 8141:1 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8342:1 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:15 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:22 9181:19 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9321:1 9324:1 9333:1 9341:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9665:1 9669:1 9673:2 9677:1 9697:12 9715:1 9725:2 9755:14 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:2 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9970:1 9972:15 9984:2 10000:1 10014:8 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:2 10107:1 10109:1 10116:1 10117:1 10119:1 10124:2 10160:1 10187:2 10188:6 10201:1 10207:2 10214:1 10231:1 10243:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:2 10389:1 10416:2 10428:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10641:2 10657:1 10681:2 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:2 10922:1 10948:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11136:3 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11306:2 11311:1 11316:1 11319:1 11334:3 11338:1 11345:1 11353:2 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11465:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:1 12117:1 12118:1 12165:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:3 12337:2 12361:1 12376:3 12382:1 12431:1 12433:2 12455:15 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:1 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:8 12737:1 12750:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12982:1 13052:1 13059:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13258:2 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13333:1 13334:1 13341:1 13362:1 13370:1 13393:1 13453:1 13478:1 13506:1 13507:2 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13665:4 13678:2 13690:1 13692:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:3 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:1 14727:2 14731:1 14788:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14941:9 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15152:2 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:10 15287:1 15290:1 15300:6 15326:1 15339:1 15347:1 15425:1 15462:1 15494:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:1 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:2 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:3 15874:1 15889:1 15899:1 15939:1 15977:1 15979:4 15990:1 15995:4 16033:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:3 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16278:1 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:2 16405:1 16426:1 16468:3 16492:3 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:7 16801:1 16860:1 16867:1 16882:1 16884:3 16892:1 16899:1 16905:1 16914:3 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17383:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17438:1 17468:1 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17616:1 17620:2 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17882:1 17883:1 17893:2 17915:1 17926:1 17937:1 17950:1 17969:4 18021:2 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:4 18147:2 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:2 18272:12 18274:1 18286:1 18293:1 18294:1 18305:2 18335:1 18378:5 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18525:1 18527:1 18534:3 18548:1 18551:1 18577:2 18614:1 18641:1 18658:1 18662:3 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18924:1 18939:2 18956:1 18981:6 19001:1 19007:1 19009:3 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19127:1 19129:2 19136:2 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:2 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:2 19656:6 19686:1 19703:1 19711:1 19712:9 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19926:2 19974:1 19975:1 19982:1 19985:2 19986:2 19990:2 19997:12 20000:5 20011:6 20016:2 20028:2 20032:4 20042:2 20071:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:3 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:4 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:3 20722:2 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:2 21130:6 21135:6 21141:5 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21306:1 21321:1 21322:1 21327:1 21333:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21966:1 21970:20 21975:1 21997:2 22006:1 22026:1 22028:2730 22071:1 22079:1 22082:2 22112:1 22133:1 22147:1 22168:1 22172:2 22200:3 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:1 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22748:1 22767:8 22771:3 22774:1 22789:1 22793:1 22794:2 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23090:1 23106:18 23121:1 23129:2 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:2 23230:1 23264:1 23275:3 23292:1 23294:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:4 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:1 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23810:1 23813:1 23827:10 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:2 24173:4 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24432:1 24443:1 24448:1 24463:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:10 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:2 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:5 25849:1 25850:1 25863:1 25880:1 25888:1 25921:7 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26074:1 26077:1 26086:1 26096:1 26144:1 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:3 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:2 26383:1 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26464:1 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:3 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:1 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:12 27250:1 27273:5 27285:1 27293:1 27304:6 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:1 27425:1 27427:1 27459:1 27468:1 27484:1 27486:1 27492:1 27493:1 27495:1 27502:2 27525:1 27526:1 27532:1 27544:2 27549:1 27553:6 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:4 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28106:1 28114:2 28168:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:3 28507:1 28530:2 28537:1 28548:1 28559:2 28572:4 28590:1 28592:1 28600:3 28603:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28733:3 28782:1 28795:1 28800:1 28821:1 28822:1 28865:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:3 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:2 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:2 29527:1 29531:3 29539:1 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:1 29812:1 29830:3 29838:1 29842:2 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:11 29908:1 29911:1 29948:1 29950:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:7 30169:2 30185:2 30191:2 30195:1 30220:2 30245:5 30275:1 30288:1 30311:1 30314:1 30318:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30793:1 30795:1 30799:1 30808:2 30824:1 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31296:1 31317:2 31386:1 31395:1 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:7 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31557:1 31558:2 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:2 31918:1 31925:4 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:1 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:4 32180:1 32186:4 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32341:1 32346:1 32365:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:7 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:14 32929:1 32937:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 32984:1 33003:1 33020:1 33029:2 33031:1 33047:4 33049:9 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:1 33150:3 33155:1 33157:2 33160:4 33181:1 33199:1 33214:1 33216:6 33259:1 33260:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:1 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34270:2 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:1 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 22:1 31:1 52:1 77:1 95:1 102:1 106:1 144:2 209:4 231:2 234:1 235:2 237:1 251:1 255:2 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 510:1 512:3 523:1 532:1 536:1 539:1 547:1 565:1 578:1 621:1 639:1 659:1 660:1 679:2 683:1 684:3 687:1 704:1 712:1 714:3 721:1 734:2 748:3 755:1 775:1 788:2 795:6 805:1 807:1 827:1 844:3 857:1 869:2 871:1 886:1 887:1 898:1 904:1 911:1 943:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1045:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:2 1185:1 1223:1 1256:1 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1899:1 1901:1 1933:1 1949:1 1951:2 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2123:1 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:1 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2546:1 2557:1 2577:3 2580:1 2587:1 2590:5 2592:1 2593:1 2596:1 2597:5 2598:1 2600:1 2601:1 2604:1 2605:1 2606:4 2610:3 2616:2 2618:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2687:1 2689:1 2691:3 2693:1 2697:2 2704:20 2716:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3071:1 3095:1 3126:2 3131:2 3133:1 3147:1 3153:2 3173:1 3179:1 3182:2 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:19 3434:1 3435:2 3437:1 3445:2 3451:2 3460:1 3467:3 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:3 3866:1 3870:2 3872:1 3898:2 3916:1 3921:1 3931:1 3935:1 3949:1 3995:1 4043:1 4062:4 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:2 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:1 4431:1 4433:4 4434:4 4436:1 4453:1 4455:1 4462:2 4465:2 4491:4 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:1 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:1 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5030:2 5062:1 5071:1 5082:3 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:1 5331:1 5333:3 5343:2 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:4 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:1 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:8 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6767:2 6775:1 6777:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7024:1 7032:1 7039:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:3 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:1 7422:1 7423:1 7426:5 7443:1 7444:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:8 7767:1 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7893:1 7897:1 7919:1 7931:1 7949:1 7954:10 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:1 8092:3 8097:1 8132:1 8141:1 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8843:1 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:2 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:22 9160:1 9181:20 9184:1 9189:1 9190:2 9214:1 9229:1 9256:1 9278:2 9291:1 9297:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9656:1 9665:1 9669:1 9673:2 9677:1 9697:13 9715:1 9725:3 9755:15 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:3 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9970:1 9972:16 9984:2 10000:1 10014:8 10017:1 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:2 10107:1 10109:1 10116:1 10117:1 10119:1 10124:2 10160:1 10187:2 10188:6 10201:1 10207:2 10213:1 10214:1 10229:1 10231:1 10243:1 10264:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:2 10389:1 10416:2 10428:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10641:2 10657:1 10667:1 10681:2 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11123:1 11136:3 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11306:2 11311:1 11316:1 11319:1 11334:3 11338:1 11345:1 11353:2 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11465:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12165:1 12167:1 12170:1 12188:1 12192:1 12198:1 12269:1 12275:2 12284:2 12287:1 12292:3 12337:2 12361:1 12376:3 12382:2 12431:1 12433:2 12455:16 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:1 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12735:8 12737:1 12750:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:1 13059:1 13062:1 13083:1 13087:1 13102:4 13106:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13258:2 13267:1 13293:1 13294:2 13298:2 13302:1 13305:1 13316:1 13333:1 13334:1 13341:1 13362:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13506:1 13507:3 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13655:1 13665:4 13678:2 13690:1 13692:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:1 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14111:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:2 14727:2 14731:1 14788:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14902:1 14941:9 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15152:2 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:11 15287:1 15290:1 15300:7 15326:1 15339:1 15347:1 15425:1 15462:1 15494:1 15498:1 15516:2 15521:1 15523:1 15524:1 15546:2 15574:1 15579:4 15592:2 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:4 15874:1 15889:1 15899:1 15939:1 15977:1 15979:4 15990:1 15995:4 16033:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:3 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16278:1 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:2 16405:1 16426:1 16468:3 16492:3 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:8 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:3 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17383:1 17386:1 17394:1 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17438:2 17468:2 17490:1 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17872:1 17882:1 17883:1 17893:3 17915:1 17926:1 17937:1 17950:1 17969:4 18021:2 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:4 18147:2 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:3 18272:12 18274:1 18286:1 18293:1 18294:1 18305:2 18335:1 18378:6 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18525:1 18527:1 18534:3 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18876:2 18891:1 18924:1 18939:2 18956:1 18981:6 19001:1 19007:1 19009:3 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:3 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:2 19656:6 19686:1 19703:1 19711:1 19712:9 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19974:1 19975:1 19982:1 19985:2 19986:2 19990:2 19997:12 20000:6 20011:6 20016:2 20028:2 20032:4 20042:2 20071:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20228:3 20280:1 20293:2 20308:1 20310:3 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20468:1 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:4 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:3 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:2 21033:2 21042:1 21067:4 21071:1 21096:3 21121:1 21130:6 21135:6 21141:5 21147:1 21148:1 21149:2 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21374:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21966:1 21970:20 21975:1 21997:2 22006:1 22026:1 22028:2833 22071:1 22079:1 22082:3 22112:1 22133:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:1 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22748:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:2 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23090:1 23106:18 23121:1 23129:2 23131:1 23144:1 23149:3 23161:2 23169:1 23174:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:4 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23810:1 23813:1 23827:10 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:2 24173:6 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:10 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:1 24771:2 24794:1 24797:2 24798:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25307:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:3 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:6 25849:1 25850:1 25863:1 25880:1 25888:1 25921:8 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:2 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:3 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:2 26383:2 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:2 26453:3 26464:1 26467:1 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:3 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:1 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:13 27250:1 27273:5 27285:1 27293:1 27304:6 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27544:2 27549:1 27553:7 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:4 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27891:1 27902:3 27945:4 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:3 28507:1 28530:2 28537:1 28548:1 28559:2 28572:4 28590:1 28592:1 28600:3 28603:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28708:1 28733:3 28782:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:3 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29166:1 29171:1 29175:1 29185:2 29191:1 29205:7 29226:3 29242:2 29296:1 29331:1 29338:2 29339:1 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29493:1 29517:2 29527:1 29531:3 29539:1 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:1 29812:1 29830:3 29838:1 29842:2 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:11 29908:1 29911:1 29948:1 29950:1 29962:2 29973:1 30042:1 30053:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:7 30169:3 30185:2 30191:2 30195:1 30220:2 30233:1 30245:5 30275:2 30288:1 30311:1 30314:1 30318:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:1 30543:1 30549:1 30570:1 30593:1 30616:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30793:2 30795:1 30799:1 30808:2 30824:1 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31296:1 31297:1 31317:2 31386:1 31395:2 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:8 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:4 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:4 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32341:1 32346:1 32365:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32462:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:8 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:14 32929:1 32937:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 32984:1 33003:1 33020:1 33029:2 33031:1 33047:4 33049:10 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:1 33150:3 33155:1 33157:2 33160:4 33181:1 33199:1 33214:1 33216:6 33259:1 33260:1 33271:1 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:2 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34255:1 34268:1 34270:2 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:1 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 22:1 31:1 52:1 57:1 77:1 95:1 102:1 106:1 111:1 144:2 209:4 231:2 234:1 235:2 237:1 251:1 255:2 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 523:1 531:1 532:1 536:1 539:1 547:1 565:1 578:1 621:1 639:1 659:1 660:1 679:2 683:1 684:3 687:1 704:1 712:1 714:4 721:1 734:2 748:4 755:1 775:1 788:2 795:6 805:1 807:1 827:1 844:3 857:1 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1045:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:4 1185:1 1223:1 1256:1 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:1 1830:1 1843:2 1851:1 1866:4 1870:1 1873:3 1884:2 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2123:1 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:3 2304:1 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:1 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:5 2592:1 2593:1 2596:1 2597:5 2598:1 2600:1 2601:1 2604:1 2605:1 2606:4 2610:4 2616:2 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:2 2673:4 2674:2 2680:2 2684:1 2687:1 2689:1 2691:3 2693:1 2697:2 2704:20 2716:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3071:1 3095:1 3126:2 3131:2 3133:1 3147:1 3153:2 3173:1 3179:1 3182:2 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:20 3434:1 3435:2 3437:1 3445:2 3451:2 3460:1 3467:3 3496:1 3499:1 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3863:3 3866:1 3870:2 3872:1 3898:2 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:2 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:2 4431:1 4433:5 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4491:4 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5062:1 5063:1 5071:1 5082:3 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:2 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:5 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:8 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6767:2 6775:1 6777:1 6797:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:2 7422:1 7423:1 7426:7 7443:1 7444:1 7471:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:1 7735:3 7755:8 7767:1 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7893:1 7897:1 7919:1 7931:1 7949:1 7954:10 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:1 8092:3 8097:1 8132:1 8141:1 8205:1 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:22 9160:1 9181:21 9184:1 9189:1 9190:2 9211:1 9214:1 9229:1 9256:1 9278:2 9291:1 9297:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9656:1 9665:1 9669:1 9673:2 9677:1 9697:13 9715:1 9725:3 9755:15 9760:6 9762:2 9763:1 9764:1 9795:1 9808:1 9809:3 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9970:1 9972:16 9984:2 10000:1 10014:8 10017:1 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:2 10107:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10187:2 10188:6 10201:1 10207:2 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:2 10389:1 10416:2 10428:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10748:2 10757:1 10773:1 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11123:1 11136:3 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11306:2 11311:1 11316:1 11319:1 11334:3 11338:1 11345:1 11353:2 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11442:2 11465:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:2 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12165:1 12167:1 12170:1 12188:1 12192:1 12198:1 12226:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:3 12337:2 12354:1 12361:1 12376:3 12382:2 12431:1 12433:2 12455:16 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:8 12737:1 12750:1 12752:1 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:1 13059:1 13062:1 13083:1 13087:1 13102:4 13106:1 13111:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13226:1 13251:1 13258:2 13267:1 13269:1 13293:1 13294:2 13298:2 13302:1 13305:1 13316:1 13333:1 13334:1 13341:1 13362:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13506:1 13507:3 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13655:1 13665:4 13678:2 13687:1 13690:2 13692:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:2 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14111:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:2 14727:2 14731:1 14788:1 14802:1 14826:1 14828:1 14835:1 14870:2 14893:1 14902:1 14941:10 14962:1 14968:11 15001:1 15007:1 15030:1 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15152:3 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:11 15287:1 15290:1 15300:7 15326:1 15339:1 15347:1 15414:1 15425:1 15462:1 15494:1 15498:1 15516:2 15521:2 15523:1 15524:1 15546:2 15574:1 15579:4 15592:2 15593:1 15594:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:4 15874:1 15889:1 15899:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:3 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16278:1 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:2 16405:1 16426:1 16468:3 16492:3 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:8 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:3 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17426:2 17438:2 17468:2 17490:1 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:1 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17872:1 17882:1 17883:1 17893:3 17915:1 17926:1 17937:1 17950:1 17969:4 18021:2 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:4 18147:2 18152:5 18155:1 18171:2 18182:1 18215:1 18231:1 18242:3 18272:14 18274:1 18286:1 18293:1 18294:1 18305:2 18335:1 18378:6 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:1 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:1 18748:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18876:2 18891:1 18924:1 18939:3 18956:1 18981:7 19001:1 19007:1 19009:3 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:3 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19607:1 19613:1 19640:1 19643:2 19650:2 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19974:1 19975:1 19982:1 19985:2 19986:2 19990:2 19997:14 20000:6 20011:6 20016:2 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:3 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:4 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:4 21071:1 21096:3 21121:1 21130:6 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21374:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21966:1 21970:20 21975:1 21997:2 22006:1 22026:1 22028:2897 22071:1 22079:1 22082:3 22112:1 22133:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:1 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22748:1 22766:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:2 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23090:1 23106:20 23121:1 23129:2 23131:1 23144:1 23149:4 23161:2 23169:1 23174:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23407:1 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23774:1 23787:1 23791:1 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:6 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:11 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:1 24771:2 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25307:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25408:1 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:3 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:6 25849:1 25850:1 25863:1 25880:2 25888:1 25921:8 25952:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:2 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:2 26383:2 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:3 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:13 27250:1 27273:5 27285:1 27293:1 27304:6 27334:1 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27544:2 27549:1 27553:7 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:5 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:1 28471:1 28484:3 28507:1 28530:2 28537:1 28548:1 28559:2 28572:5 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28708:1 28733:3 28782:1 28791:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29166:1 29171:1 29175:1 29178:1 29185:2 29191:1 29205:7 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:1 29517:2 29527:1 29531:3 29539:1 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:1 29812:1 29830:3 29838:1 29842:2 29858:1 29871:1 29877:1 29878:1 29896:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29962:2 29973:1 30042:1 30053:1 30065:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:8 30169:3 30185:2 30191:2 30195:1 30220:2 30233:1 30245:5 30275:2 30288:1 30311:1 30314:1 30318:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:2 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30793:2 30795:1 30799:1 30808:2 30824:1 30860:1 30864:2 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31395:2 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:8 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:5 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32341:1 32346:1 32365:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:2 32540:1 32556:8 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:14 32929:1 32937:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 32984:1 33003:1 33020:1 33029:2 33031:1 33047:5 33049:10 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33150:3 33155:1 33157:2 33160:5 33181:1 33199:1 33206:1 33214:1 33216:6 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:2 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34191:1 34255:1 34268:1 34270:2 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:1 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 209:4 231:2 234:1 235:2 237:1 251:1 255:2 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 659:1 660:1 679:3 683:1 684:4 687:1 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:6 805:1 807:1 827:1 844:3 857:1 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1045:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:4 1185:1 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:1 1830:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:2 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2037:1 2041:3 2075:1 2098:4 2123:1 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:3 2304:2 2333:2 2337:1 2338:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:1 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:1 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:5 2592:1 2593:1 2596:1 2597:6 2598:1 2600:1 2601:1 2604:1 2605:1 2606:4 2610:4 2616:3 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:20 2716:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3071:1 3095:2 3126:2 3131:2 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3359:2 3374:11 3377:3 3379:1 3419:1 3425:1 3428:20 3434:1 3435:2 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:2 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3860:1 3863:3 3866:1 3870:2 3872:1 3898:2 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:1 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:2 4429:1 4431:1 4433:6 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4491:4 4500:1 4503:1 4506:2 4513:3 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4797:1 4806:2 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5062:1 5063:1 5071:1 5082:4 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:2 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:6 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:14 5748:2 5749:1 5760:1 5761:3 5774:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:2 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:8 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:1 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6767:2 6775:1 6777:1 6797:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:2 7422:1 7423:1 7426:7 7432:1 7443:1 7444:1 7471:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:2 7735:3 7755:8 7767:1 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:8 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:10 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:1 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:1 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:3 9122:2 9129:6 9132:2 9136:1 9144:1 9148:1 9149:1 9156:24 9160:1 9181:21 9184:1 9189:1 9190:2 9211:1 9214:1 9229:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9656:1 9665:1 9669:1 9673:2 9677:1 9697:13 9715:1 9725:3 9745:1 9755:16 9760:7 9761:1 9762:2 9763:1 9764:1 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9964:1 9970:1 9972:16 9984:2 10000:1 10014:8 10017:1 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10104:1 10105:1 10106:2 10107:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10187:2 10188:6 10201:1 10207:2 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:3 10389:1 10416:2 10428:1 10467:1 10469:2 10478:2 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:1 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11306:2 11311:2 11316:1 11319:1 11334:3 11338:1 11345:1 11353:2 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:2 11814:20 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12165:1 12167:1 12170:1 12188:1 12192:1 12198:1 12226:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:3 12337:2 12354:1 12361:1 12376:3 12382:2 12431:1 12433:2 12455:16 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:8 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:2 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:1 13059:1 13062:1 13083:1 13087:1 13102:4 13106:1 13111:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13293:1 13294:2 13298:2 13302:1 13305:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13506:1 13507:3 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13645:3 13655:1 13665:4 13678:2 13687:1 13690:2 13692:1 13699:1 13715:2 13742:2 13757:3 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13881:2 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14057:1 14059:1 14111:1 14119:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:2 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:1 14802:1 14826:1 14828:2 14835:1 14870:2 14893:1 14902:1 14941:10 14962:1 14968:11 15001:1 15007:1 15030:2 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15152:4 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:12 15287:1 15290:1 15300:8 15326:1 15339:1 15347:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:2 15523:1 15524:1 15546:2 15574:1 15579:4 15592:2 15593:1 15594:1 15604:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16278:1 16313:1 16315:2 16326:1 16328:1 16331:1 16372:1 16373:1 16381:2 16405:1 16426:1 16468:4 16492:3 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:8 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:3 16916:1 16920:1 16952:1 16971:20 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:1 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 18021:3 18025:2 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:4 18147:2 18152:5 18155:1 18171:2 18182:1 18200:1 18215:1 18231:1 18242:3 18272:15 18274:2 18286:1 18293:1 18294:1 18305:2 18335:1 18378:6 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18444:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:2 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18876:2 18891:1 18924:1 18939:3 18955:1 18956:1 18981:7 19001:1 19007:1 19009:3 19012:1 19027:1 19031:2 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:3 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:2 19650:2 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:2 19997:15 20000:6 20011:6 20016:2 20021:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:3 20315:2 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:4 20581:2 20587:3 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:4 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21361:1 21374:1 21404:1 21412:2 21439:1 21461:6 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:20 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21966:1 21970:20 21975:1 21997:2 22006:1 22026:1 22028:2981 22071:1 22079:1 22082:3 22112:1 22133:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:3 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23090:1 23106:21 23121:1 23129:2 23131:1 23144:1 23149:4 23161:2 23169:1 23174:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23407:2 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23770:1 23774:1 23787:1 23791:1 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:6 24196:1 24204:2 24214:1 24243:1 24282:1 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:11 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:1 24770:1 24771:2 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:1 25297:1 25307:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25408:1 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25849:1 25850:1 25863:1 25880:2 25888:1 25921:8 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:2 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:1 26204:1 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26348:1 26354:2 26360:1 26369:1 26375:1 26380:2 26383:2 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:3 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:13 27250:1 27273:5 27285:1 27293:1 27304:6 27314:1 27334:1 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27544:2 27549:1 27553:8 27561:1 27573:1 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:6 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:1 28548:1 28559:2 28572:5 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28708:1 28729:1 28733:3 28754:1 28782:1 28791:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29165:1 29166:1 29171:1 29175:1 29178:1 29185:2 29191:1 29205:7 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:1 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:1 29812:1 29830:3 29838:1 29842:2 29858:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29962:2 29973:1 30042:1 30053:1 30065:1 30067:1 30072:2 30073:1 30079:2 30091:3 30096:2 30097:1 30111:2 30133:1 30166:9 30169:3 30185:2 30191:2 30195:1 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:5 30358:1 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:2 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:1 30863:2 30864:2 30866:1 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:8 31204:1 31211:2 31230:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:1 31415:1 31423:2 31425:7 31436:1 31437:1 31454:8 31460:2 31462:2 31477:1 31488:1 31500:1 31536:8 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:20 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:6 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32341:1 32346:1 32365:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:3 32540:1 32556:8 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:14 32929:1 32937:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:2 33031:1 33047:6 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33150:3 33155:1 33157:2 33160:6 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34191:1 34226:1 34255:1 34268:1 34270:2 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:1 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 17:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 209:4 231:2 234:1 235:2 237:1 251:1 255:2 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 659:1 660:1 679:3 683:1 684:4 687:2 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:6 805:1 807:1 827:1 844:3 857:1 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1021:1 1033:1 1045:1 1048:1 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:4 1185:1 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:1 1830:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:3 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2004:1 2037:1 2041:3 2075:1 2083:1 2098:4 2123:2 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:4 2304:2 2333:2 2337:1 2338:1 2352:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:1 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:1 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:6 2592:1 2593:1 2596:1 2597:6 2598:1 2600:1 2601:1 2604:2 2605:1 2606:4 2610:4 2616:3 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:22 2716:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3071:1 3095:2 3126:2 3131:2 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3295:1 3359:2 3374:11 3377:3 3379:1 3419:2 3425:1 3428:20 3434:1 3435:2 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:2 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3664:1 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3860:1 3863:3 3866:1 3870:2 3872:1 3880:1 3898:2 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:1 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:2 4429:1 4431:1 4433:7 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4473:1 4491:4 4492:1 4500:1 4503:1 4506:2 4513:4 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4611:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4785:1 4797:1 4806:2 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5062:1 5063:1 5071:1 5082:4 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:2 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:7 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5681:1 5698:3 5704:1 5716:1 5744:15 5748:2 5749:1 5760:1 5761:3 5774:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:3 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6343:8 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:2 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6763:1 6767:2 6775:1 6777:1 6797:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6982:2 6987:1 6990:2 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:6 7353:1 7408:6 7420:2 7421:2 7422:1 7423:1 7426:7 7432:1 7443:1 7444:1 7471:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:2 7731:2 7735:3 7755:8 7760:1 7767:1 7768:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:9 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:11 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:2 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:4 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8842:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:2 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:4 9122:2 9129:6 9132:2 9136:1 9138:1 9144:1 9148:1 9149:1 9156:24 9160:1 9181:21 9184:1 9189:1 9190:3 9211:1 9214:1 9229:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9613:1 9630:1 9631:1 9656:1 9665:1 9669:1 9673:2 9677:1 9697:13 9715:1 9725:3 9745:1 9755:16 9760:7 9761:1 9762:2 9763:1 9764:1 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9964:1 9970:1 9972:16 9984:2 10000:1 10014:9 10017:1 10020:1 10026:1 10043:1 10091:1 10093:1 10094:1 10097:2 10102:1 10104:1 10105:1 10106:2 10107:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10187:2 10188:6 10201:1 10207:2 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:3 10389:1 10416:2 10428:1 10467:1 10469:2 10478:3 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:2 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:1 10981:3 11003:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11212:1 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:3 11302:1 11305:1 11306:2 11311:2 11316:1 11319:1 11334:4 11338:1 11345:1 11353:3 11357:2 11364:4 11401:1 11416:2 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:3 11814:22 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12165:2 12167:1 12170:1 12188:1 12192:1 12198:1 12226:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:4 12337:2 12354:1 12361:1 12376:3 12382:2 12431:1 12433:2 12455:16 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:9 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12842:1 12862:1 12884:3 12900:4 12903:3 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:2 13059:1 13062:1 13069:1 13083:1 13087:1 13102:4 13106:1 13111:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13293:1 13294:2 13298:2 13302:1 13305:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13506:1 13507:3 13515:1 13516:1 13519:1 13563:1 13574:1 13575:1 13590:1 13601:1 13609:1 13616:1 13645:3 13655:1 13665:4 13678:2 13687:1 13690:2 13692:1 13699:1 13715:2 13742:2 13757:4 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13862:1 13881:2 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14057:1 14059:1 14111:1 14119:2 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14229:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:3 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:1 14802:1 14826:1 14828:2 14835:1 14870:2 14893:1 14902:1 14941:10 14962:1 14968:11 14995:1 15001:1 15007:1 15030:2 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15152:4 15153:1 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:12 15287:1 15290:1 15300:8 15326:1 15339:1 15347:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:2 15523:1 15524:1 15546:2 15574:1 15579:4 15592:2 15593:1 15594:1 15604:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16139:1 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:6 16265:2 16278:1 16313:1 16315:2 16326:1 16328:1 16331:1 16372:2 16373:1 16381:2 16405:1 16426:1 16468:4 16492:3 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:8 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:4 16916:1 16920:1 16952:2 16971:22 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:1 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:1 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 18021:3 18025:3 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:4 18147:2 18152:6 18155:1 18171:2 18182:1 18200:1 18215:1 18231:1 18242:3 18272:15 18274:2 18286:1 18293:1 18294:1 18305:2 18335:1 18378:7 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18442:1 18444:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:2 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18876:2 18891:1 18924:1 18939:3 18955:1 18956:1 18981:7 19001:1 19007:1 19009:3 19012:1 19027:1 19031:3 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19109:1 19112:1 19114:1 19115:1 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19306:1 19328:4 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19561:1 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:2 19650:2 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:2 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:2 19997:15 20000:6 20011:6 20016:2 20021:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:3 20315:3 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:4 20581:2 20587:3 20603:1 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:1 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20974:1 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:5 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21361:1 21374:1 21404:1 21412:2 21439:1 21461:7 21469:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:22 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:4 21812:1 21856:2 21865:1 21966:1 21970:22 21975:1 21997:2 22006:1 22026:1 22028:3014 22071:1 22079:1 22082:3 22112:1 22133:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22629:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:3 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:2 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23051:2 23077:1 23088:1 23090:1 23106:21 23121:1 23129:3 23131:1 23144:1 23149:4 23161:2 23169:2 23174:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23407:2 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:1 23745:2 23746:1 23751:1 23770:1 23774:1 23787:1 23791:2 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:7 24196:1 24204:2 24214:1 24243:1 24282:2 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:11 24558:1 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:2 24770:1 24771:2 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:1 25258:1 25282:2 25284:1 25292:2 25297:1 25307:1 25314:1 25328:1 25333:1 25351:1 25388:2 25393:3 25406:2 25408:1 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25496:1 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25541:1 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25849:1 25850:1 25863:1 25880:2 25888:1 25921:8 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:2 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:2 26204:1 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:2 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26342:1 26348:1 26354:2 26360:1 26369:1 26375:1 26380:2 26383:2 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26609:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:4 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:13 27250:1 27273:6 27285:1 27293:1 27304:6 27314:1 27334:1 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27544:2 27549:1 27553:8 27561:1 27573:2 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27767:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:7 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28069:1 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28327:1 28350:1 28357:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:1 28548:1 28559:2 28572:5 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28708:1 28729:1 28733:3 28754:1 28782:1 28791:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29165:1 29166:1 29171:1 29175:1 29178:1 29185:2 29191:1 29205:7 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:1 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:1 29812:1 29830:3 29838:1 29842:2 29858:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29962:2 29973:1 30042:1 30053:1 30065:1 30067:1 30072:2 30073:1 30079:2 30091:4 30096:2 30097:1 30111:2 30133:1 30166:9 30169:3 30185:2 30191:2 30195:1 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:5 30358:2 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:2 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:1 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30785:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:1 30863:2 30864:2 30866:1 30874:1 30898:1 30904:1 30999:1 31005:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:9 31204:1 31211:2 31230:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:2 31415:1 31423:2 31425:7 31436:1 31437:1 31454:8 31460:2 31462:2 31477:1 31488:1 31500:1 31536:9 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:22 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31753:1 31757:1 31769:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32036:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:7 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32322:1 32341:1 32346:1 32365:1 32385:1 32387:2 32398:1 32419:1 32424:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:1 32502:1 32503:1 32504:1 32513:1 32537:3 32540:1 32556:8 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:2 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:15 32929:1 32937:1 32938:1 32952:1 32955:3 32962:2 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:2 33031:1 33047:7 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33150:3 33155:1 33157:2 33160:7 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34191:1 34226:1 34255:1 34268:1 34270:3 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:2 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 17:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 166:1 209:4 231:2 234:1 235:2 237:1 251:1 255:2 294:1 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 659:1 660:1 679:3 683:1 684:4 687:3 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:7 805:1 807:1 827:1 844:3 857:1 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1020:1 1021:2 1033:1 1045:1 1048:2 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:1 1123:1 1141:1 1145:4 1185:2 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:2 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:2 1830:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:3 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2004:1 2037:1 2041:3 2075:1 2083:1 2098:4 2123:2 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:4 2304:2 2333:2 2337:1 2338:1 2352:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:1 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:1 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:6 2592:1 2593:1 2596:1 2597:6 2598:1 2600:1 2601:1 2604:2 2605:1 2606:4 2610:4 2616:4 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:23 2716:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3058:1 3060:1 3071:1 3095:2 3126:2 3131:3 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3295:1 3359:2 3374:11 3377:3 3379:1 3419:2 3425:1 3428:20 3434:1 3435:2 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:2 3549:1 3553:1 3556:1 3559:1 3563:1 3647:2 3664:1 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3860:1 3863:3 3866:1 3870:2 3872:1 3880:1 3898:3 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:1 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4290:1 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:2 4429:1 4431:1 4433:7 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4473:1 4491:4 4492:1 4500:1 4503:1 4506:2 4513:4 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4611:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4785:1 4797:1 4806:3 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5062:1 5063:1 5071:1 5082:4 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:2 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:7 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5662:1 5681:1 5698:3 5704:1 5716:1 5744:16 5748:2 5749:1 5760:1 5761:3 5774:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:3 6110:1 6142:1 6151:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6338:1 6343:9 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:2 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6763:1 6767:3 6775:1 6777:1 6797:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6966:1 6982:2 6987:2 6990:2 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:7 7353:1 7408:7 7420:2 7421:2 7422:1 7423:1 7426:7 7428:1 7432:1 7443:1 7444:1 7471:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:3 7731:2 7735:3 7755:9 7760:1 7767:1 7768:1 7770:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:9 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:11 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:2 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8278:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:1 8646:3 8678:1 8686:1 8688:5 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8842:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:2 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:4 9122:2 9129:6 9132:2 9136:1 9138:1 9144:1 9148:1 9149:1 9156:24 9160:1 9181:21 9184:1 9189:1 9190:3 9211:1 9214:1 9229:1 9236:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9406:1 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9605:1 9613:1 9630:1 9631:1 9656:1 9664:1 9665:1 9669:1 9673:2 9677:1 9697:14 9715:1 9725:3 9745:1 9755:16 9760:7 9761:1 9762:2 9763:1 9764:2 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9964:1 9970:1 9972:16 9984:2 10000:1 10014:9 10017:1 10020:2 10026:1 10043:1 10091:2 10093:1 10094:1 10097:2 10102:1 10104:1 10105:1 10106:2 10107:1 10108:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10163:1 10187:2 10188:6 10201:1 10207:3 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:3 10389:1 10416:2 10428:1 10467:1 10469:2 10478:3 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:2 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:1 10981:3 11003:1 11039:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11212:1 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:4 11302:1 11305:1 11306:2 11311:2 11316:1 11319:1 11334:5 11338:1 11345:1 11353:4 11357:2 11364:4 11401:1 11416:3 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11469:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:3 11814:23 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12035:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12165:3 12167:1 12170:1 12188:1 12192:1 12198:1 12226:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:5 12299:1 12337:2 12354:1 12361:1 12376:3 12382:2 12431:1 12433:2 12455:16 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:9 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12829:1 12842:1 12862:1 12884:3 12900:4 12903:3 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:3 13059:1 13062:1 13069:1 13083:1 13085:1 13087:1 13102:4 13106:1 13111:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13281:1 13293:1 13294:2 13298:2 13302:1 13305:1 13312:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13506:1 13507:3 13515:1 13516:1 13519:1 13552:1 13563:1 13571:1 13574:1 13575:1 13590:1 13601:1 13609:1 13616:1 13645:3 13655:1 13665:4 13678:2 13682:1 13687:1 13690:2 13692:1 13699:1 13715:2 13742:2 13757:4 13759:1 13764:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13862:1 13881:2 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14057:1 14059:1 14107:1 14111:1 14119:2 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14229:1 14232:1 14239:2 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:3 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:1 14802:1 14826:1 14828:2 14835:1 14870:2 14893:1 14902:1 14941:10 14958:1 14962:1 14968:11 14995:1 15001:1 15007:1 15030:3 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15138:1 15152:4 15153:1 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:12 15263:1 15287:1 15290:1 15300:8 15326:1 15333:1 15339:1 15347:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:3 15523:1 15524:1 15546:2 15571:1 15574:1 15579:4 15592:2 15593:1 15594:1 15604:1 15605:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16139:1 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:7 16253:1 16265:2 16278:1 16313:2 16315:2 16326:1 16328:1 16331:1 16372:3 16373:1 16381:2 16405:1 16426:1 16468:4 16492:4 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16788:1 16793:9 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:5 16916:1 16920:1 16952:2 16971:23 16974:2 16978:1 17024:3 17026:1 17029:1 17078:5 17082:1 17106:2 17113:1 17117:1 17121:1 17139:1 17140:1 17207:1 17216:1 17258:1 17267:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17554:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:1 17613:1 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 17988:1 18021:3 18025:3 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:5 18147:2 18152:6 18155:1 18171:2 18179:1 18182:1 18200:1 18215:1 18231:1 18242:3 18272:15 18274:2 18286:1 18293:1 18294:1 18305:2 18335:1 18378:7 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18437:1 18442:1 18444:1 18453:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:2 18517:1 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18876:2 18891:1 18924:1 18939:3 18955:1 18956:1 18981:7 19001:1 19007:1 19009:3 19012:1 19027:1 19031:3 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19096:1 19109:1 19112:1 19114:1 19115:1 19118:1 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19257:1 19306:1 19328:5 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19561:1 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:2 19650:2 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:3 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:3 19997:15 20000:6 20011:6 20016:2 20021:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:4 20315:3 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20397:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:5 20581:2 20587:3 20603:1 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:2 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20974:1 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:5 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21361:1 21374:1 21404:1 21412:2 21439:1 21461:7 21469:1 21482:1 21483:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:23 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:5 21812:1 21856:2 21865:1 21966:1 21970:23 21975:1 21997:2 22006:1 22009:1 22026:1 22028:3158 22071:1 22079:1 22082:3 22112:1 22133:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22522:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22629:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:3 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:2 22894:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23047:1 23051:2 23077:1 23088:1 23090:1 23106:21 23121:1 23129:4 23131:1 23144:1 23149:4 23161:2 23169:2 23174:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23319:1 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23401:1 23407:2 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:2 23745:2 23746:1 23751:1 23765:1 23770:1 23774:1 23787:1 23791:2 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:7 24196:1 24204:2 24214:1 24243:1 24282:2 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:11 24558:1 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:4 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:2 24770:1 24771:2 24776:1 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25029:1 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:2 25258:1 25282:2 25284:1 25289:1 25292:2 25297:1 25307:1 25314:1 25328:1 25333:1 25337:1 25351:1 25386:1 25388:2 25393:3 25406:2 25408:1 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25496:2 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25541:1 25560:1 25561:1 25572:1 25608:1 25610:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25849:1 25850:1 25853:1 25863:1 25880:2 25888:1 25921:9 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:3 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:2 26204:1 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:3 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26342:1 26348:1 26354:2 26360:1 26369:1 26375:1 26380:3 26383:2 26387:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26609:1 26630:1 26645:1 26650:1 26651:1 26667:1 26668:4 26671:5 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26901:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:13 27250:1 27273:6 27285:1 27293:1 27304:6 27314:1 27334:1 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27535:1 27544:2 27549:1 27553:8 27561:1 27573:3 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27767:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:7 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28069:1 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28238:1 28248:1 28280:1 28283:1 28298:1 28301:1 28303:1 28305:1 28327:1 28350:1 28357:1 28358:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:2 28548:1 28559:2 28572:5 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28708:1 28729:1 28733:3 28754:1 28774:1 28776:1 28782:1 28791:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29165:1 29166:1 29171:1 29175:1 29178:1 29185:2 29191:1 29205:8 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:2 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29681:1 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:1 29792:1 29798:2 29812:1 29830:3 29838:1 29842:2 29858:1 29863:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29958:1 29962:2 29973:1 30042:1 30053:1 30065:1 30067:2 30072:2 30073:1 30079:2 30091:4 30096:2 30097:1 30111:2 30133:1 30166:9 30169:3 30185:2 30191:2 30195:2 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:5 30358:2 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:2 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:2 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30785:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:1 30863:2 30864:2 30866:1 30874:2 30898:1 30904:1 30999:1 31005:1 31006:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:9 31204:1 31211:2 31230:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:2 31415:1 31423:2 31425:7 31436:1 31437:1 31454:9 31460:2 31462:2 31477:1 31488:1 31500:1 31536:9 31550:1 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:23 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31753:1 31757:1 31769:1 31787:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32036:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:7 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32322:1 32341:1 32346:1 32365:1 32385:1 32387:2 32390:1 32398:1 32419:1 32424:1 32442:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:2 32502:1 32503:1 32504:1 32513:1 32537:3 32540:1 32556:9 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:3 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:16 32929:1 32937:1 32938:1 32952:1 32955:3 32962:3 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:3 33031:1 33047:7 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33150:3 33155:1 33157:2 33160:7 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:2 33730:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33795:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34191:1 34226:1 34231:1 34255:1 34268:1 34270:3 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:6 34463:1 34464:1 34467:1 34475:1 34485:2 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 17:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 166:1 209:4 231:2 234:1 235:2 237:1 251:1 255:2 294:1 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 649:1 659:1 660:1 679:3 683:1 684:4 687:3 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:7 805:1 807:1 827:1 844:3 857:2 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1020:1 1021:2 1033:1 1045:1 1048:2 1049:3 1051:1 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:2 1123:1 1141:1 1145:4 1185:2 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1395:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:2 1625:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1781:1 1802:1 1822:3 1830:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:4 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2004:1 2037:1 2041:3 2075:1 2083:1 2098:4 2123:2 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2280:1 2284:4 2304:2 2333:2 2337:1 2338:1 2352:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:2 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:1 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:6 2592:1 2593:1 2596:1 2597:7 2598:1 2600:1 2601:1 2604:2 2605:1 2606:4 2610:4 2616:4 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:23 2716:1 2720:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2888:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:5 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3058:1 3060:1 3071:1 3073:1 3095:2 3126:2 3131:3 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3295:1 3359:2 3374:11 3377:3 3379:1 3419:3 3425:1 3428:20 3434:1 3435:2 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:2 3549:1 3553:1 3556:1 3559:2 3563:1 3647:2 3664:1 3665:6 3735:4 3745:1 3778:1 3781:1 3785:1 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:1 3860:1 3863:3 3866:1 3870:2 3872:1 3880:1 3898:4 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:1 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4290:1 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:2 4418:1 4421:2 4429:1 4431:1 4433:7 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4473:1 4491:4 4492:1 4500:1 4503:1 4506:2 4513:5 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4611:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4785:1 4797:1 4806:3 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5062:1 5063:1 5071:1 5082:4 5102:1 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:3 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:7 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5662:1 5665:1 5681:1 5698:3 5704:1 5716:1 5744:17 5748:2 5749:1 5760:1 5761:3 5774:1 5776:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5913:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6002:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:4 6110:1 6142:1 6151:1 6154:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6338:1 6343:9 6367:1 6371:1 6376:1 6388:1 6407:1 6412:1 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:2 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6763:1 6767:4 6775:1 6777:1 6797:1 6804:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6949:1 6955:1 6966:1 6982:2 6987:3 6990:2 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7217:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:7 7353:1 7408:7 7420:2 7421:2 7422:1 7423:1 7426:7 7428:1 7432:1 7443:1 7444:1 7471:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:3 7731:2 7735:3 7755:9 7760:1 7767:1 7768:1 7770:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:9 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:12 7955:1 7972:2 7985:1 7995:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:2 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8278:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8637:2 8646:3 8678:1 8686:1 8688:5 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8842:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:2 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9063:1 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:4 9122:2 9129:6 9132:2 9134:1 9136:1 9138:1 9144:1 9148:1 9149:1 9156:24 9160:1 9181:21 9184:1 9189:1 9190:4 9191:1 9211:1 9214:1 9229:1 9236:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9406:1 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9605:1 9613:1 9630:1 9631:1 9656:1 9664:1 9665:1 9669:1 9673:2 9677:1 9697:16 9715:1 9725:3 9745:1 9755:16 9760:7 9761:1 9762:2 9763:1 9764:2 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9964:1 9970:1 9972:16 9984:2 10000:1 10014:9 10017:1 10020:3 10026:1 10043:1 10091:2 10093:2 10094:1 10097:2 10102:1 10104:1 10105:1 10106:2 10107:1 10108:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10163:1 10187:2 10188:6 10201:1 10207:3 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:3 10389:1 10410:1 10416:2 10428:1 10467:1 10469:2 10478:3 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:2 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:1 10981:3 11003:1 11039:1 11056:1 11066:1 11067:1 11099:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11212:1 11220:1 11261:1 11283:3 11285:1 11287:6 11291:32 11293:1 11299:4 11302:1 11305:1 11306:2 11311:2 11316:1 11319:1 11334:5 11338:1 11345:1 11353:4 11357:2 11364:4 11401:1 11416:3 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11469:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:2 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11780:3 11782:1 11789:1 11810:3 11814:23 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12035:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12124:1 12165:3 12167:1 12170:1 12188:1 12192:1 12198:1 12226:1 12255:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:5 12299:1 12337:2 12354:1 12361:1 12376:3 12382:3 12431:1 12433:2 12455:16 12462:1 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:5 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:9 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12829:1 12842:1 12862:1 12884:3 12900:4 12903:3 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:3 13059:1 13062:1 13069:1 13083:1 13085:1 13087:1 13102:4 13106:1 13111:1 13113:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13281:1 13293:1 13294:2 13298:2 13302:1 13305:1 13312:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13506:1 13507:3 13515:1 13516:1 13519:1 13552:1 13563:1 13571:1 13574:1 13575:1 13590:1 13601:1 13609:1 13616:1 13641:1 13645:3 13655:1 13665:4 13678:2 13682:1 13687:1 13690:2 13692:1 13699:1 13715:2 13742:2 13757:4 13759:1 13764:1 13770:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13862:1 13881:2 13885:1 13896:1 13923:3 13964:1 14011:1 14018:1 14025:1 14057:1 14059:1 14107:1 14111:1 14119:2 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14229:1 14232:1 14239:2 14283:1 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:1 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:4 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:2 14802:1 14826:1 14828:2 14835:1 14870:2 14893:1 14902:1 14941:11 14958:1 14962:1 14968:11 14995:1 15001:1 15007:1 15030:3 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15138:1 15152:4 15153:1 15156:1 15158:2 15209:1 15213:1 15214:2 15219:1 15234:12 15263:1 15287:1 15290:1 15300:8 15326:1 15333:1 15339:1 15347:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:3 15523:1 15524:1 15546:2 15571:1 15574:1 15579:4 15592:2 15593:1 15594:1 15604:1 15605:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16139:1 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:1 16229:1 16246:7 16253:1 16265:2 16278:1 16313:2 16315:2 16326:1 16328:1 16331:1 16372:3 16373:1 16381:2 16405:1 16426:1 16468:4 16492:4 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16769:1 16788:1 16793:9 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:5 16916:1 16920:1 16952:2 16971:23 16974:2 16978:1 17024:4 17026:1 17029:1 17078:5 17082:1 17106:2 17113:1 17117:1 17121:1 17139:1 17140:1 17201:1 17207:1 17216:1 17258:1 17267:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17554:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:2 17613:1 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17864:1 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 17988:1 18021:3 18025:3 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18143:5 18147:2 18152:6 18155:1 18171:2 18179:1 18182:1 18200:1 18215:1 18231:1 18242:3 18272:16 18274:2 18286:1 18293:1 18294:1 18305:2 18335:1 18378:7 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18437:1 18442:1 18444:1 18453:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:2 18517:1 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18842:1 18876:2 18891:1 18924:1 18939:3 18955:1 18956:1 18981:7 19001:1 19007:1 19009:3 19012:1 19027:1 19031:4 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19096:2 19109:1 19112:1 19114:2 19115:1 19118:2 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19257:1 19306:1 19328:5 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19561:1 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:2 19650:2 19655:1 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:3 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19950:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:3 19997:16 20000:6 20011:6 20016:2 20021:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:1 20193:2 20199:1 20204:2 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:4 20315:3 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20397:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:2 20550:2 20565:5 20581:2 20587:3 20603:1 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:2 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20974:1 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:5 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21336:1 21361:1 21374:1 21404:1 21412:2 21439:1 21461:7 21469:1 21482:1 21483:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:1 21558:6 21570:1 21580:1 21618:4 21640:23 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:5 21812:1 21856:2 21865:1 21961:1 21966:1 21970:23 21975:1 21997:2 22006:1 22009:1 22026:1 22028:3209 22071:1 22079:1 22082:3 22112:1 22133:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22522:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22629:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:3 22813:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:3 22894:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23047:1 23051:2 23077:1 23088:1 23090:1 23106:22 23121:1 23129:4 23131:1 23144:1 23149:4 23161:2 23169:2 23174:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23319:1 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23363:1 23401:1 23407:2 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:2 23745:2 23746:1 23751:1 23765:1 23770:1 23774:1 23787:1 23791:3 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:2 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:7 24196:1 24204:2 24214:1 24234:1 24243:1 24282:2 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:11 24558:1 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:5 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:2 24770:1 24771:2 24776:1 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24967:1 24992:1 25001:4 25029:1 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:2 25258:1 25282:2 25284:1 25289:1 25292:3 25297:1 25307:1 25314:1 25328:1 25333:1 25337:1 25351:1 25386:1 25388:2 25393:3 25406:2 25408:1 25428:1 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25496:2 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25541:1 25560:1 25561:1 25572:1 25608:1 25610:1 25665:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25849:1 25850:1 25853:1 25863:1 25880:2 25888:1 25921:9 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:4 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:2 26204:2 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:3 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26342:1 26348:1 26354:2 26360:1 26369:1 26375:1 26380:3 26383:2 26387:1 26390:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26609:1 26630:1 26645:2 26650:1 26651:1 26667:1 26668:4 26671:5 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26901:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:13 27241:1 27250:1 27273:6 27285:1 27293:1 27304:6 27314:1 27334:1 27339:3 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27535:1 27544:2 27549:1 27553:8 27561:1 27573:4 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27767:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:7 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28069:1 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28236:1 28238:1 28248:1 28280:1 28283:1 28292:1 28298:1 28301:1 28303:1 28305:1 28327:1 28350:1 28357:1 28358:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:2 28548:1 28559:2 28572:5 28587:1 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28708:1 28729:1 28732:1 28733:3 28754:1 28774:1 28776:1 28782:1 28791:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29165:1 29166:1 29171:1 29175:1 29178:1 29185:2 29191:1 29205:8 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:2 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:2 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29681:1 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:2 29792:1 29798:2 29812:1 29830:3 29838:1 29842:2 29858:1 29863:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29958:1 29962:2 29973:1 30042:1 30053:1 30065:1 30067:2 30072:2 30073:1 30079:2 30091:5 30096:2 30097:1 30111:2 30133:1 30166:10 30169:3 30185:2 30191:2 30195:2 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:5 30358:2 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:2 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:2 30640:1 30657:2 30671:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30785:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:1 30863:2 30864:2 30866:1 30874:2 30898:1 30904:1 30999:1 31005:1 31006:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:9 31204:1 31211:2 31230:1 31277:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:3 31415:1 31423:2 31425:7 31436:1 31437:1 31454:9 31460:2 31462:2 31477:1 31488:1 31500:1 31536:9 31550:1 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:23 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31753:1 31757:1 31769:1 31787:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32036:1 32051:2 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:7 32211:1 32217:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32322:1 32341:1 32346:1 32365:1 32385:1 32387:2 32390:1 32398:1 32419:1 32424:1 32442:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:2 32502:1 32503:1 32504:1 32513:1 32537:3 32540:1 32556:9 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:3 32734:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:16 32929:1 32937:1 32938:1 32952:1 32955:3 32962:3 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:3 33031:1 33047:7 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33150:3 33155:1 33157:2 33160:7 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33249:1 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33360:1 33363:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33557:2 33561:2 33570:2 33607:1 33618:3 33625:1 33654:1 33661:2 33690:4 33700:2 33702:2 33704:1 33730:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33795:1 33812:1 33838:2 33839:1 33852:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34191:1 34226:1 34231:1 34255:1 34268:1 34270:3 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:7 34463:1 34464:1 34467:1 34475:1 34485:2 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 17:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 166:1 209:4 231:2 234:1 235:2 237:1 251:1 255:2 294:1 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 649:1 659:1 660:1 679:3 683:1 684:4 687:3 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:7 805:1 807:1 827:1 844:3 857:2 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1020:1 1021:2 1033:1 1045:1 1048:2 1049:3 1051:2 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:2 1123:1 1141:1 1145:4 1185:2 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1395:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:2 1625:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1679:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1780:1 1781:1 1802:1 1822:3 1830:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:4 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2004:2 2037:1 2041:3 2075:1 2083:1 2098:4 2103:1 2123:2 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2279:1 2280:1 2284:4 2304:2 2333:2 2337:1 2338:1 2352:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:16 2423:2 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:2 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:6 2592:1 2593:1 2596:1 2597:7 2598:1 2600:1 2601:1 2604:2 2605:1 2606:5 2610:4 2616:4 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:24 2716:1 2720:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2888:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:6 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3058:1 3060:1 3071:1 3073:1 3095:3 3126:2 3131:3 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3212:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3295:2 3327:1 3359:2 3374:11 3377:3 3379:1 3419:3 3425:1 3428:20 3434:1 3435:3 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:3 3549:1 3553:1 3556:1 3559:2 3563:1 3647:2 3664:1 3665:6 3735:4 3745:1 3778:1 3781:1 3785:2 3786:3 3803:1 3812:1 3819:1 3820:1 3824:3 3825:1 3831:2 3860:1 3863:3 3866:1 3870:2 3872:1 3880:1 3898:4 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:1 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4290:1 4291:2 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:3 4418:1 4421:2 4429:1 4431:1 4433:8 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4473:1 4478:1 4491:4 4492:1 4500:1 4503:1 4506:2 4513:5 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4611:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4785:1 4797:1 4806:3 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5062:1 5063:1 5071:1 5082:4 5102:1 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:3 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:8 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5662:1 5665:1 5681:1 5698:3 5704:1 5712:1 5716:1 5744:17 5748:2 5749:1 5760:1 5761:3 5774:1 5776:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5913:1 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6002:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:4 6110:1 6142:1 6151:1 6154:1 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6338:1 6343:9 6347:1 6367:1 6371:1 6376:1 6388:1 6407:1 6412:2 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:3 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6763:1 6767:4 6775:1 6777:1 6797:1 6804:1 6811:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6927:1 6949:1 6955:1 6966:1 6982:2 6987:3 6990:2 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7077:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7217:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:7 7353:1 7408:7 7420:2 7421:2 7422:1 7423:1 7426:7 7428:1 7432:1 7443:1 7444:1 7471:1 7482:1 7505:4 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:3 7731:2 7735:3 7755:9 7760:1 7767:1 7768:1 7770:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:9 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:12 7955:1 7972:2 7985:1 7995:1 8013:1 8018:1 8029:2 8040:1 8053:1 8079:1 8082:2 8085:3 8087:2 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8278:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8577:1 8637:2 8646:3 8663:1 8678:1 8686:1 8688:5 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:16 8819:3 8839:1 8842:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:2 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9063:1 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:4 9122:2 9129:6 9132:2 9134:1 9136:1 9138:2 9144:1 9148:1 9149:1 9156:24 9160:1 9181:21 9184:1 9189:1 9190:4 9191:1 9211:1 9214:1 9229:1 9236:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9406:1 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9605:1 9613:1 9630:1 9631:1 9656:1 9664:1 9665:1 9669:1 9673:2 9677:1 9697:16 9715:1 9725:3 9745:1 9755:16 9760:8 9761:1 9762:2 9763:1 9764:2 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9869:1 9899:1 9913:1 9916:1 9927:1 9931:4 9945:1 9964:1 9970:1 9972:16 9984:2 10000:1 10014:9 10017:1 10020:3 10026:1 10043:1 10091:2 10093:2 10094:1 10097:2 10102:1 10104:1 10105:1 10106:2 10107:1 10108:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10163:1 10187:2 10188:6 10201:1 10207:3 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10340:1 10381:1 10388:3 10389:1 10410:1 10416:2 10428:1 10467:1 10469:2 10478:3 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:2 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:2 10981:3 11003:1 11039:1 11056:1 11066:1 11067:1 11099:1 11102:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11212:1 11220:1 11261:1 11283:3 11285:1 11287:7 11291:33 11293:1 11299:4 11302:1 11305:1 11306:2 11311:2 11316:1 11319:1 11334:6 11338:1 11345:1 11353:5 11357:2 11364:4 11366:1 11401:1 11416:3 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11469:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:3 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11777:1 11780:3 11782:1 11789:1 11810:3 11814:24 11816:2 11838:1 11910:4 11925:1 11947:1 11948:1 12005:1 12007:1 12035:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12124:1 12165:3 12167:1 12170:2 12188:1 12192:1 12198:1 12226:1 12255:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:6 12299:1 12337:2 12354:1 12361:1 12376:3 12382:3 12431:1 12433:2 12455:16 12462:2 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:6 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:1 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:9 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12829:1 12842:1 12862:1 12884:3 12900:5 12903:3 12904:1 12905:1 12923:1 12925:1 12926:3 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:3 13059:1 13062:1 13069:1 13083:1 13085:1 13087:1 13102:4 13106:1 13111:1 13113:1 13119:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13281:1 13293:1 13294:3 13298:2 13302:1 13305:1 13312:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:1 13478:1 13482:1 13506:1 13507:3 13515:1 13516:1 13519:1 13552:1 13563:1 13571:1 13574:1 13575:1 13590:1 13601:1 13609:1 13616:1 13641:1 13645:3 13655:1 13665:4 13678:2 13682:1 13687:1 13690:2 13692:2 13699:1 13715:2 13742:2 13757:4 13759:1 13764:1 13770:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13862:1 13881:2 13885:1 13896:1 13923:3 13924:1 13964:1 14011:1 14018:1 14025:1 14057:1 14059:1 14107:1 14111:1 14119:3 14134:1 14158:1 14168:1 14182:1 14187:2 14191:1 14210:4 14214:1 14221:1 14229:1 14232:1 14239:2 14283:1 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:2 14483:1 14496:2 14506:8 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:4 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:2 14802:1 14826:1 14828:2 14835:1 14870:2 14893:1 14902:1 14941:11 14958:1 14962:1 14968:11 14995:1 15001:2 15007:1 15027:1 15030:3 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15138:1 15152:4 15153:2 15156:1 15158:2 15200:1 15209:1 15213:1 15214:2 15219:1 15234:12 15263:1 15287:1 15290:1 15300:8 15326:1 15333:1 15339:1 15347:1 15393:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:3 15523:1 15524:1 15546:2 15571:1 15574:1 15579:4 15592:2 15593:1 15594:1 15604:1 15605:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15931:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16055:1 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16139:1 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:2 16229:1 16246:7 16253:1 16265:2 16278:1 16313:2 16315:2 16326:1 16328:1 16331:1 16372:3 16373:1 16381:2 16405:1 16426:1 16468:4 16492:4 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16769:1 16788:1 16793:9 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:6 16916:1 16920:1 16952:2 16971:24 16974:2 16978:1 17004:1 17024:4 17026:1 17029:1 17030:1 17078:5 17082:1 17106:2 17113:1 17117:1 17121:1 17139:1 17140:1 17201:1 17207:1 17216:1 17258:1 17267:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17554:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:2 17613:1 17616:1 17620:3 17630:1 17655:1 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17864:1 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 17988:1 18021:3 18025:3 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18142:1 18143:5 18147:2 18152:6 18155:1 18171:2 18179:1 18182:1 18200:1 18215:1 18231:1 18242:3 18272:17 18274:2 18286:1 18293:1 18294:1 18305:2 18309:1 18335:1 18378:7 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18437:1 18442:1 18444:1 18453:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:3 18517:1 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:3 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18842:1 18850:1 18876:2 18891:1 18924:1 18939:3 18955:1 18956:1 18981:8 19001:1 19007:1 19009:3 19012:1 19027:1 19031:4 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19096:2 19109:1 19112:1 19114:2 19115:1 19118:2 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19257:1 19306:1 19328:5 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19561:1 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:3 19650:2 19655:1 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:3 19847:1 19892:1 19902:1 19919:1 19922:1 19925:1 19926:2 19943:1 19950:1 19971:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:3 19997:17 20000:6 20011:6 20016:2 20021:2 20025:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:2 20193:2 20199:1 20204:2 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:4 20315:3 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20397:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:3 20550:2 20565:5 20581:2 20587:3 20603:2 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20735:1 20739:1 20740:2 20747:1 20766:1 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20974:2 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:5 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21336:1 21361:1 21374:1 21404:1 21412:2 21439:1 21461:7 21469:1 21482:1 21483:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:2 21558:6 21570:1 21580:1 21618:4 21640:24 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:5 21812:1 21856:2 21865:1 21902:1 21961:1 21966:1 21970:24 21975:1 21997:2 22006:1 22009:1 22026:1 22028:3233 22071:1 22079:1 22082:3 22112:1 22133:1 22146:1 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:1 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22522:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22629:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:4 22774:1 22789:1 22793:1 22794:3 22813:1 22816:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:3 22894:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23047:1 23051:2 23077:1 23088:1 23090:1 23106:23 23121:1 23129:5 23131:1 23144:1 23149:4 23161:2 23169:2 23174:1 23199:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:5 23319:1 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23363:1 23388:1 23401:1 23407:2 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23590:1 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:3 23745:2 23746:1 23751:1 23765:1 23770:1 23774:1 23787:1 23791:3 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:9 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:3 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:7 24196:1 24204:2 24214:2 24234:1 24243:1 24282:2 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24540:1 24557:11 24558:2 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24698:1 24701:1 24704:5 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:2 24770:1 24771:2 24776:1 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24946:1 24967:1 24992:1 25001:4 25029:1 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:2 25258:1 25282:2 25284:1 25289:1 25292:3 25297:1 25307:1 25314:1 25328:1 25333:1 25337:1 25351:1 25386:1 25388:2 25393:3 25406:2 25408:1 25428:2 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25496:2 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25541:1 25560:1 25561:1 25572:1 25608:1 25610:1 25665:1 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25845:1 25849:1 25850:1 25853:1 25863:2 25880:2 25888:1 25921:9 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:4 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:2 26204:2 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:3 26286:2 26288:1 26313:1 26322:2 26334:1 26335:2 26337:1 26339:3 26342:1 26348:1 26354:2 26360:1 26369:1 26375:1 26380:3 26383:2 26387:1 26390:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26609:1 26630:1 26645:2 26650:1 26651:1 26667:1 26668:4 26671:6 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26901:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:1 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:14 27241:1 27250:1 27273:6 27285:1 27293:1 27300:1 27304:6 27314:1 27334:1 27339:3 27378:1 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:1 27502:3 27525:1 27526:1 27532:1 27535:1 27544:2 27549:1 27553:8 27561:1 27573:4 27585:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27767:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:8 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28069:1 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28236:1 28238:1 28248:1 28280:1 28283:1 28292:1 28298:1 28301:1 28303:1 28305:1 28327:1 28350:1 28357:1 28358:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:2 28548:1 28559:2 28572:5 28587:1 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28705:1 28708:1 28729:1 28732:1 28733:3 28754:1 28774:1 28776:1 28782:1 28791:1 28795:1 28800:2 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29165:1 29166:1 29171:2 29175:1 29178:1 29185:2 29191:1 29205:8 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:3 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:2 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29681:1 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:2 29792:1 29798:2 29803:1 29812:1 29830:3 29838:1 29842:2 29858:1 29863:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29958:1 29962:2 29973:1 30042:1 30053:1 30065:1 30067:2 30072:2 30073:1 30079:2 30091:5 30096:2 30097:1 30111:2 30133:1 30166:10 30169:3 30185:2 30191:2 30195:2 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:5 30358:2 30373:7 30417:1 30471:3 30475:1 30507:1 30515:1 30537:2 30541:1 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:2 30640:1 30657:2 30671:1 30696:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30785:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:1 30863:2 30864:2 30866:1 30874:2 30898:1 30904:1 30999:1 31003:1 31005:1 31006:1 31021:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:9 31204:1 31211:2 31230:1 31277:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:3 31415:1 31423:2 31425:7 31436:1 31437:1 31454:9 31460:2 31462:2 31468:1 31476:1 31477:1 31488:1 31500:1 31536:9 31550:1 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:24 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31725:1 31730:2 31744:1 31751:1 31753:1 31757:1 31769:1 31787:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32036:1 32051:3 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:8 32211:1 32217:2 32228:1 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32322:1 32341:1 32346:1 32365:1 32385:1 32387:2 32390:1 32398:1 32419:1 32424:1 32442:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:2 32502:1 32503:1 32504:1 32513:1 32537:3 32540:1 32556:9 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:3 32734:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:16 32929:1 32937:1 32938:1 32952:1 32955:3 32962:3 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:3 33031:1 33047:8 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33128:1 33150:3 33155:1 33157:2 33160:8 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33249:1 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33340:1 33360:1 33363:2 33371:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33452:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33549:1 33557:2 33560:1 33561:2 33570:2 33607:1 33618:3 33625:1 33654:2 33661:2 33690:4 33700:2 33702:2 33704:1 33730:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33795:1 33812:1 33838:2 33839:1 33852:1 33866:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34189:1 34191:1 34226:1 34231:1 34239:1 34255:1 34268:1 34270:3 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34326:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:7 34463:1 34464:1 34467:1 34475:1 34485:2 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 17:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 166:1 209:4 231:2 234:1 235:2 237:1 251:1 255:2 294:1 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:3 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 516:1 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 649:1 659:1 660:1 679:3 683:1 684:4 687:3 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:7 805:1 807:1 827:1 844:3 857:2 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1020:1 1021:2 1033:1 1045:1 1048:2 1049:3 1051:2 1061:2 1077:1 1080:2 1091:2 1095:1 1101:1 1104:1 1106:2 1123:1 1141:1 1145:4 1185:2 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1395:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:2 1625:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1679:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1780:1 1781:1 1802:1 1822:3 1830:1 1832:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:4 1885:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2004:2 2037:1 2041:3 2075:1 2083:1 2098:4 2103:1 2123:2 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2279:2 2280:1 2284:4 2304:2 2333:2 2337:1 2338:1 2352:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2413:2 2415:3 2422:17 2423:2 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:2 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:6 2592:1 2593:1 2596:1 2597:7 2598:1 2600:1 2601:1 2604:2 2605:1 2606:5 2610:4 2616:4 2618:2 2620:1 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:24 2716:1 2720:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2881:1 2888:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:6 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3058:1 3060:1 3071:1 3073:1 3095:5 3126:2 3131:3 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3212:1 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3295:2 3327:1 3359:2 3374:11 3377:3 3379:1 3419:3 3425:1 3428:21 3434:1 3435:3 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:5 3549:1 3553:1 3556:1 3559:2 3563:1 3647:2 3664:1 3665:6 3735:4 3745:1 3778:1 3781:1 3785:2 3786:3 3803:1 3812:1 3817:1 3819:1 3820:1 3824:3 3825:1 3831:2 3860:1 3863:4 3866:1 3870:2 3872:1 3880:1 3898:4 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:1 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4290:1 4291:3 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:3 4384:3 4418:1 4421:2 4429:1 4431:1 4433:8 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4473:1 4478:2 4491:5 4492:1 4500:1 4503:1 4506:2 4513:5 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4611:1 4632:1 4636:1 4645:2 4649:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4785:1 4797:1 4806:3 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4929:1 4930:1 4936:1 4938:1 4942:2 4952:1 4961:1 5003:1 5030:2 5037:1 5062:1 5063:1 5071:1 5082:4 5102:1 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:3 5347:1 5359:3 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:8 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5662:1 5665:1 5681:1 5698:3 5704:1 5712:1 5716:1 5744:17 5748:2 5749:1 5760:1 5761:3 5774:1 5776:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5913:2 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6002:1 6016:1 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:4 6110:1 6142:1 6151:1 6154:2 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6316:1 6338:1 6343:9 6347:2 6367:1 6371:1 6376:1 6388:1 6407:1 6412:2 6415:2 6421:5 6436:2 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:3 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6726:1 6727:2 6761:2 6763:1 6767:4 6775:1 6777:1 6779:1 6797:1 6804:1 6811:1 6816:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6927:2 6949:1 6955:1 6966:1 6982:2 6987:3 6990:2 6998:1 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7077:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7217:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:7 7353:1 7408:7 7420:2 7421:2 7422:1 7423:1 7426:7 7428:1 7432:1 7443:1 7444:1 7471:1 7482:1 7505:6 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:3 7731:2 7735:3 7755:9 7760:1 7767:1 7768:1 7770:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:9 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:12 7955:1 7972:2 7985:1 7995:1 8013:1 8018:1 8028:1 8029:2 8040:1 8053:1 8054:1 8079:1 8082:2 8085:3 8087:2 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8278:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8577:1 8637:2 8646:3 8663:1 8678:1 8686:1 8688:5 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:17 8819:3 8839:1 8842:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:2 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9063:1 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:4 9122:2 9129:6 9132:2 9134:1 9136:1 9138:2 9144:1 9148:1 9149:1 9156:24 9160:1 9181:22 9184:1 9189:1 9190:4 9191:1 9211:1 9214:1 9229:1 9236:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9406:1 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9605:1 9613:1 9630:1 9631:1 9656:1 9664:1 9665:1 9669:1 9673:2 9677:1 9697:17 9715:1 9725:3 9745:1 9755:16 9760:10 9761:1 9762:2 9763:1 9764:2 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9869:2 9899:1 9913:1 9916:1 9927:1 9931:4 9943:1 9945:1 9964:1 9970:1 9972:17 9984:2 10000:1 10014:9 10017:1 10020:3 10026:1 10043:1 10091:2 10093:2 10094:1 10097:2 10102:1 10104:1 10105:1 10106:2 10107:1 10108:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10163:1 10187:2 10188:6 10201:1 10207:3 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10337:1 10340:1 10381:1 10388:3 10389:1 10410:1 10416:2 10428:1 10467:1 10469:2 10478:3 10497:1 10509:2 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:2 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:2 10981:3 11003:1 11039:1 11056:1 11066:1 11067:1 11099:1 11102:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11212:1 11220:1 11261:1 11283:3 11285:1 11287:8 11291:33 11293:1 11299:5 11302:1 11305:1 11306:2 11311:3 11316:1 11319:1 11334:7 11338:1 11345:1 11353:5 11357:2 11364:4 11366:1 11401:1 11416:3 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11469:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:3 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:1 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11777:1 11780:3 11782:1 11789:1 11810:3 11814:24 11816:2 11838:1 11910:4 11925:2 11947:1 11948:1 11971:1 12005:1 12007:2 12035:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12124:2 12165:3 12167:1 12170:2 12188:1 12192:1 12198:1 12226:1 12255:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:6 12299:1 12337:2 12354:1 12361:1 12376:3 12382:4 12390:1 12431:1 12433:2 12455:17 12462:2 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:6 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:2 12597:1 12610:2 12622:1 12637:2 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:9 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12829:1 12842:1 12862:1 12884:3 12900:5 12903:3 12904:1 12905:1 12923:1 12925:1 12926:4 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:3 13059:1 13062:1 13069:1 13083:1 13085:1 13087:1 13102:4 13106:1 13111:1 13113:1 13119:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13281:1 13293:1 13294:3 13298:2 13302:1 13305:1 13312:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:2 13478:1 13482:2 13506:1 13507:3 13515:1 13516:1 13519:1 13552:1 13563:1 13571:1 13574:1 13575:1 13590:1 13601:1 13609:1 13616:1 13641:1 13645:3 13655:1 13665:4 13678:2 13682:1 13687:1 13690:2 13692:2 13699:1 13715:2 13742:2 13757:4 13759:1 13764:1 13770:1 13771:1 13775:2 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13862:1 13881:2 13885:1 13896:1 13923:3 13924:2 13964:1 14011:1 14018:1 14025:1 14057:1 14059:1 14107:1 14111:1 14119:3 14134:2 14158:1 14168:1 14182:1 14187:2 14191:1 14210:5 14214:1 14221:1 14229:1 14232:1 14239:2 14283:1 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:2 14483:1 14496:2 14506:9 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:4 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:3 14802:1 14826:1 14828:2 14835:1 14870:2 14893:1 14902:1 14941:11 14958:1 14962:1 14968:11 14995:1 15001:2 15007:1 15027:1 15030:3 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15120:1 15136:1 15138:1 15152:4 15153:2 15156:1 15158:2 15200:2 15209:1 15213:1 15214:2 15219:1 15234:12 15263:1 15287:1 15290:1 15300:8 15326:1 15333:1 15339:1 15347:1 15393:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:3 15523:1 15524:1 15546:2 15571:1 15574:1 15579:4 15592:3 15593:2 15594:1 15604:1 15605:1 15606:1 15607:2 15608:1 15631:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15931:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:1 16035:1 16037:2 16040:1 16050:1 16055:2 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16139:1 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:2 16229:1 16234:1 16246:7 16253:1 16265:2 16278:1 16313:2 16315:2 16326:1 16328:1 16331:1 16372:3 16373:1 16381:2 16405:1 16426:1 16468:4 16492:4 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16635:1 16646:2 16694:1 16699:1 16728:1 16752:1 16769:1 16788:1 16793:9 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16914:6 16916:1 16920:1 16952:2 16971:24 16974:2 16978:1 17004:1 17024:4 17026:1 17029:1 17030:1 17078:5 17082:1 17106:2 17113:1 17117:1 17121:1 17139:1 17140:1 17194:1 17201:1 17207:1 17216:1 17258:1 17267:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17554:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:2 17613:1 17616:1 17620:3 17630:1 17655:2 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17864:2 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 17988:1 18021:3 18025:3 18031:1 18050:1 18076:1 18080:1 18082:1 18110:1 18142:2 18143:5 18147:2 18152:6 18155:1 18171:2 18179:1 18182:1 18200:1 18215:1 18231:1 18242:3 18272:17 18274:2 18286:1 18293:1 18294:1 18305:2 18309:1 18335:1 18378:7 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18437:1 18442:1 18444:1 18453:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:3 18517:1 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:4 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18838:1 18842:2 18850:2 18876:2 18891:1 18924:1 18939:3 18955:1 18956:1 18981:8 19001:1 19007:1 19009:3 19012:1 19027:1 19031:4 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19096:2 19109:1 19112:2 19114:2 19115:1 19118:2 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19257:1 19306:1 19328:5 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:2 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19561:1 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:3 19650:2 19655:1 19656:6 19686:1 19703:1 19711:1 19712:10 19753:1 19757:1 19794:1 19805:1 19833:3 19847:1 19892:1 19902:1 19911:1 19912:1 19919:1 19922:1 19925:1 19926:2 19943:1 19950:2 19971:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:3 19997:17 20000:6 20011:6 20016:2 20021:2 20025:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20134:1 20170:3 20171:1 20186:1 20189:2 20193:2 20199:1 20204:2 20205:1 20208:1 20219:1 20220:1 20228:3 20246:1 20280:1 20293:2 20308:1 20310:4 20315:3 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20397:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:3 20550:2 20565:5 20581:2 20587:3 20603:2 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20734:1 20735:1 20739:1 20740:2 20747:1 20766:2 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20974:2 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:5 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21336:1 21361:1 21374:1 21404:1 21412:2 21439:1 21461:8 21469:1 21482:1 21483:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:2 21558:6 21570:1 21580:1 21618:4 21640:24 21672:1 21698:1 21702:2 21739:2 21751:2 21782:1 21810:5 21812:1 21856:2 21865:1 21902:1 21927:1 21961:1 21966:1 21970:24 21975:1 21997:2 22006:1 22009:1 22026:1 22028:3283 22071:1 22079:1 22082:5 22112:1 22133:1 22146:2 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:2 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22507:1 22522:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22629:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:5 22774:1 22789:1 22793:1 22794:3 22813:1 22816:1 22817:3 22832:1 22834:1 22836:2 22839:1 22855:1 22865:1 22875:1 22883:1 22884:2 22892:3 22894:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23047:1 23051:2 23077:1 23088:1 23090:1 23106:23 23121:1 23129:6 23131:1 23144:1 23149:4 23161:2 23169:2 23174:1 23199:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:6 23319:1 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23363:1 23388:1 23401:1 23407:2 23421:1 23422:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23590:2 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:3 23745:2 23746:1 23751:1 23765:1 23770:1 23774:1 23787:1 23791:3 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:10 23921:1 23926:1 23949:1 23962:1 23979:1 24047:2 24056:1 24096:3 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:7 24196:1 24204:2 24214:2 24234:1 24243:1 24282:2 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24432:1 24443:1 24448:1 24455:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24534:1 24540:1 24557:11 24558:2 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24680:1 24698:1 24701:1 24704:5 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:2 24770:1 24771:2 24776:1 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24946:2 24967:1 24992:1 25001:4 25029:1 25031:1 25045:1 25059:1 25086:2 25098:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:2 25258:1 25282:2 25284:1 25289:1 25292:3 25297:1 25307:1 25314:1 25328:1 25333:1 25337:1 25351:1 25386:1 25388:2 25393:3 25406:2 25408:1 25428:2 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25496:2 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25541:1 25560:1 25561:1 25572:1 25608:1 25610:1 25665:2 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25845:1 25849:1 25850:1 25853:1 25863:2 25880:2 25888:1 25921:9 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:4 26074:1 26077:1 26086:1 26096:1 26144:2 26149:1 26182:1 26187:1 26194:1 26197:1 26203:2 26204:2 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:3 26286:2 26288:1 26313:1 26320:1 26322:2 26334:1 26335:2 26337:1 26339:3 26342:1 26348:1 26354:2 26360:1 26369:1 26375:1 26380:3 26383:2 26387:1 26390:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26609:1 26630:1 26645:3 26650:1 26651:1 26667:2 26668:4 26671:6 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26901:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:2 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27185:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:14 27241:1 27250:1 27273:7 27285:1 27293:1 27300:1 27304:6 27314:1 27334:1 27339:3 27378:1 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:2 27502:3 27525:1 27526:1 27532:1 27535:1 27544:2 27549:1 27553:8 27561:1 27573:4 27585:2 27590:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27645:1 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27767:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:8 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28069:1 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28236:1 28238:1 28248:1 28280:1 28283:1 28292:1 28298:1 28301:1 28303:1 28305:1 28327:1 28350:1 28357:2 28358:1 28377:1 28382:1 28389:1 28401:1 28405:1 28422:1 28425:3 28429:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:2 28548:1 28559:2 28572:5 28587:1 28590:1 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28705:2 28708:1 28729:2 28732:1 28733:3 28754:1 28774:1 28776:1 28782:1 28791:1 28795:1 28800:2 28819:1 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29132:1 29145:1 29165:1 29166:1 29171:2 29175:1 29178:1 29185:2 29191:1 29205:8 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:3 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:2 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29681:1 29698:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:3 29792:1 29798:2 29803:1 29812:1 29830:3 29838:1 29842:2 29858:1 29863:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29958:1 29962:2 29973:1 30021:1 30042:1 30053:1 30065:1 30067:2 30072:2 30073:1 30079:2 30091:5 30096:2 30097:1 30111:2 30133:1 30166:10 30169:3 30185:2 30191:2 30195:2 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:5 30358:2 30373:7 30417:1 30471:3 30475:1 30507:2 30515:1 30537:2 30541:2 30543:1 30549:1 30570:1 30593:1 30616:1 30627:1 30639:2 30640:1 30657:2 30671:1 30696:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30785:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:1 30863:2 30864:2 30866:1 30874:2 30898:1 30904:1 30999:1 31003:1 31005:1 31006:1 31021:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:9 31204:1 31211:2 31230:1 31277:1 31282:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:3 31415:1 31423:2 31425:7 31436:1 31437:1 31454:9 31460:2 31462:2 31468:1 31476:2 31477:1 31488:1 31500:1 31536:9 31550:1 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:24 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31721:1 31725:1 31730:2 31744:1 31751:1 31753:1 31757:1 31769:1 31787:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32036:1 32051:3 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:8 32211:1 32217:2 32228:1 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32322:1 32341:1 32342:1 32346:1 32365:1 32385:1 32387:2 32389:1 32390:1 32398:1 32419:1 32424:1 32442:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:2 32502:1 32503:1 32504:1 32513:1 32537:4 32540:1 32556:9 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:3 32734:1 32739:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:16 32929:1 32937:1 32938:1 32952:1 32955:3 32962:3 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:3 33031:1 33047:8 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33128:1 33150:3 33155:1 33157:2 33160:8 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33249:1 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33340:1 33360:1 33363:2 33371:1 33372:1 33376:1 33378:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33452:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33549:1 33557:2 33560:1 33561:2 33570:2 33607:1 33618:3 33625:1 33654:2 33661:2 33690:4 33700:2 33702:2 33704:1 33730:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:1 33784:1 33785:1 33786:1 33787:1 33790:1 33795:1 33812:1 33838:2 33839:1 33852:1 33866:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34189:1 34191:1 34206:1 34226:1 34231:1 34239:1 34255:1 34268:1 34270:3 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34326:1 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:7 34463:1 34464:1 34467:1 34475:1 34485:2 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
18 7:1 11:1 17:1 22:1 31:2 52:1 57:1 77:1 91:1 95:1 102:1 106:1 111:1 144:2 166:1 209:4 231:2 234:1 235:2 237:1 251:1 255:2 294:1 298:2 304:1 308:2 321:3 346:1 374:1 375:1 381:4 392:4 406:1 417:1 419:1 432:7 436:1 437:1 441:1 444:1 445:1 466:1 510:1 512:3 516:1 523:1 531:1 532:1 536:1 539:2 547:1 565:1 578:1 621:1 639:1 649:1 659:1 660:1 679:3 683:1 684:4 687:3 704:1 712:1 714:4 721:1 732:1 734:2 748:4 755:1 775:1 788:2 795:7 805:1 807:1 827:1 844:3 857:2 869:3 871:1 886:1 887:1 898:1 904:1 911:1 943:1 959:1 978:1 998:1 1005:4 1009:3 1016:1 1020:1 1021:3 1033:1 1045:1 1048:2 1049:3 1051:2 1061:2 1077:1 1080:3 1091:2 1095:1 1101:1 1104:1 1106:2 1123:1 1141:1 1145:4 1185:2 1210:1 1223:1 1256:2 1257:1 1267:3 1272:2 1287:1 1292:1 1312:1 1330:1 1337:1 1358:1 1369:1 1395:1 1417:4 1437:2 1442:2 1452:2 1453:2 1454:1 1459:2 1473:1 1494:3 1513:1 1525:1 1526:1 1533:2 1535:1 1551:2 1625:1 1638:1 1642:1 1650:2 1655:1 1660:2 1661:2 1671:1 1675:1 1679:1 1696:2 1715:3 1716:1 1731:1 1735:1 1737:1 1772:1 1774:2 1775:1 1778:1 1780:1 1781:1 1802:1 1822:3 1830:1 1832:1 1843:2 1851:1 1866:4 1867:1 1870:1 1873:3 1884:4 1885:1 1890:1 1899:1 1901:1 1914:1 1933:1 1949:2 1951:2 1963:2 1965:1 2001:1 2004:2 2037:1 2041:3 2075:1 2083:1 2098:4 2103:1 2123:2 2144:1 2154:1 2238:1 2241:1 2244:1 2265:2 2267:2 2272:1 2279:2 2280:1 2284:5 2304:2 2333:2 2337:1 2338:1 2352:1 2363:1 2367:1 2371:1 2372:2 2379:1 2382:2 2399:1 2409:1 2413:2 2415:3 2422:17 2423:2 2425:1 2429:1 2433:1 2463:1 2465:1 2471:1 2499:1 2503:2 2510:1 2526:2 2537:2 2538:1 2546:1 2557:1 2577:3 2580:1 2587:1 2590:6 2592:1 2593:1 2596:1 2597:7 2598:1 2600:1 2601:1 2604:2 2605:1 2606:5 2610:4 2616:4 2618:2 2620:2 2639:2 2640:1 2642:1 2644:1 2648:1 2652:1 2653:3 2654:2 2659:2 2660:1 2665:1 2670:3 2673:4 2674:2 2680:2 2684:1 2687:2 2689:1 2691:3 2693:1 2697:3 2704:26 2716:1 2720:1 2726:3 2733:1 2742:1 2761:2 2776:4 2787:1 2790:1 2797:1 2799:1 2817:1 2819:1 2821:1 2830:1 2832:4 2841:1 2853:1 2878:1 2881:1 2888:1 2891:2 2917:1 2919:1 2923:1 2933:1 2963:2 2967:1 2983:6 2985:1 3003:1 3006:2 3016:3 3028:1 3040:2 3058:1 3060:1 3071:1 3073:1 3095:5 3126:2 3131:3 3133:1 3139:1 3147:1 3153:2 3173:1 3179:1 3182:3 3184:1 3188:1 3194:1 3195:1 3212:2 3231:1 3236:1 3255:6 3259:1 3268:2 3275:1 3287:1 3295:2 3327:2 3359:2 3374:11 3377:3 3379:1 3419:3 3425:1 3428:21 3434:1 3435:3 3437:1 3438:1 3445:2 3451:3 3460:1 3467:3 3496:1 3499:5 3549:1 3553:1 3556:1 3559:2 3563:1 3647:2 3664:1 3665:6 3735:4 3745:1 3778:1 3781:1 3785:2 3786:3 3803:1 3812:1 3817:1 3819:1 3820:1 3824:3 3825:1 3831:2 3860:1 3863:4 3866:1 3870:2 3872:1 3880:1 3898:4 3916:1 3921:1 3931:1 3935:1 3949:1 3989:1 3995:1 4043:1 4059:1 4062:4 4077:2 4093:1 4111:1 4118:1 4130:1 4135:1 4139:1 4146:3 4150:1 4153:1 4161:1 4184:1 4185:1 4199:1 4227:1 4255:1 4266:2 4290:1 4291:3 4294:3 4329:2 4342:1 4357:1 4366:1 4376:1 4377:4 4384:3 4418:1 4421:2 4429:1 4431:1 4433:9 4434:5 4436:1 4453:1 4455:1 4462:2 4465:2 4473:1 4478:3 4491:5 4492:1 4500:1 4503:1 4506:2 4513:5 4539:1 4542:1 4551:1 4556:1 4559:1 4563:3 4565:1 4579:1 4587:1 4611:1 4632:1 4636:1 4645:2 4649:1 4671:1 4672:2 4680:1 4684:1 4700:2 4707:2 4721:2 4736:1 4746:2 4759:1 4766:1 4780:1 4785:1 4797:1 4806:3 4811:3 4819:1 4825:4 4830:1 4850:1 4862:2 4893:1 4898:1 4902:1 4912:1 4929:1 4930:1 4936:1 4938:1 4942:2 4952:1 4955:1 4961:1 5003:1 5030:2 5037:1 5062:1 5063:1 5071:1 5082:4 5102:1 5105:1 5111:1 5113:2 5153:2 5155:1 5176:1 5189:5 5195:1 5202:1 5204:1 5221:1 5253:1 5254:2 5271:1 5276:1 5293:1 5294:1 5327:1 5329:2 5331:1 5333:3 5343:3 5347:1 5359:4 5384:1 5386:3 5398:1 5409:1 5434:1 5437:5 5450:9 5458:1 5466:1 5467:1 5472:1 5513:1 5516:1 5528:3 5533:1 5538:2 5543:2 5546:1 5549:1 5585:1 5586:1 5623:1 5639:1 5647:2 5662:1 5665:2 5681:1 5698:3 5704:1 5712:1 5716:1 5744:18 5748:2 5749:1 5760:1 5761:3 5774:1 5776:1 5793:1 5808:1 5812:1 5826:1 5870:1 5886:1 5912:1 5913:2 5915:1 5927:1 5943:2 5948:1 5950:1 5995:2 6001:1 6002:1 6016:2 6018:1 6035:1 6041:1 6043:1 6048:3 6049:1 6100:2 6102:4 6110:1 6142:1 6151:1 6154:2 6165:1 6177:3 6202:1 6209:1 6214:3 6228:2 6233:1 6249:1 6255:1 6260:1 6263:2 6270:1 6275:1 6276:1 6288:1 6312:1 6316:1 6338:1 6343:9 6347:2 6367:1 6371:1 6376:1 6388:1 6407:1 6412:2 6415:2 6421:5 6436:2 6453:1 6468:1 6476:1 6491:1 6502:1 6512:1 6513:1 6522:1 6525:2 6533:1 6537:1 6540:1 6559:3 6564:2 6567:1 6602:1 6608:1 6628:2 6652:1 6688:1 6726:1 6727:3 6761:2 6763:1 6767:4 6775:1 6777:1 6779:1 6797:1 6804:1 6811:1 6816:1 6818:1 6833:1 6837:1 6873:1 6882:4 6913:2 6926:2 6927:3 6949:1 6955:1 6966:1 6982:2 6987:3 6990:3 6998:1 7013:1 7014:1 7024:1 7032:1 7039:1 7043:1 7077:1 7106:2 7111:1 7129:1 7131:1 7147:2 7164:4 7172:1 7173:9 7191:3 7198:2 7210:1 7217:1 7219:1 7238:2 7267:1 7268:3 7287:1 7347:7 7353:1 7408:7 7420:2 7421:2 7422:1 7423:1 7426:7 7428:1 7432:1 7443:1 7444:1 7471:1 7482:1 7505:6 7525:3 7526:1 7530:1 7535:1 7542:1 7543:2 7545:1 7547:1 7549:1 7553:1 7554:2 7558:1 7586:1 7589:1 7632:1 7638:1 7646:1 7703:1 7711:1 7721:1 7724:3 7731:2 7735:3 7755:9 7760:1 7767:1 7768:1 7770:1 7803:1 7815:1 7823:1 7845:2 7851:1 7854:1 7873:1 7880:1 7890:9 7891:1 7893:1 7897:1 7919:1 7927:1 7931:1 7949:1 7954:13 7955:1 7972:2 7985:1 7995:1 8013:1 8018:1 8028:1 8029:2 8040:1 8053:2 8054:1 8079:1 8082:2 8085:3 8087:2 8092:3 8097:1 8132:1 8141:1 8205:2 8207:1 8210:1 8232:2 8241:2 8243:1 8261:1 8263:1 8271:1 8278:1 8342:2 8347:1 8389:1 8390:1 8392:1 8416:1 8453:1 8460:6 8462:1 8476:1 8477:2 8478:1 8489:1 8495:1 8539:2 8541:1 8546:1 8577:1 8578:1 8596:1 8637:2 8646:3 8663:1 8678:1 8686:1 8688:5 8707:1 8709:1 8723:3 8724:1 8763:1 8775:2 8779:2 8805:1 8809:17 8819:3 8839:1 8842:1 8843:2 8859:1 8861:1 8884:1 8913:1 8944:2 8951:1 8956:1 9009:1 9011:4 9029:2 9055:2 9063:1 9065:1 9073:4 9075:1 9092:1 9093:4 9095:1 9099:2 9101:5 9108:1 9120:4 9122:2 9129:6 9132:2 9134:1 9136:1 9138:2 9144:1 9146:1 9148:1 9149:1 9156:24 9160:1 9181:22 9184:1 9189:1 9190:4 9191:1 9211:1 9214:1 9229:1 9236:1 9256:1 9278:2 9291:1 9297:1 9318:1 9321:1 9324:1 9333:1 9341:1 9363:1 9369:3 9373:3 9406:1 9407:1 9426:1 9464:1 9488:3 9494:3 9496:1 9546:1 9548:1 9553:3 9564:1 9603:2 9605:1 9613:1 9630:1 9631:1 9648:1 9656:1 9664:1 9665:1 9669:1 9673:2 9677:1 9697:17 9715:1 9725:3 9745:1 9755:16 9760:11 9761:1 9762:3 9763:1 9764:2 9795:1 9804:1 9808:1 9809:3 9852:1 9867:1 9869:3 9899:1 9913:1 9916:1 9927:1 9931:4 9943:1 9945:1 9964:1 9970:1 9972:17 9984:2 10000:1 10014:9 10017:1 10020:3 10026:1 10043:1 10091:2 10093:2 10094:1 10097:2 10102:1 10104:1 10105:1 10106:2 10107:1 10108:1 10109:1 10116:1 10117:1 10119:1 10124:2 10140:1 10160:1 10163:1 10187:2 10188:6 10201:1 10207:3 10213:1 10214:1 10229:1 10231:1 10243:1 10264:2 10286:1 10293:1 10308:1 10309:2 10331:1 10335:2 10337:1 10340:1 10381:1 10388:3 10389:1 10410:1 10416:2 10428:1 10467:1 10469:2 10478:4 10497:1 10509:2 10517:1 10529:1 10541:2 10542:1 10551:1 10552:2 10572:3 10578:1 10582:2 10613:1 10620:1 10622:1 10624:1 10631:1 10633:1 10639:1 10641:2 10657:1 10667:1 10681:2 10685:1 10686:1 10694:1 10698:1 10744:1 10748:2 10757:1 10773:2 10774:1 10798:2 10802:1 10827:1 10836:1 10908:2 10922:1 10944:1 10948:1 10962:2 10981:3 10985:1 11003:1 11039:1 11056:1 11066:1 11067:1 11099:1 11102:1 11105:1 11108:1 11123:1 11136:4 11142:1 11143:1 11160:1 11176:2 11212:1 11220:1 11261:1 11283:3 11285:1 11287:8 11291:33 11293:1 11299:5 11302:1 11305:1 11306:2 11311:3 11316:1 11319:1 11334:7 11338:1 11345:1 11353:5 11357:2 11364:4 11366:1 11401:1 11416:3 11417:1 11430:1 11434:2 11437:1 11442:2 11465:1 11469:1 11471:1 11478:1 11485:1 11495:1 11507:2 11538:1 11551:3 11555:1 11592:1 11600:1 11601:1 11618:4 11643:1 11650:1 11685:1 11692:2 11694:1 11710:2 11713:1 11714:3 11721:1 11730:3 11741:3 11754:1 11772:1 11777:1 11780:3 11782:1 11789:1 11800:1 11810:3 11814:26 11816:2 11838:1 11910:4 11925:2 11947:1 11948:1 11971:1 12005:1 12007:2 12035:1 12075:1 12090:1 12092:2 12105:1 12108:2 12117:1 12118:1 12119:1 12124:2 12165:3 12167:1 12170:2 12188:1 12192:1 12198:1 12223:1 12226:1 12229:1 12255:1 12269:1 12270:1 12275:2 12284:2 12287:1 12292:6 12299:1 12337:2 12354:1 12361:1 12376:3 12382:4 12390:1 12431:1 12433:2 12455:17 12462:2 12471:1 12474:1 12476:1 12491:1 12494:1 12503:1 12506:6 12511:1 12525:1 12528:1 12551:1 12556:2 12573:4 12589:3 12597:1 12610:2 12622:1 12637:2 12671:2 12673:1 12696:3 12714:1 12725:1 12729:1 12735:9 12737:1 12750:1 12752:1 12771:2 12792:1 12801:1 12820:1 12822:1 12829:1 12842:1 12862:1 12884:3 12900:5 12903:3 12904:1 12905:1 12923:1 12925:1 12926:4 12930:2 12933:2 12938:1 12946:1 12955:1 12982:1 13052:3 13059:1 13062:1 13069:1 13083:1 13085:1 13087:1 13102:4 13106:1 13111:1 13113:1 13119:1 13133:1 13141:1 13156:1 13164:1 13168:1 13169:1 13201:1 13212:1 13226:1 13251:1 13258:2 13267:1 13269:1 13281:1 13293:1 13294:3 13298:2 13302:1 13305:1 13312:1 13316:1 13333:1 13334:1 13341:1 13362:1 13366:1 13370:1 13393:1 13408:1 13428:1 13453:2 13478:1 13482:2 13506:1 13507:3 13515:1 13516:1 13519:1 13552:1 13563:1 13571:1 13574:1 13575:1 13590:1 13601:1 13609:1 13616:1 13641:1 13645:3 13655:1 13665:4 13678:2 13682:1 13687:1 13690:2 13692:2 13699:1 13715:2 13742:2 13757:4 13758:1 13759:1 13764:1 13770:1 13771:1 13775:2 13784:1 13785:6 13787:2 13793:3 13810:1 13813:6 13824:2 13832:1 13843:3 13847:1 13862:1 13881:2 13885:1 13896:1 13923:3 13924:3 13964:1 14011:1 14018:2 14025:1 14033:1 14057:1 14059:1 14107:1 14111:1 14119:3 14134:3 14158:1 14168:1 14182:1 14187:2 14191:1 14210:5 14214:1 14221:1 14229:1 14232:1 14239:2 14283:1 14285:1 14322:1 14347:1 14350:1 14367:2 14369:2 14389:2 14394:2 14422:1 14426:1 14475:2 14483:1 14496:2 14506:9 14516:1 14523:1 14543:2 14548:2 14563:1 14578:1 14628:1 14630:4 14656:1 14689:1 14726:2 14727:2 14731:1 14775:1 14788:3 14802:1 14826:1 14828:2 14830:1 14835:1 14870:2 14893:1 14902:1 14941:11 14958:1 14962:1 14968:11 14995:1 15001:2 15007:1 15027:1 15030:3 15042:1 15043:1 15052:1 15065:1 15070:1 15071:5 15072:1 15116:1 15120:1 15136:1 15138:2 15152:5 15153:2 15156:1 15158:2 15200:3 15209:1 15213:1 15214:2 15219:1 15234:12 15263:1 15287:1 15290:1 15300:8 15326:1 15333:1 15339:1 15347:1 15393:1 15414:1 15425:1 15462:1 15475:1 15494:1 15498:1 15516:2 15521:3 15523:1 15524:1 15546:2 15571:1 15574:1 15579:4 15592:3 15593:2 15594:1 15604:1 15605:1 15606:1 15607:2 15608:1 15631:1 15663:1 15675:1 15676:1 15689:1 15701:1 15720:3 15740:2 15750:1 15756:2 15763:1 15773:2 15792:1 15814:1 15816:1 15819:1 15826:1 15828:1 15830:1 15850:1 15851:1 15858:2 15865:5 15874:1 15889:1 15899:1 15931:1 15939:1 15977:1 15979:5 15990:1 15995:4 16033:2 16035:1 16037:2 16040:1 16050:1 16055:2 16061:1 16067:4 16075:1 16082:2 16091:1 16127:1 16132:4 16139:1 16156:1 16168:1 16174:1 16182:2 16192:2 16216:1 16220:2 16229:1 16234:1 16246:7 16253:1 16265:3 16278:1 16313:2 16315:2 16326:1 16328:1 16331:1 16372:3 16373:1 16381:2 16405:1 16426:1 16468:4 16492:4 16502:2 16542:1 16561:3 16565:2 16571:1 16601:2 16604:1 16619:1 16627:1 16635:1 16646:2 16655:1 16694:1 16699:1 16728:1 16752:1 16769:1 16788:1 16793:9 16801:1 16860:1 16867:1 16882:1 16884:3 16892:2 16899:1 16905:1 16906:1 16914:6 16916:1 16920:1 16952:2 16971:26 16974:2 16978:1 17004:1 17024:4 17026:1 17029:1 17030:1 17078:5 17082:1 17106:2 17113:1 17117:1 17121:1 17139:1 17140:1 17194:1 17201:1 17207:1 17216:1 17258:1 17267:1 17294:1 17316:1 17331:1 17333:1 17377:1 17379:1 17383:1 17386:1 17394:2 17397:1 17400:1 17403:1 17409:1 17412:3 17419:1 17426:2 17438:3 17468:3 17490:1 17501:1 17530:1 17532:1 17551:1 17554:1 17556:2 17558:1 17560:1 17564:1 17567:1 17571:1 17588:1 17590:3 17592:4 17593:2 17613:1 17616:1 17620:3 17630:1 17655:2 17657:6 17663:2 17667:1 17700:1 17729:1 17745:1 17748:1 17763:1 17778:1 17786:12 17824:1 17864:2 17871:1 17872:1 17882:1 17883:1 17893:4 17915:1 17926:1 17937:1 17950:1 17969:4 17988:1 18021:3 18025:4 18031:1 18037:1 18050:1 18076:1 18080:1 18082:1 18110:1 18142:2 18143:5 18147:2 18152:6 18155:1 18171:2 18179:1 18182:1 18200:1 18215:1 18231:1 18242:3 18272:18 18274:2 18286:1 18293:1 18294:1 18305:2 18309:1 18335:1 18378:7 18383:1 18386:1 18414:1 18421:1 18422:1 18424:1 18428:2 18437:1 18442:1 18444:1 18453:1 18454:1 18469:1 18477:1 18479:1 18503:1 18508:3 18517:1 18525:1 18527:1 18534:3 18544:1 18548:1 18551:1 18577:4 18614:1 18641:1 18658:1 18662:4 18664:4 18696:1 18701:2 18703:1 18706:2 18719:1 18731:1 18735:2 18748:1 18756:1 18761:1 18769:1 18779:2 18805:1 18808:1 18812:1 18818:2 18828:1 18838:1 18842:2 18850:3 18876:2 18891:1 18910:1 18924:1 18939:3 18955:1 18956:1 18981:8 19001:1 19007:1 19009:3 19012:1 19027:1 19031:4 19042:3 19043:1 19079:1 19081:1 19087:1 19093:1 19096:2 19109:1 19112:2 19114:2 19115:1 19118:2 19123:1 19127:1 19129:2 19136:2 19138:1 19142:1 19157:1 19181:1 19195:1 19204:2 19206:1 19208:1 19238:1 19239:1 19256:1 19257:1 19306:1 19328:5 19333:1 19339:1 19369:1 19375:1 19376:2 19378:1 19396:3 19408:1 19428:1 19476:1 19477:1 19487:1 19498:1 19529:2 19561:1 19571:1 19585:1 19586:1 19607:1 19613:1 19640:3 19643:3 19650:2 19655:1 19656:6 19686:1 19703:1 19711:1 19712:10 19731:1 19753:1 19757:1 19794:1 19805:1 19833:3 19847:1 19892:1 19902:1 19911:1 19912:1 19919:1 19922:1 19925:1 19926:2 19943:1 19950:2 19971:1 19974:1 19975:1 19982:1 19985:3 19986:2 19990:3 19991:1 19997:18 20000:6 20011:6 20016:2 20021:2 20024:1 20025:1 20028:2 20032:4 20034:1 20042:2 20071:1 20094:1 20124:1 20134:1 20170:3 20171:1 20186:1 20189:2 20193:2 20199:1 20204:2 20205:1 20208:1 20219:1 20220:1 20228:3 20246:1 20262:1 20280:1 20293:2 20308:1 20310:4 20315:4 20321:1 20355:2 20360:3 20364:1 20370:1 20387:1 20397:1 20405:1 20413:2 20418:1 20426:1 20468:2 20470:1 20492:1 20493:1 20513:1 20522:2 20537:3 20550:2 20565:5 20581:2 20587:3 20603:2 20604:1 20608:1 20610:1 20619:1 20621:3 20626:1 20630:1 20634:1 20636:1 20648:3 20651:3 20660:1 20662:1 20670:2 20677:4 20685:1 20722:2 20723:1 20730:4 20734:1 20735:1 20739:1 20740:2 20747:1 20766:2 20796:1 20797:1 20835:1 20847:1 20854:1 20858:1 20874:1 20875:1 20888:2 20903:3 20905:1 20907:1 20918:2 20959:1 20974:2 20996:1 21010:1 21013:1 21021:1 21024:3 21033:2 21042:1 21067:5 21071:1 21096:3 21121:1 21130:6 21133:1 21135:7 21141:5 21147:1 21148:1 21149:2 21151:1 21164:1 21173:1 21198:1 21199:4 21216:4 21234:1 21245:1 21293:1 21299:1 21306:1 21321:1 21322:1 21327:1 21333:1 21334:1 21336:1 21361:1 21374:1 21404:1 21412:2 21439:2 21461:8 21469:1 21482:1 21483:1 21494:1 21519:1 21523:1 21525:1 21528:1 21554:2 21558:6 21570:1 21580:1 21618:4 21640:26 21672:1 21691:1 21698:1 21702:2 21739:2 21751:3 21782:1 21810:5 21812:1 21856:2 21865:1 21902:1 21927:1 21961:1 21966:1 21970:26 21975:1 21997:2 22006:1 22009:1 22026:1 22028:3340 22071:1 22079:1 22082:5 22112:1 22133:1 22146:3 22147:1 22168:1 22172:2 22200:4 22204:1 22210:1 22232:1 22238:1 22240:1 22241:1 22258:1 22262:2 22272:5 22275:1 22285:1 22286:5 22290:1 22291:1 22293:2 22302:2 22306:1 22310:2 22322:2 22369:1 22382:1 22388:1 22393:3 22469:1 22471:1 22507:1 22522:1 22533:1 22540:1 22549:1 22554:1 22561:1 22590:1 22595:1 22629:1 22655:1 22722:6 22730:1 22743:1 22748:1 22766:1 22767:8 22771:5 22774:1 22789:1 22793:1 22794:3 22813:1 22816:1 22817:3 22832:1 22834:1 22836:2 22839:2 22855:1 22865:1 22875:1 22883:1 22884:2 22892:3 22894:1 22897:7 22931:2 22949:1 22958:1 22968:4 22995:6 23009:1 23011:1 23018:1 23027:2 23028:12 23033:1 23035:1 23047:1 23051:2 23077:1 23088:1 23090:1 23106:24 23121:1 23129:7 23131:1 23144:1 23149:4 23161:2 23169:2 23174:1 23199:1 23205:1 23209:1 23218:2 23230:1 23264:2 23275:3 23292:1 23294:1 23299:6 23319:1 23323:1 23324:1 23325:1 23331:1 23340:2 23347:5 23348:2 23363:1 23388:1 23401:1 23407:2 23421:1 23422:1 23442:1 23476:1 23505:1 23510:1 23511:4 23520:1 23529:2 23545:2 23581:1 23586:1 23590:3 23618:1 23622:1 23623:1 23630:1 23633:1 23637:3 23639:1 23648:1 23654:1 23667:1 23693:3 23745:2 23746:1 23751:1 23765:1 23770:1 23774:1 23787:1 23791:3 23798:1 23810:1 23813:1 23827:11 23846:1 23847:1 23854:2 23856:1 23882:10 23921:1 23926:1 23949:1 23961:1 23962:1 23979:1 23987:1 24047:2 24056:1 24096:3 24105:1 24111:1 24113:2 24122:1 24128:1 24141:1 24153:4 24162:1 24164:3 24173:7 24196:1 24204:2 24214:2 24234:1 24243:1 24282:2 24286:4 24294:2 24300:1 24317:1 24322:4 24347:1 24356:1 24359:1 24384:2 24389:1 24393:2 24401:1 24402:1 24432:1 24443:1 24448:1 24455:1 24463:1 24468:1 24478:2 24484:1 24495:1 24501:2 24503:1 24513:2 24526:7 24530:1 24534:1 24540:1 24557:11 24558:2 24595:1 24596:1 24607:1 24623:1 24633:1 24670:1 24672:1 24680:1 24698:1 24701:1 24704:5 24709:1 24710:1 24718:2 24721:1 24728:1 24744:1 24746:1 24761:1 24766:2 24770:1 24771:2 24776:1 24794:1 24797:2 24798:1 24807:1 24836:1 24841:1 24856:1 24878:1 24880:2 24882:1 24884:1 24892:4 24907:1 24916:1 24919:1 24925:1 24933:2 24935:2 24943:1 24946:3 24967:1 24992:1 25001:4 25029:1 25031:1 25045:1 25059:1 25086:2 25098:1 25112:1 25114:1 25152:1 25165:1 25166:1 25168:1 25170:1 25180:1 25181:1 25185:2 25200:3 25205:1 25230:1 25237:1 25247:1 25251:1 25253:2 25258:1 25282:2 25284:1 25289:1 25292:3 25297:1 25307:1 25314:1 25328:1 25333:1 25337:1 25351:1 25356:1 25386:1 25388:2 25393:3 25406:2 25408:1 25428:2 25440:2 25443:1 25449:1 25450:3 25463:2 25472:2 25487:1 25490:1 25496:2 25498:1 25503:4 25504:1 25505:2 25509:1 25517:1 25531:4 25541:1 25560:1 25561:1 25572:1 25608:1 25610:1 25665:2 25681:2 25695:1 25701:1 25723:1 25765:1 25775:2 25794:2 25810:1 25838:7 25845:1 25849:1 25850:1 25853:1 25863:2 25880:2 25888:1 25921:9 25952:1 25967:1 25968:1 25972:1 25987:1 25992:1 25999:1 26001:1 26024:1 26028:2 26042:1 26046:2 26051:1 26056:1 26057:4 26074:1 26077:1 26086:1 26096:1 26098:1 26144:2 26149:1 26182:1 26187:1 26194:2 26197:1 26203:2 26204:2 26217:1 26219:1 26227:4 26232:3 26237:2 26238:1 26242:1 26247:1 26278:1 26283:3 26286:2 26288:1 26313:1 26320:1 26322:2 26334:1 26335:2 26337:1 26339:3 26342:1 26348:1 26354:2 26360:1 26369:1 26375:1 26380:3 26383:2 26387:1 26390:1 26395:1 26401:2 26428:1 26430:1 26441:2 26450:1 26451:3 26453:3 26464:1 26467:2 26471:2 26495:1 26496:1 26505:2 26513:2 26533:1 26536:1 26551:1 26552:1 26562:1 26565:3 26588:1 26602:1 26608:1 26609:1 26630:1 26645:3 26650:1 26651:1 26667:2 26668:4 26671:6 26684:1 26703:2 26709:1 26713:2 26715:1 26722:1 26729:1 26732:1 26752:1 26765:1 26774:1 26786:1 26797:1 26801:1 26806:5 26816:1 26824:1 26829:1 26841:2 26849:1 26852:1 26883:1 26900:1 26901:1 26903:1 26907:2 26914:2 26919:1 26925:3 26930:2 26942:1 26945:1 26961:1 26982:1 27006:2 27008:1 27022:2 27027:1 27095:1 27108:1 27148:1 27150:1 27158:1 27185:1 27198:2 27210:1 27214:1 27215:1 27228:1 27230:1 27239:14 27241:1 27250:1 27273:7 27285:1 27293:1 27300:2 27304:6 27314:1 27334:1 27339:3 27378:1 27379:1 27395:3 27396:1 27397:1 27408:1 27414:1 27421:2 27425:1 27427:1 27429:1 27459:1 27468:1 27484:1 27486:1 27487:1 27492:1 27493:1 27495:2 27502:3 27525:1 27526:1 27532:1 27535:1 27544:2 27549:1 27553:8 27561:1 27573:4 27585:2 27590:1 27601:1 27618:1 27619:1 27625:2 27634:1 27635:1 27644:5 27645:1 27659:1 27670:1 27686:1 27714:1 27717:2 27720:1 27741:1 27767:1 27778:2 27799:1 27816:1 27842:1 27848:1 27871:1 27881:1 27891:1 27902:3 27945:9 27960:1 27968:1 27983:3 28004:1 28016:1 28027:2 28037:1 28047:1 28055:1 28066:4 28069:1 28073:1 28077:1 28083:1 28106:1 28114:2 28168:1 28174:1 28185:1 28194:2 28197:1 28200:1 28201:1 28215:1 28236:1 28238:1 28248:1 28280:1 28283:1 28292:1 28298:1 28301:1 28303:1 28305:1 28327:1 28350:1 28357:2 28358:1 28377:1 28382:1 28389:1 28401:1 28405:2 28422:1 28425:3 28429:1 28432:1 28434:1 28437:1 28441:2 28444:1 28449:2 28453:1 28454:1 28456:1 28464:3 28471:1 28484:3 28506:1 28507:1 28530:2 28537:2 28548:1 28559:2 28572:5 28587:1 28590:2 28592:1 28600:3 28603:1 28605:1 28608:1 28612:1 28613:1 28614:1 28622:2 28628:1 28632:1 28641:5 28655:1 28681:3 28705:3 28708:1 28729:2 28732:1 28733:3 28754:1 28774:1 28776:1 28782:1 28791:1 28795:1 28800:2 28819:1 28821:1 28822:1 28865:1 28877:1 28928:1 28929:1 28938:1 28941:2 28973:1 28980:1 28983:1 28984:1 28993:1 28995:1 28998:4 29000:1 29003:1 29007:1 29015:1 29028:1 29044:1 29046:4 29059:1 29096:1 29097:1 29099:1 29100:1 29118:1 29132:1 29145:1 29165:1 29166:1 29171:2 29175:1 29178:1 29185:2 29191:1 29205:8 29226:3 29239:1 29242:2 29296:1 29331:1 29338:2 29339:1 29340:3 29352:1 29354:2 29370:1 29373:1 29474:1 29476:1 29477:2 29480:1 29483:2 29489:1 29493:2 29517:3 29527:1 29531:3 29539:2 29541:1 29545:1 29555:2 29567:1 29589:1 29599:1 29605:1 29627:1 29645:1 29656:1 29674:1 29677:1 29678:4 29681:1 29698:1 29703:1 29706:1 29741:1 29752:1 29777:3 29779:2 29784:3 29792:1 29798:2 29803:1 29812:1 29830:3 29838:1 29842:2 29858:1 29863:1 29871:1 29877:1 29878:1 29896:1 29898:1 29902:1 29907:11 29908:1 29911:1 29919:1 29948:1 29950:1 29958:1 29962:2 29973:1 30021:1 30042:1 30053:1 30065:1 30067:2 30072:2 30073:1 30079:2 30091:5 30096:2 30097:1 30111:2 30133:1 30166:10 30169:3 30185:2 30191:2 30195:2 30220:2 30233:1 30245:5 30275:3 30288:1 30311:1 30314:1 30318:1 30338:6 30358:2 30373:7 30417:1 30471:3 30475:1 30507:2 30510:1 30515:1 30537:2 30541:3 30543:1 30549:1 30570:1 30581:1 30593:1 30616:1 30627:1 30639:2 30640:1 30657:2 30671:1 30694:1 30696:1 30700:2 30705:1 30717:1 30728:1 30738:1 30740:1 30756:1 30775:1 30779:1 30781:1 30785:1 30786:1 30793:3 30795:1 30799:1 30808:2 30824:1 30860:2 30863:2 30864:2 30866:1 30874:2 30889:1 30898:1 30904:1 30999:1 31003:1 31005:1 31006:1 31021:1 31030:1 31042:3 31078:1 31095:1 31113:1 31126:1 31131:1 31133:1 31167:3 31182:9 31204:1 31211:2 31230:1 31277:1 31282:1 31288:1 31296:1 31297:1 31298:1 31317:2 31386:1 31387:1 31395:2 31400:3 31415:1 31423:2 31425:7 31436:1 31437:1 31454:9 31460:2 31462:2 31468:2 31476:2 31477:1 31488:1 31500:1 31536:9 31550:1 31557:1 31558:3 31572:1 31583:1 31590:1 31605:1 31610:26 31611:1 31619:2 31624:1 31637:1 31638:1 31659:1 31667:2 31699:1 31703:1 31712:2 31721:1 31725:1 31730:2 31744:1 31751:1 31753:1 31757:1 31760:1 31769:1 31787:1 31810:1 31812:1 31833:1 31843:1 31850:1 31870:1 31875:1 31909:3 31918:1 31925:5 31961:1 31967:3 31992:1 32022:1 32036:1 32051:3 32063:1 32065:2 32076:1 32103:2 32114:2 32124:2 32132:1 32142:2 32146:1 32147:2 32148:3 32159:1 32172:5 32180:1 32186:9 32211:1 32217:2 32228:2 32246:1 32267:1 32273:1 32281:2 32287:1 32291:1 32294:3 32298:1 32322:1 32341:1 32342:1 32346:1 32365:1 32385:1 32387:2 32389:1 32390:1 32398:1 32419:1 32421:1 32424:1 32442:1 32450:1 32454:1 32462:1 32469:1 32471:1 32481:1 32487:1 32488:1 32496:1 32501:2 32502:1 32503:1 32504:1 32513:1 32537:4 32540:1 32556:9 32604:1 32606:2 32628:1 32643:1 32644:1 32674:1 32675:1 32679:3 32734:1 32739:1 32747:1 32749:1 32755:1 32759:1 32768:1 32799:1 32809:1 32823:2 32857:3 32860:1 32893:3 32909:1 32928:16 32929:1 32937:1 32938:1 32952:1 32955:3 32962:3 32974:2 32977:1 32979:2 32980:1 32984:1 33003:1 33020:1 33029:3 33031:1 33047:9 33049:11 33061:1 33065:1 33070:1 33071:2 33072:1 33081:1 33092:2 33094:1 33096:1 33104:1 33112:2 33128:1 33150:3 33155:1 33157:2 33160:9 33171:1 33181:1 33199:1 33206:1 33214:1 33216:6 33249:1 33259:1 33260:1 33271:2 33275:2 33285:1 33287:4 33340:2 33360:1 33363:2 33371:1 33372:1 33376:1 33378:1 33379:1 33390:2 33395:1 33396:1 33404:1 33412:1 33421:1 33426:1 33440:1 33452:1 33453:3 33468:1 33477:1 33486:1 33488:1 33520:1 33521:1 33526:2 33529:2 33549:1 33557:2 33560:1 33561:2 33570:2 33607:1 33618:3 33625:1 33654:2 33661:2 33690:4 33700:2 33702:2 33704:1 33730:1 33735:3 33750:1 33752:1 33754:1 33782:2 33783:2 33784:1 33785:1 33786:1 33787:1 33790:1 33795:1 33812:1 33838:2 33839:1 33852:1 33866:1 33891:1 33897:1 33920:1 33922:1 33925:1 33948:1 33984:1 33997:4 34005:1 34010:4 34018:2 34030:1 34064:1 34094:2 34114:1 34117:1 34145:4 34189:1 34191:1 34206:1 34226:1 34231:1 34239:1 34255:1 34268:1 34270:3 34278:1 34279:3 34284:1 34305:1 34307:1 34309:1 34313:1 34326:2 34330:3 34344:1 34353:2 34356:1 34405:1 34430:2 34434:1 34441:5 34444:1 34446:1 34448:1 34460:7 34463:1 34464:1 34467:1 34475:1 34485:2 34509:1 34519:1 34523:1 34527:1 34534:1 34546:1 34614:2
|
e0742702f90a46a62935137136814e066b98b166 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH8/EX8.2/Ex8_2.sce | caed0fd0e12e0ec047821c40ee7b8d97cccde898 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 71 | sce | Ex8_2.sce | clc;
//e.g 8.2
Ie=6.28*10**-3;
Ic=6.20*10**-3;
a=Ic/Ie;
disp(a);
|
245791b4d4d5c8ee9220f628f1d62139a63caafa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH8/EX8.8/Ex8_8.sce | a46d192e00b900a482841d117d4b89f796998cee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,681 | sce | Ex8_8.sce |
clc
T0 = 300 // Atmospheric temperature in K
Tg1_ = 300 // Higher temperature of combustion product in degree Celcius
Tg2_ = 200 // Lower temperature of combustion product in degree Celcius
Ta1 = 40 // Initial air temperature in K
cpg = 1.09 // Specific heat capacity of combustion gas in kJ/kgK
cpa = 1.005// Specific heat capacity of air in kJ/kgK
mg = 12.5 // mass flow rate of product in kg/s
ma = 11.15// mass flow rate of air in kg/s
printf("\n Example 8.8")
Tg1 = Tg1_+273 // Higher temperature of combustion product in K
Tg2 = Tg2_+273 // Lower temperature of combustion product in K
f1 = cpg*(Tg1-T0)-T0*cpg*(log(Tg1/T0)) // Initial availability of product
f2 = cpg*(Tg2-T0)-T0*cpg*(log(Tg2/T0)) // Final availability of product
printf("\n The initial and final availability of the products are %f kJ/Kg and %f kJ/Kg respectively",f1,f2)
//The answer provided in the textbook is wrong
// Part (b)
Dfg = f1-f2 // Decrease in availability of products
Ta2 = (Ta1+273) + (mg/ma)*(cpg/cpa)*(Tg1-Tg2) // Exit temperature of air
Ifa = cpa*(Ta2-(Ta1+273))-T0*cpa*(log(Ta2/(Ta1+273))) // Increase in availability of air
I = mg*Dfg-ma*Ifa // Irreversibility
printf("\n The irreversibility of the process is %f kW",I)
////The answer provided in the textbook contains round off error
// Part (c)
Ta2_ = (Ta1+273)*(Tg1/Tg2)^((12.5*1.09)/(11.5*1.005))
Q1 = mg*cpg*(Tg1-Tg2) // Heat supply rate from gas to working fluid
Q2 = ma*cpa*(Ta2_-(Ta1+273))// Heat rejection rate from the working fluid in heat engine
W = Q1-Q2 // Power developed by heat engine
printf("\n Total power generated by the heat engine is %f kW",W)
//The answer provided in the textbook contains round off error
|
89c3ec3758d680f5a1980e6850aa62c727b045c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH10/EX10.5/Ex10_5.sce | c623747cf81a3c10fcbe7de02b2706fe6bfe4337 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 550 | sce | Ex10_5.sce | // chapter 10
// example 10.5
// Determine the input current to the convertors
// page-701
clear;
clc;
// given
m=6; // number of pulses
Pi=50; // in kVA ()power of cycloconvertor)
E=415; // in V
theta=45; // in degree (firing angle)
alpha0=0.8; // power factor
// calculate
Pi=Pi*1E3; // changing unit from kVA to VA
// since Pi=3*E*Im_phase=3*E*I*(cos(theta)/sqrt(2))*alpha0, therefore we get
I=Pi/(3*E*(cosd(theta)/sqrt(2))*alpha0);// calculation of input current to the convertors
printf("\nThe input current to the convertors is \t I=%.2f A",I); |
9e5d0941afd031a423c4ee04295d5dcadad18e68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /887/CH10/EX10.5/10_5.sce | 83c419ec2a420e8626e0e5bedb2471ddd158c6b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | 10_5.sce | clc
//ex10.5
V_1=10;
V_2=3;
R_1=4*10^3;
R_2=6*10^3;
//1)analysis by assuming D1 off and D2 on
I_D_2=V_2/R_2; //ohm's law
//applying KVL
V_D_1=7; //contradiction to 'D1 is off'
//this assumption is not correct
//2)analysis by assuming D1 on and D2 off
I_D_1=V_1/R_1; //ohm's law
//applying KVL
V_D_2=-V_1+V_2+I_D_1*R_1;
//we get V_D_2 which is consistent
disp('correct assumption is D2 off and D1 on')
|
32ed0ca3a612da1f3cc49cb3ce34e7782426b42d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3863/CH1/EX1.29/Ex1_29.sce | abb347fc87349aa9bef0daf9e075a31c49eaab19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,084 | sce | Ex1_29.sce | clear
//
//Given
//Variable declaration
d=3*10 //Diameter of the rod in mm
L=5*10**3 //Area of the rod in sq.mm
T1=95 //Initial temperature in degree celsius
T2=30 //Final temperature in degree celsius
E=2e5*10**6 //Youngs Modulus in N/sq.m
alpha=12e-6 //Co-efficient of linear expansion in per degree celsius
//Calculation
A=%pi/4*(d**2) //Area of the rod
T=T1-T2 //Fall in temperature in degree celsius
//case(i) When the ends do not yield
stress1=int(alpha*T*E*1e-6) //Stress in N/sq.mm
Pull1=(stress1*A) //Pull in the rod in N
//case(ii) When the ends yield by 0.12cm
delL=0.12*10
stress2=int((alpha*T*L-delL)*E/L*1e-6) //Stress in N/sq.mm
Pull2=(stress2*A) //Pull in the rod in N
//Result
printf("\n Stress when the ends do not yield = %0.3f N/mm^2",stress1)
printf("\n Pull in the rod when the ends do not yield = %0.3f N",Pull1)
printf("\n Stress when the ends yield = %0.3f N/mm^2",stress2)
printf("\n Pull in the rod when the ends yield = %0.3f N",Pull2)
|
f590a3beb8c9c537baa5c6fe6879d97aead0bb25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH1/EX1.10/1_10.sce | 5b54ceebd2eb1db1e096555bdd25a5f4f6b7a598 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 648 | sce | 1_10.sce | //1.10
clc;
disp('If the thyristor is fired at 60 degree')
Irms=(0.8405*((%pi-%pi*60/180)-sin(2*%pi)/2+sin(2*%pi*60/180)/2))^0.5;
R=100;
P=Irms^2*R;
printf("Power supplied to load=%.0f W",P)
disp('If the thyristor is fired at 45 degree')
Irms=(0.8405*((%pi-%pi*45/180)-sin(2*%pi)/2+sin(2*%pi*45/180)/2))^0.5;
R=100;
P=Irms^2*R;
printf("Power supplied to load=%.1f W",P)
disp('If the thyristor is fired at 60 degree')
Iavg=3.25/(2*%pi)*(-cos(%pi)+cos(%pi*60/180))
printf("Average Current=%.3f A",Iavg)
disp('If the thyristor is fired at 45 degree')
Iavg=3.25/(2*%pi)*(-cos(%pi)+cos(%pi*45/180))
printf("Average Current=%.3f A",Iavg) |
5cb80c65aa32799f5cc9097f5468d0fd2a77519f | 449d555969bfd7befe906877abab098c6e63a0e8 | /22/CH3/EX3.11/ch3ex11.sce | 4d976467e575674a2277b8c03ae52777b4e830ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | ch3ex11.sce | //signals and systems
//time domain analysis of discreet time systems
//impulse response with initial conditions
clear;
close;
clc;
n=(0:19);
x=[1 zeros(1,length(n)-1)];
a=[1 -0.6 -0.16];
b=[5 0 0];
h=filter(b,a,x);
clf;
plot2d3(n,h); xlabel('n'); ylabel('h[n]'); |
c3300649884f496eedac9a4bcd7249ecd8932446 | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH9/EX9.7.b/example_9_7b.sce | 4bbc208855b6a0520aac243a6c369c666730cb8b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 737 | sce | example_9_7b.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 9
// Mass Transfer
// Example 9.7(b)
// Page 366
printf("Example 9.7(b), Page 366 \n \n");
D = 0.04 ; // [m]
V = 1.9 ; // [m/s]
// (b) mess transfer correlation equivalent to the Gleilinski equation
// Properties of air at 27 degree C
v = 15.718*10^-6 ; // [m^2/s]
rho = 1.177 ; // [kg/m^3]
Pr = 0.7015 ;
Cp = 1005 ; // [J/kg K]
k = 0.02646 ; // [W/m K]
// From Table 9.2
Dab = 2.54 * 10^-5 ; // [m^2/s]
Sc = v/Dab ;
Re = V*D/v;
// From Blasius equation 4.6.4a
f = 0.079*Re^(-0.25);
// Substituting in eqn 9.6.7
Sh_D = [(f/2)*(Re-1000)*Sc]/[1+12.7*((f/2))*((Sc^(2/3))-1)];
h_m1 = Sh_D*Dab/D;
printf("(b) h_m = %f \n",h_m1); |
5504099dd0dc87051d9f7f0799b6aa1e067f6033 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH12/EX12.15/Ex12_15.sce | 79ecc3c2ed48fd5da9cbdc768654dd7f76f57903 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | Ex12_15.sce | clear;
clc;
W = 5;// cwt
n = 18;// no. of coils
delta = 9;// inches
d = 1;// inch
D = 8;// inches
N = 6000;// tons/in^2
P = (delta*N*d^4)/(64*n*(0.5*D)^3);// tons
h = (0.5*P*delta*20/W)-delta;// inches
printf('The height of drop h = %.3f inches',h);
|
9bae56fcb2823335322eb72e41b63fb88588784a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH8/EX8.29/8_29.sce | 8bb9373773e9433e45c983d908f909b39ce18c19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | 8_29.sce | clc
//initialisation of variables
v2=6//lit
v1=2//lit
r=3/2
p1=1.01*10^5//n/m^2
//CALCULATIONS
g=(r+1)/r
p2=p1*(v2/v1)^g
w=(1/(g-1))*((p1*v2*10^-3)-(p2*v1*10^-3))
//results
printf(' \n work done= % 1f J',w)
|
6b3b010d9afcd1f17888189b9ca2e1d79cb8ec61 | bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b | /pii.sci | 286e759ea96a9919c00fa5241e8ba9d16faecb63 | [] | no_license | prasadovhal/Scilab-Codes | c8ccc49feba4243d092d8a1eba7a708eb95dc89e | 3af5566d62b1f1b6cf080ec20391c39b9d61897d | refs/heads/master | 2020-03-29T16:50:45.738023 | 2018-09-24T16:05:50 | 2018-09-24T16:05:50 | 150,130,310 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sci | pii.sci | function [pi]=pii(n)
a = 1
b = 1 / sqrt(2)
t = 1 / 4
x = 1
i = 0
while(abs(a-b) > 0.000001)
y = a
a = (a + b) / 2
b = sqrt(y * b)
t = t - x * (y - a)^2
x = 2 * x
i = i + 1
pi = ((a + b)^2) / (4 * t)
xtitle("Estimation of pi values","number of iteration","estimated of pi values")
plot(i,pi,"r")
end
endfunction
|
a11e261b97842160fc056c1ae042f590c5bf5f2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH11/EX11.1/Ex11_1.sce | 0b187d3b6f413a3e27964fdc9be44ede3ff59b1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 815 | sce | Ex11_1.sce | clear all; clc;
disp("Scilab Code Ex 11.1 : ")
//Given:
sigma_allow = 170; //MPa
tou_allow = 100; //MPa
//Shear and Moment Diagrams:
V_max = 90; //kN
M_max = 120; //kNm
//Bending Stress:
S_reqd = (M_max*(10^3))/sigma_allow;
W = [60 67 64 74 80 100];
S = [1120 1200 1030 1060 984 987];
i = find(min(W));
S_chosen = S(i);
flag1 = 0;
flag2 = 0;
if (S_reqd<S_chosen)
flag1 =1;
end
//Shear Stress:
d = 455; //mm
tw = 8; //mm
tou_avg = (V_max*10^3)/(d*tw);
if(tou_avg<tou_allow)
flag2 =1;
end
if(flag1==1 & flag2==1)
printf("\n\nUse a W460X60 standard shape.');
end
//--------------------------------------------------------------------------END-------------------------------------------------------------------------------------
|
3e85150e221e08ebe1b89149a91b680980577a12 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH10/EX10.14/14.sce | d8807d61e0319ad171a7ef62d26967760d9b9a98 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 784 | sce | 14.sce | clc
disp("(i) Make-up water required")
p_vs=0.0206; //bar
phi=0.6;
p_t=1.013; //bar
p_v1=phi*p_vs;
p_a1=p_t-p_v1;
V=9; //m^3
R=287;
T=291; //K
m_a=p_a1*10^5*V/R/T;
m_v1=0.0828; //kg/s
//At exit at 26 0C
p_vs=0.0336; //bar
phi=1;
p_v=p_vs;
W2=0.622*p_v/(p_t-p_v);
m_v2=W2*m_a;
m=m_v2-m_v1;
disp("Make-up water required=")
disp(m)
disp("kg/s")
disp("(ii) Final temperature of the water")
m_w1=5.5; //kg/s
m_w2=m_w1-m;
Wi=4.75; //kJ/s
h_w1=184.3; //kJ/kg
h_a1=18.09; //kJ/kg
h_v1=2534.74; //kJ/kg
h_v2=2549; //kJ/kg
h_a2=26.13; //kJ/kg
h_w2=(Wi + m_w1*h_w1 + m_a*h_a1 + m_v1*h_v1 - m_a*h_a2 - m_v2*h_v2)/m_w2;
//By interpolation, h_w2 corresponds to t
t=26.7; //0C
disp("final temperature of water=")
disp(t)
disp("0C")
|
52445c5f0ce2c95279cacba65f60374d4dc44264 | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH1/EX1.1/example_1_1.sce | c0c30723f011bb10c503dd293e77f1385ca12385 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,560 | sce | example_1_1.sce | //Chapter 1
//Example 1.1
//page 5
clear;clc;
fl=760e3;
pf=0.8;
lsg=0.05;
csg=60;
depre=0.12;
hpw=48;
lv=32;
hv=30;
pkwhr=0.10;
md=fl/pf;
printf('Maximum Demand= %.1f kVA \n\n',md/1000);
//calculation for tariff (b)
printf('Loss in switchgear=%.2f %% \n\n',lsg*100);
input_demand=md/(1-lsg);
input_demand=input_demand/1000;
cost_sw_ge=input_demand*60;
depreciation=depre*cost_sw_ge;
fixed_charges=hv*input_demand;
running_cost=input_demand*pf*hpw*52*pkwhr;//52 weeks per year
total_b=depreciation + fixed_charges + running_cost;
printf('Input Demand= %.1f kVA \n\n',input_demand);
printf('Cost of switchgear=Rs %d\n\n',cost_sw_ge);
printf('Annual charges on depreciation=Rs %d \n\n',depreciation);
printf('Annual fixed charges due to maximum demand corresponding to triff(b)=Rs %d \n\n',fixed_charges);
printf('Annual running cost due to kWh consumed=Rs %d \n\n',running_cost);
printf('Total charges/annum for tariff(b) = Rs %d\n\n',total_b)
//calculation for tariff (a)
input_demand=md;
input_demand=input_demand/1000;
fixed_charges=lv*input_demand;
running_cost=input_demand*pf*hpw*52*pkwhr;
total_a=fixed_charges + running_cost;
printf('maximum demand corresponding to tariff(a) = %.f kVA \n\n',input_demand);
printf('Annual fixed charges=Rs %d \n\n',fixed_charges);
printf('Annual running charges for kWh consumed = Rs %d \n\n',running_cost);
printf('Total charges/annum for tariff(a) = Rs %d \n\n',total_a);
if(total_a > total_b)
printf('Therefore, tariff(b) is economical\n\n\n');
else
printf('Therefore, tariff(a) is economical\n\n\n');
|
1a71065d2823cde6abf12d853ed4fd1b53728f24 | 37fa49594e3589dc31ae42ddc5a65ae627b7a214 | /Template1.tst | e7011d4c714eeeefd3e0eb8d9700c057ad9105d3 | [] | no_license | brendon-colburn/crmsvcutil-ts | f23fc48934d1e4ce83a3322d33bd3a3f447a535e | 12a9b38ad63f5eb1ccb39c40168bfce51eeb01a1 | refs/heads/master | 2020-12-14T09:50:49.991958 | 2019-07-24T21:18:41 | 2019-07-24T21:18:41 | 95,452,164 | 3 | 0 | null | 2019-07-24T21:18:42 | 2017-06-26T13:58:58 | CSS | UTF-8 | Scilab | false | false | 15,367 | tst | Template1.tst | ${
// Enable extension methods by adding using Typewriter.Extensions.*
using Typewriter.Extensions.Types;
// Uncomment the constructor to change template settings.
//Template(Settings settings)
//{
// settings.IncludeProject("Project.Name");
// settings.OutputExtension = ".tsx";
//}
// First upper conversion
string FirstUpper(Constant c)
{
return char.ToUpper(c.Value[0]) + c.Value.Substring(1);
}
// appends form on the name of a class name
string FormName(Class c)
{
return c.Name + "Form";
}
string AttribsName(Class c)
{
return c.Name + "Attributes";
}
// appends form on the name of a class name
string WebApiName(Class c)
{
return c.Name + "WebAPI";
}
// returns the name of the primary key for the entity
string idname(Class c)
{
if (c.Fields.Any(x => x.Name == "activityid"))
return "activityid";
else
return c.Name.ToLower() + "id";
}
// returns the WebAPI naming convention for foreign key/lookups
string fkfixer(Field f){
if (f.name.EndsWith("id") && (!f.name.Contains(((Class)f.Parent).Name.ToLower()) && !f.name.Contains("activity")))
return "_"+f.name+"_value";
else return f.name;
}
}/** @description A CRM Typescript Project
*/
module YOUR_PROJECTNAME_HERE {
/** @description Specifies that Entities always have a url route and optionally have an id
*/
export abstract class Entity {
constructor(public route: string, public id?: string) { }
}
/** @description Interface for retrieve multiple datasets in CRM
* @type generic type that corresponds with the entity being returned
*/
export interface IRetrieveMultipleData<T> {
'@odata.context': string,
value: T[]
}
export interface IAttribName {
name: string,
api_name:string
}
/** @description Helper for utilizing parameters in the WebAPI angular service
*/
export interface IParams {
$select?: string;
$filter?: string;
$orderby?: string;
$top?: string;
$expand?: string;
[key: string]: string;
}
export interface IWebApi {
retrieve<T>(e: Entity, params?: IParams, formattedValues?: boolean): ng.IHttpPromise<T>;
retrieveNext<T>(e: Entity, nextLinkUrl: string, formattedValues?: boolean): ng.IHttpPromise<T>;
create<T>(e: Entity, formattedValues?: boolean, returnRecord?: boolean): ng.IHttpPromise<T>;
retrieveMultiple<T>(e: Entity, params?: IParams, formattedValues?: boolean, returnRecord?: boolean): ng.IHttpPromise<T>;
update<T>(e: Entity, route: string, id: string): ng.IHttpPromise<T>;
remove<T>(e: Entity): ng.IHttpPromise<T>;
fetch<T>(e: Entity, fetchXml: string, formattedValues?: boolean): ng.IHttpPromise<T>;
setUrl(crmurl: string): void;
getConfig(formattedValues?: boolean, returnRecord?: boolean): any;
}
export interface IUtils {
formatDate(dateVal: string): string;
getFormattedValue(entity:any, attribute:string): string;
isNullUndefinedEmpty(value: any): boolean;
padLeadingZeros(num: number, precision: number): string;
cleanGuid(guid: string, removeDashes?: boolean): string;
reopenForm(entityName: string, entityId: string): void;
}
export class Utils implements IUtils {
/** Helper method for formatting js date
@param {string} dateVal date to be formatted, in ISO date format
**/
formatDate(dateVal: string):string {
if (this.isNullUndefinedEmpty(dateVal)) {
return "null";
}
var d = new Date(dateVal);
var pad = this.padLeadingZeros;
return (pad(d.getMonth() + 1, 2) + "/" +
pad(d.getDate(), 2) + "/" +
d.getFullYear() + " " +
pad(d.getHours(), 2) + ":" +
pad(d.getMinutes(), 2));
}
/**
* @description Retrieves the formatted value for an attribute
* @param {Entity} entity the entity containing the attribute
* @param {string} attribute name of the attribute being retrieved
*/
getFormattedValue(entity:any, attribute:string): string {
var displayVal: string = null;
if (entity[attribute] !== null) {
displayVal = entity[attribute];
var extendedField = attribute + "@OData.Community.Display.V1.FormattedValue";
if (entity[extendedField] !== null) {
displayVal = entity[extendedField];
}
}
return displayVal;
}
/**
* Format a number string with leading zeroz
* @param num
* @param precision
*/
padLeadingZeros (num:number, precision:number):string {
var s = "000000000" + num;
return s.substr(s.length - precision);
}
/**
* check to see if a value is null or empty
*/
isNullUndefinedEmpty(value: any): boolean {
if (value === undefined) {
return true;
}
if (value === null) {
return true;
}
if (typeof (value) == 'string') {
if (value.length == 0) {
return true;
}
}
return false;
}
/**
* Clean brackets and dashes from a guid
*/
cleanGuid(guid: string, removeDashes?: boolean): string {
guid = guid.replace("{", "").replace("}", "");
if (removeDashes === true) {
guid = guid.replace(/-/g, "");
}
return guid;
}
/**
* Re-opens the form causing a true refresh
*/
reopenForm(entityName: string, entityId: string): void {
parent.Xrm.Utility.openEntityForm(entityName, entityId);
}
}
/** @description An Angular WebAPI Service for Dynamics CRM
* @property {string} BaseUrl The CRM org url + WebAPI endpoint
* @return {object} Angular Service
*/
export class WebApi implements IWebApi {
private BaseUrl: string;
// a method for injecting angular1 components in typescript
public static $inject = [
'$http'
];
// when constructed we set the angular http service privately along with the methods necessary for CRUD operations
constructor(private $http: ng.IHttpService) { }
/** @description Required method that constructs the BaseUrl for the Service
* @param {string} crmurl The crm org url
**/
setUrl(crmurl: string) {
this.BaseUrl = crmurl + "/api/data/v8.2/";
}
/** @description Performs a CRM WebAPI Retrieve
* @param {object} e The entity being retrieved
* @param {object} params The optional parameters for the retrieve
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @return {object} Http GET Promise
*/
retrieve<T>(e: Entity, params?: IParams, formattedValues?: boolean) {
// lets url be a concatenation of base url, entity route, and the entity id wrapped in CRM's flavor of WebAPI
let url = this.BaseUrl + e.route + "(" + e.id + ")";
// handles params if there are any
if (params != undefined) url = this.addParams(url, params);
if (formattedValues === true) {
return this.$http.get<T>(url, this.getConfig(formattedValues));
}
else {
return this.$http.get<T>(url);
}
}
/** @description Performs a CRM WebAPI Retrieve for a nextLink URL on expanded attributes or collections
* @param {object} e The entity being retrieved
* @param {string} nextLinkUrl the URL for the next retrieve
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @return {object} Http GET Promise
*/
retrieveNext<T>(e: Entity, nextLinkUrl: string, formattedValues?: boolean) {
// handles params if there are any
if (formattedValues === true) {
return this.$http.get<T>(nextLinkUrl, this.getConfig(formattedValues));
}
else {
return this.$http.get<T>(nextLinkUrl);
}
}
/** @description Performs a CRM WebAPI Create
* @param {object} e The entity being created
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @param {boolean} returnRecord optional flag indicating whether to return an the updated record
* @return {object} Http POST Promise
*/
create<T>(e: Entity, formattedValues?: boolean, returnRecord?: boolean) {
// lets url be a concatenation of base url and route
let url = this.BaseUrl + e.route;
delete e.route;
return this.$http.post<T>(url, e, this.getConfig(formattedValues, returnRecord));
}
/** @description Performs a CRM WebAPI RetrieveMultiple
* @param {object} e The entity being retrieved
* @param {object} params The optional parameters for the retrieve
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @return {object} Http GET Promise
**/
retrieveMultiple<T>(e: Entity, params?: IParams, formattedValues?: boolean) {
let url = this.BaseUrl + e.route;
if (params != undefined) url = this.addParams(url, params);
if (formattedValues === true) {
return this.$http.get<T>(url, this.getConfig(formattedValues));
}
else {
return this.$http.get<T>(url);
}
}
/** @description Performs a CRM WebAPI Update
* @param {object} e The entity being updated
* @param {string} route the base route for the enity webapi query string
* @param {string} id the ID of the entity being updated
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @param {boolean} returnRecord optional flag indicating whether to return an the updated record
* @return {object} Http PATCH Promise
*/
update<T>(e: Entity, route: string, id: string, formattedValues?: boolean, returnRecord?: boolean ) {
// ensure that no curly braces included
id = new Utils().cleanGuid(id);
let url = this.BaseUrl + route + "(" + id + ")";
return this.$http.patch<T>(url, e, this.getConfig(formattedValues, returnRecord));
}
/** @description Performs a CRM WebAPI call using FetchXml as a query
* @param {object} e The entity being updated
* @param {string} fetchXML fetch query being passed
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @return {object} Http PATCH Promise
*/
fetch<T>(e: Entity, fetchXml: string, formattedValues?: boolean) {
// encode the fetch XML string so we can pass via a URL
var fetchXmlEncoded = encodeURIComponent(fetchXml);
let url = this.BaseUrl + e.route + "?fetchXml=" + fetchXmlEncoded;
if (formattedValues === true) {
return this.$http.get<T>(url, this.getConfig(formattedValues));
}
else {
return this.$http.get<T>(url);
}
}
/** @description Performs a CRM WebAPI Delete
* @param {object} e The entity being deleted
* @return {object} Http DELETE Promise
*/
remove<T>(e: Entity) {
let url = this.BaseUrl + e.route;
return this.$http.delete<T>(url);
}
/** @description Adds together parameters in an oData string
* @param {string} url The url string without params
* @param {object} params The parameters to be added to the url string
* @return {string} The url string with parameters
*/
addParams(url: string, params: IParams): string {
url += "?";
angular.forEach(Object.keys(params), function (v, k) {
if (k == 0 || k == this.length)
url += v + '=' + params[v];
else
url += '&' + v + '=' + params[v];
});
return url;
}
/** @description build the additional headers configuration element that will be passed on the HTTP call
* @param {boolean} formattedValues optional flag indicating whether to return formatted attibutes values
* @param {boolean} returnRecord optional flag indicating whether to return an the updated record
**/
getConfig(formattedValues?:boolean, returnRecord?:boolean): any {
var config = {
headers: {
'OData-MaxVersion': '4.0',
'OData-Version': '4.0',
'Accept': 'application/json',
'Content-Type': 'application/json; charset=utf-8',
}
};
// check for the optional arguments
var prefer = [];
if (formattedValues === true) {
prefer.push('odata.include-annotations="*"');
}
if (returnRecord === true) {
prefer.push('return=representation');
}
if (prefer.length > 0) {
config.headers['Prefer'] = prefer.join(",");
}
return config;
}
}
$Classes(c => c.Namespace == "Xrm")[
/** @description Collection interface for $Name
*/
export interface I$Constants[$FirstUpper] extends IRetrieveMultipleData<I$Name> { }
/** @description WebAPI interface for $Name
*/
export interface I$Name {
[key: string]: string | number
$Fields[$fkfixer?: $Type
]
}
/** @description Form Helper Class for $Name
*/
export class $FormName {
$Fields[public $name: string = "$name";
]
}
/** @description Web API attribute string helper class for $Name
*/
export class $WebApiName {
$Fields[public $fkfixer: string = "$fkfixer";
]
}
/** @description Attributes Helper Class for $Name */
export class $AttribsName {
$Fields[public $name: IAttribName = { name:"$name", api_name:"$fkfixer" }
]
}
/** @description Instantiates a $Name Entity to be used for CRUD based operations
* @param {object} initData An optional parameter for a create and update entities
*/
export class $Name extends Entity {
[key: string]: string | number
$Constants[public $name: $Type = "$Value";]
$Fields[public $fkfixer: $Type;
]
constructor(initData?: I$Name) {
super($Constants["$Value"]);
if (initData == undefined) return;
$Fields[this.$fkfixer = initData.$fkfixer;
]
this.id = initData.$idname;
}
}
]
} |
eb94495a7158c11c58f4554b7b46e645b270eaa7 | 18bf68cdf766092ccdcba8d231e8140063833a5a | /ThreeSinWavesFiltering.sce | 1e042619e59642df56b73d4fada20e8c9f77c955 | [] | no_license | goodengineer/Scilab-Exercises | b51cc9a4c938f0289a32875d2d21eb9061d0e68e | 3c268211fe48e7e4d0002e44757ea8b50cda10f9 | refs/heads/master | 2022-12-24T23:30:12.875423 | 2020-10-05T06:27:20 | 2020-10-05T06:27:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 338 | sce | ThreeSinWavesFiltering.sce | clear;
clc;
clf;
f1 = 100;
fs = 5000;
t = 0 : 1/fs : 0.05;
x1 = sin(2*%pi*f1*t);
x2 = sin(2*%pi*5*f1*t);
x3 = sin(2*%pi*10*f1*t);
x = x1 + x2 + x3;
coeff = ffilt("lp",100,0.05);
[mag,fr] = frmag(coeff,1,100);
filtered_x = filter(coeff,1,x);
subplot(311);
plot(fr, mag);
subplot(312);
plot(t, x);
subplot(313);
plot(t, filtered_x); |
e330d5156c0154914d8c892b5c0030d56417e114 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH5/EX5.9/Ex5_9.sce | 87a133ed410d29fc7ee1a1e1b62d5fafe9b9d09d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 977 | sce | Ex5_9.sce | clear
//Given
P_Max = 10 //N - the maximum distribution in a triangular distribution
L = 3 //mt the total length of force distribution
L_X = 5 //mt - the horizontal length of the rod
//calculations
F_y = P_Max*L*0.5 //N - The force due to triangular distribition
L_com = 2*L /3 //mt - the resultant force acting as a result of distribution acting position
//F_X = 0 forces in x directions
R_A_X = 0 // since there are no forces in X-direction
R_B_X = 0
//M_A = 0 momentum at point a is zero
//F_y*L_com - R_B_Y*L_X = 0
R_B_Y = F_y*L_com/L_X
//M_B= 0 momentum at point b is zero
//- R_A_Y*L_X = F_y*(L_X-L )
R_A_Y = - F_y*L/L_X
//caliculating for some random value
//For a---a section
l_a = 2 //mt - a---a section from a
l_com_a = 2*l_a/3
v_a = R_A_Y + 0.5*l_a*(10.0*2/3) //*(10*2/3) because the maximum moves
M_a = (10.0*0.66)*l_a*(0.33) + R_A_Y*l_a
printf("\n The force and moment in section a--a are %0.2f KN %0.3f KN-m",v_a,M_a)
|
91f4c8f06d2f2ba4bf5f87d0a9a568d5ddf35167 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/util/%r_inv.sci | c4dcd9eccd69d418394be086be969cabf0aac326 | [
"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 | 50 | sci | %r_inv.sci | function x=%r_inv(a)
// Copyright INRIA
x=invr(a)
|
eeb07facadfd0f63647ea13f4a6242d3ef36b4a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH11/EX11.1/Example11_1.sce | 0ea2278e726ceba8a7ea35881259663c5517f73e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example11_1.sce | clear;
clc;
// Example: 11.1
// Page: 458
printf("Example: 11.1 - Page: 458\n\n");
// Solution
//*****Data******//
a = 2.423;// [g]
b = 100;// [g]
Lf = 35.7;// [cal/g]
Tf = 353.1;// [cal/g]
delta_Tf = 0.64;// [OC]
R = 2;// [cal/mol K]
Mw = 32;// [Molecular wt. of Sulphur, g/mol]
//*************//
M2 = ((R*Tf^2/(1000*Lf))*(a*1000/(b)))/delta_Tf;// [g/mol]
n = M2/Mw;
printf("Molecular Formula of Sulphur is S%d",round(n)); |
3903b9c125e19c18617fdbfc98d4d9f16f27859f | c645f66bc165dc95ee9fad51cb807fb3f87274bb | /testGauss.sci | b6224d8dea8e83ec318a2467304069a90ff0e27d | [] | no_license | Younes-97/TP-Calcul-Num-rique | 43faa872415b280b41b4a8e4f10887ce47de2616 | 098a68cb8e92586a75bf4dd20189c5a7efca6e59 | refs/heads/main | 2023-02-02T11:54:40.506903 | 2020-12-17T12:07:22 | 2020-12-17T12:07:22 | 318,046,472 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 937 | sci | testGauss.sci | s = 100;
rand("seed");
xdata = [10:10:100];
for n = xdata
i = n/10;
U=rand(n,n);//Ici on génère une matrice carée avec des nombre aléatoires
b=rand(n,1);//Vecteur solution
xex=rand(n,1);//Vecteur solution
b = U*xex;//Creation du second membre
//xl = lsolve(U,b)
xu = gauss3b(U,b);
//Calcul de l'erreur en avant
fErrorB(i) = norm(xex-xu,2)/norm(xex,2);
//Calcul de l'erreur arrière
bErrorB(i) = norm(b-U*xu,2)/norm(b,2);
//borne
born(i)= cond(A)*bErrorB(i);
end
xtitle("Erreur avant arrière de la methode de Gauss");
plot2d(xdata,[log(fErrorB) log(bErrorB) log(born)],[3 5 2],leg="Erreur avant de gauss @ Erreur arrière de Gauss @ Borne");
xlabel("Taille matrice (n)");
ylabel("Valeurs erreurs");
|
b88b2550d69be48f81ede9a13d4da6b13d38310e | 449d555969bfd7befe906877abab098c6e63a0e8 | /22/CH2/EX2.7/ch2ex7.sce | 025d58136ae3df142d67cc907f5c0d89c49313ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | ch2ex7.sce | //time domain analysis of continuous time systems
//Convolution Integral of input x(t) = (e^-t).u(t)and g(t) =u(t)
clear;
close;
clc;
Max_Limit = 10;
t = -10:0.001:10;
for i=1:length(t)
g(i)=exp(-t(i));
x(i)=exp(-2*t(i));
end
y = convol(x,g)
figure
a=gca();
plot2d(t,g)
xtitle('Impulse Response','t','h(t)');
a.thickness = 2;
figure
a=gca();
plot2d(t,x)
xtitle('Input Response','t','x(t)');
a.thickness = 2;
figure
a=gca();
T=-20:0.001:20;
plot2d(T,y)
xtitle('Output Response','t','y(t)');
a.thickness = 2; |
2178c627e08f568ca1b8f9e8d22b6e1e762b5060 | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH7/EX7.3/Example7_3.sce | 24d34674e3447c918c5e4a2df114af9409bc6190 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example7_3.sce | clear;
clc;
// Illustration 7.3
// Page: 226
printf('Illustration 7.3 - Page: 226\n\n');
// solution
// ****Data****//
m = 10;// [kg]
Cvap = 1.256;// [kJ/kg.K]
Cliq = 1.507;// [kJ/kg.K]
Temp1 = 100;// [OC]
Temp4 = 10;// [OC]
//******//
// Using Fig 7.2 (Pg 224):
Temp2 = 25;// [OC]
// Using the notation of Fig. 7.3:
H1_diff_H2 = Cvap*(Temp1-Temp2);// [kJ/kg]
// From Illustration 7.2:
H2_diff_H3 = 434;// [Latent Heat of Vaporisation, kJ/kg]
H3_diff_H4 = Cliq*(Temp2-Temp4);// [kJ/kg]
H1_diff_H4 = H1_diff_H2+H2_diff_H3+H3_diff_H4;// [kJ/kg]
H = m*H1_diff_H4;// [kJ]
printf("Heat evolved for 10 kg Benzene is %f kJ\n",H); |
624c5c0705f392d11ed0d0b125f632e1daac27d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH9/EX9.3/Ex9_3.sce | 88726abd9a4196acbb09bb7def2816f18c2aab38 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 979 | sce | Ex9_3.sce | clear ;
clc;
// Example 9.3
printf('Example 9.3\n\n');
printf('Page No. 256\n\n');
//given
N_1 = 1.5;// Ventilation rate in the production area (air changes per hour)
N_2 = 1.0;// Ventilation rate in the office suite (air changes per hour)
//From example 9.1
V_P = 6000;// Voulme of production area in m^3
V_O = 750;// Voulme of office suite in m^3
T1 = 21;// Temperature difference in degree celcius
T2 = -3;// Temperature difference in degree celcius
T_P = 18;// Temperature difference in degree celcius
F_loss = 74.4*10^3;// Total fabric loss in W
// As Q_vent = 0.33 * N * V * (T1 - T2)
Q_vent_P = 0.33 * N_1 * V_P * (T_P - T2);// Ventilation loss in production area in W
Q_vent_O = 0.33 * N_2 * V_O * (T1 - T2);// Ventilation loss in office suite in W
V_loss = Q_vent_P + Q_vent_O;// Total ventilation loss in W
T_loss = F_loss + V_loss;// Total heat loss in W
p = (V_loss/T_loss)*100;
printf('percentage of ventilation loss is %.0f percent',p)
|
d3027167ee4b4cc0fee4588d00581bfbb1c1fbf4 | 726961a3412b6d2fda7c781172773be5e27ac97a | /jflap-grades/tests/q07a.tst | 196035a6a77b1a60470c1f1c6e7d6781e11d3e3b | [] | no_license | ailton07/jflap-grades-19-2 | 0546deb482e7f8e003591351191fa649d62fd405 | ff58118d31aa30a0f56cae8e5f0186d44c1b72a8 | refs/heads/master | 2020-09-16T12:49:31.560841 | 2019-11-25T01:03:19 | 2019-11-25T01:03:19 | 223,774,968 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 57 | tst | q07a.tst | 0
0.20
a 1
aabb 1
b 1
aabbabb 1
aabbb 0
abb 0
ab 0
bab 0
|
c181d0d0cd1de847b5702302d19358ded51b72dc | a2845a06ebac1138c6854d691780b120cdd556ab | /AM.sce | 70dd09c98420aefec3af1557ff803107711eb75c | [] | no_license | asp2809/Scilab-Programs | d734202084dc70e2b4e3281410833d315ce1558c | 6a49e9401ee81dd3ffc909fe6a3954b5e184c70c | refs/heads/master | 2020-03-10T15:11:33.831289 | 2018-10-05T09:50:06 | 2018-10-05T09:50:06 | 129,443,439 | 1 | 0 | null | 2018-10-05T09:50:07 | 2018-04-13T19:10:50 | Scilab | UTF-8 | Scilab | false | false | 383 | sce | AM.sce | //program to generate an AM waveform
function []=ammod(Am,Ac,fm,fc,fs)
t=0:1/fs:1
vm=Am*cos(2*%pi*fm*t)
vc=Ac*cos(2*%pi*fc*t)
x=(Ac+vm).*(cos(2*%pi*fc*t))
subplot(3,1,1)
title("Modulating Signal")
plot(vm)
subplot(3,1,2)
title("Carrier Signal")
plot(vc)
subplot(3,1,3)
title("Modulated Signal")
plot(x)
endfunction
|
bfc97a2635b07aaa03b055b99d5e0c4ad6dba111 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/DEPENDENCIES/9_3_data.sci | c9e7cda629b1eb34345f56e0c1151951d5096854 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | sci | 9_3_data.sci | //Total power output(in kW)
P=180;
//No of cylinders
k=4;
//Speed of the engine(in rpm)
N=1500;
//Brake specific fuel consumption(in kg/kWh)
bsfc=0.2;
//Crank angle(in degree)
Tc=15;
//Injection pressure at beginning(in bar)
P1=200;
//Injection pressure at end(in bar)
P2=500;
//Pressure in cylinder at beginning(in bar)
Pc1=30;
//Pressure in cylinder at end(in bar)
Pc2=50;
//Coefficient of discharge
Cd=0.7;
//Density of fuel(in kg/m^3)
Pf=0.875*1000; |
49a79a41310f6f704fc02e9e6adf416999788ebf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH7/EX7.12/ex7_12.sce | de3a8db00a7fcb6a3ce8450fcaf43b475f51d06a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 424 | sce | ex7_12.sce | //Example 7.12, Page no.280
clear
clc
theeta=5 //Angle form by slant ranges of two satellites
dA=42100*10^3 //Slant range of satellite A
dB=42000*10^3 //Slant range of satellite B
r=42164*10^3 //radius of geostationary orbit
beeta=((dA^2+dB^2-cosd(theeta)*2*dA*dB)/(2*r^2))
beeta=ceil(beeta*10^3)/10^3
beeta=(180/%pi)*acos(1-beeta)
printf("Longitudinal separation between two satellites is %.3f°",beeta)
|
8043fd203f54774411bfa5dd61ccffe44517e440 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3808/CH2/EX2.17/Ex2_17.sce | 9081c7e982b8d76b39dfd24c11a4845e151eff7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex2_17.sce | //Chapter 02:Basic Structures: Sets, Functions, Sequences, Sums and Matrices
clc;
clear;
A = [[1,1],
[2,1]]
B = [[2,1],
[1,1]]
m1=A*B
m2=B*A
disp(m1,'A*B=')
disp(m2,'B*A=')
if m1==m2 then
disp('AB=BA')
else
disp('AB!=BA')
end
|
8624328e2aa352edbe3634dadd3180ee26cb02a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2444/CH6/EX6.10/ex6_10.sce | 55eb48ad0fe1e6b60e12074ebfac04ae401fcda9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | ex6_10.sce | // Exa 6.10
clc;
clear;
close;
format('v',7)
// Given data
Af = -100;// unit less
Vin = 0.06;// in V
Vout = Af*Vin;// in V
Vin = 50;// in mV
Vin = Vin * 10^-3;// in V
A = Vout/Vin;// unit less
//Af = A/(1+(A*Beta));
Beta = (abs(A)-abs(Af))/(Af*A);// unit less
disp(Beta,"The value of ß is");
Amount = 20*log10(abs( 1/(1+(-Af*Beta)) ));// in dB
disp(Amount,"The Amount of feed back in dB is");
|
f81e8c0b1e33c988710a9952c56b628512fdbdcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /284/CH3/EX3.12/ex_12.sce | f36d4c3765b7a98ce25669c52e5dc6422973bb7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | ex_12.sce | // Chapter 3_The Semiconductor in Equilibrium
//Caption_Charge Neutrality
//Ex_12//page 116
T=550 //temperature in kelvin
Nc=2.8*(10^19)
Nv=1.04*(10^19)
Eg=1.12 // band gap energy in eV
ni=(Nc*Nv*(T/300)^3*exp(-Eg/0.0259 *(300/T)))^0.5
//no=1.05*Nd since the intrinsic carrier concentration to contribute no more than 5 percent of the total electron concentration .
Nd=(ni^2/(1.05-1))^0.5
printf('The required impurity doping concentration is %fd per cm cube',Nd)
|
0eda1c7f1275e213a24754083cb574c3c1b0b6e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH2/EX2.19/Ex2_19.sce | 19b27deaa73ace426802ac67e3f97586d62944d5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sce | Ex2_19.sce | //Ex_2_19
clc;
clear;
close;
format('v',7);
//given data :
I=100;//A
r=1;//m
mu0=4*%pi*10^-7;//permeability of air
B=mu0*I/2/%pi/r;//Wb/m^2
disp(B,"Magnetic field produced(Wb/m^2)");
|
bfa46b9380de142b0628d0fda24fe0fc02c3e9b9 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/GOLD-TEST/aka.tst | dca32ff54c30b0a62dee1f54c7178cd4a14ac52b | [] | 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 | 25,625 | tst | aka.tst | wie rennwie V;HAB;NEG;FUT
wie akɔwie V;PRF;PRS;LGSPEC1
wie nna abɛwie V;PRF;PST+IMMED
wie nnkɔwie V;NEG;PRS;LGSPEC1
wie bɛwie V;HAB;FUT
wie awie V;HAB+PRF;PRS
wie remmbɛwie V;PROG;NEG;PRS+IMMED
wie mma nnwie V;IMP;NEG;PRS
wie nna rewie V;HAB+PROG;PST
wie nna rennwie V;HAB+PROG;NEG;PST
wie nna nnwiee V;HAB+PRF;NEG;PST
wie mmbɛwiee V;PRF;NEG;PRS+IMMED
wie abɛwie V;PRF;PRS+IMMED
wie rebɛwie V;PROG;PRS+IMMED
wie ammkɔwie V;NEG;PST;LGSPEC1
wie rewie V;HAB+PROG;PRS
wie kɔwiee V;PST;LGSPEC1
wie wie V;HAB;PRS
wie nna rebɛwie V;PROG;PST+IMMED
wie nnwiee V;HAB+PRF;NEG;PRS
wie rennwie V;HAB+PROG;NEG;PRS
wie ammbɛwie V;NEG;PST+IMMED
wie wiee V;HAB;PST
wie rennkɔwie V;PROG;NEG;PRS;LGSPEC1
wie nwie V;SBJV;PRS
wie kɔwie V;PRS;LGSPEC1
wie nna mmbɛwiee V;PRF;NEG;PST+IMMED
wie wie V;IMP;PRS
wie nnwie V;HAB;NEG;PRS
wie nna akɔwie V;PRF;PST;LGSPEC1
wie bɛwiee V;PST+IMMED
wie nna rekɔwie V;PROG;PST;LGSPEC1
wie annwie V;HAB;NEG;PST
wie rekɔwie V;PROG;PRS;LGSPEC1
wie nna rennkɔwie V;PROG;NEG;PST;LGSPEC1
wie nna nnkɔwiee V;PRF;NEG;PST;LGSPEC1
wie nna remmbɛwie V;PROG;NEG;PST+IMMED
wie nnkɔwiee V;PRF;NEG;PRS;LGSPEC1
wie nna awie V;HAB+PRF;PST
wie mma nnwie V;SBJV;NEG;PRS
wie wie V;NFIN
tow .. mu tow .. mu V;HAB;PRS
tow .. mu atow .. mu V;HAB+PRF;PRS
tow .. mu bɛtow .. mu V;HAB;FUT
tow .. mu rennkɔtow .. mu V;PROG;NEG;PRS;LGSPEC1
tow .. mu nna akɔtow .. mu V;PRF;PST;LGSPEC1
tow .. mu nntow .. muee V;HAB+PRF;NEG;PRS
tow .. mu mma nntow .. mu V;SBJV;NEG;PRS
tow .. mu nna mmbɛtow .. muee V;PRF;NEG;PST+IMMED
tow .. mu rekɔtow .. mu V;PROG;PRS;LGSPEC1
tow .. mu nna renntow .. mu V;HAB+PROG;NEG;PST
tow .. mu nna retow .. mu V;HAB+PROG;PST
tow .. mu mma nntow .. mu V;IMP;NEG;PRS
tow .. mu bɛtow .. muee V;PST+IMMED
tow .. mu renntow .. mu V;HAB+PROG;NEG;PRS
tow .. mu tow .. muee V;HAB;PST
tow .. mu retow .. mu V;HAB+PROG;PRS
tow .. mu renntow .. mu V;HAB;NEG;FUT
tow .. mu nnkɔtow .. mu V;NEG;PRS;LGSPEC1
tow .. mu anntow .. mu V;HAB;NEG;PST
tow .. mu akɔtow .. mu V;PRF;PRS;LGSPEC1
tow .. mu ammkɔtow .. mu V;NEG;PST;LGSPEC1
tow .. mu nna nnkɔtow .. muee V;PRF;NEG;PST;LGSPEC1
tow .. mu nna nntow .. muee V;HAB+PRF;NEG;PST
tow .. mu nna remmbɛtow .. mu V;PROG;NEG;PST+IMMED
tow .. mu rebɛtow .. mu V;PROG;PRS+IMMED
tow .. mu abɛtow .. mu V;PRF;PRS+IMMED
tow .. mu nnkɔtow .. muee V;PRF;NEG;PRS;LGSPEC1
tow .. mu nna rennkɔtow .. mu V;PROG;NEG;PST;LGSPEC1
tow .. mu ntow .. mu V;SBJV;PRS
tow .. mu nna rekɔtow .. mu V;PROG;PST;LGSPEC1
tow .. mu mmbɛtow .. muee V;PRF;NEG;PRS+IMMED
tow .. mu ammbɛtow .. mu V;NEG;PST+IMMED
tow .. mu kɔtow .. muee V;PST;LGSPEC1
tow .. mu nna rebɛtow .. mu V;PROG;PST+IMMED
tow .. mu tow .. mu V;NFIN
tow .. mu kɔtow .. mu V;PRS;LGSPEC1
tow .. mu nna atow .. mu V;HAB+PRF;PST
tow .. mu nntow .. mu V;HAB;NEG;PRS
tow .. mu tow .. mu V;IMP;PRS
tow .. mu nna abɛtow .. mu V;PRF;PST+IMMED
tow .. mu remmbɛtow .. mu V;PROG;NEG;PRS+IMMED
tu nguan rekɔtu nguan V;PROG;PRS;LGSPEC1
tu nguan nna rebɛtu nguan V;PROG;PST+IMMED
tu nguan nnkɔtu nguanee V;PRF;NEG;PRS;LGSPEC1
tu nguan atu nguan V;HAB+PRF;PRS
tu nguan nna abɛtu nguan V;PRF;PST+IMMED
tu nguan remmbɛtu nguan V;PROG;NEG;PRS+IMMED
tu nguan rebɛtu nguan V;PROG;PRS+IMMED
tu nguan ammkɔtu nguan V;NEG;PST;LGSPEC1
tu nguan nnkɔtu nguan V;NEG;PRS;LGSPEC1
tu nguan nna nnkɔtu nguanee V;PRF;NEG;PST;LGSPEC1
tu nguan nna akɔtu nguan V;PRF;PST;LGSPEC1
tu nguan nntu nguan V;HAB;NEG;PRS
tu nguan nna rennkɔtu nguan V;PROG;NEG;PST;LGSPEC1
tu nguan tu nguan V;IMP;PRS
tu nguan nna rekɔtu nguan V;PROG;PST;LGSPEC1
tu nguan mmbɛtu nguanee V;PRF;NEG;PRS+IMMED
tu nguan nna mmbɛtu nguanee V;PRF;NEG;PST+IMMED
tu nguan nna remmbɛtu nguan V;PROG;NEG;PST+IMMED
tu nguan anntu nguan V;HAB;NEG;PST
tu nguan akɔtu nguan V;PRF;PRS;LGSPEC1
tu nguan nna renntu nguan V;HAB+PROG;NEG;PST
tu nguan nna retu nguan V;HAB+PROG;PST
tu nguan tu nguan V;HAB;PRS
tu nguan rennkɔtu nguan V;PROG;NEG;PRS;LGSPEC1
tu nguan kɔtu nguan V;PRS;LGSPEC1
tu nguan bɛtu nguan V;HAB;FUT
tu nguan bɛtu nguanee V;PST+IMMED
tu nguan renntu nguan V;HAB;NEG;FUT
tu nguan abɛtu nguan V;PRF;PRS+IMMED
tu nguan tu nguanee V;HAB;PST
tu nguan renntu nguan V;HAB+PROG;NEG;PRS
tu nguan mma nntu nguan V;SBJV;NEG;PRS
tu nguan retu nguan V;HAB+PROG;PRS
tu nguan ammbɛtu nguan V;NEG;PST+IMMED
tu nguan nna nntu nguanee V;HAB+PRF;NEG;PST
tu nguan kɔtu nguanee V;PST;LGSPEC1
tu nguan nna atu nguan V;HAB+PRF;PST
tu nguan nntu nguanee V;HAB+PRF;NEG;PRS
tu nguan ntu nguan V;SBJV;PRS
tu nguan tu nguan V;NFIN
tu nguan mma nntu nguan V;IMP;NEG;PRS
mene remmmene V;HAB;NEG;FUT
mene remene V;HAB+PROG;PRS
mene ammmene V;HAB;NEG;PST
mene kɔmene V;PRS;LGSPEC1
mene mmene V;SBJV;PRS
mene mma mmmene V;SBJV;NEG;PRS
mene nna amene V;HAB+PRF;PST
mene bɛmene V;HAB;FUT
mene nna rebɛmene V;PROG;PST+IMMED
mene nna rennkɔmene V;PROG;NEG;PST;LGSPEC1
mene nna remene V;HAB+PROG;PST
mene nna remmbɛmene V;PROG;NEG;PST+IMMED
mene mmbɛmenee V;PRF;NEG;PRS+IMMED
mene remmbɛmene V;PROG;NEG;PRS+IMMED
mene amene V;HAB+PRF;PRS
mene ammkɔmene V;NEG;PST;LGSPEC1
mene rennkɔmene V;PROG;NEG;PRS;LGSPEC1
mene remmmene V;HAB+PROG;NEG;PRS
mene mma mmmene V;IMP;NEG;PRS
mene mene V;IMP;PRS
mene ammbɛmene V;NEG;PST+IMMED
mene mene V;HAB;PRS
mene rebɛmene V;PROG;PRS+IMMED
mene mmmenee V;HAB+PRF;NEG;PRS
mene kɔmenee V;PST;LGSPEC1
mene mene V;NFIN
mene nna mmbɛmenee V;PRF;NEG;PST+IMMED
mene nna abɛmene V;PRF;PST+IMMED
mene nnkɔmene V;NEG;PRS;LGSPEC1
mene abɛmene V;PRF;PRS+IMMED
mene nna rekɔmene V;PROG;PST;LGSPEC1
mene nna nnkɔmenee V;PRF;NEG;PST;LGSPEC1
mene menee V;HAB;PST
mene rekɔmene V;PROG;PRS;LGSPEC1
mene nnkɔmenee V;PRF;NEG;PRS;LGSPEC1
mene nna mmmenee V;HAB+PRF;NEG;PST
mene nna remmmene V;HAB+PROG;NEG;PST
mene nna akɔmene V;PRF;PST;LGSPEC1
mene akɔmene V;PRF;PRS;LGSPEC1
mene mmmene V;HAB;NEG;PRS
mene bɛmenee V;PST+IMMED
dum dumee V;HAB;PST
dum rebɛdum V;PROG;PRS+IMMED
dum rekɔdum V;PROG;PRS;LGSPEC1
dum dum V;HAB;PRS
dum nna renndum V;HAB+PROG;NEG;PST
dum renndum V;HAB;NEG;FUT
dum nnkɔdum V;NEG;PRS;LGSPEC1
dum nndum V;HAB;NEG;PRS
dum renndum V;HAB+PROG;NEG;PRS
dum nna nnkɔdumee V;PRF;NEG;PST;LGSPEC1
dum nna rennkɔdum V;PROG;NEG;PST;LGSPEC1
dum remmbɛdum V;PROG;NEG;PRS+IMMED
dum nna rekɔdum V;PROG;PST;LGSPEC1
dum nna nndumee V;HAB+PRF;NEG;PST
dum mma nndum V;SBJV;NEG;PRS
dum mmbɛdumee V;PRF;NEG;PRS+IMMED
dum abɛdum V;PRF;PRS+IMMED
dum kɔdum V;PRS;LGSPEC1
dum nna abɛdum V;PRF;PST+IMMED
dum dum V;NFIN
dum mma nndum V;IMP;NEG;PRS
dum kɔdumee V;PST;LGSPEC1
dum redum V;HAB+PROG;PRS
dum nnkɔdumee V;PRF;NEG;PRS;LGSPEC1
dum nna adum V;HAB+PRF;PST
dum ammkɔdum V;NEG;PST;LGSPEC1
dum rennkɔdum V;PROG;NEG;PRS;LGSPEC1
dum nndumee V;HAB+PRF;NEG;PRS
dum dum V;IMP;PRS
dum nna akɔdum V;PRF;PST;LGSPEC1
dum nna remmbɛdum V;PROG;NEG;PST+IMMED
dum bɛdum V;HAB;FUT
dum nna mmbɛdumee V;PRF;NEG;PST+IMMED
dum anndum V;HAB;NEG;PST
dum nna redum V;HAB+PROG;PST
dum bɛdumee V;PST+IMMED
dum ammbɛdum V;NEG;PST+IMMED
dum akɔdum V;PRF;PRS;LGSPEC1
dum nna rebɛdum V;PROG;PST+IMMED
dum adum V;HAB+PRF;PRS
dum ndum V;SBJV;PRS
kekamu nna rekekamu V;HAB+PROG;PST
kekamu nna rennkɔkekamu V;PROG;NEG;PST;LGSPEC1
kekamu rennkekamu V;HAB;NEG;FUT
kekamu nna remmbɛkekamu V;PROG;NEG;PST+IMMED
kekamu rekekamu V;HAB+PROG;PRS
kekamu ammbɛkekamu V;NEG;PST+IMMED
kekamu bɛkekamu V;HAB;FUT
kekamu nnkekamuee V;HAB+PRF;NEG;PRS
kekamu nnkekamu V;HAB;NEG;PRS
kekamu rennkɔkekamu V;PROG;NEG;PRS;LGSPEC1
kekamu kɔkekamuee V;PST;LGSPEC1
kekamu nnkɔkekamuee V;PRF;NEG;PRS;LGSPEC1
kekamu rebɛkekamu V;PROG;PRS+IMMED
kekamu akɔkekamu V;PRF;PRS;LGSPEC1
kekamu rennkekamu V;HAB+PROG;NEG;PRS
kekamu mma nnkekamu V;SBJV;NEG;PRS
kekamu kɔkekamu V;PRS;LGSPEC1
kekamu nna akekamu V;HAB+PRF;PST
kekamu kekamuee V;HAB;PST
kekamu nna akɔkekamu V;PRF;PST;LGSPEC1
kekamu mma nnkekamu V;IMP;NEG;PRS
kekamu akekamu V;HAB+PRF;PRS
kekamu nkekamu V;SBJV;PRS
kekamu rekɔkekamu V;PROG;PRS;LGSPEC1
kekamu kekamu V;IMP;PRS
kekamu nna rennkekamu V;HAB+PROG;NEG;PST
kekamu nna nnkekamuee V;HAB+PRF;NEG;PST
kekamu annkekamu V;HAB;NEG;PST
kekamu kekamu V;HAB;PRS
kekamu nna abɛkekamu V;PRF;PST+IMMED
kekamu nna nnkɔkekamuee V;PRF;NEG;PST;LGSPEC1
kekamu ammkɔkekamu V;NEG;PST;LGSPEC1
kekamu nna mmbɛkekamuee V;PRF;NEG;PST+IMMED
kekamu abɛkekamu V;PRF;PRS+IMMED
kekamu nnkɔkekamu V;NEG;PRS;LGSPEC1
kekamu remmbɛkekamu V;PROG;NEG;PRS+IMMED
kekamu kekamu V;NFIN
kekamu mmbɛkekamuee V;PRF;NEG;PRS+IMMED
kekamu bɛkekamuee V;PST+IMMED
kekamu nna rekɔkekamu V;PROG;PST;LGSPEC1
kekamu nna rebɛkekamu V;PROG;PST+IMMED
kyerɛ nna akyerɛ V;HAB+PRF;PST
kyerɛ rennkɔkyerɛ V;PROG;NEG;PRS;LGSPEC1
kyerɛ nnkɔkyerɛ V;NEG;PRS;LGSPEC1
kyerɛ kyerɛ V;HAB;PRS
kyerɛ annkyerɛ V;HAB;NEG;PST
kyerɛ nna abɛkyerɛ V;PRF;PST+IMMED
kyerɛ mma nnkyerɛ V;SBJV;NEG;PRS
kyerɛ ammkɔkyerɛ V;NEG;PST;LGSPEC1
kyerɛ kɔkyerɛee V;PST;LGSPEC1
kyerɛ mmbɛkyerɛee V;PRF;NEG;PRS+IMMED
kyerɛ nna nnkɔkyerɛee V;PRF;NEG;PST;LGSPEC1
kyerɛ nna rebɛkyerɛ V;PROG;PST+IMMED
kyerɛ nna remmbɛkyerɛ V;PROG;NEG;PST+IMMED
kyerɛ kyerɛ V;NFIN
kyerɛ rebɛkyerɛ V;PROG;PRS+IMMED
kyerɛ nnkyerɛee V;HAB+PRF;NEG;PRS
kyerɛ abɛkyerɛ V;PRF;PRS+IMMED
kyerɛ nna rennkyerɛ V;HAB+PROG;NEG;PST
kyerɛ mma nnkyerɛ V;IMP;NEG;PRS
kyerɛ bɛkyerɛee V;PST+IMMED
kyerɛ nna rekɔkyerɛ V;PROG;PST;LGSPEC1
kyerɛ nnkɔkyerɛee V;PRF;NEG;PRS;LGSPEC1
kyerɛ akɔkyerɛ V;PRF;PRS;LGSPEC1
kyerɛ kyerɛee V;HAB;PST
kyerɛ rekɔkyerɛ V;PROG;PRS;LGSPEC1
kyerɛ remmbɛkyerɛ V;PROG;NEG;PRS+IMMED
kyerɛ nna akɔkyerɛ V;PRF;PST;LGSPEC1
kyerɛ kyerɛ V;IMP;PRS
kyerɛ rekyerɛ V;HAB+PROG;PRS
kyerɛ bɛkyerɛ V;HAB;FUT
kyerɛ akyerɛ V;HAB+PRF;PRS
kyerɛ nna mmbɛkyerɛee V;PRF;NEG;PST+IMMED
kyerɛ rennkyerɛ V;HAB;NEG;FUT
kyerɛ kɔkyerɛ V;PRS;LGSPEC1
kyerɛ nna rekyerɛ V;HAB+PROG;PST
kyerɛ nnkyerɛ V;HAB;NEG;PRS
kyerɛ nna rennkɔkyerɛ V;PROG;NEG;PST;LGSPEC1
kyerɛ nkyerɛ V;SBJV;PRS
kyerɛ nna nnkyerɛee V;HAB+PRF;NEG;PST
kyerɛ ammbɛkyerɛ V;NEG;PST+IMMED
kyerɛ rennkyerɛ V;HAB+PROG;NEG;PRS
nyam nna akɔnyam V;PRF;PST;LGSPEC1
nyam mmbɛnyamee V;PRF;NEG;PRS+IMMED
nyam nnkɔnyamee V;PRF;NEG;PRS;LGSPEC1
nyam rennnyam V;HAB+PROG;NEG;PRS
nyam nnyam V;SBJV;PRS
nyam akɔnyam V;PRF;PRS;LGSPEC1
nyam annnyam V;HAB;NEG;PST
nyam mma nnnyam V;IMP;NEG;PRS
nyam nyam V;HAB;PRS
nyam rebɛnyam V;PROG;PRS+IMMED
nyam ammkɔnyam V;NEG;PST;LGSPEC1
nyam abɛnyam V;PRF;PRS+IMMED
nyam nnnyamee V;HAB+PRF;NEG;PRS
nyam nna nnkɔnyamee V;PRF;NEG;PST;LGSPEC1
nyam ammbɛnyam V;NEG;PST+IMMED
nyam renyam V;HAB+PROG;PRS
nyam rennkɔnyam V;PROG;NEG;PRS;LGSPEC1
nyam kɔnyamee V;PST;LGSPEC1
nyam nna rebɛnyam V;PROG;PST+IMMED
nyam nna rennnyam V;HAB+PROG;NEG;PST
nyam nna nnnyamee V;HAB+PRF;NEG;PST
nyam anyam V;HAB+PRF;PRS
nyam kɔnyam V;PRS;LGSPEC1
nyam nna mmbɛnyamee V;PRF;NEG;PST+IMMED
nyam nna rennkɔnyam V;PROG;NEG;PST;LGSPEC1
nyam bɛnyam V;HAB;FUT
nyam mma nnnyam V;SBJV;NEG;PRS
nyam nna abɛnyam V;PRF;PST+IMMED
nyam nnnyam V;HAB;NEG;PRS
nyam nnkɔnyam V;NEG;PRS;LGSPEC1
nyam nyamee V;HAB;PST
nyam bɛnyamee V;PST+IMMED
nyam rennnyam V;HAB;NEG;FUT
nyam nna rekɔnyam V;PROG;PST;LGSPEC1
nyam nyam V;NFIN
nyam nna renyam V;HAB+PROG;PST
nyam nna remmbɛnyam V;PROG;NEG;PST+IMMED
nyam rekɔnyam V;PROG;PRS;LGSPEC1
nyam nyam V;IMP;PRS
nyam nna anyam V;HAB+PRF;PST
nyam remmbɛnyam V;PROG;NEG;PRS+IMMED
kasa nna rekasa V;HAB+PROG;PST
kasa remmbɛkasa V;PROG;NEG;PRS+IMMED
kasa nna mmbɛkasaee V;PRF;NEG;PST+IMMED
kasa nna akɔkasa V;PRF;PST;LGSPEC1
kasa nna rekɔkasa V;PROG;PST;LGSPEC1
kasa akɔkasa V;PRF;PRS;LGSPEC1
kasa nkasa V;SBJV;PRS
kasa annkasa V;HAB;NEG;PST
kasa nna nnkɔkasaee V;PRF;NEG;PST;LGSPEC1
kasa nnkɔkasa V;NEG;PRS;LGSPEC1
kasa kasa V;HAB;PRS
kasa rebɛkasa V;PROG;PRS+IMMED
kasa bɛkasaee V;PST+IMMED
kasa mma nnkasa V;IMP;NEG;PRS
kasa ammbɛkasa V;NEG;PST+IMMED
kasa nnkasa V;HAB;NEG;PRS
kasa abɛkasa V;PRF;PRS+IMMED
kasa nnkɔkasaee V;PRF;NEG;PRS;LGSPEC1
kasa nnkasaee V;HAB+PRF;NEG;PRS
kasa rennkasa V;HAB;NEG;FUT
kasa nna nnkasaee V;HAB+PRF;NEG;PST
kasa kasa V;IMP;PRS
kasa mma nnkasa V;SBJV;NEG;PRS
kasa kɔkasaee V;PST;LGSPEC1
kasa bɛkasa V;HAB;FUT
kasa kɔkasa V;PRS;LGSPEC1
kasa rennkasa V;HAB+PROG;NEG;PRS
kasa rekɔkasa V;PROG;PRS;LGSPEC1
kasa nna rennkasa V;HAB+PROG;NEG;PST
kasa nna abɛkasa V;PRF;PST+IMMED
kasa nna remmbɛkasa V;PROG;NEG;PST+IMMED
kasa nna akasa V;HAB+PRF;PST
kasa nna rebɛkasa V;PROG;PST+IMMED
kasa ammkɔkasa V;NEG;PST;LGSPEC1
kasa kasa V;NFIN
kasa mmbɛkasaee V;PRF;NEG;PRS+IMMED
kasa kasaee V;HAB;PST
kasa rekasa V;HAB+PROG;PRS
kasa rennkɔkasa V;PROG;NEG;PRS;LGSPEC1
kasa nna rennkɔkasa V;PROG;NEG;PST;LGSPEC1
kasa akasa V;HAB+PRF;PRS
soɛr ammbɛsoɛr V;NEG;PST+IMMED
soɛr mma nnsoɛr V;IMP;NEG;PRS
soɛr rennsoɛr V;HAB+PROG;NEG;PRS
soɛr rennkɔsoɛr V;PROG;NEG;PRS;LGSPEC1
soɛr nna abɛsoɛr V;PRF;PST+IMMED
soɛr nnkɔsoɛr V;NEG;PRS;LGSPEC1
soɛr nsoɛr V;SBJV;PRS
soɛr akɔsoɛr V;PRF;PRS;LGSPEC1
soɛr resoɛr V;HAB+PROG;PRS
soɛr asoɛr V;HAB+PRF;PRS
soɛr bɛsoɛree V;PST+IMMED
soɛr mmbɛsoɛree V;PRF;NEG;PRS+IMMED
soɛr remmbɛsoɛr V;PROG;NEG;PRS+IMMED
soɛr rebɛsoɛr V;PROG;PRS+IMMED
soɛr soɛree V;HAB;PST
soɛr rekɔsoɛr V;PROG;PRS;LGSPEC1
soɛr nnsoɛr V;HAB;NEG;PRS
soɛr mma nnsoɛr V;SBJV;NEG;PRS
soɛr nna remmbɛsoɛr V;PROG;NEG;PST+IMMED
soɛr kɔsoɛree V;PST;LGSPEC1
soɛr abɛsoɛr V;PRF;PRS+IMMED
soɛr nna akɔsoɛr V;PRF;PST;LGSPEC1
soɛr soɛr V;NFIN
soɛr rennsoɛr V;HAB;NEG;FUT
soɛr nna nnkɔsoɛree V;PRF;NEG;PST;LGSPEC1
soɛr soɛr V;IMP;PRS
soɛr nna rennsoɛr V;HAB+PROG;NEG;PST
soɛr bɛsoɛr V;HAB;FUT
soɛr kɔsoɛr V;PRS;LGSPEC1
soɛr nna rebɛsoɛr V;PROG;PST+IMMED
soɛr nnkɔsoɛree V;PRF;NEG;PRS;LGSPEC1
soɛr soɛr V;HAB;PRS
soɛr nna resoɛr V;HAB+PROG;PST
soɛr nna mmbɛsoɛree V;PRF;NEG;PST+IMMED
soɛr nna rekɔsoɛr V;PROG;PST;LGSPEC1
soɛr annsoɛr V;HAB;NEG;PST
soɛr nna rennkɔsoɛr V;PROG;NEG;PST;LGSPEC1
soɛr nna asoɛr V;HAB+PRF;PST
soɛr ammkɔsoɛr V;NEG;PST;LGSPEC1
soɛr nna nnsoɛree V;HAB+PRF;NEG;PST
soɛr nnsoɛree V;HAB+PRF;NEG;PRS
tɔ nna atɔ V;HAB+PRF;PST
tɔ nna rennkɔtɔ V;PROG;NEG;PST;LGSPEC1
tɔ bɛtɔee V;PST+IMMED
tɔ kɔtɔ V;PRS;LGSPEC1
tɔ abɛtɔ V;PRF;PRS+IMMED
tɔ kɔtɔee V;PST;LGSPEC1
tɔ nna nnkɔtɔee V;PRF;NEG;PST;LGSPEC1
tɔ nntɔee V;HAB+PRF;NEG;PRS
tɔ nnkɔtɔ V;NEG;PRS;LGSPEC1
tɔ nna retɔ V;HAB+PROG;PST
tɔ tɔ V;HAB;PRS
tɔ mmbɛtɔee V;PRF;NEG;PRS+IMMED
tɔ nna mmbɛtɔee V;PRF;NEG;PST+IMMED
tɔ tɔ V;IMP;PRS
tɔ nna remmbɛtɔ V;PROG;NEG;PST+IMMED
tɔ nnkɔtɔee V;PRF;NEG;PRS;LGSPEC1
tɔ nna nntɔee V;HAB+PRF;NEG;PST
tɔ ammbɛtɔ V;NEG;PST+IMMED
tɔ renntɔ V;HAB;NEG;FUT
tɔ anntɔ V;HAB;NEG;PST
tɔ mma nntɔ V;SBJV;NEG;PRS
tɔ tɔee V;HAB;PST
tɔ rebɛtɔ V;PROG;PRS+IMMED
tɔ tɔ V;NFIN
tɔ atɔ V;HAB+PRF;PRS
tɔ mma nntɔ V;IMP;NEG;PRS
tɔ renntɔ V;HAB+PROG;NEG;PRS
tɔ akɔtɔ V;PRF;PRS;LGSPEC1
tɔ rekɔtɔ V;PROG;PRS;LGSPEC1
tɔ nna abɛtɔ V;PRF;PST+IMMED
tɔ nna akɔtɔ V;PRF;PST;LGSPEC1
tɔ nna renntɔ V;HAB+PROG;NEG;PST
tɔ ammkɔtɔ V;NEG;PST;LGSPEC1
tɔ bɛtɔ V;HAB;FUT
tɔ ntɔ V;SBJV;PRS
tɔ nna rebɛtɔ V;PROG;PST+IMMED
tɔ remmbɛtɔ V;PROG;NEG;PRS+IMMED
tɔ rennkɔtɔ V;PROG;NEG;PRS;LGSPEC1
tɔ retɔ V;HAB+PROG;PRS
tɔ nna rekɔtɔ V;PROG;PST;LGSPEC1
tɔ nntɔ V;HAB;NEG;PRS
boro bɛboroee V;PST+IMMED
boro mma mmboro V;IMP;NEG;PRS
boro remmboro V;HAB+PROG;NEG;PRS
boro rennkɔboro V;PROG;NEG;PRS;LGSPEC1
boro mmboro V;HAB;NEG;PRS
boro ammboro V;HAB;NEG;PST
boro nna abɛboro V;PRF;PST+IMMED
boro kɔboroee V;PST;LGSPEC1
boro bɛboro V;HAB;FUT
boro nna mmbɛboroee V;PRF;NEG;PST+IMMED
boro boroee V;HAB;PST
boro nna remmbɛboro V;PROG;NEG;PST+IMMED
boro aboro V;HAB+PRF;PRS
boro nna rekɔboro V;PROG;PST;LGSPEC1
boro ammbɛboro V;NEG;PST+IMMED
boro reboro V;HAB+PROG;PRS
boro boro V;NFIN
boro mboro V;SBJV;PRS
boro remmbɛboro V;PROG;NEG;PRS+IMMED
boro boro V;IMP;PRS
boro remmboro V;HAB;NEG;FUT
boro abɛboro V;PRF;PRS+IMMED
boro nnkɔboroee V;PRF;NEG;PRS;LGSPEC1
boro kɔboro V;PRS;LGSPEC1
boro nna nnkɔboroee V;PRF;NEG;PST;LGSPEC1
boro rekɔboro V;PROG;PRS;LGSPEC1
boro nna reboro V;HAB+PROG;PST
boro mma mmboro V;SBJV;NEG;PRS
boro mmbɛboroee V;PRF;NEG;PRS+IMMED
boro nna rennkɔboro V;PROG;NEG;PST;LGSPEC1
boro boro V;HAB;PRS
boro nna mmboroee V;HAB+PRF;NEG;PST
boro nna rebɛboro V;PROG;PST+IMMED
boro mmboroee V;HAB+PRF;NEG;PRS
boro ammkɔboro V;NEG;PST;LGSPEC1
boro nna akɔboro V;PRF;PST;LGSPEC1
boro nnkɔboro V;NEG;PRS;LGSPEC1
boro nna remmboro V;HAB+PROG;NEG;PST
boro akɔboro V;PRF;PRS;LGSPEC1
boro rebɛboro V;PROG;PRS+IMMED
boro nna aboro V;HAB+PRF;PST
bɔ mpae remmbɔ mpae V;HAB;NEG;FUT
bɔ mpae nna abɛbɔ mpae V;PRF;PST+IMMED
bɔ mpae nna akɔbɔ mpae V;PRF;PST;LGSPEC1
bɔ mpae nna mmbɛbɔ mpaee V;PRF;NEG;PST+IMMED
bɔ mpae rebɔ mpae V;HAB+PROG;PRS
bɔ mpae nna mmbɔ mpaee V;HAB+PRF;NEG;PST
bɔ mpae mmbɛbɔ mpaee V;PRF;NEG;PRS+IMMED
bɔ mpae nna rekɔbɔ mpae V;PROG;PST;LGSPEC1
bɔ mpae abɛbɔ mpae V;PRF;PRS+IMMED
bɔ mpae rebɛbɔ mpae V;PROG;PRS+IMMED
bɔ mpae bɔ mpae V;IMP;PRS
bɔ mpae mbɔ mpae V;SBJV;PRS
bɔ mpae rennkɔbɔ mpae V;PROG;NEG;PRS;LGSPEC1
bɔ mpae bɛbɔ mpaee V;PST+IMMED
bɔ mpae ammbɛbɔ mpae V;NEG;PST+IMMED
bɔ mpae ammbɔ mpae V;HAB;NEG;PST
bɔ mpae mma mmbɔ mpae V;IMP;NEG;PRS
bɔ mpae bɔ mpae V;NFIN
bɔ mpae kɔbɔ mpaee V;PST;LGSPEC1
bɔ mpae nnkɔbɔ mpae V;NEG;PRS;LGSPEC1
bɔ mpae nna remmbɔ mpae V;HAB+PROG;NEG;PST
bɔ mpae nna remmbɛbɔ mpae V;PROG;NEG;PST+IMMED
bɔ mpae abɔ mpae V;HAB+PRF;PRS
bɔ mpae bɔ mpaee V;HAB;PST
bɔ mpae mmbɔ mpae V;HAB;NEG;PRS
bɔ mpae remmbɔ mpae V;HAB+PROG;NEG;PRS
bɔ mpae remmbɛbɔ mpae V;PROG;NEG;PRS+IMMED
bɔ mpae mmbɔ mpaee V;HAB+PRF;NEG;PRS
bɔ mpae nna rebɛbɔ mpae V;PROG;PST+IMMED
bɔ mpae nna rennkɔbɔ mpae V;PROG;NEG;PST;LGSPEC1
bɔ mpae mma mmbɔ mpae V;SBJV;NEG;PRS
bɔ mpae nnkɔbɔ mpaee V;PRF;NEG;PRS;LGSPEC1
bɔ mpae nna rebɔ mpae V;HAB+PROG;PST
bɔ mpae kɔbɔ mpae V;PRS;LGSPEC1
bɔ mpae ammkɔbɔ mpae V;NEG;PST;LGSPEC1
bɔ mpae rekɔbɔ mpae V;PROG;PRS;LGSPEC1
bɔ mpae nna abɔ mpae V;HAB+PRF;PST
bɔ mpae akɔbɔ mpae V;PRF;PRS;LGSPEC1
bɔ mpae bɔ mpae V;HAB;PRS
bɔ mpae nna nnkɔbɔ mpaee V;PRF;NEG;PST;LGSPEC1
bɔ mpae bɛbɔ mpae V;HAB;FUT
tweɔn abɛtweɔn V;PRF;PRS+IMMED
tweɔn ntweɔn V;SBJV;PRS
tweɔn nna atweɔn V;HAB+PRF;PST
tweɔn nna rekɔtweɔn V;PROG;PST;LGSPEC1
tweɔn nnkɔtweɔnee V;PRF;NEG;PRS;LGSPEC1
tweɔn nntweɔnee V;HAB+PRF;NEG;PRS
tweɔn nnkɔtweɔn V;NEG;PRS;LGSPEC1
tweɔn nna nnkɔtweɔnee V;PRF;NEG;PST;LGSPEC1
tweɔn nna remmbɛtweɔn V;PROG;NEG;PST+IMMED
tweɔn mma nntweɔn V;IMP;NEG;PRS
tweɔn tweɔnee V;HAB;PST
tweɔn akɔtweɔn V;PRF;PRS;LGSPEC1
tweɔn tweɔn V;IMP;PRS
tweɔn mmbɛtweɔnee V;PRF;NEG;PRS+IMMED
tweɔn nna rennkɔtweɔn V;PROG;NEG;PST;LGSPEC1
tweɔn nna rebɛtweɔn V;PROG;PST+IMMED
tweɔn atweɔn V;HAB+PRF;PRS
tweɔn tweɔn V;HAB;PRS
tweɔn nna renntweɔn V;HAB+PROG;NEG;PST
tweɔn anntweɔn V;HAB;NEG;PST
tweɔn kɔtweɔnee V;PST;LGSPEC1
tweɔn tweɔn V;NFIN
tweɔn nna retweɔn V;HAB+PROG;PST
tweɔn nntweɔn V;HAB;NEG;PRS
tweɔn bɛtweɔnee V;PST+IMMED
tweɔn renntweɔn V;HAB+PROG;NEG;PRS
tweɔn ammkɔtweɔn V;NEG;PST;LGSPEC1
tweɔn nna abɛtweɔn V;PRF;PST+IMMED
tweɔn kɔtweɔn V;PRS;LGSPEC1
tweɔn nna mmbɛtweɔnee V;PRF;NEG;PST+IMMED
tweɔn nna akɔtweɔn V;PRF;PST;LGSPEC1
tweɔn rennkɔtweɔn V;PROG;NEG;PRS;LGSPEC1
tweɔn bɛtweɔn V;HAB;FUT
tweɔn ammbɛtweɔn V;NEG;PST+IMMED
tweɔn mma nntweɔn V;SBJV;NEG;PRS
tweɔn rebɛtweɔn V;PROG;PRS+IMMED
tweɔn renntweɔn V;HAB;NEG;FUT
tweɔn retweɔn V;HAB+PROG;PRS
tweɔn rekɔtweɔn V;PROG;PRS;LGSPEC1
tweɔn remmbɛtweɔn V;PROG;NEG;PRS+IMMED
tweɔn nna nntweɔnee V;HAB+PRF;NEG;PST
nom kɔnom V;PRS;LGSPEC1
nom nna rekɔnom V;PROG;PST;LGSPEC1
nom akɔnom V;PRF;PRS;LGSPEC1
nom bɛnomee V;PST+IMMED
nom ammkɔnom V;NEG;PST;LGSPEC1
nom remmbɛnom V;PROG;NEG;PRS+IMMED
nom nna nnnomee V;HAB+PRF;NEG;PST
nom rennnom V;HAB+PROG;NEG;PRS
nom abɛnom V;PRF;PRS+IMMED
nom nna rennkɔnom V;PROG;NEG;PST;LGSPEC1
nom nom V;NFIN
nom rennkɔnom V;PROG;NEG;PRS;LGSPEC1
nom rekɔnom V;PROG;PRS;LGSPEC1
nom nna anom V;HAB+PRF;PST
nom nnnomee V;HAB+PRF;NEG;PRS
nom nnkɔnomee V;PRF;NEG;PRS;LGSPEC1
nom nna akɔnom V;PRF;PST;LGSPEC1
nom ammbɛnom V;NEG;PST+IMMED
nom nom V;IMP;PRS
nom mma nnnom V;IMP;NEG;PRS
nom renom V;HAB+PROG;PRS
nom nna rennnom V;HAB+PROG;NEG;PST
nom nna rebɛnom V;PROG;PST+IMMED
nom rennnom V;HAB;NEG;FUT
nom mmbɛnomee V;PRF;NEG;PRS+IMMED
nom nnkɔnom V;NEG;PRS;LGSPEC1
nom bɛnom V;HAB;FUT
nom nomee V;HAB;PST
nom nna nnkɔnomee V;PRF;NEG;PST;LGSPEC1
nom nom V;HAB;PRS
nom nna renom V;HAB+PROG;PST
nom nnnom V;HAB;NEG;PRS
nom nna mmbɛnomee V;PRF;NEG;PST+IMMED
nom rebɛnom V;PROG;PRS+IMMED
nom nnom V;SBJV;PRS
nom kɔnomee V;PST;LGSPEC1
nom annnom V;HAB;NEG;PST
nom nna remmbɛnom V;PROG;NEG;PST+IMMED
nom mma nnnom V;SBJV;NEG;PRS
nom anom V;HAB+PRF;PRS
nom nna abɛnom V;PRF;PST+IMMED
ba ammbɛba V;NEG;PST+IMMED
ba mma mmba V;SBJV;NEG;PRS
ba rekɔba V;PROG;PRS;LGSPEC1
ba nna akɔba V;PRF;PST;LGSPEC1
ba abɛba V;PRF;PRS+IMMED
ba baee V;HAB;PST
ba remmbɛba V;PROG;NEG;PRS+IMMED
ba ammba V;HAB;NEG;PST
ba nna reba V;HAB+PROG;PST
ba nnkɔbaee V;PRF;NEG;PRS;LGSPEC1
ba nna rebɛba V;PROG;PST+IMMED
ba mmbaee V;HAB+PRF;NEG;PRS
ba rennkɔba V;PROG;NEG;PRS;LGSPEC1
ba mmba V;HAB;NEG;PRS
ba nnkɔba V;NEG;PRS;LGSPEC1
ba nna abɛba V;PRF;PST+IMMED
ba mma mmba V;IMP;NEG;PRS
ba remmba V;HAB+PROG;NEG;PRS
ba kɔba V;PRS;LGSPEC1
ba rebɛba V;PROG;PRS+IMMED
ba bɛba V;HAB;FUT
ba nna rennkɔba V;PROG;NEG;PST;LGSPEC1
ba ba V;NFIN
ba nna remmba V;HAB+PROG;NEG;PST
ba ba V;IMP;PRS
ba aba V;HAB+PRF;PRS
ba mmbɛbaee V;PRF;NEG;PRS+IMMED
ba nna mmbɛbaee V;PRF;NEG;PST+IMMED
ba akɔba V;PRF;PRS;LGSPEC1
ba nna rekɔba V;PROG;PST;LGSPEC1
ba bɛbaee V;PST+IMMED
ba nna remmbɛba V;PROG;NEG;PST+IMMED
ba kɔbaee V;PST;LGSPEC1
ba nna aba V;HAB+PRF;PST
ba mba V;SBJV;PRS
ba nna mmbaee V;HAB+PRF;NEG;PST
ba reba V;HAB+PROG;PRS
ba remmba V;HAB;NEG;FUT
ba nna nnkɔbaee V;PRF;NEG;PST;LGSPEC1
ba ammkɔba V;NEG;PST;LGSPEC1
ba ba V;HAB;PRS
suma rennsuma V;HAB+PROG;NEG;PRS
suma mma nnsuma V;IMP;NEG;PRS
suma asuma V;HAB+PRF;PRS
suma nna asuma V;HAB+PRF;PST
suma nna nnkɔsumaee V;PRF;NEG;PST;LGSPEC1
suma nsuma V;SBJV;PRS
suma bɛsumaee V;PST+IMMED
suma nna rebɛsuma V;PROG;PST+IMMED
suma nna rennkɔsuma V;PROG;NEG;PST;LGSPEC1
suma ammbɛsuma V;NEG;PST+IMMED
suma rekɔsuma V;PROG;PRS;LGSPEC1
suma suma V;IMP;PRS
suma nna rennsuma V;HAB+PROG;NEG;PST
suma resuma V;HAB+PROG;PRS
suma suma V;HAB;PRS
suma nna rekɔsuma V;PROG;PST;LGSPEC1
suma mmbɛsumaee V;PRF;NEG;PRS+IMMED
suma ammkɔsuma V;NEG;PST;LGSPEC1
suma nnsuma V;HAB;NEG;PRS
suma akɔsuma V;PRF;PRS;LGSPEC1
suma bɛsuma V;HAB;FUT
suma abɛsuma V;PRF;PRS+IMMED
suma annsuma V;HAB;NEG;PST
suma nna mmbɛsumaee V;PRF;NEG;PST+IMMED
suma rennkɔsuma V;PROG;NEG;PRS;LGSPEC1
suma remmbɛsuma V;PROG;NEG;PRS+IMMED
suma rennsuma V;HAB;NEG;FUT
suma rebɛsuma V;PROG;PRS+IMMED
suma nna resuma V;HAB+PROG;PST
suma nna akɔsuma V;PRF;PST;LGSPEC1
suma nna remmbɛsuma V;PROG;NEG;PST+IMMED
suma nnkɔsumaee V;PRF;NEG;PRS;LGSPEC1
suma kɔsumaee V;PST;LGSPEC1
suma nnsumaee V;HAB+PRF;NEG;PRS
suma mma nnsuma V;SBJV;NEG;PRS
suma nna abɛsuma V;PRF;PST+IMMED
suma kɔsuma V;PRS;LGSPEC1
suma suma V;NFIN
suma nnkɔsuma V;NEG;PRS;LGSPEC1
suma sumaee V;HAB;PST
suma nna nnsumaee V;HAB+PRF;NEG;PST
tow renntow V;HAB;NEG;FUT
tow nna abɛtow V;PRF;PST+IMMED
tow nntowee V;HAB+PRF;NEG;PRS
tow ammbɛtow V;NEG;PST+IMMED
tow nntow V;HAB;NEG;PRS
tow retow V;HAB+PROG;PRS
tow renntow V;HAB+PROG;NEG;PRS
tow kɔtow V;PRS;LGSPEC1
tow nnkɔtow V;NEG;PRS;LGSPEC1
tow tow V;NFIN
tow mmbɛtowee V;PRF;NEG;PRS+IMMED
tow nna nntowee V;HAB+PRF;NEG;PST
tow rekɔtow V;PROG;PRS;LGSPEC1
tow nna atow V;HAB+PRF;PST
tow towee V;HAB;PST
tow nna nnkɔtowee V;PRF;NEG;PST;LGSPEC1
tow abɛtow V;PRF;PRS+IMMED
tow atow V;HAB+PRF;PRS
tow nna akɔtow V;PRF;PST;LGSPEC1
tow ntow V;SBJV;PRS
tow akɔtow V;PRF;PRS;LGSPEC1
tow bɛtow V;HAB;FUT
tow nna rebɛtow V;PROG;PST+IMMED
tow remmbɛtow V;PROG;NEG;PRS+IMMED
tow ammkɔtow V;NEG;PST;LGSPEC1
tow nna rekɔtow V;PROG;PST;LGSPEC1
tow nna rennkɔtow V;PROG;NEG;PST;LGSPEC1
tow mma nntow V;IMP;NEG;PRS
tow mma nntow V;SBJV;NEG;PRS
tow nnkɔtowee V;PRF;NEG;PRS;LGSPEC1
tow nna retow V;HAB+PROG;PST
tow nna mmbɛtowee V;PRF;NEG;PST+IMMED
tow bɛtowee V;PST+IMMED
tow nna renntow V;HAB+PROG;NEG;PST
tow anntow V;HAB;NEG;PST
tow nna remmbɛtow V;PROG;NEG;PST+IMMED
tow rennkɔtow V;PROG;NEG;PRS;LGSPEC1
tow kɔtowee V;PST;LGSPEC1
tow rebɛtow V;PROG;PRS+IMMED
tow tow V;IMP;PRS
tow tow V;HAB;PRS
tɔn abɛtɔn V;PRF;PRS+IMMED
tɔn retɔn V;HAB+PROG;PRS
tɔn mma nntɔn V;SBJV;NEG;PRS
tɔn nna retɔn V;HAB+PROG;PST
tɔn mmbɛtɔnee V;PRF;NEG;PRS+IMMED
tɔn nnkɔtɔnee V;PRF;NEG;PRS;LGSPEC1
tɔn tɔn V;IMP;PRS
tɔn bɛtɔnee V;PST+IMMED
tɔn bɛtɔn V;HAB;FUT
tɔn mma nntɔn V;IMP;NEG;PRS
tɔn nna remmbɛtɔn V;PROG;NEG;PST+IMMED
tɔn renntɔn V;HAB+PROG;NEG;PRS
tɔn rebɛtɔn V;PROG;PRS+IMMED
tɔn tɔn V;NFIN
tɔn nntɔn V;HAB;NEG;PRS
tɔn tɔnee V;HAB;PST
tɔn remmbɛtɔn V;PROG;NEG;PRS+IMMED
tɔn rekɔtɔn V;PROG;PRS;LGSPEC1
tɔn nna akɔtɔn V;PRF;PST;LGSPEC1
tɔn nna nnkɔtɔnee V;PRF;NEG;PST;LGSPEC1
tɔn nna abɛtɔn V;PRF;PST+IMMED
tɔn renntɔn V;HAB;NEG;FUT
tɔn nna rekɔtɔn V;PROG;PST;LGSPEC1
tɔn kɔtɔnee V;PST;LGSPEC1
tɔn nntɔnee V;HAB+PRF;NEG;PRS
tɔn tɔn V;HAB;PRS
tɔn ntɔn V;SBJV;PRS
tɔn nna nntɔnee V;HAB+PRF;NEG;PST
tɔn ammkɔtɔn V;NEG;PST;LGSPEC1
tɔn nna mmbɛtɔnee V;PRF;NEG;PST+IMMED
tɔn nna renntɔn V;HAB+PROG;NEG;PST
tɔn kɔtɔn V;PRS;LGSPEC1
tɔn nna rennkɔtɔn V;PROG;NEG;PST;LGSPEC1
tɔn anntɔn V;HAB;NEG;PST
tɔn akɔtɔn V;PRF;PRS;LGSPEC1
tɔn nnkɔtɔn V;NEG;PRS;LGSPEC1
tɔn atɔn V;HAB+PRF;PRS
tɔn nna atɔn V;HAB+PRF;PST
tɔn nna rebɛtɔn V;PROG;PST+IMMED
tɔn rennkɔtɔn V;PROG;NEG;PRS;LGSPEC1
tɔn ammbɛtɔn V;NEG;PST+IMMED
|
37f1f556112fdb955a9e104879154cf55bda3241 | 430e7adb489914d378a5b0a27d8d41352fa45f3a | /scilab/example/3次系の安定余裕計算.sce | 091059b2277cccd6f389120e65422701e5d94554 | [] | 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 | 271 | sce | 3次系の安定余裕計算.sce | //3次系の安定余裕計算
s=%s;
G=1/(s*(s^2+2*s+4));
H=20;
croots=roots(denom(G*H)+numer(G*H))
sys=syslin('c',G*H);
gm=g_margin(sys)
pm0=p_margin(sys);
if pm0 < 0 then
pm = pm0+180
else
pm = pm0-180
end
xset("window",0);clf();bode(sys,0.1,1);
|
55357878418064600ee4e55ab26f3796274565b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1793/CH12/EX12.2/12Q2.sce | eedec04ee54a3b698e84b510cd614d96e0398441 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 12Q2.sce | clc
T3=16 // lb/in^2
Tf=25 // lb/in^2
T1=T3+Tf
a= asind((T1-T3)/(T1+T3)) // Mohr's circle
printf('a)Angle of friction,a = %f\n',a)
b= 45+ a/2
printf(' b)Angle b that the failure plane makes with the major principal plane = %f',b)
|
8bb065dbeaf9ed85d29822822271700459670f55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH1/EX1.1/Ex1_1.sce | 7a9b5298e614ed78e16fe2fd8381b59e79810e20 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,062 | sce | Ex1_1.sce | clc
// Va r i a b l e I n i t i a l i z a t i o n
Vm=230 //Supply Voltage in Volts
af=0 // Firing Angle of Converters in Field
Rf=200 //Field Resistance in ohm
T=50 //Load Torque in N-m
Kt=0.8 //Torque Constant in N-m/A^2
N=900 //Motor Speed in rpm
Ra=0.3 // Armature Resistance in ohm
//Solution
Vf=Vm*(1+cos(af))*(1/%pi)*1.414 //Voltage across Field in Volts
If=Vf/Rf //Field Current in Amp
Ia=T/(Kt*If) //Armature Current in Amp
w=(2*%pi*N)/60 //Angular Speed in rad/sec
Eb=Kt*If*w //Back Emf in Volts
Va=Eb+Ia*Ra // Voltage across Armature
A=%pi*Va*(1/Vm)*(1/1.414)
aa=acosd(A-1) //Firing Angle of Semi Converter in Armature Circuit
VaIa=Va*Ia //Power output of Converters in Armature Circuit in Watts
I=sqrt((180-aa)*(1/180))*Ia //Input Current
VA=Vm*I //Input VA
pf=VaIa/VA //Input Power Factor
//Result
printf('\n\n The Field Current=%0.1f Amp\n\n',If)
printf('\n\n The Firing Angle of Semi Converter in Armature Circuit=%0.1f degree\n\n',aa)
printf('\n\n The Power Factor of Semi Converter in Armature Circuit=%0.1f\n\n',pf)
|
da61930da1212a3ef301391f26039f8b41b970dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH14/EX14.16/106ex2.sce | b33aab490f71ef416ae8252feb965be25cf00361 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 775 | sce | 106ex2.sce |
//4*x^2+6*x+9
clear;
clc;
close;
x=poly(0,'x');
p=4*x^2+6*x+9
mprintf("is not a complete square")
//the 1st and 3rd terms are squares of 3and 2x
//for complete square the middle term must be +(2*sqrt(4x^2)*sqrt(9))=+12x
|
604d80a6d63a9b613f387b4db58d20c746ea7d2b | 048b7c76423fe27dee2e31a52bae93c95883614e | /macros/dwt.sci | 60dc7f654168718f1bc26901b0fb6d8e85524018 | [] | no_license | vu2swz/FOSSEE-Signal-Processing-Toolbox | aa5f283d050be62418dddbf41552f197b9949c4c | d97a4b7e2f0f25fb5cd94bd90a3b822592179d1e | refs/heads/master | 2021-08-19T20:06:19.346872 | 2017-11-27T09:57:21 | 2017-11-27T09:57:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 384 | sci | dwt.sci | function [U, V] = dwt(X, varargin)
funcprot(0);
rhs = argn(2)
if(rhs<2 | rhs>4)
error("Wrong number of input arguments.");
end
select(rhs)
case 2 then
[U, V] = callOctave("dwt", X, varargin(1));
case 3 then
[U, V] = callOctave("dwt", X, varargin(1), varargin(2));
case 4 then
[U, V] = callOctave("dwt", X, varargin(1), varargin(2), varargin(3));
end
endfunction
|
8bec4c0a13fbc6b97a2b2159eff318f206216fa4 | 29778da8b2321b9b111665ee097446f393795813 | /automatique/Td/td4/test_fonc_transfert.sce | e2edb92e12a81df04bf0a1ff93342f9ff000781b | [] | no_license | RomainCocogne/Elec3 | 947fe8590fcc084f496e0934c2bda195adb4d33f | 47833a7112d50c6278898ee388044d5364fb482c | refs/heads/master | 2020-04-27T02:23:00.159518 | 2019-08-26T22:29:00 | 2019-08-26T22:29:00 | 173,992,180 | 2 | 0 | null | 2019-05-16T14:59:40 | 2019-03-05T17:37:22 | Jupyter Notebook | UTF-8 | Scilab | false | false | 792 | sce | test_fonc_transfert.sce | clear;
xdel(winsid());
t=linspace (0,1E-2,1E4);
p=poly(0,'p');
K=0.47;
Taum=0.034;
Taue=0.0005;
M3=syslin('c',K/(1+Taum*p));
m3=csim('step',t,M3);
M2=syslin('c',K/((1+Taum*p)*(1+Taue*p)));
m2=csim('step',t,M2);
M1=syslin('c',K/(1+Taum*p+Taum*Taue*p*p));
m1=csim('step',t,M1);
C=syslin('c',(1+Taum*p)/(Taum*p))
M1bf=M1/(1+M1);
M2bf=M2/(1+M2);
M3bf=M3/(1+M3);
scf(1);
plot2d(t,[m1;m2;m3]',,leg='2nd ordre amorti @ 2 1er ordre en serie @ 1 seule cst de tps');
a=gcf(); a.figure_name='M1 M2 M3 indicielle';
scf(2);
evans(C*M1);
sgrid(1,2425.36);
a=gcf(); a.figure_name='Lieu evans M1*C';
scf(3);
evans(C*M2);
sgrid(1,2425.36);
a=gcf(); a.figure_name='Lieu evans M2*C';
scf(4);
evans(C*M3);
sgrid(1,2425.36);
a=gcf(); a.figure_name='Lieu evans M3*C';
|
093b7f7f7aa53348f04a3abdbe2ac935de54226b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH5/EX5.10/5_10.sce | 9d32e3f74b8ef4fc22d5d5b8b168f86f3bedd03d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 226 | sce | 5_10.sce | clc
//initialisation of variables
Q= 200 //gpm
d= 2 //in
S= 0.91
f= 0.05
L= 800 //ft
g= 32.2 //ft/sec^2
//CALCULATIONS
v= Q*4/(%pi*3.12*d^2)
h= 2.598*S*f*L*v^2/(2*g)
//RESULTS
printf ('Pressure drop = %.f psi',h)
|
b08b91c98345195fea51c55917e352a1676bb3ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH5/EX5.9/ex5_9.sce | 97a18c65e292c653f4c64dd370cc5b98bb962084 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 582 | sce | ex5_9.sce | // Exa 5.9
clc;
clear;
close;
// Given data
alpha = 1.414;
f_c = 1.5;// in kHz
f_c = f_c * 10^3;// in Hz
C1 = 2/alpha;// in F
C2 = alpha/2;// in F
R1 = 1;// in ohm
R2 = R1;// in ohm
R_F = 2;// in ohm
Omega_c = 2*%pi*f_c;// in rad/sec
R = 1/Omega_c;// in ohm
R = R * 10^7;// in ohm
R1 = R;// in ohm
R2= R1;// in ohm
R_F = 2*R;// in ohm
C1 = C1/10^7;// in F
C2 = C2/10^7;// in F
disp(R1*10^-3,"The value of R1 and R2 in k ohm");
disp(C1*10^9,"The value of C1 in nF is");
disp(C2*10^9,"The value of C2 in nF is");
disp(R_F*10^-3,"The value of R_F in k ohm");
|
1a5d4d6db31f7bae28c3d0beca195620ad59176f | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/1.1/Unix/scilab-1.1/macros/percent/%lsse.sci | db31e4b51a98b30378a1b14f86dbac48e2b5e150 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 371 | sci | %lsse.sci | //<f>=%lsse(i,j,f)
//<f>=%lsse(i,j,s) extrait le sous systeme s1 qui correspond aux sorties
//(entrees) designees par le vecteur d'indice i (j) du systeme lineaire
//decrit par sa representation d'etat s,
//Cette macro correspond a l'operation s1=s(i,j)
//!
// origine s. steer inria 1988
//
[a,b,c,d,x0,dom]=f(2:7)
f=list('lss',a,b(:,j),c(i,:),d(i,j),x0,dom)
//end
|
926ced90d0d4a9b560acce6d210013f3a46b6604 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.australian-10-1tra/result3.tst | 0a9470921e2da53bab2abbd5c102d5a276ae374d | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 760 | tst | result3.tst | @relation australian
@attribute A1{0,1}
@attribute A2 real[16.0,8025.0]
@attribute A3 real[0.0,26335.0]
@attribute A4{1,2,3}
@attribute A5 integer[1,14]
@attribute A6 integer[1,9]
@attribute A7 real[0.0,14415.0]
@attribute A8{0,1}
@attribute A9{0,1}
@attribute A10 integer[0,67]
@attribute A11{0,1}
@attribute A12{1,2,3}
@attribute A13 integer[0,2000]
@attribute A14 integer[1,100001]
@attribute Class{0,1}
@inputs A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14
@outputs Class
@data
1 1
1 1
0 ?
1 1
0 0
1 1
0 0
0 ?
1 0
0 0
0 0
1 1
0 1
1 1
0 0
0 0
1 1
1 1
0 0
0 0
0 0
1 1
0 1
0 0
0 0
0 0
0 0
0 0
1 1
1 1
1 1
1 1
0 0
1 1
0 0
0 0
0 0
0 0
0 0
1 1
1 1
1 1
1 0
1 1
1 1
0 ?
0 0
1 1
0 0
1 0
1 1
0 0
0 0
1 1
1 1
0 0
0 0
0 1
0 0
0 0
1 0
0 0
1 1
1 1
0 0
0 0
1 1
0 0
1 ?
|
adf723520677dc0af31c6c82500318d18f3844ea | 0fe450b52908c4de1f70576ebfbce8d2b98ec427 | /src/test_ods_fsed_2_k.tst | 47c712f5fef42ec9b22088b76e9b6119ef2faf0c | [
"Zlib",
"BSD-3-Clause",
"MIT",
"OML"
] | permissive | technologiespro/ciyam | 41c75cce77fed8db16439b10698c6fd0db10d4d5 | 5a63b84251132b393221500edb0e285cc4f38a7d | refs/heads/master | 2020-12-02T10:05:46.529201 | 2017-07-09T08:55:53 | 2017-07-09T08:55:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,305 | tst | test_ods_fsed_2_k.tst | ** File Info
Version Id = 65536
Num Trans = 0
Num Writers = 0
Init Tranlog = 0
Total Entries = 5
Tranlog Offset = 0
Transaction Id = 79
Index Free List = 4
Total Size of Data = 23512
Data Transformation Id = 77
Index Transformation Id = 79
** Entry Info for: all
num: 0000000000000000 pos: 0000000000000000 len: 0000000000000100
txn: 000000000000004d txo: 0000000000000000 flags: lk=0 tx=0
num: 0000000000000001 pos: 0000000000000000 len: 0000000000000000
txn: 0000000000000049 txo: 0000000000000000 flags: lk=0 tx=3
(freelist entry) link: <at end>
num: 0000000000000002 pos: 0000000000001b34 len: 0000000000000400
txn: 000000000000004e txo: 0000000000000000 flags: lk=0 tx=0
num: 0000000000000003 pos: 0000000000000002 len: 0000000000000000
txn: 000000000000004c txo: 0000000000000000 flags: lk=0 tx=3
(freelist entry) link: 0000000000000001
num: 0000000000000004 pos: 0000000000003568 len: 0000000000000c3c
txn: 0000000000000008 txo: 0000000000000000 flags: lk=0 tx=0
** Freelist Info
First freelist entry = 3
Iterating over freelist...(OK)
Last freelist entry = 1
Total freelist entries = 2
|
8fabf50507fb5d2947f8043a1833d46722a180c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH15/EX15.3/Ex15_3.sce | 3c9fe3b6f18016081097946c10dd114967bb11b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | Ex15_3.sce | clc;
Av=200;
Vout=8;
Vin=Vout/Av;
V1=6;
V2=-6;
Vpk1=V1-2;
Vpk2=V2+2;
disp('V+',Vpk1,"Vpk1=");
disp('V-',Vpk2,"Vpk1=");
disp('mVpp',Vin*1000,"Vin=");
|
9b12ccc9a753171aa8dc85422e592ee588e53ea2 | caafd05eb866a2bd249681ceeb5734ca2df71833 | /TP3/lanccalcg.sce | b9e79f47e90dee65525c382368c6bde578506e05 | [
"MIT"
] | permissive | mmewen/MT09-numerical-analysis | 5fb1f251e86f9d43d7eeb23ce7bcc91d6ca3fa8b | cde3871aa885811bc31166e778b2a4f052e74b64 | refs/heads/master | 2021-01-11T22:11:18.631204 | 2017-01-14T10:59:23 | 2017-01-14T10:59:23 | 78,934,966 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | lanccalcg.sce | clear
exec("calcg.sci", -1);
T = [ 1 3 4.5 5 6 ]';
cc = [ 1 0 1 0; 5 0 -8/9 0 ; 3 0 16 0 ; 7 0 -8 0 ];
z = calcg(3, T, cc);
disp(z)
z = calcg(5, T, cc);
disp(z)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.