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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4e0ff9c1b92376d1cfc4ba04fafe80fd9af6db2d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1460/CH8/EX8.3/8_3.sce
|
95c0d65dcd298fe01e67428dee809dc6091ab4cd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 445
|
sce
|
8_3.sce
|
clc
//initialization of variables
Pi=14 //lb/in^2
T1=70+460 //F
ratio=13
T3=2500+460 //F
cv=0.171
cp=0.23
R=53.3
g=1.4
//calculations
T2=T1*(ratio)^(g-1)
v3ratio=T3/T2
cutoff= (v3ratio-1)/(ratio-1)
v1ratio=ratio/v3ratio
T4=T3*(1/v1ratio)^(g-1)
eta=1- cv*(T4-T1)/(T3-T2)/cp
percent=eta*100
//results
printf("cut off ratio = %.4f",cutoff)
printf("\n T end expansion = %d R",T4)
printf("\n Thermal efficiency = %.1f",percent)
|
85d5749f8f9003d1fa58b57b8bf8c0e36978c906
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1754/CH2/EX2.7/Exa2_7.sce
|
5762b924fe27af3ac62d11fa49ef756d4e5a0799
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 185
|
sce
|
Exa2_7.sce
|
//Exa 2.7
clc;
clear;
close;
//Given data
deltaVEB=200;//in mVolt
deltaIE=5;//in mA
ri=deltaVEB*10^-3/(deltaIE*10^-3);//in Ohm
disp(ri,"Input resistane of transistor in Ohm :");
|
2df5cc69a368abe72d75ab14210b2e9a3068ebb4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/991/CH4/EX4.9/Example4_9.sce
|
e62bec9dbd4d376f1ae8d54cdd4e06f8c29cee3a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 622
|
sce
|
Example4_9.sce
|
//Example 4.9.
clc
ni=1.5*10^10
un=1300
up=500
q=1.6*10^-19
sigma=300
disp("(a) Concentration in N-type silicon")
format(10)
n=sigma/(q*un)
disp("The conductivity of an N-type Silicon is sigma = q*n*un")
disp(n,"Concentratoin of electrons, n(cm^-3) = sigma / q*un =")
p=ni^2/n
disp(p,"Hence, concentration of holes, p(cm^-3) = ni^2 / n =")
disp("(b) Concentration in P-type silicon")
p=sigma/(q*up)
disp("The conductivity of a P-type Silicon is sigma = q*p*up")
disp(p,"Hence, concentratoin of holes, p(cm^-3) = sigma / q*up =")
n=ni^2/p
disp(n,"and concentration of electrons, n(cm^-3) = ni^2 / p =")
|
1fa716bcaa7e96919a6c1ad2fa2d47129dd83538
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2318/CH5/EX5.3.b/ex_5_3_b.sce
|
ec1a2a0fc321197a7fea3c3043524a52ba74ff36
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 231
|
sce
|
ex_5_3_b.sce
|
//Example 5.3.b:frequency
clc;
clear;
close;
//given data :
theta1=12.5;
theta2=10;
lamda=log(theta1/theta2);
x=lamda^2;//
y=x/(%pi^2-x);//
y1=sqrt(y);//
f=0.125;//Hz
fo=f/(sqrt(1-y1^2));//Hz
disp(fo,"undamped frequency is,(Hz)=")
|
f3344a5614bdfbf75dc418fcda54b7c37deb4e5a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1163/CH11/EX11.4/example_11_4.sce
|
157a3a7d1321d97ebeee38460961271ef248b793
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 619
|
sce
|
example_11_4.sce
|
clear;
clc;
disp("--------------Example 11.4---------------")
bandwidth= 1*10^6; // 1 Mbps
delay = 20*10^-3; // 20 ms
bandwidth_delay_product=bandwidth*delay;
frame_length=1000; // each frame has 1000 bits
utilization_percentage = (frame_length/bandwidth_delay_product)*100; // formula
printf("\nThe bandwidth-delay product is %d. Hence the system can send %d bits during the time it takes for the data to go from\nthe sender to the receiver and then back again.\nThe utilization percentage of the link is %d percent.",bandwidth_delay_product,bandwidth_delay_product,utilization_percentage); // display result
|
364968d09b71cb75a2e099977a05c2b2b3cc56d2
|
94f4543f1ccab8acf04c91798a83a0171dd5fa44
|
/Simulations_numériques_Réthoré_Ghazouani.sci
|
ef87d5f83e73f6b4a0b401f88b4fcbe63c223091
|
[] |
no_license
|
owi0wi/scilab_DM_math
|
c699b5290926d2b3961e074f2b29034ed0cd2def
|
c6f177a6fec2c1846aedc4c233c439b5c375987f
|
refs/heads/master
| 2021-01-10T05:21:59.626416
| 2015-06-02T21:03:36
| 2015-06-02T21:03:36
| 36,432,468
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 10,243
|
sci
|
Simulations_numériques_Réthoré_Ghazouani.sci
|
//Réthoré Sophie
//Ghazouani Soukaina
//***************Exercice 1: simulation de lois de probabilité********************//
//_______Partie 1_______
//1. cette fonction permet de générer N nombres aléatoires de loi uniforme sur [0,1]
function X=genere_nb_aleatoire(n, x0)
//méthode minimal standard : générateurs a congruence linéaire non optimisés
a= 16807;
m=(2^31)-1
c=0;
//m=10^8;
X = zeros(n,1);
X(1,1) = x0
for k = 1 : n
X(k+1,1) = modulo(a*X(k,1) + c,m) ;
//X(k+1,1) = a*X(k,1) + c * modulo(m);
end
//on ramène les valeurs générées à des valeurs comprises entre 0 et 1
for i=1:n+1
X(i)=X(i)/max(X);
end
//affichage du résultat
//plot(X);
endfunction
//3. cette fonction permet de réaliser un test du Chi2 : "les nombres générés suivent la loi uniforme sur [0,1]"
function test_chi2(X)
// sous l'hypothèse : la sequence en paramètres suit la loi Uniforme sur [0,1]
// loi uniforme de parametre p = 1/N
//les valeurs obtenues sont situées entre 0 et 1
//disp ('valeur de X',X)
//n : nombre de valeurs pseudo aléatoires générées
n= size(X,1)-1;
//disp('valeur de n');
//disp (n);
classe1 = 0;
classe2 = 0;
classe3 = 0;
classe4 = 0;
classe5 = 0;
classe6 = 0;
classe7 = 0;
classe8 = 0;
classe9 = 0;
classe10 = 0;
//on récupère un tableau contenant les valeurs générées aléatoirement
// on parcours ce tableau et on classifie les valeurs selon plusieurs classes.
for i=1:1:n
//disp (X(i));
if X(i)>=0 & X(i) <0.1
//classe1(i)=X(i);
classe1=classe1+1;
elseif X(i)>=0.1 & X(i) <0.2
//classe2(i)=X(i);
classe2=classe2+1;
elseif X(i)>=0.2 & X(i) <0.3
//classe3(i)=X(i);
classe3=classe3+1;
elseif X(i)>=0.3 & X(i) <0.4
//classe4(i)=X(i);
classe4=classe4+1;
elseif X(i)>=0.4 & X(i) <0.5
//classe5(i)=X(i);
classe5=classe5+1;
elseif X(i)>=0.5 & X(i) <0.6
//classe6(i)=X(i);
classe6=classe6+1;
elseif X(i)>=0.6 & X(i) <0.7
//classe7(i)=X(i);
classe7=classe7+1;
elseif X(i)>=0.7 & X(i) <0.8
//classe8(i)=X(i);
classe8=classe8+1;
elseif X(i)>=0.8 & X(i) <0.9
//classe9(i)=X(i);
classe9=classe9+1;
elseif X(i)>=0.9 & X(i) <=1
//classe10(i)=X(i);
classe10=classe10+1;
end
end
//disp ('class', classe1);
p=1/10;
//calcul de D^2
//d2=somme de k=1 à 10 de (nb de familles concernées par ce cas - n . p)/ n.p
d2= (((classe1-n*p)^2)/(n*p)) + (((classe2-n*p)^2)/(n*p)) + (((classe3-n*p)^2)/(n*p)) + (((classe4-n*p)^2)/(n*p)) + (((classe5-n*p)^2)/(n*p)) + (((classe6-n*p)^2)/(n*p)) + (((classe7-n*p)^2)/(n*p)) + (((classe8-n*p)^2)/(n*p)) + (((classe9-n*p)^2)/(n*p)) + (((classe10-n*p)^2)/(n*p));
disp('d2', d2);
// d2 suit la loi du chi2 de 9
// pour un seuil de 5%
// selon le tableau le résultat seuil est 16,919
if d2 > 16.919 then
disp('le phénomène observé navait que 5% de chance de se produire donc on rejette H0 et la séquence observée ne suit pas une loi uniforme sur [0,1]');
else
disp('la séquence observée suit une loi uniforme selon le test du chi2') ;
end
endfunction
function methode_du_rejet()
//méthode du rejet
// X=zeros( 1 , 10000 ) ;
// for i =1:10000;
// x=rand ( 1 , 2 ) ;
// while x(2)> sin (%pi * x( 1 ) ) ,
// x=rand ( 1 , 2 ) ;
// end ;
// X( i )=x ( 1 ) ;
// end ;
//histplot(100 ,X) ;
//Y=[ 0 : 0.05 : 1 ] ;
//plot2d (Y,%pi * sin(%pi * Y) / 2 ) ;
endfunction
function loi_deux(X,lambda)
n=size(X,1)-1;
x=zeros(n);
//disp('n=',n);
for i=1:n
//j=1-X(i);
//disp('X(i)=',X(i));
if (X(i)<>0) then
x(i) = -(log2(1-X(i))/lambda);
end
end
disp ('x=',x);
histplot([0:0.1:1] ,X) ;
endfunction
// exercice 2 loi des grands nombres
//Question 1 on choisi une loi de Bernoulli pour pour les variables Xi avec 1<i<N
// On note p le paramètre de la variable aléatoire Xi.
// Alors : E[Xi]=p l'ecart-type = sqrt(pq) avec q= 1-p.
//n représente le nombre d'éxpériences
//k représente le nombre de réalisations
function [x,m,sigma,v]=repres4(n,k)
x = rand(k,n); // vecteur ligne aleatoire
m=mean(x);
disp(' la moyenne est:', m);
//calcule de la variance
v=variance(x);
// calcule de l'écart type
sigma=sqrt(v);
disp(' l écart type est :' ,v);
plot(x);
endfunction
// Exercice 3 : Simulation du théorème de la limite centrale
//partie 1: representation de l'histogramme de la va Yn selon la loi uniforme
function Yn=hist_loi_uniforme(n,k)
// choisir la taille de N
// n=input('Taille de l''echantillon, N=');
//choisir le nombre de réalisations
// k=input('Nombre de réalisations, k=');
x=rand(k,n);
// la moyenne d'une loi uniforme
E=.5;
// l'ecart type est donné par :
sigma=1/sqrt(12);
// initialisation de la matrice Yn
Yn=zeros(1,k);
for i=1:k
Yn(i)=(sum(x(i,:))-n*E)/(sqrt(n)*sigma);
end
clf();
histplot(50,Yn);
endfunction
//partie 1: representation de l'histogramme de la va Yn selon une loi continue
function Yn= loiexp2(n,lambda,k)
// choisir la taille de N
// n=input('Taille de l''echantillon, n=');
//lambda=input('choisir lambda, lambda=');
//choisir le nombre de réalisations
//k=input('Nombre de réalisations, k=');
x = grand(n,k,"exp",1/lambda);
// la moyenne de la loi exp
E=1/lambda;
// l'ecart type est donné par :
sigma=1/sqrt(lambda*lambda);
// initialisation de la matrice Yn
Yn=zeros(1,k);
for i=1:k
Yn(i)=(sum(x(i,:))-n*E)/(sqrt(n)*sigma)
end
clf();
histplot(10,Yn)
endfunction
//partie 2: representation de l'histogramme de la va Yn selon une loi binomiale
function Yn=hist_loi_binomiale(n,N,p)
// choisir la taille de N
//n=input('Taille de l''echantillon, n=');
//choisir le nombre de réalisations
//N=input('Nombre de réalisations, N=');
//p=input('Entrez le parametre , p=');
//grand permet de generer des nombres aléatoires entre 1 et N suivant une loi binomiale
x = grand(N,1,"bin", n,p);
// la moyenne d'une loi binomiale
E=n*p;
q=1-p;
// l'ecart type est donné par :
sigma=sqrt(E*q) ;
// initialisation de la matrice Yn
Yn=zeros(1,N);
for i=1:N
Yn(i)=(sum(x(i,:))-n*E)/(sqrt(n)*sigma);
end
clf();
classes = linspace(0,10,0.5);
histplot(classes,Yn);
endfunction
//programme principal
function main()
//test avec le générateur pseudo-aléatoire créé
subplot(221);
X1=genere_nb_aleatoire(100,1);
//plot(X1);
test_chi2(X1);
//fonction permettant de représenter une fonction par un histogramme
histplot([0:0.1:1],X1);
subplot(222);
X2=genere_nb_aleatoire(1000, 1);
//plot(X2);
test_chi2(X2);
histplot([0:0.01:1],X2);
subplot(223);
X3=genere_nb_aleatoire(10000, 1);
histplot([0:0.01:1],X3);
test_chi2(X3);
//plot(X3);
subplot(224);
X4=genere_nb_aleatoire(10, 1);
//plot(X4);
histplot([0:0.01:1],X4);
test_chi2(X4);
//test avec la méthode rand de scilab
subplot(221);
X1r=rand(100,1,"uniform");
//fonction permettant de représenter une fonction par un histogramme
histplot([0:0.01:1],X1r, style=2);
subplot(222);
X2r=rand(1000,1,"uniform");
histplot([0:0.01:1],X2r, style = 2);
subplot(223);
X3r=rand(10000,1,"uniform");
histplot([0:0.01:1],X3r, style=2);
subplot(224);
X4r=rand(10,1,"uniform");
histplot([0:0.01:1],X4r, style=2);
test_chi2(X1r);
test_chi2(X2r);
test_chi2(X3r);
test_chi2(X4r);
//partie 2
for lambda=0.5:0.5:1.5
//loi_deux(X2,lambda);
end
// exercice 2
// representation graphique d'une réalisation avec N=100
subplot(221);
disp('representation graphique d une réalisation avec N=100')
repres4(100,1);
// la moyenne obtenue pour N=10
subplot(222);
disp('calcul de la moyenne et l écart-type pour N 10')
repres4(10,1)
// la moyenne obtenue pour N=20
subplot(223);
disp('calcul de la moyenne et l écart-type pour N 20')
repres4(20,1);
// representation graphique de 10 réalisations avec N=100
subplot(224);
disp('représentation graphique de 10 réalisations avec N=100 et calcul de la moyenne et l écart-type ')
repres4(100,10);
//exercice 3
// partie 1
// histogramme de Yn selon la loi uniforme avec N=100 et K=10 ( N représente la Taille de l''echantillon et K le nombre de réalisations)
disp('histogramme de Yn selon la loi uniforme avec N=100 et K=10 ( N représente la Taille de l''echantillon et K le nombre de réalisations)')
hist_loi_uniforme(100,10);
xtitle("loi uniforme ");
// histogramme de Yn selon la loi exponnentielle avec N=100 et K=10 et lambda 1.6 ( N représente la Taille de l''echantillon et K le nombre de réalisations)
disp('histogramme de Yn selon la exponnentielle avec N=100 et K=10 et lambda 1.6( N représente la Taille de l''echantillon et K le nombre de réalisations)')
loiexp2(1000,3,30);
xtitle("loi exponnentielle");
disp('histogramme de Yn selon la binomiale avec N=100 et K=7 et p 0.03( N représente la Taille de l''echantillon et K le nombre de réalisations)')
hist_loi_binomiale(100,7,0.03);
xtitle("loi binomiale avec p=0.03");
disp('histogramme de Yn selon la binomiale avec N=1000 et K=7 et p 0.5( N représente la Taille de l''echantillon et K le nombre de réalisations)')
hist_loi_binomiale(1000,7,0.5);
xtitle("loi binomiale avec p =0.5");
endfunction
|
a36c4cf8e3783756e5740f3eac60c022659cadd3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/63/CH2/EX2.1/Exa2_1.sci
|
2f15892f582961ee645cb1eb9da41c7a9ecbbfcf
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 193
|
sci
|
Exa2_1.sci
|
//Determine RMS noise voltage
f1 = 18e+6;
f2 = 20e+6;
R = 10e+3;
T = 27;
k = 1.38e-23;
df = f2-f1;
T = T + 273;
Vn = sqrt(4*k*T*df*R);
disp(Vn, 'RMS noise voltage is (in V)')
|
881f86a3efc7cfddc34c878df699e7b48b510875
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/761/CH2/EX2.10/2_10.sce
|
bed94e149e7670b9084507676546666940bc801f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 583
|
sce
|
2_10.sce
|
clc;
//page no 89
// prob no 2.10
// refer fig 2.40
P=10;f_ref=10*10^3;M=10;
//consider
N=1;
// With a fixed-modulus prescalar, the min freq step is
step_size=M*f_ref;
// With the two-modulus system, let the main divider modulus N remain constant & increase the modulus m to (m+1) to find how much the freq changes.
// for 1st case, o/p freq
fo=(M+N*P)*f_ref;
// for 2nd case where leave N alone but changes M to M+1, new o/p freq
fo_=(M+1+N*P)*f_ref;
// The difference is
f= fo_-fo;
disp('Hz',f,'The step size that would have been obtained without prescaling');
|
8be9da56a3084e44fcb263264263c97578e568d7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/788/CH13/EX13.13.b/13_13_soln.sce
|
49f1a885723302e9114dbbe330ec8ebd349b5019
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 587
|
sce
|
13_13_soln.sce
|
clc;
pathname=get_absolute_file_path('13_13_soln.sce')
filename=pathname+filesep()+'13_13_data.sci'
exec(filename)
// Solution:
// atmospheric temperature in kelvin,
T1=T1+273; //K
// temperature of air in kelvin in pneumatic cylinder,
T2=T2+273; //K
// absolute pneumatic cylinder pressure,
p2=p2+101; //kPa abs
// flow-rate of air consumed by cylinder,
Q2=Q1*(p1/p2)*(T2/T1); //m^3/min
// reciprocation rate of piston,
N=floor(Q2/((%pi/4)*(d/1000)^2*(L/1000))); //cycles/min
// Results:
printf("\n Results: ")
printf("\n The reciprocation rate of piston is %.0f cycles/min.",N)
|
f606c6dde4f5556b8d336e8894631450243d6884
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3739/CH3/EX3.9/EX3_9.sce
|
c947d619899a63fdba4cd5a28f9ebcb283ad1bf3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 697
|
sce
|
EX3_9.sce
|
//Chapter 3, Example 3.9, page 89
clc
//Initialisation
rh=-1
s=4 //sigma in S/m
f=5*10**9 //frequency in Hz
eo=8.85*10**-12 //permitivity of free space
er=75 //permitivity of medium
w1=30*3.14*180**-1 //in radians
pi=3.14
//Calculation
w=2*pi*f
x=s*(w*eo)**-1
a=sin(w1)-sqrt((er-x)-cos(w1)**2)
a1=sin(w1)+sqrt((er-x)-cos(w1)**2)
rh1=a/a1
b1=(er-x)*sin(w1)-sqrt((er-x)-cos(w1)**2)
b2=(er-x)*sin(w1)+sqrt((er-x)-cos(w1)**2)
rv=-b1/b2
//Results
printf("(2) X = %.1f",x)
printf("\n(3) Rh = %.3f",rh1)
printf("\n Rv = %.1f",rv)
|
4dd274ccf094d934e3bd52461fdd0ad3d941c624
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/291/CH14/EX14.3c/eg14_3c.sce
|
67c17e8196bb13357838960348fb01a6e354f47b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 498
|
sce
|
eg14_3c.sce
|
T = 500;
alpha = 0.05;
r = 10;
val1 = cdfchi("X", 2*r, 1-alpha/2, alpha/2);
val2 = cdfchi("X", 2*r, alpha/2, 1- alpha/2);
int1= 2*T/val1;
int2= 2*T/val2;
disp("The 95% confidence interval is");
disp(int1);
disp(int2, "to");
//The confidence interval is from 29.27 to 103.52 whereas my solution in Scilab is 29.265774 to
104.26683 because of the difference in the value of chi-square(0.975, 30). The textbook says the value is
9.66 whereas scilab calculates its value as 9.5907774 .
|
6d02a16525eed65894b68030f4969c5046f314d5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/662/CH3/EX3.3/ex3_3.sce
|
dbbbc5c8adde704db87935088b6203d4506e1d28
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
ex3_3.sce
|
//Rxample 3.3
//floating point operands
r1=-0.66;
r2=4.50;
printf("\na+b=%f", r1+r2);
printf("\na-b= %f", r1-r2);
printf("\na*b= %f", r1*r2);
printf("\na/b= %f\n", r1/r2);
|
4ae4c304d333b5fad5e5e585418a3fe403e41116
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2234/CH4/EX4.3/ex4_3.sce
|
62c67f5ceadb434fb44b5afa1b8e3c08a52795c3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 185
|
sce
|
ex4_3.sce
|
clc;
q1=2*10^-7; //charge in C
q2=3*10^-7; //charge in C
r=30*10^-2; //r in m
F=(9*10^9)*((q1*q2)/r^2); //calculating F
disp(F,"Force in Newton = "); //displaying result
|
42a1f466b4b3400af5ed6faa40db7bd88e7f8a38
|
2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab
|
/macros/imhistmatch.sci
|
d44a4ed52770dcdd3ee43e4f6b137b1bce25b7d8
|
[] |
no_license
|
shreyneil/FOSSEE-Image-Processing-Toolbox
|
f315a82c325b2d6cbd0611689f3e30071a38490d
|
dd1cbd0dcbe0c3dd11d6ce1ab205b4b72011ae56
|
refs/heads/master
| 2020-12-02T16:26:13.755637
| 2017-07-07T19:22:33
| 2017-07-07T19:22:33
| 96,552,147
| 0
| 0
| null | 2017-07-07T15:32:15
| 2017-07-07T15:32:15
| null |
UTF-8
|
Scilab
| false
| false
| 1,658
|
sci
|
imhistmatch.sci
|
// Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// 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
// Author: Shreyash Sharma
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [outputImg]=imhistmatch(inputImage,refImage,varargin)
// This function is used to adjust histogram of 2-D image to match histogram of reference image.
//
// Calling Sequence
// B = imhistmatch(A,ref)
// B = imhistmatch(A,ref,nbins)
// [B] = imhistmatch(___)
//
// Parameters
// A: image matrix of the source image.
// ref: image matrix of the reference image.
// B : output image with it's histogram matching similar to a given reference image.
//
// Description
// B = imhistmatch(A,ref) transforms the 2-D grayscale or truecolor image A returning output image B whose histogram approximately matches the histogram of the reference image ref.
//
// Examples
// i = imread('color.png',0);
// i1 = imread('grey.png',0);
// i2 = imhistmatch(i,i1);
// imshow(i2);
//
[lhs rhs]=argn(0);
if rhs>3
error(msprintf(" Too many input arguments"));
end
inputList=mattolist(inputImage);
refList=mattolist(refImage);
select rhs
case 2 then
outputList=raw_imhistmatch(inputList,refList);
case 3 then
outputList=raw_imhistmatch(inputList,refList,varargin(1));
end
for i=1:size(outputList)
outputImg(:,:,i)=outputList(i)
end
endfunction
|
4dd7bc4bbd073bc0ed95776be1752261b074fec2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/991/CH3/EX3.2/Example3_2.sce
|
1892e8982481ccb861628d5fabb45c9cf2858352
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 415
|
sce
|
Example3_2.sce
|
//Example 3.2.
format(6)
me=1000*9.1*10^-31
disp(me,"Mass of the charged particle(kg) = 1000 times the mass of an electron =")
disp("The charge of the partical = 1.6*10^-19 C")
q=1.6*10^-19 //charge of the particle
V=1000 //potential difference
format(8)
v=sqrt(2*q*V/me)
disp(v,"Therefore, The velocity, v(m/s) = sqrt(2*q*V/me) =")
ke=(q*V)/(1.6*10^-19) // in eV
disp(ke,"Kinetic energy(eV) = q x V =")
|
f0b7103623a7c176bd23bfc0706e88d2e8502b91
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2939/CH4/EX4.8/Ex4_8.sce
|
1f653b30e30487d7eeb039aa7244a3da4ff14fc4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 608
|
sce
|
Ex4_8.sce
|
// Ex4_8
clc;
// Given:
E1=0.059;
E2=2.5;
E3=1.33;
Ei=0;
Ef=0;
// Solution:
// delta E for 1,2 & 3 photon
dE1=E1-Ei;
dE2=E2-E3;
dE3=E3-Ef;
// delta I for 1,2 & 3 photon
dI1=2-5;
dI2=4-2;
dI3=2-0;
// EL/ML for 1,2 & 3 photon
ELML1=3+1+1
ELML2=2+1+1;
ELML3=2+1+1;
printf("\n For first photon, dE1=%f MeV, dI1=%f, since EL/ML1=%f & (L+PI+PF) is odd, M3",dE1,dI1,ELML1)
printf("\n For second photon, dE2=%f MeV, dI2=%f,since EL/ML2=%f & (L+PI+PF) is even, E2",dE2,dI2,ELML2)
printf("\n For third photon, dE3=%f MeV, d3I=%f, since EL/ML3=%f & (L+PI+PF) is even, E2",dE3,dI3,ELML3)
|
d8f064bdf4cbd130664742f7ec46de0b20d38e42
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3129/CH4/EX4.6/Ex4_6.sce
|
6146930ebe66671548a94d6773d097f745fc50fd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 880
|
sce
|
Ex4_6.sce
|
//Finding the Snubber Values for Limiting dv/dt and di/dt Values of a BJT Switch
//Example 4.6(Page No- 154)
clc
clear
//given data
fs = 10*10^3;//kHz
Vs = 220;//V
Il = 100;//A
Vce_sat = 0;//V
td = 0;
tr = 3*10^-6//sec
tf = 1.2*10^-6//sec
//part(a)
Ls = (Vs*tr)/Il;
printf('(a)\t Ls: %1.1f uH',Ls*10^6)
//part(b)
Cs = (Il*tf)/Vs;
printf('\n (b)\t Cs: %1.2f uF',Cs*10^6)
//part(c)
Rs = 2*sqrt(Ls/Cs);
printf('\n (c)\t Rs for critically damped condition: %1.2f Ohm',Rs)
//part(d)
Rs = 1/(3*fs*Cs);
printf('\n (d)\t Rs, if discharge time is limited to one third of switching period: %2.1f Ohm',Rs)
//part(e)
Rs = Vs/(0.1*Il);
printf('\n (e)\t Rs, if the peak discharge current is limited to 10%% of load current: %d Ohm',Rs)
//part(f)
Ps = 0.5*Cs*Vs^2*fs;
printf('\n (f)\t The snubber loss, negliecting the loss in diode Ds, is %3.2fW',Ps)
|
1ad7345cc935296caf2200fe7de25556680ba67a
|
18bf68cdf766092ccdcba8d231e8140063833a5a
|
/DelayMeasurementbyCorrelation.sce
|
defcfc2f711483657411349d4f2ba7de1b327b2f
|
[] |
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
| 395
|
sce
|
DelayMeasurementbyCorrelation.sce
|
clear; clf; clc;
t = 0:0.01:10;
x1 = sin(2*%pi*1*t);
x2 = zeros(1:600);
x = [x1 x2];
y1 = sin(2*%pi*1*t);
y2 = zeros(1:300);
y = [y2 y1 ];
[z, I] = xcorr(x,y);
subplot(311);
plot(x);
title("Delay measurement","fontsize",4)
ylabel("x","fontsize",4)
subplot(312);
plot(y);
ylabel("y","fontsize",4)
subplot(313);
plot(I,z);
ylabel("z","fontsize",4)
xlabel("Lagindex")
|
cdd3dd712f638b2ee46617f8d6c06e02656f840b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1898/CH10/EX10.10/Ex10_10.sce
|
05a8d31667c0aedd043b06145ff53321d8f8c574
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 888
|
sce
|
Ex10_10.sce
|
clear all; clc;
disp("Scilab Code Ex 10.10 : ")
//Given:
a = 300; //mm
b = 50; //mm
t = 20; //mm
E_cu = 120*10^3; //MPa
nu_cu = 0.34;// Poisson's ratio
//By inspection:
sigma_x = 800; //MPa
sigma_y = -500; //MPa
tou_xy = 0;
sigma_z = 0;
//By Hooke's Law:
ep_x = (sigma_x/E_cu) - (nu_cu/E_cu)*(sigma_y + sigma_z);
ep_y = (sigma_y/E_cu) - (nu_cu/E_cu)*(sigma_x + sigma_z);
ep_z = (sigma_z/E_cu) - (nu_cu/E_cu)*(sigma_y + sigma_x);
//New lengths:
a_dash = a + ep_x*a;
b_dash = b + ep_y*b;
t_dash = t + ep_z*t;
//Display:
printf('\n\nThe new length = %1.2fmm ',a_dash);
printf('\nThe new width = %1.2f mm ',b_dash);
printf('\nThe new thickness = %1.2f mm ',t_dash);
//--------------------------------------------------------------------------END--------------------------------------------------------------------------------------
|
77983b0b16b6cf74a4b20cf5521858cdaedfb9de
|
033c30e726845395bef755577930250cf150bb5b
|
/TypewriterTemplates/ClassProjector.tst
|
17502fe1b9a21f040966a72c2f2485bf21c81011
|
[] |
no_license
|
Beej126/InventoryPrototype
|
1226e4af5e721210536f42d941bcad4b93605aa3
|
97acb837ecec10943830e866bcda8e53dbdcfc95
|
refs/heads/master
| 2023-05-24T12:21:57.358983
| 2019-07-14T10:52:48
| 2019-07-14T10:52:48
| 196,866,697
| 0
| 0
| null | 2023-05-06T07:15:49
| 2019-07-14T17:47:15
|
CSS
|
UTF-8
|
Scilab
| false
| false
| 9,456
|
tst
|
ClassProjector.tst
|
${
//**********************************************************************
//BIG TIP!! be careful not to use "crazy" stuff like single quotes
//or multiline comments here in the top helper code section
//***********************************************************************
// Enable extension methods by adding using Typewriter.Extensions.*
using Typewriter.Extensions.Types;
using System.Text.RegularExpressions;
using System.Collections;
using System.Text;
Template(Settings settings) {
//from: https://github.com/frhagn/Typewriter/issues/106#issuecomment-208827766
settings.OutputFilenameFactory = (file) => {
try {
var firstClass = ClassesInFile(file).FirstOrDefault();
var className = (firstClass?.ContainingClass ?? firstClass)?.Name;
var interfaceName = file.Interfaces.FirstOrDefault()?.Name;
return $"../ClientApp/src/models/{className??interfaceName}.ts";
}
catch (Exception) {
// BA: this is a super low brow attempt at error visibility
// i.e. if something blew up, this file will be present
// the typewriter exception reporting can be pretty invisible at times
return $"../ClientApp/template_error.tsx";
}
};
}
// debug trick, "printf" lihves!! https://github.com/frhagn/Typewriter/issues/121#issuecomment-231323983
// concatenate anything you need into this debugInfo variable from your custom methods
// and then throw $PrintDebugInfo into the main template space below to view in the output window
// static string debugInfo = "";
// string PrintDebugInfo(File f) => debugInfo;
// nested class support: https://github.com/frhagn/Typewriter/issues/134#issuecomment-253771122
bool ClassFilter(Class c) => //Regex.IsMatch(c.Name, "Dto$|Command$");
c.Attributes.Any(a => a.Name == "WithTypeScript");
IEnumerable<Class> ClassesInFile(File f) {
var classesInFile = f.Classes.Where(ClassFilter)
// BA: subtle tweak on the original github logic ref''d above...
// i want to pull a NESTED *Command class who''s PARENT does NOT match the filter
// therefore starting with f.Classes versus classes
.Concat(f.Classes.SelectMany(c => c.NestedClasses).Where(ClassFilter)).ToList();
//BA: see imports comment below: AllClassesCached.Concat(classesInFile);
//debugInfo += $"{f.Name} result: " + string.Join("\r\n", ClassesInFile.Select(c=>c.Name)) + "\r\n";
return classesInFile;
}
// Custom extension methods can be used in the template by adding a $ prefix e.g. $LoudName
string LoudName(Property property) {
return property.Name.ToUpperInvariant();
}
//tack on the not null operator
//e.g. data!: T;
string PropertyNameEx(Property p) {
return p.name + ((p.Attributes.Any(a => a.Name == "NotNullable") || !p.Type.IsNullable) && TypeDefault(p) == "" ? "!" :"");
}
string TypeConverter(Property p) {
var result = p.Type.Name;
if (p.Attributes.Any(a => a.Name == "Nullable") || p.Type.IsNullable) {
result += " | null";
}
//only using properties of type IFormFile for name safety on the client so actual type doesn''t really matter
if (result == "IFormFile") { result = "any"; }
return result;
}
//create a list of generic parms, e.g. <T>, by classname so that we can compare to properties later
static HashSet<string> GenericParameters = new HashSet<string>();
string TypeParameter(TypeParameter tp) {
GenericParameters.Add($"{tp.Parent}-{tp.Name}");
return $"<{tp.Name}>";
}
string TypeDefault(Property p) {
//if this is a generic parameter type e.g. <T> then allow it to be null since thats in parity with C#
//if (GenericParameters.Contains($"{p.Parent}-{p.Type.Name}")) {
// return " | null = " + p.Type.Default();
//}
if (p.Type.IsEnum) {
return $" = {p.Type.Name}.{p.Type.Constants[0].name}";
}
if (p.Type.Name == "string") {
return " = ''";
}
if (p.Type.IsEnumerable) {
return " = []";
}
if (p.Attributes.Any(a => a.Name == "Nullable") || p.Type.IsNullable) {
return " = null";
}
if (p.Type.Default() == "null" && p.Attributes.Any(a => a.Name == "NotNullable")) {
return "";
}
return " = " + p.Type.Default();
}
string GrabToggleValue(string textualProperties, string posNeg) {
if (!textualProperties.Contains($"{posNeg}Display")) {
var fullmatch = Regex.Match(textualProperties, $"{posNeg}Value:\\s*'(.*?)'");
var shorthand = fullmatch.Groups[1].Value;
var value = Regex.Match(shorthand, "\\((.*?)\\)").Groups[1].Value;
return textualProperties = textualProperties.Replace(fullmatch.Value, $"{posNeg}Value: '{value}'") +
$", {posNeg}Display: '{shorthand.Replace("(","").Replace(")","")}'";
}
return textualProperties;
}
//attempting to make this mapping logic somewhat generic so we can load up multiple case statements on the same return
//fyi, i''ve submitted this request for 3rd party assembly support for stuff like camelCasing:
//https://github.com/frhagn/Typewriter/issues/232#issue-269180636
string attrib(Attribute a) {
//BA: the template goes haywire if you use a real apostrophe in this section
var val = a?.Value?.Replace((char)34, (char)39);
switch (a.name) {
case "hiddenField":
case "ignore":
case "required": //boolean
return $"{a.name}: true";
case "stringLength": //renaming c# attrib to something more satisfying
return $"maxLen: {val}";
case "display":
var nameval = val.Split('=');
return $"{nameval[0].ToLowerInvariant().Trim(' ')}" + (nameval.Length > 1 ? $": {nameval[1].Trim(' ').Replace("=", ":")}" : "");
case "toggle": //bag of properties
val = val.Replace(" =", "=").Replace("=", ":");
//lowercase first letter of each property name
val = Regex.Replace(val, "(^|,)\\s*([A-Z])", m => m.Groups[0].Value.ToLower());
val = GrabToggleValue(val, "pos");
val = GrabToggleValue(val, "neg");
return $"{a.name}: {{{val}}}";
case "displayWidth": //numeric value vs string as default
return $"{a.name}: {val}";
default: //BA:shifting to ignore by default
return null; //$"{a.name}: \"{val}\"";
/*
case "resultColumn":
case "computedColumn":
case "column":
return null; //ignore these attributes
*/
}
}
string Meta(Property p) {
var attribs = p.Attributes.Select(a => attrib(a)).Where(s=>s!=null).ToArray();
var attribsString = string.Join(", ", attribs).TrimStart(',');
return attribs.Length > 0 ? $"\r\n @meta({{ {attribsString} }})\r\n" : "\r\n";
}
string NestedTop(Class c) {
if (c.ContainingClass != null) {
return $"export namespace {c.ContainingClass} {{\r\n";
}
return "";
}
string NestedBottom(Class c) {
if (c.ContainingClass != null) {
return $"\r\n}}\r\n";
}
return "";
}
// BA: this "automatic" approach won''t fly since typewriter naturally might be
// emitting a class-file with properties of another type that hasn''t been covered yet
// so there''s no obvious way to identify those now that we don''t name them with an overt "dto" style "flag"
// please keep this commented code around a little bit longer in case inspiration strikes :)
//
// static List<Class> AllClassesCached = new List<Class>();
//
// string Imports(File f) {
// var classes = ClassesInFile(f);
// return string.Concat(
// // starting with all classes flagged by Typescript attribute...
// classes
// // get all the properties on the class...
// .SelectMany(c => c.Properties)
// // where the property type corresponds to a class in the list to be projected
// // startsWith performs a sql style "like" to encompass stuff like arrays of type (e.g. MatrixDef[])
// .Where(p => AllClassesCached.Any(c=>p.Type.Name.StartsWith(c.Name)))
// .Select(p => String.Format(
// "\r\nimport {{ {0} }} from '../models/{0}';",
// p.Type.Name.TrimEnd(new [] {'[',']'})
// )
// )
// );
//}
string Imports(File f) {
var imports = ClassesInFile(f)
.SelectMany(c=>c.Attributes)
.Where(a=>a.Value?.ToLower().StartsWith("import") ?? false)
//(?-i) means case insensitivity, who knew?! ;)
.Select(a=>Regex.Match(a.Value,"(?i)import\\s*=\\s*\"(.*?)\"").Groups[1].Value)
.ToArray();
return imports.Length>0 ? "\r\n" + string.Join("\r\n", imports) + "\r\n" : "";
}
string Source(File f) => f.FullName.Substring(Math.Max(0,f.FullName.IndexOf("InventoryPrototype")));
}/************************************************************************
*** This file is generated. Don't edit manually.
*** Source: $Source
*** Template: TypewriterTemplates\ClassProjector.tst
************************************************************************/
/* tslint:disable */
import { meta } from '../helpers/meta'; $Imports$Classes(c => ClassFilter(c) || c.NestedClasses.Any(ClassFilter))[]
$ClassesInFile[$NestedTop
export class $Name$TypeParameters[$TypeParameter]$BaseClass[ extends $Name] {
public static readonly _className: string = '$Name';$Properties[
$Meta public $PropertyNameEx: $TypeConverter$TypeDefault;]
}
$NestedBottom
$Interfaces(*Dto)[
export interface $Name$TypeParameters {
$Properties[ $name: $Type;]
}]]
|
72b39b81b6a913689b23c122a8e1497f1acbcdd2
|
42fdf741bf64ea2e63d1546bb08356286f994505
|
/test_20161122_gpio_remote_test/input.sce
|
f0a50c2e0342ba0d793a8dc831a31194c07166cb
|
[] |
no_license
|
skim819/RASP_Workspace_sihwan
|
7e3cd403dc3965b8306ec203007490e3ea911e3b
|
0799e146586595577c8efa05c647b8cb92b962f4
|
refs/heads/master
| 2020-12-24T05:22:25.775823
| 2017-04-01T22:15:18
| 2017-04-01T22:15:18
| 41,511,563
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 72
|
sce
|
input.sce
|
arbgen1=[1 1 1 1];
arbgen2=[2 2 2 2];
gpio1=[1 1 0 0];
gpio2=[0 0 1 1];
|
6d2d51e56f8e49b8fc4fa4106a4fe507a0403a84
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1085/CH8/EX8.5/ex8_5.sce
|
2bd97a2e3773f01e0a27d319101cf3fd76cf3b3a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
ex8_5.sce
|
//Exam:8.5
clc;
clear;
close;
T_stress=415;//True stress (in Megapascal)
T_strain=0.10;//True strain
K=1035;//(in Megapascal)
n=(log(T_stress)-log(K))/log(T_strain);//
disp(n,'Strain hardening exponent for an alloy=')
|
ac0e123a5f5a616e33bb910a417b18c67e533f7a
|
0c1b318ef2ea5479e6a4df395006c510efb03896
|
/TP_3_3.sci
|
dfe4147a7df5df463d80a65da492488d65d0011b
|
[] |
no_license
|
Sylfid/ProjetAF
|
aa731877261eb4a53c0017c70b236e1b685b59cb
|
d80fef4e15ec611d905f3762666bee103e568625
|
refs/heads/master
| 2020-04-08T08:11:03.848479
| 2018-11-27T13:46:45
| 2018-11-27T13:46:45
| 159,168,672
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 86
|
sci
|
TP_3_3.sci
|
function []= TP_3_3()
a = 1/20;
convolution(sin(2*%pi*a*(0:39)));
endfunction
|
c3fdfb9a97c28334a0d89d107db711b3bc9b7aa2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3472/CH9/EX9.5/Example9_5.sce
|
39e911282cc3d1f4dcd37c50536b8c86a9eb8034
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,502
|
sce
|
Example9_5.sce
|
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 2: CONSTANTS OF OVERHEAD TRANSMISSION LINES
// EXAMPLE : 2.5 :
// Page number 103-104
clear ; clc ; close ; // Clear the work space and console
// Given data
D_a_b = 120.0 // Distance between conductors a & b(cm)
D_a_bb = 140.0 // Distance between conductors a & b'(cm)
D_aa_b = 100.0 // Distance between conductors a' & b(cm)
D_aa_bb = 120.0 // Distance between conductors a' & b'(cm)
D_a_aa = 20.0 // Distance between conductors a & a'(cm)
d = 2.0 // Diameter of conductor(cm)
// Calculations
D_m = (D_a_b*D_a_bb*D_aa_b*D_aa_bb)**(1.0/4) // Mutual GMD(cm)
D_a_a = 0.7788*d/2.0 // Self GMD of conductor a(cm)
D_aa_aa = D_a_a // Self GMD of conductor a'(cm)
D_aa_a = D_a_aa // Distance between conductors a' & a(cm)
D_s = (D_a_a*D_a_aa*D_aa_aa*D_aa_a)**(1.0/4) // Self GMD(cm)
L = 4*10**-4*log(D_m/D_s) // Total inductance of the line(H/km)
L_mH = L*1000.0 // Total inductance of the line(mH/km)
// Results
disp("PART II - EXAMPLE : 2.5 : SOLUTION :-")
printf("\nTotal inductance of the line, L = %.2f mH/km", L_mH)
|
c2e7440ad7010247fad022b204e49f656cc2d6ea
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1217/CH6/EX6.11/Exa6_11.sce
|
8f903a8ee3ff65ec3e32e4c38d85a0cd06b17f27
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 458
|
sce
|
Exa6_11.sce
|
// Exa 6.11
clc;
clear;
close;
// given data
C=0.1;//in uF
R=11;//in Kohm
RF=5.6;//in Kohm
R1=10;//in Kohm
AF=1+RF/R1;//unitless
alfa=3-AF;//unitless
Klp=1;//unitless// for Butterworth filter
Khp=1/Klp;//unitless
f3dB=Khp/(2*%pi*R*1000*C*10^-6);//in Hz
disp(f3dB,"3 dB frequency in Hz is :")
disp(alfa,"Value of alfa is :");
disp("Value of alfa shows that it is a Butterworth flter.");
disp(Khp,"Passband gain for a high pass filter is : ")
|
3586eb9f5b80057a8e13433517afdfb39610f1bd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3838/CH3/EX3.28.a/EX3_28_A.sce
|
2c16c96f9a597e54f72d406536ae64f42624f6ab
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 91
|
sce
|
EX3_28_A.sce
|
//Example 3.28.A
clc;
syms s t;
x=laplace(2);
y=laplace(1);
z=x*y;
f=ilaplace(z);
disp(f);
|
33228fd67bd7d7f5abab74828f5af24608a284c1
|
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
|
/New LSTMAttn Model/.data/lemma-split/GOLD-TEST/mlt.tst
|
cfc665c77aa7d0a79ece531eddbecc3542560dd8
|
[] |
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
| 11,967
|
tst
|
mlt.tst
|
qabeż taqbżu V;IPFV;FIN;PL;2;PST
qabeż qbiżtu V;PRF;FIN;PL;2;PST
qabeż qabeż V;PRF;FIN;MASC;SG;3;PST
qabeż aqbżu V;FIN;IMP;PL;1
qabeż aqbeż V;FIN;IMP;SG;2
qabeż qabżu V;PRF;FIN;PL;3;PST
qabeż jaqbeż V;IPFV;FIN;MASC;SG;3;PST
qabeż naqbeż V;IPFV;FIN;SG;1;PST
qabeż taqbeż V;IPFV;FIN;FEM;SG;3;PST
qabeż qbiżna V;PRF;FIN;PL;1;PST
qabeż jaqbżu V;IPFV;FIN;PL;3;PST
qabeż naqbżu V;IPFV;FIN;PL;1;PST
qabeż qbiżt V;PRF;FIN;SG;2;PST
qabeż qbiżt V;PRF;FIN;SG;1;PST
qabeż qabżet V;PRF;FIN;FEM;SG;3;PST
qabeż taqbeż V;IPFV;FIN;SG;2;PST
xtara tixtri V;IPFV;FIN;SG;2;PST
xtara nixtri V;IPFV;FIN;SG;1;PST
xtara ixtru V;FIN;IMP;PL;1
xtara tixtru V;IPFV;FIN;PL;2;PST
xtara xtara V;PRF;FIN;MASC;SG;3;PST
xtara xtrajt V;PRF;FIN;SG;2;PST
xtara xtrajt V;PRF;FIN;SG;1;PST
xtara ixtri V;FIN;IMP;SG;2
xtara nixtru V;IPFV;FIN;PL;1;PST
xtara xtraw V;PRF;FIN;PL;3;PST
xtara xtrajna V;PRF;FIN;PL;1;PST
xtara jixtru V;IPFV;FIN;PL;3;PST
xtara xtrat V;PRF;FIN;FEM;SG;3;PST
xtara jixtri V;IPFV;FIN;MASC;SG;3;PST
xtara tixtri V;IPFV;FIN;FEM;SG;3;PST
xtara xtrajtu V;PRF;FIN;PL;2;PST
rikeb tirkbu V;IPFV;FIN;PL;2;PST
rikeb nirkbu V;IPFV;FIN;PL;1;PST
rikeb rikbu V;PRF;FIN;PL;3;PST
rikeb rikeb V;PRF;FIN;MASC;SG;3;PST
rikeb rkibt V;PRF;FIN;SG;2;PST
rikeb tirkeb V;IPFV;FIN;SG;2;PST
rikeb jirkeb V;IPFV;FIN;MASC;SG;3;PST
rikeb irkbu V;FIN;IMP;PL;1
rikeb rkibt V;PRF;FIN;SG;1;PST
rikeb nirkeb V;IPFV;FIN;SG;1;PST
rikeb rkibtu V;PRF;FIN;PL;2;PST
rikeb rikbet V;PRF;FIN;FEM;SG;3;PST
rikeb jirkbu V;IPFV;FIN;PL;3;PST
rikeb tirkeb V;IPFV;FIN;FEM;SG;3;PST
rikeb rkibna V;PRF;FIN;PL;1;PST
rikeb irkeb V;FIN;IMP;SG;2
pejjep inpejjep V;IPFV;FIN;SG;1;PST
pejjep inpejpu V;IPFV;FIN;PL;1;PST
pejjep pejjep V;PRF;FIN;MASC;SG;3;PST
pejjep tpejpu V;IPFV;FIN;PL;2;PST
pejjep ipejjep V;IPFV;FIN;MASC;SG;3;PST
pejjep pejpu V;FIN;IMP;PL;1
pejjep tpejjep V;IPFV;FIN;SG;2;PST
pejjep pejjipt V;PRF;FIN;SG;1;PST
pejjep pejjiptu V;PRF;FIN;PL;2;PST
pejjep ipejpu V;IPFV;FIN;PL;3;PST
pejjep tpejjep V;IPFV;FIN;FEM;SG;3;PST
pejjep pejpet V;PRF;FIN;FEM;SG;3;PST
pejjep pejjipna V;PRF;FIN;PL;1;PST
pejjep pejjipt V;PRF;FIN;SG;2;PST
pejjep npejjep V;IPFV;FIN;SG;1;PST
pejjep pejjep V;FIN;IMP;SG;2
pejjep pejpu V;PRF;FIN;PL;3;PST
eżerċita eżerċita V;PRF;FIN;MASC;SG;3;PST
eżerċita eżerċita V;FIN;IMP;SG;2
eżerċita eżerċitajt V;PRF;FIN;SG;2;PST
eżerċita eżerċitajtu V;PRF;FIN;PL;2;PST
eżerċita neżerċitaw V;IPFV;FIN;PL;1;PST
eżerċita eżerċitajna V;PRF;FIN;PL;1;PST
eżerċita teżerċita V;IPFV;FIN;FEM;SG;3;PST
eżerċita eżerċitaw V;PRF;FIN;PL;3;PST
eżerċita neżerċita V;IPFV;FIN;SG;1;PST
eżerċita jeżerċitaw V;IPFV;FIN;PL;3;PST
eżerċita teżerċitaw V;IPFV;FIN;PL;2;PST
eżerċita eżerċitajt V;PRF;FIN;SG;1;PST
eżerċita teżerċita V;IPFV;FIN;SG;2;PST
eżerċita eżerċitaw V;FIN;IMP;PL;1
eżerċita eżerċitat V;PRF;FIN;FEM;SG;3;PST
eżerċita jeżerċita V;IPFV;FIN;MASC;SG;3;PST
għorok jogħrku V;IPFV;FIN;PL;3;PST
għorok togħrok V;IPFV;FIN;FEM;SG;3;PST
għorok għorokt V;PRF;FIN;SG;1;PST
għorok għorokna V;PRF;FIN;PL;1;PST
għorok nogħrku V;IPFV;FIN;PL;1;PST
għorok ogħrku V;FIN;IMP;PL;1
għorok għoroktu V;PRF;FIN;PL;2;PST
għorok għorokt V;PRF;FIN;SG;2;PST
għorok għorok V;PRF;FIN;MASC;SG;3;PST
għorok togħrok V;IPFV;FIN;SG;2;PST
għorok ogħrok V;FIN;IMP;SG;2
għorok nogħrok V;IPFV;FIN;SG;1;PST
għorok togħrku V;IPFV;FIN;PL;2;PST
għorok għorkot V;PRF;FIN;FEM;SG;3;PST
għorok jogħrok V;IPFV;FIN;MASC;SG;3;PST
għorok għorku V;PRF;FIN;PL;3;PST
ħaseb jaħsbu V;IPFV;FIN;PL;3;PST
ħaseb taħseb V;IPFV;FIN;FEM;SG;3;PST
ħaseb ħasbet V;PRF;FIN;FEM;SG;3;PST
ħaseb aħseb V;FIN;IMP;SG;2
ħaseb aħsbu V;FIN;IMP;PL;1
ħaseb ħaseb V;PRF;FIN;MASC;SG;3;PST
ħaseb ħsibt V;PRF;FIN;SG;2;PST
ħaseb ħasbu V;PRF;FIN;PL;3;PST
ħaseb ħsibt V;PRF;FIN;SG;1;PST
ħaseb taħseb V;IPFV;FIN;SG;2;PST
ħaseb jaħseb V;IPFV;FIN;MASC;SG;3;PST
ħaseb ħsibtu V;PRF;FIN;PL;2;PST
ħaseb taħsbu V;IPFV;FIN;PL;2;PST
ħaseb naħsbu V;IPFV;FIN;PL;1;PST
ħaseb ħsibna V;PRF;FIN;PL;1;PST
ħaseb naħseb V;IPFV;FIN;SG;1;PST
ivvjola ivvjolajna V;PRF;FIN;PL;1;PST
ivvjola ivvjola V;FIN;IMP;SG;2
ivvjola ivvjolajtu V;PRF;FIN;PL;2;PST
ivvjola jivvjola V;IPFV;FIN;MASC;SG;3;PST
ivvjola ivvjolaw V;FIN;IMP;PL;1
ivvjola tivvjolaw V;IPFV;FIN;PL;2;PST
ivvjola ivvjolat V;PRF;FIN;FEM;SG;3;PST
ivvjola tivvjola V;IPFV;FIN;FEM;SG;3;PST
ivvjola ivvjola V;PRF;FIN;MASC;SG;3;PST
ivvjola nivvjolaw V;IPFV;FIN;PL;1;PST
ivvjola nivvjola V;IPFV;FIN;SG;1;PST
ivvjola ivvjolajt V;PRF;FIN;SG;2;PST
ivvjola tivvjola V;IPFV;FIN;SG;2;PST
ivvjola jivvjolaw V;IPFV;FIN;PL;3;PST
ivvjola ivvjolajt V;PRF;FIN;SG;1;PST
ivvjola ivvjolaw V;PRF;FIN;PL;3;PST
sab issibu V;IPFV;FIN;PL;2;PST
sab sibna V;PRF;FIN;PL;1;PST
sab issib V;IPFV;FIN;FEM;SG;3;PST
sab sibt V;PRF;FIN;SG;1;PST
sab isib V;IPFV;FIN;MASC;SG;3;PST
sab sibt V;PRF;FIN;SG;2;PST
sab sab V;PRF;FIN;MASC;SG;3;PST
sab sibu V;FIN;IMP;PL;1
sab sibtu V;PRF;FIN;PL;2;PST
sab sib V;FIN;IMP;SG;2
sab insib V;IPFV;FIN;SG;1;PST
sab issib V;IPFV;FIN;SG;2;PST
sab isibu V;IPFV;FIN;PL;3;PST
sab sabu V;PRF;FIN;PL;3;PST
sab insibu V;IPFV;FIN;PL;1;PST
sab sabet V;PRF;FIN;FEM;SG;3;PST
għażel jagħżel V;IPFV;FIN;MASC;SG;3;PST
għażel għażilt V;PRF;FIN;SG;1;PST
għażel jagħżlu V;IPFV;FIN;PL;3;PST
għażel għażel V;PRF;FIN;MASC;SG;3;PST
għażel għażiltu V;PRF;FIN;PL;2;PST
għażel għażilna V;PRF;FIN;PL;1;PST
għażel nagħżel V;IPFV;FIN;SG;1;PST
għażel agħżel V;FIN;IMP;SG;2
għażel għażlet V;PRF;FIN;FEM;SG;3;PST
għażel agħżlu V;FIN;IMP;PL;1
għażel tagħżel V;IPFV;FIN;FEM;SG;3;PST
għażel tagħżlu V;IPFV;FIN;PL;2;PST
għażel tagħżel V;IPFV;FIN;SG;2;PST
għażel nagħżlu V;IPFV;FIN;PL;1;PST
għażel għażilt V;PRF;FIN;SG;2;PST
għażel għażlu V;PRF;FIN;PL;3;PST
daħak jidħak V;IPFV;FIN;MASC;SG;3;PST
daħak dħaktu V;PRF;FIN;PL;2;PST
daħak dħakt V;PRF;FIN;SG;2;PST
daħak jidħku V;IPFV;FIN;PL;3;PST
daħak dħakna V;PRF;FIN;PL;1;PST
daħak dħakt V;PRF;FIN;SG;1;PST
daħak tidħku V;IPFV;FIN;PL;2;PST
daħak daħak V;PRF;FIN;MASC;SG;3;PST
daħak idħak V;FIN;IMP;SG;2
daħak idħku V;FIN;IMP;PL;1
daħak daħket V;PRF;FIN;FEM;SG;3;PST
daħak tidħak V;IPFV;FIN;FEM;SG;3;PST
daħak daħku V;PRF;FIN;PL;3;PST
daħak nidħku V;IPFV;FIN;PL;1;PST
daħak nidħak V;IPFV;FIN;SG;1;PST
daħak tidħak V;IPFV;FIN;SG;2;PST
ġabar niġbor V;IPFV;FIN;SG;1;PST
ġabar tiġbor V;IPFV;FIN;SG;2;PST
ġabar tiġbru V;IPFV;FIN;PL;2;PST
ġabar ġabru V;PRF;FIN;PL;3;PST
ġabar ġabret V;PRF;FIN;FEM;SG;3;PST
ġabar ġbarna V;PRF;FIN;PL;1;PST
ġabar iġbor V;FIN;IMP;SG;2
ġabar ġbart V;PRF;FIN;SG;2;PST
ġabar ġbart V;PRF;FIN;SG;1;PST
ġabar jiġbor V;IPFV;FIN;MASC;SG;3;PST
ġabar niġbru V;IPFV;FIN;PL;1;PST
ġabar tiġbor V;IPFV;FIN;FEM;SG;3;PST
ġabar ġabar V;PRF;FIN;MASC;SG;3;PST
ġabar iġbru V;FIN;IMP;PL;1
ġabar ġbartu V;PRF;FIN;PL;2;PST
ġabar jiġbru V;IPFV;FIN;PL;3;PST
gideb gdibna V;PRF;FIN;PL;1;PST
gideb jigdeb V;IPFV;FIN;MASC;SG;3;PST
gideb igdeb V;FIN;IMP;SG;2
gideb tigdbu V;IPFV;FIN;PL;2;PST
gideb nigdbu V;IPFV;FIN;PL;1;PST
gideb gdibt V;PRF;FIN;SG;1;PST
gideb gideb V;PRF;FIN;MASC;SG;3;PST
gideb gdibt V;PRF;FIN;SG;2;PST
gideb tigdeb V;IPFV;FIN;FEM;SG;3;PST
gideb gdibtu V;PRF;FIN;PL;2;PST
gideb gidbet V;PRF;FIN;FEM;SG;3;PST
gideb tigdeb V;IPFV;FIN;SG;2;PST
gideb nigdeb V;IPFV;FIN;SG;1;PST
gideb igdbu V;FIN;IMP;PL;1
gideb jigdbu V;IPFV;FIN;PL;3;PST
gideb gidbu V;PRF;FIN;PL;3;PST
indika indikajt V;PRF;FIN;SG;2;PST
indika nindika V;IPFV;FIN;SG;1;PST
indika tindika V;IPFV;FIN;FEM;SG;3;PST
indika indikajna V;PRF;FIN;PL;1;PST
indika indikaw V;FIN;IMP;PL;1
indika nindikaw V;IPFV;FIN;PL;1;PST
indika tindika V;IPFV;FIN;SG;2;PST
indika tindikaw V;IPFV;FIN;PL;2;PST
indika indika V;PRF;FIN;MASC;SG;3;PST
indika indika V;FIN;IMP;SG;2
indika jindika V;IPFV;FIN;MASC;SG;3;PST
indika indikaw V;PRF;FIN;PL;3;PST
indika jindikaw V;IPFV;FIN;PL;3;PST
indika indikajt V;PRF;FIN;SG;1;PST
indika indikajtu V;PRF;FIN;PL;2;PST
indika indikat V;PRF;FIN;FEM;SG;3;PST
ta tagħti V;IPFV;FIN;FEM;SG;3;PST
ta jagħti V;IPFV;FIN;MASC;SG;3;PST
ta tajt V;PRF;FIN;SG;2;PST
ta tagħtu V;IPFV;FIN;PL;2;PST
ta tajna V;PRF;FIN;PL;1;PST
ta jagħtu V;IPFV;FIN;PL;3;PST
ta tajtu V;PRF;FIN;PL;2;PST
ta nagħti V;IPFV;FIN;SG;1;PST
ta ta V;PRF;FIN;MASC;SG;3;PST
ta nagħtu V;IPFV;FIN;PL;1;PST
ta tagħti V;IPFV;FIN;SG;2;PST
ta tajt V;PRF;FIN;SG;1;PST
ta taw V;PRF;FIN;PL;3;PST
ta agħti V;FIN;IMP;SG;2
ta tat V;PRF;FIN;FEM;SG;3;PST
ta agħtu V;FIN;IMP;PL;1
siket skitna V;PRF;FIN;PL;1;PST
siket nisktu V;IPFV;FIN;PL;1;PST
siket isktu V;FIN;IMP;PL;1
siket siktet V;PRF;FIN;FEM;SG;3;PST
siket siktu V;PRF;FIN;PL;3;PST
siket skitt V;PRF;FIN;SG;1;PST
siket skitt V;PRF;FIN;SG;2;PST
siket tiskot V;IPFV;FIN;FEM;SG;3;PST
siket jiskot V;IPFV;FIN;MASC;SG;3;PST
siket iskot V;FIN;IMP;SG;2
siket tisktu V;IPFV;FIN;PL;2;PST
siket skittu V;PRF;FIN;PL;2;PST
siket tiskot V;IPFV;FIN;SG;2;PST
siket niskot V;IPFV;FIN;SG;1;PST
siket jisktu V;IPFV;FIN;PL;3;PST
siket siket V;PRF;FIN;MASC;SG;3;PST
seraq jisirqu V;IPFV;FIN;PL;3;PST
seraq nisraq V;IPFV;FIN;SG;1;PST
seraq sraqna V;PRF;FIN;PL;1;PST
seraq tisraq V;IPFV;FIN;FEM;SG;3;PST
seraq isirqu V;FIN;IMP;PL;1
seraq serqet V;PRF;FIN;FEM;SG;3;PST
seraq sraqt V;PRF;FIN;SG;2;PST
seraq sraqtu V;PRF;FIN;PL;2;PST
seraq serqu V;PRF;FIN;PL;3;PST
seraq seraq V;PRF;FIN;MASC;SG;3;PST
seraq nisirqu V;IPFV;FIN;PL;1;PST
seraq tisraq V;IPFV;FIN;SG;2;PST
seraq sraqt V;PRF;FIN;SG;1;PST
seraq jisraq V;IPFV;FIN;MASC;SG;3;PST
seraq israq V;FIN;IMP;SG;2
seraq tisirqu V;IPFV;FIN;PL;2;PST
kien tkunu V;IPFV;FIN;PL;2;PST
kien nkunu V;IPFV;FIN;PL;1;PST
kien inkun V;IPFV;FIN;SG;1;PST
kien kont V;PRF;FIN;SG;1;PST
kien tkun V;IPFV;FIN;FEM;SG;3;PST
kien tkun V;IPFV;FIN;SG;2;PST
kien kun V;FIN;IMP;SG;2
kien kontu V;PRF;FIN;PL;2;PST
kien kunu V;FIN;IMP;PL;1
kien kien V;PRF;FIN;MASC;SG;3;PST
kien kont V;PRF;FIN;SG;2;PST
kien ikunu V;IPFV;FIN;PL;3;PST
kien kienet V;PRF;FIN;FEM;SG;3;PST
kien kienu V;PRF;FIN;PL;3;PST
kien konna V;PRF;FIN;PL;1;PST
kien ikun V;IPFV;FIN;MASC;SG;3;PST
niżel inżlu V;FIN;IMP;PL;1
niżel nżiltu V;PRF;FIN;PL;2;PST
niżel niżlet V;PRF;FIN;FEM;SG;3;PST
niżel tinżel V;IPFV;FIN;FEM;SG;3;PST
niżel tinżel V;IPFV;FIN;SG;2;PST
niżel ninżlu V;IPFV;FIN;PL;1;PST
niżel nżilna V;PRF;FIN;PL;1;PST
niżel niżel V;PRF;FIN;MASC;SG;3;PST
niżel ninżel V;IPFV;FIN;SG;1;PST
niżel inżel V;FIN;IMP;SG;2
niżel niżlu V;PRF;FIN;PL;3;PST
niżel jinżlu V;IPFV;FIN;PL;3;PST
niżel jinżel V;IPFV;FIN;MASC;SG;3;PST
niżel nżilt V;PRF;FIN;SG;1;PST
niżel nżilt V;PRF;FIN;SG;2;PST
niżel tinżlu V;IPFV;FIN;PL;2;PST
ra tara V;IPFV;FIN;FEM;SG;3;PST
ra nara V;IPFV;FIN;SG;1;PST
ra jaraw V;IPFV;FIN;PL;3;PST
ra araw V;FIN;IMP;PL;1
ra ara V;FIN;IMP;SG;2
ra rajt V;PRF;FIN;SG;2;PST
ra jara V;IPFV;FIN;MASC;SG;3;PST
ra tara V;IPFV;FIN;SG;2;PST
ra ra V;PRF;FIN;MASC;SG;3;PST
ra rajna V;PRF;FIN;PL;1;PST
ra rajt V;PRF;FIN;SG;1;PST
ra rajtu V;PRF;FIN;PL;2;PST
ra naraw V;IPFV;FIN;PL;1;PST
ra raw V;PRF;FIN;PL;3;PST
ra rat V;PRF;FIN;FEM;SG;3;PST
ra taraw V;IPFV;FIN;PL;2;PST
fehem fhimt V;PRF;FIN;SG;1;PST
fehem ifhem V;FIN;IMP;SG;2
fehem ifhmu V;FIN;IMP;PL;1
fehem fhimtu V;PRF;FIN;PL;2;PST
fehem fehmet V;PRF;FIN;FEM;SG;3;PST
fehem jifhmu V;IPFV;FIN;PL;3;PST
fehem fhimna V;PRF;FIN;PL;1;PST
fehem fehem V;PRF;FIN;MASC;SG;3;PST
fehem tifhem V;IPFV;FIN;SG;2;PST
fehem nifhem V;IPFV;FIN;SG;1;PST
fehem fhimt V;PRF;FIN;SG;2;PST
fehem tifhem V;IPFV;FIN;FEM;SG;3;PST
fehem jifhem V;IPFV;FIN;MASC;SG;3;PST
fehem nifhmu V;IPFV;FIN;PL;1;PST
fehem tifhmu V;IPFV;FIN;PL;2;PST
fehem fehmu V;PRF;FIN;PL;3;PST
qal tgħidu V;IPFV;FIN;PL;2;PST
qal għidu V;FIN;IMP;PL;1
qal jgħidu V;IPFV;FIN;PL;3;PST
qal tgħid V;IPFV;FIN;SG;2;PST
qal jgħid V;IPFV;FIN;MASC;SG;3;PST
qal ngħidu V;IPFV;FIN;PL;1;PST
qal għedna V;PRF;FIN;PL;1;PST
qal qalet V;PRF;FIN;FEM;SG;3;PST
qal qalu V;PRF;FIN;PL;3;PST
qal għedt V;PRF;FIN;SG;2;PST
qal tgħid V;IPFV;FIN;FEM;SG;3;PST
qal għedtu V;PRF;FIN;PL;2;PST
qal għedt V;PRF;FIN;SG;1;PST
qal għid V;FIN;IMP;SG;2
qal ngħid V;IPFV;FIN;SG;1;PST
qal qal V;PRF;FIN;MASC;SG;3;PST
|
9df9b04d594d77fec5708c93e06d34570473fb4e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/284/CH6/EX6.3/ex_3.sce
|
bd8ce1396baced9998200197f1b6b54e2c31c737
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 374
|
sce
|
ex_3.sce
|
// Chapter 6_The pn junction
//Caption_Space charge width
//Ex_3//page 227
eps=11.7*8.85*(10^-14);
e=1.6*(10^-19);
Na=10^16 //acceptor ion concentration
T=300 //temperature in kelvin
Nd=10^15
ni=1.5*(10^10) //intrinsic ion concentration
Vr=5 //Reverse applied voltage
Vbi=0.635
V=Vr+Vbi
W=(2*eps*V/e*(Na+Nd)/(Na*Nd))^0.5
printf('The space charge width is %f cm ',W)
|
92d47e87bda3d3f12840339a3715357b3b9c4bcc
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/269/CH4/EX4.1/ex1.sce
|
d6579b140eb9825c81ac5fd2de7810e521371c49
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 257
|
sce
|
ex1.sce
|
disp("chap 4")
disp("ex 1")
disp("the equation for current by kvl is")
disp("i=v/r*(1-exp(-r*t/L))")// r-resistor,L-inductor
v=3// assumed supply=5v
r=10//assumed r=10 ohm
L=500//assumed inductance=500henry
t=0:0.1:500
i=v/r*(1-exp(-r*t/L))
plot(i)
|
cccc1afd1a85518a8a93a337451fa6c4a8b865e2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3718/CH1/EX1.15/Ex1_15.sce
|
0a7ff3246ad31f0daba28106819b64aeb136dc19
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 502
|
sce
|
Ex1_15.sce
|
//Chapter 1: Structure and Bonding
//Problem: 15
clc;
//Declaration of Constants
m = 9.1 * 10 ** -31 // Mass of electron, kg
h = 6.626 * 10 ** -34 // Plank's constant, J.sec
e = 1.602 * 10 ** -19 // Charge of electron, C
// Variable
v = 1.87 * 10 ** 9 // Velocity of electron, m/sec
// Solution
V = m * v ** 2 / (2 * e)
lamda = h / (m * v)
mprintf("The voltage is %.2e Volts\n",V)
mprintf(" The de Broglie wavelength is %.2e m",lamda)
|
fe599ff1cf3ba01d061d32dbe1a5af7203dc8ad0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3769/CH25/EX25.8/Ex25_8.sce
|
f9c64052b6623b62fbfafbcdff1dab02973cdb12
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 332
|
sce
|
Ex25_8.sce
|
clear
//Given
ma=1.00893
m1=1.00813
m2=2.01473
a=931.5
a1=4.00389
//Calculation
m=ma+m1-m2
Eb=m*a
m3=2*ma+2*m1-a1
Eb1=m3*a
//Result
printf("\n (i) Binding energy when one neutron and one proton combined together is %0.2f Mev",Eb)
printf("\n (ii) Binding energy when two neutrons and two protons are combined is %0.1f Mev",Eb1)
|
b4aff1c1b777e3d273a56622336507987fdc0020
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3754/CH22/EX22.24/22_24.sce
|
0df0c3f25ab47fcfda85df0c496baa587baea8ca
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
22_24.sce
|
clear//
//Variables
VCC = 8.0 //Source voltage (in volts)
VRC = 0.5 //Voltage across collector resistance (in volts)
RC = 800.0 //Collector resistance (in ohm)
alpha = 0.96 //common base current gain
//Calculation
VCE = VCC - VRC //Collector-to-emitter voltage (in volts)
IC = VRC / RC //Collector current (in milli-Ampere)
IE = IC / alpha //Emitter current (in milli-Ampere)
IB = IE - IC //Base current (in milli-Ampere)
//Result
printf("\n Collector-to-Emitter VCE is %0.3f V.\nBase current is %0.3f mA.",VCE,IB*10**3)
|
1afe16a00bf7b9d04ee3a2512469b2d19418c16e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1529/CH22/EX22.28/22_28.sce
|
ca9401b911414f7d27e666b81c992c70b00965a8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 678
|
sce
|
22_28.sce
|
//Chapter 22, Problem 28, Fig.22.29(b)
clc;
V=500; //supply voltage
Ia=120; //armature current
Ia2=60; //armature current 2
Ra=0.2; //armature resistance
Ra1=0.5; //armature resistance 2
n1=10; //speed of motor
phi3=0.8; //flux
E1=V-(Ia*Ra); //e.m.f
E2=V-(Ia2*(Ra+Ra1)); //e.m.f 2
n2=n1*E2/E1; //speed of motor 2
E3=V-(Ia2*Ra); //e.m.f 3
n3=(n1*E3)/(phi3*E1); //speed of motor 2
printf("(a) Speed n2 = %.2f rev/s\n\n",n2);
printf("(b) Speed n3 = %.2f rev/s\n\n",n3);
|
6b22ac119e019c022363252035156071daed6131
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2672/CH3/EX3.26/Ex3_26.sce
|
5008b77821e97a832a308152c6bff3add875e4e2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 889
|
sce
|
Ex3_26.sce
|
//Example 3_26
clc;
clear;
close;
format('v',6);
//given data :
V=230;//V
f=50;//Hz
Z1=12*expm(%i*30*%pi/180);//ohm
Z2=8*expm(%i*-30*%pi/180);//ohm
Z3=10*expm(%i*60*%pi/180);//ohm
Y1=1/Z1;//mho
Y2=1/Z2;//mhob
Y3=1/Z3;//mho
Y=Y1+Y2+Y3;//mho
Ymag=abs(Y);//mho
Yang=atand(imag(Y)/real(Y));//degree
disp(Yang,Ymag,"Total admittance, magnitude(mho) & Angle(degree) are");
Z=1/Y;//ohm
Zmag=abs(Z);//ohm
Zang=atand(imag(Z)/real(Z));//degree
disp(Zang,Zmag,"Equivallent Impedance, magnitude(ohm) & Angle(degree) are");
I=V/Z;//A
Imag=abs(I);//A
Iang=atand(imag(I)/real(I));//degree
disp(Iang,Imag,"Total current, magnitude(A) & Angle(degree) are");
pf=cosd(Iang);//Power Factor(lagging)
fi=acosd(pf);//degree
disp(pf,"Power Factor(lagging)");
format('v',7);
P=abs(V)*Imag*pf;//W
P=P/1000;//kW
disp(P,"Power Consumed(kW)");
//Answer is not accurate in the book.
|
cba16b28fd5709d836dbb059ae98da28f14b66ec
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3547/CH2/EX2.17/Ex2_17.sce
|
262b6964c620ca001d835c61f767fba7d4e33036
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,017
|
sce
|
Ex2_17.sce
|
// Example No. 2.17
// To find the accumulated dispersion of the DCF so that the net accumulated dispersion does not exceed 1100 ps/nm
// Page no. 85
clc;
clear;
// Given data
lambda0=1490; // Zero dispersion wavelength in nm
lambda=1560; // Upper limit of wavelength range in nm
Sc=0.08; // Dispersion slope of transmission fiber ps/nm2/km
LTF=800; // Length of transmission fiber in km
DTF=Sc*(lambda-lambda0); // Dispersion at 1560 nm in ps/nm/km
// The accumulated dispersion of the DCF
DLDCF=1100-DTF*LTF; // The accumulated dispersion of the DCF in ps/nm
// Displaying the result in command window
printf('\n The accumulated dispersion of the DCF should be less than %0.0f ps/nm',DLDCF);
|
1e095c13b492a230ac0bc72038878db0b4fb9169
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/ngram/5.2_12.tst
|
369c198b5986697f03469bde1e95382bb77e53a7
|
[] |
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
| 734,891
|
tst
|
5.2_12.tst
|
2 96:1 97:1 150:1 386:1 413:1 596:1 670:1 734:1 1046:1 1054:1 1295:1 1320:1 1383:1 1409:1 1580:1 1627:1 1715:1 1798:1 1915:1 2030:1 2036:1 2183:1 2436:1 2469:1 2475:1 2598:1 2682:1 2890:1 2907:1 2914:1 3149:1 3534:1 3808:1 4122:1 4129:1 4170:1 4175:1 4373:1 4615:1 4716:1 4782:1 5053:1 5064:1 5127:1 5163:2 5346:1 5682:1 5780:1 6274:1 6623:1 6759:1 6827:1 7325:1 7520:1 7830:1 7918:1 8138:3 8172:1 8383:1 8593:1 8662:1 8777:1 8860:1 8963:1 8989:1 9064:1 9148:1 9401:1 9699:1 9754:1 9756:1 9892:1 10004:1 10241:2 10257:1 10379:1 10390:1 11037:1 11095:1 11107:1 11448:1 11469:1 11498:1 11858:1 11871:1 12236:1 12241:1 12245:1 12266:1 12269:1 13086:1 13180:1 13240:1 13520:1 13688:1 13720:1 14065:1 14223:1 14226:1 14310:1 14396:1 14424:1 14528:1 14605:1 14711:1 15185:1 15193:1 15225:1 15276:1 15365:1 15518:1 15631:1 15709:1 16109:1 16341:1 16346:1 16777:1 16864:1 17237:1 17536:1 17644:1 17670:1 17692:1 18190:1 18203:1 18319:1 18448:1 18552:1 18645:1 18672:1 19238:64 19360:1 19757:1 20032:1 20033:1 20172:1 20238:1 20397:1 20467:1 21192:1 21448:1 21888:1 21920:1 22069:1 22231:1 22266:1 22349:1 22467:1 22819:1 23020:1 23142:1 23196:1 23207:1 23405:1 23516:1 23631:1 23682:1 23691:1 23956:1 24041:1 24123:1 24210:1 24582:1 24705:1 24769:1 25380:1 25503:1 25675:1 25690:1 25729:1 25989:1 26063:1 26218:1 26244:1 26283:1 26373:1 26437:1 26565:1 26773:1 26885:1 27099:1 27162:1 27174:1 27318:1 27804:1 27884:1 27968:1 28016:1 28165:1 28181:1 28216:1 28228:1 28324:1 28329:1 28588:1 28590:1 28615:1 28676:1 28888:1 28927:2 29332:1 29368:1 29430:1 29612:1 29813:1 29899:1 29971:1 30019:1 30094:1
2 96:1 97:2 150:1 386:1 413:1 513:1 596:1 670:1 734:2 827:1 893:1 948:1 1007:1 1046:1 1054:1 1147:1 1295:1 1320:2 1383:1 1409:2 1415:1 1462:1 1580:2 1620:1 1627:1 1715:1 1719:1 1798:1 1915:1 2017:1 2030:1 2036:1 2183:1 2436:1 2457:1 2469:1 2475:1 2598:1 2682:2 2890:2 2907:2 2914:1 2979:1 3149:2 3157:1 3509:1 3534:1 3547:1 3695:1 3720:1 3808:1 4122:1 4129:1 4170:1 4175:2 4373:1 4485:1 4615:2 4716:1 4767:1 4782:1 4937:1 5050:1 5053:1 5064:1 5122:1 5127:1 5163:2 5285:1 5287:1 5346:1 5682:1 5741:1 5780:1 5916:1 6131:1 6274:1 6602:1 6623:1 6759:1 6805:1 6827:2 6977:1 7161:1 7286:1 7325:2 7520:1 7830:1 7880:1 7918:1 8078:1 8095:1 8138:3 8145:1 8172:1 8193:1 8213:1 8249:1 8307:1 8348:1 8383:1 8436:1 8593:1 8644:1 8662:2 8694:1 8777:2 8860:2 8963:1 8974:1 8989:1 8995:1 9064:2 9148:1 9401:1 9664:1 9681:1 9699:1 9754:1 9756:2 9892:1 10003:1 10004:1 10043:1 10241:2 10257:1 10356:1 10379:2 10390:1 10538:1 10665:1 10766:1 11030:1 11037:1 11067:1 11095:1 11107:1 11240:1 11448:1 11469:1 11498:1 11506:1 11515:1 11576:1 11751:1 11858:1 11871:1 11996:1 12236:1 12241:1 12245:1 12266:1 12269:1 12366:1 12635:1 13023:1 13039:1 13086:1 13180:1 13240:2 13520:1 13538:1 13688:1 13695:1 13720:1 13898:1 14006:1 14065:1 14150:1 14223:1 14226:1 14310:1 14315:1 14396:1 14424:1 14438:1 14490:1 14516:1 14528:1 14605:1 14711:2 14813:1 14920:1 14922:1 14941:1 15023:1 15093:1 15185:2 15193:1 15225:1 15276:1 15365:1 15395:1 15405:1 15518:1 15631:2 15709:1 15764:1 16109:1 16341:1 16346:1 16478:1 16619:1 16731:1 16777:1 16864:1 17030:1 17146:1 17237:1 17536:2 17586:1 17644:1 17670:1 17692:2 18033:1 18190:1 18203:1 18319:1 18448:1 18552:1 18645:1 18672:1 19024:1 19238:174 19291:1 19360:1 19708:1 19757:1 19858:1 20019:1 20032:1 20033:2 20112:1 20172:1 20178:1 20238:2 20245:1 20397:1 20435:1 20467:1 20672:1 20978:1 21174:1 21192:1 21218:1 21341:1 21362:1 21448:1 21812:1 21888:1 21920:1 21945:1 22002:1 22006:1 22009:1 22069:1 22231:2 22266:1 22349:1 22467:1 22615:1 22819:1 23007:1 23020:1 23084:1 23142:1 23196:1 23207:1 23244:1 23405:1 23413:1 23491:1 23516:2 23581:1 23631:1 23682:1 23691:1 23956:2 24041:1 24123:1 24210:1 24395:1 24582:1 24701:1 24705:1 24769:1 24860:1 24862:1 24889:1 25189:1 25301:1 25380:1 25503:1 25597:1 25675:2 25690:2 25729:1 25989:2 26063:1 26218:1 26239:1 26244:1 26283:1 26322:1 26373:1 26377:1 26437:1 26548:1 26562:1 26565:1 26623:1 26750:1 26773:1 26834:1 26885:2 26901:1 26905:2 27025:1 27099:1 27162:1 27174:1 27318:2 27490:1 27627:1 27693:1 27804:1 27841:1 27884:1 27968:1 28016:1 28020:1 28165:1 28181:2 28216:2 28228:1 28324:1 28329:2 28574:1 28588:2 28590:1 28615:1 28672:1 28676:1 28888:2 28927:2 29019:1 29332:2 29368:1 29426:1 29430:2 29440:1 29612:1 29753:1 29813:2 29899:1 29946:1 29971:2 30019:2 30094:1
2 15:1 85:1 96:1 97:2 98:1 150:1 190:1 310:1 386:1 413:1 513:1 555:1 596:1 670:1 734:3 739:2 827:1 884:1 893:1 948:1 1007:1 1046:1 1054:1 1059:1 1128:1 1147:1 1295:1 1320:3 1337:2 1361:1 1383:1 1409:2 1415:1 1462:1 1580:2 1620:1 1627:2 1715:1 1719:1 1732:1 1798:1 1915:1 1971:1 1995:1 2017:1 2030:1 2036:1 2161:1 2183:1 2436:1 2457:1 2469:2 2475:1 2482:1 2521:1 2547:1 2598:1 2603:1 2657:1 2682:2 2890:2 2907:2 2914:1 2979:1 3145:1 3149:3 3157:1 3208:1 3269:1 3509:1 3534:1 3547:1 3666:1 3695:1 3720:1 3808:1 4122:1 4129:1 4170:1 4175:3 4230:1 4288:1 4298:1 4363:1 4373:1 4485:1 4615:3 4716:1 4767:1 4782:1 4937:1 5050:1 5053:1 5064:1 5122:1 5127:1 5163:2 5164:1 5285:1 5287:1 5346:1 5638:1 5682:1 5741:1 5780:1 5916:1 5990:1 6113:1 6131:1 6274:1 6287:1 6408:1 6491:1 6602:1 6623:1 6728:1 6759:2 6775:1 6805:1 6827:2 6916:1 6977:1 7151:1 7161:1 7177:1 7286:1 7325:2 7520:1 7692:1 7830:1 7880:1 7918:1 8078:1 8095:1 8138:5 8145:1 8155:1 8159:1 8164:1 8172:1 8193:1 8213:1 8249:1 8307:1 8348:1 8383:1 8436:1 8593:1 8644:1 8662:3 8694:1 8765:1 8777:3 8860:2 8963:1 8974:1 8989:1 8995:1 9064:2 9148:1 9349:1 9354:1 9401:1 9407:1 9535:1 9610:1 9664:1 9681:1 9685:1 9699:1 9754:1 9756:2 9892:1 10003:1 10004:1 10043:1 10241:2 10257:1 10356:1 10379:3 10390:1 10466:1 10538:1 10574:1 10614:1 10633:1 10665:1 10766:1 11030:1 11037:1 11067:1 11095:1 11107:1 11142:1 11240:1 11448:1 11469:1 11498:1 11506:1 11515:1 11576:1 11606:1 11751:1 11858:1 11871:1 11996:1 12236:1 12241:1 12245:1 12266:1 12269:1 12277:1 12366:1 12483:1 12614:1 12635:1 12718:1 12816:1 12838:1 12855:1 13023:1 13039:1 13086:1 13094:1 13180:1 13240:3 13520:1 13538:1 13677:1 13688:1 13695:1 13699:1 13720:1 13898:1 14006:1 14065:1 14150:1 14223:1 14226:2 14296:1 14310:1 14315:1 14372:1 14396:1 14424:1 14438:1 14490:1 14516:1 14528:1 14605:1 14711:2 14813:2 14920:1 14922:1 14941:1 15023:1 15093:1 15185:3 15193:1 15225:1 15276:1 15365:1 15395:1 15405:1 15518:1 15631:2 15709:1 15764:1 16000:1 16109:1 16179:1 16341:1 16346:1 16363:1 16378:1 16478:1 16516:1 16611:1 16619:1 16731:1 16777:1 16864:1 17011:1 17022:1 17030:1 17146:1 17237:1 17383:1 17412:1 17536:5 17579:1 17586:1 17644:1 17670:1 17692:2 17765:1 17835:1 17980:1 18033:1 18190:2 18203:1 18319:1 18352:1 18448:1 18552:2 18641:1 18645:1 18672:1 18744:1 19024:1 19044:1 19119:1 19238:247 19291:1 19311:1 19360:1 19400:1 19708:1 19757:1 19858:1 20019:1 20032:2 20033:2 20065:1 20112:1 20127:1 20172:1 20178:1 20238:2 20245:1 20261:1 20328:1 20397:1 20435:1 20467:1 20672:1 20947:1 20978:1 21079:1 21174:1 21178:1 21192:1 21218:1 21341:1 21362:1 21436:1 21448:1 21480:1 21491:1 21540:1 21812:1 21888:1 21920:1 21945:1 21974:1 22002:1 22006:1 22009:1 22065:1 22069:1 22231:2 22251:1 22266:1 22349:2 22438:1 22467:1 22615:2 22632:1 22819:1 23007:1 23020:1 23084:1 23094:1 23142:1 23196:1 23207:2 23244:1 23315:1 23405:1 23413:1 23460:1 23491:1 23516:3 23572:1 23581:1 23631:1 23682:1 23691:1 23695:1 23917:1 23956:3 24041:1 24123:1 24210:1 24318:1 24395:1 24558:1 24582:1 24701:1 24705:1 24753:1 24769:1 24860:1 24862:1 24889:1 24939:1 25097:1 25189:1 25301:1 25309:1 25346:1 25380:1 25503:1 25597:1 25621:1 25623:1 25671:1 25675:2 25690:2 25729:1 25989:2 26063:1 26179:1 26218:1 26239:1 26244:1 26248:1 26283:1 26312:1 26322:1 26362:1 26373:1 26377:1 26437:1 26548:1 26562:1 26565:1 26575:1 26623:1 26750:1 26773:1 26834:1 26836:1 26873:1 26885:2 26901:1 26905:3 27025:1 27099:1 27162:1 27174:1 27318:2 27490:1 27510:1 27627:1 27645:1 27693:1 27804:1 27822:1 27841:1 27884:1 27968:1 28011:1 28016:1 28020:1 28095:1 28138:1 28165:2 28181:2 28216:2 28228:1 28324:1 28326:1 28329:2 28438:1 28574:2 28588:2 28590:1 28615:1 28672:1 28676:1 28725:1 28824:1 28835:1 28888:2 28927:2 29019:1 29088:1 29226:1 29332:3 29357:1 29368:1 29426:1 29430:3 29440:1 29612:1 29622:1 29736:1 29753:1 29802:1 29813:2 29899:1 29916:1 29946:1 29968:1 29971:2 29982:1 30009:1 30019:3 30094:1
2 13:1 15:1 85:1 96:1 97:2 98:1 150:1 174:1 190:1 227:1 306:1 310:1 386:1 413:1 513:1 555:1 596:1 670:2 734:4 739:2 827:1 884:1 893:1 948:1 990:1 1007:1 1046:1 1054:1 1059:1 1122:1 1128:1 1147:1 1295:1 1320:4 1337:2 1361:1 1383:1 1409:2 1415:1 1462:1 1555:1 1580:2 1620:1 1627:2 1715:1 1719:1 1732:1 1798:1 1915:1 1971:1 1995:1 2017:1 2030:1 2036:1 2161:1 2183:1 2236:1 2436:1 2457:1 2467:1 2469:2 2475:1 2482:1 2521:1 2547:1 2598:1 2603:1 2632:1 2657:1 2682:2 2890:2 2907:2 2914:1 2979:1 2990:1 3145:1 3149:4 3156:1 3157:1 3208:1 3269:1 3509:1 3534:1 3547:1 3582:1 3666:1 3695:1 3720:1 3808:1 3819:1 4122:1 4129:1 4170:1 4175:4 4230:1 4242:1 4283:1 4288:1 4298:1 4336:1 4363:1 4373:1 4485:1 4615:4 4629:1 4716:1 4767:1 4781:1 4782:1 4937:1 4972:1 5050:1 5053:1 5064:1 5122:1 5127:1 5163:2 5164:1 5285:1 5287:1 5317:1 5338:1 5346:1 5638:1 5682:1 5741:1 5780:1 5811:1 5916:1 5990:1 6113:2 6126:1 6131:1 6274:1 6287:1 6408:1 6491:1 6602:1 6623:1 6728:1 6736:1 6759:2 6775:3 6805:1 6827:2 6916:1 6977:1 7151:1 7161:1 7177:1 7208:1 7286:1 7325:2 7465:1 7520:1 7623:1 7692:1 7830:1 7880:1 7918:1 8073:1 8078:1 8095:1 8138:6 8145:1 8155:1 8159:1 8164:1 8172:1 8193:1 8213:1 8249:1 8307:1 8348:1 8383:1 8436:1 8593:1 8644:1 8662:4 8693:1 8694:1 8765:1 8777:4 8860:2 8963:1 8974:1 8989:1 8995:1 9064:2 9148:1 9284:1 9349:1 9354:1 9356:1 9401:1 9407:1 9409:1 9535:1 9610:2 9664:1 9681:1 9685:1 9699:1 9754:1 9756:2 9800:1 9892:1 9991:1 10003:1 10004:1 10032:1 10043:1 10241:2 10257:1 10356:1 10379:4 10390:1 10466:1 10521:1 10538:1 10574:1 10614:1 10633:1 10665:1 10725:1 10766:1 10971:1 11030:1 11037:1 11067:1 11095:1 11107:1 11142:2 11193:1 11240:1 11448:1 11469:1 11498:1 11506:1 11515:1 11572:1 11576:1 11606:1 11632:1 11751:1 11827:1 11858:1 11870:1 11871:1 11989:1 11996:1 12236:1 12241:1 12245:1 12266:1 12269:1 12277:2 12366:1 12483:1 12540:1 12614:1 12635:1 12718:1 12816:1 12838:1 12855:1 13023:1 13039:1 13086:1 13094:1 13180:1 13238:1 13240:4 13251:1 13520:1 13538:1 13677:1 13688:1 13695:1 13699:1 13720:1 13898:2 14006:1 14065:1 14067:1 14150:1 14223:1 14226:2 14296:1 14310:1 14315:1 14372:1 14396:1 14424:1 14438:1 14490:1 14516:1 14528:1 14605:1 14615:1 14711:2 14813:3 14920:1 14922:1 14941:1 15023:1 15039:1 15093:1 15133:1 15185:4 15193:1 15202:1 15225:1 15274:1 15276:1 15345:1 15365:1 15395:1 15405:1 15512:1 15518:1 15596:1 15631:2 15709:1 15764:1 15793:1 15831:1 16000:1 16109:1 16179:1 16310:1 16341:1 16346:1 16363:1 16378:1 16478:2 16516:1 16611:1 16619:2 16703:1 16731:1 16777:1 16864:1 16891:1 16897:1 16994:1 17011:1 17022:1 17030:1 17146:1 17237:1 17383:1 17412:1 17536:6 17579:1 17586:1 17644:1 17670:1 17692:2 17765:1 17835:1 17980:1 18033:1 18190:2 18203:1 18319:1 18352:1 18398:1 18448:1 18552:2 18641:1 18645:1 18672:1 18732:1 18744:1 18968:1 19024:1 19044:1 19119:1 19227:1 19238:272 19291:1 19311:1 19360:1 19400:1 19450:1 19708:1 19757:1 19858:1 20019:1 20032:2 20033:2 20065:1 20112:1 20127:1 20172:1 20178:1 20205:1 20238:2 20245:1 20246:1 20261:1 20328:1 20397:1 20435:1 20467:1 20596:1 20672:1 20947:1 20978:1 20982:1 21079:1 21174:1 21178:1 21192:1 21218:1 21341:1 21362:1 21372:1 21436:1 21448:1 21480:1 21491:1 21540:1 21557:1 21704:1 21812:1 21888:1 21920:1 21945:1 21974:1 22002:1 22006:1 22009:1 22065:1 22069:1 22180:1 22231:2 22251:1 22266:1 22349:2 22438:1 22442:1 22453:1 22467:1 22477:1 22615:3 22632:1 22819:1 22914:1 22938:1 23007:1 23020:2 23084:1 23094:1 23142:1 23146:1 23159:1 23196:1 23207:2 23225:1 23244:1 23315:1 23340:1 23405:1 23413:1 23460:1 23491:1 23516:4 23534:1 23572:1 23581:1 23631:1 23682:1 23691:1 23695:1 23917:1 23956:4 24041:1 24087:1 24104:1 24118:1 24123:1 24210:1 24318:2 24395:1 24558:1 24582:1 24656:1 24701:1 24705:1 24753:1 24769:1 24860:1 24862:1 24889:1 24939:1 24977:1 25022:1 25097:1 25189:1 25301:1 25309:1 25346:1 25380:1 25503:1 25597:1 25621:1 25623:1 25671:1 25675:2 25690:2 25729:1 25989:2 26063:1 26179:2 26218:1 26239:1 26244:1 26248:1 26283:1 26312:1 26322:1 26362:1 26373:1 26377:1 26437:2 26548:1 26562:1 26565:1 26575:1 26623:1 26750:1 26773:1 26834:1 26836:1 26873:1 26885:2 26901:1 26905:3 27025:1 27099:1 27162:1 27174:1 27318:2 27490:1 27510:1 27585:1 27617:1 27627:1 27645:1 27693:1 27804:1 27822:1 27841:1 27884:1 27968:1 28011:1 28016:1 28020:1 28095:1 28138:1 28165:2 28181:2 28216:2 28228:1 28324:1 28326:1 28329:2 28423:1 28438:1 28574:2 28588:2 28590:1 28615:1 28662:1 28672:1 28676:1 28725:2 28824:1 28835:1 28888:2 28927:2 29019:1 29055:1 29088:1 29226:1 29332:4 29357:1 29368:1 29426:1 29430:3 29440:1 29612:1 29622:1 29650:1 29736:1 29753:1 29764:1 29802:1 29813:2 29899:1 29916:1 29946:1 29968:1 29971:2 29982:1 30009:1 30019:4 30048:1 30094:1
2 13:1 15:1 39:1 85:1 96:2 97:2 98:1 150:1 174:1 190:1 212:1 227:1 284:1 306:1 310:1 386:1 413:1 442:1 513:1 555:1 586:1 596:1 670:2 734:5 739:2 827:1 865:1 884:1 893:1 948:1 990:1 1007:1 1046:1 1054:1 1059:1 1122:1 1128:1 1147:1 1295:1 1320:5 1337:2 1361:1 1383:1 1409:2 1415:1 1462:1 1555:1 1580:2 1620:1 1627:2 1715:1 1719:1 1732:1 1798:1 1915:1 1971:1 1995:1 2017:1 2030:1 2036:1 2097:1 2161:1 2183:1 2236:1 2436:1 2457:1 2467:1 2469:2 2472:1 2475:1 2482:1 2521:1 2547:1 2598:1 2603:1 2632:1 2657:1 2682:2 2890:2 2907:2 2914:1 2976:1 2979:1 2990:1 3145:1 3149:5 3156:1 3157:1 3208:2 3269:1 3509:1 3534:1 3547:1 3582:1 3666:1 3695:1 3720:1 3808:1 3819:1 4122:1 4129:1 4170:1 4175:5 4230:1 4242:1 4278:1 4283:1 4288:1 4298:1 4336:1 4363:1 4373:1 4485:1 4615:5 4629:1 4659:1 4716:1 4767:2 4781:1 4782:1 4835:1 4937:1 4972:1 5050:1 5053:1 5064:1 5122:1 5127:1 5163:2 5164:1 5285:1 5287:1 5317:1 5338:2 5346:1 5573:1 5638:1 5682:1 5741:1 5780:1 5811:1 5916:1 5990:1 6113:2 6126:1 6131:1 6236:1 6274:1 6287:1 6305:1 6344:1 6408:2 6491:1 6520:1 6602:1 6623:1 6716:1 6728:1 6736:1 6747:2 6759:2 6775:3 6805:1 6827:2 6916:1 6977:1 7020:1 7151:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7437:1 7465:1 7520:1 7623:1 7692:1 7830:1 7880:1 7918:1 8073:1 8078:1 8095:1 8138:6 8141:1 8145:1 8155:1 8159:2 8164:1 8172:1 8193:1 8213:1 8249:1 8307:1 8348:1 8383:1 8436:1 8593:1 8644:1 8659:1 8662:5 8693:1 8694:1 8765:1 8777:5 8860:2 8963:1 8974:1 8980:1 8983:1 8989:1 8995:1 9054:1 9064:2 9067:1 9148:1 9284:1 9310:1 9349:1 9354:1 9356:1 9401:1 9407:1 9409:1 9535:1 9610:2 9664:1 9671:1 9681:1 9684:1 9685:1 9699:1 9754:1 9756:2 9800:1 9808:1 9892:1 9991:1 10003:1 10004:1 10032:1 10041:1 10043:2 10241:2 10257:1 10356:1 10379:5 10390:1 10397:1 10466:1 10521:1 10538:2 10574:1 10606:1 10614:1 10633:1 10665:1 10725:1 10766:2 10971:1 11030:1 11037:1 11067:1 11095:1 11107:1 11142:2 11193:1 11240:1 11448:1 11469:1 11482:1 11498:1 11506:1 11515:1 11550:1 11572:1 11576:1 11606:1 11632:1 11642:1 11739:1 11751:1 11827:1 11858:1 11870:1 11871:1 11900:1 11989:1 11996:1 12229:1 12236:1 12241:1 12245:1 12266:1 12269:1 12277:2 12366:1 12483:1 12540:1 12614:1 12635:1 12718:1 12816:1 12838:1 12855:2 13023:2 13039:1 13086:1 13094:1 13180:1 13238:1 13240:5 13251:1 13444:1 13520:1 13538:1 13631:1 13677:1 13688:1 13695:2 13699:1 13720:1 13750:1 13833:1 13898:2 13995:1 14006:1 14065:1 14067:1 14150:1 14223:1 14226:2 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14396:1 14424:1 14438:1 14490:1 14516:1 14528:1 14605:1 14615:1 14634:2 14708:1 14711:2 14813:3 14920:1 14922:2 14941:1 15023:1 15039:1 15087:1 15093:1 15133:1 15185:5 15193:2 15202:1 15225:1 15274:1 15276:1 15345:1 15365:1 15395:1 15405:1 15512:1 15518:1 15596:1 15612:1 15631:2 15709:1 15764:1 15793:1 15831:1 16000:1 16109:1 16139:1 16179:1 16310:1 16325:1 16341:1 16346:2 16363:1 16378:1 16478:2 16516:1 16611:1 16619:2 16703:1 16731:1 16777:1 16864:1 16891:1 16897:1 16994:1 17011:1 17022:1 17030:1 17092:1 17146:1 17237:1 17383:1 17412:1 17536:7 17579:1 17586:1 17644:1 17670:1 17692:2 17761:1 17765:1 17835:1 17980:1 18033:1 18190:2 18203:1 18319:1 18352:1 18398:1 18448:1 18552:2 18641:1 18645:1 18672:1 18732:1 18744:1 18968:1 19024:1 19044:1 19119:1 19227:1 19238:312 19291:1 19311:1 19360:1 19400:1 19450:1 19707:1 19708:1 19757:2 19826:2 19858:1 19976:1 20019:1 20032:2 20033:2 20065:1 20112:1 20127:1 20152:2 20172:1 20178:1 20205:1 20238:2 20245:1 20246:1 20261:1 20328:1 20397:1 20435:1 20467:1 20563:1 20596:1 20627:1 20672:2 20784:1 20947:2 20978:1 20982:1 21018:1 21079:1 21174:1 21178:1 21192:1 21218:1 21341:1 21362:1 21372:1 21386:1 21436:1 21448:1 21480:1 21491:1 21540:2 21557:1 21658:1 21696:1 21704:1 21724:1 21812:1 21888:1 21920:1 21945:1 21974:1 22002:1 22006:1 22009:1 22064:1 22065:1 22069:1 22180:2 22231:2 22251:1 22266:1 22349:2 22388:1 22438:1 22442:1 22453:1 22467:1 22477:1 22527:1 22615:3 22632:1 22819:1 22821:2 22843:1 22914:2 22938:1 23007:1 23020:2 23084:1 23090:1 23094:1 23142:1 23146:1 23159:1 23196:1 23207:2 23225:1 23244:1 23267:1 23315:1 23340:1 23405:1 23413:1 23460:1 23491:1 23516:5 23534:1 23572:1 23581:1 23631:1 23682:1 23691:1 23695:1 23917:1 23956:5 24041:1 24087:1 24104:1 24118:1 24123:1 24210:1 24318:2 24395:1 24558:1 24582:2 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24860:1 24862:1 24888:1 24889:1 24893:1 24939:1 24977:1 25021:1 25022:1 25097:1 25189:1 25301:1 25309:1 25346:2 25380:1 25503:1 25597:1 25621:1 25623:1 25671:1 25675:2 25678:1 25690:2 25729:1 25989:2 26063:1 26179:2 26218:1 26239:1 26244:1 26248:1 26283:1 26312:1 26322:1 26362:1 26373:1 26377:1 26406:1 26437:2 26548:1 26562:1 26565:1 26575:1 26623:1 26634:1 26696:1 26750:1 26773:1 26824:1 26834:1 26836:1 26873:1 26885:2 26901:1 26905:3 26963:1 27025:1 27099:1 27162:1 27174:1 27300:1 27318:2 27490:1 27510:1 27559:2 27585:1 27617:1 27627:1 27645:1 27693:1 27696:1 27804:1 27822:1 27841:1 27842:1 27884:1 27968:1 28011:1 28016:1 28020:1 28095:1 28138:1 28165:2 28181:2 28216:2 28228:1 28251:1 28324:1 28326:1 28329:2 28347:1 28349:1 28423:1 28438:1 28574:2 28588:2 28590:1 28615:1 28662:1 28672:1 28676:1 28725:2 28742:1 28824:1 28835:1 28888:4 28927:2 29019:1 29055:1 29088:1 29226:1 29332:5 29357:2 29368:1 29426:1 29430:3 29440:1 29612:1 29622:1 29650:1 29736:1 29749:1 29753:1 29764:1 29802:1 29813:2 29899:1 29916:1 29946:1 29968:1 29971:2 29982:1 30009:1 30019:5 30048:1 30094:1 30107:1
2 13:1 15:1 39:1 85:1 96:2 97:2 98:1 150:1 174:1 190:1 212:1 227:1 284:1 306:1 310:1 386:1 413:1 442:1 513:1 555:1 586:1 596:1 612:1 670:2 717:1 734:6 739:2 743:1 827:1 865:1 884:1 893:1 895:1 948:1 990:4 996:1 1007:1 1046:1 1054:1 1059:1 1122:1 1128:1 1147:2 1295:1 1320:6 1337:2 1361:1 1363:1 1383:1 1409:2 1415:1 1462:2 1555:1 1580:2 1620:1 1627:3 1692:1 1715:1 1719:1 1732:1 1760:1 1798:1 1835:1 1848:1 1915:1 1971:1 1995:1 2017:1 2030:1 2036:1 2097:1 2161:1 2183:1 2236:1 2318:1 2359:1 2436:1 2457:1 2467:1 2469:2 2472:1 2475:1 2482:1 2521:1 2547:1 2598:1 2603:1 2632:1 2657:1 2682:2 2692:1 2709:1 2726:1 2890:2 2907:2 2914:1 2976:1 2979:1 2990:1 3058:1 3145:1 3149:6 3156:1 3157:1 3172:1 3208:2 3269:1 3509:1 3534:1 3547:1 3582:1 3666:1 3695:1 3720:1 3769:1 3808:1 3819:1 3920:1 3941:1 4064:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:6 4230:1 4242:1 4261:1 4278:1 4283:1 4288:2 4298:1 4336:1 4363:1 4373:2 4379:1 4422:1 4452:1 4485:1 4489:1 4529:1 4615:6 4622:1 4629:1 4659:1 4716:3 4767:2 4781:1 4782:1 4797:1 4820:1 4835:1 4922:1 4937:1 4972:1 5050:1 5053:1 5055:1 5064:1 5122:1 5127:1 5144:1 5163:3 5164:1 5203:1 5285:2 5287:1 5300:1 5301:1 5309:1 5317:2 5335:1 5338:2 5346:1 5573:1 5584:1 5638:1 5682:1 5741:1 5780:1 5811:1 5916:1 5990:1 6113:2 6126:1 6131:1 6236:1 6274:1 6287:1 6305:1 6344:1 6408:2 6491:1 6500:1 6520:1 6602:1 6610:1 6623:1 6716:1 6728:1 6736:1 6747:2 6759:2 6769:1 6770:1 6775:4 6805:1 6827:2 6916:1 6977:1 7020:1 7037:1 7151:1 7158:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7367:1 7429:1 7434:1 7437:1 7465:1 7520:1 7623:1 7666:1 7692:1 7830:1 7847:1 7880:1 7918:1 8073:3 8078:1 8095:1 8138:6 8141:1 8145:2 8155:1 8159:2 8164:1 8172:1 8193:1 8213:1 8249:1 8307:1 8348:1 8383:1 8436:1 8580:1 8593:1 8644:1 8659:1 8662:6 8693:1 8694:2 8765:1 8777:6 8860:2 8963:1 8974:1 8980:1 8983:1 8989:1 8995:2 9054:1 9064:2 9066:1 9067:1 9072:1 9123:1 9148:1 9155:1 9284:1 9310:1 9349:1 9354:1 9356:1 9357:1 9401:1 9407:1 9409:1 9435:1 9490:1 9535:1 9610:2 9632:1 9664:2 9671:1 9681:1 9684:1 9685:1 9699:1 9754:1 9756:2 9800:1 9808:1 9874:1 9892:1 9991:1 10003:2 10004:1 10032:1 10041:1 10043:2 10106:1 10241:2 10252:1 10257:1 10356:1 10379:6 10390:1 10397:1 10465:1 10466:1 10516:1 10521:1 10538:2 10574:2 10606:1 10614:1 10633:2 10665:2 10725:1 10729:1 10746:1 10766:2 10971:1 11030:1 11037:1 11067:1 11095:1 11107:1 11142:2 11193:1 11217:1 11240:1 11252:1 11289:1 11333:1 11448:1 11464:1 11469:1 11482:1 11498:1 11506:1 11515:1 11526:1 11550:1 11570:1 11572:2 11576:2 11577:1 11606:1 11632:1 11642:1 11651:1 11739:1 11751:1 11827:1 11858:1 11870:1 11871:1 11900:1 11989:1 11996:1 12004:1 12018:1 12035:1 12163:1 12204:1 12229:1 12236:1 12241:1 12245:1 12266:1 12269:1 12277:2 12366:1 12465:1 12483:1 12540:1 12611:1 12614:1 12635:2 12717:1 12718:1 12719:1 12816:1 12838:1 12855:2 12919:1 13023:2 13039:1 13086:1 13094:1 13180:1 13238:1 13240:6 13251:1 13254:1 13296:1 13444:1 13509:1 13520:1 13538:1 13551:1 13631:1 13677:1 13688:1 13695:2 13699:1 13720:1 13750:1 13833:1 13898:3 13995:1 14006:1 14065:1 14067:1 14071:1 14104:1 14150:1 14170:1 14223:2 14226:2 14250:1 14254:1 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14424:1 14438:1 14484:1 14490:1 14516:1 14528:1 14605:2 14615:1 14634:2 14708:1 14711:2 14769:1 14813:3 14914:1 14920:2 14922:2 14941:1 15023:1 15039:1 15055:1 15087:1 15093:1 15110:1 15131:1 15133:1 15185:6 15193:2 15202:1 15225:1 15274:1 15276:1 15345:1 15365:1 15395:1 15405:1 15512:1 15518:1 15596:1 15612:1 15631:2 15709:1 15764:1 15793:1 15831:1 15955:1 16000:1 16084:1 16109:1 16139:1 16144:1 16179:1 16259:1 16285:1 16310:1 16325:1 16341:1 16346:2 16363:1 16378:1 16388:1 16445:1 16457:1 16478:3 16516:1 16611:1 16619:3 16703:1 16731:1 16777:1 16838:1 16864:1 16891:1 16897:1 16994:1 17011:1 17022:1 17030:1 17092:1 17146:1 17237:1 17383:1 17412:1 17536:8 17549:1 17579:1 17586:2 17637:1 17644:1 17670:1 17692:2 17761:1 17764:1 17765:1 17835:1 17912:1 17980:1 18033:1 18115:1 18141:1 18190:2 18203:1 18319:1 18351:1 18352:1 18398:1 18415:1 18448:2 18473:1 18552:2 18641:1 18645:1 18672:1 18732:1 18744:1 18968:1 19024:2 19044:1 19104:1 19119:1 19227:1 19238:395 19291:1 19311:1 19360:1 19372:1 19374:1 19400:1 19430:1 19450:1 19707:1 19708:1 19749:1 19757:2 19821:1 19826:2 19858:2 19976:1 20009:1 20019:1 20032:2 20033:2 20065:2 20112:1 20127:3 20152:2 20172:1 20178:1 20205:2 20229:1 20238:2 20245:2 20246:1 20261:1 20328:1 20397:1 20435:1 20467:1 20563:1 20571:1 20578:1 20596:1 20627:1 20671:1 20672:2 20784:1 20841:1 20947:2 20978:1 20982:1 21018:1 21079:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21341:1 21362:1 21372:2 21380:1 21386:1 21432:1 21436:1 21448:2 21460:1 21480:1 21491:1 21503:1 21540:2 21557:2 21571:1 21658:1 21696:1 21704:1 21724:1 21812:1 21883:1 21888:1 21920:1 21945:1 21974:1 22002:1 22006:1 22009:1 22064:1 22065:1 22069:1 22170:1 22180:2 22231:2 22251:1 22266:1 22349:2 22388:1 22438:2 22442:1 22453:1 22467:1 22477:1 22494:2 22527:1 22615:3 22618:1 22632:1 22655:1 22679:1 22804:1 22819:1 22821:2 22843:1 22885:1 22890:1 22914:2 22938:2 23007:1 23015:1 23020:2 23079:1 23084:1 23090:1 23094:1 23142:2 23146:1 23159:1 23196:1 23200:1 23207:4 23225:1 23244:1 23267:1 23281:1 23315:1 23340:1 23405:1 23413:1 23460:1 23491:1 23516:6 23534:1 23572:1 23581:1 23591:1 23631:1 23682:1 23691:1 23695:1 23718:1 23812:1 23897:1 23917:1 23956:6 24001:1 24038:1 24041:3 24087:1 24104:1 24118:2 24123:1 24210:1 24318:2 24391:1 24395:1 24476:1 24558:1 24582:2 24636:1 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24860:1 24862:1 24869:1 24888:1 24889:1 24893:1 24939:1 24977:2 25009:1 25014:1 25021:1 25022:1 25097:1 25189:1 25301:1 25309:1 25346:2 25380:1 25467:1 25503:1 25597:1 25621:1 25623:1 25671:1 25675:2 25678:1 25690:2 25712:1 25729:1 25796:1 25842:1 25884:1 25989:2 26063:1 26179:2 26218:1 26239:1 26244:1 26245:1 26248:1 26283:1 26297:1 26312:1 26322:2 26325:1 26362:1 26373:1 26377:1 26406:1 26437:2 26548:1 26562:1 26565:1 26568:1 26575:1 26596:1 26623:1 26634:1 26696:1 26750:1 26773:1 26824:1 26834:1 26836:1 26873:1 26885:2 26901:1 26905:4 26963:1 27025:1 27099:1 27158:1 27162:1 27174:1 27215:1 27275:1 27300:1 27318:2 27373:1 27490:1 27510:1 27559:2 27585:1 27617:1 27627:1 27628:1 27631:1 27645:1 27681:1 27693:1 27696:1 27804:1 27822:1 27841:1 27842:1 27854:1 27884:2 27968:1 28011:1 28016:1 28020:1 28044:1 28067:1 28095:1 28105:1 28138:1 28165:2 28169:1 28181:2 28216:2 28228:1 28251:1 28269:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28423:1 28438:1 28574:2 28588:2 28590:1 28615:1 28662:1 28672:1 28676:1 28725:2 28742:1 28824:1 28835:1 28838:1 28874:1 28888:6 28927:2 29019:1 29055:2 29061:1 29074:1 29088:1 29158:1 29226:1 29332:6 29357:2 29368:1 29426:1 29430:3 29440:1 29612:1 29622:1 29650:1 29736:1 29739:1 29749:1 29753:1 29764:1 29802:1 29813:2 29899:1 29903:1 29916:1 29946:1 29968:1 29971:2 29982:2 30009:1 30019:6 30048:1 30094:1 30107:1
2 13:1 15:1 39:2 85:1 96:2 97:2 98:1 150:1 174:1 190:1 212:1 227:1 284:1 306:1 310:1 386:2 413:1 442:1 513:1 555:1 586:1 596:1 612:1 670:2 717:1 734:7 739:2 743:1 777:1 798:1 827:1 865:1 884:1 887:1 893:1 895:1 948:1 990:4 996:1 1007:1 1046:1 1054:1 1059:1 1122:1 1128:1 1147:2 1295:1 1320:7 1332:1 1337:2 1361:1 1363:1 1374:1 1383:1 1409:2 1415:1 1462:2 1555:1 1567:1 1580:2 1620:1 1627:3 1692:1 1715:1 1719:1 1732:1 1760:1 1798:1 1835:1 1848:2 1915:1 1949:1 1971:1 1995:1 2017:1 2030:1 2036:1 2084:1 2097:1 2161:1 2183:1 2213:1 2236:1 2318:1 2359:1 2423:1 2436:1 2457:1 2467:1 2469:2 2472:2 2475:1 2482:1 2497:1 2508:1 2521:1 2547:1 2598:1 2603:1 2632:1 2657:1 2682:2 2692:1 2709:1 2726:1 2890:2 2907:2 2914:1 2976:1 2979:1 2990:1 3056:1 3058:1 3145:2 3149:7 3156:1 3157:1 3172:1 3174:1 3208:2 3269:1 3467:1 3509:1 3534:1 3547:1 3582:1 3666:1 3695:1 3720:1 3769:1 3808:1 3819:1 3920:1 3941:1 4058:1 4064:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:7 4230:1 4242:1 4261:2 4278:1 4283:1 4288:2 4298:1 4336:1 4363:1 4373:2 4379:1 4422:1 4452:1 4485:1 4489:1 4529:1 4615:7 4622:1 4629:2 4659:1 4716:3 4732:1 4767:2 4781:1 4782:1 4797:1 4820:1 4835:1 4922:1 4937:1 4960:1 4965:1 4972:1 5050:1 5053:1 5055:1 5064:1 5122:1 5127:1 5144:1 5163:3 5164:1 5203:1 5285:2 5287:1 5300:1 5301:1 5309:1 5317:2 5335:2 5338:2 5339:1 5346:1 5573:1 5584:1 5638:1 5682:1 5741:1 5780:1 5811:1 5916:1 5990:1 6113:2 6126:1 6131:1 6236:1 6274:1 6287:1 6305:1 6344:1 6408:2 6491:1 6500:1 6520:1 6602:1 6610:1 6623:2 6716:1 6728:1 6736:1 6747:2 6759:2 6769:1 6770:1 6775:4 6805:1 6827:2 6916:1 6977:1 7020:1 7037:1 7151:1 7158:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7367:1 7429:1 7434:1 7437:1 7465:1 7520:1 7588:1 7623:1 7666:1 7692:1 7732:1 7830:1 7847:1 7880:1 7918:1 8073:3 8078:1 8095:1 8138:8 8141:1 8145:2 8155:2 8159:2 8164:1 8170:1 8172:1 8193:1 8213:1 8249:1 8307:1 8348:1 8383:1 8436:1 8580:1 8593:1 8644:1 8659:1 8662:7 8693:2 8694:2 8736:1 8765:1 8777:7 8860:2 8948:1 8963:1 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 9054:1 9064:2 9066:1 9067:1 9072:1 9123:1 9148:1 9155:1 9273:1 9284:1 9310:1 9349:1 9354:1 9356:1 9357:1 9401:1 9407:1 9409:1 9435:1 9436:1 9490:1 9535:1 9610:2 9632:1 9664:2 9671:2 9681:1 9684:1 9685:1 9686:1 9699:1 9754:1 9756:2 9758:1 9800:1 9808:1 9874:1 9892:1 9991:1 10003:2 10004:1 10032:1 10041:1 10043:2 10106:1 10241:2 10252:1 10257:1 10356:1 10379:7 10390:1 10397:1 10465:1 10466:1 10516:1 10521:1 10538:2 10545:1 10574:2 10606:1 10614:1 10633:2 10665:2 10725:1 10729:1 10746:1 10766:2 10931:1 10971:1 11030:1 11037:1 11067:1 11089:1 11095:1 11107:1 11142:2 11193:1 11217:1 11240:1 11252:1 11289:1 11333:1 11350:1 11396:1 11448:1 11464:2 11469:1 11482:1 11498:1 11506:1 11515:1 11526:1 11550:1 11552:1 11570:1 11572:2 11576:2 11577:1 11606:1 11632:1 11642:1 11651:1 11739:1 11751:1 11827:1 11858:1 11870:2 11871:1 11900:2 11989:1 11996:1 12004:1 12018:1 12035:1 12125:1 12163:1 12204:1 12229:1 12236:1 12241:1 12245:1 12266:1 12269:1 12277:2 12366:1 12465:1 12483:1 12540:1 12611:1 12614:1 12635:2 12717:1 12718:1 12719:1 12816:1 12838:1 12855:2 12919:1 13023:2 13039:1 13086:1 13094:1 13180:1 13238:1 13240:7 13251:1 13254:3 13296:1 13322:1 13444:2 13509:1 13520:1 13538:1 13551:1 13631:1 13653:1 13677:1 13688:1 13695:2 13699:1 13720:1 13728:1 13750:1 13833:2 13898:4 13995:1 14006:1 14051:1 14065:1 14067:1 14071:1 14104:1 14136:1 14150:1 14170:1 14223:2 14226:2 14250:1 14254:1 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14424:1 14438:1 14484:2 14490:1 14516:1 14528:1 14605:2 14615:1 14634:2 14708:1 14711:2 14769:1 14813:3 14914:1 14920:2 14922:2 14941:1 15023:1 15039:1 15055:1 15087:1 15093:1 15110:1 15131:1 15133:1 15185:7 15193:2 15202:1 15225:1 15274:1 15276:1 15324:1 15345:1 15365:1 15395:1 15405:1 15512:1 15518:1 15596:1 15612:1 15631:2 15706:1 15709:1 15738:1 15764:1 15793:1 15831:1 15955:1 16000:1 16084:1 16109:1 16139:3 16144:2 16179:1 16259:1 16285:1 16310:1 16325:1 16341:1 16346:2 16363:1 16378:1 16388:1 16445:1 16457:1 16478:3 16516:1 16611:1 16619:4 16703:1 16731:3 16777:1 16838:1 16864:1 16891:1 16897:2 16994:1 17011:1 17022:1 17030:1 17092:1 17137:1 17146:1 17237:1 17252:1 17291:1 17383:1 17412:1 17536:9 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17670:1 17692:2 17722:1 17761:1 17764:1 17765:1 17835:1 17912:1 17980:2 18033:1 18036:1 18105:1 18115:2 18141:1 18190:2 18203:2 18319:1 18351:2 18352:1 18398:2 18415:1 18448:2 18473:1 18500:1 18552:2 18641:1 18645:1 18672:1 18732:2 18744:1 18968:1 19024:2 19044:1 19104:1 19119:1 19227:1 19238:446 19291:1 19311:1 19330:1 19360:1 19372:1 19374:1 19400:1 19430:1 19450:1 19707:1 19708:1 19714:1 19749:1 19757:2 19821:1 19826:2 19858:2 19976:1 20009:1 20019:1 20032:2 20033:2 20065:2 20112:1 20127:3 20152:2 20172:1 20178:1 20205:2 20216:1 20229:1 20238:2 20245:2 20246:1 20261:1 20328:1 20397:1 20435:1 20467:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:2 20784:1 20841:1 20851:1 20890:1 20947:2 20978:1 20982:1 21018:1 21079:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21341:1 21362:1 21372:2 21380:1 21386:1 21432:1 21436:1 21448:2 21460:1 21480:1 21491:1 21503:1 21540:2 21557:2 21571:1 21580:1 21643:1 21658:1 21696:1 21697:1 21704:1 21724:1 21748:1 21812:1 21866:1 21883:1 21888:1 21920:1 21945:1 21974:1 22002:1 22006:1 22009:1 22064:1 22065:1 22069:1 22170:1 22180:2 22231:2 22251:1 22266:1 22349:2 22388:1 22438:2 22442:1 22453:1 22467:1 22477:1 22494:2 22527:1 22615:3 22618:1 22632:1 22655:1 22663:1 22679:1 22804:1 22819:1 22821:2 22843:2 22885:1 22890:1 22914:2 22938:2 23007:1 23015:1 23020:2 23079:1 23084:3 23090:1 23094:1 23142:2 23144:1 23146:1 23159:1 23196:1 23200:1 23207:4 23225:1 23244:1 23267:1 23281:1 23315:1 23340:1 23405:1 23413:1 23460:1 23491:1 23516:7 23534:1 23572:1 23581:1 23591:1 23631:1 23682:1 23691:1 23695:1 23718:1 23812:1 23897:1 23899:2 23909:1 23917:1 23956:7 24001:1 24038:1 24041:3 24087:1 24104:1 24118:2 24123:1 24171:1 24210:1 24318:2 24391:1 24395:1 24476:1 24535:1 24558:1 24582:2 24636:1 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24860:1 24862:1 24869:1 24888:1 24889:1 24893:1 24939:2 24977:2 25009:1 25014:1 25021:1 25022:1 25097:1 25185:1 25189:1 25301:1 25309:1 25346:2 25380:1 25427:1 25467:1 25503:1 25597:1 25621:1 25623:1 25671:1 25675:2 25678:1 25690:2 25712:1 25729:1 25796:1 25842:1 25884:1 25915:1 25918:1 25989:2 26034:1 26063:1 26179:2 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26283:1 26297:1 26312:1 26322:2 26325:1 26362:1 26373:1 26377:2 26406:1 26434:1 26437:2 26548:1 26562:1 26565:1 26568:1 26575:1 26596:1 26623:1 26634:1 26696:1 26721:1 26739:1 26750:1 26761:1 26773:1 26824:1 26834:1 26836:1 26873:2 26885:2 26901:1 26905:4 26963:1 27025:1 27031:1 27099:1 27158:1 27162:1 27174:1 27215:1 27275:1 27300:1 27318:2 27373:1 27490:1 27510:1 27559:2 27585:2 27617:1 27627:1 27628:1 27631:2 27645:1 27681:1 27693:1 27696:1 27708:1 27804:1 27822:1 27841:1 27842:1 27854:2 27884:2 27968:1 28011:1 28016:1 28020:1 28044:1 28067:1 28095:1 28105:1 28138:1 28165:2 28169:1 28181:2 28216:2 28228:1 28251:1 28269:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28423:1 28438:1 28574:2 28575:1 28588:2 28590:1 28591:1 28615:1 28662:1 28672:1 28676:1 28725:2 28742:1 28824:1 28835:1 28838:1 28874:1 28888:6 28927:2 28996:1 29019:1 29055:2 29061:1 29074:1 29088:1 29158:1 29226:1 29237:1 29332:7 29357:2 29368:1 29426:2 29430:4 29440:1 29463:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29749:1 29753:1 29764:1 29802:1 29813:2 29899:1 29903:1 29916:1 29946:1 29968:1 29971:2 29982:2 30009:1 30019:7 30048:1 30094:1 30095:2 30107:1
2 13:1 15:1 39:2 85:1 96:2 97:2 98:1 150:2 174:1 190:1 212:1 227:1 279:1 283:1 284:1 305:1 306:1 310:1 386:2 413:1 442:1 477:1 513:1 548:1 555:1 586:1 596:1 612:1 670:2 683:1 686:1 717:1 734:8 739:2 743:1 777:1 798:1 827:1 865:1 884:1 887:1 890:1 893:1 895:1 948:2 990:4 996:1 1007:2 1046:1 1054:1 1059:1 1066:1 1077:1 1102:1 1122:1 1128:1 1147:2 1268:1 1295:1 1320:7 1332:1 1337:2 1361:1 1363:1 1374:1 1381:1 1383:1 1409:2 1415:1 1462:2 1482:1 1555:1 1567:1 1580:2 1593:1 1620:1 1627:3 1692:2 1715:1 1719:1 1732:1 1760:1 1798:1 1806:1 1835:1 1848:2 1849:1 1881:1 1915:1 1949:1 1971:1 1972:1 1995:1 2017:1 2030:1 2036:2 2084:1 2097:1 2161:1 2183:1 2199:1 2213:1 2236:1 2318:1 2359:1 2423:1 2436:1 2457:1 2467:1 2469:2 2472:2 2475:1 2482:1 2486:1 2490:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2568:1 2598:1 2603:1 2604:1 2632:1 2649:1 2657:1 2672:1 2682:2 2692:1 2709:2 2726:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:1 2979:1 2985:1 2990:1 3050:2 3056:1 3058:1 3145:3 3149:8 3153:1 3156:1 3157:1 3172:2 3174:1 3194:1 3208:2 3269:1 3307:1 3467:1 3509:1 3534:1 3547:1 3582:1 3666:1 3695:1 3720:1 3731:1 3769:1 3808:1 3819:1 3920:1 3941:1 3954:1 3957:1 4010:1 4058:1 4064:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:7 4176:1 4230:1 4242:1 4249:1 4250:1 4261:2 4278:1 4283:1 4288:3 4298:1 4336:1 4363:1 4373:2 4379:1 4422:1 4437:1 4452:1 4481:1 4482:1 4485:1 4489:1 4490:1 4529:1 4615:7 4622:1 4629:2 4659:1 4716:4 4732:1 4767:2 4781:1 4782:1 4795:1 4797:1 4820:1 4835:1 4922:1 4937:1 4960:1 4965:1 4972:1 5050:1 5053:1 5055:1 5064:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:3 5164:2 5203:1 5285:2 5287:1 5300:2 5301:1 5309:1 5317:2 5326:1 5335:2 5338:2 5339:1 5346:1 5573:1 5584:1 5638:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:1 5916:1 5990:1 5993:1 6113:2 6126:1 6131:1 6236:1 6274:1 6287:1 6305:1 6344:1 6402:1 6408:2 6491:1 6500:1 6508:1 6519:1 6520:1 6602:1 6610:1 6623:2 6644:1 6716:1 6728:1 6736:1 6747:2 6759:2 6763:1 6769:1 6770:1 6775:4 6805:1 6827:2 6854:1 6912:1 6916:1 6977:1 7020:1 7037:1 7151:1 7158:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7354:1 7367:1 7429:1 7434:1 7437:1 7465:2 7520:1 7548:1 7588:1 7623:1 7654:1 7666:1 7692:1 7732:1 7830:1 7847:1 7880:2 7882:1 7918:1 7970:1 7994:1 8072:1 8073:3 8078:1 8092:1 8095:2 8128:1 8138:11 8141:1 8145:2 8155:3 8159:2 8164:1 8170:1 8172:1 8193:1 8213:1 8249:2 8307:2 8324:1 8348:1 8383:1 8436:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:8 8693:3 8694:2 8736:1 8765:1 8777:9 8860:2 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 9017:1 9054:1 9064:2 9066:1 9067:1 9072:1 9123:1 9148:1 9155:1 9169:1 9273:1 9284:1 9310:1 9349:1 9354:1 9356:1 9357:1 9401:1 9407:1 9409:1 9421:1 9435:1 9436:1 9490:1 9535:1 9610:2 9632:1 9664:2 9671:2 9681:1 9684:1 9685:1 9686:1 9699:1 9738:1 9754:1 9756:2 9758:1 9794:1 9800:1 9808:1 9874:1 9891:1 9892:2 9991:1 10003:2 10004:2 10032:1 10041:1 10043:2 10106:1 10241:2 10252:1 10257:1 10271:1 10356:1 10379:7 10390:1 10397:1 10439:1 10465:1 10466:1 10516:1 10521:1 10526:1 10538:2 10545:1 10574:2 10606:1 10614:1 10633:2 10665:2 10691:1 10721:1 10725:2 10729:1 10746:1 10766:2 10931:1 10971:1 11030:1 11037:1 11053:1 11067:1 11089:1 11095:1 11107:1 11109:2 11142:2 11193:1 11217:1 11226:1 11233:1 11240:1 11252:1 11289:1 11315:1 11333:1 11350:1 11396:1 11448:1 11464:2 11469:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11550:1 11552:1 11570:1 11572:2 11576:2 11577:1 11606:1 11632:2 11636:1 11641:1 11642:1 11651:1 11713:1 11739:1 11751:1 11827:1 11858:1 11870:2 11871:1 11900:2 11989:1 11996:1 12004:1 12018:1 12035:1 12125:1 12163:1 12204:1 12217:1 12229:1 12236:1 12241:1 12245:1 12266:1 12269:1 12277:2 12290:1 12297:1 12366:1 12369:1 12375:1 12465:1 12483:1 12540:1 12611:1 12614:1 12635:2 12662:1 12717:1 12718:1 12719:1 12816:1 12838:1 12855:2 12868:1 12919:1 13023:2 13039:1 13040:1 13081:1 13086:1 13094:1 13180:1 13238:1 13240:8 13251:1 13254:3 13296:3 13318:1 13322:1 13419:1 13444:2 13497:1 13509:1 13520:1 13538:1 13549:1 13551:1 13631:1 13653:1 13677:1 13688:1 13695:2 13699:1 13720:1 13728:1 13750:1 13833:2 13836:1 13898:5 13924:1 13995:1 14006:1 14017:1 14051:1 14065:1 14067:1 14071:1 14104:1 14132:1 14136:1 14150:1 14156:1 14170:1 14173:1 14223:2 14226:3 14250:1 14254:1 14259:1 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14424:1 14438:1 14484:2 14490:2 14516:1 14528:2 14605:2 14615:1 14634:2 14708:1 14711:2 14769:1 14813:3 14914:1 14920:2 14922:2 14941:1 15023:1 15039:1 15055:1 15087:1 15093:1 15110:1 15131:1 15133:1 15141:1 15185:8 15193:2 15202:1 15225:1 15274:1 15276:1 15280:1 15324:1 15345:1 15365:1 15395:1 15405:1 15512:1 15518:1 15596:1 15612:1 15628:1 15631:2 15706:2 15709:1 15738:1 15764:1 15774:1 15793:1 15831:1 15955:1 16000:1 16084:1 16109:1 16139:3 16144:2 16179:1 16259:1 16273:1 16285:1 16310:2 16325:1 16341:1 16346:2 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:3 16516:1 16611:1 16619:5 16694:1 16703:1 16731:4 16777:2 16838:1 16864:1 16891:2 16897:2 16898:1 16994:1 17011:1 17022:1 17030:1 17092:1 17137:1 17146:1 17224:1 17237:2 17252:1 17291:1 17383:1 17412:1 17536:11 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17670:1 17692:2 17722:1 17761:1 17764:1 17765:1 17835:1 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18141:1 18190:2 18203:2 18212:1 18319:1 18351:2 18352:1 18398:2 18415:1 18439:1 18448:2 18473:1 18500:1 18552:2 18611:1 18641:1 18642:1 18645:1 18672:1 18732:2 18738:1 18744:1 18968:1 19024:3 19044:1 19104:1 19119:1 19144:1 19169:1 19227:1 19238:511 19261:1 19272:1 19291:1 19311:1 19330:1 19360:1 19372:1 19374:1 19400:1 19430:1 19450:1 19707:1 19708:1 19714:1 19749:1 19757:2 19821:1 19826:2 19858:2 19863:1 19871:1 19976:1 20009:1 20019:1 20032:2 20033:2 20065:2 20112:1 20127:4 20152:2 20172:2 20178:1 20205:3 20216:1 20229:1 20238:2 20245:2 20246:1 20261:1 20328:1 20397:1 20435:1 20467:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:2 20769:1 20784:1 20791:1 20841:1 20851:1 20890:1 20947:2 20978:1 20982:1 21018:1 21079:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:1 21408:1 21432:1 21436:1 21448:2 21460:1 21480:1 21481:1 21491:1 21503:1 21540:2 21551:1 21557:2 21571:1 21580:1 21643:1 21645:1 21658:1 21696:1 21697:1 21704:1 21721:1 21724:1 21748:1 21812:1 21866:1 21883:1 21888:2 21920:1 21929:1 21945:1 21974:1 22002:1 22006:1 22007:1 22009:1 22064:1 22065:1 22069:1 22170:1 22180:2 22231:2 22251:1 22266:1 22293:1 22301:1 22349:2 22388:1 22438:2 22442:1 22453:1 22467:1 22477:1 22494:2 22527:1 22615:3 22618:1 22632:1 22643:1 22655:1 22662:1 22663:1 22679:1 22696:1 22804:1 22815:1 22819:1 22821:2 22843:2 22885:1 22890:1 22914:2 22938:2 23007:1 23015:1 23020:2 23079:1 23084:4 23090:1 23094:1 23142:2 23144:1 23146:1 23159:1 23196:1 23200:1 23207:5 23225:1 23244:1 23267:1 23281:1 23315:1 23340:1 23405:2 23413:1 23460:1 23491:1 23516:7 23534:1 23538:1 23572:1 23581:1 23591:1 23631:1 23682:1 23691:1 23695:1 23718:1 23812:1 23883:1 23897:1 23899:2 23909:1 23917:1 23956:8 24001:1 24038:1 24041:4 24087:1 24104:1 24118:2 24123:1 24171:1 24183:1 24210:1 24318:2 24391:1 24395:1 24476:1 24535:1 24558:1 24582:2 24636:1 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24812:1 24860:1 24862:1 24869:1 24888:1 24889:1 24893:1 24939:2 24977:2 25009:1 25014:1 25021:1 25022:1 25097:1 25185:1 25189:1 25301:1 25309:1 25346:2 25380:1 25386:1 25427:1 25467:1 25503:1 25572:1 25597:1 25621:1 25623:1 25671:1 25675:2 25678:1 25690:2 25712:1 25729:1 25796:1 25842:1 25884:1 25915:1 25918:1 25989:2 26012:1 26034:1 26043:1 26057:1 26063:1 26103:1 26136:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26283:1 26297:1 26312:1 26322:2 26325:1 26362:1 26373:1 26377:2 26406:1 26408:2 26434:1 26437:2 26500:1 26548:1 26562:1 26565:1 26568:1 26575:1 26591:1 26596:1 26623:1 26634:1 26696:1 26721:1 26739:1 26750:1 26761:2 26773:1 26787:1 26799:1 26824:1 26834:1 26836:1 26873:2 26885:2 26900:1 26901:1 26905:5 26906:1 26963:1 26988:1 27025:1 27031:1 27099:1 27141:1 27158:1 27162:1 27174:1 27215:1 27275:1 27300:1 27318:2 27373:1 27490:1 27508:1 27510:2 27536:1 27546:1 27559:2 27585:2 27617:1 27627:2 27628:1 27631:2 27645:1 27662:1 27670:1 27681:1 27693:1 27696:1 27708:1 27804:1 27822:1 27826:1 27832:1 27841:1 27842:1 27854:2 27884:2 27968:1 28011:1 28016:2 28020:1 28044:1 28067:1 28095:1 28105:1 28138:1 28161:1 28162:1 28165:2 28169:2 28181:2 28186:1 28214:1 28216:2 28228:1 28251:1 28269:1 28286:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28423:1 28438:1 28574:2 28575:1 28588:2 28590:1 28591:2 28615:1 28658:1 28662:1 28672:1 28676:1 28725:2 28742:1 28824:1 28835:1 28838:1 28872:1 28874:1 28888:6 28927:2 28996:1 29019:1 29037:1 29055:2 29061:1 29074:1 29088:1 29096:1 29105:1 29156:1 29158:1 29226:1 29237:1 29332:9 29357:2 29367:1 29368:1 29426:2 29430:4 29440:1 29463:1 29488:1 29563:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29749:1 29753:1 29764:1 29802:1 29813:2 29833:1 29844:1 29899:1 29903:1 29916:1 29946:1 29968:1 29971:2 29982:4 30009:1 30019:8 30048:1 30087:1 30094:1 30095:2 30107:1
2 13:1 15:1 39:2 64:1 85:1 96:2 97:2 98:1 150:2 174:1 190:1 212:1 227:1 241:1 279:1 283:2 284:1 305:1 306:1 310:1 341:1 386:2 413:1 420:1 424:1 442:1 477:1 513:1 548:1 555:1 586:1 596:1 612:1 670:2 683:1 686:1 717:2 734:9 739:2 743:1 777:1 798:1 808:1 813:1 827:1 865:1 884:1 887:1 890:1 893:1 895:1 948:2 990:5 996:1 1007:2 1046:1 1054:2 1059:1 1066:1 1072:1 1077:1 1102:1 1122:1 1128:1 1147:2 1224:1 1268:1 1295:1 1320:8 1331:2 1332:1 1337:2 1361:1 1363:1 1374:1 1381:1 1383:1 1409:2 1415:1 1462:2 1482:1 1499:1 1511:2 1555:1 1567:1 1580:2 1593:1 1620:2 1627:3 1692:2 1715:1 1719:1 1732:1 1760:1 1798:1 1806:1 1835:1 1848:2 1849:2 1881:1 1915:1 1949:1 1971:1 1972:1 1979:1 1995:1 2017:2 2030:1 2036:2 2045:1 2084:1 2097:1 2161:1 2183:1 2199:1 2213:1 2236:1 2285:1 2318:2 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:2 2472:2 2475:1 2477:1 2482:2 2486:1 2490:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2568:1 2598:1 2603:1 2604:1 2632:1 2649:1 2657:1 2672:1 2682:2 2692:1 2709:2 2726:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:1 2979:1 2985:1 2990:1 3050:2 3056:1 3058:1 3145:3 3149:9 3153:1 3156:1 3157:1 3172:2 3174:1 3194:1 3208:3 3269:1 3307:1 3467:1 3509:1 3534:1 3544:1 3547:1 3582:1 3666:1 3695:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3920:1 3941:1 3954:1 3957:1 4010:1 4058:1 4064:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:8 4176:2 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4422:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4529:1 4615:8 4622:1 4629:2 4659:1 4716:5 4732:1 4767:2 4781:1 4782:2 4795:1 4797:1 4820:1 4835:1 4922:1 4937:1 4960:1 4965:1 4972:1 5050:1 5053:1 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:6 5164:2 5203:1 5285:2 5287:1 5300:2 5301:1 5302:1 5309:1 5317:2 5326:1 5333:1 5335:2 5338:2 5339:1 5346:1 5573:1 5584:1 5638:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:1 5916:1 5990:1 5993:1 6113:2 6126:1 6131:1 6143:1 6236:1 6274:1 6287:1 6305:1 6344:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6508:1 6519:1 6520:2 6602:1 6610:1 6623:2 6644:1 6716:1 6728:1 6736:1 6747:3 6759:2 6763:1 6769:1 6770:1 6775:4 6805:1 6827:2 6854:1 6912:1 6916:1 6977:1 7020:1 7037:1 7151:1 7154:1 7158:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7354:1 7367:1 7429:1 7434:1 7437:1 7454:1 7465:3 7520:1 7548:1 7588:1 7623:1 7654:1 7666:1 7692:1 7732:1 7830:1 7847:1 7880:2 7882:1 7918:2 7970:1 7994:1 8027:1 8072:1 8073:3 8078:1 8092:1 8095:2 8124:2 8128:1 8138:14 8141:1 8145:2 8155:3 8159:2 8164:1 8170:1 8172:1 8193:1 8213:1 8249:2 8266:1 8307:2 8324:1 8348:1 8349:1 8383:2 8436:1 8440:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:9 8693:4 8694:2 8729:1 8736:2 8765:1 8777:11 8860:2 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 9017:1 9054:1 9064:2 9066:1 9067:1 9072:1 9082:1 9123:1 9142:1 9148:1 9155:1 9169:1 9273:1 9284:1 9310:1 9349:1 9354:1 9356:1 9357:1 9393:1 9401:1 9407:1 9409:1 9421:1 9435:1 9436:1 9490:1 9523:1 9535:1 9610:2 9632:1 9664:2 9671:2 9681:1 9684:1 9685:1 9686:1 9699:1 9728:1 9738:1 9754:1 9756:2 9758:1 9765:1 9784:2 9794:2 9800:1 9808:1 9874:1 9891:1 9892:2 9991:1 10003:2 10004:4 10032:1 10041:1 10043:2 10066:1 10106:1 10110:1 10135:1 10137:1 10181:1 10241:3 10252:1 10257:1 10271:1 10356:1 10379:8 10390:1 10397:1 10439:1 10465:1 10466:1 10516:1 10521:1 10526:1 10538:2 10545:1 10574:2 10586:1 10606:1 10614:1 10633:2 10665:2 10691:1 10721:1 10725:2 10729:1 10746:1 10766:3 10868:1 10931:1 10971:1 11030:1 11037:1 11053:1 11067:1 11089:1 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11217:1 11226:2 11233:1 11240:1 11252:1 11289:1 11315:1 11333:1 11350:1 11396:1 11437:1 11448:1 11464:2 11469:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11547:1 11550:1 11552:1 11570:1 11572:2 11576:2 11577:1 11606:1 11621:1 11632:3 11636:1 11641:1 11642:1 11651:1 11713:1 11739:1 11751:1 11827:1 11834:1 11858:1 11870:2 11871:1 11900:2 11940:2 11989:1 11996:1 12004:1 12018:1 12035:1 12125:1 12141:2 12163:1 12204:1 12217:1 12220:1 12229:1 12236:2 12241:2 12245:2 12266:1 12269:1 12277:2 12290:1 12297:1 12319:1 12359:1 12366:1 12369:1 12375:1 12379:1 12418:2 12465:1 12483:1 12540:1 12611:1 12614:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12816:1 12838:1 12855:2 12868:1 12919:1 12921:1 13013:1 13023:2 13039:1 13040:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:1 13240:9 13251:1 13254:3 13263:1 13296:3 13318:1 13322:1 13352:1 13419:1 13444:2 13497:1 13509:1 13520:1 13538:1 13549:1 13551:1 13585:1 13631:1 13653:1 13677:1 13688:1 13695:3 13699:1 13720:1 13728:1 13750:1 13833:2 13836:1 13851:1 13891:1 13898:5 13924:1 13995:1 14006:1 14017:1 14051:1 14065:2 14067:2 14071:1 14104:1 14132:1 14136:1 14150:1 14156:1 14170:1 14173:1 14212:1 14215:1 14223:2 14226:5 14250:1 14254:1 14259:1 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14424:1 14438:1 14484:2 14490:2 14516:1 14528:4 14605:2 14615:1 14634:3 14708:1 14711:2 14769:1 14813:3 14914:2 14920:2 14922:2 14941:1 15023:1 15039:1 15055:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15131:1 15133:1 15141:1 15185:9 15193:2 15196:1 15197:1 15202:1 15225:1 15274:1 15276:1 15280:2 15292:1 15301:1 15324:1 15345:2 15365:1 15395:1 15405:1 15512:1 15518:1 15596:2 15612:1 15628:1 15631:2 15686:1 15706:2 15709:1 15738:1 15764:1 15773:1 15774:1 15793:1 15831:1 15848:1 15955:1 15996:1 16000:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16259:1 16273:1 16285:1 16310:2 16325:1 16341:1 16346:2 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16516:1 16611:1 16619:5 16694:1 16703:1 16731:5 16777:2 16838:1 16864:1 16891:3 16897:2 16898:1 16994:1 17011:1 17022:1 17030:1 17092:1 17137:1 17146:1 17224:1 17237:2 17252:1 17291:1 17383:1 17388:1 17412:1 17414:1 17425:1 17536:13 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17670:1 17692:2 17695:2 17722:1 17761:1 17764:1 17765:1 17835:1 17860:1 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18141:1 18190:2 18203:2 18212:1 18319:1 18351:2 18352:1 18398:2 18415:1 18439:1 18448:2 18473:1 18500:1 18552:2 18611:1 18634:1 18641:1 18642:1 18645:1 18672:1 18719:1 18732:2 18738:1 18744:1 18773:1 18968:1 19024:3 19044:1 19104:1 19119:1 19144:1 19169:1 19219:1 19227:1 19238:574 19261:1 19272:1 19291:1 19311:1 19330:1 19360:1 19372:1 19374:1 19400:1 19430:1 19438:1 19450:1 19707:1 19708:1 19714:1 19749:1 19757:2 19759:1 19778:1 19821:1 19826:2 19858:2 19863:1 19871:1 19976:1 20009:1 20019:1 20032:2 20033:2 20063:1 20065:2 20096:1 20112:1 20127:5 20152:2 20172:2 20178:1 20205:3 20216:1 20229:1 20238:2 20245:2 20246:1 20261:1 20328:1 20332:1 20353:1 20397:1 20435:1 20467:1 20559:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20769:1 20784:1 20791:2 20841:1 20851:1 20866:1 20879:1 20890:1 20947:2 20978:1 20982:1 21018:1 21079:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21408:1 21432:1 21436:1 21448:2 21453:1 21460:1 21480:1 21481:1 21491:1 21503:1 21540:2 21551:1 21557:2 21571:1 21580:1 21643:1 21645:2 21658:1 21696:1 21697:1 21704:1 21721:1 21724:1 21748:1 21763:1 21812:1 21866:1 21883:1 21888:2 21920:1 21929:1 21945:1 21957:1 21974:1 22002:1 22006:1 22007:1 22009:1 22064:1 22065:1 22069:1 22170:1 22180:2 22231:2 22251:1 22266:1 22293:1 22301:1 22349:2 22388:1 22422:1 22438:2 22442:1 22453:1 22467:1 22477:1 22494:2 22506:1 22527:1 22615:3 22618:1 22632:1 22643:1 22655:1 22662:1 22663:1 22679:1 22696:1 22804:1 22815:1 22819:1 22821:3 22843:2 22856:1 22885:1 22890:1 22914:2 22938:2 23007:1 23015:1 23020:2 23079:1 23084:5 23086:1 23090:1 23094:1 23142:3 23144:1 23146:1 23159:1 23196:1 23200:1 23207:6 23225:1 23244:1 23267:1 23281:1 23315:1 23340:1 23405:2 23413:1 23460:1 23491:1 23516:8 23534:1 23537:1 23538:1 23572:1 23581:1 23591:1 23593:1 23623:1 23628:1 23631:1 23682:1 23691:1 23695:1 23718:1 23812:1 23883:1 23897:1 23899:2 23909:1 23917:1 23956:9 23975:1 24001:1 24038:1 24041:5 24087:1 24104:1 24118:2 24123:1 24127:1 24171:1 24179:1 24183:1 24210:1 24318:2 24342:1 24391:1 24395:1 24476:1 24535:1 24558:1 24582:2 24636:1 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24786:1 24812:2 24828:1 24858:1 24860:1 24862:1 24869:1 24888:1 24889:1 24893:1 24912:1 24939:2 24977:2 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25097:1 25185:1 25189:1 25252:1 25301:1 25309:1 25315:1 25346:2 25380:1 25386:1 25427:1 25467:1 25503:1 25572:1 25597:1 25621:1 25623:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25796:1 25842:1 25884:1 25915:1 25918:1 25989:2 26012:1 26034:1 26043:1 26057:1 26063:1 26103:1 26136:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26283:1 26297:1 26312:1 26322:2 26325:1 26362:1 26373:1 26377:2 26406:1 26408:2 26434:1 26437:2 26500:1 26548:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26696:1 26721:1 26727:1 26739:1 26750:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26866:1 26873:2 26885:2 26900:1 26901:1 26905:5 26906:1 26963:1 26988:2 27025:1 27031:1 27099:1 27141:1 27158:1 27162:1 27172:1 27174:1 27215:1 27275:1 27300:1 27318:2 27339:1 27373:1 27400:1 27490:1 27508:1 27510:2 27536:1 27546:1 27559:3 27585:2 27617:1 27627:2 27628:1 27631:2 27645:1 27662:1 27670:1 27681:1 27690:1 27693:1 27696:1 27708:1 27804:1 27822:1 27826:2 27832:2 27841:1 27842:1 27854:2 27884:2 27968:1 28011:1 28016:2 28020:1 28042:1 28044:1 28067:1 28095:1 28105:1 28138:1 28149:1 28161:1 28162:1 28165:2 28169:2 28181:2 28186:1 28214:1 28216:2 28228:1 28235:1 28251:1 28269:2 28286:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28574:2 28575:1 28588:2 28590:1 28591:2 28615:1 28658:1 28662:1 28672:1 28676:1 28725:2 28742:1 28793:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:7 28927:3 28996:1 29019:2 29037:1 29055:2 29061:1 29074:1 29088:1 29096:1 29105:1 29114:1 29156:1 29158:1 29174:1 29182:2 29226:1 29237:1 29332:11 29357:2 29367:2 29368:1 29426:2 29430:4 29440:1 29463:1 29488:1 29563:1 29583:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29753:1 29764:1 29802:1 29813:2 29833:1 29844:1 29899:1 29903:1 29916:1 29943:1 29946:1 29968:1 29971:2 29982:4 30009:1 30019:9 30048:1 30087:1 30094:1 30095:2 30107:1
2 13:1 15:1 39:2 64:1 85:1 96:2 97:2 98:1 150:2 174:1 190:1 212:1 227:1 241:1 279:1 283:2 284:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 457:1 477:1 513:1 539:1 548:1 555:1 586:1 596:1 612:1 670:2 683:1 686:1 717:2 734:10 739:2 743:1 777:1 798:1 808:1 813:1 827:1 865:1 884:1 887:1 890:1 893:1 895:1 948:2 990:5 996:1 1007:4 1046:1 1054:2 1059:1 1066:1 1072:1 1077:1 1102:1 1122:1 1128:1 1147:2 1224:1 1265:1 1268:1 1295:1 1320:9 1331:2 1332:1 1337:2 1361:1 1363:1 1374:1 1381:1 1383:1 1409:2 1415:1 1462:2 1482:1 1499:1 1511:2 1555:1 1567:1 1580:2 1593:1 1620:2 1627:3 1692:2 1715:1 1719:1 1732:1 1748:1 1760:1 1798:1 1803:1 1806:1 1835:1 1848:2 1849:2 1881:1 1915:1 1949:1 1971:1 1972:1 1979:1 1995:1 2017:2 2030:1 2036:2 2045:1 2084:1 2097:1 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2285:1 2288:1 2318:2 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:1 2482:2 2486:1 2490:2 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2568:1 2598:1 2603:1 2604:1 2632:1 2649:1 2657:1 2672:1 2682:2 2692:1 2709:2 2726:1 2827:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:1 2979:1 2985:1 2990:1 3050:2 3056:1 3058:1 3145:3 3149:10 3153:1 3156:2 3157:1 3172:2 3174:1 3188:1 3194:1 3202:1 3208:3 3230:1 3269:1 3307:1 3467:1 3509:1 3534:1 3544:1 3547:1 3582:1 3666:1 3695:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3920:1 3941:1 3954:1 3957:1 4010:1 4048:1 4058:1 4064:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:9 4176:2 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4529:1 4615:9 4622:1 4629:2 4659:1 4716:6 4732:1 4745:1 4767:2 4781:1 4782:2 4790:1 4795:1 4797:1 4820:1 4835:1 4922:1 4937:1 4960:1 4965:1 4972:1 5050:1 5053:1 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:6 5164:2 5203:1 5285:2 5287:1 5300:2 5301:1 5302:1 5309:1 5317:2 5326:1 5333:1 5335:2 5338:2 5339:1 5346:1 5415:1 5573:1 5584:1 5585:1 5638:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:1 5916:1 5990:1 5993:1 6029:1 6113:2 6126:1 6131:1 6143:1 6236:1 6274:1 6276:1 6287:1 6305:1 6344:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6519:1 6520:2 6562:1 6602:1 6610:1 6623:3 6644:1 6708:1 6716:1 6728:1 6736:1 6747:3 6759:2 6763:1 6769:1 6770:1 6775:4 6805:1 6827:2 6854:1 6904:1 6912:1 6916:1 6977:1 7013:1 7020:1 7037:1 7151:1 7154:1 7158:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7354:1 7367:1 7429:1 7434:1 7437:1 7454:1 7465:3 7520:1 7548:1 7588:1 7623:1 7654:1 7666:1 7692:1 7732:1 7743:1 7830:1 7847:1 7880:3 7882:1 7918:2 7970:1 7994:1 8027:1 8072:1 8073:4 8078:1 8092:1 8095:4 8124:2 8128:1 8138:16 8141:1 8145:2 8155:3 8159:2 8164:1 8170:1 8172:1 8193:1 8213:1 8249:2 8266:1 8307:2 8324:1 8348:1 8349:1 8383:2 8436:1 8440:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:10 8677:1 8693:4 8694:2 8729:1 8736:2 8765:1 8777:12 8860:2 8880:1 8890:1 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 9017:1 9054:1 9064:2 9066:1 9067:1 9072:1 9082:1 9123:1 9142:1 9148:1 9155:1 9169:1 9273:1 9284:1 9310:1 9349:1 9354:1 9356:1 9357:1 9390:1 9393:1 9401:1 9407:1 9409:1 9421:1 9435:1 9436:1 9490:1 9523:1 9535:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:1 9685:1 9686:1 9699:1 9728:1 9738:1 9754:1 9756:2 9758:1 9765:1 9784:2 9794:2 9800:1 9808:1 9874:1 9891:1 9892:2 9907:1 9991:1 10003:2 10004:4 10032:1 10041:1 10043:2 10066:1 10106:1 10110:1 10135:1 10137:1 10181:1 10241:3 10252:1 10257:1 10261:2 10271:1 10356:1 10379:9 10390:1 10397:1 10423:1 10439:1 10465:1 10466:1 10516:1 10521:1 10526:1 10538:2 10545:1 10574:2 10586:1 10592:1 10606:1 10614:1 10633:2 10636:1 10665:2 10691:1 10721:1 10725:2 10729:1 10746:1 10766:3 10862:1 10868:1 10910:1 10931:1 10971:1 11030:1 11037:1 11053:1 11067:1 11089:1 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11217:2 11226:2 11233:1 11240:1 11252:1 11289:1 11304:1 11315:1 11333:1 11350:1 11396:1 11437:1 11448:1 11464:2 11469:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11547:1 11550:1 11552:1 11570:1 11572:2 11576:2 11577:1 11606:1 11621:1 11632:3 11636:1 11641:1 11642:1 11651:1 11661:2 11713:1 11739:1 11751:1 11827:1 11834:1 11858:1 11870:2 11871:1 11900:2 11940:2 11989:1 11992:1 11996:1 12004:1 12018:2 12035:1 12036:1 12125:1 12141:2 12163:1 12204:1 12217:1 12220:1 12229:1 12236:2 12241:2 12245:2 12266:1 12269:1 12277:2 12290:1 12297:1 12319:1 12359:1 12366:1 12369:1 12375:1 12379:1 12418:2 12465:1 12483:1 12540:1 12611:1 12614:2 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12816:1 12838:1 12855:2 12868:1 12919:1 12921:1 13013:1 13023:2 13039:1 13040:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:10 13251:1 13254:3 13263:1 13296:3 13318:1 13322:1 13352:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:1 13551:1 13585:1 13631:1 13653:1 13670:1 13677:1 13688:1 13695:3 13699:1 13720:1 13728:1 13750:1 13821:1 13833:2 13836:1 13851:1 13891:1 13898:5 13924:1 13995:1 14005:1 14006:1 14017:1 14051:1 14065:2 14067:2 14071:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14212:1 14215:1 14223:2 14226:5 14250:1 14254:1 14259:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14424:1 14438:1 14484:2 14490:2 14516:1 14528:5 14605:2 14615:1 14634:3 14708:1 14711:2 14769:1 14813:3 14905:1 14914:2 14920:2 14922:2 14940:1 14941:1 15023:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15131:1 15133:1 15141:1 15185:10 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:2 15292:1 15301:1 15324:1 15345:2 15365:1 15395:1 15405:1 15512:1 15518:1 15596:2 15612:1 15628:1 15631:2 15686:1 15706:2 15709:1 15738:1 15764:1 15773:1 15774:1 15793:1 15831:1 15848:1 15898:1 15955:1 15980:1 15996:1 16000:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16259:1 16273:1 16285:1 16310:2 16325:1 16341:1 16346:2 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16516:1 16611:1 16619:5 16694:1 16703:1 16731:6 16777:2 16838:1 16864:1 16891:3 16897:2 16898:1 16994:1 17011:1 17022:1 17026:1 17030:1 17092:1 17137:1 17146:1 17224:1 17237:2 17252:1 17291:1 17302:1 17383:1 17388:1 17412:1 17414:1 17423:1 17425:1 17536:14 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17722:1 17761:1 17764:1 17765:1 17835:1 17860:1 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18141:1 18190:2 18203:2 18212:1 18319:1 18351:2 18352:1 18398:2 18415:1 18439:1 18448:2 18473:1 18500:1 18552:2 18559:1 18611:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18732:2 18738:1 18744:1 18773:1 18968:1 19024:3 19044:1 19104:2 19119:1 19144:1 19169:1 19219:1 19227:1 19238:664 19261:1 19272:1 19291:1 19311:1 19330:1 19360:1 19372:1 19374:1 19400:1 19430:1 19438:1 19450:1 19688:1 19707:1 19708:1 19714:1 19749:1 19757:2 19759:1 19778:1 19821:1 19826:2 19858:2 19863:1 19871:1 19976:1 20009:1 20019:1 20032:2 20033:2 20063:1 20065:2 20096:1 20112:1 20127:6 20152:2 20172:2 20178:1 20205:3 20216:1 20229:1 20238:2 20245:2 20246:1 20261:1 20328:1 20332:1 20353:1 20397:1 20435:1 20467:1 20559:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20700:1 20769:1 20784:1 20791:2 20831:1 20841:1 20851:1 20866:1 20879:1 20890:1 20947:2 20978:1 20982:1 21018:1 21079:1 21084:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21408:1 21432:1 21436:1 21439:1 21448:2 21453:1 21460:2 21480:1 21481:1 21491:1 21503:1 21540:2 21551:1 21557:2 21571:1 21580:1 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21704:1 21721:1 21724:1 21748:1 21763:1 21812:1 21866:1 21883:1 21885:1 21888:2 21920:1 21929:1 21945:1 21957:1 21974:1 22002:1 22006:1 22007:1 22009:1 22064:1 22065:1 22069:1 22170:1 22180:2 22231:2 22251:1 22266:1 22293:1 22301:1 22349:2 22388:1 22422:1 22438:2 22442:1 22453:1 22467:1 22477:1 22494:3 22506:1 22527:1 22615:3 22618:1 22632:1 22643:1 22655:1 22662:1 22663:1 22679:1 22696:1 22740:1 22804:1 22815:1 22819:1 22821:3 22843:2 22856:1 22885:1 22890:1 22914:2 22938:2 22989:1 23007:1 23015:1 23020:2 23079:1 23084:6 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:1 23267:1 23269:1 23281:1 23315:1 23340:1 23405:2 23413:1 23460:1 23491:1 23516:9 23534:1 23537:1 23538:1 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23628:1 23631:1 23682:1 23691:1 23695:1 23718:1 23812:1 23883:1 23897:1 23899:2 23909:1 23913:1 23917:1 23956:10 23975:1 24001:1 24027:1 24038:1 24041:6 24087:1 24104:1 24118:2 24123:1 24127:1 24171:1 24179:1 24183:1 24210:1 24318:2 24342:1 24391:1 24395:1 24428:1 24458:1 24476:1 24535:1 24558:1 24582:2 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24786:1 24812:2 24828:1 24858:1 24860:1 24862:1 24869:1 24888:1 24889:1 24893:1 24912:1 24939:2 24977:3 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25097:1 25185:1 25189:1 25252:1 25291:1 25301:1 25309:1 25315:1 25346:2 25380:1 25386:1 25427:1 25439:2 25459:1 25467:1 25479:1 25503:1 25572:1 25597:1 25621:1 25623:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25796:1 25842:1 25884:1 25915:1 25918:1 25989:2 26012:1 26034:1 26043:1 26057:1 26063:1 26090:1 26103:1 26136:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26283:1 26297:1 26312:1 26322:2 26325:1 26347:1 26362:1 26373:1 26377:2 26406:1 26408:2 26434:1 26437:2 26446:1 26500:1 26548:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26696:1 26721:1 26727:1 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26866:1 26873:3 26885:2 26900:1 26901:1 26905:5 26906:1 26963:1 26988:2 27025:1 27031:1 27099:1 27141:1 27158:1 27162:1 27172:1 27174:1 27215:1 27275:1 27300:1 27318:2 27339:1 27373:1 27400:1 27490:1 27500:1 27508:1 27510:2 27536:1 27546:1 27559:3 27585:2 27617:1 27627:2 27628:1 27631:2 27645:1 27662:1 27670:1 27681:2 27690:1 27693:1 27696:1 27708:1 27804:1 27822:1 27826:3 27832:2 27841:1 27842:1 27854:2 27884:2 27901:1 27968:1 27982:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28138:1 28149:1 28161:1 28162:1 28165:2 28169:2 28181:2 28186:1 28214:1 28216:2 28228:1 28235:1 28251:1 28269:2 28286:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28574:2 28575:1 28588:2 28590:1 28591:2 28615:1 28658:1 28662:1 28672:1 28676:1 28725:2 28742:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:7 28927:3 28996:1 29019:2 29037:1 29055:3 29061:1 29074:1 29088:1 29089:1 29096:1 29105:1 29114:1 29156:1 29158:1 29174:1 29182:2 29226:1 29237:1 29332:12 29357:2 29367:2 29368:1 29402:1 29426:2 29430:4 29440:1 29463:1 29488:1 29563:1 29583:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:1 29844:1 29899:1 29903:1 29916:1 29943:1 29946:1 29968:1 29971:2 29982:4 30009:1 30019:10 30048:1 30087:1 30094:1 30095:2 30107:1 30189:1
2 13:1 15:1 39:2 64:1 85:1 96:2 97:2 98:1 126:1 150:2 174:1 190:1 212:1 227:1 241:1 263:1 279:1 283:2 284:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 445:1 457:1 477:1 513:1 539:1 548:1 555:1 586:1 596:1 612:1 670:2 683:1 686:1 717:2 733:1 734:11 739:2 743:1 777:1 798:1 808:1 813:1 827:1 865:1 884:1 887:1 890:2 893:1 895:1 948:2 990:5 996:1 1007:4 1046:2 1054:2 1059:1 1066:1 1072:1 1077:2 1102:1 1122:1 1128:1 1147:2 1224:1 1265:1 1268:2 1295:1 1320:10 1331:2 1332:1 1337:2 1361:1 1363:1 1374:1 1381:1 1383:1 1409:2 1415:1 1462:2 1482:1 1499:1 1504:1 1511:2 1555:1 1567:1 1580:2 1593:1 1620:2 1627:3 1692:2 1715:1 1719:1 1732:1 1748:1 1760:1 1798:1 1803:1 1806:1 1835:1 1848:2 1849:2 1881:1 1915:1 1927:1 1949:1 1971:1 1972:1 1979:1 1995:1 2017:2 2030:1 2036:2 2045:1 2084:1 2097:1 2108:1 2128:1 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2285:1 2288:1 2318:2 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:1 2482:2 2486:2 2490:2 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:1 2568:1 2598:1 2603:1 2604:1 2632:1 2649:1 2657:1 2672:1 2682:2 2692:1 2709:2 2726:1 2827:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:2 2979:1 2985:2 2990:1 3050:2 3056:1 3058:1 3069:1 3145:4 3149:11 3153:1 3156:2 3157:1 3172:2 3174:1 3188:1 3194:2 3202:1 3208:3 3230:1 3269:1 3307:2 3467:1 3509:1 3534:1 3544:1 3547:1 3582:1 3666:1 3695:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3878:1 3886:1 3920:1 3941:1 3954:1 3957:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:10 4176:2 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4424:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4508:1 4529:1 4615:10 4622:1 4629:2 4659:1 4716:6 4732:1 4745:1 4767:2 4781:1 4782:2 4790:1 4795:1 4797:1 4820:1 4835:2 4922:1 4929:1 4937:1 4960:1 4965:1 4972:1 5050:1 5053:1 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:7 5164:2 5203:1 5210:1 5285:2 5287:1 5300:2 5301:1 5302:1 5309:2 5317:2 5326:1 5333:1 5335:2 5338:2 5339:1 5346:1 5375:1 5415:1 5573:1 5584:1 5585:1 5638:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:2 5916:1 5984:1 5990:1 5993:1 6029:1 6113:2 6126:1 6131:1 6143:1 6236:1 6274:1 6276:1 6285:1 6287:1 6305:1 6344:1 6355:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6519:1 6520:2 6562:1 6602:1 6610:1 6623:3 6644:1 6708:1 6716:1 6728:1 6736:1 6747:3 6759:3 6763:1 6769:1 6770:1 6774:1 6775:4 6805:1 6827:2 6854:1 6892:1 6904:1 6912:2 6916:2 6977:1 7013:1 7020:1 7037:1 7097:1 7151:1 7154:1 7158:1 7161:2 7177:1 7208:1 7286:1 7325:2 7341:1 7354:1 7367:1 7429:1 7434:1 7437:1 7454:1 7465:3 7520:1 7548:1 7588:1 7623:1 7654:1 7666:1 7692:1 7732:1 7743:1 7830:1 7847:2 7880:3 7882:1 7918:2 7970:1 7994:2 8027:1 8037:1 8072:2 8073:4 8078:1 8092:1 8095:4 8124:2 8128:1 8138:17 8141:1 8142:1 8145:2 8155:4 8159:2 8164:1 8170:1 8172:1 8193:1 8213:1 8249:2 8266:1 8307:2 8324:2 8343:1 8348:1 8349:1 8383:3 8436:1 8440:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:11 8669:1 8677:1 8691:1 8693:4 8694:2 8711:1 8729:1 8736:2 8759:1 8765:1 8777:13 8860:2 8880:1 8890:1 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 8996:1 9017:1 9054:1 9064:2 9066:1 9067:1 9072:1 9082:1 9123:1 9142:1 9148:1 9155:1 9169:2 9273:1 9284:1 9310:1 9349:1 9354:1 9356:1 9357:1 9390:1 9393:2 9401:1 9407:1 9409:1 9421:1 9435:1 9436:1 9490:1 9519:1 9523:1 9535:1 9566:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:2 9685:1 9686:1 9699:1 9728:1 9738:1 9754:1 9756:2 9758:1 9765:1 9784:2 9794:2 9800:2 9808:1 9874:1 9889:1 9891:1 9892:2 9907:1 9947:1 9991:1 10003:2 10004:4 10026:1 10032:1 10041:1 10043:2 10066:1 10106:1 10110:1 10135:1 10136:1 10137:1 10180:1 10181:1 10241:3 10252:1 10257:1 10261:2 10271:1 10356:1 10379:10 10390:1 10397:1 10423:1 10439:1 10465:1 10466:1 10478:1 10516:1 10521:1 10526:1 10538:2 10545:1 10574:2 10586:1 10592:1 10606:1 10614:1 10633:2 10636:1 10665:2 10691:1 10700:1 10721:1 10725:2 10729:1 10746:1 10766:3 10862:1 10868:1 10910:1 10931:1 10971:1 10972:1 11030:1 11037:1 11053:1 11067:1 11089:1 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11217:3 11224:1 11226:2 11233:1 11240:1 11252:1 11289:2 11304:1 11315:1 11333:1 11350:1 11396:1 11437:1 11448:1 11464:2 11469:2 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11547:1 11550:2 11552:1 11559:1 11570:1 11572:2 11576:2 11577:1 11606:1 11621:1 11632:3 11636:1 11641:1 11642:1 11651:1 11661:2 11671:1 11713:1 11739:1 11751:1 11827:1 11834:1 11858:1 11870:2 11871:1 11895:1 11900:2 11940:2 11989:1 11992:1 11996:1 12004:1 12018:3 12035:1 12036:1 12125:1 12141:2 12163:1 12204:1 12217:1 12220:1 12229:1 12236:3 12241:2 12245:3 12266:1 12269:1 12277:2 12290:1 12297:1 12319:1 12359:1 12366:1 12369:1 12375:2 12379:1 12418:2 12465:1 12483:1 12540:1 12611:1 12614:2 12623:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12816:1 12838:1 12855:2 12868:1 12919:1 12921:1 13013:1 13023:2 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:11 13244:1 13251:1 13254:3 13263:1 13296:3 13306:1 13318:1 13322:1 13352:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13631:1 13653:1 13670:1 13677:1 13688:1 13695:4 13699:1 13720:1 13728:1 13735:1 13750:1 13821:1 13833:2 13836:1 13844:1 13851:1 13891:1 13898:5 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:2 14067:2 14071:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14212:1 14215:1 14223:2 14226:5 14250:1 14254:1 14259:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14424:1 14438:1 14452:1 14484:2 14490:2 14516:1 14528:5 14531:1 14605:2 14615:1 14634:3 14708:1 14711:2 14769:1 14813:3 14905:1 14914:2 14920:2 14922:2 14940:1 14941:1 15023:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15131:1 15133:1 15141:1 15185:11 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15301:1 15324:1 15345:2 15365:1 15395:1 15405:1 15512:1 15518:1 15545:1 15575:1 15596:2 15612:1 15628:1 15631:2 15686:1 15706:2 15709:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15793:1 15831:1 15848:1 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:1 16346:2 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16516:1 16611:1 16619:5 16655:1 16664:1 16694:1 16703:1 16731:6 16760:1 16777:2 16838:1 16864:1 16891:3 16897:2 16898:1 16994:1 17011:1 17022:1 17026:1 17030:1 17092:1 17137:1 17146:1 17224:1 17237:2 17252:1 17291:1 17302:1 17367:1 17383:1 17386:1 17388:1 17412:1 17414:1 17423:1 17425:1 17536:15 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17722:1 17761:1 17764:1 17765:1 17835:1 17858:1 17860:1 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18141:1 18190:2 18203:2 18208:1 18212:1 18299:1 18304:1 18319:1 18339:1 18351:2 18352:1 18398:2 18415:1 18439:2 18448:2 18473:1 18500:1 18552:2 18559:1 18611:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18732:2 18738:1 18744:1 18773:1 18848:1 18953:1 18968:1 19024:3 19044:1 19057:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:695 19261:1 19272:1 19291:1 19311:1 19330:1 19360:1 19372:1 19374:1 19400:1 19430:1 19438:1 19450:1 19602:1 19603:1 19688:1 19707:1 19708:1 19714:1 19749:1 19757:2 19759:1 19778:1 19821:1 19826:2 19858:2 19863:1 19871:1 19976:1 20009:1 20019:1 20032:2 20033:2 20063:1 20065:2 20096:2 20112:1 20127:6 20152:2 20172:2 20178:1 20205:3 20216:1 20229:1 20238:2 20245:2 20246:1 20261:1 20309:1 20328:2 20332:1 20353:1 20397:1 20435:1 20467:1 20559:1 20562:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20700:1 20736:1 20769:1 20784:1 20791:3 20831:1 20841:1 20851:1 20866:1 20879:1 20890:1 20947:2 20958:1 20978:1 20982:1 21018:1 21079:1 21084:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21453:1 21460:3 21480:1 21481:1 21491:1 21501:1 21503:1 21540:2 21551:1 21557:2 21571:1 21580:1 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21704:1 21721:1 21724:1 21748:1 21763:1 21812:1 21866:1 21883:1 21885:1 21888:2 21920:1 21929:1 21945:1 21957:2 21974:1 22002:1 22006:1 22007:1 22009:1 22052:1 22064:1 22065:1 22069:2 22170:1 22180:2 22231:2 22251:1 22266:1 22281:1 22293:1 22301:1 22349:2 22388:1 22422:1 22429:1 22433:1 22438:2 22442:1 22453:1 22467:1 22477:1 22494:4 22506:1 22527:1 22614:1 22615:3 22618:1 22631:1 22632:1 22643:1 22655:1 22662:1 22663:1 22679:1 22696:1 22740:1 22804:1 22815:2 22819:1 22821:3 22843:2 22856:1 22885:1 22890:1 22914:2 22938:2 22989:1 23007:1 23015:1 23020:2 23042:1 23079:1 23084:6 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:1 23267:1 23269:1 23281:1 23315:1 23340:1 23355:1 23405:2 23413:1 23460:1 23491:1 23516:10 23534:1 23537:1 23538:2 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23628:1 23631:1 23662:1 23672:1 23682:1 23691:1 23695:1 23718:1 23812:1 23883:1 23897:1 23899:2 23909:1 23913:1 23917:1 23956:11 23975:1 24001:1 24027:1 24038:1 24041:6 24087:1 24104:1 24118:2 24123:1 24127:1 24171:1 24176:1 24179:1 24183:1 24210:1 24318:2 24342:1 24391:1 24395:1 24428:1 24458:1 24470:1 24476:1 24535:1 24558:1 24582:2 24585:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24753:1 24769:1 24786:1 24812:2 24828:1 24858:1 24860:1 24862:1 24869:1 24875:1 24888:1 24889:1 24893:2 24898:1 24912:1 24939:2 24977:3 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25097:1 25185:1 25189:1 25252:1 25291:1 25292:1 25301:1 25309:2 25315:1 25346:2 25369:1 25380:1 25386:2 25427:1 25439:2 25459:1 25467:1 25479:1 25503:1 25572:1 25597:1 25615:1 25621:1 25623:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25796:1 25842:1 25884:1 25915:1 25918:1 25923:1 25989:2 26012:1 26034:1 26043:1 26057:1 26063:1 26090:1 26103:1 26136:1 26163:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26283:1 26297:1 26312:1 26322:2 26325:1 26347:1 26362:1 26373:1 26377:2 26406:1 26408:2 26434:1 26437:2 26446:1 26500:1 26548:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26679:1 26696:1 26721:1 26727:1 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26866:1 26873:3 26885:2 26900:1 26901:1 26905:5 26906:1 26963:1 26988:3 26995:1 27025:1 27031:1 27099:1 27141:1 27158:1 27162:1 27172:1 27174:1 27215:1 27275:1 27300:1 27318:2 27327:1 27339:1 27373:1 27400:1 27490:1 27500:1 27508:1 27510:4 27536:2 27546:1 27559:3 27585:2 27617:1 27627:2 27628:1 27631:2 27645:1 27662:1 27670:1 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27804:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27854:2 27884:2 27901:1 27968:1 27982:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28111:1 28138:1 28142:1 28149:1 28161:1 28162:1 28165:2 28169:2 28181:2 28186:2 28214:1 28216:2 28228:1 28235:1 28251:1 28269:2 28286:2 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28480:1 28574:2 28575:1 28588:2 28590:1 28591:3 28615:1 28658:1 28662:1 28672:1 28676:1 28725:2 28742:2 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:7 28927:3 28996:1 29019:2 29037:1 29055:3 29061:1 29074:1 29088:1 29089:1 29096:1 29105:2 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:1 29332:13 29357:2 29361:1 29367:3 29368:1 29402:1 29426:2 29430:4 29440:1 29463:1 29488:1 29563:1 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:1 29844:1 29899:1 29903:1 29916:1 29943:1 29946:1 29968:1 29971:2 29982:4 30009:2 30019:11 30048:1 30087:1 30094:1 30095:2 30107:1 30189:1
2 13:1 15:1 39:2 64:1 85:1 96:2 97:2 98:1 126:1 150:2 162:1 174:1 190:1 212:1 227:1 241:1 263:1 279:1 283:2 284:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 445:1 457:1 477:1 482:1 513:1 539:1 548:1 555:1 586:1 596:1 612:1 670:2 683:1 686:1 717:2 733:1 734:12 739:2 743:1 763:1 777:1 798:1 808:1 813:1 827:1 865:1 884:1 887:1 890:2 893:1 895:1 948:2 949:1 990:6 996:1 1007:4 1046:2 1054:2 1058:1 1059:1 1066:1 1072:1 1077:2 1102:1 1122:1 1125:1 1128:1 1147:2 1209:1 1224:1 1265:1 1268:2 1295:1 1320:11 1331:2 1332:1 1337:2 1361:1 1363:1 1374:1 1381:1 1383:1 1409:2 1415:1 1462:2 1482:1 1499:1 1504:1 1511:2 1555:1 1567:2 1580:2 1593:1 1620:2 1627:3 1692:2 1715:1 1719:1 1732:1 1748:1 1760:1 1798:1 1803:1 1806:1 1835:1 1848:2 1849:3 1881:1 1915:1 1927:1 1940:1 1949:1 1971:1 1972:1 1979:1 1991:1 1995:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:2 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2285:1 2288:1 2318:3 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:2 2490:3 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2568:2 2598:1 2603:1 2604:1 2632:1 2649:1 2657:1 2672:1 2682:2 2692:1 2700:1 2709:2 2726:1 2810:2 2827:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:2 2979:1 2985:2 2990:1 3050:2 3056:1 3058:1 3069:1 3145:7 3149:12 3153:1 3156:2 3157:1 3172:2 3174:1 3188:1 3194:2 3199:1 3202:1 3208:3 3230:1 3269:1 3307:2 3467:1 3509:1 3534:1 3544:1 3547:2 3582:1 3666:1 3690:1 3695:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3878:1 3886:1 3920:1 3941:1 3954:1 3957:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:11 4176:2 4195:1 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4424:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4508:1 4529:1 4615:11 4622:1 4629:3 4645:1 4659:1 4716:6 4732:1 4745:1 4767:2 4781:1 4782:2 4790:1 4795:1 4797:1 4820:1 4835:3 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5046:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:7 5164:2 5203:1 5210:2 5285:2 5287:1 5300:2 5301:1 5302:1 5309:3 5316:1 5317:2 5326:1 5333:2 5335:2 5338:2 5339:1 5346:1 5375:1 5415:1 5573:1 5584:1 5585:2 5638:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:2 5906:1 5916:1 5941:1 5984:1 5990:1 5993:1 6029:1 6113:2 6126:1 6131:1 6143:1 6236:1 6274:1 6276:1 6285:1 6287:1 6305:1 6344:1 6355:1 6395:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6519:1 6520:2 6562:1 6602:1 6610:1 6623:3 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:3 6753:1 6759:3 6763:1 6769:1 6770:1 6774:1 6775:5 6805:1 6827:2 6854:1 6892:1 6904:1 6912:2 6916:2 6977:1 7013:1 7020:1 7037:1 7040:1 7065:1 7075:1 7097:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7429:1 7434:1 7437:1 7454:1 7465:3 7520:1 7537:2 7548:1 7580:1 7588:1 7623:2 7654:1 7666:1 7692:1 7732:1 7743:1 7744:1 7830:1 7847:2 7880:4 7882:1 7918:2 7970:1 7994:2 8027:1 8037:1 8072:3 8073:5 8078:1 8092:1 8095:4 8124:2 8128:1 8138:19 8141:1 8142:1 8145:2 8148:1 8155:7 8159:2 8164:1 8170:1 8172:1 8193:1 8204:1 8213:1 8249:2 8266:1 8307:2 8324:2 8343:1 8348:1 8349:1 8383:3 8436:1 8440:1 8475:1 8529:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:12 8669:1 8677:1 8691:1 8693:5 8694:2 8711:1 8729:1 8736:2 8759:1 8765:1 8777:14 8860:2 8880:1 8890:1 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 8996:1 9010:1 9017:1 9054:1 9064:2 9066:1 9067:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9230:1 9273:1 9284:2 9310:1 9349:1 9354:1 9356:1 9357:1 9390:1 9393:2 9401:1 9407:1 9409:1 9421:1 9435:1 9436:1 9490:1 9519:1 9523:2 9535:1 9566:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:2 9685:1 9686:1 9699:1 9703:1 9728:1 9738:1 9754:1 9756:2 9758:1 9765:1 9784:2 9794:2 9800:2 9808:1 9874:1 9889:1 9891:1 9892:2 9907:1 9942:1 9947:1 9955:1 9978:1 9991:1 10003:2 10004:4 10026:2 10032:1 10041:1 10043:2 10066:1 10106:1 10110:1 10135:1 10136:1 10137:1 10180:1 10181:1 10241:4 10252:1 10257:1 10261:2 10271:1 10356:1 10379:11 10390:1 10397:1 10423:1 10439:1 10465:1 10466:1 10478:1 10516:1 10521:2 10526:1 10538:2 10545:1 10566:1 10574:2 10586:1 10592:1 10606:1 10614:1 10617:1 10633:2 10636:1 10665:2 10691:1 10700:1 10721:1 10725:2 10729:1 10746:1 10766:3 10862:1 10868:1 10910:1 10931:1 10953:1 10971:1 10972:2 10989:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11217:3 11224:1 11226:2 11233:1 11240:1 11252:1 11282:1 11289:3 11304:1 11315:1 11333:1 11350:1 11396:1 11437:1 11448:1 11464:2 11469:3 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11547:1 11550:3 11552:1 11556:1 11559:1 11570:1 11572:2 11576:2 11577:1 11606:1 11621:1 11632:3 11636:1 11641:1 11642:1 11651:1 11661:2 11671:1 11713:1 11739:1 11751:1 11756:1 11770:1 11827:1 11834:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11940:2 11989:1 11992:1 11996:1 12004:1 12018:4 12035:1 12036:1 12091:1 12125:1 12141:2 12163:1 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:1 12297:1 12319:1 12359:1 12366:1 12369:1 12375:2 12379:1 12418:2 12463:1 12465:1 12483:1 12540:1 12611:1 12614:3 12623:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12816:1 12838:1 12852:1 12855:2 12868:1 12919:1 12921:2 12930:1 13013:1 13023:2 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:12 13244:1 13251:1 13254:4 13263:1 13296:3 13306:1 13318:1 13322:1 13352:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13631:1 13653:1 13670:1 13677:1 13688:1 13695:4 13699:1 13720:1 13728:1 13735:1 13750:1 13821:1 13827:1 13833:2 13836:1 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14212:1 14215:1 14223:2 14226:5 14250:1 14254:1 14259:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14396:3 14401:1 14424:1 14438:1 14452:1 14484:2 14490:2 14514:1 14516:1 14528:5 14531:2 14605:2 14615:1 14634:3 14708:1 14711:2 14765:1 14769:1 14813:4 14905:1 14914:2 14920:2 14922:2 14940:1 14941:1 15023:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:12 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15301:1 15324:1 15345:2 15365:1 15395:1 15405:1 15505:1 15512:1 15518:1 15545:1 15575:1 15596:2 15612:1 15628:1 15631:2 15686:1 15706:2 15709:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16082:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:1 16346:2 16351:1 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16516:1 16600:1 16611:1 16619:6 16622:1 16655:1 16664:1 16694:1 16703:1 16731:6 16760:1 16777:2 16838:1 16864:1 16874:1 16891:4 16897:3 16898:1 16910:1 16966:1 16994:1 17011:1 17022:1 17026:1 17030:1 17092:1 17137:1 17146:1 17224:1 17237:2 17252:1 17291:1 17302:1 17367:1 17383:1 17386:2 17388:1 17412:1 17414:1 17423:1 17425:2 17437:1 17536:16 17545:1 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17761:1 17764:1 17765:1 17835:1 17858:1 17860:2 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18141:1 18190:2 18203:2 18208:1 18212:1 18299:2 18304:2 18319:1 18339:1 18351:2 18352:1 18398:2 18412:1 18415:1 18439:2 18448:2 18473:1 18497:1 18500:1 18552:2 18559:1 18611:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18732:3 18738:1 18744:1 18773:1 18806:1 18848:1 18953:1 18968:1 19024:3 19044:1 19057:1 19102:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:757 19261:1 19272:1 19291:1 19311:1 19330:1 19360:1 19368:1 19372:1 19374:1 19400:1 19430:1 19438:1 19450:1 19602:1 19603:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:1 19778:1 19821:1 19826:2 19858:2 19863:1 19871:1 19976:1 20009:1 20019:1 20032:2 20033:2 20063:1 20065:2 20096:2 20112:1 20127:6 20137:1 20152:2 20172:2 20178:1 20205:3 20216:2 20229:1 20238:2 20245:2 20246:1 20261:1 20309:1 20328:2 20332:1 20353:1 20397:1 20435:1 20467:1 20559:1 20562:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20677:1 20700:1 20726:1 20732:1 20736:1 20769:1 20770:2 20784:1 20791:3 20831:1 20841:1 20851:1 20856:1 20866:1 20879:1 20890:1 20896:1 20934:1 20947:2 20958:1 20977:1 20978:1 20982:1 21018:1 21079:1 21084:1 21136:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21282:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21453:1 21460:3 21480:1 21481:1 21491:1 21501:1 21503:1 21540:2 21551:1 21557:2 21571:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21704:1 21721:1 21724:1 21748:1 21763:1 21812:1 21866:1 21883:1 21885:1 21888:2 21920:1 21929:1 21945:1 21957:2 21973:1 21974:1 22002:1 22006:1 22007:1 22009:1 22052:1 22064:1 22065:1 22069:2 22170:1 22180:2 22231:2 22251:1 22266:1 22281:2 22293:1 22300:1 22301:1 22349:2 22388:1 22422:1 22429:2 22433:1 22438:2 22442:1 22453:2 22467:1 22477:1 22494:5 22506:1 22527:1 22580:1 22614:1 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22655:1 22661:1 22662:2 22663:1 22679:1 22696:1 22740:1 22748:1 22774:1 22804:1 22815:2 22819:1 22821:3 22843:2 22856:1 22885:1 22890:1 22914:2 22938:2 22983:1 22989:1 23007:1 23015:1 23019:1 23020:4 23042:2 23079:1 23084:6 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:1 23267:1 23269:1 23281:1 23315:1 23340:1 23355:2 23405:2 23413:1 23460:1 23491:1 23516:11 23534:1 23537:1 23538:2 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:2 23695:1 23718:1 23812:1 23883:1 23888:1 23897:1 23899:2 23909:1 23913:1 23917:1 23956:12 23975:1 24001:1 24027:1 24038:1 24041:6 24087:1 24104:1 24118:2 24123:1 24127:1 24150:1 24171:1 24176:1 24179:2 24183:1 24210:1 24318:2 24328:1 24342:1 24391:1 24395:1 24417:1 24428:1 24458:2 24470:1 24476:1 24535:1 24558:1 24582:2 24585:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:1 24786:1 24812:2 24828:2 24858:1 24860:1 24862:1 24869:1 24875:1 24888:1 24889:2 24893:2 24898:1 24912:1 24939:2 24977:4 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25097:1 25133:1 25185:1 25189:1 25192:2 25225:1 25252:1 25289:1 25291:1 25292:1 25301:1 25309:2 25315:1 25346:2 25369:1 25380:1 25386:2 25427:1 25431:1 25439:2 25459:1 25467:1 25479:1 25503:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25796:1 25842:1 25883:1 25884:1 25915:1 25918:2 25923:1 25989:2 26012:1 26034:1 26043:1 26057:1 26063:1 26090:1 26103:1 26133:1 26136:1 26163:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26283:1 26297:1 26312:1 26322:2 26325:1 26347:1 26362:1 26373:1 26377:2 26406:1 26408:2 26434:1 26437:4 26446:2 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26679:1 26696:1 26711:1 26721:1 26727:1 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26866:1 26873:3 26885:2 26900:1 26901:1 26905:5 26906:1 26963:1 26988:3 26995:1 27020:1 27025:1 27031:1 27099:1 27141:2 27158:1 27162:1 27172:1 27174:1 27215:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27469:1 27490:1 27500:1 27508:1 27510:4 27536:2 27546:1 27559:3 27585:2 27617:1 27627:2 27628:1 27631:2 27645:1 27662:1 27670:1 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27804:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27854:2 27884:2 27901:1 27968:1 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28111:1 28138:1 28142:1 28149:1 28161:1 28162:2 28165:2 28169:2 28181:2 28186:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:3 28286:2 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28480:1 28559:1 28574:2 28575:2 28588:2 28590:1 28591:3 28615:1 28658:1 28662:1 28672:1 28676:1 28725:2 28742:2 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:11 28927:4 28996:1 29019:2 29037:1 29055:4 29061:2 29074:1 29088:1 29089:1 29096:1 29105:3 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:1 29332:14 29357:2 29361:1 29367:3 29368:1 29402:1 29426:2 29430:4 29440:1 29463:1 29487:1 29488:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:1 29844:1 29899:1 29903:1 29916:1 29943:1 29946:1 29968:1 29971:2 29982:4 30009:2 30019:12 30048:1 30087:1 30094:2 30095:2 30107:1 30189:1
2 13:1 15:1 39:2 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 190:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 445:1 457:1 477:1 482:1 504:1 513:1 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 670:2 683:1 686:1 717:2 733:1 734:13 739:3 743:1 763:1 777:1 798:1 808:1 813:1 827:1 865:1 884:1 887:1 890:2 893:1 895:1 948:2 949:1 990:6 996:1 1007:4 1026:1 1046:2 1054:2 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1102:1 1122:1 1125:1 1128:1 1147:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:12 1331:2 1332:1 1337:3 1361:1 1363:1 1374:1 1381:1 1383:1 1400:1 1409:2 1415:1 1444:1 1462:2 1482:1 1499:1 1504:1 1511:2 1555:1 1567:2 1580:2 1593:1 1620:2 1627:3 1660:1 1692:2 1715:1 1719:1 1732:1 1748:1 1760:1 1798:1 1803:1 1806:1 1835:1 1848:2 1849:3 1881:1 1915:1 1927:1 1940:1 1949:1 1962:1 1971:1 1972:1 1979:1 1991:1 1995:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:2 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2285:1 2288:1 2318:3 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:3 2490:3 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2568:2 2598:1 2603:1 2604:1 2632:1 2649:1 2657:1 2672:1 2682:2 2692:1 2700:1 2709:2 2726:1 2810:2 2827:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:2 2979:1 2982:1 2985:2 2990:1 3002:1 3050:2 3056:1 3058:1 3069:1 3145:8 3149:13 3153:1 3156:2 3157:1 3172:2 3174:1 3188:1 3194:2 3199:1 3202:1 3208:3 3230:1 3234:1 3269:1 3307:2 3350:1 3447:1 3467:1 3509:1 3534:1 3544:1 3547:2 3582:1 3666:1 3672:1 3690:1 3695:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3841:1 3878:1 3886:1 3920:1 3941:1 3953:1 3954:1 3957:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:1 4170:1 4175:12 4176:2 4195:1 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4424:1 4428:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4508:1 4529:1 4615:12 4622:1 4629:3 4645:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:2 4781:1 4782:2 4790:1 4795:1 4797:1 4820:1 4835:3 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5046:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:7 5164:2 5203:1 5210:2 5285:2 5287:1 5300:2 5301:1 5302:1 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5415:1 5507:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:2 5818:1 5906:1 5916:1 5938:1 5941:1 5984:1 5990:1 5993:1 6029:1 6113:2 6126:1 6131:1 6143:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6355:1 6395:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6519:1 6520:2 6562:1 6602:1 6610:1 6623:3 6626:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:3 6763:1 6769:1 6770:1 6774:1 6775:5 6805:1 6827:2 6854:1 6892:1 6904:1 6912:2 6916:2 6977:1 7013:1 7020:1 7024:1 7037:1 7040:1 7065:1 7075:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7429:1 7434:1 7437:1 7454:1 7465:4 7520:1 7537:2 7548:2 7580:1 7588:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7830:1 7847:3 7880:4 7882:1 7917:1 7918:2 7970:1 7994:2 8027:1 8037:1 8072:3 8073:5 8078:1 8092:1 8095:4 8124:2 8128:1 8138:20 8141:1 8142:1 8145:2 8148:1 8151:1 8155:8 8159:2 8164:1 8170:1 8172:1 8193:1 8204:1 8213:1 8249:2 8266:1 8280:1 8305:1 8307:2 8324:2 8337:1 8343:1 8348:1 8349:1 8359:1 8383:3 8412:1 8436:1 8440:1 8475:1 8529:1 8569:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:13 8669:1 8677:1 8691:1 8693:5 8694:2 8711:1 8729:1 8731:1 8736:2 8759:1 8765:1 8777:16 8860:2 8880:1 8890:1 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 8996:1 9010:1 9017:1 9054:1 9064:2 9066:1 9067:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9310:2 9349:1 9354:1 9356:1 9357:1 9390:1 9393:2 9401:1 9407:1 9409:1 9421:1 9430:1 9435:1 9436:1 9490:1 9519:1 9523:2 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:2 9685:1 9686:1 9689:1 9699:1 9703:1 9728:1 9738:1 9754:1 9756:2 9758:1 9765:1 9766:1 9784:2 9794:3 9800:2 9808:1 9845:1 9874:1 9889:1 9891:1 9892:2 9907:1 9942:1 9947:1 9955:1 9978:1 9991:1 10003:2 10004:4 10026:2 10032:1 10041:1 10043:2 10066:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10180:1 10181:1 10217:1 10241:5 10252:1 10257:1 10261:2 10271:1 10356:1 10379:12 10390:1 10397:1 10423:1 10439:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10538:2 10545:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:1 10633:2 10636:1 10665:2 10691:1 10700:1 10721:1 10725:2 10729:1 10746:1 10766:3 10778:1 10843:1 10862:1 10868:1 10887:1 10910:1 10931:1 10953:1 10971:1 10972:2 10989:1 11013:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11217:3 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:3 11304:1 11315:1 11333:1 11350:1 11396:1 11437:1 11448:1 11464:2 11469:3 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:3 11552:1 11556:1 11559:1 11570:1 11572:2 11576:2 11577:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11661:2 11671:1 11713:1 11739:1 11751:1 11756:1 11770:2 11827:1 11834:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11940:2 11989:1 11992:1 11996:1 12004:1 12018:5 12035:1 12036:1 12064:1 12071:1 12091:1 12099:1 12125:1 12141:2 12163:1 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:1 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:2 12379:1 12418:2 12463:1 12465:1 12483:1 12540:1 12611:1 12614:3 12619:1 12623:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12816:1 12838:1 12852:1 12855:2 12868:1 12919:1 12921:2 12930:1 13013:1 13023:2 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:13 13244:1 13251:1 13254:4 13263:1 13296:3 13306:1 13318:1 13322:1 13352:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13631:1 13653:1 13670:1 13675:1 13677:1 13688:1 13695:5 13699:1 13720:1 13728:1 13735:1 13750:1 13821:1 13827:1 13830:1 13833:2 13836:1 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14100:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14212:1 14215:1 14223:2 14226:5 14250:1 14254:1 14259:2 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14372:1 14378:1 14384:1 14396:4 14401:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:2 14514:2 14516:1 14528:5 14531:2 14605:2 14615:1 14634:4 14708:1 14711:2 14765:1 14769:1 14813:4 14902:1 14905:1 14914:2 14920:2 14922:2 14940:1 14941:1 15002:1 15023:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:13 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15301:1 15324:1 15345:3 15365:1 15395:1 15405:1 15439:1 15505:1 15512:1 15515:1 15518:1 15545:1 15575:1 15595:1 15596:2 15612:1 15627:1 15628:1 15631:2 15686:1 15706:2 15709:1 15726:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16067:1 16082:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16186:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:1 16346:2 16351:1 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16487:1 16516:1 16600:1 16611:1 16616:1 16619:6 16622:1 16655:1 16657:1 16664:1 16694:1 16703:1 16706:1 16731:7 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16910:1 16966:1 16994:1 17011:1 17022:1 17026:1 17030:1 17092:1 17137:1 17140:1 17146:1 17224:1 17237:2 17252:1 17260:1 17291:1 17296:1 17302:1 17367:1 17383:1 17386:2 17388:1 17412:1 17414:1 17423:1 17425:2 17437:1 17494:1 17507:1 17536:19 17545:1 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17761:1 17764:1 17765:1 17809:1 17835:1 17858:1 17860:2 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18270:1 18299:2 18304:2 18319:1 18339:1 18351:2 18352:1 18398:2 18412:1 18415:1 18439:2 18448:2 18473:1 18497:1 18500:1 18552:3 18557:1 18559:1 18611:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18806:1 18848:1 18924:1 18953:1 18968:1 19024:3 19044:1 19057:1 19102:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:866 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:1 19368:1 19372:1 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19602:1 19603:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:1 19773:1 19778:1 19821:1 19826:3 19858:2 19863:1 19871:1 19916:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:3 20033:2 20063:1 20065:2 20096:2 20112:1 20127:6 20137:1 20152:2 20172:2 20178:1 20205:3 20216:2 20229:1 20238:2 20245:2 20246:1 20261:1 20309:1 20328:2 20332:1 20353:1 20397:1 20435:1 20467:1 20530:1 20559:1 20562:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20677:1 20700:1 20726:1 20732:1 20736:1 20769:1 20770:2 20774:1 20783:1 20784:1 20791:3 20831:1 20841:1 20851:1 20856:1 20866:1 20879:1 20890:1 20896:1 20919:1 20934:1 20947:2 20958:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21282:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:1 21453:1 21460:3 21480:1 21481:1 21491:1 21501:1 21503:1 21528:1 21531:1 21537:1 21540:2 21551:1 21557:2 21571:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:1 21704:1 21721:1 21724:1 21731:1 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21866:1 21883:1 21885:1 21888:2 21920:1 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 22002:1 22006:1 22007:1 22009:1 22052:1 22064:1 22065:1 22069:2 22170:1 22180:2 22231:2 22251:1 22266:1 22281:2 22293:1 22300:1 22301:1 22349:3 22388:1 22422:1 22429:2 22433:1 22438:2 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22580:1 22614:1 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22661:1 22662:2 22663:1 22679:1 22696:1 22740:1 22748:1 22774:1 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22983:1 22989:1 23007:1 23015:1 23019:1 23020:4 23042:2 23079:1 23084:7 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23267:1 23269:1 23281:1 23315:1 23336:1 23340:1 23355:2 23405:3 23413:1 23460:1 23491:1 23516:12 23534:1 23537:1 23538:2 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:3 23695:1 23718:1 23796:1 23812:2 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23913:1 23917:1 23956:13 23975:2 24001:1 24027:2 24038:1 24041:6 24087:1 24104:1 24118:2 24123:1 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:1 24210:1 24291:1 24318:2 24328:1 24342:1 24391:1 24395:1 24417:1 24428:1 24450:1 24458:2 24470:1 24476:1 24535:1 24558:1 24567:1 24582:2 24585:1 24591:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:1 24786:1 24812:2 24828:2 24858:1 24860:1 24862:1 24869:1 24875:1 24888:1 24889:2 24893:2 24898:1 24912:1 24939:2 24977:4 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25097:1 25133:1 25171:1 25185:1 25189:1 25192:2 25225:1 25239:1 25252:1 25289:2 25291:1 25292:2 25301:1 25309:2 25315:1 25346:2 25369:1 25380:1 25385:1 25386:2 25427:1 25431:1 25439:2 25459:1 25467:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25796:1 25842:1 25883:1 25884:1 25915:1 25918:2 25923:1 25989:2 26012:1 26034:1 26043:1 26054:1 26057:1 26063:1 26090:1 26103:1 26133:1 26136:1 26163:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26283:1 26297:1 26312:2 26322:2 26325:1 26347:1 26362:2 26373:1 26377:2 26406:1 26408:2 26434:1 26437:4 26446:2 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26679:1 26696:1 26711:1 26721:1 26727:1 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26866:1 26873:3 26885:2 26900:1 26901:1 26905:5 26906:1 26950:1 26963:1 26988:3 26995:1 27020:1 27025:1 27031:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27419:1 27469:1 27490:1 27500:1 27508:1 27510:4 27536:2 27546:1 27559:4 27585:2 27617:1 27627:2 27628:1 27631:2 27645:1 27662:1 27670:1 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27804:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27854:2 27884:2 27901:1 27959:1 27968:1 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28111:1 28138:1 28142:1 28149:1 28161:1 28162:2 28165:2 28169:2 28178:2 28181:2 28186:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:3 28286:2 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28480:1 28538:1 28559:1 28574:2 28575:2 28586:1 28588:2 28590:1 28591:3 28615:1 28658:1 28662:1 28672:1 28676:1 28689:1 28725:2 28742:2 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:11 28927:5 28996:1 29019:2 29037:1 29055:4 29061:2 29074:1 29088:1 29089:1 29096:1 29105:3 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29332:16 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:2 29430:5 29440:1 29463:1 29487:1 29488:2 29524:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:1 29844:1 29899:1 29903:1 29916:1 29921:1 29943:1 29946:1 29968:1 29971:2 29982:4 30008:1 30009:2 30019:13 30048:1 30085:1 30087:1 30094:2 30095:2 30107:1 30189:1
2 13:1 15:1 39:2 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 183:1 190:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 445:1 457:1 477:1 482:1 504:1 513:1 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 670:2 683:1 686:1 717:2 733:1 734:14 739:3 743:1 763:1 777:1 798:1 808:2 813:1 827:1 865:1 884:2 887:1 890:2 893:1 895:1 948:2 949:1 990:6 996:1 1007:4 1026:2 1046:2 1054:3 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1102:1 1122:1 1125:1 1128:1 1147:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:13 1328:1 1331:2 1332:1 1337:3 1361:1 1363:1 1374:1 1381:1 1383:1 1400:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1555:1 1567:2 1580:2 1593:1 1617:1 1620:2 1627:3 1660:1 1692:2 1715:1 1719:1 1732:1 1745:1 1748:1 1760:1 1798:1 1803:1 1805:1 1806:1 1835:1 1848:2 1849:3 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1971:1 1972:1 1979:1 1991:1 1994:1 1995:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:2 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2254:1 2285:1 2288:1 2318:3 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:3 2490:3 2494:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:2 2598:1 2603:1 2604:1 2632:1 2649:1 2650:1 2657:1 2672:1 2682:2 2692:1 2700:1 2709:2 2726:1 2810:2 2827:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:2 2979:1 2982:1 2985:2 2990:1 3002:1 3042:1 3050:2 3056:1 3058:1 3069:1 3145:9 3149:14 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:2 3199:1 3202:1 3208:3 3230:2 3234:1 3269:1 3307:2 3350:1 3447:1 3467:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3582:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3841:1 3878:1 3886:1 3920:1 3941:1 3953:1 3954:1 3957:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:2 4170:1 4175:13 4176:2 4195:1 4228:1 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4424:1 4428:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4508:1 4529:1 4615:13 4622:1 4629:3 4645:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:2 4781:1 4782:2 4790:1 4795:1 4797:1 4820:1 4835:3 4839:1 4861:1 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5046:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:7 5164:2 5177:1 5203:1 5210:2 5285:2 5287:1 5300:2 5301:1 5302:1 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5415:1 5507:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:2 5818:1 5877:1 5906:1 5916:1 5938:1 5941:1 5984:1 5990:1 5993:1 6029:1 6113:2 6126:1 6128:1 6131:1 6143:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6372:1 6395:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6519:1 6520:2 6562:1 6602:1 6610:1 6623:3 6626:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:3 6763:1 6769:1 6770:1 6774:1 6775:5 6805:1 6827:2 6854:1 6892:1 6904:1 6912:2 6916:2 6977:1 6990:1 7013:1 7020:1 7024:1 7037:1 7040:1 7065:1 7075:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7454:1 7465:4 7520:1 7537:2 7548:2 7580:1 7588:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7830:1 7847:3 7880:4 7882:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:2 7995:1 8027:1 8037:1 8055:1 8072:3 8073:5 8078:1 8092:1 8095:4 8124:3 8128:1 8138:20 8141:1 8142:1 8145:2 8148:1 8151:1 8155:9 8159:2 8164:1 8170:1 8172:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8324:2 8337:1 8343:1 8348:1 8349:1 8359:1 8383:3 8412:1 8436:1 8440:1 8475:1 8524:1 8529:1 8569:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:14 8669:1 8677:1 8691:1 8693:6 8694:2 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:17 8860:2 8880:1 8890:1 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 8996:1 9010:1 9017:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9390:1 9393:2 9401:1 9407:1 9408:1 9409:1 9413:1 9421:1 9430:1 9435:1 9436:1 9490:1 9519:1 9523:2 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:2 9685:1 9686:1 9689:1 9699:1 9703:1 9728:1 9738:1 9751:1 9754:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:3 9800:2 9808:1 9845:1 9874:1 9889:1 9891:1 9892:2 9907:1 9942:1 9947:1 9955:1 9978:1 9991:1 10003:2 10004:4 10026:2 10032:1 10041:1 10043:2 10052:1 10066:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10180:1 10181:1 10217:1 10241:5 10252:1 10257:2 10261:3 10271:1 10309:1 10356:1 10379:13 10390:1 10397:1 10423:1 10439:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10531:1 10538:2 10545:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:1 10633:2 10636:1 10665:2 10683:1 10691:1 10700:1 10721:1 10725:2 10729:1 10746:1 10766:3 10778:1 10843:1 10862:1 10868:1 10887:1 10910:1 10931:1 10953:1 10971:1 10972:2 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11216:1 11217:3 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:3 11304:1 11315:1 11333:1 11350:1 11396:1 11437:1 11448:1 11464:2 11469:3 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:4 11552:1 11556:1 11559:1 11570:1 11572:2 11576:2 11577:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11661:2 11671:1 11713:1 11739:1 11748:1 11751:1 11756:1 11770:2 11775:1 11827:1 11834:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11927:1 11940:2 11989:1 11992:1 11996:1 12004:1 12018:5 12035:1 12036:1 12064:1 12071:1 12091:1 12099:1 12125:1 12141:2 12159:1 12163:2 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:1 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:2 12379:1 12418:2 12463:1 12465:1 12483:1 12540:1 12611:1 12614:3 12619:1 12623:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12816:1 12838:1 12852:1 12855:2 12868:1 12919:1 12921:2 12930:1 13013:1 13023:2 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:14 13244:1 13251:1 13254:4 13263:1 13296:3 13306:1 13318:1 13322:1 13352:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13631:1 13653:1 13670:1 13675:1 13677:1 13688:1 13695:5 13699:1 13720:1 13728:1 13735:1 13750:1 13821:1 13827:1 13830:1 13833:2 13836:1 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14100:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14212:1 14215:1 14223:2 14226:5 14250:1 14254:1 14259:2 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:4 14401:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:2 14505:1 14514:2 14516:1 14528:5 14531:2 14605:2 14615:1 14634:4 14708:1 14711:2 14765:1 14769:1 14813:4 14902:1 14905:1 14914:2 14920:2 14922:2 14940:1 14941:1 15002:1 15023:1 15038:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:14 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15301:1 15324:1 15345:3 15365:1 15395:1 15405:1 15439:1 15505:1 15512:1 15515:1 15518:1 15545:1 15575:1 15595:1 15596:2 15612:1 15627:1 15628:1 15631:3 15686:1 15706:2 15709:1 15726:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16067:1 16082:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16186:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:1 16346:2 16351:1 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16487:1 16505:1 16516:1 16600:1 16611:1 16616:1 16619:7 16622:1 16655:1 16657:1 16664:1 16694:1 16703:1 16706:1 16731:7 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16910:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17030:1 17092:1 17128:1 17137:1 17140:1 17146:1 17213:1 17224:1 17237:2 17252:1 17260:1 17291:1 17296:1 17302:1 17367:1 17383:1 17386:2 17388:1 17412:1 17414:1 17423:1 17425:2 17437:1 17494:1 17507:1 17536:20 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17761:1 17764:1 17765:1 17809:1 17835:1 17858:1 17860:2 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18115:2 18120:1 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18270:1 18299:2 18304:2 18319:1 18339:1 18351:2 18352:1 18394:1 18398:2 18412:1 18415:1 18439:2 18448:2 18473:1 18497:1 18500:1 18552:3 18557:1 18559:1 18611:1 18631:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18806:1 18848:1 18924:1 18928:1 18953:1 18968:1 19024:3 19038:1 19044:1 19057:1 19102:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:996 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:2 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19602:1 19603:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:1 19773:1 19778:1 19821:1 19826:3 19858:2 19863:1 19871:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:3 20033:2 20063:1 20065:2 20096:2 20112:1 20127:6 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20216:2 20229:1 20238:2 20245:2 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:1 20354:1 20397:1 20424:1 20435:1 20467:1 20530:1 20559:1 20562:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20677:1 20700:1 20726:1 20732:1 20736:1 20769:1 20770:2 20774:1 20783:1 20784:1 20791:3 20831:1 20841:1 20851:1 20856:1 20866:1 20879:1 20890:1 20896:1 20919:1 20934:1 20947:2 20958:1 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21282:1 21286:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:1 21453:1 21460:3 21480:1 21481:1 21491:1 21501:1 21503:1 21522:1 21528:1 21531:1 21537:1 21540:2 21551:1 21557:2 21571:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:2 21704:1 21721:1 21724:1 21731:1 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21866:1 21883:1 21885:1 21888:2 21920:2 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 22002:1 22006:1 22007:1 22009:1 22052:1 22064:1 22065:1 22069:2 22149:1 22170:1 22180:2 22231:2 22251:1 22266:1 22281:2 22293:1 22300:1 22301:1 22349:3 22388:1 22422:1 22429:2 22433:1 22438:2 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22580:1 22581:1 22614:1 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:1 22662:2 22663:1 22679:1 22683:1 22696:1 22740:1 22748:1 22774:1 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22983:1 22989:1 23007:1 23015:1 23019:1 23020:4 23042:2 23079:1 23084:7 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23267:1 23269:1 23281:1 23315:1 23336:1 23340:1 23355:2 23405:3 23413:1 23460:1 23491:1 23511:1 23516:13 23534:1 23537:1 23538:2 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:4 23695:1 23718:1 23796:1 23812:2 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23913:1 23917:1 23956:14 23975:2 23977:1 24001:1 24027:2 24038:1 24041:6 24087:1 24104:1 24118:2 24123:1 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24318:2 24328:1 24342:1 24391:1 24395:1 24417:1 24428:1 24450:1 24458:2 24470:1 24476:1 24535:1 24558:1 24567:1 24582:2 24585:1 24591:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:2 24786:1 24812:2 24828:2 24858:1 24860:1 24862:1 24869:1 24875:1 24888:1 24889:2 24893:2 24898:1 24912:1 24939:2 24977:4 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25097:1 25133:1 25171:1 25185:1 25189:1 25192:2 25225:1 25239:1 25252:1 25289:2 25291:1 25292:2 25301:1 25309:3 25315:1 25346:2 25369:1 25380:1 25385:1 25386:2 25427:1 25431:1 25439:3 25459:1 25467:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25796:1 25842:1 25883:1 25884:2 25915:1 25918:2 25923:1 25951:1 25989:2 26001:1 26012:1 26034:1 26043:1 26054:1 26057:1 26063:1 26090:1 26103:1 26133:1 26136:1 26163:1 26179:2 26202:1 26218:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26283:1 26297:1 26312:2 26322:2 26325:1 26347:1 26362:2 26373:1 26377:2 26406:1 26408:2 26434:1 26437:4 26446:2 26466:1 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26679:1 26696:1 26711:1 26721:1 26727:1 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26843:1 26866:1 26873:3 26885:2 26900:1 26901:1 26905:5 26906:1 26926:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27031:1 27051:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27469:1 27483:1 27490:1 27500:1 27508:1 27510:4 27536:2 27546:1 27559:4 27585:2 27617:1 27627:3 27628:1 27631:2 27645:1 27662:1 27670:1 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27777:1 27804:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27854:2 27884:2 27901:1 27913:1 27959:1 27968:2 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28111:1 28138:1 28142:1 28149:1 28161:1 28162:2 28165:2 28169:2 28178:2 28181:2 28186:2 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:3 28286:2 28314:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28480:1 28538:1 28559:1 28574:2 28575:2 28586:1 28588:2 28590:1 28591:3 28615:1 28658:1 28662:1 28672:1 28676:1 28689:1 28725:2 28742:2 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28927:5 28996:1 29019:2 29037:1 29055:4 29061:2 29074:1 29088:1 29089:1 29096:1 29105:3 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29316:1 29332:17 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:2 29430:5 29440:1 29463:1 29487:1 29488:2 29524:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:1 29844:1 29853:1 29899:1 29903:1 29916:1 29921:1 29943:1 29946:2 29968:1 29971:2 29982:4 30003:1 30008:1 30009:2 30019:14 30048:1 30085:1 30087:1 30094:2 30095:2 30107:1 30189:1
2 13:1 15:1 39:2 40:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 290:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 445:1 457:1 462:1 477:1 482:1 504:1 513:2 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 670:2 683:1 686:1 717:2 733:1 734:15 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:1 827:1 865:1 884:2 887:1 890:2 893:1 895:1 948:2 949:1 989:1 990:6 996:1 1007:5 1026:2 1046:2 1054:3 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1102:1 1122:1 1125:1 1128:1 1147:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:14 1328:1 1331:2 1332:1 1337:3 1361:1 1363:1 1374:1 1381:1 1383:1 1400:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1513:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1627:3 1660:1 1692:2 1700:1 1715:1 1719:1 1732:1 1745:1 1748:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1835:1 1848:2 1849:3 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1971:1 1972:1 1979:1 1991:1 1994:1 1995:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2254:1 2285:1 2288:1 2318:3 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:3 2490:3 2494:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2632:1 2649:1 2650:2 2657:1 2672:1 2682:2 2692:1 2700:1 2709:2 2726:1 2779:1 2810:2 2827:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:2 2979:1 2982:1 2985:2 2990:1 3002:1 3042:1 3050:2 3056:1 3058:1 3069:1 3145:9 3149:15 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:2 3199:1 3202:1 3208:4 3230:2 3234:1 3269:1 3277:1 3307:2 3350:1 3447:1 3467:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3582:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3769:1 3808:1 3819:1 3841:1 3878:1 3886:1 3920:1 3941:1 3953:1 3954:1 3957:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:2 4170:1 4175:14 4176:2 4195:1 4228:1 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:1 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4424:1 4428:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4508:1 4529:1 4615:14 4622:1 4629:3 4645:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:2 4781:1 4782:2 4790:1 4795:1 4797:1 4820:1 4835:3 4839:1 4861:1 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5046:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:7 5164:2 5177:1 5203:1 5210:2 5240:1 5285:2 5287:1 5300:2 5301:2 5302:1 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:2 5818:1 5877:1 5906:1 5916:1 5938:1 5941:1 5982:1 5984:1 5990:1 5993:1 6029:1 6113:2 6126:1 6128:1 6131:1 6143:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6395:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6509:1 6519:1 6520:2 6562:1 6602:1 6610:1 6623:3 6626:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:3 6762:1 6763:1 6769:1 6770:1 6774:1 6775:5 6805:1 6827:2 6854:1 6876:1 6892:1 6904:1 6912:2 6916:2 6977:1 6990:1 7013:1 7020:1 7024:1 7037:1 7040:1 7065:1 7075:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7454:1 7465:4 7520:1 7521:1 7537:2 7548:2 7580:1 7588:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7830:1 7847:3 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:2 7995:1 8027:1 8037:1 8055:1 8072:5 8073:5 8078:1 8092:1 8095:5 8124:3 8128:1 8138:20 8141:1 8142:1 8145:2 8148:1 8151:1 8155:9 8159:2 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:1 8349:1 8359:1 8383:3 8392:1 8412:1 8436:1 8440:1 8475:1 8524:1 8529:1 8569:1 8580:1 8593:1 8633:1 8644:1 8659:1 8662:15 8669:1 8677:1 8691:1 8693:6 8694:2 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:19 8860:2 8880:1 8890:1 8948:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 8996:1 9010:1 9017:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9390:1 9393:3 9401:1 9407:1 9408:1 9409:1 9413:1 9421:1 9430:1 9435:1 9436:1 9490:1 9519:1 9523:2 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:2 9685:1 9686:1 9689:1 9699:1 9703:1 9714:1 9728:1 9738:1 9751:1 9754:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:1 9845:1 9874:1 9889:1 9891:1 9892:2 9907:1 9942:1 9947:1 9955:1 9978:1 9991:1 9992:1 10003:2 10004:4 10026:2 10032:1 10041:1 10043:2 10052:1 10066:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10180:1 10181:1 10217:1 10241:5 10252:1 10257:2 10261:3 10271:1 10309:1 10356:1 10379:14 10390:1 10397:1 10423:1 10439:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10531:1 10538:2 10545:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:2 10633:2 10636:1 10665:2 10683:1 10691:1 10700:1 10721:1 10725:2 10729:1 10746:1 10766:3 10778:1 10843:1 10862:1 10868:1 10887:2 10910:1 10931:1 10953:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:4 11304:1 11315:1 11333:1 11350:1 11396:1 11424:1 11437:1 11448:1 11464:2 11469:3 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:4 11552:1 11556:1 11559:1 11570:1 11572:2 11576:2 11577:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11770:2 11775:1 11827:1 11834:1 11852:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11927:1 11940:2 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:1 12036:1 12064:1 12071:1 12091:1 12099:1 12125:1 12141:2 12159:1 12163:2 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:1 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:2 12379:1 12418:2 12463:1 12465:1 12483:1 12540:1 12611:1 12614:3 12619:1 12623:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12816:1 12838:1 12852:1 12855:3 12868:1 12919:1 12921:2 12930:1 13013:1 13023:2 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:15 13244:1 13251:1 13254:4 13263:1 13296:3 13306:1 13318:1 13322:1 13352:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13631:1 13653:1 13670:1 13675:1 13677:1 13688:1 13695:5 13699:1 13720:1 13728:1 13735:1 13750:1 13821:1 13827:1 13830:1 13833:2 13836:1 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14100:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14208:1 14212:1 14215:1 14218:1 14223:2 14226:5 14250:1 14254:1 14259:3 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:5 14401:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:2 14505:1 14514:2 14516:1 14528:5 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14765:1 14769:1 14813:4 14902:1 14905:1 14914:2 14920:2 14922:2 14940:1 14941:1 15002:1 15023:1 15037:1 15038:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:15 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15301:1 15324:1 15345:3 15360:1 15365:1 15395:1 15405:1 15439:1 15505:1 15512:1 15515:1 15518:1 15545:1 15575:1 15595:1 15596:2 15612:1 15627:1 15628:1 15631:3 15686:1 15706:2 15709:1 15726:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16067:1 16082:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16186:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:2 16346:2 16351:1 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16487:1 16505:1 16516:2 16600:1 16611:1 16616:1 16619:7 16622:1 16655:1 16657:2 16664:1 16694:1 16703:1 16706:2 16731:7 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16910:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17030:1 17092:1 17128:1 17137:1 17140:1 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17260:1 17291:1 17296:1 17302:1 17367:1 17383:1 17386:2 17388:1 17412:1 17414:1 17423:1 17425:2 17437:1 17494:1 17507:1 17536:22 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17761:1 17764:1 17765:1 17785:1 17809:1 17835:1 17858:1 17860:2 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18113:1 18115:2 18120:1 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18270:1 18299:2 18304:2 18319:1 18339:1 18351:2 18352:1 18394:1 18398:2 18412:1 18415:1 18439:2 18448:2 18473:1 18497:1 18500:1 18552:3 18557:1 18559:1 18611:1 18631:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18848:1 18924:2 18928:1 18953:1 18968:1 19024:3 19038:1 19044:1 19057:1 19102:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:1043 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:2 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19602:1 19603:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:1 19773:1 19778:1 19821:1 19826:3 19858:2 19863:1 19871:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:3 20033:2 20063:1 20065:2 20096:2 20112:1 20127:7 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20216:2 20229:1 20238:2 20245:2 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:1 20354:1 20397:1 20424:1 20435:1 20464:1 20467:1 20530:1 20559:1 20562:1 20563:1 20571:1 20578:1 20596:1 20627:1 20640:1 20671:1 20672:3 20677:1 20700:1 20726:1 20732:1 20736:1 20742:1 20769:1 20770:2 20774:1 20783:1 20784:1 20791:4 20831:1 20841:1 20851:1 20856:1 20866:1 20879:1 20890:1 20896:1 20919:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:1 21144:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21282:1 21286:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:1 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:2 21551:1 21557:2 21571:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:2 21704:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21866:1 21883:1 21885:1 21888:2 21920:2 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 22002:1 22006:1 22007:1 22009:1 22052:1 22064:1 22065:1 22069:2 22076:1 22104:1 22149:1 22170:1 22180:2 22231:2 22251:1 22266:1 22281:2 22285:1 22293:1 22300:1 22301:1 22349:3 22388:1 22422:1 22429:3 22433:1 22438:2 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22580:1 22581:1 22614:1 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:1 22662:2 22663:1 22679:1 22683:1 22696:1 22740:1 22748:1 22774:1 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:5 23042:2 23079:1 23084:7 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23267:1 23269:1 23281:1 23315:1 23336:1 23340:1 23355:3 23405:3 23413:1 23460:1 23467:1 23491:1 23511:1 23516:14 23534:1 23537:1 23538:2 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:4 23695:1 23718:1 23796:1 23812:2 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23913:1 23917:1 23920:1 23956:15 23975:2 23977:1 24001:1 24027:2 24038:1 24041:6 24078:1 24087:1 24104:1 24118:2 24123:1 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24318:2 24328:1 24342:1 24391:1 24395:1 24417:1 24428:1 24450:1 24458:2 24470:1 24476:1 24535:1 24558:1 24567:1 24582:2 24585:1 24591:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:2 24786:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:1 24869:1 24875:1 24888:1 24889:2 24893:2 24898:1 24912:1 24939:2 24977:4 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25097:1 25133:1 25171:1 25185:1 25189:1 25192:2 25225:1 25239:1 25252:1 25289:2 25291:1 25292:2 25301:1 25309:3 25315:1 25346:2 25363:1 25369:1 25380:1 25385:2 25386:2 25427:1 25431:1 25439:3 25459:1 25467:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25796:1 25842:1 25883:1 25884:2 25915:1 25918:2 25923:1 25951:1 25955:1 25989:2 26001:1 26012:1 26034:1 26043:1 26054:1 26057:1 26063:1 26090:1 26097:1 26103:1 26129:1 26133:1 26135:1 26136:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26283:1 26297:1 26312:2 26322:2 26325:1 26347:1 26362:2 26373:1 26377:3 26406:1 26408:2 26434:1 26437:5 26446:2 26466:1 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26679:1 26696:1 26711:1 26721:1 26727:1 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26843:1 26866:1 26873:3 26885:2 26900:1 26901:1 26905:5 26906:1 26926:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27031:1 27051:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27469:1 27483:1 27490:1 27500:1 27508:1 27510:4 27536:2 27546:1 27559:4 27585:2 27617:1 27627:3 27628:1 27631:2 27645:1 27662:1 27670:1 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27777:1 27804:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27854:2 27884:2 27901:1 27913:1 27959:1 27968:2 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28111:1 28138:1 28142:1 28149:1 28161:1 28162:3 28165:2 28169:2 28178:2 28181:2 28186:2 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:3 28286:2 28314:1 28324:1 28326:1 28329:2 28343:1 28347:1 28349:1 28371:1 28393:1 28423:1 28424:1 28438:1 28480:1 28538:1 28559:1 28574:3 28575:2 28586:1 28588:2 28590:1 28591:3 28615:1 28658:1 28662:1 28672:1 28676:1 28689:1 28725:2 28742:2 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28927:5 28996:1 29019:2 29037:1 29055:4 29061:2 29074:1 29088:1 29089:1 29096:1 29105:5 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29316:1 29332:19 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:6 29440:1 29463:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29899:1 29903:1 29916:1 29921:1 29943:1 29946:2 29968:1 29971:2 29982:4 30003:1 30008:2 30009:2 30019:15 30048:1 30085:1 30087:1 30094:2 30095:2 30107:1 30174:1 30189:1
2 13:1 15:1 39:2 40:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 290:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:1 445:1 457:1 462:1 477:1 482:1 504:1 513:2 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 670:2 683:1 686:1 717:2 733:1 734:16 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:1 827:1 865:1 884:2 887:1 890:2 893:2 895:1 897:1 948:2 949:1 989:1 990:6 996:1 1007:5 1026:2 1046:2 1054:3 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1102:1 1122:1 1125:1 1128:1 1147:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:15 1328:1 1331:2 1332:1 1337:3 1361:1 1363:1 1374:1 1381:1 1382:1 1383:1 1400:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1513:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1627:4 1660:1 1692:2 1700:1 1715:1 1719:2 1732:1 1745:1 1748:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1835:1 1848:2 1849:3 1875:1 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1967:1 1971:1 1972:1 1979:1 1991:1 1994:1 1995:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2254:1 2285:1 2288:1 2318:4 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:3 2490:3 2494:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2632:1 2649:1 2650:2 2657:1 2672:1 2682:2 2692:1 2700:1 2709:2 2726:1 2779:1 2810:2 2827:1 2840:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2976:2 2979:1 2982:1 2985:2 2990:1 3002:1 3042:1 3050:2 3056:1 3058:1 3069:2 3113:1 3122:1 3145:9 3149:16 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:3 3199:1 3202:1 3208:4 3230:2 3234:1 3269:1 3277:1 3307:2 3350:1 3447:1 3467:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3582:1 3590:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3769:1 3778:1 3781:1 3808:1 3819:1 3841:1 3878:1 3886:1 3920:1 3941:1 3952:1 3953:1 3954:1 3957:1 3962:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:2 4149:1 4170:1 4175:15 4176:2 4195:1 4228:1 4230:1 4242:1 4247:1 4249:1 4250:2 4261:2 4278:1 4283:1 4288:4 4298:2 4336:1 4363:1 4373:2 4379:1 4420:1 4422:1 4424:1 4428:1 4429:1 4437:1 4452:1 4481:2 4482:1 4485:2 4489:1 4490:1 4508:1 4529:1 4615:15 4622:1 4626:1 4629:3 4645:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:1 4803:1 4820:1 4835:3 4839:1 4861:1 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5046:1 5049:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:1 5122:1 5127:1 5144:1 5147:1 5163:7 5164:2 5177:1 5203:1 5210:2 5240:1 5241:1 5285:2 5287:1 5300:2 5301:2 5302:1 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5741:1 5744:1 5747:1 5750:1 5780:1 5811:1 5815:2 5818:1 5877:1 5906:1 5916:1 5938:1 5941:1 5982:1 5984:1 5990:1 5993:1 6029:1 6053:1 6113:2 6126:1 6128:1 6131:1 6143:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6395:1 6402:1 6408:2 6412:1 6446:1 6491:1 6500:1 6505:1 6508:1 6509:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6623:3 6626:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:3 6762:1 6763:1 6769:1 6770:1 6774:1 6775:6 6805:1 6827:2 6854:1 6876:1 6892:1 6904:1 6912:2 6916:3 6977:1 6984:1 6990:1 7013:1 7020:1 7024:1 7037:1 7040:1 7065:1 7075:1 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7520:1 7521:1 7537:2 7548:2 7580:1 7588:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7815:1 7830:1 7847:3 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:5 8073:6 8078:1 8092:1 8095:5 8124:3 8128:1 8138:20 8141:1 8142:1 8145:2 8148:1 8151:1 8155:9 8159:2 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:1 8349:1 8359:1 8383:3 8392:1 8412:1 8436:1 8440:1 8475:1 8524:1 8529:1 8569:1 8580:1 8593:2 8633:1 8644:1 8659:1 8662:16 8669:1 8677:1 8681:1 8691:1 8693:7 8694:2 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:20 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:2 8996:1 9010:1 9017:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9390:1 9393:3 9401:1 9407:1 9408:1 9409:1 9413:1 9421:1 9430:1 9435:1 9436:1 9490:1 9519:1 9523:2 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:2 9671:2 9672:1 9681:1 9684:2 9685:1 9686:1 9689:1 9699:1 9703:1 9714:1 9728:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:1 9823:1 9845:1 9874:1 9889:1 9891:1 9892:2 9907:1 9941:1 9942:1 9947:1 9955:1 9978:1 9991:1 9992:1 10003:2 10004:4 10026:2 10032:1 10041:1 10043:3 10052:1 10066:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10180:1 10181:1 10217:1 10241:5 10252:1 10257:2 10261:3 10271:1 10309:1 10356:1 10379:15 10390:1 10397:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:3 10633:2 10636:1 10665:2 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10746:1 10766:3 10778:1 10843:1 10862:1 10868:1 10887:2 10910:1 10931:1 10953:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:2 11125:1 11142:2 11193:1 11195:1 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:4 11300:1 11304:1 11315:1 11333:1 11350:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:4 11552:1 11556:1 11559:1 11570:1 11572:2 11576:2 11577:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11770:3 11775:1 11827:1 11834:1 11843:1 11845:1 11852:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11927:1 11940:2 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:2 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:1 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:3 12379:1 12418:2 12463:1 12465:1 12483:1 12540:1 12611:1 12614:3 12619:1 12623:1 12635:2 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12769:1 12816:1 12838:1 12852:2 12855:3 12868:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:16 13244:1 13251:1 13254:4 13263:1 13296:3 13306:1 13318:1 13322:1 13352:1 13363:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13631:1 13650:1 13653:1 13670:1 13675:1 13677:1 13688:1 13695:6 13699:1 13700:1 13720:1 13728:1 13735:1 13750:1 13821:1 13827:1 13830:1 13833:2 13836:1 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14100:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14208:1 14212:1 14215:1 14218:1 14223:2 14226:5 14250:1 14254:1 14255:1 14259:3 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:5 14401:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:2 14505:1 14514:3 14516:1 14528:5 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14765:1 14769:1 14813:4 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 15002:1 15023:1 15037:1 15038:1 15039:1 15055:1 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:16 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:1 15324:1 15330:1 15345:3 15360:1 15365:1 15392:1 15395:1 15405:1 15439:1 15505:1 15512:1 15515:1 15518:1 15545:1 15575:1 15595:1 15596:2 15612:1 15627:1 15628:1 15631:5 15686:1 15706:2 15709:1 15726:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15892:1 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16067:1 16082:1 16083:1 16084:1 16109:1 16139:3 16144:2 16179:1 16186:1 16209:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:2 16346:2 16351:1 16363:2 16378:1 16388:1 16445:1 16447:1 16457:1 16478:4 16487:1 16505:1 16516:2 16600:1 16611:1 16616:1 16619:7 16622:2 16655:1 16657:2 16660:1 16664:1 16694:1 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16907:1 16910:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17030:1 17051:1 17092:1 17097:1 17128:1 17137:1 17140:1 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17260:1 17291:1 17296:1 17302:1 17367:1 17383:1 17386:2 17388:1 17412:1 17414:1 17423:1 17425:2 17437:1 17494:1 17507:1 17536:23 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:2 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17761:1 17764:1 17765:1 17785:1 17809:1 17835:1 17858:1 17860:2 17912:1 17980:2 18028:1 18033:1 18036:1 18037:1 18105:1 18113:1 18115:2 18120:1 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18264:1 18270:1 18299:2 18304:2 18319:1 18339:1 18351:2 18352:1 18394:1 18398:2 18412:1 18415:1 18439:3 18448:2 18473:1 18497:1 18500:1 18552:3 18557:1 18559:1 18611:1 18631:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18848:2 18924:2 18928:1 18953:1 18968:1 19024:3 19038:1 19044:1 19057:1 19102:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:1116 19250:1 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:2 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19602:1 19603:1 19639:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:1 19773:1 19778:1 19821:1 19826:3 19858:2 19863:1 19871:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:3 20033:2 20063:1 20065:2 20096:2 20112:1 20127:7 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20216:2 20229:1 20238:2 20245:2 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:1 20354:1 20397:1 20424:1 20435:1 20464:1 20467:1 20530:1 20554:1 20559:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:1 20616:1 20627:1 20640:1 20671:1 20672:3 20677:1 20694:1 20700:1 20726:1 20732:1 20736:1 20742:1 20769:1 20770:2 20774:1 20783:1 20784:1 20791:4 20831:1 20841:1 20851:1 20856:1 20866:1 20879:1 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:2 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21282:1 21286:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:2 21551:1 21557:2 21571:1 21576:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:2 21704:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21826:1 21866:1 21883:1 21885:1 21888:2 21920:2 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:1 22052:1 22064:1 22065:1 22069:2 22076:1 22104:1 22149:1 22170:1 22180:2 22231:2 22251:1 22266:1 22281:2 22285:1 22293:1 22300:1 22301:1 22349:3 22388:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22580:1 22581:1 22614:2 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:1 22662:2 22663:1 22679:1 22683:1 22696:1 22740:1 22748:1 22774:1 22776:1 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:6 23042:2 23079:1 23084:8 23086:1 23090:1 23094:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23267:1 23269:1 23281:1 23315:1 23336:1 23340:1 23355:3 23366:1 23405:3 23413:1 23460:1 23467:1 23491:1 23508:1 23511:1 23516:15 23534:1 23537:1 23538:2 23545:1 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:4 23695:1 23718:1 23796:1 23799:1 23812:2 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23913:1 23917:1 23920:1 23956:16 23975:2 23977:1 24001:1 24015:1 24027:2 24038:1 24041:6 24078:1 24087:1 24104:1 24118:2 24123:1 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24417:1 24428:1 24450:1 24458:2 24470:1 24476:1 24535:1 24558:1 24567:1 24582:2 24585:1 24591:1 24600:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:2 24786:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24875:2 24888:1 24889:2 24893:2 24898:1 24912:1 24939:2 24977:5 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25097:1 25133:1 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25289:3 25291:1 25292:2 25301:1 25309:3 25315:1 25346:2 25363:1 25369:1 25380:1 25385:2 25386:2 25427:1 25431:1 25439:3 25459:1 25467:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25791:1 25796:1 25842:1 25883:1 25884:2 25915:1 25918:2 25923:1 25951:1 25955:1 25989:2 26001:1 26012:1 26034:1 26043:1 26054:1 26057:1 26063:1 26090:1 26097:1 26103:1 26129:1 26131:1 26133:1 26135:1 26136:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:2 26325:1 26347:1 26362:2 26373:1 26377:3 26406:1 26408:2 26434:1 26437:6 26446:2 26466:1 26488:1 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:1 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:1 26809:1 26824:1 26834:1 26836:1 26843:1 26866:1 26873:3 26876:1 26885:2 26900:1 26901:1 26905:5 26906:1 26926:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27237:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27469:1 27483:2 27490:1 27500:1 27508:1 27510:5 27536:2 27546:1 27559:4 27585:2 27617:1 27627:3 27628:1 27631:2 27645:1 27653:1 27662:1 27670:1 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27777:1 27780:1 27783:1 27788:1 27797:1 27799:1 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27884:2 27901:1 27913:1 27959:1 27968:2 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:1 28111:1 28138:1 28142:1 28149:1 28161:1 28162:3 28165:2 28169:2 28178:2 28181:2 28186:2 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:3 28286:3 28314:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28371:1 28390:1 28393:1 28423:1 28424:1 28438:1 28463:1 28480:1 28538:1 28559:1 28574:3 28575:2 28586:1 28588:2 28590:1 28591:3 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28725:2 28742:2 28761:1 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28917:1 28927:5 28996:1 29019:2 29037:1 29048:1 29055:5 29061:2 29074:1 29088:1 29089:1 29096:1 29105:5 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29316:1 29332:20 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:6 29440:1 29450:1 29463:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29899:1 29903:1 29916:1 29921:1 29940:1 29943:1 29946:2 29968:1 29971:2 29982:4 30003:1 30008:2 30009:2 30019:16 30048:1 30085:1 30087:1 30094:2 30095:2 30107:1 30174:1 30189:1
2 13:1 15:1 39:2 40:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 290:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 504:1 513:2 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 641:1 670:2 683:1 686:1 717:2 733:1 734:17 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:1 827:1 865:2 884:2 887:1 890:2 893:2 895:1 897:1 948:2 949:1 989:2 990:6 996:1 1007:5 1026:2 1046:2 1054:3 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1098:1 1102:1 1122:1 1125:1 1128:1 1147:3 1207:1 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:16 1328:1 1331:2 1332:1 1337:3 1341:1 1361:1 1363:2 1374:1 1381:1 1382:1 1383:1 1400:1 1404:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1513:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1627:4 1660:1 1692:2 1700:1 1715:1 1719:2 1732:1 1745:1 1748:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1835:1 1837:1 1848:2 1849:3 1875:1 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1967:1 1971:1 1972:1 1979:1 1991:1 1994:1 1995:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2254:1 2285:1 2288:1 2318:4 2359:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:3 2490:3 2494:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2672:3 2682:2 2692:1 2700:1 2709:2 2726:1 2746:1 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:2 2990:1 3002:1 3042:1 3050:3 3056:1 3058:1 3069:2 3113:1 3122:1 3145:10 3149:17 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:3 3195:1 3199:1 3202:1 3208:4 3230:2 3234:1 3269:1 3277:1 3278:1 3307:2 3350:1 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3560:1 3582:1 3590:1 3612:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3769:1 3778:1 3781:1 3808:1 3819:1 3841:1 3878:1 3886:1 3920:1 3941:1 3952:1 3953:1 3954:1 3957:1 3962:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:2 4149:1 4170:1 4175:16 4176:2 4195:1 4228:1 4230:1 4242:1 4247:1 4249:2 4250:2 4261:2 4278:1 4283:1 4288:4 4289:1 4298:2 4336:1 4363:1 4373:2 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4437:1 4452:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:2 4508:1 4529:1 4577:1 4604:1 4615:16 4622:1 4626:1 4629:3 4645:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:1 4803:1 4820:1 4835:6 4839:1 4861:1 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5002:1 5046:1 5049:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:2 5122:1 5127:1 5144:1 5147:1 5163:8 5164:2 5177:1 5203:1 5210:2 5240:1 5241:1 5285:3 5287:1 5300:2 5301:2 5302:1 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5811:1 5815:2 5818:1 5877:1 5903:1 5906:1 5916:1 5938:1 5941:1 5982:1 5984:1 5990:1 5993:1 6018:1 6029:1 6040:1 6053:1 6113:2 6126:1 6128:1 6131:1 6143:1 6228:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:1 6395:1 6402:1 6408:2 6412:1 6446:1 6489:1 6490:1 6491:1 6500:1 6501:1 6505:1 6508:1 6509:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:3 6762:1 6763:1 6769:1 6770:1 6774:1 6775:6 6782:1 6805:1 6827:2 6854:1 6876:1 6892:1 6904:1 6912:2 6916:3 6962:1 6977:1 6984:1 6990:1 7013:1 7020:1 7024:1 7037:1 7040:1 7065:1 7075:1 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7815:1 7830:1 7836:1 7847:3 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:6 8073:6 8078:1 8092:1 8095:5 8124:3 8128:1 8138:20 8141:1 8142:1 8145:2 8148:1 8151:1 8155:10 8159:2 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:2 8349:1 8359:1 8383:3 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8569:1 8580:1 8593:2 8612:1 8633:1 8644:1 8659:1 8662:17 8669:1 8677:1 8681:1 8691:1 8693:7 8694:3 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:21 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:3 8996:1 9010:1 9017:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9407:1 9408:1 9409:1 9413:1 9421:2 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:3 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:1 9703:1 9714:1 9728:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9845:1 9874:1 9889:1 9891:1 9892:2 9907:1 9938:1 9941:1 9942:1 9947:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:4 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10180:1 10181:1 10217:1 10241:5 10252:1 10257:2 10261:3 10271:1 10309:1 10356:1 10379:16 10390:1 10397:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:3 10633:2 10636:1 10665:3 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10746:1 10766:3 10778:1 10843:1 10862:1 10868:1 10887:2 10910:1 10931:1 10953:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:3 11125:1 11142:2 11174:1 11193:1 11195:1 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:4 11300:1 11304:1 11315:1 11333:1 11350:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:7 11552:1 11556:1 11559:1 11570:1 11572:2 11576:3 11577:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11770:3 11775:1 11827:1 11834:1 11843:1 11845:1 11852:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11927:1 11940:2 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:2 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12237:1 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:2 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:3 12379:1 12415:1 12418:2 12463:1 12465:1 12483:1 12540:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12717:1 12718:1 12719:1 12750:1 12769:1 12816:1 12838:1 12852:2 12855:3 12868:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:17 13244:1 13251:1 13254:4 13263:1 13296:4 13306:1 13318:2 13322:1 13352:1 13363:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13631:1 13650:1 13653:1 13670:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13720:1 13728:1 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:2 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14100:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14208:1 14212:1 14215:1 14218:1 14223:2 14224:1 14226:5 14227:1 14250:1 14254:1 14255:1 14259:3 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:7 14401:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:3 14505:1 14514:3 14516:1 14517:1 14528:5 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14765:1 14769:1 14813:4 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15055:2 15069:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:17 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:1 15324:1 15330:1 15345:3 15360:1 15365:1 15392:1 15395:1 15405:1 15408:1 15439:1 15505:1 15512:1 15515:2 15518:1 15545:1 15575:1 15595:1 15596:2 15612:1 15627:1 15628:1 15631:6 15686:1 15706:2 15709:1 15726:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15892:1 15898:1 15955:1 15977:2 15980:1 15996:1 16000:1 16010:1 16067:1 16082:1 16083:2 16084:1 16109:1 16139:3 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16445:1 16447:1 16457:1 16478:4 16487:1 16505:1 16516:2 16585:1 16600:1 16611:1 16616:1 16619:7 16622:2 16626:1 16655:1 16657:2 16660:1 16664:1 16694:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17030:1 17051:1 17092:1 17097:1 17128:1 17137:1 17140:1 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17260:1 17291:1 17296:1 17302:1 17367:1 17383:1 17386:3 17388:1 17412:1 17414:1 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:24 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17835:1 17858:1 17860:2 17878:1 17912:1 17918:1 17980:2 17986:1 18028:1 18033:1 18036:1 18037:1 18105:1 18107:1 18113:1 18115:2 18120:1 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18264:1 18270:1 18299:3 18304:2 18306:1 18319:1 18339:1 18351:2 18352:1 18394:2 18398:2 18412:1 18415:1 18439:3 18448:2 18473:1 18497:1 18500:1 18552:4 18557:1 18559:1 18611:1 18631:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18842:1 18848:2 18924:2 18928:1 18953:1 18968:1 18995:1 19024:3 19038:1 19044:1 19057:1 19102:1 19104:2 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:1201 19250:1 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:2 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:3 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:4 20033:2 20063:1 20065:4 20096:2 20112:1 20127:9 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20216:2 20229:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:1 20354:1 20397:1 20424:1 20435:1 20445:1 20464:1 20467:1 20474:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:1 20616:1 20627:1 20640:1 20671:1 20672:3 20677:1 20694:1 20700:1 20726:1 20732:1 20736:1 20742:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20831:1 20841:1 20851:1 20856:2 20866:1 20879:1 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:2 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21268:1 21282:1 21286:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:2 21551:1 21557:2 21571:1 21576:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:2 21704:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21826:1 21840:1 21866:1 21871:1 21883:1 21885:1 21888:2 21920:2 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:2 22052:2 22059:1 22064:1 22065:1 22069:2 22076:1 22104:1 22149:1 22170:1 22180:2 22231:2 22251:1 22266:1 22281:3 22285:1 22293:2 22300:1 22301:1 22339:1 22349:4 22388:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:2 22663:1 22679:1 22683:1 22696:1 22714:1 22740:1 22748:1 22774:1 22776:1 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:6 23042:2 23079:1 23084:8 23086:1 23090:1 23094:1 23139:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23267:1 23269:1 23281:1 23315:1 23336:1 23340:1 23355:3 23366:1 23405:3 23413:1 23460:1 23467:1 23491:1 23508:1 23511:1 23516:16 23534:1 23537:1 23538:2 23545:1 23572:1 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:4 23695:1 23718:1 23796:1 23799:1 23812:2 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23913:1 23917:1 23920:1 23956:17 23975:2 23977:1 24001:1 24003:1 24015:1 24027:2 24038:1 24041:6 24078:1 24087:1 24104:1 24112:1 24118:2 24123:1 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24417:1 24428:1 24450:2 24458:2 24470:1 24476:1 24535:1 24558:1 24567:1 24582:2 24585:1 24591:1 24600:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:2 24786:1 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24875:2 24888:1 24889:2 24893:3 24898:1 24912:1 24939:3 24977:5 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25089:1 25097:1 25133:1 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25289:3 25291:1 25292:2 25300:1 25301:1 25309:3 25315:1 25346:2 25363:2 25369:1 25380:1 25385:2 25386:2 25427:1 25431:1 25439:3 25459:1 25467:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25791:1 25796:1 25842:1 25883:2 25884:2 25915:1 25918:2 25923:1 25951:1 25955:1 25989:2 26001:1 26012:1 26034:1 26043:1 26046:1 26054:1 26057:2 26063:1 26079:1 26090:1 26097:1 26103:1 26129:1 26131:1 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:1 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:3 26416:1 26434:1 26437:6 26446:2 26457:1 26466:1 26488:1 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:2 26809:1 26824:1 26834:1 26836:1 26843:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:5 26906:1 26926:1 26940:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27237:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27469:1 27483:2 27490:1 27500:1 27508:1 27510:5 27536:2 27546:1 27559:4 27585:2 27617:1 27627:4 27628:1 27631:2 27645:1 27653:1 27662:1 27670:2 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27884:2 27901:1 27913:1 27959:1 27968:2 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:3 28111:1 28138:1 28142:1 28149:1 28161:1 28162:3 28165:2 28169:2 28177:1 28178:2 28181:2 28186:2 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:4 28286:3 28314:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28371:1 28390:1 28393:1 28423:1 28424:1 28438:1 28463:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28583:1 28586:1 28588:2 28590:1 28591:3 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:1 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28917:1 28927:5 28996:1 29019:2 29037:1 29048:1 29055:5 29061:2 29074:1 29088:1 29089:1 29096:1 29105:6 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29332:21 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:7 29440:1 29450:1 29463:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29882:1 29886:1 29899:1 29903:1 29916:1 29921:1 29940:1 29943:1 29946:2 29968:1 29971:2 29982:4 30003:1 30008:2 30009:2 30019:17 30048:1 30085:1 30087:1 30094:2 30095:2 30107:1 30174:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 290:1 305:1 306:1 310:1 341:1 386:3 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 504:1 513:2 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 641:1 670:2 683:1 686:1 717:2 733:1 734:18 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:1 827:1 865:2 884:2 887:1 890:2 893:2 895:1 897:1 948:3 949:1 989:2 990:6 996:1 1007:5 1026:2 1046:2 1054:3 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1098:1 1102:1 1122:1 1125:1 1128:1 1130:1 1147:3 1207:1 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:17 1328:1 1331:2 1332:1 1337:3 1341:1 1361:1 1363:2 1374:1 1381:1 1382:1 1383:1 1400:1 1404:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1513:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1627:4 1629:1 1660:1 1692:2 1700:1 1715:1 1719:2 1732:1 1745:1 1748:1 1752:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1819:1 1835:1 1837:1 1848:2 1849:3 1875:1 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1967:1 1971:1 1972:1 1979:1 1991:1 1994:1 1995:1 2014:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2254:1 2285:1 2288:1 2318:4 2359:1 2387:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:2 2486:3 2490:3 2494:1 2497:1 2499:1 2505:1 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2672:3 2682:2 2692:1 2700:1 2709:2 2726:1 2746:1 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2942:1 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:2 2990:1 3002:1 3042:1 3050:3 3056:1 3058:1 3069:2 3113:1 3122:1 3145:10 3149:18 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:3 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:1 3277:1 3278:1 3307:2 3350:1 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3560:1 3582:1 3587:1 3590:1 3612:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3769:1 3778:1 3781:1 3808:1 3819:1 3841:1 3878:1 3886:1 3920:1 3941:1 3952:2 3953:1 3954:1 3957:1 3962:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:17 4176:2 4195:1 4228:1 4230:1 4242:1 4247:1 4249:2 4250:2 4261:2 4278:1 4283:1 4288:4 4289:1 4298:2 4336:1 4363:1 4373:2 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:2 4508:1 4529:1 4548:1 4577:2 4582:1 4604:1 4615:17 4622:1 4626:1 4629:3 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5002:1 5017:1 5046:1 5049:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:2 5119:1 5122:1 5127:1 5144:1 5147:1 5163:8 5164:2 5177:1 5180:1 5203:1 5210:2 5240:1 5241:1 5285:3 5287:1 5300:2 5301:2 5302:2 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5811:1 5815:2 5818:1 5877:1 5903:1 5906:1 5916:1 5938:1 5941:1 5982:1 5984:1 5990:1 5993:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6228:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:1 6395:1 6402:1 6408:2 6412:1 6446:1 6453:1 6489:1 6490:1 6491:1 6500:1 6501:1 6505:1 6508:1 6509:1 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:4 6762:1 6763:1 6769:1 6770:1 6774:2 6775:6 6782:1 6805:1 6827:2 6854:1 6876:1 6892:1 6904:1 6912:2 6916:3 6962:1 6977:1 6984:1 6990:1 7013:1 7020:1 7024:1 7037:1 7040:2 7065:1 7075:1 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7815:1 7830:1 7836:1 7847:3 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:6 8073:6 8078:1 8092:1 8095:5 8124:3 8128:1 8138:20 8141:1 8142:1 8145:2 8148:1 8151:1 8155:10 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:2 8349:1 8359:1 8383:3 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8565:1 8569:1 8580:1 8593:2 8612:1 8633:1 8644:1 8659:1 8662:18 8669:1 8677:1 8681:1 8691:1 8693:7 8694:3 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:22 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:3 8996:1 9010:1 9017:1 9047:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:2 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:3 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:1 9703:1 9714:1 9728:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9907:1 9938:1 9941:1 9942:1 9947:1 9951:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:4 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10180:1 10181:1 10217:1 10241:5 10250:1 10252:1 10257:3 10261:4 10271:1 10309:1 10356:1 10379:17 10390:1 10397:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:3 10633:2 10636:1 10665:3 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10746:1 10764:1 10766:3 10778:1 10811:1 10843:1 10862:1 10868:1 10887:2 10899:1 10910:1 10931:1 10953:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:3 11125:1 11142:2 11174:1 11193:1 11195:1 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:4 11293:1 11300:1 11304:1 11315:1 11333:1 11350:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11770:3 11775:1 11827:1 11834:1 11843:1 11845:1 11852:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11927:1 11940:2 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:2 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12237:1 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:2 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:3 12379:1 12415:1 12418:2 12463:1 12465:1 12483:1 12540:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12717:1 12718:1 12719:1 12750:1 12769:1 12803:1 12816:1 12838:1 12852:2 12855:3 12868:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13180:1 13211:1 13238:2 13240:18 13244:1 13251:1 13254:4 13263:1 13296:4 13306:1 13318:2 13322:1 13334:1 13352:1 13363:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13597:1 13631:1 13650:1 13653:1 13670:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13720:1 13728:1 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:2 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:2 14071:1 14100:1 14104:1 14132:1 14136:1 14150:1 14156:1 14157:1 14170:1 14173:1 14208:1 14212:1 14215:1 14218:1 14223:2 14224:1 14226:5 14227:1 14250:1 14254:1 14255:1 14259:3 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:7 14401:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:3 14505:1 14514:3 14516:1 14517:1 14528:5 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14765:1 14769:1 14813:4 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 14952:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15055:2 15069:1 15081:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:18 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:1 15324:1 15330:1 15345:3 15360:1 15365:1 15392:1 15395:1 15405:1 15408:1 15439:1 15485:1 15505:1 15512:1 15515:2 15518:1 15545:1 15575:1 15595:1 15596:2 15597:1 15612:1 15627:1 15628:1 15631:6 15686:1 15706:2 15709:1 15726:1 15738:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15831:1 15848:2 15892:1 15898:1 15955:1 15963:1 15977:2 15980:1 15996:1 16000:1 16010:1 16067:1 16082:1 16083:2 16084:1 16109:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:1 16310:2 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16445:1 16447:1 16457:1 16478:4 16487:1 16505:1 16516:2 16585:1 16600:1 16611:1 16616:1 16619:7 16622:2 16626:1 16655:1 16657:2 16660:1 16664:1 16694:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17030:1 17051:1 17092:1 17097:1 17128:1 17137:1 17140:1 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17296:1 17302:1 17367:1 17383:1 17386:3 17388:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:25 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17835:1 17858:1 17860:2 17878:1 17912:1 17918:1 17980:2 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18105:1 18107:1 18113:1 18115:2 18120:1 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18264:1 18270:1 18299:4 18304:2 18306:1 18319:1 18339:1 18351:2 18352:1 18394:2 18398:2 18412:1 18415:1 18439:3 18448:2 18473:1 18497:1 18500:1 18552:4 18557:1 18559:1 18587:1 18611:1 18631:1 18634:1 18635:1 18641:1 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18842:1 18848:2 18924:2 18928:1 18953:1 18968:1 18995:1 19024:4 19038:1 19044:1 19057:1 19102:1 19104:2 19117:1 19119:1 19144:1 19169:1 19185:1 19219:1 19227:1 19238:1235 19250:1 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:3 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:4 20033:3 20063:1 20065:4 20096:2 20112:1 20127:10 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20216:2 20229:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:2 20354:1 20397:1 20424:1 20435:1 20445:1 20464:1 20467:1 20474:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:1 20616:1 20626:1 20627:1 20640:1 20671:1 20672:3 20677:1 20694:1 20700:1 20726:1 20732:1 20736:1 20739:1 20742:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20831:1 20841:1 20851:1 20856:2 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:2 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21268:1 21282:1 21286:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21557:3 21571:1 21576:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:2 21704:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21826:1 21840:1 21866:1 21871:1 21883:1 21885:1 21888:2 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:2 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22093:1 22104:1 22149:1 22170:1 22180:2 22231:3 22251:1 22266:1 22281:3 22285:1 22293:2 22300:1 22301:1 22339:1 22349:4 22388:1 22420:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:1 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:2 22663:1 22679:1 22683:1 22696:1 22714:1 22740:1 22748:1 22774:1 22776:1 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:6 23042:2 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:1 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23267:1 23269:1 23281:1 23315:1 23336:1 23340:1 23355:3 23366:1 23405:3 23413:1 23460:1 23467:1 23491:1 23497:1 23508:1 23511:1 23516:17 23534:1 23537:2 23538:2 23545:1 23572:2 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:4 23695:1 23718:1 23796:1 23799:1 23812:2 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:1 23917:1 23920:1 23956:18 23975:2 23977:1 24001:1 24003:1 24015:1 24027:2 24038:1 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:1 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24409:1 24417:1 24428:1 24450:2 24458:2 24470:1 24476:1 24535:1 24558:1 24567:1 24582:2 24585:1 24591:1 24600:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:3 24786:1 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24875:2 24888:1 24889:2 24893:3 24898:1 24912:1 24939:3 24977:5 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25089:1 25097:1 25133:2 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25289:3 25291:1 25292:2 25300:1 25301:1 25309:3 25315:1 25335:1 25346:2 25363:2 25369:1 25380:1 25385:2 25386:2 25427:1 25431:1 25439:4 25441:1 25459:1 25467:1 25473:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25791:1 25796:1 25842:1 25883:2 25884:2 25915:1 25918:2 25923:1 25951:1 25955:1 25989:2 26001:1 26012:1 26034:1 26043:1 26046:1 26054:1 26057:2 26063:1 26075:1 26079:1 26090:1 26097:1 26103:1 26129:1 26131:1 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:1 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:3 26416:1 26434:1 26437:6 26446:2 26457:1 26466:1 26488:1 26500:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:2 26809:1 26824:2 26834:1 26836:1 26843:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:6 26906:1 26926:1 26940:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27237:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27469:1 27483:2 27490:1 27500:1 27508:1 27510:5 27536:2 27546:1 27559:4 27585:2 27617:1 27627:4 27628:1 27631:2 27645:1 27653:1 27662:1 27670:2 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:1 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27884:2 27901:1 27913:1 27959:1 27968:3 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:3 28111:1 28138:1 28142:1 28149:1 28161:1 28162:3 28165:2 28169:2 28177:1 28178:2 28181:2 28186:2 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:4 28286:3 28314:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:1 28371:1 28390:1 28393:1 28423:1 28424:1 28438:1 28463:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28583:1 28586:1 28588:2 28590:1 28591:3 28596:1 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:1 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28895:1 28917:1 28927:5 28996:1 29019:2 29037:1 29048:1 29055:5 29061:2 29074:1 29088:1 29089:1 29096:1 29105:6 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29332:22 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:7 29440:1 29450:1 29463:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29706:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29882:1 29886:1 29899:1 29903:1 29916:1 29921:1 29940:1 29943:1 29946:2 29968:1 29971:2 29982:4 30003:1 30008:2 30009:2 30019:18 30048:1 30085:1 30087:1 30094:2 30095:2 30107:1 30174:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:1 283:3 284:1 290:1 305:1 306:1 310:1 341:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 504:1 513:2 539:1 544:1 548:1 555:1 586:1 596:1 607:1 612:1 641:1 670:3 674:1 683:1 686:1 717:2 733:1 734:19 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:2 827:1 865:2 884:2 887:1 890:2 893:2 895:1 897:1 948:3 949:1 989:2 990:6 996:1 1007:5 1026:2 1046:2 1051:1 1054:3 1058:1 1059:1 1066:1 1072:1 1077:2 1095:1 1098:1 1102:1 1122:1 1125:1 1128:1 1130:1 1147:3 1207:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:18 1328:1 1331:2 1332:1 1337:3 1341:1 1361:1 1363:2 1374:1 1377:1 1381:1 1382:1 1383:1 1400:1 1404:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1513:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1627:4 1629:1 1660:1 1692:2 1700:1 1715:1 1719:2 1732:1 1745:1 1748:1 1752:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1819:1 1835:1 1837:1 1848:2 1849:3 1875:1 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:1 1979:1 1991:1 1994:1 1995:1 2014:1 2017:2 2030:1 2036:2 2045:2 2056:1 2084:1 2097:1 2108:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2236:1 2254:1 2266:1 2285:1 2288:1 2318:5 2359:1 2387:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:3 2486:3 2490:3 2494:1 2497:1 2499:1 2505:2 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2671:1 2672:3 2682:2 2692:1 2700:1 2709:2 2726:1 2732:1 2746:1 2771:1 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2907:2 2914:1 2932:1 2942:2 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:2 2990:1 3002:1 3008:1 3042:1 3050:3 3056:1 3058:1 3069:2 3113:1 3122:1 3145:10 3149:19 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:3 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:2 3277:1 3278:1 3307:2 3350:1 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3560:1 3582:1 3587:1 3590:1 3612:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3769:1 3778:1 3781:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3920:1 3941:1 3952:2 3953:1 3954:1 3957:1 3962:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:18 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:2 4250:2 4261:2 4278:1 4283:1 4288:4 4289:1 4298:2 4336:1 4363:1 4373:2 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:2 4508:1 4529:1 4548:2 4577:2 4582:1 4604:1 4615:18 4622:1 4626:1 4629:4 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:1 4937:1 4960:1 4965:3 4972:1 5002:1 5017:1 5046:1 5049:1 5050:1 5053:2 5055:1 5064:1 5067:1 5091:1 5093:2 5119:1 5122:1 5127:1 5144:1 5147:1 5163:8 5164:2 5177:1 5180:1 5203:1 5210:2 5240:1 5241:1 5285:3 5287:1 5300:3 5301:3 5302:2 5309:3 5316:1 5317:3 5326:1 5333:2 5335:3 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5636:1 5638:1 5649:1 5682:1 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5811:1 5815:2 5818:1 5877:1 5903:1 5906:1 5916:1 5938:1 5941:1 5961:1 5982:1 5984:1 5990:1 5993:1 5998:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:1 6228:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:1 6395:1 6402:1 6408:2 6412:1 6446:1 6453:1 6489:1 6490:1 6491:1 6500:1 6501:1 6505:1 6508:1 6509:2 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:4 6753:1 6759:4 6762:1 6763:1 6769:1 6770:1 6774:2 6775:6 6782:1 6805:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6904:1 6912:2 6916:3 6962:1 6977:1 6984:1 6990:1 7013:1 7020:1 7024:1 7037:1 7040:2 7065:1 7075:1 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7815:1 7830:1 7836:1 7847:4 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:7 8073:6 8078:1 8092:1 8095:5 8124:3 8128:1 8138:22 8141:1 8142:1 8145:2 8148:1 8151:1 8155:10 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:2 8349:1 8359:1 8383:3 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8565:1 8569:1 8580:1 8593:2 8612:1 8633:1 8644:1 8659:1 8662:19 8669:1 8677:1 8681:1 8691:1 8693:8 8694:3 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:23 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:3 8996:1 9010:1 9017:1 9047:2 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:2 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:3 9535:1 9545:1 9566:1 9610:2 9613:1 9632:1 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:1 9703:1 9714:1 9728:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:1 9951:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:4 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10180:1 10181:1 10217:1 10241:5 10250:1 10252:1 10257:3 10261:4 10271:1 10309:1 10356:1 10379:18 10390:1 10397:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:1 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:3 10633:2 10636:1 10648:1 10665:3 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10746:1 10764:1 10766:4 10778:1 10811:1 10815:1 10843:1 10862:1 10868:1 10887:2 10899:1 10910:1 10931:1 10953:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11089:2 11095:1 11107:1 11109:3 11125:1 11142:2 11174:1 11193:1 11195:2 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:4 11293:1 11300:1 11304:1 11315:1 11333:1 11350:1 11370:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11770:3 11775:1 11827:1 11834:1 11843:1 11845:2 11852:1 11856:1 11858:1 11870:3 11871:1 11874:1 11881:1 11895:1 11900:2 11927:1 11940:2 11973:1 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:2 12185:1 12194:1 12204:1 12217:1 12220:1 12229:1 12234:1 12236:3 12237:1 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:2 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:3 12379:1 12415:1 12418:2 12463:1 12465:1 12483:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12717:1 12718:1 12719:1 12750:1 12769:1 12803:1 12816:1 12838:1 12852:2 12855:3 12868:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13154:1 13180:1 13211:1 13238:2 13240:19 13244:1 13251:1 13254:4 13263:1 13296:4 13306:1 13318:2 13322:1 13334:1 13352:1 13363:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13597:1 13631:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13720:1 13728:1 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:2 13844:1 13851:1 13891:1 13898:6 13902:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:3 14071:1 14100:1 14104:1 14132:1 14136:2 14150:1 14156:1 14157:1 14170:1 14173:1 14208:1 14212:1 14215:1 14218:1 14223:2 14224:1 14226:5 14227:1 14229:1 14250:1 14254:1 14255:1 14259:3 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:8 14401:1 14411:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:3 14505:1 14514:3 14516:1 14517:1 14528:5 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14724:1 14765:1 14769:1 14813:4 14875:1 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 14952:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15055:2 15069:1 15078:1 15081:1 15087:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15173:1 15185:19 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15360:1 15365:1 15366:1 15392:1 15395:1 15405:1 15408:1 15439:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15595:1 15596:2 15597:1 15612:1 15627:1 15628:1 15631:6 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15892:1 15898:1 15924:1 15955:1 15963:1 15977:2 15980:1 15996:1 16000:1 16010:1 16067:1 16082:1 16083:2 16084:1 16109:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:1 16310:3 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16445:1 16447:1 16457:1 16478:4 16487:1 16505:1 16514:1 16516:2 16585:1 16600:1 16611:1 16616:1 16619:7 16622:2 16626:1 16655:2 16657:2 16660:1 16664:1 16694:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17051:1 17092:1 17097:1 17128:1 17137:1 17140:1 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17367:1 17383:1 17386:3 17388:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:26 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17835:1 17858:1 17860:2 17878:1 17912:1 17918:1 17980:2 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18105:1 18107:1 18113:1 18115:2 18120:1 18141:1 18190:2 18203:2 18208:1 18212:1 18235:1 18264:1 18270:1 18299:4 18304:2 18306:1 18319:1 18339:1 18351:2 18352:1 18394:2 18398:2 18412:1 18415:1 18439:3 18448:2 18473:1 18497:1 18500:1 18552:4 18557:1 18559:1 18587:2 18611:1 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18842:1 18848:3 18924:2 18928:1 18953:1 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19102:1 19104:2 19117:1 19119:1 19144:1 19169:1 19172:1 19185:1 19219:1 19227:1 19238:1313 19250:1 19261:1 19272:1 19291:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:3 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:4 20033:3 20063:1 20065:4 20096:2 20112:1 20127:11 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20216:2 20229:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:2 20354:1 20397:1 20424:1 20435:1 20445:1 20464:1 20467:1 20474:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:1 20616:1 20626:1 20627:1 20640:1 20671:1 20672:4 20677:1 20694:1 20700:1 20726:1 20732:1 20736:1 20739:2 20742:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20831:1 20841:1 20851:1 20856:2 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21136:3 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:2 21218:1 21231:1 21268:1 21282:1 21286:1 21312:1 21341:1 21345:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21557:3 21571:1 21576:1 21580:2 21643:1 21645:3 21651:1 21658:1 21696:1 21697:1 21701:2 21704:2 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21826:1 21840:1 21866:1 21871:1 21883:1 21885:1 21888:2 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:2 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22093:1 22104:1 22149:1 22170:1 22180:2 22231:3 22251:1 22266:1 22281:3 22285:1 22293:2 22300:1 22301:1 22339:1 22349:4 22388:1 22420:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22631:1 22632:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:3 22663:1 22679:1 22683:1 22696:1 22714:1 22740:1 22748:1 22774:1 22776:2 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:7 23042:2 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23264:1 23267:1 23269:1 23281:1 23315:1 23336:1 23339:1 23340:1 23355:3 23366:2 23405:3 23413:1 23460:1 23467:1 23491:1 23497:1 23508:1 23511:1 23516:18 23534:1 23537:2 23538:2 23545:1 23572:2 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:1 23672:2 23682:1 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:2 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:1 23917:1 23920:1 23956:19 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:1 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24409:1 24417:1 24428:1 24450:2 24458:2 24470:1 24476:1 24535:1 24558:2 24567:1 24582:2 24585:1 24591:1 24600:1 24614:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:3 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24875:2 24888:1 24889:2 24893:3 24898:1 24912:1 24939:3 24977:5 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25089:1 25097:1 25133:2 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25289:3 25291:1 25292:2 25300:1 25301:1 25309:3 25315:1 25335:1 25346:2 25363:2 25369:1 25380:1 25385:2 25386:2 25427:1 25431:1 25437:1 25439:4 25441:1 25459:1 25467:1 25473:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25791:1 25796:1 25842:1 25883:2 25884:3 25903:1 25915:1 25918:2 25923:1 25951:1 25955:1 25989:2 26001:1 26012:1 26034:1 26043:1 26046:1 26054:1 26057:2 26063:1 26075:1 26079:1 26090:1 26097:1 26103:1 26128:1 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:1 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:3 26416:1 26434:1 26437:7 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:2 26809:1 26824:2 26834:1 26836:1 26843:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:1 26940:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27090:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:1 27237:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:5 27536:2 27546:1 27559:4 27585:3 27617:1 27627:4 27628:1 27631:2 27645:1 27653:1 27662:1 27670:2 27681:3 27690:1 27693:1 27696:1 27708:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:2 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27884:2 27901:1 27913:1 27959:1 27968:3 27982:2 27996:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:3 28111:1 28138:1 28142:1 28149:1 28161:1 28162:3 28165:2 28169:2 28177:1 28178:2 28181:2 28186:2 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:4 28286:3 28314:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:1 28371:1 28390:1 28393:1 28423:1 28424:1 28438:1 28463:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28583:2 28586:1 28588:2 28590:1 28591:3 28596:1 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:1 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28895:1 28917:1 28927:5 28996:1 29019:2 29037:1 29048:1 29055:5 29061:2 29074:1 29077:1 29088:1 29089:1 29096:1 29105:7 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29332:23 29335:1 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:7 29440:1 29447:1 29450:1 29463:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29696:1 29706:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29882:1 29886:1 29899:1 29903:1 29916:1 29921:1 29940:1 29943:1 29946:2 29968:1 29971:2 29982:4 30003:2 30008:2 30009:2 30019:19 30048:1 30085:1 30087:1 30089:1 30094:2 30095:2 30107:1 30142:1 30174:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:2 283:3 284:1 290:1 305:1 306:1 310:1 341:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 504:1 513:2 539:2 544:1 548:1 555:1 586:1 596:1 607:1 612:1 641:1 670:3 674:1 683:1 686:1 717:2 733:1 734:20 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:2 827:1 865:2 884:2 887:1 890:2 893:2 895:1 897:1 948:3 949:1 989:3 990:6 996:1 1007:5 1026:2 1046:2 1051:3 1054:4 1058:1 1059:1 1066:1 1072:1 1074:1 1077:2 1095:2 1098:1 1102:1 1122:1 1125:1 1128:1 1130:1 1147:3 1207:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:19 1328:1 1331:2 1332:1 1334:1 1337:3 1341:1 1361:1 1363:2 1374:1 1377:1 1381:1 1382:1 1383:1 1400:1 1404:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1499:1 1504:1 1511:2 1513:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1627:5 1629:1 1660:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1745:1 1748:1 1752:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1979:1 1991:1 1994:1 1995:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2230:1 2236:1 2254:1 2266:1 2271:1 2285:1 2288:1 2318:5 2359:1 2387:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:3 2484:1 2486:3 2490:3 2494:1 2497:1 2499:1 2505:2 2508:1 2513:1 2521:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2671:1 2672:4 2682:2 2692:1 2700:1 2709:2 2726:1 2732:1 2746:1 2757:1 2771:1 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:1 2932:1 2942:2 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:2 2990:1 3002:1 3008:1 3042:1 3049:1 3050:3 3056:1 3058:1 3069:2 3073:1 3099:1 3113:1 3122:1 3145:10 3149:20 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3194:3 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:2 3277:1 3278:1 3307:2 3350:2 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3560:1 3582:1 3587:1 3590:1 3612:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3747:1 3769:1 3778:1 3781:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3920:1 3941:1 3952:2 3953:1 3954:1 3957:1 3962:1 4010:2 4011:1 4048:1 4058:1 4064:1 4088:1 4090:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:19 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:3 4250:2 4261:2 4278:1 4283:1 4288:5 4289:2 4298:2 4336:1 4363:1 4373:2 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:2 4577:2 4582:1 4604:1 4615:19 4622:1 4626:1 4629:4 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:2 4937:1 4960:1 4965:3 4972:1 5002:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:1 5091:1 5093:2 5106:1 5119:1 5122:1 5127:1 5144:1 5147:1 5163:9 5164:2 5177:1 5180:1 5203:2 5210:2 5240:1 5241:1 5285:3 5287:1 5300:3 5301:4 5302:2 5309:3 5316:1 5317:3 5326:1 5333:2 5335:4 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5636:1 5638:1 5649:1 5682:2 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5809:1 5811:1 5815:2 5818:1 5877:1 5903:1 5906:1 5916:1 5938:1 5941:1 5961:1 5982:1 5984:1 5990:1 5993:1 5998:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:2 6228:1 6236:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:2 6389:1 6395:1 6402:1 6408:2 6412:1 6429:1 6446:1 6453:1 6489:1 6490:1 6491:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6759:4 6762:1 6763:1 6769:1 6770:1 6774:2 6775:6 6782:1 6805:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6904:1 6912:2 6916:3 6962:1 6977:1 6984:1 6990:1 6998:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7065:1 7075:1 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7470:1 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7654:1 7666:1 7679:1 7687:1 7692:1 7732:1 7743:1 7744:1 7756:1 7815:1 7830:1 7836:1 7846:1 7847:5 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:7 8073:8 8078:1 8092:1 8095:5 8124:3 8128:1 8138:23 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:10 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:2 8349:1 8354:1 8359:1 8383:3 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:1 8633:1 8644:1 8659:1 8662:20 8669:1 8677:1 8681:1 8691:1 8693:8 8694:3 8709:1 8711:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:24 8788:1 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:3 8996:1 9010:1 9017:1 9047:2 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:1 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:3 9535:1 9545:1 9547:1 9566:1 9610:2 9613:1 9632:1 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:1 9703:1 9714:1 9728:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:4 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10180:1 10181:1 10217:1 10241:5 10250:1 10252:1 10257:3 10261:4 10271:1 10309:1 10356:1 10357:1 10379:19 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10586:1 10592:2 10606:1 10614:1 10617:4 10633:2 10636:1 10648:1 10665:3 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10746:1 10764:1 10766:5 10778:1 10811:1 10815:1 10843:1 10862:1 10868:1 10887:3 10899:1 10910:1 10923:1 10924:1 10931:1 10953:1 10958:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:2 11095:1 11107:1 11109:3 11125:1 11142:2 11174:2 11193:1 11195:2 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:4 11293:1 11300:1 11304:1 11315:1 11333:1 11350:1 11370:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:2 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11770:3 11775:1 11827:1 11834:1 11843:1 11845:2 11852:1 11856:1 11858:1 11870:3 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11927:1 11940:2 11973:1 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:3 12185:1 12194:1 12204:1 12217:1 12220:1 12222:1 12229:1 12234:1 12236:3 12237:1 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12290:1 12293:2 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12369:1 12375:3 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12539:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12717:1 12718:1 12719:1 12726:1 12750:1 12768:1 12769:1 12803:1 12816:1 12838:1 12849:1 12852:2 12855:3 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13154:1 13178:1 13180:1 13211:1 13238:2 13240:20 13244:1 13251:1 13254:4 13263:1 13296:4 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13389:1 13390:1 13419:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13597:1 13631:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:2 13844:2 13851:1 13891:1 13898:7 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:3 14071:1 14100:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:1 14215:1 14216:1 14218:1 14223:2 14224:1 14226:5 14227:1 14229:1 14250:1 14254:1 14255:1 14259:4 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:8 14399:1 14401:1 14411:1 14414:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:3 14505:1 14514:3 14516:1 14517:1 14528:5 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14724:1 14727:1 14765:1 14769:1 14813:4 14875:1 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 14952:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15110:1 15123:1 15131:1 15133:1 15141:1 15150:1 15173:1 15185:20 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15360:1 15365:1 15366:1 15392:1 15395:1 15405:1 15408:1 15439:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15627:1 15628:1 15631:6 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16067:1 16082:1 16083:2 16084:1 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:2 16310:3 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16445:1 16447:1 16457:1 16478:4 16480:1 16487:1 16505:1 16514:1 16516:3 16585:1 16600:1 16611:1 16616:1 16619:8 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:1 16694:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16862:1 16864:1 16874:1 16891:4 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16946:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17051:1 17092:1 17097:1 17128:1 17137:1 17140:2 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17367:1 17383:1 17386:3 17388:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:27 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17835:1 17858:1 17860:2 17878:1 17912:1 17918:1 17980:2 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18105:1 18107:1 18113:1 18115:2 18120:1 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18294:1 18299:4 18304:2 18306:1 18319:1 18339:1 18351:2 18352:1 18379:1 18394:2 18398:2 18412:1 18415:1 18439:3 18448:4 18473:1 18497:1 18500:1 18535:1 18552:4 18557:1 18559:1 18587:2 18611:2 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18842:1 18848:3 18924:2 18928:1 18945:1 18953:1 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19065:1 19102:1 19104:2 19117:1 19119:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19227:1 19238:1449 19250:1 19261:2 19272:1 19291:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19675:1 19688:1 19707:1 19708:1 19714:2 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:4 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:4 20033:3 20063:1 20065:4 20096:2 20112:1 20127:12 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20210:1 20216:2 20229:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:2 20354:1 20394:1 20397:1 20424:1 20435:1 20445:1 20464:1 20467:1 20474:1 20509:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:5 20677:1 20685:1 20694:1 20700:1 20726:1 20732:1 20736:1 20739:2 20740:1 20742:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20815:1 20831:1 20841:1 20851:1 20856:2 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21097:1 21136:3 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21268:1 21282:1 21286:1 21306:1 21312:1 21341:1 21345:1 21350:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21557:3 21571:1 21576:1 21580:2 21643:1 21645:3 21648:1 21651:1 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21826:1 21840:1 21866:1 21871:1 21883:1 21885:1 21888:2 21900:1 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:2 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22093:1 22104:1 22149:1 22170:1 22180:2 22231:3 22251:1 22266:1 22281:3 22285:1 22293:3 22300:1 22301:1 22339:1 22349:4 22388:1 22420:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:1 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:3 22663:1 22679:1 22683:1 22696:1 22714:1 22740:1 22748:1 22774:1 22776:2 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:2 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:8 23042:2 23048:1 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23264:1 23267:1 23269:1 23281:1 23283:1 23315:1 23332:1 23336:1 23339:1 23340:1 23355:3 23366:2 23405:3 23413:1 23460:1 23467:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:19 23534:1 23537:2 23538:2 23545:1 23572:2 23579:1 23581:1 23582:1 23591:1 23593:1 23623:1 23625:1 23628:1 23631:1 23662:2 23672:2 23682:1 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:2 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:2 23917:1 23920:1 23956:20 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24409:1 24417:1 24428:1 24450:2 24458:2 24470:1 24476:1 24535:1 24558:2 24562:1 24567:1 24582:2 24585:1 24591:1 24600:1 24603:1 24614:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:3 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24875:2 24888:1 24889:2 24893:3 24898:1 24912:1 24939:3 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25080:1 25089:1 25097:1 25133:2 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25289:3 25291:1 25292:2 25300:1 25301:1 25309:3 25315:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:2 25415:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25467:1 25473:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25657:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25791:1 25796:1 25842:1 25881:1 25883:2 25884:3 25903:1 25915:1 25918:2 25923:1 25949:1 25951:1 25955:1 25989:2 26001:1 26012:1 26034:2 26043:1 26046:1 26054:1 26057:3 26063:1 26075:1 26079:1 26090:1 26097:1 26103:1 26128:1 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:1 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:3 26416:1 26434:1 26437:8 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:1 26568:2 26575:1 26591:1 26594:1 26596:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26761:2 26773:1 26787:1 26799:3 26809:1 26824:2 26834:1 26836:1 26843:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:1 26940:1 26950:1 26963:1 26988:3 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27090:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:2 27219:1 27237:1 27250:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:5 27536:2 27544:1 27546:1 27559:4 27585:3 27593:1 27617:1 27627:4 27628:1 27631:2 27645:1 27653:1 27662:1 27670:2 27681:3 27690:1 27693:1 27696:1 27708:1 27715:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:2 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27884:2 27901:1 27913:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28011:1 28016:2 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:1 28149:1 28161:1 28162:3 28165:2 28169:2 28171:1 28177:1 28178:2 28180:1 28181:2 28186:2 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:5 28286:3 28314:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:1 28371:1 28390:1 28393:1 28423:1 28424:1 28438:1 28463:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28583:3 28586:1 28588:2 28590:1 28591:3 28596:1 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:1 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:12 28895:1 28917:1 28927:5 28996:1 29019:2 29037:1 29048:1 29050:1 29055:7 29061:2 29074:1 29077:1 29088:1 29089:1 29096:1 29105:7 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29332:24 29335:1 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:7 29440:1 29447:1 29450:1 29463:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29696:1 29706:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29796:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29882:1 29886:1 29899:1 29903:1 29916:1 29921:1 29940:2 29943:1 29946:2 29968:1 29971:2 29982:5 30003:2 30008:2 30009:2 30019:20 30048:1 30085:1 30087:1 30089:1 30094:2 30095:2 30107:1 30142:1 30174:1 30176:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:2 283:3 284:1 290:1 305:1 306:1 310:1 341:1 348:1 383:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 492:1 504:1 513:2 539:2 544:1 548:1 555:1 586:1 596:1 607:1 612:1 641:2 670:3 674:1 683:1 686:1 717:2 733:1 734:21 739:3 743:1 759:1 763:1 777:1 798:1 808:2 813:2 827:1 865:2 884:2 887:1 890:2 893:2 895:1 897:1 948:3 949:1 989:3 990:6 996:1 1007:5 1021:1 1026:3 1046:2 1051:3 1054:4 1058:1 1059:1 1066:1 1072:1 1074:2 1077:2 1095:2 1098:1 1102:1 1122:1 1125:1 1128:1 1130:1 1147:3 1207:2 1209:1 1224:1 1265:1 1268:2 1295:1 1318:1 1320:20 1328:1 1331:2 1332:1 1334:1 1337:3 1341:1 1361:1 1363:2 1365:1 1374:1 1377:1 1381:1 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1497:1 1499:1 1504:1 1511:2 1513:1 1540:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1623:1 1627:6 1629:1 1660:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1745:1 1748:1 1749:1 1752:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:1 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1979:1 1991:1 1994:1 1995:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2230:1 2236:1 2254:1 2266:1 2271:1 2285:1 2288:1 2318:6 2359:1 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2466:1 2467:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:3 2484:1 2486:3 2490:3 2494:1 2497:1 2499:1 2503:1 2505:2 2508:1 2513:1 2514:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2671:1 2672:4 2682:2 2690:1 2692:1 2700:1 2709:2 2726:1 2732:1 2746:1 2757:1 2771:1 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:1 2932:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:2 2990:1 3002:1 3008:1 3010:1 3042:1 3049:1 3050:3 3056:1 3058:1 3069:2 3073:1 3099:2 3113:1 3122:1 3145:10 3149:21 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:3 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:2 3277:1 3278:1 3301:1 3307:2 3322:1 3350:2 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3560:1 3582:1 3587:1 3590:1 3612:1 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3920:1 3941:1 3952:2 3953:1 3954:1 3957:1 3962:1 4010:2 4011:1 4048:1 4058:1 4064:1 4082:1 4088:1 4090:1 4097:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:20 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:2 4288:5 4289:2 4298:2 4336:1 4363:1 4373:2 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4582:1 4604:1 4615:20 4622:1 4626:1 4629:4 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:2 4937:1 4960:1 4965:3 4972:1 5002:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:1 5091:1 5093:2 5106:1 5119:1 5122:1 5127:1 5144:1 5147:1 5163:9 5164:2 5177:1 5180:1 5203:2 5210:2 5218:1 5240:1 5241:1 5285:3 5287:1 5289:1 5300:3 5301:4 5302:2 5309:3 5316:1 5317:3 5326:1 5333:2 5335:5 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5636:1 5638:1 5649:1 5682:2 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5809:1 5811:1 5815:2 5818:1 5877:1 5903:1 5906:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:1 5982:1 5984:1 5990:1 5993:1 5998:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:2 6228:1 6236:1 6273:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:2 6389:1 6395:1 6398:1 6402:1 6408:2 6412:1 6429:1 6446:1 6453:1 6489:1 6490:2 6491:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6759:4 6762:1 6763:1 6764:1 6768:1 6769:1 6770:1 6774:2 6775:6 6782:1 6785:1 6805:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6904:1 6912:2 6916:3 6962:1 6977:1 6984:1 6990:1 6998:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7470:1 7518:1 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7654:1 7666:1 7675:1 7679:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:1 7756:1 7788:1 7815:1 7830:1 7836:1 7846:1 7847:5 7880:4 7882:1 7885:1 7917:1 7918:2 7956:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:7 8073:9 8078:1 8092:1 8095:5 8124:3 8128:1 8138:24 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:10 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:1 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:2 8349:1 8354:1 8359:1 8383:3 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:1 8633:1 8644:1 8659:1 8662:21 8669:1 8677:1 8681:1 8691:1 8693:9 8694:3 8709:1 8711:2 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:25 8788:1 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8980:1 8983:1 8989:1 8995:3 8996:1 9010:1 9017:1 9022:1 9047:3 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:2 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:1 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:4 9535:1 9545:1 9547:1 9566:1 9589:1 9610:3 9613:1 9632:1 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:1 9703:1 9714:1 9728:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:5 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:5 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10356:1 10357:1 10379:20 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10606:1 10614:1 10617:4 10633:2 10636:1 10648:1 10665:3 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10764:1 10766:5 10778:1 10811:1 10815:1 10843:1 10862:1 10868:1 10887:3 10899:1 10910:1 10923:1 10924:1 10931:1 10953:1 10958:1 10971:1 10972:3 10989:1 11013:1 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:2 11095:1 11107:1 11109:3 11125:1 11142:2 11174:2 11193:1 11195:2 11216:1 11217:4 11224:1 11226:2 11233:1 11240:1 11252:1 11266:1 11282:1 11289:5 11293:1 11300:1 11304:1 11315:1 11333:1 11350:1 11370:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:3 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:1 11843:1 11845:2 11852:1 11856:1 11858:1 11870:3 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11927:1 11940:2 11973:1 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:4 12185:1 12194:1 12204:1 12217:1 12220:1 12222:1 12229:1 12234:1 12236:3 12237:1 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12288:1 12290:1 12293:2 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12368:1 12369:1 12375:3 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12709:1 12717:1 12718:1 12719:1 12726:1 12750:1 12768:1 12769:1 12803:1 12816:1 12838:1 12849:1 12852:2 12855:3 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13178:1 13180:1 13211:1 13238:2 13240:21 13244:1 13251:1 13254:4 13263:1 13296:4 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13597:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:2 13844:2 13851:1 13891:1 13898:7 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:3 14071:1 14100:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:2 14215:1 14216:1 14218:1 14223:2 14224:1 14226:6 14227:1 14229:1 14231:1 14250:1 14254:1 14255:1 14259:4 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:8 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:3 14505:1 14507:1 14514:3 14516:1 14517:1 14528:6 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14723:1 14724:1 14727:1 14765:1 14769:1 14813:4 14875:1 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 14952:1 14953:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15173:1 15185:21 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15360:1 15365:1 15366:1 15392:1 15395:1 15405:1 15408:1 15439:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15627:1 15628:1 15631:6 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16067:1 16082:1 16083:2 16084:1 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:2 16310:3 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16457:1 16478:4 16480:1 16487:1 16505:1 16514:1 16516:3 16585:1 16600:1 16611:1 16616:1 16619:8 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:1 16694:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16862:1 16864:1 16874:1 16891:4 16892:1 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16946:1 16966:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17051:1 17070:1 17092:1 17097:1 17128:1 17137:1 17140:2 17146:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:28 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:1 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18294:1 18299:4 18304:2 18306:1 18319:1 18339:1 18351:2 18352:1 18379:1 18394:2 18398:2 18412:1 18415:1 18439:3 18448:4 18473:1 18488:1 18497:1 18500:1 18535:1 18552:4 18557:1 18559:1 18587:3 18611:2 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18804:1 18806:1 18827:1 18842:1 18848:3 18924:2 18928:1 18945:1 18953:1 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19065:2 19102:1 19104:2 19117:1 19119:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19227:1 19238:1507 19250:1 19261:2 19272:1 19291:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:4 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19976:1 20000:1 20009:1 20019:1 20032:4 20033:3 20063:1 20065:4 20096:2 20112:1 20127:13 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20210:1 20216:2 20229:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:2 20354:1 20394:1 20397:1 20424:1 20432:1 20435:1 20445:1 20464:1 20467:1 20474:1 20509:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:1 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:5 20677:1 20685:1 20694:1 20700:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20815:1 20831:1 20841:1 20851:1 20856:2 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21097:1 21136:4 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21268:1 21281:1 21282:1 21286:1 21306:1 21312:2 21341:1 21345:1 21350:1 21362:1 21372:2 21380:1 21386:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21552:1 21557:3 21571:1 21576:1 21580:2 21626:1 21643:1 21645:3 21648:1 21651:1 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21826:1 21840:1 21866:1 21871:1 21883:1 21885:1 21888:3 21900:1 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:2 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22093:1 22103:1 22104:1 22122:1 22149:1 22170:1 22180:2 22209:1 22231:3 22238:1 22251:1 22266:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:4 22388:1 22420:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:3 22663:1 22679:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22914:2 22933:1 22938:2 22947:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:8 23042:2 23048:1 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:1 23355:3 23366:2 23405:3 23413:1 23460:1 23467:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:20 23534:1 23537:2 23538:2 23545:1 23551:1 23572:2 23579:1 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23662:2 23672:2 23682:1 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:3 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:2 23917:1 23920:1 23956:21 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24409:1 24417:1 24428:1 24450:2 24458:2 24470:1 24476:1 24535:1 24558:2 24562:1 24567:1 24582:2 24585:1 24591:1 24600:1 24603:1 24614:1 24625:1 24636:1 24656:1 24701:1 24702:1 24705:1 24729:1 24753:1 24769:3 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24872:1 24875:2 24888:1 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25077:1 25080:1 25089:1 25097:1 25133:2 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25289:3 25291:1 25292:2 25300:1 25301:1 25309:3 25315:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:2 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25467:1 25469:1 25473:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25597:1 25615:1 25621:1 25623:1 25632:1 25657:1 25671:1 25674:1 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25874:1 25881:1 25883:2 25884:4 25903:1 25915:1 25918:2 25923:1 25949:1 25951:1 25955:1 25989:2 26001:1 26012:1 26019:1 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26090:1 26097:1 26103:1 26128:1 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:1 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:3 26416:1 26434:1 26437:8 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:1 26568:3 26575:1 26591:1 26594:1 26596:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26824:2 26834:1 26836:1 26843:1 26865:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:1 26940:1 26950:1 26963:1 26988:3 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27090:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:2 27219:1 27237:1 27250:1 27275:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:5 27536:2 27544:2 27546:1 27559:4 27570:1 27585:3 27593:1 27617:1 27627:4 27628:1 27631:2 27644:1 27645:1 27653:1 27662:1 27670:2 27681:3 27690:1 27693:1 27696:1 27708:1 27715:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27884:2 27901:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28011:1 28016:3 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:1 28149:1 28161:1 28162:3 28165:2 28169:2 28171:1 28177:1 28178:2 28180:1 28181:2 28186:2 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:6 28286:3 28314:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:1 28371:1 28390:1 28393:1 28423:1 28424:1 28438:1 28463:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28583:4 28586:1 28588:2 28590:1 28591:3 28596:1 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:1 28888:13 28895:1 28917:1 28927:5 28996:1 29014:1 29019:2 29037:1 29048:1 29050:1 29055:8 29061:2 29074:1 29077:1 29088:1 29089:1 29096:1 29105:7 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29332:25 29333:1 29335:1 29355:1 29357:3 29361:1 29367:3 29368:1 29402:1 29426:3 29430:7 29432:1 29440:1 29447:1 29450:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:1 29640:2 29650:1 29696:1 29706:1 29736:1 29739:1 29741:2 29749:1 29751:1 29753:1 29764:1 29796:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29882:1 29886:1 29899:1 29903:1 29916:1 29921:1 29940:2 29943:1 29946:2 29968:1 29971:2 29982:5 30003:2 30008:2 30009:2 30019:21 30048:1 30085:1 30087:1 30089:2 30094:2 30095:2 30107:1 30142:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:1 190:1 193:1 212:1 220:1 227:1 237:1 241:1 263:1 279:2 283:3 284:1 290:1 305:1 306:1 310:1 311:1 341:1 348:1 383:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 492:1 504:1 513:2 539:2 544:1 548:1 555:1 586:1 596:1 607:1 612:1 641:2 670:3 674:1 683:1 686:1 717:3 733:1 734:22 739:3 743:1 745:1 759:1 763:1 777:1 798:1 808:2 813:2 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 948:3 949:1 964:1 989:3 990:6 996:1 1007:5 1021:1 1026:3 1046:2 1051:3 1054:5 1058:1 1059:1 1066:1 1072:1 1074:2 1077:2 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1147:3 1149:1 1207:2 1209:1 1224:1 1265:1 1268:3 1295:1 1318:1 1320:21 1328:1 1331:2 1332:1 1334:1 1337:3 1341:1 1361:1 1363:2 1365:1 1371:1 1374:1 1377:1 1381:1 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1444:1 1460:1 1462:2 1482:1 1497:1 1499:1 1504:1 1511:2 1513:1 1531:1 1540:1 1555:1 1567:2 1580:2 1593:1 1617:1 1618:1 1620:2 1623:1 1627:6 1629:1 1660:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1745:1 1748:1 1749:1 1752:1 1760:1 1798:1 1799:1 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1979:1 1991:1 1994:1 1995:3 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:3 2147:1 2159:1 2161:1 2183:1 2199:1 2213:1 2230:1 2236:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:6 2359:1 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:1 2469:3 2472:2 2473:1 2475:1 2477:3 2482:3 2484:3 2486:4 2490:3 2494:1 2497:1 2499:1 2503:1 2505:2 2508:1 2513:1 2514:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2671:1 2672:4 2682:2 2690:1 2692:1 2700:1 2709:3 2726:1 2732:1 2746:1 2757:1 2771:1 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:1 2932:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:1 3049:1 3050:3 3056:1 3058:1 3069:2 3073:1 3099:2 3113:1 3122:1 3145:11 3149:22 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:3 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:2 3322:1 3350:2 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:2 3554:1 3560:1 3582:1 3587:1 3590:2 3612:2 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:1 3954:1 3957:2 3962:1 4010:2 4011:1 4048:1 4058:1 4064:2 4082:1 4088:1 4090:1 4097:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:21 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:2 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:2 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4582:1 4604:1 4613:2 4615:21 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:1 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:2 4937:1 4960:1 4965:3 4972:1 5002:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:2 5091:1 5093:2 5106:1 5119:1 5122:1 5127:1 5144:1 5147:1 5163:9 5164:2 5177:1 5180:1 5203:2 5210:2 5218:1 5240:1 5241:1 5285:3 5287:1 5289:1 5300:3 5301:4 5302:2 5309:4 5315:1 5316:1 5317:3 5326:1 5333:2 5335:5 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5636:1 5638:1 5649:1 5682:2 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5809:1 5811:1 5815:3 5818:1 5877:1 5903:1 5906:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:1 5982:1 5984:1 5990:1 5993:1 5998:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:2 6228:1 6236:1 6273:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:2 6389:1 6395:1 6398:1 6402:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6759:4 6762:1 6763:1 6764:1 6768:1 6769:1 6770:1 6774:2 6775:6 6782:1 6785:1 6805:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:1 6904:1 6912:3 6916:3 6962:1 6977:1 6984:1 6990:1 6998:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:1 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:1 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7470:1 7518:1 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7628:1 7654:1 7666:1 7675:1 7679:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7788:1 7815:1 7830:1 7836:1 7846:1 7847:5 7880:5 7882:1 7885:1 7917:1 7918:2 7956:1 7965:1 7967:1 7970:1 7994:3 7995:1 8027:1 8037:1 8055:1 8072:7 8073:9 8078:1 8092:1 8095:5 8124:3 8128:1 8138:28 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:11 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:2 8213:1 8249:3 8266:1 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:2 8349:1 8354:1 8359:1 8383:3 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:1 8633:1 8644:1 8659:1 8662:22 8669:1 8677:1 8681:1 8687:1 8691:1 8693:10 8694:3 8709:1 8711:2 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:26 8788:1 8830:1 8860:2 8880:1 8890:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:1 8980:1 8983:1 8989:1 8995:3 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9230:1 9273:1 9284:2 9285:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:4 9535:2 9545:1 9547:1 9566:1 9589:1 9610:3 9613:1 9632:1 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:1 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:5 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:5 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10331:1 10356:1 10357:1 10379:21 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10516:2 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10606:1 10614:2 10617:5 10633:2 10636:1 10648:1 10665:3 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10764:1 10766:5 10778:1 10811:1 10815:1 10843:1 10862:1 10868:1 10887:3 10899:1 10910:1 10921:1 10923:1 10924:1 10931:1 10953:1 10958:1 10971:1 10972:3 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:2 11095:1 11107:1 11109:3 11125:1 11142:2 11174:2 11193:1 11195:2 11216:1 11217:4 11224:1 11226:3 11233:1 11240:1 11252:1 11266:1 11282:1 11289:5 11293:1 11300:1 11304:1 11314:1 11315:1 11333:1 11350:1 11370:1 11396:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:3 11506:1 11515:1 11524:1 11526:1 11530:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11622:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:1 11843:1 11845:2 11852:1 11856:1 11858:1 11870:3 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11927:1 11940:2 11973:1 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:1 12141:2 12159:1 12163:4 12185:1 12194:1 12204:1 12217:1 12220:1 12222:1 12229:1 12234:1 12236:3 12237:1 12241:2 12245:3 12266:1 12269:1 12277:2 12284:1 12288:1 12290:1 12293:4 12297:1 12319:1 12325:1 12336:1 12359:1 12366:1 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12709:1 12717:1 12718:1 12719:2 12726:1 12750:1 12768:1 12769:1 12803:1 12816:1 12838:1 12849:1 12852:2 12855:3 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13178:1 13180:1 13211:1 13238:2 13240:22 13242:1 13244:1 13251:1 13254:4 13263:1 13296:4 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13585:1 13593:1 13597:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:2 13844:2 13851:1 13891:1 13898:7 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:1 14017:1 14051:1 14065:3 14067:3 14071:1 14100:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:2 14215:1 14216:1 14218:1 14223:2 14224:1 14226:6 14227:1 14229:1 14231:1 14250:1 14254:1 14255:1 14259:4 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:8 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:3 14505:1 14507:1 14514:3 14516:1 14517:1 14528:6 14531:3 14605:2 14615:1 14634:4 14708:1 14711:2 14723:1 14724:1 14727:1 14765:1 14769:1 14813:4 14875:1 14902:1 14905:1 14914:2 14920:2 14922:3 14940:1 14941:1 14952:1 14953:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15173:1 15185:22 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:3 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15360:1 15365:1 15366:1 15392:1 15395:1 15405:1 15408:1 15439:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15627:1 15628:1 15631:7 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:1 15764:1 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16051:1 16067:1 16082:1 16083:2 16084:2 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:2 16310:3 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16457:1 16478:4 16480:1 16487:1 16505:1 16514:1 16516:3 16585:1 16600:1 16611:1 16616:1 16619:8 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:1 16694:2 16702:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:2 16838:1 16855:1 16862:1 16864:1 16874:1 16891:4 16892:2 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16946:1 16966:2 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17070:1 17092:1 17097:1 17128:1 17137:1 17140:2 17146:1 17190:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17321:1 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:29 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:1 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18375:1 18379:1 18394:2 18398:2 18412:1 18415:1 18439:3 18448:4 18473:2 18488:1 18497:1 18500:1 18535:1 18552:4 18557:1 18559:1 18587:3 18611:2 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18672:1 18719:1 18731:1 18732:3 18738:1 18744:1 18773:1 18786:1 18804:1 18806:1 18827:1 18842:1 18848:3 18920:1 18924:2 18928:1 18945:1 18953:1 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19065:2 19102:1 19104:2 19117:1 19119:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19227:1 19238:1571 19250:1 19261:2 19272:1 19291:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:4 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19976:1 19992:1 20000:1 20009:1 20019:1 20032:4 20033:3 20063:1 20065:4 20096:2 20112:1 20127:13 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20205:3 20210:1 20216:2 20229:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:2 20354:1 20378:1 20394:1 20397:1 20424:1 20432:1 20435:1 20445:1 20449:1 20464:1 20467:1 20474:2 20509:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:5 20677:1 20685:1 20694:1 20700:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:2 20760:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20815:2 20831:1 20841:2 20851:1 20856:2 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21097:1 21136:4 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21268:1 21281:1 21282:1 21286:1 21306:1 21312:2 21341:1 21345:1 21350:1 21362:1 21372:2 21380:1 21386:2 21389:1 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21552:1 21557:3 21571:2 21576:1 21580:2 21626:1 21643:1 21645:3 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21823:1 21826:1 21840:1 21866:1 21871:1 21883:1 21885:1 21888:3 21900:1 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:2 22040:1 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22170:1 22180:2 22209:1 22231:3 22238:1 22251:1 22266:1 22269:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:4 22388:1 22420:1 22422:1 22429:3 22433:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:3 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22914:2 22933:1 22938:2 22947:1 22960:1 22983:1 22989:1 23007:1 23015:1 23019:1 23020:9 23039:1 23042:2 23048:1 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:1 23355:3 23366:2 23405:3 23413:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:21 23534:1 23537:2 23538:3 23543:1 23545:1 23551:1 23572:2 23579:1 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23662:2 23672:2 23682:1 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:3 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:1 23956:22 23966:1 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:1 24476:1 24498:1 24535:1 24558:2 24562:1 24567:1 24582:2 24585:1 24591:1 24600:1 24603:1 24614:1 24625:1 24636:1 24650:1 24656:1 24701:1 24702:1 24705:1 24729:2 24753:1 24769:3 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25077:1 25080:1 25089:1 25097:2 25133:2 25171:1 25185:1 25189:1 25192:2 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:3 25312:1 25315:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25467:1 25469:1 25473:1 25479:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:1 25623:1 25632:1 25657:1 25671:2 25674:2 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25881:1 25883:2 25884:4 25903:1 25915:1 25918:3 25923:1 25949:1 25951:1 25955:1 25989:2 26001:1 26012:1 26019:1 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26090:1 26097:1 26103:1 26128:1 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:1 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:1 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:3 26416:1 26434:1 26437:9 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:1 26568:3 26575:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26824:2 26834:1 26836:1 26843:1 26865:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:1 26940:1 26950:1 26963:1 26988:3 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27051:1 27090:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:2 27219:1 27237:1 27250:1 27275:1 27277:1 27300:1 27301:1 27318:2 27327:1 27339:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27544:2 27546:1 27559:4 27570:1 27585:3 27593:1 27595:1 27617:1 27627:4 27628:1 27631:2 27644:1 27645:1 27653:2 27662:1 27670:2 27681:3 27690:1 27693:1 27696:1 27708:1 27715:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27884:2 27901:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28011:1 28016:3 28020:1 28042:1 28044:1 28054:1 28067:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:1 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:6 28286:3 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:3 28596:1 28615:1 28652:1 28658:1 28662:1 28672:1 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28835:1 28838:1 28869:1 28872:1 28874:2 28888:13 28890:1 28895:1 28917:1 28927:5 28996:1 29014:1 29019:2 29037:1 29048:1 29050:1 29055:8 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:7 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29332:26 29333:1 29335:1 29355:1 29357:4 29361:1 29367:3 29368:2 29402:1 29426:3 29430:7 29432:1 29440:1 29447:1 29450:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:2 29640:2 29650:1 29696:1 29706:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29764:1 29796:1 29799:2 29802:1 29813:2 29833:2 29844:1 29853:1 29882:1 29886:1 29899:1 29903:1 29916:1 29921:1 29939:1 29940:2 29943:1 29946:2 29968:1 29971:2 29982:6 30003:2 30008:2 30009:2 30019:22 30048:1 30085:1 30087:1 30089:2 30094:2 30095:2 30107:1 30142:1 30147:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:1 190:1 193:1 212:1 220:1 227:2 237:1 241:1 263:1 279:2 283:3 284:1 290:1 305:1 306:1 310:1 311:1 341:1 348:1 383:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 492:1 504:1 513:2 539:2 544:1 548:1 555:1 578:1 586:1 596:1 607:1 612:1 641:2 670:3 674:2 683:1 686:1 717:3 733:1 734:23 739:3 743:1 745:1 759:1 763:1 777:1 798:1 808:2 813:2 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 948:3 949:1 964:1 989:3 990:6 996:1 1007:5 1021:1 1026:3 1034:1 1046:2 1051:3 1054:5 1058:1 1059:1 1066:1 1072:2 1074:2 1077:2 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:3 1149:1 1207:2 1209:1 1224:1 1265:1 1268:3 1295:1 1318:1 1320:22 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:1 1497:1 1499:1 1504:1 1511:2 1513:1 1531:1 1540:1 1555:1 1567:2 1580:2 1593:1 1598:1 1617:1 1618:1 1620:2 1623:1 1627:6 1629:1 1649:1 1653:1 1660:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1745:1 1748:1 1749:1 1752:1 1760:1 1788:1 1798:1 1799:1 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1979:1 1991:1 1994:1 1995:3 2000:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:3 2147:1 2159:2 2161:1 2183:1 2199:1 2213:1 2230:1 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:6 2359:1 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2472:2 2473:1 2475:1 2477:3 2482:4 2484:3 2486:4 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:1 2513:1 2514:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:2 2657:1 2671:2 2672:4 2682:3 2690:1 2692:1 2700:1 2709:3 2726:1 2732:1 2746:1 2757:1 2771:2 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:2 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:1 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:2 3049:1 3050:4 3056:1 3058:1 3069:2 3073:1 3099:2 3113:1 3122:2 3145:11 3149:23 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:2 3313:1 3322:1 3350:2 3374:1 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:3 3554:1 3560:1 3582:1 3587:1 3590:2 3612:2 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:1 3954:1 3957:2 3962:1 4010:2 4011:1 4048:1 4058:1 4064:2 4082:1 4088:1 4090:1 4097:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:22 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:2 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4582:1 4604:1 4613:2 4615:22 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:3 4937:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:2 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:1 5147:1 5163:11 5164:2 5177:1 5180:1 5203:2 5210:2 5218:1 5240:1 5241:1 5285:3 5287:1 5289:1 5300:3 5301:4 5302:2 5309:4 5315:1 5316:1 5317:3 5326:1 5333:2 5335:5 5338:2 5339:1 5346:1 5375:1 5410:1 5415:1 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5649:1 5682:2 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5809:1 5811:1 5815:3 5818:1 5877:1 5903:1 5906:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5982:1 5984:1 5990:1 5993:1 5998:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:3 6228:1 6236:1 6273:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:2 6389:1 6395:1 6398:1 6402:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6759:4 6761:1 6762:1 6763:1 6764:1 6768:1 6769:1 6770:1 6774:2 6775:6 6782:1 6785:1 6805:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:1 6904:1 6912:3 6916:3 6962:1 6977:1 6984:1 6990:1 6998:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:1 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:4 7470:1 7518:1 7520:1 7521:1 7525:1 7537:2 7548:2 7580:1 7588:1 7604:1 7623:2 7628:1 7654:1 7666:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7788:1 7815:1 7830:1 7836:1 7846:1 7847:5 7880:6 7882:1 7885:1 7917:1 7918:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:2 8072:8 8073:9 8078:1 8092:1 8095:5 8124:3 8128:1 8138:33 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:11 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:2 8213:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:4 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8633:1 8644:1 8659:1 8662:23 8669:1 8677:1 8681:1 8687:1 8691:1 8693:10 8694:3 8709:1 8711:2 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:27 8788:1 8830:1 8860:2 8880:1 8890:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:1 8980:1 8983:1 8989:1 8994:1 8995:3 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9225:1 9230:1 9273:1 9284:3 9285:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9490:1 9519:1 9523:4 9535:2 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:2 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9841:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9978:1 9991:1 9992:1 10003:2 10004:5 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:2 10169:1 10174:1 10180:1 10181:1 10217:1 10241:5 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:22 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10516:3 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10606:1 10614:2 10617:5 10633:2 10636:1 10648:1 10665:3 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:5 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10868:1 10887:3 10899:1 10910:2 10921:1 10923:1 10924:1 10931:1 10953:1 10958:1 10971:1 10972:3 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:3 11095:1 11107:1 11109:4 11125:1 11142:2 11174:2 11193:1 11195:2 11216:1 11217:4 11224:1 11226:3 11233:1 11240:1 11252:1 11266:1 11282:1 11289:5 11293:1 11300:1 11304:1 11314:1 11315:1 11333:1 11350:1 11370:1 11396:1 11423:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11498:3 11506:1 11515:1 11524:1 11526:1 11530:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11622:1 11632:4 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:1 11843:1 11845:2 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11927:1 11940:2 11973:1 11985:1 11989:1 11992:1 11996:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:4 12185:1 12194:1 12204:2 12217:1 12220:1 12222:1 12229:1 12234:1 12236:4 12237:1 12241:2 12245:4 12266:1 12269:1 12277:2 12284:1 12288:1 12290:1 12293:4 12297:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12709:1 12717:1 12718:1 12719:2 12726:1 12750:1 12762:1 12768:1 12769:1 12803:1 12816:1 12838:1 12849:1 12852:2 12855:3 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13178:1 13180:1 13211:1 13238:2 13240:23 13242:1 13244:1 13251:1 13254:4 13263:1 13296:5 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13597:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13821:1 13827:1 13830:2 13833:2 13836:3 13844:3 13851:1 13891:1 13898:8 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:3 14071:1 14094:1 14100:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:2 14215:1 14216:1 14218:1 14223:2 14224:1 14226:6 14227:1 14229:1 14231:1 14249:1 14250:1 14251:1 14254:1 14255:1 14259:4 14264:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:9 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:7 14531:3 14605:2 14615:1 14634:4 14635:1 14708:1 14711:2 14723:1 14724:1 14727:1 14757:1 14765:1 14769:1 14813:4 14875:1 14880:1 14902:1 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:1 15002:1 15017:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15173:1 15185:23 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:4 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15439:1 15441:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15627:1 15628:1 15631:7 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:2 15764:3 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16051:1 16067:1 16082:1 16083:2 16084:2 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:2 16303:1 16310:3 16325:1 16329:1 16341:3 16346:2 16351:1 16363:2 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16457:1 16478:4 16480:1 16487:1 16505:1 16514:1 16516:3 16524:1 16585:1 16588:1 16600:1 16611:1 16616:1 16619:9 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:1 16694:2 16702:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:3 16838:1 16855:1 16862:1 16864:1 16874:1 16891:4 16892:2 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16946:1 16966:2 16984:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17092:1 17097:1 17128:1 17137:1 17140:2 17146:1 17190:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17321:1 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:30 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18063:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18367:1 18375:1 18379:1 18394:2 18398:2 18412:2 18415:1 18439:4 18448:4 18473:2 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18672:1 18719:1 18731:1 18732:4 18738:1 18744:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18848:3 18920:1 18924:2 18928:1 18945:1 18953:1 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19065:2 19102:1 19104:3 19117:1 19119:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19227:1 19238:1637 19250:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19420:1 19430:1 19438:1 19450:1 19564:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:4 19858:3 19863:1 19871:1 19914:1 19916:1 19927:1 19939:1 19965:1 19968:1 19976:1 19992:1 20000:1 20009:1 20019:1 20032:5 20033:3 20063:1 20065:4 20096:2 20112:1 20127:13 20137:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:3 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20318:1 20328:2 20332:1 20353:2 20354:1 20378:1 20394:1 20397:1 20424:1 20432:1 20435:1 20445:1 20449:1 20464:1 20467:1 20474:2 20509:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:5 20677:1 20685:1 20694:1 20700:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:2 20760:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20815:2 20831:1 20841:2 20851:1 20856:2 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21097:1 21136:4 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21268:1 21281:1 21282:1 21286:1 21306:1 21312:2 21341:1 21345:1 21350:1 21362:1 21372:2 21380:1 21386:2 21388:1 21389:1 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21552:1 21557:3 21558:1 21571:2 21576:1 21580:3 21626:1 21643:1 21645:3 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21802:1 21812:1 21823:1 21826:1 21838:1 21840:1 21855:1 21866:1 21871:1 21883:1 21885:1 21888:3 21900:1 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21988:1 22002:1 22006:1 22007:1 22009:3 22040:1 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22170:1 22180:2 22208:1 22209:1 22231:3 22238:1 22251:1 22266:1 22269:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:5 22388:1 22420:1 22422:1 22429:3 22433:1 22437:1 22438:3 22442:1 22453:2 22467:1 22477:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:1 22652:1 22655:1 22657:1 22661:2 22662:3 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22904:1 22914:2 22933:1 22938:2 22947:1 22960:1 22983:1 22989:2 23007:1 23015:1 23019:1 23020:11 23039:1 23042:2 23048:1 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23159:1 23196:1 23200:1 23207:7 23225:1 23244:2 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:3 23366:2 23386:1 23405:3 23413:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:22 23534:1 23537:2 23538:3 23543:1 23545:1 23551:1 23572:2 23579:2 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:3 23672:2 23682:1 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:1 23956:23 23966:1 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:1 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24582:2 24585:1 24591:1 24600:1 24603:1 24614:1 24625:1 24636:1 24650:1 24656:1 24684:1 24701:1 24702:1 24705:1 24729:2 24753:1 24764:1 24769:3 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25077:1 25080:1 25089:1 25097:2 25133:2 25171:1 25185:1 25189:1 25192:2 25197:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:3 25312:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:1 25623:1 25632:1 25657:1 25671:2 25674:2 25675:2 25678:1 25690:2 25712:1 25729:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25881:1 25882:1 25883:2 25884:4 25903:1 25915:3 25918:3 25923:1 25949:1 25951:1 25955:1 25989:2 26001:2 26012:1 26019:1 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26128:3 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:2 26333:1 26347:2 26362:2 26373:1 26377:3 26406:1 26408:4 26416:1 26434:1 26437:11 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:1 26568:3 26575:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26824:2 26834:1 26836:1 26843:1 26865:1 26866:1 26872:1 26873:3 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:1 26940:1 26950:1 26963:1 26988:4 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27042:1 27051:1 27090:1 27099:2 27141:2 27158:1 27162:1 27168:1 27172:1 27174:1 27215:2 27219:1 27237:1 27250:1 27275:1 27277:1 27300:1 27301:1 27318:2 27327:1 27330:1 27339:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27544:2 27546:1 27559:4 27570:1 27585:3 27593:1 27595:1 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27653:2 27662:1 27670:3 27681:3 27690:1 27693:1 27696:1 27708:1 27715:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27882:1 27884:2 27901:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:3 28020:1 28042:1 28044:1 28054:1 28067:1 28090:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:1 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:1 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:6 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28538:1 28559:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:4 28596:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28835:1 28838:1 28869:1 28872:1 28874:2 28888:13 28890:1 28895:1 28917:2 28927:5 28996:1 29014:1 29019:2 29037:1 29048:1 29050:1 29055:8 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:9 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29226:1 29237:2 29296:1 29316:1 29328:1 29332:27 29333:1 29335:1 29355:1 29357:4 29361:1 29367:4 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:2 29640:2 29650:1 29696:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29764:1 29796:1 29799:2 29802:1 29813:2 29833:2 29843:1 29844:1 29853:1 29871:1 29882:1 29886:1 29894:1 29899:1 29903:1 29916:1 29921:1 29939:1 29940:2 29943:1 29946:2 29968:1 29971:2 29982:6 30003:2 30008:2 30009:2 30019:23 30026:1 30048:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30142:1 30147:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:2 190:1 193:1 212:1 220:1 227:2 237:1 241:1 263:1 279:2 283:3 284:1 290:1 305:1 306:1 310:1 311:1 341:1 348:1 383:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 492:1 504:1 513:2 539:2 544:1 548:1 555:1 578:1 586:1 596:1 607:1 612:1 641:2 670:3 674:2 683:1 686:1 717:3 733:1 734:24 739:3 743:1 745:1 759:1 763:1 777:1 798:1 808:2 813:2 822:1 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:1 948:3 949:1 964:1 989:3 990:6 995:1 996:1 1007:5 1021:1 1026:3 1034:1 1046:2 1051:3 1054:5 1058:1 1059:2 1066:1 1072:2 1074:2 1077:2 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:3 1149:1 1207:2 1209:1 1224:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:23 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:1 1497:1 1499:1 1504:1 1511:2 1513:1 1531:1 1540:1 1555:1 1567:2 1580:2 1593:1 1598:1 1617:1 1618:1 1620:2 1623:1 1627:6 1629:1 1646:1 1649:1 1653:1 1660:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1733:1 1745:1 1748:1 1749:1 1752:1 1760:1 1788:1 1794:1 1798:1 1799:1 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1979:1 1991:1 1994:1 1995:3 2000:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2054:1 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:3 2147:1 2159:2 2161:1 2183:1 2199:1 2213:1 2229:1 2230:1 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:7 2359:1 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2472:2 2473:1 2475:1 2477:4 2482:4 2484:3 2486:5 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:1 2513:1 2514:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2649:1 2650:3 2657:1 2671:2 2672:4 2682:3 2690:1 2692:1 2700:1 2709:3 2726:1 2732:1 2746:1 2757:1 2771:2 2779:1 2810:2 2827:1 2828:1 2840:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:2 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:2 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:2 3049:1 3050:4 3056:1 3058:1 3069:2 3073:1 3099:2 3113:1 3122:2 3145:12 3149:24 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:5 3230:2 3234:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:2 3313:1 3322:1 3350:2 3374:1 3447:1 3467:1 3487:1 3492:1 3509:1 3534:1 3544:1 3547:3 3554:1 3560:1 3582:1 3587:1 3590:2 3612:2 3666:1 3672:1 3690:1 3695:1 3717:1 3720:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:1 3954:1 3957:2 3962:1 4010:2 4011:1 4048:1 4058:1 4064:2 4082:1 4088:1 4090:1 4097:2 4121:1 4122:1 4129:3 4149:1 4170:1 4175:23 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:2 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:23 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4767:3 4781:1 4782:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:3 4937:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:2 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:1 5147:1 5163:11 5164:2 5177:1 5180:1 5203:2 5210:2 5218:1 5240:1 5241:1 5285:3 5287:1 5289:1 5300:3 5301:4 5302:2 5309:4 5315:1 5316:2 5317:3 5326:1 5333:2 5335:5 5338:2 5339:1 5346:1 5375:1 5410:1 5415:2 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5649:1 5682:2 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5809:1 5811:1 5815:3 5818:1 5877:1 5903:1 5906:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5982:1 5984:1 5990:1 5991:1 5993:1 5998:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:3 6228:1 6236:1 6273:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6386:2 6389:1 6395:1 6398:1 6402:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6759:4 6761:1 6762:1 6763:1 6764:1 6768:1 6769:1 6770:1 6774:2 6775:6 6782:1 6785:1 6805:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:1 6904:1 6912:3 6916:3 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:5 7470:1 7518:1 7520:1 7521:1 7525:1 7537:2 7548:2 7572:1 7580:1 7588:1 7604:1 7623:2 7628:1 7654:1 7661:1 7666:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7788:1 7815:1 7830:1 7836:1 7846:1 7847:5 7880:6 7882:1 7885:1 7917:1 7918:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:2 8072:8 8073:9 8078:1 8092:1 8093:1 8095:5 8124:3 8128:1 8138:35 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:12 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:2 8213:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:2 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:4 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8633:1 8644:1 8659:1 8662:24 8669:1 8677:1 8681:1 8687:1 8691:1 8693:10 8694:3 8709:1 8711:2 8727:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:28 8788:1 8830:1 8854:1 8860:2 8880:1 8890:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8983:1 8989:1 8994:1 8995:3 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9225:1 9230:1 9273:1 9284:3 9285:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9490:1 9492:1 9519:1 9523:5 9535:2 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:2 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9841:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9977:1 9978:1 9991:1 9992:1 10003:2 10004:6 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:2 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:23 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10516:3 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10606:1 10614:2 10617:5 10633:2 10636:1 10648:1 10665:3 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:5 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10868:1 10887:3 10899:1 10910:2 10921:1 10923:1 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:3 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:3 11095:1 11107:1 11109:4 11125:1 11142:2 11174:2 11193:1 11195:2 11216:1 11217:4 11224:1 11226:3 11233:1 11240:1 11252:1 11266:1 11274:1 11282:1 11289:5 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:1 11350:1 11370:1 11396:1 11423:1 11424:1 11437:1 11439:1 11448:2 11464:2 11469:3 11471:1 11482:1 11487:1 11498:3 11506:1 11515:1 11524:1 11526:1 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11622:1 11632:5 11636:1 11641:1 11642:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:1 11843:1 11845:2 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11927:1 11940:2 11961:1 11973:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:5 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:5 12185:1 12194:1 12204:2 12217:1 12220:1 12222:1 12229:1 12234:1 12236:4 12237:1 12241:2 12243:1 12245:4 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:5 12297:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12709:1 12717:1 12718:1 12719:2 12726:1 12750:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:1 12852:2 12855:3 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:2 13240:24 13242:1 13244:1 13251:1 13254:4 13263:1 13296:5 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13497:1 13509:1 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13597:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:7 13699:1 13700:1 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:3 13844:3 13851:1 13891:1 13898:9 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:3 14071:1 14094:1 14100:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:2 14215:1 14216:1 14218:1 14223:2 14224:1 14226:7 14227:1 14229:1 14231:1 14249:1 14250:1 14251:1 14254:1 14255:1 14259:4 14264:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:9 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:8 14531:3 14605:2 14615:1 14634:4 14635:1 14708:1 14711:2 14723:1 14724:1 14727:1 14757:1 14765:1 14769:1 14813:4 14875:1 14880:1 14902:1 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:1 15002:1 15017:1 15022:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15173:1 15185:24 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:4 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15439:1 15441:1 15443:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15627:1 15628:1 15631:7 15636:1 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:2 15764:3 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16044:1 16051:1 16067:1 16082:1 16083:2 16084:2 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:2 16303:1 16310:3 16324:1 16325:1 16329:1 16341:3 16346:2 16351:1 16363:3 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16457:1 16478:4 16480:1 16487:1 16498:1 16505:1 16514:1 16516:3 16524:1 16585:1 16588:1 16600:1 16611:1 16616:1 16619:10 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:1 16694:2 16702:2 16703:1 16705:1 16706:2 16731:8 16746:1 16759:1 16760:1 16777:3 16838:1 16855:1 16862:1 16864:1 16874:1 16891:4 16892:2 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16946:1 16966:2 16984:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17092:1 17097:1 17128:1 17137:1 17140:2 17146:1 17190:1 17213:1 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17321:1 17330:1 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17494:1 17507:1 17508:1 17536:31 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18063:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18367:1 18375:1 18379:1 18394:2 18398:2 18412:2 18415:1 18439:4 18448:4 18473:2 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18719:1 18731:1 18732:4 18738:1 18739:1 18744:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18848:3 18920:1 18924:2 18928:1 18945:1 18953:1 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:3 19117:1 19119:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19224:1 19227:1 19238:1706 19250:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19420:1 19430:1 19438:1 19450:1 19500:1 19564:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:4 19858:3 19863:1 19871:1 19879:1 19914:1 19916:1 19927:1 19939:1 19965:1 19968:1 19976:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:3 20063:1 20065:4 20096:2 20111:1 20112:1 20127:14 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:3 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20328:2 20332:1 20346:1 20353:2 20354:1 20378:1 20394:1 20397:1 20424:1 20432:1 20435:1 20445:1 20449:1 20464:1 20467:1 20474:2 20509:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:5 20677:1 20685:1 20694:1 20700:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:3 20760:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20815:2 20831:2 20841:2 20851:1 20856:3 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:3 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:1 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:1 21286:1 21306:1 21312:2 21341:1 21345:1 21350:1 21362:1 21372:2 21380:1 21386:2 21388:1 21389:1 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21552:1 21557:3 21558:1 21571:2 21576:1 21580:3 21626:1 21643:1 21645:3 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21772:1 21802:1 21812:1 21823:1 21826:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:3 21900:2 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 22002:1 22003:1 22006:1 22007:1 22009:3 22040:1 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22170:1 22180:2 22189:1 22208:1 22209:1 22231:3 22238:1 22251:1 22266:1 22269:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:5 22388:1 22420:1 22422:1 22429:3 22433:1 22437:1 22438:3 22442:1 22453:2 22467:1 22477:1 22493:1 22494:6 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:1 22652:1 22655:1 22657:1 22661:4 22662:3 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:1 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22904:1 22914:2 22927:1 22933:1 22938:2 22947:1 22960:1 22983:1 22989:2 23007:1 23015:1 23019:1 23020:11 23039:1 23042:2 23048:1 23079:1 23084:8 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23156:2 23159:1 23196:1 23200:1 23207:7 23225:1 23244:3 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:3 23366:2 23386:1 23405:3 23413:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:23 23534:1 23537:2 23538:3 23543:1 23545:1 23551:1 23572:2 23579:2 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:3 23672:2 23682:2 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:1 23956:24 23966:1 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:1 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24582:2 24585:1 24591:1 24600:1 24603:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25038:1 25077:1 25080:1 25089:1 25097:2 25125:1 25133:2 25171:1 25185:1 25189:1 25192:2 25197:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:3 25312:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:2 25623:1 25632:1 25657:1 25671:2 25674:2 25675:2 25678:1 25690:2 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25881:1 25882:1 25883:2 25884:5 25903:1 25915:3 25918:3 25923:1 25949:2 25951:1 25955:1 25989:2 26001:2 26012:1 26019:1 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26128:3 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:2 26333:1 26347:2 26362:2 26373:2 26377:3 26406:1 26408:4 26416:1 26428:1 26434:1 26437:11 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26575:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26679:1 26696:1 26711:1 26721:1 26727:2 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26824:2 26834:1 26836:1 26843:1 26865:1 26866:1 26872:1 26873:4 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:2 26940:1 26950:1 26952:1 26963:1 26988:4 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27031:1 27042:1 27051:1 27090:1 27099:2 27141:3 27158:1 27162:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27275:1 27277:2 27300:1 27301:1 27318:2 27327:1 27330:1 27339:1 27361:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27544:2 27546:1 27559:4 27570:1 27585:3 27593:1 27595:2 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:1 27693:1 27696:1 27708:1 27715:1 27740:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:3 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27882:1 27884:2 27901:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:3 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28090:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:2 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:4 28592:1 28596:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28835:1 28838:1 28866:1 28869:1 28872:1 28874:2 28888:13 28890:1 28892:1 28895:1 28917:2 28927:6 28996:1 29014:1 29019:2 29037:1 29048:1 29050:1 29055:8 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:9 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29296:1 29316:1 29328:1 29332:28 29333:1 29335:1 29355:1 29357:4 29361:1 29367:4 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:2 29640:2 29650:1 29696:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29764:1 29796:1 29799:2 29802:1 29813:2 29833:2 29843:1 29844:1 29853:1 29871:1 29882:1 29886:1 29894:1 29899:1 29903:1 29916:1 29921:1 29939:1 29940:2 29943:1 29946:2 29968:1 29971:2 29982:6 30003:2 30008:2 30009:2 30019:24 30026:1 30048:1 30068:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30142:2 30147:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:2 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:1 183:2 190:1 193:1 212:1 220:1 227:2 237:1 241:1 263:2 279:2 283:3 284:1 290:1 305:1 306:1 310:1 311:1 341:1 348:1 383:1 386:3 402:1 413:1 420:1 424:1 442:2 445:1 457:1 462:1 477:1 482:1 492:1 504:1 513:2 539:2 544:1 548:1 555:1 578:1 586:1 596:1 607:1 612:1 641:2 670:3 674:2 683:1 686:1 717:3 733:1 734:25 739:3 743:1 745:1 759:1 763:1 777:1 798:1 808:2 813:2 822:1 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:2 948:3 949:1 964:1 989:3 990:6 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:5 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:3 1149:1 1207:2 1209:1 1224:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:24 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:2 1497:1 1499:1 1504:1 1511:2 1513:1 1531:1 1540:1 1555:1 1567:2 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:2 1623:1 1627:6 1629:1 1646:1 1649:1 1653:1 1660:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1733:1 1745:1 1748:1 1749:1 1752:1 1760:2 1788:1 1794:1 1798:1 1799:1 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2054:1 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:4 2147:1 2159:2 2161:1 2183:1 2199:1 2213:1 2229:1 2230:1 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2472:2 2473:1 2475:1 2477:4 2482:6 2484:3 2486:5 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:2 2513:1 2514:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2598:2 2603:1 2604:1 2631:1 2632:1 2647:1 2649:2 2650:3 2657:2 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:1 2779:1 2810:2 2827:1 2828:1 2840:1 2848:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:2 2924:1 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:2 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:2 3049:1 3050:4 3056:1 3058:2 3069:2 3073:1 3099:2 3113:1 3122:2 3145:12 3149:25 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:6 3230:2 3234:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:3 3313:1 3322:1 3350:2 3374:1 3447:1 3467:1 3487:1 3492:1 3509:1 3532:1 3534:1 3544:1 3547:3 3554:1 3560:1 3582:1 3587:1 3590:2 3612:2 3666:1 3672:1 3690:1 3695:1 3709:1 3717:1 3720:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:1 3954:1 3957:2 3962:1 4010:2 4011:1 4048:1 4058:1 4064:2 4082:1 4088:1 4090:1 4097:2 4121:1 4122:1 4129:3 4149:1 4170:1 4175:24 4176:2 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:2 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:24 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4767:3 4781:1 4782:2 4789:1 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:3 4937:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:2 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:1 5163:12 5164:2 5177:1 5180:1 5203:3 5210:2 5218:1 5240:1 5241:1 5285:3 5287:1 5289:2 5300:4 5301:4 5302:2 5309:5 5315:1 5316:2 5317:3 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5649:1 5682:3 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:1 5809:1 5811:1 5815:3 5818:1 5877:1 5903:1 5906:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5982:1 5984:1 5990:1 5991:1 5993:1 5998:1 6000:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:1 6171:3 6228:1 6236:1 6273:1 6274:1 6276:1 6285:1 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6377:1 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:1 6768:1 6769:1 6770:1 6774:3 6775:6 6782:1 6785:1 6805:1 6821:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:1 6904:1 6912:3 6916:3 6933:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:5 7470:1 7518:1 7520:1 7521:1 7525:1 7537:2 7548:2 7572:1 7580:1 7588:1 7604:1 7623:2 7628:1 7654:1 7661:1 7666:1 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7788:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:6 7882:1 7885:1 7917:1 7918:2 7942:1 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:2 8072:9 8073:9 8078:1 8092:1 8093:1 8095:5 8124:3 8128:2 8132:1 8138:38 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:12 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8204:2 8213:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8630:1 8633:1 8644:1 8659:1 8662:25 8669:1 8677:1 8681:1 8687:1 8691:1 8693:10 8694:3 8709:1 8711:2 8727:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:29 8788:1 8819:1 8830:1 8854:1 8860:2 8880:1 8890:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8983:1 8989:1 8994:1 8995:3 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9225:1 9230:1 9273:1 9284:3 9285:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9486:2 9490:1 9492:1 9496:1 9519:1 9523:5 9535:3 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:2 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9784:2 9794:4 9800:2 9808:2 9823:1 9825:1 9841:1 9845:1 9860:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9977:1 9978:1 9991:1 9992:1 10003:2 10004:7 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:2 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:24 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10516:3 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10599:1 10606:1 10614:3 10617:5 10633:2 10636:1 10648:1 10665:3 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:5 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:4 10899:1 10910:2 10921:1 10923:1 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:4 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:3 11095:1 11107:1 11109:4 11125:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:1 11226:3 11233:1 11240:1 11252:1 11266:1 11274:1 11282:1 11289:5 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:1 11350:1 11370:1 11396:1 11423:1 11424:1 11437:1 11439:1 11448:2 11450:1 11464:2 11469:3 11471:1 11482:1 11487:1 11498:3 11506:1 11515:1 11524:1 11526:1 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11622:1 11632:5 11636:1 11641:1 11642:1 11643:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:2 11843:1 11844:1 11845:2 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11903:1 11927:1 11940:2 11961:1 11973:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:6 12035:2 12036:1 12064:1 12071:1 12091:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:5 12185:1 12194:1 12204:2 12217:1 12220:1 12222:1 12229:1 12234:1 12236:5 12237:1 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:5 12297:1 12298:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:1 12556:1 12594:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12700:1 12709:1 12717:1 12718:1 12719:2 12726:1 12750:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:1 12852:2 12855:4 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:2 13240:25 13242:1 13244:1 13251:1 13254:4 13263:1 13296:5 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13597:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:8 13699:1 13700:1 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:3 13844:3 13851:1 13891:1 13898:10 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:3 14071:2 14094:1 14100:1 14103:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:2 14215:2 14216:1 14218:1 14223:2 14224:1 14226:8 14227:1 14229:1 14231:2 14249:1 14250:1 14251:1 14254:1 14255:1 14259:5 14264:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14452:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:9 14531:4 14605:2 14615:1 14634:4 14635:1 14708:1 14711:2 14723:1 14724:1 14727:1 14757:2 14765:1 14769:1 14813:4 14875:1 14880:1 14902:1 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:1 15002:1 15017:1 15022:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15173:1 15185:25 15193:2 15196:1 15197:1 15202:1 15210:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15439:1 15441:1 15443:1 15485:1 15505:1 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15626:1 15627:1 15628:1 15631:7 15636:1 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15762:2 15764:3 15773:1 15774:1 15782:1 15793:1 15821:1 15831:1 15848:2 15891:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16028:1 16044:1 16051:1 16067:1 16082:1 16083:2 16084:2 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16259:1 16273:1 16285:2 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:2 16351:1 16363:3 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16455:2 16457:1 16478:4 16480:1 16487:1 16498:1 16505:1 16514:1 16516:3 16524:1 16585:1 16588:1 16600:1 16611:1 16616:1 16619:11 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:2 16694:2 16702:2 16703:1 16705:1 16706:2 16731:9 16746:1 16759:1 16760:1 16777:3 16838:1 16855:1 16862:1 16864:1 16874:1 16891:4 16892:2 16897:3 16898:1 16905:1 16906:1 16907:1 16910:1 16929:1 16946:1 16966:2 16984:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:1 17092:1 17097:1 17128:1 17137:1 17140:2 17146:1 17190:1 17213:2 17224:1 17237:2 17252:1 17256:1 17257:1 17260:1 17291:1 17294:1 17296:1 17302:1 17321:1 17330:1 17335:1 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17536:32 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17586:3 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17722:1 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18028:1 18033:1 18036:1 18037:1 18049:1 18051:1 18063:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18367:1 18375:1 18379:1 18394:2 18398:2 18412:2 18415:2 18439:4 18448:4 18473:2 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:1 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18719:1 18731:1 18732:4 18738:1 18739:1 18744:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18848:3 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18995:1 19024:5 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19224:1 19227:1 19238:1773 19250:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19564:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19726:1 19749:1 19757:2 19759:2 19773:1 19778:1 19821:1 19826:4 19858:3 19863:1 19871:1 19879:1 19914:1 19916:1 19927:1 19939:1 19965:1 19968:1 19976:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:3 20063:1 20065:4 20096:2 20111:1 20112:1 20127:14 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20328:2 20332:1 20346:1 20353:2 20354:1 20378:1 20394:1 20397:1 20424:1 20432:1 20435:1 20445:1 20449:1 20464:1 20467:1 20474:4 20509:1 20530:1 20554:1 20559:1 20560:1 20562:1 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:5 20677:1 20685:1 20694:1 20700:1 20710:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:3 20760:1 20769:2 20770:3 20774:1 20783:1 20784:1 20791:4 20815:2 20831:2 20835:1 20841:2 20851:1 20856:3 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:4 20958:2 20972:1 20977:1 20978:1 20982:1 21018:1 21039:1 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21341:1 21345:1 21350:1 21362:1 21372:2 21373:1 21380:1 21386:2 21388:1 21389:1 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:1 21503:1 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:1 21552:1 21557:3 21558:2 21571:2 21576:1 21580:3 21626:1 21643:1 21645:4 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:1 21763:1 21772:1 21802:1 21812:1 21823:1 21826:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:3 21900:2 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 22002:1 22003:1 22006:1 22007:1 22009:3 22033:1 22040:1 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22170:1 22180:3 22189:1 22208:1 22209:1 22231:3 22238:1 22251:1 22266:1 22269:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:5 22388:1 22419:1 22420:1 22422:1 22429:4 22433:1 22437:1 22438:3 22442:1 22453:2 22467:1 22477:1 22493:1 22494:7 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:1 22652:1 22655:1 22657:1 22661:4 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22904:1 22914:3 22927:1 22933:1 22938:2 22947:1 22953:1 22960:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:11 23039:1 23042:2 23048:1 23079:1 23084:9 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23156:2 23159:1 23196:1 23200:1 23207:7 23225:1 23244:3 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:4 23366:2 23386:1 23405:3 23413:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:24 23534:1 23537:2 23538:3 23543:1 23545:1 23551:1 23572:2 23579:2 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:3 23672:2 23682:2 23691:4 23695:1 23714:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:1 23956:25 23966:1 23975:2 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24582:2 24585:1 24591:1 24600:1 24603:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:1 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25038:1 25077:1 25080:1 25089:1 25097:3 25125:1 25133:2 25171:1 25185:1 25189:1 25192:2 25197:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:3 25312:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25632:1 25657:1 25671:3 25674:2 25675:2 25678:1 25690:2 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:5 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25989:2 26001:2 26012:1 26019:1 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:3 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:1 26312:2 26322:3 26325:2 26333:1 26347:2 26362:2 26373:2 26377:3 26406:1 26408:4 26416:1 26428:1 26434:1 26437:11 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26575:1 26590:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26727:2 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26824:2 26834:1 26836:1 26843:1 26845:1 26865:1 26866:1 26872:1 26873:4 26876:1 26885:2 26900:2 26901:1 26905:7 26906:1 26926:2 26940:1 26950:1 26952:1 26963:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27051:1 27090:1 27099:2 27125:1 27141:3 27158:1 27162:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27275:1 27277:2 27300:1 27301:1 27318:2 27327:1 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:1 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:1 27780:1 27783:1 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:4 27832:2 27841:1 27842:1 27843:1 27854:2 27872:1 27882:1 27884:2 27901:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:5 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28090:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:2 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:4 28592:1 28596:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28835:1 28838:1 28847:1 28866:1 28869:1 28872:1 28874:2 28888:13 28890:1 28892:1 28895:1 28917:2 28927:6 28964:1 28996:1 29014:1 29019:2 29037:1 29048:1 29050:1 29051:1 29055:8 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:10 29114:1 29148:1 29156:1 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29296:1 29316:1 29328:1 29332:29 29333:1 29335:1 29355:1 29357:4 29361:1 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29583:1 29587:1 29598:1 29612:1 29622:3 29640:2 29650:1 29696:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29764:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29843:1 29844:1 29853:1 29871:1 29882:1 29886:1 29894:1 29899:1 29903:1 29916:1 29921:1 29929:1 29939:1 29940:2 29943:1 29946:3 29968:1 29971:2 29982:6 30003:3 30008:2 30009:2 30019:25 30026:1 30048:1 30068:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30131:1 30142:2 30147:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 59:1 64:1 85:1 96:3 97:2 98:1 108:1 126:1 150:2 162:1 174:1 179:2 183:2 190:1 193:1 206:1 212:1 220:1 227:2 237:1 241:1 263:2 279:2 283:3 284:1 290:1 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:3 402:1 413:1 417:1 420:1 424:1 442:2 445:1 457:2 462:1 473:1 477:1 482:1 492:1 500:1 504:1 513:2 539:2 544:1 548:1 555:1 578:1 586:1 596:1 607:1 612:1 641:2 670:3 674:2 683:1 686:1 717:4 733:1 734:26 739:3 743:1 745:1 759:1 763:1 777:1 798:1 805:1 808:2 813:2 822:1 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:2 948:3 949:1 964:2 989:3 990:6 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:6 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:3 1149:1 1207:2 1209:1 1224:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:25 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:2 1497:1 1499:1 1504:1 1511:2 1513:3 1531:1 1540:1 1555:1 1567:2 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:2 1623:1 1627:6 1629:1 1646:1 1649:1 1653:1 1660:1 1661:1 1663:1 1692:2 1700:1 1714:1 1715:1 1719:2 1732:1 1733:1 1745:1 1748:1 1749:1 1752:1 1760:2 1788:1 1794:1 1798:1 1799:3 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2097:1 2108:1 2109:1 2128:4 2147:1 2159:2 2161:1 2183:1 2191:1 2199:1 2213:1 2229:1 2230:2 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:1 2472:2 2473:1 2475:1 2477:5 2482:6 2484:3 2486:5 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:2 2513:1 2514:1 2517:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2571:1 2577:1 2598:2 2603:1 2604:1 2631:1 2632:1 2647:1 2649:2 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2810:2 2827:1 2828:1 2840:1 2848:1 2849:1 2889:1 2890:2 2896:1 2907:2 2914:2 2924:1 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:2 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:2 3049:1 3050:5 3056:1 3058:2 3069:2 3073:1 3099:2 3113:1 3122:2 3145:12 3149:26 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:6 3230:2 3234:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3467:1 3487:1 3492:1 3509:1 3532:1 3534:1 3544:1 3547:3 3548:1 3554:1 3560:1 3582:1 3587:1 3590:2 3612:2 3666:1 3672:1 3690:1 3695:1 3705:1 3709:1 3717:1 3720:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:1 4010:2 4011:1 4048:1 4058:1 4064:3 4082:1 4088:1 4090:2 4097:2 4121:1 4122:1 4129:3 4149:1 4170:1 4175:25 4176:2 4181:1 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:2 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:2 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:25 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4767:3 4781:1 4782:2 4789:1 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:1 4922:1 4929:5 4937:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:2 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:1 5163:12 5164:2 5177:2 5180:1 5203:3 5210:2 5218:1 5240:2 5241:1 5285:3 5287:1 5289:2 5300:4 5301:4 5302:2 5309:5 5315:1 5316:2 5317:3 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5649:1 5682:3 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:1 5809:1 5811:1 5815:3 5818:1 5877:1 5903:1 5906:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5982:3 5984:1 5990:1 5991:1 5993:1 5998:1 6000:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:1 6143:2 6171:3 6228:1 6236:1 6273:1 6274:1 6276:1 6285:2 6287:1 6302:1 6305:1 6344:1 6351:1 6355:1 6357:1 6372:1 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:1 6520:2 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:1 6768:2 6769:1 6770:1 6774:3 6775:6 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:1 6904:1 6912:3 6916:3 6933:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7548:2 7572:1 7580:1 7588:1 7604:1 7623:2 7628:1 7654:1 7661:1 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7788:1 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:6 7882:1 7885:1 7917:1 7918:2 7942:1 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:2 8072:10 8073:9 8078:1 8092:1 8093:1 8095:5 8101:1 8124:3 8128:2 8132:1 8138:40 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:12 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:1 8204:2 8213:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8630:1 8633:1 8644:1 8659:1 8662:26 8669:1 8677:1 8681:1 8687:1 8691:1 8693:11 8694:3 8709:1 8711:2 8727:1 8729:1 8731:1 8736:2 8752:1 8759:1 8765:1 8777:30 8788:1 8819:1 8830:1 8854:1 8860:2 8880:1 8890:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8983:1 8989:1 8994:1 8995:4 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9225:1 9230:1 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:1 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9486:2 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:2 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9783:1 9784:2 9794:4 9800:2 9808:2 9823:1 9825:1 9841:1 9845:1 9860:1 9872:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9926:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9977:1 9978:1 9991:1 9992:3 10003:2 10004:7 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:2 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:25 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10516:3 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10599:1 10602:2 10606:1 10614:4 10617:5 10633:2 10636:1 10648:1 10665:4 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:6 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:4 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:4 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:3 11095:1 11107:1 11109:5 11125:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:1 11226:4 11233:1 11240:1 11252:1 11266:2 11274:1 11282:1 11289:6 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:1 11350:1 11370:1 11396:1 11423:1 11424:3 11437:1 11439:1 11448:2 11450:1 11464:2 11469:3 11471:1 11482:1 11487:1 11498:3 11506:1 11515:1 11524:1 11526:1 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:1 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11641:1 11642:1 11643:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:2 11843:1 11844:1 11845:2 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11903:1 11927:1 11940:3 11948:1 11961:1 11973:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:6 12035:2 12036:2 12064:1 12071:1 12091:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:6 12185:1 12194:1 12204:2 12217:1 12220:1 12222:1 12229:1 12234:1 12236:5 12237:1 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:5 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:1 12556:1 12570:1 12594:1 12609:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12691:1 12700:1 12709:1 12717:1 12718:1 12719:2 12726:1 12750:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:1 12852:2 12855:4 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:2 13240:26 13242:1 13244:1 13251:1 13254:4 13263:1 13296:6 13306:1 13318:2 13322:1 13334:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13454:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:11 13699:1 13700:2 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:3 13844:5 13851:1 13891:1 13898:11 13902:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:3 14071:2 14094:1 14100:1 14103:1 14104:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14208:1 14212:2 14215:2 14216:1 14218:1 14223:2 14224:1 14226:8 14227:1 14229:1 14231:2 14249:1 14250:1 14251:1 14254:1 14255:1 14259:5 14264:1 14270:2 14296:1 14310:1 14311:1 14315:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:9 14531:4 14605:2 14615:1 14634:4 14635:1 14655:1 14708:1 14711:2 14723:1 14724:1 14727:1 14757:2 14765:1 14769:1 14813:4 14849:1 14875:1 14880:1 14902:1 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:1 14960:2 14971:1 15002:1 15017:1 15022:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15165:1 15173:1 15185:26 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:1 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15793:1 15821:1 15825:1 15831:1 15848:2 15891:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16028:1 16044:1 16051:1 16067:1 16082:1 16083:2 16084:3 16109:1 16117:1 16139:4 16144:2 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16273:1 16281:1 16285:2 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:3 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16455:3 16457:1 16478:4 16480:1 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:1 16585:1 16588:1 16600:1 16611:1 16616:1 16619:12 16622:2 16626:1 16650:1 16655:2 16657:3 16660:1 16664:2 16694:2 16702:2 16703:1 16705:1 16706:2 16731:9 16746:1 16759:1 16760:1 16777:3 16838:1 16853:1 16855:1 16862:1 16864:1 16874:1 16891:4 16892:2 16897:3 16898:1 16905:2 16906:1 16907:1 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:1 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17213:2 17224:1 17237:2 17252:1 17256:3 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:1 17321:1 17330:1 17335:2 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:33 17544:1 17545:1 17549:1 17560:1 17564:1 17579:1 17582:1 17586:3 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:1 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18010:1 18028:1 18033:1 18036:1 18037:1 18049:2 18051:1 18063:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18190:2 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18412:2 18415:2 18439:4 18448:4 18473:2 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18738:1 18739:1 18744:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18848:3 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18995:1 19024:6 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19142:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19224:1 19227:1 19238:1874 19250:1 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19529:1 19564:1 19581:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19749:1 19757:3 19759:2 19773:1 19778:1 19821:1 19826:4 19858:4 19863:1 19871:1 19879:1 19914:1 19916:1 19927:1 19939:1 19965:1 19968:1 19976:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:3 20063:1 20065:4 20096:2 20111:1 20112:1 20127:16 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20328:3 20332:1 20346:1 20353:2 20354:1 20378:1 20394:2 20397:1 20424:1 20432:1 20435:1 20445:1 20447:1 20449:1 20464:1 20467:1 20474:4 20509:1 20530:1 20554:1 20559:1 20560:1 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:6 20677:1 20680:1 20685:1 20694:1 20700:1 20710:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:4 20745:1 20760:1 20769:2 20770:3 20771:1 20774:1 20783:1 20784:1 20791:4 20815:2 20831:2 20835:1 20841:2 20851:1 20856:3 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:4 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21018:1 21039:1 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:1 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21386:2 21388:1 21389:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:1 21503:2 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:3 21626:1 21641:1 21643:1 21645:4 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:2 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:2 21763:1 21772:1 21802:1 21812:1 21823:1 21826:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:3 21900:2 21920:3 21929:1 21945:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 22002:1 22003:1 22006:1 22007:1 22009:3 22033:1 22040:1 22052:2 22059:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22161:1 22170:1 22180:3 22187:1 22189:1 22208:1 22209:1 22231:3 22238:1 22251:1 22257:1 22266:1 22269:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:5 22388:1 22419:1 22420:1 22422:1 22429:4 22432:1 22433:1 22437:1 22438:3 22442:1 22453:2 22467:1 22477:1 22493:1 22494:7 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:2 22652:1 22655:1 22657:1 22661:4 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22904:1 22914:3 22927:1 22933:1 22938:2 22947:1 22953:1 22960:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:11 23039:1 23042:2 23048:1 23079:1 23084:9 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23156:2 23159:1 23196:1 23200:1 23207:7 23225:1 23244:3 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:5 23366:2 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:25 23534:1 23537:2 23538:3 23543:1 23545:1 23551:1 23572:2 23579:3 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23714:1 23717:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:1 23956:26 23966:1 23975:3 23977:1 24001:1 24003:1 24015:1 24019:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24582:3 24585:1 24591:1 24600:2 24603:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:2 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25125:1 25133:2 25171:1 25185:1 25189:1 25192:2 25197:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:4 25312:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25989:2 26001:2 26012:1 26019:2 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26283:1 26297:2 26312:2 26322:3 26325:2 26333:1 26347:4 26362:2 26373:2 26377:3 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:11 26446:2 26457:1 26466:1 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26575:1 26590:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26727:2 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26843:1 26845:1 26865:1 26866:1 26872:1 26873:4 26876:1 26885:2 26900:2 26901:1 26905:8 26906:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27051:1 27090:1 27099:2 27125:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27275:1 27277:2 27300:1 27301:2 27318:2 27327:1 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:1 27780:1 27783:2 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:4 27832:2 27841:1 27842:1 27843:1 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:5 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:2 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28351:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:5 28592:1 28596:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28835:1 28838:1 28847:1 28866:1 28869:1 28872:1 28874:2 28888:13 28890:1 28892:1 28895:1 28911:1 28917:2 28927:6 28964:1 28996:1 29014:1 29019:3 29037:1 29048:1 29050:1 29051:1 29055:8 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:11 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29296:1 29316:1 29328:1 29332:30 29333:1 29335:1 29355:1 29357:4 29361:1 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:1 29563:2 29578:1 29583:1 29587:1 29598:1 29612:1 29622:4 29640:2 29650:1 29696:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29843:1 29844:1 29853:1 29871:1 29882:1 29886:1 29894:1 29899:1 29903:1 29916:1 29921:1 29929:1 29939:1 29940:3 29943:2 29946:3 29968:1 29971:2 29982:6 30003:3 30008:2 30009:2 30015:1 30019:26 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30131:1 30142:2 30147:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 49:1 59:1 62:1 64:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 174:1 179:2 183:2 190:1 193:1 204:1 206:1 212:1 220:1 227:2 237:1 240:1 241:1 263:2 279:2 283:4 284:1 290:1 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:3 401:1 402:1 413:1 417:1 420:1 424:1 442:2 445:1 457:2 462:1 473:1 477:2 482:1 492:1 500:1 504:1 513:2 539:2 544:1 548:1 555:1 578:1 586:1 595:1 596:1 607:1 612:1 641:2 670:3 674:2 683:1 686:1 717:6 733:1 734:27 739:3 743:1 744:1 745:1 759:1 763:1 777:1 798:1 805:1 808:2 813:2 822:1 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:2 925:1 948:3 949:1 964:2 978:1 989:3 990:6 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:6 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:3 1149:1 1207:2 1209:1 1224:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:26 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:3 1497:1 1499:1 1504:1 1511:2 1513:4 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:3 1623:1 1627:7 1629:1 1632:1 1646:1 1649:1 1653:1 1660:1 1661:1 1663:1 1692:2 1700:1 1714:1 1715:1 1719:3 1732:1 1733:1 1745:1 1748:1 1749:1 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:4 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:5 2147:1 2154:1 2159:2 2161:1 2183:1 2191:1 2199:1 2213:1 2229:1 2230:2 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:1 2472:2 2473:1 2475:1 2477:5 2482:6 2484:3 2486:5 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:2 2513:1 2514:1 2517:1 2521:1 2522:1 2547:1 2557:2 2558:1 2568:3 2571:1 2577:1 2598:2 2603:1 2604:1 2631:1 2632:1 2647:1 2649:3 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2810:2 2827:1 2828:1 2840:1 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:1 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:2 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:2 3049:1 3050:5 3056:1 3058:2 3069:2 3073:1 3099:2 3102:1 3113:1 3122:2 3145:12 3149:27 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:6 3230:2 3234:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:2 3467:1 3487:1 3492:1 3509:1 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:2 3582:1 3587:1 3589:1 3590:2 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:1 3717:1 3720:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:1 4010:2 4011:1 4044:1 4048:1 4058:1 4064:3 4082:1 4088:1 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:26 4176:2 4181:1 4195:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:3 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:26 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4767:3 4781:1 4782:2 4789:1 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:1 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:2 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:1 5163:13 5164:2 5177:2 5180:1 5203:4 5210:2 5218:1 5240:2 5241:1 5285:3 5287:1 5289:2 5300:4 5301:4 5302:2 5309:5 5315:1 5316:2 5317:3 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5474:1 5487:1 5507:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5649:1 5681:1 5682:3 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:1 5809:1 5811:1 5815:3 5818:1 5877:1 5901:1 5903:1 5906:1 5915:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5982:4 5984:1 5990:1 5991:1 5993:1 5998:1 6000:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6228:1 6236:1 6241:1 6250:1 6273:1 6274:1 6276:1 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:1 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6519:2 6520:2 6521:1 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:1 6768:2 6769:2 6770:1 6771:1 6774:3 6775:6 6776:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:1 6904:1 6912:3 6916:3 6933:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7295:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7623:2 7628:1 7654:1 7661:1 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:1 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:6 7882:1 7885:1 7917:1 7918:2 7942:1 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:2 8072:10 8073:9 8078:1 8092:1 8093:1 8095:5 8101:1 8124:3 8128:3 8132:1 8138:40 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:12 8159:3 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:1 8204:2 8213:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8630:1 8633:1 8644:1 8659:1 8662:27 8669:1 8677:1 8681:1 8687:1 8691:1 8693:12 8694:3 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:33 8788:1 8819:1 8830:1 8854:1 8860:2 8880:1 8890:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8983:1 8989:1 8994:1 8995:4 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:2 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9486:2 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:3 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:6 9800:2 9808:2 9823:1 9825:1 9841:1 9845:1 9860:1 9872:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9926:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:4 10003:2 10004:8 10014:1 10020:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:2 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:26 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10516:3 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10599:1 10602:2 10606:1 10614:4 10617:5 10633:2 10636:1 10648:1 10665:4 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:6 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:4 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:5 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11082:1 11089:4 11095:1 11107:1 11109:5 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:1 11226:4 11233:1 11240:1 11252:1 11266:2 11274:1 11282:1 11289:6 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:1 11350:1 11370:1 11396:1 11423:1 11424:4 11437:1 11439:1 11448:2 11450:1 11464:2 11469:3 11471:2 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:1 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11639:1 11641:1 11642:1 11643:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:2 11843:1 11844:1 11845:2 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11903:1 11927:1 11940:4 11948:1 11961:1 11973:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:6 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:6 12185:1 12194:1 12204:3 12217:1 12220:1 12222:1 12229:1 12234:1 12236:5 12237:1 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:5 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:2 12725:1 12726:1 12750:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:4 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:2 13240:27 13242:1 13244:1 13251:1 13254:4 13263:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:2 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:3 13844:5 13851:1 13873:1 13891:1 13898:11 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:2 14216:1 14218:1 14223:2 14224:1 14226:9 14227:1 14229:1 14231:2 14249:1 14250:1 14251:1 14254:1 14255:1 14259:5 14264:1 14270:2 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14384:1 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:10 14531:5 14605:2 14615:1 14634:4 14635:1 14655:1 14708:1 14711:2 14723:1 14724:2 14727:1 14757:2 14765:1 14769:1 14782:1 14813:4 14849:1 14875:1 14880:1 14902:1 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:1 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15165:1 15173:1 15185:27 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15704:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15821:1 15825:1 15831:1 15848:2 15891:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:1 16008:1 16010:1 16028:1 16044:1 16051:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:4 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16273:1 16281:1 16285:2 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16455:3 16457:1 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:1 16585:1 16588:1 16600:1 16611:1 16616:1 16619:12 16622:2 16626:1 16650:2 16655:2 16657:3 16660:1 16664:2 16694:2 16702:2 16703:1 16705:1 16706:2 16731:9 16746:1 16759:1 16760:1 16777:3 16838:1 16853:1 16855:1 16862:1 16864:1 16874:2 16891:4 16892:2 16897:3 16898:1 16905:3 16906:1 16907:1 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:1 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:4 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:1 17321:1 17330:1 17335:2 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:36 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:3 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:1 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18010:1 18028:1 18033:1 18036:1 18037:1 18049:2 18051:1 18063:1 18097:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18190:2 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18412:2 18415:2 18439:4 18448:4 18473:2 18474:1 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18738:2 18739:1 18744:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18843:1 18848:3 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18995:1 19024:6 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19126:1 19142:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19224:1 19227:1 19238:1953 19250:1 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19821:1 19826:4 19858:4 19863:1 19871:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:3 20063:1 20065:4 20096:2 20100:1 20111:1 20112:1 20127:18 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20328:4 20332:1 20346:1 20353:2 20354:1 20378:1 20394:2 20397:1 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20509:1 20530:1 20554:1 20559:1 20560:2 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:6 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:4 20745:1 20760:1 20769:2 20770:4 20771:1 20774:1 20783:1 20784:1 20791:4 20815:2 20831:2 20835:1 20841:2 20851:1 20856:3 20865:1 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:4 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21018:1 21039:1 21063:1 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:1 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21386:2 21388:1 21389:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:1 21503:2 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21626:1 21641:1 21643:1 21645:4 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:2 21763:1 21772:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:4 21900:2 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 22002:1 22003:1 22006:1 22007:1 22009:3 22014:1 22033:1 22040:1 22052:2 22059:1 22062:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22161:1 22170:2 22180:3 22187:1 22189:1 22208:1 22209:1 22229:1 22231:3 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22300:1 22301:1 22339:1 22349:5 22388:1 22419:1 22420:1 22422:1 22429:5 22432:1 22433:1 22437:1 22438:3 22442:1 22453:2 22467:1 22469:1 22477:1 22493:1 22494:7 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:1 22645:2 22652:1 22655:1 22657:1 22661:4 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22904:1 22914:3 22927:1 22933:1 22938:2 22947:1 22953:1 22960:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:11 23039:1 23042:2 23048:1 23079:1 23084:9 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23156:2 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:6 23366:2 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:26 23534:1 23537:2 23538:3 23542:1 23543:1 23545:1 23551:1 23572:2 23579:3 23581:1 23582:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23714:1 23717:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:1 23956:27 23966:1 23975:3 23977:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24582:3 24585:1 24591:1 24600:2 24603:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:3 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:7 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25171:1 25185:1 25189:1 25192:2 25197:1 25201:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25986:1 25989:2 26001:2 26012:1 26019:2 26028:1 26034:2 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:2 26322:3 26325:2 26333:1 26340:1 26347:4 26362:2 26373:2 26377:3 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:11 26446:2 26457:1 26466:2 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26575:1 26590:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26668:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26727:2 26737:1 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26843:1 26845:1 26865:1 26866:1 26872:1 26873:4 26876:1 26885:2 26900:2 26901:1 26905:8 26906:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27051:1 27090:1 27099:2 27125:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27262:1 27275:1 27277:2 27300:1 27301:2 27310:1 27318:2 27327:1 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:4 27832:2 27841:2 27842:1 27843:1 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:6 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28142:1 28145:2 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28351:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:6 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:1 28866:1 28869:1 28872:1 28874:2 28888:13 28890:1 28892:1 28895:1 28911:1 28917:2 28927:6 28964:1 28996:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:1 29055:8 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:11 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29296:1 29316:1 29328:1 29332:33 29333:1 29335:1 29355:1 29357:4 29358:1 29361:1 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:1 29587:1 29598:1 29612:1 29622:4 29640:2 29650:1 29696:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29843:1 29844:1 29853:1 29871:1 29882:1 29886:1 29894:1 29899:1 29903:1 29916:1 29921:1 29929:1 29939:1 29940:3 29941:1 29943:2 29946:3 29968:1 29971:2 29982:6 30003:3 30008:2 30009:2 30015:1 30019:27 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30129:1 30131:1 30142:2 30147:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 49:1 59:1 62:1 64:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 174:1 179:2 183:2 190:1 193:1 204:1 206:1 212:1 220:1 227:2 237:1 240:1 241:1 263:2 279:2 283:4 284:1 290:1 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:3 401:1 402:1 413:1 417:1 420:1 424:1 442:2 445:1 457:2 462:1 473:1 477:2 482:1 492:1 500:1 504:1 513:2 539:2 544:1 548:1 555:1 578:1 586:1 595:1 596:1 607:1 612:1 641:3 670:3 674:2 680:1 683:1 686:1 717:6 733:1 734:28 739:3 743:1 744:1 745:1 759:1 763:1 777:1 798:1 805:1 808:2 813:2 822:1 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:2 925:1 948:3 949:1 956:1 964:2 978:1 989:3 990:6 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:6 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:3 1149:1 1207:2 1209:1 1224:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:27 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:3 1497:1 1499:1 1501:1 1504:1 1511:2 1513:5 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:3 1623:1 1627:8 1629:1 1632:1 1646:1 1649:1 1653:1 1660:1 1661:1 1663:1 1692:2 1700:1 1714:1 1715:1 1719:3 1732:1 1733:1 1745:1 1748:1 1749:1 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:5 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:1 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:5 2147:1 2154:1 2159:2 2161:1 2183:1 2191:1 2199:1 2213:1 2229:1 2230:2 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:1 2472:2 2473:2 2475:1 2477:5 2482:6 2484:3 2486:5 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2553:1 2557:2 2558:1 2568:3 2571:1 2577:1 2598:2 2603:1 2604:1 2631:1 2632:1 2639:1 2647:1 2649:3 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2810:2 2827:1 2828:1 2840:1 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:2 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:2 3049:1 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3099:2 3102:1 3113:1 3122:2 3145:13 3149:28 3153:1 3156:2 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:7 3230:2 3234:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:2 3467:1 3487:1 3492:1 3509:1 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3582:1 3587:1 3589:1 3590:2 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:1 3717:1 3720:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3841:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:1 4010:2 4011:1 4038:1 4044:1 4048:1 4058:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4149:1 4170:1 4175:27 4176:2 4181:1 4195:1 4203:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:3 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:1 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:27 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:1 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:1 5163:13 5164:2 5177:2 5180:1 5203:4 5210:2 5218:1 5240:2 5241:1 5285:3 5287:1 5289:2 5300:4 5301:4 5302:2 5309:5 5315:1 5316:2 5317:3 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:1 5809:1 5811:1 5815:3 5818:1 5877:1 5901:1 5903:1 5906:1 5915:1 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5982:5 5984:1 5990:1 5991:1 5993:1 5998:1 6000:1 6018:1 6029:1 6040:1 6053:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6228:1 6236:1 6241:1 6250:1 6273:1 6274:1 6276:1 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:1 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:1 6501:1 6505:1 6508:1 6509:3 6515:1 6517:1 6519:2 6520:2 6521:1 6529:1 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6653:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:2 6769:2 6770:1 6771:1 6774:3 6775:6 6776:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7295:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:2 7628:1 7654:1 7661:1 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:1 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:6 7882:1 7885:1 7917:1 7918:2 7942:1 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:2 8072:10 8073:10 8078:1 8092:1 8093:1 8095:5 8101:1 8124:3 8128:3 8132:1 8138:42 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:13 8159:4 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:1 8204:2 8213:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8630:1 8633:1 8644:1 8659:1 8662:28 8669:1 8677:1 8681:1 8687:1 8691:1 8693:12 8694:3 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:34 8788:1 8819:1 8830:1 8854:1 8860:2 8880:1 8890:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8983:1 8989:1 8994:1 8995:4 8996:1 9010:1 9017:1 9022:1 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:1 9169:3 9212:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9372:1 9390:1 9393:3 9401:1 9405:1 9407:1 9408:1 9409:2 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:2 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:3 9664:3 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:6 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9872:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9926:1 9938:1 9941:1 9942:1 9947:2 9951:1 9955:1 9956:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:5 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:27 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10516:3 10521:2 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:1 10586:1 10592:2 10599:1 10602:2 10606:1 10614:4 10617:5 10633:2 10636:1 10648:1 10665:4 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:6 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:4 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:5 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:2 11226:5 11233:1 11240:1 11252:1 11266:2 11274:1 11282:1 11286:1 11289:6 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:1 11350:1 11370:1 11396:1 11423:1 11424:5 11437:1 11438:1 11439:1 11448:2 11450:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:1 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:3 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11639:1 11641:1 11642:1 11643:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11827:1 11834:2 11836:1 11843:1 11844:1 11845:3 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:2 11903:1 11927:1 11940:4 11948:1 11961:1 11973:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:7 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:6 12185:1 12194:1 12204:3 12217:1 12220:1 12222:1 12229:1 12234:1 12236:5 12237:1 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:5 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:2 12431:1 12463:1 12465:1 12483:1 12516:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:1 12614:3 12619:1 12623:1 12635:3 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:2 12725:1 12726:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12919:1 12921:2 12930:1 12941:1 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:2 13240:28 13242:1 13244:1 13251:1 13254:4 13263:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:2 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:4 13844:5 13851:1 13873:1 13891:1 13898:11 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:2 14216:1 14218:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:1 14251:1 14254:1 14255:1 14259:5 14264:1 14270:2 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:5 14605:2 14615:2 14634:4 14635:1 14655:1 14708:1 14711:2 14723:1 14724:2 14727:1 14757:2 14765:1 14769:1 14782:1 14813:4 14849:1 14875:1 14880:1 14902:2 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:1 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:1 15037:1 15038:1 15039:1 15054:1 15055:2 15061:1 15069:1 15075:1 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15165:1 15173:1 15185:28 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15704:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15821:1 15825:1 15831:1 15848:2 15891:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:4 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16273:1 16281:1 16285:2 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16388:3 16398:1 16445:1 16447:1 16455:4 16457:1 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:2 16585:1 16588:1 16600:1 16611:1 16616:1 16619:12 16622:2 16626:1 16650:2 16655:3 16657:3 16660:1 16664:2 16694:2 16702:2 16703:1 16705:1 16706:2 16731:9 16746:1 16759:1 16760:1 16777:3 16838:1 16853:1 16855:1 16862:1 16864:1 16874:2 16891:4 16892:2 16897:3 16898:1 16905:3 16906:1 16907:1 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:1 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:5 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:1 17321:1 17330:1 17331:1 17335:2 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:37 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:3 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:2 17695:2 17705:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:1 17866:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18010:1 18028:1 18033:1 18036:1 18037:1 18049:2 18051:1 18063:1 18097:1 18101:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18190:2 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18412:2 18415:2 18439:4 18448:4 18473:2 18474:1 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:1 18738:2 18739:1 18744:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18843:1 18848:4 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18995:1 19024:6 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19126:1 19142:1 19144:1 19157:1 19169:1 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2010 19250:1 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:2 19374:1 19400:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19514:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19821:1 19826:4 19858:4 19863:1 19871:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:3 20063:1 20065:4 20096:2 20100:1 20111:1 20112:1 20127:19 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20328:4 20332:1 20346:1 20353:2 20354:1 20378:1 20394:2 20397:1 20417:1 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20530:1 20554:1 20559:1 20560:2 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:6 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:5 20745:1 20760:1 20769:2 20770:4 20771:1 20774:1 20783:1 20784:1 20791:4 20815:2 20831:2 20835:1 20841:2 20851:1 20856:3 20865:1 20866:1 20879:2 20890:1 20896:1 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21018:1 21039:1 21063:2 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:1 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21386:2 21388:1 21389:2 21404:1 21408:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21615:1 21626:1 21641:1 21643:1 21645:4 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:4 21900:2 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 22002:1 22003:1 22006:1 22007:1 22009:3 22014:1 22033:1 22040:1 22052:2 22059:1 22062:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22161:1 22170:2 22180:3 22187:1 22189:1 22208:1 22209:1 22229:1 22231:3 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22349:5 22388:1 22419:1 22420:1 22422:1 22429:5 22432:1 22433:1 22437:1 22438:3 22442:1 22453:2 22467:1 22469:1 22477:1 22493:1 22494:8 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:4 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22904:1 22914:3 22927:1 22933:1 22938:2 22947:1 22953:1 22960:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:12 23039:1 23042:2 23048:1 23079:1 23084:9 23086:2 23090:1 23094:1 23139:1 23142:4 23144:2 23146:1 23156:2 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:6 23366:2 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23507:1 23508:1 23511:1 23516:27 23534:1 23537:2 23538:3 23542:1 23543:1 23545:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:2 23909:1 23910:1 23913:3 23917:1 23920:2 23956:28 23966:1 23975:3 23977:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24261:1 24291:1 24315:1 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24582:3 24585:1 24591:1 24600:2 24603:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24858:1 24860:1 24862:3 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:8 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25171:1 25185:1 25189:1 25192:2 25197:1 25201:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25986:1 25989:2 26001:2 26012:1 26019:2 26028:1 26034:2 26037:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:2 26322:3 26325:2 26333:1 26340:1 26347:4 26362:2 26373:2 26377:3 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:12 26446:2 26457:1 26466:2 26488:1 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26575:1 26590:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26668:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26727:2 26737:1 26739:1 26750:1 26753:1 26760:1 26761:2 26773:1 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26843:1 26845:1 26865:1 26866:1 26872:1 26873:4 26876:1 26885:2 26900:2 26901:1 26905:8 26906:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27051:1 27090:1 27099:2 27125:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27262:1 27275:1 27277:2 27300:1 27301:2 27310:1 27318:2 27327:1 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:4 27832:2 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:1 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:7 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:1 28142:1 28144:1 28145:2 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:1 28213:2 28214:1 28216:2 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:2 28335:1 28343:1 28347:1 28349:1 28351:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:2 28590:1 28591:6 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:1 28866:1 28869:1 28872:1 28874:2 28888:13 28890:1 28892:1 28895:1 28911:1 28917:2 28927:6 28964:1 28996:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:1 29055:9 29061:2 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29105:11 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29316:1 29328:1 29332:34 29333:1 29335:1 29355:1 29357:4 29358:1 29361:1 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:1 29587:1 29598:1 29612:1 29622:4 29640:2 29650:2 29696:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29843:1 29844:1 29853:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29921:1 29929:1 29939:1 29940:3 29941:1 29943:2 29946:3 29968:1 29971:2 29982:6 30003:3 30008:2 30009:2 30015:1 30019:28 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30129:1 30131:1 30142:2 30147:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 174:1 179:2 183:2 190:1 193:1 204:1 206:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 279:2 283:5 284:1 290:1 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:3 401:1 402:1 405:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:1 473:1 477:2 482:1 492:1 500:1 504:1 513:2 539:3 544:1 548:1 555:1 578:1 586:1 595:1 596:1 607:1 612:1 641:3 670:3 674:2 680:1 683:1 686:1 717:6 733:1 734:29 739:3 743:1 744:1 745:1 759:1 763:1 777:1 782:1 798:2 805:1 808:2 813:2 822:1 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:3 925:1 948:3 949:1 956:1 964:2 978:1 989:3 990:6 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:6 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1207:2 1209:1 1224:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:28 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:3 1497:1 1499:1 1501:1 1504:1 1511:2 1513:6 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:3 1623:1 1627:9 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1692:3 1700:1 1714:1 1715:1 1719:3 1732:1 1733:1 1745:1 1748:1 1749:1 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:6 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:5 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2229:1 2230:2 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:1 2472:2 2473:2 2475:1 2477:5 2482:7 2484:3 2486:5 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2553:1 2557:2 2558:1 2568:3 2571:1 2577:1 2598:2 2603:1 2604:1 2631:1 2632:1 2639:1 2647:1 2649:3 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2810:2 2827:1 2828:1 2840:1 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2967:1 2973:1 2976:3 2979:2 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:1 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3113:1 3122:2 3145:13 3149:29 3153:1 3156:3 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:7 3230:2 3234:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:3 3467:1 3487:1 3492:1 3509:1 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:2 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:1 3717:1 3720:1 3721:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3822:1 3841:1 3853:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 4010:2 4011:1 4038:1 4044:1 4048:1 4058:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4147:1 4149:1 4170:1 4175:28 4176:2 4181:1 4195:1 4203:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:5 4288:5 4289:2 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:28 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:1 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:2 5163:14 5164:2 5177:2 5180:1 5203:5 5210:2 5218:2 5240:2 5241:1 5285:4 5287:1 5289:3 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:3 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:1 5809:1 5811:1 5815:3 5818:1 5877:1 5886:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5976:1 5982:6 5984:1 5990:1 5991:1 5993:1 5998:1 6000:1 6018:2 6029:1 6040:1 6053:1 6058:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6228:1 6236:1 6241:1 6250:1 6273:1 6274:1 6276:1 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:1 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:1 6517:1 6519:2 6520:2 6521:1 6529:1 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6653:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:5 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:2 6770:1 6771:1 6774:3 6775:7 6776:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:1 6959:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7286:1 7295:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:2 7628:1 7654:1 7661:1 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:6 7882:1 7885:1 7917:1 7918:2 7942:1 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:10 8073:10 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:3 8132:1 8138:43 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:13 8159:4 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:2 8204:2 8213:1 8221:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:29 8668:1 8669:1 8677:1 8681:1 8687:1 8691:1 8693:12 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:36 8788:1 8819:1 8830:1 8854:1 8860:2 8880:1 8890:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:1 8995:5 8996:1 9010:1 9017:1 9022:2 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9365:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:2 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9566:1 9589:1 9610:4 9613:1 9632:3 9663:1 9664:4 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:7 9798:1 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9868:1 9872:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9926:1 9938:1 9941:1 9942:1 9947:2 9951:2 9955:1 9956:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:6 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10126:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10261:4 10264:1 10271:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:28 10390:1 10397:1 10409:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10516:4 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10592:2 10599:1 10602:2 10606:1 10614:4 10617:5 10633:3 10636:1 10648:1 10665:5 10681:1 10683:1 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:6 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:4 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:5 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11274:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:2 11336:1 11350:1 11362:1 11370:1 11396:1 11423:1 11424:6 11437:1 11438:1 11439:1 11442:1 11448:2 11450:1 11458:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11639:1 11641:1 11642:1 11643:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:1 11826:1 11827:1 11834:2 11836:1 11843:1 11844:1 11845:3 11846:1 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11940:5 11948:1 11961:1 11973:1 11976:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:7 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:6 12185:1 12194:1 12199:1 12204:3 12217:1 12220:1 12222:1 12229:1 12234:1 12236:5 12237:2 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:5 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:3 12725:2 12726:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:1 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:29 13242:1 13244:1 13251:1 13254:4 13257:1 13263:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:1 13419:1 13440:1 13444:2 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:2 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:4 13844:5 13851:1 13873:1 13891:1 13898:11 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:2 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14254:1 14255:1 14259:5 14262:1 14264:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:5 14605:2 14615:2 14634:4 14635:1 14655:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14782:1 14813:4 14849:1 14875:1 14880:1 14894:1 14902:2 14905:1 14908:1 14914:2 14920:2 14922:3 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:1 15037:1 15038:1 15039:1 15042:1 15054:1 15055:2 15061:1 15069:1 15075:2 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15165:1 15173:1 15185:29 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15704:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15821:1 15825:1 15831:1 15848:2 15891:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:4 16457:1 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:2 16585:1 16588:1 16600:1 16611:1 16616:1 16619:12 16622:2 16626:1 16650:2 16655:3 16657:3 16660:1 16664:2 16694:2 16702:2 16703:1 16705:1 16706:2 16731:10 16746:1 16759:1 16760:1 16777:3 16838:2 16853:1 16855:1 16862:1 16864:1 16874:2 16891:4 16892:2 16897:3 16898:1 16905:3 16906:1 16907:1 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:6 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17329:1 17330:1 17331:1 17335:2 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:39 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18007:1 18010:1 18025:1 18028:1 18033:1 18036:1 18037:1 18049:2 18051:1 18063:1 18097:1 18101:1 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:2 18415:2 18439:4 18448:4 18473:3 18474:1 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:1 18738:2 18739:1 18744:1 18753:1 18770:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18843:1 18848:4 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:8 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19126:1 19142:1 19144:1 19157:1 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2091 19250:1 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19360:3 19368:1 19372:3 19374:1 19400:1 19407:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19514:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19639:1 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:4 19858:5 19863:1 19871:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:4 20063:1 20065:4 20096:2 20100:1 20111:1 20112:1 20127:21 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20328:4 20332:1 20346:1 20353:2 20354:1 20374:1 20378:1 20394:2 20397:1 20417:1 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:1 20626:1 20627:1 20640:1 20671:2 20672:6 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:5 20745:1 20760:1 20769:2 20770:5 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20856:3 20865:1 20866:1 20879:2 20884:1 20890:1 20896:1 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21018:1 21039:1 21063:2 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:1 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21386:2 21388:1 21389:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21615:1 21626:1 21641:1 21643:1 21645:4 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:4 21900:2 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 22002:1 22003:1 22006:1 22007:1 22009:3 22014:1 22033:1 22040:1 22052:2 22059:1 22062:1 22064:1 22065:2 22069:2 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22161:2 22170:2 22180:3 22187:1 22189:1 22192:1 22208:1 22209:2 22229:1 22231:4 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22345:1 22349:5 22388:1 22419:1 22420:1 22422:1 22429:5 22432:1 22433:1 22437:1 22438:3 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:8 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:4 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:3 22927:1 22933:1 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:12 23039:1 23042:2 23048:1 23079:1 23084:10 23086:2 23090:1 23094:1 23107:1 23139:1 23142:4 23144:2 23146:1 23156:2 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:6 23366:2 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:28 23534:1 23537:2 23538:3 23541:1 23542:2 23543:1 23545:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:1 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23909:1 23910:1 23913:3 23917:1 23920:2 23956:29 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24144:1 24150:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24217:1 24261:1 24291:1 24315:1 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24581:1 24582:3 24585:1 24591:1 24600:2 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:3 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:8 24985:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25142:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25216:1 25225:1 25233:1 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25986:1 25989:2 26001:2 26012:1 26019:2 26028:1 26034:2 26037:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:2 26322:4 26325:2 26333:1 26340:1 26347:4 26362:2 26373:2 26377:3 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:12 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26590:1 26591:1 26594:1 26596:1 26618:1 26623:1 26634:2 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26727:2 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:1 26865:1 26866:1 26872:1 26873:4 26876:1 26885:2 26900:2 26901:1 26905:10 26906:1 26910:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27051:1 27090:1 27099:2 27125:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:1 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:4 27832:2 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:2 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:7 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:1 28142:1 28144:1 28145:3 28149:1 28161:1 28162:3 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:2 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28335:1 28343:1 28347:1 28349:1 28351:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:1 28583:4 28586:1 28588:3 28590:1 28591:6 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:1 28772:2 28784:1 28793:1 28798:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:13 28890:1 28892:1 28895:1 28911:1 28917:2 28927:6 28964:1 28996:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:1 29055:9 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:11 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29316:1 29328:1 29332:36 29333:1 29335:1 29355:1 29357:4 29358:1 29361:1 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:1 29587:1 29598:1 29612:1 29622:4 29640:2 29650:2 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29842:1 29843:1 29844:1 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29921:1 29929:1 29939:1 29940:4 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 30003:3 30008:2 30009:2 30015:1 30019:29 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30094:2 30095:4 30107:1 30129:1 30131:1 30142:2 30147:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 174:1 179:2 183:2 190:1 193:1 204:1 206:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 279:2 283:5 284:1 290:1 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:3 401:1 402:1 405:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:1 473:1 477:2 482:1 492:1 500:1 504:2 513:2 529:1 539:3 544:1 548:1 555:1 578:1 586:1 595:1 596:1 607:1 612:1 641:3 670:3 674:2 680:2 683:1 686:1 717:6 733:1 734:30 739:3 743:1 744:1 745:1 759:1 763:1 777:1 782:1 798:2 805:1 808:2 813:2 822:2 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:3 925:1 948:3 949:1 956:1 964:2 969:1 978:1 989:3 990:6 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:6 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1207:2 1209:1 1224:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:29 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:3 1497:1 1499:1 1501:1 1504:1 1511:2 1513:7 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:3 1623:2 1627:9 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1692:3 1700:1 1714:1 1715:1 1719:3 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:7 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:5 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2229:1 2230:2 2236:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:1 2472:2 2473:2 2475:1 2477:5 2482:7 2484:3 2486:6 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2553:1 2557:2 2558:1 2568:4 2571:1 2577:1 2598:2 2603:1 2604:1 2631:1 2632:1 2639:1 2647:1 2649:3 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2810:2 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:1 2967:1 2973:1 2976:3 2979:3 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:2 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3113:1 3122:2 3145:14 3149:30 3153:1 3156:3 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:7 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:3 3467:1 3487:1 3492:1 3509:1 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:1 3717:1 3720:1 3721:1 3729:1 3731:1 3734:1 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3822:1 3841:2 3853:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 4010:2 4011:1 4038:1 4044:1 4048:1 4058:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:29 4176:2 4181:1 4195:1 4203:1 4205:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:5 4288:5 4289:2 4297:1 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4591:1 4604:1 4613:2 4615:29 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:1 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:1 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:2 5163:15 5164:2 5177:2 5180:1 5203:5 5210:2 5218:2 5240:2 5241:1 5285:4 5287:1 5289:3 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:3 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5450:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:1 5809:1 5811:1 5815:3 5818:1 5877:1 5886:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5976:1 5982:7 5984:1 5990:1 5991:1 5993:1 5998:1 6000:1 6018:2 6029:1 6040:1 6053:2 6058:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6228:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:1 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:1 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6419:1 6422:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:1 6517:1 6519:2 6520:2 6521:1 6529:1 6562:1 6600:1 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6653:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:6 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:2 6770:1 6771:1 6774:3 6775:7 6776:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:1 6959:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:1 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7280:1 7286:1 7295:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:1 7454:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:2 7628:1 7654:1 7661:1 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:7 7882:1 7885:1 7917:1 7918:2 7942:1 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:10 8073:10 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:3 8132:1 8138:44 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:14 8159:4 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:2 8204:2 8213:1 8221:1 8249:4 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:3 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:30 8668:1 8669:1 8677:1 8681:1 8687:1 8691:1 8693:15 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:37 8788:1 8819:1 8830:1 8854:1 8860:2 8880:1 8890:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:1 8995:5 8996:1 9010:1 9017:1 9022:2 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9365:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:2 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9556:1 9566:1 9589:1 9610:4 9613:1 9632:3 9663:1 9664:4 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:7 9798:1 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9868:1 9872:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9920:1 9926:1 9938:1 9941:1 9942:1 9947:2 9951:2 9955:1 9956:1 9959:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:7 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10106:1 10110:1 10126:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10271:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:29 10390:1 10397:1 10409:1 10419:1 10423:1 10433:1 10439:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10516:4 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10592:2 10599:1 10602:2 10606:1 10614:4 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:6 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:4 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:5 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:2 11336:1 11350:1 11362:1 11370:1 11396:1 11423:1 11424:7 11437:1 11438:1 11439:1 11442:1 11448:2 11450:1 11458:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11639:1 11641:1 11642:1 11643:1 11651:1 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:1 11834:2 11836:1 11843:1 11844:1 11845:3 11846:1 11852:1 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11940:5 11948:1 11961:1 11973:1 11976:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:8 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12220:1 12222:1 12229:1 12234:1 12236:5 12237:3 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:6 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:3 12725:2 12726:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:30 13242:1 13244:1 13251:1 13254:4 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:1 13390:1 13391:2 13419:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:4 13844:5 13851:1 13873:1 13891:1 13898:11 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14254:1 14255:1 14259:5 14262:1 14264:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:4 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:5 14605:2 14615:2 14634:4 14635:1 14655:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14782:1 14813:4 14849:1 14875:1 14880:1 14894:1 14902:2 14905:1 14908:1 14914:2 14919:1 14920:2 14922:3 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:1 15026:1 15037:1 15038:2 15039:1 15042:1 15054:1 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15165:1 15173:1 15185:30 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:2 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15704:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15821:1 15825:1 15831:1 15848:2 15891:2 15892:1 15898:1 15906:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:4 16457:1 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:2 16585:1 16588:1 16600:1 16611:1 16616:1 16619:12 16622:2 16626:1 16650:2 16655:3 16657:3 16660:1 16664:2 16694:2 16702:2 16703:1 16705:1 16706:2 16731:10 16746:1 16759:1 16760:1 16777:3 16838:2 16853:1 16855:1 16862:1 16864:1 16874:2 16891:4 16892:2 16893:1 16897:3 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:7 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17329:1 17330:1 17331:1 17335:2 17367:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:40 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18007:1 18010:1 18025:1 18028:1 18033:1 18036:1 18037:1 18049:2 18051:1 18063:1 18097:1 18101:1 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:2 18415:2 18439:4 18448:4 18473:3 18474:1 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:1 18738:2 18739:1 18744:1 18753:1 18770:1 18773:1 18783:1 18786:1 18804:1 18806:1 18827:1 18842:1 18843:1 18848:4 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:8 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19126:1 19142:1 19144:1 19157:1 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2154 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19407:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19514:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19639:2 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:5 19858:5 19863:1 19871:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:21 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20324:1 20328:4 20332:1 20346:1 20353:2 20354:1 20374:1 20378:1 20394:2 20397:1 20408:1 20417:1 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:6 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:1 20726:1 20732:1 20736:2 20739:3 20740:1 20742:5 20745:1 20760:1 20769:2 20770:5 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20856:4 20865:1 20866:1 20879:2 20884:1 20890:1 20896:1 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21018:1 21039:1 21063:2 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:1 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21386:2 21388:1 21389:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:1 21531:2 21537:1 21540:3 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21615:1 21626:1 21641:1 21643:1 21645:4 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:1 21885:1 21888:4 21900:2 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:3 22014:1 22033:1 22040:1 22052:2 22059:1 22062:1 22064:1 22065:2 22069:2 22074:1 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22161:2 22170:2 22180:3 22187:1 22189:1 22192:1 22208:1 22209:2 22229:1 22231:4 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22345:1 22349:5 22388:1 22419:1 22420:1 22422:1 22429:5 22432:1 22433:1 22437:1 22438:3 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:9 22506:1 22527:1 22574:1 22580:1 22581:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:5 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:2 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:3 22927:1 22933:1 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:12 23039:1 23042:2 23048:1 23079:1 23084:10 23086:2 23090:1 23094:1 23107:1 23139:1 23142:4 23144:2 23146:1 23156:3 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:6 23366:2 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:29 23534:1 23537:2 23538:3 23541:1 23542:2 23543:1 23545:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23909:1 23910:1 23913:3 23917:1 23920:2 23956:30 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24217:1 24261:1 24267:1 24291:1 24294:1 24315:1 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24581:1 24582:3 24585:1 24591:1 24600:4 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:3 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:8 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25142:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25448:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25986:1 25989:2 26001:2 26012:1 26019:2 26027:1 26028:1 26034:2 26037:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26218:1 26221:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:2 26322:4 26325:2 26333:1 26340:1 26347:4 26362:2 26373:2 26377:3 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:12 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26590:1 26591:1 26594:1 26596:1 26618:2 26623:1 26634:2 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26727:2 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:1 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:10 26906:1 26910:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27051:1 27090:1 27099:2 27125:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:1 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27623:1 27627:5 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:4 27832:2 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:2 27913:1 27954:1 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:7 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:1 28142:1 28144:1 28145:3 28149:1 28161:1 28162:4 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:2 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28583:4 28586:1 28588:3 28590:1 28591:6 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:1 28772:2 28784:1 28793:1 28798:2 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:13 28890:1 28892:1 28895:1 28911:1 28917:2 28927:6 28964:1 28996:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:1 29055:9 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:11 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29316:1 29328:1 29332:37 29333:1 29335:1 29355:1 29357:4 29358:1 29361:2 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:1 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:1 29587:1 29598:1 29612:1 29622:4 29640:2 29650:2 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29842:1 29843:1 29844:1 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29921:1 29929:1 29939:1 29940:6 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 30003:3 30008:2 30009:2 30015:1 30019:30 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30093:1 30094:2 30095:4 30107:1 30129:1 30131:1 30142:2 30147:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:1 179:2 183:2 190:1 193:1 204:1 206:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 279:2 283:5 284:1 290:2 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:3 401:1 402:1 405:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 500:1 504:2 513:2 529:1 539:3 544:1 548:1 555:1 558:1 578:1 583:1 586:1 595:1 596:1 607:1 612:1 641:3 670:3 674:2 680:2 683:1 686:1 717:6 733:1 734:31 739:3 743:1 744:1 745:1 759:1 763:1 777:1 782:2 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:3 925:1 948:3 949:1 956:1 964:2 969:1 978:1 989:3 990:7 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:6 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1207:2 1209:1 1213:1 1224:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:30 1328:1 1331:2 1332:2 1334:1 1337:3 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:3 1497:1 1499:1 1501:1 1504:1 1511:2 1513:7 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:3 1623:2 1627:10 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1692:3 1700:1 1714:1 1715:1 1719:3 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:7 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:6 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:1 2472:2 2473:2 2475:1 2477:5 2482:8 2484:3 2486:7 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2553:1 2557:2 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2639:1 2647:1 2649:3 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2810:2 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:1 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:2 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3113:2 3122:2 3145:14 3149:31 3153:1 3156:3 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:7 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:1 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3808:1 3819:1 3822:1 3841:2 3853:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4010:3 4011:1 4038:1 4044:1 4048:1 4058:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:30 4176:2 4181:1 4195:1 4203:1 4205:1 4228:1 4230:1 4242:1 4247:2 4249:4 4250:2 4261:2 4270:1 4278:1 4283:5 4288:5 4289:2 4297:1 4298:2 4336:1 4343:1 4349:1 4363:1 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:1 4604:1 4613:2 4615:30 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:1 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5046:1 5049:2 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:2 5163:16 5164:2 5177:2 5180:1 5203:5 5210:2 5218:2 5240:2 5241:1 5254:1 5285:4 5287:1 5289:3 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5450:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5976:1 5982:7 5984:1 5990:1 5991:1 5993:1 5998:1 6000:2 6018:2 6029:1 6040:1 6053:2 6058:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6212:1 6228:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:1 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:2 6412:1 6413:1 6419:1 6422:1 6423:1 6429:1 6446:1 6453:1 6466:1 6489:1 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:1 6517:1 6519:2 6520:2 6521:1 6529:1 6562:1 6600:2 6602:1 6610:1 6615:1 6623:3 6626:2 6630:1 6644:2 6653:1 6668:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:6 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:2 6770:1 6771:1 6774:4 6775:7 6776:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:1 6959:1 6962:1 6977:1 6984:1 6990:1 6998:1 7003:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:2 7208:2 7210:1 7215:1 7221:1 7232:1 7244:1 7245:1 7280:1 7286:1 7295:1 7296:1 7321:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:2 7454:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:2 7628:1 7654:1 7661:1 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:10 8073:10 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:3 8132:1 8138:46 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:15 8159:4 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:2 8204:2 8213:1 8221:1 8249:5 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:5 8392:1 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:31 8668:1 8669:1 8677:1 8681:1 8687:1 8691:1 8693:15 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:39 8788:1 8819:2 8830:1 8848:1 8854:1 8860:2 8880:1 8890:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:1 8995:5 8996:1 9010:1 9017:1 9022:2 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9365:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9556:1 9566:1 9589:1 9610:4 9613:1 9632:3 9663:1 9664:4 9671:2 9672:1 9681:1 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:1 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9868:1 9872:1 9874:1 9889:1 9891:1 9892:2 9897:1 9907:1 9920:1 9926:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:7 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10100:1 10106:1 10110:1 10126:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10271:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:30 10390:1 10397:1 10409:1 10419:1 10423:1 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:1 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:4 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10592:2 10599:2 10602:2 10606:1 10614:4 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:6 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:6 10989:1 11013:3 11028:1 11030:1 11037:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:2 11336:1 11350:1 11362:1 11370:1 11396:1 11423:1 11424:7 11437:1 11438:1 11439:1 11442:1 11448:2 11450:1 11458:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:1 11834:2 11836:1 11843:1 11844:1 11845:3 11846:1 11852:2 11856:1 11858:1 11868:1 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11940:5 11948:1 11961:1 11973:1 11976:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:8 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12136:1 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12220:2 12222:1 12229:1 12234:1 12236:5 12237:3 12241:2 12243:1 12245:4 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:6 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:3 12725:2 12726:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:31 13242:1 13244:1 13251:1 13254:4 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:5 13844:5 13851:1 13873:1 13891:1 13898:11 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14254:1 14255:1 14259:6 14262:1 14264:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:6 14605:2 14615:2 14625:1 14634:4 14635:1 14655:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14782:1 14813:4 14849:1 14875:1 14880:1 14894:1 14902:2 14905:1 14908:1 14914:2 14919:1 14920:2 14922:3 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:1 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15091:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:1 15133:1 15141:1 15150:2 15165:1 15173:1 15185:31 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:3 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15704:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15821:1 15825:1 15831:1 15848:2 15891:3 15892:1 15898:1 15906:1 15923:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:1 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:2 16539:1 16585:1 16588:1 16600:1 16611:1 16616:1 16619:12 16622:2 16623:1 16626:1 16650:2 16655:3 16657:3 16660:1 16664:2 16694:2 16699:1 16702:2 16703:1 16705:1 16706:2 16731:11 16746:1 16753:1 16759:1 16760:1 16769:1 16777:3 16838:2 16853:1 16855:1 16862:1 16864:1 16874:2 16891:4 16892:2 16893:1 16897:3 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:7 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17329:1 17330:1 17331:1 17335:2 17367:1 17380:1 17383:1 17386:3 17388:1 17396:1 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:42 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18007:1 18010:1 18025:1 18028:1 18033:1 18036:1 18037:1 18049:2 18051:1 18063:1 18097:1 18101:1 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:2 18415:2 18439:4 18440:1 18448:4 18473:4 18474:1 18488:1 18497:1 18500:1 18535:1 18552:5 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:1 18738:2 18739:1 18744:1 18753:1 18770:1 18773:1 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:4 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:8 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19126:1 19139:1 19142:1 19144:1 19157:1 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2199 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19407:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19514:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19639:2 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:5 19858:5 19863:1 19871:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:5 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:21 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20324:1 20328:4 20332:1 20346:1 20353:2 20354:1 20374:1 20378:1 20394:2 20397:1 20408:1 20417:1 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:6 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:5 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20856:4 20865:1 20866:1 20879:2 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21018:1 21039:1 21063:2 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:1 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21386:2 21388:1 21389:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:4 21900:2 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22033:1 22040:1 22052:2 22059:1 22062:1 22064:1 22065:2 22069:2 22074:1 22076:1 22083:1 22093:1 22103:1 22104:1 22119:1 22122:1 22149:1 22161:2 22170:2 22180:3 22187:1 22189:1 22192:1 22208:1 22209:2 22217:1 22229:1 22231:4 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22345:1 22349:5 22388:1 22419:2 22420:1 22422:1 22429:6 22432:2 22433:1 22437:1 22438:3 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:9 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:5 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:3 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:13 23039:1 23042:2 23048:1 23079:1 23084:11 23086:2 23090:1 23094:1 23107:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:8 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:30 23534:1 23537:2 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23956:31 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24073:1 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:1 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:1 24217:1 24261:1 24267:1 24291:1 24294:1 24315:2 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24558:2 24562:1 24567:1 24581:1 24582:3 24585:1 24591:1 24600:4 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:3 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24977:8 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25142:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25448:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25986:1 25989:2 26001:2 26012:1 26019:2 26027:1 26028:1 26034:2 26037:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:2 26322:4 26325:2 26333:1 26340:1 26347:4 26362:2 26373:2 26377:3 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:12 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26590:2 26591:1 26594:1 26596:1 26618:2 26623:1 26634:2 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:10 26906:1 26910:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27051:1 27090:1 27099:2 27125:2 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:2 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27623:1 27627:6 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:2 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:2 27913:1 27919:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28003:1 28005:1 28011:1 28016:8 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:1 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:2 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:4 28586:1 28588:3 28590:1 28591:6 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:2 28772:2 28784:1 28793:1 28798:2 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:13 28890:1 28892:1 28895:1 28900:1 28911:1 28917:3 28927:6 28964:1 28996:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:9 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:11 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29316:1 29328:1 29332:39 29333:1 29335:1 29355:1 29357:4 29358:1 29361:2 29365:1 29367:5 29368:2 29402:1 29426:3 29430:8 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:1 29587:1 29598:1 29612:1 29622:4 29640:2 29650:2 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29842:1 29843:1 29844:1 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29921:1 29926:1 29929:1 29939:1 29940:6 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 30003:4 30008:2 30009:2 30015:1 30019:31 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30093:1 30094:2 30095:4 30107:1 30129:1 30131:2 30142:2 30147:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:1 179:2 183:2 190:1 193:1 204:1 206:1 207:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 279:2 283:5 284:1 290:2 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:4 401:1 402:2 405:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 500:1 504:2 513:2 529:1 539:3 544:1 548:1 555:1 558:1 578:1 583:1 586:1 595:1 596:1 607:1 612:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 717:6 733:1 734:32 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:2 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:3 925:1 948:3 949:1 956:1 964:2 969:1 978:1 989:3 990:7 995:2 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:7 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1207:2 1209:1 1213:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:31 1328:1 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:2 1382:1 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:4 1497:1 1499:1 1501:1 1504:1 1511:2 1513:8 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1617:1 1618:1 1620:3 1623:2 1627:11 1628:1 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1692:3 1700:1 1714:1 1715:1 1719:3 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:8 1803:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:7 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:2 2472:2 2473:2 2475:1 2477:5 2482:8 2484:3 2486:7 2490:3 2494:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2553:1 2557:2 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2639:1 2647:1 2649:4 2650:3 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:3 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2789:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:1 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:3 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3113:2 3122:2 3145:14 3149:32 3153:1 3156:3 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:7 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:1 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3789:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4010:3 4011:1 4038:1 4044:1 4048:2 4058:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:31 4176:2 4181:1 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4247:2 4249:4 4250:3 4261:2 4270:1 4278:1 4283:5 4288:5 4289:2 4297:1 4298:2 4315:1 4336:1 4343:1 4349:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:1 4604:1 4613:2 4615:31 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:2 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:1 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5032:1 5046:1 5049:2 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5122:1 5127:1 5144:2 5147:2 5163:17 5164:2 5177:2 5180:1 5203:6 5210:2 5218:2 5240:2 5241:1 5254:1 5285:4 5287:1 5289:3 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5450:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5976:1 5982:8 5984:1 5990:1 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6212:1 6228:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:3 6412:1 6413:1 6419:1 6422:1 6423:1 6429:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:1 6519:2 6520:2 6521:1 6529:1 6562:1 6600:2 6602:1 6610:1 6615:1 6623:4 6626:2 6630:1 6644:2 6653:1 6668:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:7 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:2 6770:1 6771:1 6774:4 6775:8 6776:1 6777:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:1 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:2 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:1 7280:1 7286:1 7295:1 7296:1 7321:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:2 7454:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:2 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:11 8073:11 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:4 8132:1 8138:47 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:15 8159:4 8164:1 8170:1 8172:1 8192:1 8193:1 8195:1 8198:2 8204:2 8213:1 8221:1 8249:5 8266:2 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8412:1 8436:1 8440:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8596:1 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:32 8668:1 8669:1 8677:1 8681:1 8687:1 8691:1 8693:15 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:40 8788:1 8819:2 8830:1 8848:1 8854:1 8860:2 8880:1 8890:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9223:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9365:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9556:1 9566:1 9589:1 9610:4 9613:1 9632:3 9663:1 9664:4 9671:2 9672:1 9681:2 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:1 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:2 9892:2 9897:1 9907:1 9920:1 9926:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:8 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10100:1 10106:1 10110:1 10126:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10271:1 10282:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:31 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:4 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10592:2 10599:2 10602:2 10606:1 10614:4 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:7 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11121:1 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:2 11336:1 11350:1 11362:1 11370:1 11396:1 11423:1 11424:8 11437:1 11438:1 11439:1 11442:1 11448:2 11450:1 11458:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:1 11834:2 11836:1 11843:1 11844:1 11845:3 11846:1 11852:2 11856:1 11858:1 11868:2 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11985:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:8 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12136:1 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:3 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:6 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:3 12725:3 12726:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:32 13242:1 13244:1 13251:1 13254:4 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13719:1 13720:1 13728:2 13735:1 13739:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:5 13844:5 13851:1 13873:1 13891:1 13898:11 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14254:1 14255:1 14259:6 14262:1 14264:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:7 14605:2 14615:3 14625:1 14634:4 14635:1 14655:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14782:1 14813:4 14849:1 14875:1 14880:1 14894:1 14902:2 14905:1 14908:1 14914:2 14919:1 14920:2 14922:3 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:1 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15165:1 15173:1 15185:32 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:3 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:1 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15704:1 15706:2 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15821:1 15825:1 15831:2 15848:2 15891:3 15892:1 15898:1 15906:1 15923:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:2 16539:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:12 16622:2 16623:1 16626:1 16650:2 16655:3 16657:3 16660:1 16664:2 16694:2 16699:1 16702:2 16703:1 16705:1 16706:2 16731:12 16746:1 16753:1 16759:1 16760:1 16769:1 16777:3 16838:2 16853:1 16855:1 16862:1 16864:1 16874:2 16891:4 16892:2 16893:1 16897:3 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:8 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17329:1 17330:1 17331:1 17335:2 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:44 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17912:1 17918:1 17980:2 17983:1 17986:1 18007:1 18010:1 18025:1 18028:1 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:1 18101:1 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:1 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:2 18415:2 18439:4 18440:1 18448:4 18473:4 18474:1 18488:1 18497:1 18500:1 18535:1 18552:6 18557:1 18559:2 18587:3 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18770:1 18773:1 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:4 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:9 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19126:1 19139:1 19142:1 19144:1 19157:1 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2243 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19321:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19407:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19514:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19639:2 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:6 19858:5 19863:1 19871:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:6 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:22 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20201:1 20205:4 20207:1 20210:1 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20324:1 20328:4 20332:1 20346:1 20353:2 20354:1 20374:1 20378:1 20394:2 20397:1 20408:1 20417:1 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:7 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:5 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20856:4 20865:1 20866:1 20879:2 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21003:1 21018:1 21039:1 21063:2 21079:1 21084:1 21092:1 21097:1 21136:5 21144:1 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21334:1 21341:2 21345:1 21350:1 21356:1 21362:1 21372:2 21373:2 21380:1 21382:1 21386:2 21388:1 21389:2 21401:1 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:4 21900:2 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22033:1 22040:1 22052:2 22054:1 22059:1 22062:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:1 22093:1 22103:1 22104:1 22118:1 22119:1 22122:1 22149:1 22160:1 22161:2 22170:2 22180:3 22187:1 22189:1 22192:1 22208:1 22209:2 22217:1 22229:1 22231:4 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22345:1 22349:6 22352:1 22376:1 22388:1 22419:2 22420:1 22422:1 22429:7 22432:2 22433:1 22437:1 22438:4 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:9 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:5 22662:4 22663:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:3 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:13 23039:1 23042:2 23048:1 23079:1 23084:12 23086:2 23090:1 23094:1 23107:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:9 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:31 23534:1 23537:2 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23956:32 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24073:1 24074:1 24078:1 24087:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:1 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:2 24217:1 24261:1 24267:1 24291:1 24294:1 24315:2 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24558:2 24562:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:4 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24726:1 24729:2 24744:1 24753:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:3 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24945:1 24967:1 24977:8 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25142:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25415:2 25418:1 25427:1 25431:1 25437:1 25439:4 25441:1 25448:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25505:1 25519:1 25521:1 25530:1 25534:1 25572:1 25581:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:1 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:4 26322:4 26325:2 26333:1 26340:1 26347:4 26362:4 26373:2 26377:3 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:12 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26590:2 26591:1 26594:1 26596:1 26618:2 26623:1 26634:2 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:11 26906:1 26910:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27044:1 27051:1 27090:1 27099:2 27125:2 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27215:2 27219:1 27234:1 27237:2 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27623:1 27627:6 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:3 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:2 27913:1 27919:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:1 28005:1 28011:1 28016:8 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:1 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:2 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:4 28586:1 28588:3 28590:1 28591:6 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:2 28772:2 28784:1 28793:1 28798:2 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:13 28890:1 28892:1 28895:1 28900:1 28911:1 28917:3 28927:6 28964:1 28996:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:10 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:12 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29301:1 29316:1 29328:1 29332:40 29333:1 29335:1 29355:1 29357:4 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:3 29430:9 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29622:4 29640:2 29650:3 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29842:1 29843:1 29844:2 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29921:1 29926:1 29929:1 29939:1 29940:7 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 30003:4 30008:2 30009:2 30015:1 30019:32 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30093:1 30094:2 30095:4 30107:1 30129:1 30131:2 30142:2 30147:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:1 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 269:1 279:3 283:5 284:1 290:2 305:2 306:1 310:1 311:1 341:1 348:1 383:1 386:4 401:1 402:2 405:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 539:3 544:1 548:1 555:1 558:1 578:1 583:1 586:1 595:1 596:1 607:1 612:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 717:6 733:1 734:33 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:2 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:3 925:1 948:3 949:1 956:1 964:3 969:1 978:1 989:3 990:7 995:3 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:8 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1207:2 1209:1 1213:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:32 1328:1 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:3 1382:1 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:4 1497:1 1499:1 1501:1 1504:1 1511:2 1513:9 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:3 1623:2 1627:11 1628:1 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1692:3 1700:1 1714:1 1715:1 1719:4 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:9 1803:1 1804:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:7 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:1 2267:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:8 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:1 2468:2 2469:4 2471:2 2472:2 2473:3 2475:1 2477:5 2482:8 2484:4 2486:7 2490:4 2494:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:2 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2634:1 2639:1 2647:1 2649:4 2650:4 2657:3 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2789:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:3 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:4 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3113:2 3122:2 3145:17 3149:33 3153:1 3156:3 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:7 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4010:3 4011:1 4038:1 4044:1 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:32 4176:2 4181:1 4190:1 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4247:2 4249:4 4250:3 4261:2 4270:1 4278:1 4283:5 4288:5 4289:2 4297:1 4298:2 4315:1 4336:1 4343:1 4349:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4543:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:1 4604:1 4613:2 4615:32 4617:1 4622:1 4626:1 4629:4 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:3 4944:1 4960:1 4965:5 4972:1 5002:1 5012:1 5017:1 5032:1 5046:1 5049:2 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5127:1 5144:2 5147:2 5163:18 5164:2 5177:2 5180:1 5203:6 5210:2 5218:2 5240:2 5241:1 5254:1 5285:4 5287:1 5289:3 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:3 5339:1 5346:1 5375:1 5410:1 5415:2 5431:1 5450:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:1 5938:1 5941:1 5942:1 5961:2 5974:1 5976:1 5982:9 5984:1 5990:1 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6212:1 6228:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:1 6408:3 6412:1 6413:1 6419:1 6422:1 6423:1 6429:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:1 6519:2 6520:2 6521:1 6529:1 6562:2 6600:2 6602:1 6610:1 6615:1 6623:4 6626:2 6630:1 6644:3 6653:1 6654:1 6668:1 6677:1 6708:2 6716:1 6728:1 6736:1 6747:7 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:2 6770:1 6771:1 6774:4 6775:8 6776:1 6777:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:2 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:2 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:2 7280:1 7286:1 7295:1 7296:1 7321:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7434:1 7437:1 7441:2 7454:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:2 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7732:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:11 8073:12 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:4 8132:1 8138:49 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:18 8159:4 8164:1 8170:1 8172:1 8192:1 8193:3 8195:1 8198:2 8204:2 8213:1 8221:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8412:1 8436:1 8440:2 8452:1 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8596:1 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:33 8668:1 8669:1 8677:1 8681:1 8687:1 8691:1 8693:16 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:41 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9223:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:1 9496:2 9519:1 9523:5 9535:4 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9632:3 9663:1 9664:4 9671:2 9672:1 9681:4 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:1 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:2 9892:2 9897:1 9907:1 9920:1 9926:1 9930:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:9 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10100:1 10106:1 10110:1 10126:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:1 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10271:1 10282:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:32 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:4 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10592:2 10599:2 10602:2 10606:1 10614:4 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:7 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11121:1 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:4 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:2 11336:1 11350:1 11362:1 11370:1 11396:1 11423:1 11424:9 11437:1 11438:1 11439:1 11442:1 11448:2 11450:1 11458:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:1 11834:2 11836:1 11843:1 11844:1 11845:3 11846:1 11852:2 11856:1 11858:1 11868:2 11870:4 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11985:2 11989:1 11992:1 11996:1 12001:1 12004:1 12018:8 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:1 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:4 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:8 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12709:1 12717:1 12718:1 12719:3 12725:4 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:33 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13704:2 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:5 13844:5 13851:1 13873:1 13874:1 13891:1 13898:13 13902:1 13904:1 13912:1 13924:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14254:1 14255:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:7 14605:2 14615:4 14625:1 14634:4 14635:1 14655:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14782:1 14813:4 14849:1 14875:1 14880:1 14894:2 14902:2 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:1 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15165:1 15173:1 15185:33 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:3 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:1 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15690:1 15704:1 15706:3 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:1 15815:1 15821:1 15825:1 15831:2 15848:2 15891:3 15892:1 15898:1 15906:1 15923:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:3 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16340:1 16341:5 16346:3 16351:1 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:2 16539:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:14 16622:2 16623:1 16626:1 16650:2 16655:3 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:2 16703:1 16705:1 16706:2 16731:12 16746:1 16753:1 16759:1 16760:1 16769:1 16777:3 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:2 16891:4 16892:2 16893:1 16897:4 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:9 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17324:1 17329:1 17330:1 17331:1 17335:2 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:1 17414:2 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:1 17536:45 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17983:1 17986:1 18007:1 18010:1 18025:1 18028:1 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:1 18101:2 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:4 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:1 18552:6 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18770:1 18773:1 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:4 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:9 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2328 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:1 19450:1 19483:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:1 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19675:1 19688:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:6 19858:5 19863:1 19871:1 19874:1 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:6 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:22 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:1 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20324:1 20328:4 20332:1 20346:1 20353:2 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:8 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:2 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21079:1 21084:1 21092:1 21097:1 21136:5 21139:1 21144:1 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21326:1 21334:1 21341:2 21345:1 21350:1 21356:1 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:1 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:4 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22033:1 22040:1 22052:2 22054:1 22059:1 22062:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:1 22093:1 22103:1 22104:1 22118:1 22119:1 22122:1 22149:1 22160:1 22161:2 22170:2 22180:3 22187:1 22189:1 22192:1 22208:1 22209:2 22217:1 22229:1 22231:4 22238:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22345:1 22349:6 22352:1 22376:1 22388:1 22419:2 22420:1 22422:1 22429:7 22432:2 22433:1 22437:1 22438:4 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:9 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:2 22815:2 22819:1 22821:4 22843:2 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:3 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:13 23039:1 23042:2 23048:1 23079:1 23084:12 23086:2 23090:1 23094:1 23107:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:9 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:32 23534:1 23537:2 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:2 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23956:33 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24073:1 24074:1 24078:1 24087:1 24089:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:1 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:2 24217:1 24261:1 24267:1 24291:1 24294:1 24315:2 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24558:2 24562:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:6 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:5 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24945:1 24967:1 24977:9 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:1 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:4 25106:1 25125:1 25133:2 25142:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25328:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:1 25595:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:4 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:5 25918:3 25923:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:1 26136:1 26160:1 26163:1 26169:1 26179:2 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26312:4 26322:4 26325:2 26333:1 26340:1 26347:4 26362:4 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:12 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26590:2 26591:1 26594:1 26596:1 26618:2 26623:1 26634:2 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:11 26906:1 26910:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27044:1 27051:1 27090:1 27099:2 27125:2 27127:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:2 27219:1 27234:1 27237:2 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:3 27593:1 27595:2 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:3 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:2 27910:1 27913:1 27919:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:1 28005:1 28011:1 28016:8 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:7 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:1 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:4 28586:1 28588:3 28590:1 28591:7 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:2 28772:2 28784:1 28793:1 28798:2 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:13 28890:1 28892:1 28895:1 28900:1 28911:1 28917:3 28927:6 28964:1 28996:1 29009:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:11 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:12 29114:1 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29301:1 29307:1 29316:1 29328:1 29332:41 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:11 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:4 29640:2 29650:4 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29842:1 29843:1 29844:2 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:9 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 30003:4 30008:2 30009:2 30015:1 30019:33 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30093:1 30094:2 30095:4 30107:1 30129:1 30131:2 30142:2 30147:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:2 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 211:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 269:1 279:3 283:5 284:1 290:2 305:2 306:1 310:1 311:1 341:2 348:1 383:1 386:4 401:1 402:2 405:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 539:3 544:1 548:1 555:1 558:1 578:1 583:1 586:1 595:1 596:1 607:1 612:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 717:6 733:1 734:34 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:2 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:1 898:3 925:1 948:3 949:1 956:1 964:3 969:1 978:1 989:3 990:7 995:3 996:1 1007:5 1021:1 1026:4 1034:1 1046:2 1051:3 1054:9 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1207:2 1209:1 1213:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1295:1 1318:1 1320:33 1328:1 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:1 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:3 1382:2 1383:1 1390:1 1392:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1482:4 1497:1 1499:1 1501:1 1504:1 1511:2 1513:10 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:3 1623:2 1627:11 1628:1 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1692:3 1700:1 1714:1 1715:1 1719:4 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:10 1803:1 1804:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:2 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2077:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:7 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:1 2267:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:9 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:2 2472:2 2473:3 2475:1 2477:5 2482:8 2484:4 2486:7 2490:4 2494:1 2495:1 2497:1 2499:1 2503:1 2505:4 2508:3 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:2 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2634:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:3 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:2 2907:2 2914:2 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:34 3153:1 3156:3 3157:1 3172:2 3174:1 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:1 3397:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:33 4176:2 4181:1 4190:1 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4247:2 4249:4 4250:4 4261:2 4270:1 4278:1 4283:5 4288:5 4289:2 4297:1 4298:2 4315:1 4336:1 4343:1 4349:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4543:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:1 4604:1 4613:2 4615:33 4617:1 4622:1 4626:1 4629:5 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:4 4944:1 4960:1 4965:6 4972:1 5002:1 5012:1 5017:1 5032:1 5046:1 5049:2 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5127:1 5144:2 5147:2 5163:19 5164:2 5177:2 5180:1 5203:6 5210:2 5218:2 5240:2 5241:1 5254:1 5285:4 5287:1 5289:3 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5431:1 5450:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:2 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:10 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6199:1 6212:1 6228:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:2 6389:1 6395:1 6398:1 6402:1 6407:2 6408:3 6412:1 6413:1 6419:1 6422:1 6423:1 6429:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:2 6521:1 6529:1 6562:2 6600:2 6602:1 6610:1 6615:1 6623:4 6626:2 6630:1 6644:3 6653:1 6654:1 6668:1 6677:1 6708:2 6716:1 6728:1 6734:1 6736:1 6747:7 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:2 6770:1 6771:1 6774:4 6775:8 6776:1 6777:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:2 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:3 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:2 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:2 7454:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:12 8073:13 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:4 8132:1 8138:51 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:5 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8412:1 8436:1 8440:2 8452:1 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8593:2 8596:1 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:34 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:16 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8752:1 8759:1 8765:1 8777:42 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9047:3 9048:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9223:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9632:3 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:1 9701:2 9703:2 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:1 9800:2 9808:2 9823:1 9825:1 9841:2 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:2 9892:2 9897:1 9907:1 9920:1 9926:1 9930:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:1 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:10 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:1 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10282:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:33 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:1 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:4 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10721:1 10725:2 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:1 10972:7 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11121:1 11125:1 11136:1 11142:2 11174:2 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11273:1 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:10 11437:1 11438:1 11439:1 11442:1 11448:2 11450:1 11458:1 11464:2 11469:3 11471:3 11482:1 11487:1 11498:4 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:2 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11836:1 11843:1 11844:1 11845:4 11846:1 11852:2 11856:1 11858:1 11868:2 11870:5 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:9 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:1 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:4 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:8 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12708:1 12709:1 12717:1 12718:1 12719:3 12725:5 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:2 12852:2 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:34 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13334:1 13346:1 13352:1 13359:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:5 13851:1 13873:1 13874:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14254:1 14255:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:7 14605:2 14615:5 14625:1 14634:4 14635:1 14655:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14782:1 14813:4 14849:1 14856:1 14875:1 14880:1 14894:2 14902:2 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:1 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15165:1 15173:1 15185:34 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:3 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:1 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15686:1 15689:1 15690:1 15704:1 15706:3 15707:1 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15815:1 15821:1 15825:1 15831:2 15848:2 15891:3 15892:1 15898:1 15906:1 15923:1 15924:2 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16340:1 16341:5 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:3 16539:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:15 16622:2 16623:1 16626:1 16650:2 16655:4 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:2 16703:1 16705:1 16706:2 16731:12 16746:1 16753:1 16759:1 16760:1 16769:1 16777:4 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:2 16891:4 16892:2 16893:1 16897:4 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:1 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:10 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17324:1 17329:1 17330:1 17331:1 17335:2 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:1 17532:1 17536:46 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17983:1 17986:1 18007:1 18010:1 18025:1 18028:1 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:1 18101:2 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18264:1 18270:1 18284:1 18294:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:4 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:1 18552:7 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18770:1 18773:1 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:5 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:9 19038:1 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2380 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:1 19483:1 19485:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:6 19858:5 19863:1 19871:1 19874:2 19879:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:7 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20309:1 20317:1 20318:1 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:8 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:1 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21326:1 21334:1 21341:2 21345:1 21350:1 21356:1 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:4 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:1 22040:1 22052:2 22054:1 22059:1 22062:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:1 22093:1 22103:1 22104:1 22118:1 22119:1 22122:1 22149:1 22160:1 22161:2 22170:2 22180:4 22187:1 22189:1 22192:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:1 22300:1 22301:1 22316:1 22339:1 22345:1 22349:7 22352:1 22376:1 22388:1 22419:2 22420:1 22422:1 22429:7 22432:2 22433:1 22437:1 22438:4 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:10 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:2 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:15 23039:1 23042:2 23048:1 23068:1 23079:1 23084:12 23086:2 23090:1 23094:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:9 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:33 23534:1 23537:3 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23956:34 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24073:1 24074:1 24078:1 24087:1 24089:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:2 24217:1 24261:1 24267:1 24291:1 24294:1 24315:2 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:5 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24912:1 24918:1 24939:3 24940:1 24945:1 24967:1 24977:10 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25077:1 25080:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25328:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:1 25595:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:1 25789:1 25791:1 25796:1 25838:1 25842:1 25863:1 25874:1 25877:1 25881:1 25882:1 25883:2 25884:6 25903:1 25915:6 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:2 26136:1 26160:1 26163:1 26169:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26362:4 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:14 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:2 26623:1 26634:2 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:11 26906:1 26910:1 26919:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27044:1 27051:1 27090:1 27099:2 27125:2 27127:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:2 27219:1 27234:1 27237:2 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27361:1 27365:1 27373:1 27385:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27593:1 27595:2 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:4 27841:2 27842:1 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27901:1 27908:2 27910:1 27913:1 27919:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:1 28005:1 28011:1 28016:8 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:4 28586:1 28588:3 28590:1 28591:7 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:2 28772:2 28784:1 28793:1 28798:2 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:13 28890:2 28892:1 28895:1 28900:1 28911:1 28917:3 28927:6 28964:1 28996:1 29009:1 29014:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:12 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:13 29114:2 29148:1 29156:2 29158:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29301:1 29307:1 29316:1 29328:1 29332:42 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:12 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:2 29842:1 29843:1 29844:2 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:10 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 30003:4 30008:2 30009:2 30015:1 30019:34 30026:2 30048:1 30068:1 30085:1 30087:1 30089:2 30093:2 30094:2 30095:5 30107:1 30129:1 30131:2 30142:2 30147:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:2 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 211:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 269:1 279:3 283:5 284:1 290:2 305:2 306:1 310:1 311:1 341:2 348:1 383:1 386:4 401:1 402:2 405:1 411:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 539:3 544:1 548:1 555:1 558:1 578:1 583:1 586:1 595:1 596:1 607:1 612:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 717:6 733:1 734:35 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:3 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:2 898:3 925:1 948:3 949:1 956:1 964:3 969:1 978:1 989:3 990:7 995:3 996:1 1007:5 1021:1 1026:5 1034:1 1046:2 1051:4 1054:10 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1207:2 1209:1 1213:1 1219:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1277:1 1295:1 1318:1 1320:34 1328:1 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:2 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:3 1382:2 1383:1 1390:1 1392:1 1393:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1463:1 1482:4 1497:1 1499:1 1501:1 1504:1 1511:2 1513:10 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:3 1623:2 1627:12 1628:1 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1691:1 1692:3 1700:2 1714:1 1715:1 1719:5 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:10 1803:1 1804:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1989:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:3 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2076:1 2077:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:8 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:1 2267:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:9 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:2 2472:2 2473:3 2475:1 2477:5 2478:1 2482:8 2484:4 2486:7 2490:4 2494:1 2495:1 2497:1 2499:1 2503:1 2505:4 2508:4 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:2 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2634:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:4 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:3 2899:1 2907:2 2914:3 2923:1 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3112:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:35 3153:1 3156:3 3157:1 3172:2 3174:2 3185:1 3188:1 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:2 3397:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:1 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4045:1 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:34 4176:2 4181:1 4190:1 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4245:1 4247:2 4249:4 4250:4 4261:2 4266:1 4270:1 4278:1 4283:5 4288:6 4289:2 4297:1 4298:2 4315:1 4336:1 4343:1 4349:1 4359:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4543:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:1 4604:1 4613:2 4615:34 4617:1 4622:1 4626:1 4629:5 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:7 4839:1 4861:2 4922:1 4929:5 4937:4 4944:1 4960:1 4965:6 4972:1 4988:1 5002:1 5012:1 5017:1 5032:1 5046:1 5049:2 5050:2 5053:2 5055:1 5064:1 5067:3 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5127:1 5144:2 5147:2 5163:19 5164:2 5177:2 5180:1 5203:7 5210:2 5218:2 5228:1 5240:2 5241:1 5243:1 5254:1 5285:4 5287:1 5289:4 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5431:1 5450:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:1 5649:2 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5892:1 5901:1 5903:1 5906:1 5915:2 5916:1 5925:2 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:10 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:1 6079:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6199:1 6212:1 6228:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:3 6389:1 6395:1 6398:1 6402:1 6407:2 6408:3 6412:1 6413:1 6419:1 6422:1 6423:1 6425:1 6429:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:2 6521:1 6529:1 6562:2 6600:2 6602:1 6610:1 6615:1 6623:4 6626:2 6630:1 6644:3 6653:1 6654:1 6668:1 6677:1 6708:2 6716:1 6728:1 6734:1 6736:1 6747:7 6753:1 6758:1 6759:4 6761:1 6762:1 6763:1 6764:2 6768:4 6769:3 6770:1 6771:1 6774:4 6775:9 6776:1 6777:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:2 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:3 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:2 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:2 7454:1 7456:1 7464:1 7465:6 7470:1 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7539:1 7542:1 7548:2 7572:1 7580:1 7588:1 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7688:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:13 8073:13 8078:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:4 8132:1 8138:53 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:5 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8412:1 8436:1 8440:2 8452:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8587:1 8593:3 8596:1 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:35 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:16 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8749:1 8752:1 8759:1 8765:1 8777:43 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9039:1 9047:3 9048:1 9053:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:3 9212:1 9223:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9317:1 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:3 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9632:3 9633:1 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:2 9701:2 9703:2 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:2 9800:2 9808:2 9823:1 9825:1 9841:3 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:2 9892:2 9897:1 9907:1 9920:1 9924:1 9926:1 9930:1 9933:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:2 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:10 10003:2 10004:9 10014:1 10020:1 10024:1 10026:2 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:2 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10282:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:34 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:2 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:5 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10712:1 10721:1 10725:3 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:1 10931:1 10945:1 10953:1 10958:1 10971:2 10972:7 10983:1 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:1 11089:4 11095:1 11107:1 11109:5 11121:1 11125:1 11136:1 11142:2 11174:3 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:6 11233:1 11240:1 11252:1 11266:2 11273:1 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11320:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:10 11437:1 11438:1 11439:1 11442:1 11448:3 11450:1 11458:1 11464:3 11469:3 11471:3 11482:1 11487:1 11498:4 11501:1 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:8 11552:1 11556:1 11559:1 11570:1 11572:3 11574:1 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:3 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11836:1 11843:1 11844:1 11845:4 11846:1 11852:2 11856:1 11858:1 11868:2 11870:5 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11982:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:9 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:4 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:8 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12616:1 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12708:1 12709:1 12717:1 12718:1 12719:3 12725:5 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:3 12852:3 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 12984:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:35 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13325:1 13334:1 13346:1 13352:1 13359:1 13362:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:5 13851:1 13873:1 13874:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13956:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:10 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14252:1 14254:1 14255:1 14257:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:1 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:11 14531:8 14567:1 14605:2 14615:5 14625:2 14634:4 14635:1 14655:1 14683:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14782:1 14806:1 14813:4 14849:1 14856:1 14875:1 14877:1 14880:1 14894:2 14902:2 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14926:1 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:2 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:1 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15165:1 15173:1 15185:35 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15282:1 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:3 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:1 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15677:1 15686:1 15689:1 15690:1 15704:1 15706:3 15707:1 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15815:1 15821:1 15825:1 15831:2 15848:2 15849:1 15891:3 15892:1 15898:1 15906:1 15923:1 15924:3 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:1 16139:5 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16337:1 16340:1 16341:5 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:3 16539:1 16576:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:15 16622:2 16623:1 16626:1 16650:3 16655:4 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:2 16703:2 16705:1 16706:2 16711:1 16731:12 16746:1 16753:1 16759:1 16760:1 16769:1 16777:4 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:2 16891:4 16892:2 16893:1 16897:4 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:1 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:2 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:10 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17324:1 17329:1 17330:1 17331:1 17335:2 17363:1 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:1 17532:1 17536:47 17544:1 17545:2 17549:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17983:1 17986:1 17998:1 18007:1 18010:1 18014:1 18025:1 18028:1 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:1 18101:2 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18250:1 18264:1 18270:1 18284:1 18294:1 18297:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:5 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:2 18552:8 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18770:2 18773:2 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:5 18861:1 18920:1 18924:2 18928:1 18945:1 18953:2 18968:1 18981:1 18995:1 19024:9 19038:2 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2442 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:1 19483:1 19485:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:6 19858:5 19863:1 19871:1 19874:2 19879:2 19913:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:8 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20270:1 20309:1 20317:1 20318:2 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:8 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:1 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21204:1 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21326:1 21334:1 21341:2 21345:1 21350:1 21356:1 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21817:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:4 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:1 22040:1 22052:2 22054:1 22059:1 22062:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:1 22093:1 22103:1 22104:1 22118:1 22119:1 22122:1 22126:1 22149:1 22160:1 22161:2 22170:2 22180:4 22187:1 22189:1 22192:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22256:1 22257:1 22266:1 22269:1 22271:1 22281:3 22285:1 22293:4 22298:2 22300:1 22301:1 22316:1 22339:1 22345:1 22349:8 22352:1 22376:1 22388:1 22419:2 22420:1 22422:1 22429:8 22432:2 22433:1 22437:1 22438:5 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:10 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:1 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:2 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:15 23039:1 23042:2 23048:1 23068:1 23079:1 23084:12 23086:2 23090:1 23094:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:2 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:10 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:34 23534:1 23537:3 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:5 23672:2 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23924:1 23956:35 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24073:1 24074:1 24078:1 24087:1 24089:1 24102:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24210:2 24217:1 24235:1 24261:1 24267:1 24291:1 24294:1 24315:2 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24566:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24704:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:6 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24909:1 24912:1 24918:1 24939:3 24940:1 24945:1 24967:1 24977:10 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25055:1 25077:1 25080:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25164:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25328:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25492:1 25494:1 25500:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:1 25595:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:2 25789:1 25791:1 25796:1 25838:1 25842:1 25845:1 25863:1 25874:1 25877:2 25881:1 25882:1 25883:2 25884:6 25903:1 25915:6 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:2 26136:1 26160:2 26163:1 26169:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26362:4 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:14 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:3 26623:1 26634:3 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:11 26906:1 26910:1 26919:1 26922:1 26926:2 26940:1 26950:1 26952:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:1 27044:1 27051:1 27090:1 27099:2 27125:2 27127:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:2 27219:1 27234:1 27237:2 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27343:1 27361:1 27365:1 27373:1 27385:1 27386:1 27400:1 27410:1 27416:1 27419:1 27449:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27591:1 27593:1 27595:2 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:4 27841:2 27842:2 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27888:1 27901:1 27908:2 27910:1 27913:1 27919:1 27929:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:1 28005:1 28011:1 28016:8 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:1 28095:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:5 28586:1 28588:3 28590:1 28591:7 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28687:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:2 28772:2 28784:1 28793:1 28798:2 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:14 28890:2 28892:1 28895:1 28900:1 28911:1 28917:3 28926:1 28927:6 28964:1 28996:1 29009:1 29014:1 29018:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:12 29061:3 29071:1 29074:1 29077:1 29088:1 29089:1 29096:1 29100:1 29105:14 29114:2 29148:1 29156:2 29158:1 29163:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:1 29280:1 29296:1 29301:1 29307:1 29316:1 29328:1 29332:43 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:13 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:3 29842:1 29843:1 29844:2 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:10 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 29988:1 30003:4 30008:2 30009:2 30015:1 30019:35 30026:2 30048:2 30068:1 30070:1 30085:1 30087:1 30089:2 30093:2 30094:2 30095:5 30107:1 30129:1 30131:2 30142:2 30147:1 30153:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:2 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 211:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 269:1 279:3 283:5 284:1 290:2 305:2 306:1 310:1 311:1 341:2 348:1 383:1 386:4 401:1 402:2 405:1 411:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 539:4 544:1 548:1 555:1 558:1 578:1 583:1 586:1 595:1 596:1 607:1 612:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 717:6 733:1 734:36 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:3 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:2 898:3 925:1 948:3 949:1 956:1 964:3 969:1 972:1 978:1 989:3 990:7 995:3 996:1 1007:5 1021:1 1026:5 1034:1 1046:2 1051:4 1054:10 1058:1 1059:2 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:2 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1207:2 1209:1 1213:1 1219:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1277:1 1295:1 1318:1 1320:35 1328:1 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:2 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:3 1382:2 1383:1 1390:1 1392:1 1393:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:1 1444:1 1460:1 1462:2 1463:1 1482:4 1497:1 1499:1 1501:1 1504:1 1511:2 1513:10 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:3 1623:2 1627:13 1628:1 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1691:1 1692:3 1700:2 1714:1 1715:1 1719:6 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:2 1767:1 1788:1 1794:1 1798:1 1799:10 1803:1 1804:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1884:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:2 1972:2 1978:1 1979:1 1989:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:3 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2073:1 2076:1 2077:1 2084:1 2096:1 2097:1 2108:1 2109:1 2128:8 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:2 2267:1 2268:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:9 2359:2 2362:1 2387:1 2393:1 2423:1 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:3 2472:2 2473:3 2475:1 2477:5 2478:1 2482:8 2484:4 2486:7 2490:4 2494:1 2495:2 2497:1 2499:1 2503:1 2505:4 2508:4 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:3 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2634:1 2638:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:4 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:3 2899:1 2907:2 2914:3 2923:1 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:2 3069:2 3073:1 3079:1 3099:2 3102:1 3112:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:36 3153:1 3156:3 3157:1 3172:2 3174:2 3185:1 3188:2 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:2 3397:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:1 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:2 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4045:1 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:35 4176:2 4181:1 4190:1 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4245:1 4247:2 4249:4 4250:4 4261:2 4266:1 4270:1 4278:1 4283:6 4288:7 4289:2 4297:1 4298:2 4315:1 4334:1 4336:1 4343:1 4349:1 4359:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4445:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4543:1 4546:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:1 4604:1 4613:2 4615:35 4617:1 4622:1 4626:1 4629:5 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:8 4839:2 4861:2 4922:1 4929:6 4937:4 4944:1 4960:1 4965:6 4972:1 4988:1 5002:1 5012:1 5017:1 5020:1 5032:1 5046:1 5049:3 5050:2 5053:2 5055:1 5064:1 5067:4 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5127:1 5144:2 5147:2 5163:19 5164:2 5177:2 5180:1 5203:7 5210:2 5218:2 5228:1 5240:2 5241:1 5243:1 5254:1 5285:4 5287:1 5289:4 5300:4 5301:4 5302:2 5305:1 5309:5 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5418:1 5431:1 5450:1 5464:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:2 5649:2 5672:1 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5892:1 5901:1 5903:1 5906:1 5915:2 5916:1 5921:1 5925:2 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:10 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:2 6079:1 6089:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6199:1 6212:1 6228:1 6229:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:3 6389:1 6395:1 6398:1 6402:1 6407:2 6408:3 6412:1 6413:1 6419:1 6422:1 6423:1 6425:1 6429:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:2 6521:1 6529:1 6562:2 6600:3 6602:1 6610:1 6615:1 6623:4 6626:2 6630:1 6644:3 6653:1 6654:1 6668:1 6677:1 6708:2 6716:1 6728:1 6734:1 6736:1 6747:7 6753:1 6758:1 6759:5 6761:1 6762:1 6763:1 6764:2 6765:1 6768:4 6769:3 6770:1 6771:1 6774:4 6775:9 6776:1 6777:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:2 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:3 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:2 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:1 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:3 7454:1 7456:1 7464:1 7465:6 7470:2 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7539:1 7542:1 7548:2 7572:1 7580:1 7588:2 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7688:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7763:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8027:1 8037:1 8055:3 8072:13 8073:13 8078:1 8091:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:4 8132:1 8138:54 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:5 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8412:1 8436:1 8440:2 8452:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8587:1 8593:3 8596:1 8612:2 8622:1 8630:1 8633:1 8644:1 8659:1 8662:36 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:16 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8749:1 8752:1 8759:1 8765:1 8777:44 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9039:1 9047:3 9048:1 9053:1 9054:1 9064:2 9066:1 9067:1 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:4 9212:1 9223:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9317:1 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:4 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9632:3 9633:1 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:2 9701:2 9703:2 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:2 9800:2 9808:2 9823:1 9825:1 9841:3 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:2 9892:2 9897:1 9907:1 9920:1 9924:1 9926:1 9930:1 9933:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:2 9972:1 9977:1 9978:1 9986:1 9990:1 9991:1 9992:10 10003:2 10004:10 10014:1 10020:1 10024:1 10026:3 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:2 10135:1 10136:1 10137:2 10148:1 10157:1 10169:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10282:1 10293:1 10298:1 10309:1 10331:1 10343:1 10356:1 10357:1 10379:35 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:2 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:5 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:1 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10712:1 10721:1 10725:3 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10869:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:2 10931:1 10945:1 10953:1 10958:1 10971:2 10972:7 10983:1 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:2 11089:4 11095:1 11107:1 11109:5 11121:1 11125:1 11136:1 11142:2 11174:3 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:7 11233:1 11240:1 11252:1 11266:2 11273:1 11274:1 11281:1 11282:1 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11320:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:10 11437:1 11438:1 11439:1 11442:1 11448:3 11450:1 11458:1 11464:3 11469:3 11471:3 11482:1 11487:1 11498:4 11501:1 11506:1 11515:1 11524:1 11526:2 11530:1 11531:1 11537:1 11547:1 11550:9 11552:1 11556:1 11559:1 11570:1 11572:3 11574:1 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:3 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11836:1 11843:1 11844:1 11845:4 11846:1 11852:2 11856:1 11858:1 11868:2 11870:5 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11982:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:9 12035:2 12036:2 12064:1 12071:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:4 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:8 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12616:1 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12708:1 12709:1 12714:1 12717:2 12718:1 12719:3 12725:5 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:3 12852:3 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 12984:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:36 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13325:1 13334:1 13346:1 13352:1 13359:1 13362:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:2 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:6 13851:1 13873:1 13874:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13956:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:2 14094:1 14100:1 14103:1 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:2 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:11 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14252:1 14254:1 14255:1 14257:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:2 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:12 14531:8 14567:1 14605:2 14615:5 14625:2 14634:4 14635:1 14655:1 14683:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14778:1 14782:1 14806:1 14813:4 14849:1 14856:1 14875:1 14877:1 14880:1 14894:2 14902:2 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14926:1 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:2 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:2 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15151:1 15165:1 15173:1 15185:36 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15282:1 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:4 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:1 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15677:1 15686:1 15689:1 15690:1 15704:1 15706:3 15707:1 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15815:1 15821:1 15825:1 15831:2 15848:2 15849:1 15891:3 15892:1 15898:1 15906:1 15923:1 15924:3 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16003:1 16008:1 16010:1 16028:1 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:2 16139:6 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16265:1 16273:1 16281:1 16285:2 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16337:1 16340:1 16341:5 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:4 16539:1 16576:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:15 16622:2 16623:1 16626:1 16650:3 16655:4 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:2 16703:2 16705:1 16706:2 16711:1 16731:12 16746:1 16753:1 16758:1 16759:1 16760:1 16769:1 16777:4 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:2 16891:4 16892:2 16893:1 16897:4 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:2 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:2 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:3 17242:1 17252:1 17256:10 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:1 17324:1 17329:1 17330:1 17331:1 17335:2 17363:1 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:2 17532:1 17536:48 17544:1 17545:2 17549:1 17556:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17983:1 17986:1 17998:1 18007:1 18010:1 18014:1 18025:1 18028:1 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:1 18101:2 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18250:1 18264:1 18270:1 18282:1 18284:1 18294:1 18297:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:5 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:2 18552:8 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18770:2 18773:2 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:5 18861:1 18920:1 18924:2 18928:1 18945:2 18953:2 18968:1 18981:1 18995:1 19024:9 19038:2 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2575 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:2 19483:1 19485:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19790:1 19821:1 19826:6 19858:5 19863:1 19871:1 19874:2 19879:2 19913:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:8 20033:4 20063:1 20065:4 20085:1 20096:2 20100:1 20111:1 20112:1 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20270:1 20309:1 20317:1 20318:2 20321:1 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:2 20672:8 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:2 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20944:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:1 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21204:1 21218:1 21231:1 21252:1 21268:1 21281:1 21282:2 21286:1 21306:1 21312:2 21326:1 21334:1 21341:2 21345:1 21350:1 21356:1 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21817:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:4 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21964:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:1 22040:1 22052:2 22054:1 22059:1 22062:1 22063:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:1 22093:1 22103:1 22104:1 22118:1 22119:1 22122:1 22126:1 22149:1 22160:1 22161:2 22170:2 22180:4 22187:1 22189:1 22192:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22256:1 22257:1 22266:1 22269:1 22270:1 22271:1 22281:3 22285:1 22293:4 22298:2 22300:1 22301:1 22316:1 22339:1 22345:1 22349:8 22352:1 22360:1 22376:1 22388:1 22419:2 22420:1 22422:1 22429:8 22432:2 22433:1 22437:1 22438:5 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:11 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:2 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:2 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:15 23039:1 23042:2 23048:1 23068:1 23079:1 23084:12 23086:2 23090:1 23094:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:2 23235:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:10 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:35 23534:1 23537:3 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:6 23672:3 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23924:1 23956:36 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24005:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24063:1 24073:1 24074:1 24078:1 24087:1 24089:1 24102:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24186:1 24210:2 24217:1 24235:1 24261:1 24267:1 24291:1 24294:1 24315:3 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24566:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24704:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24762:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:7 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24909:1 24912:1 24918:1 24939:3 24940:1 24945:1 24967:1 24977:10 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25055:1 25077:1 25080:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25164:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:2 25309:5 25312:1 25313:1 25315:2 25328:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25414:1 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25481:1 25492:1 25494:1 25500:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:1 25595:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:2 25789:1 25791:1 25796:1 25838:1 25842:1 25845:1 25863:1 25874:1 25877:2 25881:1 25882:1 25883:2 25884:6 25903:1 25915:6 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26069:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:2 26136:1 26160:2 26163:1 26169:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26362:4 26363:1 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:14 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:3 26623:1 26634:3 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:11 26906:1 26910:1 26919:1 26922:1 26926:3 26940:1 26950:1 26952:1 26957:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:2 27044:1 27051:1 27090:1 27099:2 27125:2 27127:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:2 27219:1 27234:1 27237:2 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27343:1 27361:1 27365:1 27373:1 27385:1 27386:1 27400:1 27410:1 27416:1 27419:1 27449:1 27454:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27591:1 27593:1 27595:2 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27785:1 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:4 27841:2 27842:2 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27888:1 27901:1 27908:2 27910:1 27913:1 27919:1 27929:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:2 28005:1 28011:1 28016:8 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:2 28095:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:5 28586:1 28588:3 28590:1 28591:7 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28687:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:3 28772:2 28784:1 28793:1 28798:2 28799:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:14 28890:2 28892:1 28895:1 28900:1 28911:1 28917:4 28926:1 28927:6 28964:1 28996:1 29009:1 29014:1 29018:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:12 29061:3 29071:1 29074:1 29077:1 29088:2 29089:1 29096:1 29100:1 29105:14 29114:2 29148:1 29156:2 29158:1 29163:1 29166:1 29174:1 29182:2 29202:1 29226:1 29237:2 29269:2 29280:1 29296:1 29301:1 29307:1 29316:1 29328:1 29332:44 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:13 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:3 29842:1 29843:1 29844:2 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:10 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 29988:1 30003:4 30008:2 30009:2 30015:1 30019:36 30026:2 30048:2 30068:1 30070:1 30085:1 30087:1 30089:2 30093:2 30094:2 30095:5 30107:1 30121:1 30129:1 30131:2 30142:2 30147:1 30153:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:2 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 211:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 269:1 279:3 283:5 284:1 290:2 305:2 306:1 310:1 311:2 341:2 348:1 383:1 386:4 401:1 402:2 405:1 411:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 539:4 544:1 548:1 555:1 558:1 578:2 583:1 586:1 595:1 596:1 607:1 612:1 613:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 707:1 717:6 733:1 734:37 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:3 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:2 898:3 925:1 948:3 949:1 956:1 964:3 969:1 972:1 978:1 989:3 990:7 995:3 996:1 1007:5 1021:1 1026:5 1034:1 1046:2 1051:4 1054:10 1058:1 1059:3 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:3 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1207:2 1209:1 1213:1 1219:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1277:1 1295:1 1318:1 1320:36 1328:1 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:2 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:3 1382:2 1383:1 1390:1 1392:1 1393:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:2 1444:1 1460:1 1462:2 1463:1 1482:4 1497:1 1499:1 1501:1 1504:1 1511:2 1513:11 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:3 1623:2 1627:16 1628:1 1629:1 1632:1 1646:1 1649:1 1653:1 1660:2 1661:1 1663:1 1691:1 1692:3 1700:2 1714:1 1715:1 1719:6 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:3 1767:1 1788:1 1794:1 1798:1 1799:11 1803:1 1804:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1884:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:3 1972:2 1978:1 1979:1 1989:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:3 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2073:1 2076:1 2077:1 2081:1 2084:1 2089:1 2091:1 2096:1 2097:1 2108:1 2109:1 2128:8 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:1 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2266:2 2267:1 2268:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:10 2359:3 2362:1 2387:1 2393:2 2423:1 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:3 2472:2 2473:3 2475:1 2477:5 2478:1 2482:9 2484:4 2486:7 2490:4 2494:1 2495:3 2497:1 2499:1 2503:1 2505:4 2508:4 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:3 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:1 2632:1 2634:1 2638:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:4 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2722:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2804:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:3 2899:1 2907:2 2914:3 2923:1 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:4 3069:2 3073:1 3079:1 3099:2 3102:1 3112:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:37 3153:1 3156:3 3157:1 3172:2 3174:2 3175:1 3185:1 3188:2 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3237:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:2 3397:1 3438:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:2 3534:1 3535:1 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:2 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4045:2 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4170:1 4175:36 4176:2 4181:1 4190:2 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4245:1 4247:2 4249:4 4250:5 4261:2 4266:1 4270:2 4278:1 4283:6 4288:7 4289:2 4297:1 4298:2 4299:1 4315:1 4334:1 4336:1 4343:1 4349:1 4359:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:1 4424:2 4428:1 4429:1 4432:1 4437:1 4445:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:3 4489:1 4490:3 4508:1 4529:1 4543:1 4546:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:2 4604:1 4613:2 4615:36 4617:1 4622:2 4626:1 4629:5 4638:1 4645:1 4656:1 4659:1 4663:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:8 4839:2 4861:2 4897:1 4922:1 4929:6 4937:4 4944:1 4960:1 4965:6 4972:1 4988:1 5002:1 5012:1 5017:1 5019:1 5020:1 5032:1 5046:1 5049:5 5050:2 5053:2 5055:1 5061:1 5064:1 5067:4 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5127:1 5144:3 5147:2 5163:19 5164:2 5177:2 5180:1 5203:7 5210:2 5218:2 5228:1 5240:2 5241:1 5243:1 5254:1 5285:4 5287:1 5289:5 5300:4 5301:4 5302:2 5305:1 5309:6 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5418:1 5431:1 5450:1 5464:1 5474:1 5487:1 5507:1 5531:1 5545:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:2 5649:2 5672:1 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5892:1 5901:1 5903:1 5906:1 5915:2 5916:1 5921:1 5925:2 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:11 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:2 6079:1 6089:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6199:1 6212:1 6228:1 6229:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6372:2 6377:2 6386:3 6389:1 6395:1 6398:1 6402:1 6407:2 6408:4 6412:1 6413:1 6419:1 6422:1 6423:1 6425:1 6429:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:3 6521:1 6529:1 6562:2 6600:5 6602:1 6610:1 6615:1 6623:4 6626:2 6630:1 6644:3 6653:1 6654:1 6668:1 6677:1 6708:2 6716:1 6728:1 6734:1 6736:1 6747:8 6752:1 6753:1 6758:2 6759:5 6761:2 6762:1 6763:1 6764:2 6765:1 6768:5 6769:3 6770:1 6771:1 6774:4 6775:9 6776:1 6777:1 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:2 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:3 7192:1 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:2 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:2 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:5 7454:1 7456:1 7464:1 7465:6 7470:2 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7539:1 7542:1 7548:2 7572:1 7580:1 7588:2 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7688:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7763:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8000:1 8027:1 8037:1 8055:3 8072:13 8073:13 8078:1 8091:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:3 8128:4 8132:1 8138:56 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:6 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:2 8315:1 8324:3 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8412:1 8436:1 8440:2 8452:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8587:1 8593:3 8596:1 8612:2 8622:1 8630:2 8633:1 8634:1 8644:1 8659:1 8662:36 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:16 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8749:1 8752:1 8759:1 8765:1 8777:45 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9039:1 9047:3 9048:1 9053:1 9054:1 9064:2 9066:1 9067:2 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:4 9212:1 9223:1 9225:1 9230:2 9273:1 9284:3 9285:1 9287:1 9310:2 9317:1 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:4 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9632:3 9633:1 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:2 9701:2 9703:2 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9751:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:2 9800:2 9808:2 9823:1 9825:1 9841:3 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:3 9892:2 9897:1 9907:1 9920:1 9924:1 9926:1 9930:1 9933:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:2 9972:1 9977:1 9978:1 9984:1 9986:1 9990:1 9991:1 9992:11 10003:2 10004:11 10014:1 10020:1 10024:1 10026:3 10028:1 10032:1 10039:1 10041:1 10043:3 10046:1 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:2 10135:1 10136:1 10137:2 10148:1 10152:1 10157:1 10169:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10282:1 10293:1 10298:1 10309:1 10331:2 10343:1 10356:1 10357:1 10379:36 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:2 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:5 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:2 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10712:1 10721:1 10725:3 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10862:2 10865:1 10868:1 10869:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:2 10931:1 10945:1 10953:1 10958:1 10971:2 10972:8 10983:1 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:2 11089:4 11095:1 11107:1 11109:5 11121:1 11125:1 11136:1 11142:2 11174:3 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:8 11233:1 11240:1 11252:1 11256:1 11266:2 11273:1 11274:1 11281:1 11282:2 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11320:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:11 11437:1 11438:1 11439:1 11442:1 11448:3 11450:1 11458:1 11464:3 11469:3 11471:3 11482:1 11487:1 11498:5 11501:1 11506:1 11515:1 11524:2 11526:2 11530:1 11531:1 11537:1 11547:1 11550:9 11552:1 11556:1 11559:1 11570:1 11572:3 11574:1 11576:4 11577:1 11587:1 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:3 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11836:1 11843:1 11844:1 11845:4 11846:1 11852:2 11856:1 11858:1 11868:2 11870:5 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11904:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11982:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:10 12035:2 12036:2 12064:1 12071:1 12090:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:4 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:9 12297:1 12298:1 12318:1 12319:1 12325:2 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12455:1 12463:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12616:1 12619:1 12623:1 12635:4 12658:1 12662:1 12667:1 12691:1 12700:1 12701:1 12708:1 12709:1 12714:1 12717:2 12718:1 12719:3 12725:6 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:3 12852:3 12855:5 12868:1 12884:1 12905:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 12984:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13178:1 13180:1 13211:1 13238:3 13240:37 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13325:1 13334:1 13346:1 13352:1 13359:1 13362:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:3 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:12 13699:1 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:6 13851:1 13873:1 13874:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13956:1 13995:1 14005:1 14006:1 14007:2 14017:1 14051:1 14065:3 14067:4 14071:3 14094:1 14100:1 14103:2 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:3 14173:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:12 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14252:1 14254:1 14255:1 14257:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:2 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:13 14531:8 14567:1 14605:2 14614:1 14615:5 14625:2 14634:4 14635:1 14655:1 14683:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14749:1 14757:2 14765:1 14769:1 14777:1 14778:1 14782:1 14806:1 14813:4 14849:1 14856:1 14875:1 14877:1 14880:1 14894:2 14902:2 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14926:1 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:2 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:1 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:2 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15151:1 15165:1 15173:1 15185:37 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:1 15274:1 15276:1 15280:5 15282:1 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:6 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:2 15518:1 15528:1 15545:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15677:1 15686:1 15689:1 15690:1 15704:1 15706:3 15707:1 15709:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15815:1 15821:1 15825:1 15831:2 15848:2 15849:1 15891:3 15892:1 15898:1 15906:1 15923:1 15924:3 15943:1 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16003:1 16008:1 16010:1 16028:2 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:2 16139:6 16144:2 16148:1 16164:1 16179:1 16186:1 16209:1 16227:1 16259:1 16263:1 16265:1 16273:1 16281:1 16284:1 16285:3 16300:1 16303:1 16310:4 16324:1 16325:1 16329:1 16337:1 16340:1 16341:5 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:5 16539:1 16576:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:15 16622:2 16623:1 16626:1 16650:3 16655:4 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:3 16703:2 16705:1 16706:2 16711:1 16731:12 16746:1 16753:1 16758:1 16759:1 16760:1 16769:1 16777:4 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:2 16891:4 16892:2 16893:1 16897:4 16898:1 16904:1 16905:3 16906:1 16907:2 16910:1 16926:1 16929:1 16946:2 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:2 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:4 17242:1 17252:1 17256:11 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:3 17324:1 17329:1 17330:1 17331:1 17335:2 17363:1 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:2 17532:1 17536:49 17544:1 17545:2 17549:1 17556:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17796:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17983:1 17986:1 17998:1 18007:1 18010:1 18014:1 18025:1 18028:1 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:2 18101:2 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18250:1 18264:1 18268:1 18270:1 18282:1 18284:1 18294:1 18297:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:5 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:2 18552:8 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18770:2 18773:2 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:5 18861:1 18920:1 18924:2 18928:1 18945:2 18953:2 18968:1 18981:1 18988:1 18995:1 19024:9 19038:2 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2607 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:2 19459:1 19483:1 19485:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19783:1 19790:1 19821:1 19826:6 19858:5 19863:1 19871:1 19874:2 19879:2 19913:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:2 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:8 20033:4 20063:1 20065:5 20085:1 20096:2 20100:1 20111:1 20112:1 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20270:1 20309:1 20317:1 20318:2 20321:1 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20425:1 20432:1 20435:1 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:3 20672:8 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:3 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20944:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:1 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21204:1 21218:1 21231:1 21252:1 21268:1 21281:1 21282:3 21286:1 21306:1 21312:2 21326:1 21334:1 21341:2 21345:2 21350:1 21356:1 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:4 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21817:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:5 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21964:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:2 22040:1 22052:2 22054:1 22059:1 22062:1 22063:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:2 22093:1 22103:1 22104:1 22118:1 22119:1 22122:2 22126:1 22149:1 22160:1 22161:2 22170:2 22180:4 22187:1 22189:1 22192:1 22193:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22256:1 22257:1 22266:1 22269:1 22270:1 22271:1 22281:3 22285:1 22293:4 22298:2 22300:1 22301:1 22316:1 22339:1 22345:1 22349:8 22352:1 22360:1 22376:1 22388:1 22419:2 22420:1 22422:1 22429:8 22432:2 22433:1 22437:1 22438:5 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:12 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:2 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:3 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:15 23039:2 23042:2 23048:1 23068:1 23079:1 23084:12 23086:2 23090:1 23094:1 23101:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:2 23235:1 23244:3 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:10 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23467:1 23486:1 23491:1 23497:1 23503:1 23507:1 23508:1 23511:1 23516:36 23534:1 23537:3 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:6 23672:3 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23760:1 23796:1 23799:3 23812:3 23821:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23924:1 23956:37 23966:1 23975:3 23977:1 23985:1 24001:1 24003:1 24005:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24045:1 24063:1 24073:1 24074:1 24078:1 24087:1 24089:1 24102:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:2 24186:1 24210:2 24217:1 24235:1 24261:1 24267:1 24291:1 24294:1 24315:5 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24566:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24704:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24762:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:7 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24909:1 24912:1 24918:1 24939:3 24940:1 24945:1 24967:1 24977:10 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25040:1 25055:2 25077:1 25080:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25164:1 25171:1 25185:1 25189:1 25192:3 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25242:1 25252:1 25256:1 25289:3 25291:1 25292:2 25300:1 25301:1 25304:3 25309:5 25312:1 25313:1 25315:2 25328:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25414:1 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25481:1 25492:1 25494:1 25500:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:3 25595:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:2 25789:1 25791:1 25796:1 25838:1 25842:1 25845:1 25863:1 25874:1 25877:2 25881:1 25882:1 25883:2 25884:6 25903:1 25915:6 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26069:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:2 26136:1 26160:2 26163:1 26169:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26358:1 26362:4 26363:1 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:14 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26512:1 26543:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:3 26623:1 26634:3 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:2 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:11 26906:1 26910:1 26919:1 26922:1 26926:3 26940:1 26950:1 26952:1 26957:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:2 27044:1 27051:1 27090:1 27099:2 27106:1 27125:2 27127:1 27141:3 27158:1 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:3 27219:1 27234:1 27237:4 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27343:1 27361:1 27365:1 27373:1 27385:1 27386:1 27400:1 27410:1 27416:1 27419:1 27449:1 27454:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27591:1 27593:1 27595:2 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27704:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27785:1 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:5 27841:2 27842:2 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27888:1 27901:1 27908:2 27910:1 27913:1 27919:1 27929:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:2 28005:1 28011:1 28016:9 28020:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:3 28095:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28174:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28286:4 28314:1 28316:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:5 28586:1 28588:3 28590:1 28591:7 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28687:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:5 28772:2 28784:1 28793:1 28798:2 28799:1 28812:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:2 28866:1 28869:1 28872:1 28874:3 28883:1 28888:15 28890:2 28892:1 28895:1 28900:1 28911:1 28917:6 28926:1 28927:6 28964:1 28996:1 29009:1 29014:1 29018:1 29019:4 29037:1 29048:1 29050:1 29051:2 29055:12 29061:3 29071:1 29074:1 29077:1 29088:2 29089:1 29096:1 29100:1 29105:14 29114:2 29148:1 29156:2 29158:2 29163:1 29166:1 29174:1 29176:1 29182:2 29202:1 29226:1 29237:2 29269:2 29280:1 29296:1 29301:1 29307:1 29316:1 29328:1 29332:45 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:13 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29497:1 29524:1 29539:1 29548:1 29554:2 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:3 29842:1 29843:1 29844:3 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:10 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 29988:1 30003:4 30008:2 30009:2 30015:2 30019:37 30026:2 30048:2 30062:1 30068:1 30070:1 30085:1 30087:1 30089:2 30093:2 30094:2 30095:5 30096:1 30107:1 30121:1 30129:1 30131:2 30142:2 30147:2 30153:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:1 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:2 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 211:1 212:1 220:1 227:2 237:1 240:1 241:1 255:1 263:2 269:1 279:3 283:5 284:1 290:2 305:2 306:1 310:1 311:2 341:2 348:1 383:1 386:4 401:1 402:2 405:1 411:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 538:1 539:4 544:1 548:1 555:1 558:1 578:2 583:1 586:1 595:1 596:1 607:1 612:1 613:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 707:1 717:6 733:1 734:38 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:3 798:2 805:1 808:2 813:2 822:3 827:1 865:2 884:2 887:1 890:3 893:2 895:1 897:2 898:3 925:1 948:3 949:1 956:1 964:3 969:1 972:1 978:1 989:3 990:7 995:3 996:1 1007:5 1021:1 1026:5 1034:1 1046:2 1051:4 1054:10 1058:1 1059:3 1066:1 1072:2 1074:2 1077:3 1095:2 1098:1 1102:2 1122:1 1125:3 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1207:2 1209:1 1213:1 1219:1 1221:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:3 1277:1 1293:1 1295:1 1318:1 1320:37 1328:2 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:2 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:4 1382:2 1383:1 1390:1 1392:1 1393:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:2 1444:2 1460:2 1462:2 1463:1 1482:4 1496:1 1497:1 1499:1 1501:1 1504:1 1511:2 1513:11 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:4 1623:2 1627:17 1628:1 1629:1 1632:1 1646:1 1648:1 1649:1 1653:1 1660:2 1661:1 1663:1 1691:1 1692:3 1700:2 1714:1 1715:1 1719:6 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:3 1767:1 1788:1 1794:1 1798:1 1799:11 1803:1 1804:1 1805:1 1806:2 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1884:1 1892:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:3 1972:2 1978:1 1979:1 1989:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:3 2024:1 2030:1 2036:2 2045:2 2054:2 2056:1 2073:1 2076:1 2077:1 2081:1 2084:1 2089:1 2091:1 2096:1 2097:2 2108:1 2109:1 2116:1 2128:8 2147:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:2 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2261:1 2266:2 2267:1 2268:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:10 2359:3 2362:1 2387:1 2393:2 2423:1 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:3 2472:2 2473:3 2475:1 2477:5 2478:1 2482:9 2484:5 2486:7 2490:5 2494:1 2495:3 2497:1 2499:1 2503:1 2505:4 2508:4 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:3 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:2 2632:1 2634:1 2638:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:4 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2722:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2804:1 2807:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2889:1 2890:2 2896:3 2899:1 2907:2 2914:3 2923:1 2924:2 2930:1 2932:1 2935:1 2942:3 2944:1 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:4 3069:2 3073:1 3079:1 3099:2 3102:1 3112:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:38 3153:1 3156:3 3157:1 3172:2 3174:2 3175:1 3185:1 3188:2 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3237:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:2 3397:1 3438:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:2 3534:1 3535:2 3544:1 3547:3 3548:1 3554:1 3560:3 3569:1 3576:2 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3729:1 3731:1 3734:2 3747:1 3750:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:2 3962:2 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4045:2 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4153:1 4170:1 4175:37 4176:2 4181:1 4190:2 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4245:1 4247:2 4249:4 4250:6 4261:2 4266:1 4270:2 4278:1 4283:6 4288:7 4289:2 4297:1 4298:2 4299:1 4315:1 4334:1 4336:1 4343:1 4349:1 4359:1 4361:1 4363:2 4373:3 4379:1 4389:1 4392:1 4419:1 4420:1 4422:2 4424:2 4428:1 4429:1 4432:1 4437:1 4445:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:4 4489:1 4490:3 4508:1 4529:1 4543:1 4546:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:2 4604:1 4613:2 4615:37 4617:1 4622:2 4626:1 4629:5 4638:1 4645:1 4656:1 4659:1 4663:1 4679:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:8 4839:2 4861:2 4897:1 4922:1 4929:6 4937:4 4944:1 4960:1 4965:6 4972:1 4988:1 5002:1 5012:1 5017:1 5019:1 5020:1 5032:1 5046:1 5049:5 5050:2 5053:2 5055:1 5061:1 5064:1 5067:4 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5127:1 5144:3 5147:2 5163:20 5164:2 5177:2 5180:1 5203:8 5210:2 5218:2 5228:1 5240:2 5241:1 5243:1 5254:1 5285:4 5287:1 5289:5 5300:4 5301:5 5302:2 5305:1 5309:6 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5336:1 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5418:1 5431:1 5450:1 5464:1 5474:1 5487:1 5507:1 5531:1 5545:1 5548:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:2 5649:2 5672:1 5681:1 5682:3 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5892:1 5901:1 5903:1 5906:1 5915:2 5916:1 5921:1 5925:2 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:11 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:2 6079:1 6089:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6171:3 6199:1 6212:1 6228:1 6229:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6362:1 6372:2 6377:2 6386:3 6389:1 6395:1 6398:1 6402:1 6407:2 6408:5 6412:1 6413:1 6419:1 6422:1 6423:1 6425:1 6429:1 6443:1 6446:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:3 6521:1 6529:1 6562:2 6600:5 6602:2 6610:1 6615:1 6623:4 6626:2 6630:1 6644:3 6653:1 6654:1 6668:1 6677:1 6708:2 6716:1 6728:1 6734:1 6736:1 6747:9 6752:1 6753:1 6758:2 6759:5 6761:2 6762:1 6763:1 6764:2 6765:1 6768:5 6769:4 6770:1 6771:1 6774:4 6775:9 6776:1 6777:2 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:3 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:2 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7177:3 7192:1 7208:2 7210:1 7215:1 7221:1 7232:1 7237:1 7244:1 7245:2 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:2 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:5 7454:1 7456:1 7464:1 7465:6 7470:2 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7539:1 7542:1 7548:2 7572:1 7580:1 7588:2 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7668:1 7675:1 7679:1 7684:1 7687:1 7688:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7763:1 7768:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8000:1 8027:1 8037:1 8055:3 8072:13 8073:13 8078:1 8091:1 8092:1 8093:1 8095:5 8098:1 8101:1 8124:4 8128:4 8132:1 8138:57 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:6 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8239:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:2 8315:1 8324:3 8336:1 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8404:1 8412:1 8436:1 8440:2 8452:2 8475:1 8524:1 8529:1 8550:1 8565:1 8569:1 8580:1 8587:1 8593:3 8596:1 8612:2 8622:1 8630:2 8633:1 8634:1 8644:1 8659:1 8662:37 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:18 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8749:1 8752:1 8759:1 8765:1 8777:46 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:2 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9039:1 9047:3 9048:1 9053:1 9054:1 9064:2 9066:1 9067:2 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:4 9212:1 9223:1 9225:1 9230:3 9273:1 9284:3 9285:1 9287:1 9310:2 9317:1 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:1 9408:1 9409:4 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9632:3 9633:1 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:2 9701:2 9703:2 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9751:1 9753:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:8 9798:2 9800:2 9808:2 9823:1 9825:1 9841:3 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:3 9892:2 9897:1 9907:1 9920:1 9924:1 9926:1 9930:1 9933:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:2 9972:1 9977:1 9978:1 9984:1 9986:1 9990:2 9991:1 9992:11 10003:2 10004:12 10014:1 10020:1 10024:1 10026:3 10028:1 10032:1 10039:1 10041:1 10043:3 10044:1 10046:1 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:2 10135:1 10136:1 10137:2 10148:1 10152:1 10157:1 10169:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10273:1 10282:1 10293:1 10298:1 10309:1 10331:2 10343:1 10356:1 10357:1 10379:37 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:2 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:5 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:2 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10681:1 10683:2 10691:1 10700:1 10703:1 10712:1 10721:1 10725:3 10729:1 10734:1 10746:1 10748:1 10764:1 10766:7 10778:1 10792:1 10811:1 10815:1 10843:1 10844:1 10862:2 10865:1 10868:1 10869:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:2 10931:1 10945:1 10953:1 10958:1 10971:2 10972:8 10983:1 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:2 11089:5 11095:1 11107:1 11109:5 11110:1 11121:1 11125:1 11136:1 11142:2 11174:3 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:8 11233:1 11240:1 11252:1 11256:1 11266:2 11273:1 11274:1 11281:1 11282:2 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:2 11315:1 11320:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:11 11437:1 11438:1 11439:1 11442:1 11448:3 11450:1 11458:1 11464:3 11469:3 11471:3 11482:1 11487:1 11498:5 11501:1 11506:1 11515:1 11524:2 11526:2 11530:1 11531:1 11537:1 11547:1 11550:9 11552:1 11556:1 11559:1 11570:1 11572:3 11574:1 11576:4 11577:1 11587:2 11593:2 11597:1 11606:1 11621:1 11622:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11651:2 11658:1 11661:2 11671:1 11694:1 11713:3 11714:1 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11835:1 11836:1 11843:1 11844:1 11845:4 11846:1 11850:1 11852:2 11856:1 11858:1 11868:2 11870:5 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11904:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11982:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:10 12035:2 12036:2 12064:1 12071:1 12090:1 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:5 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:9 12297:1 12298:1 12318:1 12319:1 12325:2 12328:1 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:3 12431:1 12455:1 12463:1 12464:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12616:1 12619:1 12623:1 12635:4 12654:1 12658:1 12662:1 12667:2 12691:1 12700:1 12701:1 12708:1 12709:1 12714:2 12717:2 12718:1 12719:3 12725:6 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:3 12852:3 12855:5 12868:1 12877:1 12884:1 12905:1 12917:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 12984:1 13000:1 13013:1 13023:3 13034:1 13039:1 13040:1 13059:1 13079:1 13081:1 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13164:1 13178:1 13180:1 13211:1 13238:3 13240:38 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13325:1 13334:1 13346:1 13352:1 13359:1 13362:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13497:1 13509:3 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:1 13653:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:13 13699:1 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:6 13851:1 13873:1 13874:1 13886:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13956:1 13982:1 13995:2 14005:1 14006:1 14007:2 14017:1 14051:1 14054:1 14065:3 14067:4 14071:3 14094:1 14100:1 14103:2 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:3 14173:1 14177:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:13 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14252:1 14254:1 14255:1 14257:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:1 14330:1 14346:1 14355:1 14372:1 14377:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:2 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:14 14531:8 14567:1 14605:2 14614:1 14615:5 14625:2 14634:4 14635:1 14655:1 14683:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14741:1 14749:1 14757:2 14765:1 14769:1 14777:1 14778:1 14782:1 14806:1 14813:4 14849:1 14856:1 14875:1 14877:1 14880:1 14894:3 14902:2 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14926:1 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:2 15055:2 15061:1 15069:1 15074:1 15075:2 15078:1 15081:2 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:2 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15151:1 15165:1 15173:1 15185:38 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:2 15239:1 15274:1 15276:1 15280:5 15282:1 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:6 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:2 15518:1 15528:1 15545:1 15555:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:7 15636:1 15677:1 15686:1 15689:1 15690:1 15704:1 15706:4 15707:1 15709:1 15720:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15815:1 15821:1 15825:1 15831:2 15848:2 15849:1 15891:3 15892:1 15898:1 15906:1 15923:1 15924:3 15943:1 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16003:1 16008:1 16010:1 16028:2 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:2 16139:7 16144:2 16148:2 16164:1 16179:1 16186:1 16209:1 16227:1 16231:1 16259:1 16263:1 16265:1 16273:1 16281:1 16284:1 16285:4 16300:1 16303:1 16310:4 16324:1 16325:1 16328:1 16329:1 16337:1 16340:1 16341:5 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:1 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:5 16539:1 16576:1 16585:1 16588:1 16600:1 16611:1 16616:1 16618:1 16619:15 16622:2 16623:1 16626:1 16650:3 16655:4 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:3 16703:2 16705:1 16706:2 16711:1 16731:12 16746:1 16753:1 16758:1 16759:1 16760:1 16769:1 16777:4 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:3 16891:4 16892:2 16893:1 16897:4 16898:2 16904:1 16905:4 16906:1 16907:2 16910:1 16926:1 16929:1 16946:2 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:2 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:4 17242:1 17252:2 17256:11 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:3 17324:1 17329:1 17330:1 17331:1 17335:2 17363:1 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:2 17526:1 17532:1 17536:50 17544:1 17545:3 17549:1 17556:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:1 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17796:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17983:1 17986:1 17998:1 18007:1 18010:1 18014:1 18025:1 18028:2 18033:1 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:2 18101:2 18103:1 18105:1 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18171:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18237:1 18250:1 18264:1 18268:1 18270:1 18282:1 18284:1 18294:1 18297:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:1 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:5 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:2 18552:8 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18758:1 18770:2 18773:2 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:5 18861:1 18920:1 18924:2 18928:1 18945:2 18953:2 18968:1 18981:1 18988:1 18995:1 19024:10 19038:2 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19219:1 19224:1 19227:1 19238:2689 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19348:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:2 19459:1 19483:1 19485:1 19496:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19593:1 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19739:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19783:1 19790:1 19802:1 19821:1 19826:6 19858:5 19863:1 19871:1 19874:2 19879:2 19913:1 19914:1 19916:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:2 19977:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:8 20033:4 20063:1 20065:5 20085:1 20096:2 20100:1 20111:1 20112:2 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20261:1 20270:1 20309:1 20317:1 20318:2 20321:1 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20425:1 20432:1 20435:2 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:1 20627:1 20640:1 20671:4 20672:8 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20768:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:3 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20944:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20986:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:2 21146:1 21161:1 21162:2 21174:1 21177:2 21178:1 21192:3 21204:1 21218:1 21231:1 21252:1 21268:1 21281:1 21282:3 21286:1 21306:1 21312:2 21326:1 21334:1 21341:3 21345:2 21350:1 21356:1 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:5 21586:1 21615:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:1 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21817:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:5 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21964:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:2 22040:1 22052:2 22054:1 22059:1 22062:1 22063:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:2 22093:1 22103:1 22104:1 22118:1 22119:1 22122:2 22126:1 22149:1 22160:1 22161:2 22170:3 22180:4 22187:1 22189:1 22192:1 22193:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22256:1 22257:1 22266:1 22269:1 22270:1 22271:1 22281:3 22285:1 22293:4 22298:2 22300:1 22301:1 22316:1 22339:1 22345:1 22349:8 22352:1 22360:1 22376:1 22378:1 22388:1 22419:2 22420:1 22422:1 22429:8 22432:2 22433:1 22437:1 22438:5 22442:1 22453:3 22467:1 22469:1 22477:1 22493:1 22494:12 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:2 22622:1 22631:2 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22675:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:3 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22854:1 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 23007:1 23015:2 23019:1 23020:16 23039:2 23042:2 23048:1 23068:1 23079:1 23084:13 23086:2 23090:1 23094:1 23101:1 23106:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23196:1 23200:1 23207:7 23216:1 23225:2 23235:1 23244:4 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23315:1 23332:1 23336:1 23339:1 23340:2 23355:10 23366:3 23386:1 23405:3 23413:1 23440:1 23460:1 23465:1 23467:1 23486:1 23491:1 23497:2 23503:1 23507:1 23508:1 23511:1 23516:37 23534:1 23537:3 23538:3 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:6 23672:3 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23760:1 23796:1 23799:3 23812:3 23821:1 23844:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23924:1 23956:38 23966:1 23975:3 23977:2 23985:1 24001:1 24003:1 24005:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24045:1 24063:1 24073:1 24074:1 24078:1 24087:1 24089:1 24090:1 24102:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:3 24186:1 24210:2 24217:1 24235:1 24261:1 24267:1 24291:1 24294:2 24315:5 24317:1 24318:2 24328:1 24342:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24566:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:1 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:1 24650:1 24656:1 24666:1 24684:1 24701:1 24702:1 24704:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24762:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24858:1 24860:1 24862:7 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24909:1 24912:1 24918:1 24925:1 24939:3 24940:1 24945:1 24967:1 24977:10 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25040:1 25055:2 25077:1 25080:1 25088:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25164:1 25171:1 25174:1 25185:1 25189:2 25192:4 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25242:1 25252:1 25256:1 25284:1 25289:3 25291:1 25292:2 25299:1 25300:1 25301:1 25304:3 25309:5 25312:1 25313:1 25315:2 25328:1 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25414:1 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25481:1 25492:1 25494:1 25500:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:3 25595:1 25597:1 25615:1 25621:3 25623:1 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:2 25789:1 25791:1 25796:1 25838:1 25842:1 25845:1 25863:1 25874:1 25877:2 25881:1 25882:1 25883:2 25884:6 25903:1 25915:6 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26069:1 26075:1 26079:1 26089:1 26090:1 26097:1 26103:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:2 26133:1 26135:2 26136:1 26154:1 26160:2 26163:1 26169:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26358:1 26362:4 26363:1 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:15 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26512:1 26543:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:3 26623:1 26634:3 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:3 26834:1 26836:1 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:12 26906:1 26910:1 26915:1 26919:1 26922:1 26926:3 26940:1 26950:1 26952:1 26957:1 26963:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:2 27044:1 27051:1 27090:1 27099:2 27106:1 27125:2 27127:1 27141:3 27158:2 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:4 27219:1 27232:1 27234:1 27237:4 27250:1 27253:1 27262:1 27275:1 27277:2 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27343:1 27361:1 27365:1 27373:1 27374:1 27385:1 27386:1 27400:1 27410:1 27416:1 27419:1 27449:1 27454:1 27463:1 27469:1 27483:2 27490:1 27500:1 27508:2 27510:6 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27591:1 27593:1 27595:2 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:1 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27704:1 27708:1 27715:1 27725:1 27740:1 27756:1 27777:2 27780:1 27783:2 27785:1 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:6 27841:2 27842:2 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27888:1 27901:1 27908:2 27910:1 27913:1 27919:1 27929:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:2 28005:1 28011:1 28016:10 28020:1 28035:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:3 28095:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28174:1 28177:1 28178:2 28180:1 28181:2 28186:3 28200:2 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28282:1 28286:4 28314:1 28316:1 28317:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:5 28586:1 28588:3 28590:1 28591:8 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28676:1 28681:1 28687:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28761:5 28772:2 28784:1 28793:1 28798:2 28799:1 28812:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:3 28866:1 28869:1 28872:1 28874:3 28883:1 28888:15 28890:2 28892:1 28895:1 28900:1 28911:1 28917:6 28926:1 28927:6 28964:1 28996:1 29009:1 29014:1 29018:1 29019:5 29037:1 29048:1 29050:1 29051:2 29055:12 29061:3 29071:1 29074:1 29077:1 29088:2 29089:1 29096:1 29100:1 29105:14 29114:2 29148:1 29156:2 29158:2 29163:1 29166:1 29174:1 29176:1 29178:1 29181:1 29182:2 29193:1 29202:1 29226:1 29237:2 29269:2 29280:1 29294:1 29296:1 29301:1 29307:1 29316:1 29328:1 29332:46 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:13 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29497:1 29524:1 29539:1 29548:1 29554:3 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29826:1 29833:3 29842:1 29843:1 29844:3 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:10 29941:1 29943:2 29946:3 29968:1 29971:3 29982:6 29988:1 30000:1 30003:4 30008:2 30009:2 30015:2 30019:38 30026:2 30048:2 30062:1 30068:1 30070:1 30085:1 30087:1 30088:1 30089:2 30093:2 30094:2 30095:5 30096:1 30107:1 30121:1 30129:1 30131:2 30142:2 30147:3 30153:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:2 49:1 59:1 62:1 64:1 67:1 77:1 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 174:2 179:2 183:2 185:1 190:1 193:1 204:1 206:1 207:1 211:1 212:1 219:1 220:1 227:3 237:1 240:1 241:1 255:1 263:2 265:1 269:1 279:4 283:6 284:1 290:2 305:2 306:1 310:1 311:2 341:2 348:1 383:1 386:4 401:1 402:2 405:1 411:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 538:1 539:4 544:1 548:1 555:1 558:1 578:2 583:1 586:1 595:1 596:1 607:1 612:1 613:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 707:1 717:6 725:1 733:1 734:38 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:3 798:2 804:1 805:1 808:2 813:2 822:3 827:1 830:1 865:2 884:2 887:1 890:3 893:2 895:1 897:2 898:3 925:1 948:4 949:1 956:1 964:3 969:1 972:1 978:1 989:3 990:7 995:3 996:1 1007:6 1013:1 1021:1 1026:5 1034:1 1046:2 1051:4 1054:12 1058:1 1059:3 1066:1 1072:2 1073:1 1074:2 1077:3 1095:2 1098:1 1102:3 1122:1 1125:3 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1207:2 1209:1 1213:1 1219:1 1221:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:4 1277:1 1293:1 1295:1 1318:1 1320:37 1328:2 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:2 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:4 1382:2 1383:1 1390:1 1392:1 1393:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:4 1437:1 1444:3 1460:2 1462:2 1463:1 1482:4 1496:1 1497:1 1499:1 1501:1 1504:1 1511:2 1513:11 1514:1 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:4 1623:2 1627:17 1628:1 1629:1 1632:1 1646:1 1648:1 1649:1 1653:1 1660:2 1661:2 1663:1 1691:1 1692:3 1700:2 1714:1 1715:1 1719:6 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:3 1767:1 1788:1 1794:1 1798:1 1799:11 1803:1 1804:1 1805:1 1806:3 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1884:1 1892:1 1899:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:3 1972:2 1978:1 1979:1 1989:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:3 2024:1 2030:1 2036:2 2045:2 2054:3 2056:1 2073:1 2076:1 2077:1 2081:1 2084:1 2089:1 2091:1 2096:1 2097:2 2108:1 2109:1 2116:1 2128:8 2147:1 2149:1 2154:1 2159:2 2161:1 2182:1 2183:1 2191:1 2199:2 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2261:1 2266:2 2267:1 2268:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:11 2359:3 2362:1 2387:1 2393:2 2423:2 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:3 2472:2 2473:3 2475:1 2477:6 2478:1 2482:9 2484:5 2486:7 2490:5 2494:1 2495:3 2497:1 2499:1 2503:1 2505:4 2508:4 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:3 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:2 2632:1 2633:1 2634:1 2638:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:4 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2722:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2804:1 2807:1 2810:2 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2883:1 2889:1 2890:2 2896:3 2899:1 2907:2 2914:3 2923:1 2924:2 2930:1 2932:1 2935:1 2942:3 2944:2 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:4 3069:2 3073:1 3079:1 3099:2 3102:1 3112:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:38 3153:1 3156:3 3157:1 3172:2 3174:2 3175:1 3185:1 3188:2 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3237:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:3 3313:1 3322:1 3350:3 3374:2 3397:1 3438:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:2 3534:1 3535:2 3544:1 3547:3 3548:1 3554:1 3558:1 3560:4 3569:1 3573:1 3576:2 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3727:1 3729:1 3731:1 3734:2 3747:1 3750:1 3755:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:3 3962:2 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4045:2 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4153:1 4170:1 4175:37 4176:2 4181:1 4184:1 4190:2 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4245:1 4247:2 4249:4 4250:6 4261:2 4266:1 4270:2 4278:1 4283:6 4288:7 4289:2 4297:1 4298:2 4299:1 4315:1 4334:1 4336:1 4343:1 4349:1 4359:1 4361:1 4363:2 4373:3 4375:1 4379:1 4389:1 4392:1 4419:1 4420:1 4422:2 4424:2 4428:1 4429:1 4432:1 4437:1 4445:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:4 4489:1 4490:3 4508:1 4529:1 4543:1 4546:1 4548:3 4577:2 4580:1 4582:1 4586:1 4591:2 4604:1 4613:2 4615:37 4617:1 4622:2 4626:1 4629:5 4638:1 4645:1 4656:1 4659:1 4663:1 4675:1 4679:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:8 4839:2 4861:2 4897:1 4922:1 4929:6 4937:4 4944:1 4960:1 4965:6 4972:1 4988:1 5002:1 5012:1 5017:1 5019:1 5020:1 5032:1 5046:1 5049:5 5050:2 5053:2 5055:1 5061:1 5064:1 5067:4 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5124:1 5127:1 5144:3 5147:2 5163:20 5164:2 5177:2 5180:1 5203:8 5210:2 5218:2 5228:1 5240:2 5241:1 5243:1 5254:1 5285:4 5287:2 5289:5 5300:4 5301:6 5302:2 5305:1 5309:6 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:5 5336:1 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5418:1 5431:1 5450:1 5464:1 5474:1 5487:1 5507:1 5531:1 5545:1 5548:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:2 5649:2 5672:1 5681:1 5682:3 5695:1 5704:2 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5877:1 5885:1 5886:1 5892:1 5901:1 5903:1 5906:1 5915:2 5916:1 5921:2 5925:2 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:11 5983:1 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:2 6079:1 6089:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6148:1 6171:3 6199:1 6212:1 6228:1 6229:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:1 6329:1 6344:1 6351:1 6355:1 6357:2 6362:1 6372:2 6377:2 6386:3 6389:1 6395:1 6398:1 6402:1 6407:2 6408:5 6412:1 6413:1 6419:1 6422:1 6423:1 6425:1 6427:1 6429:1 6443:1 6446:1 6447:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:3 6521:1 6529:1 6562:2 6600:5 6602:2 6610:1 6615:1 6623:4 6626:2 6630:1 6644:4 6651:1 6653:1 6654:1 6664:1 6668:1 6677:1 6708:2 6716:1 6728:1 6734:1 6736:1 6747:10 6752:1 6753:1 6758:2 6759:5 6761:2 6762:1 6763:1 6764:2 6765:1 6768:5 6769:4 6770:1 6771:1 6774:4 6775:9 6776:1 6777:2 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:3 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:3 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7151:1 7154:1 7158:1 7161:3 7163:1 7165:1 7177:3 7192:1 7208:3 7210:1 7215:1 7221:1 7232:1 7237:2 7244:1 7245:3 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:2 7354:1 7367:1 7372:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:5 7454:1 7456:1 7464:2 7465:6 7470:2 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7539:1 7542:1 7548:2 7572:1 7580:1 7588:2 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7667:1 7668:1 7675:1 7679:1 7684:1 7687:1 7688:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7763:1 7768:1 7772:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8000:1 8027:1 8037:1 8055:3 8072:13 8073:13 8078:1 8086:1 8091:1 8092:2 8093:1 8095:6 8098:1 8101:1 8124:4 8128:4 8132:1 8138:58 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:6 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8239:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:3 8315:1 8324:3 8336:1 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:6 8392:2 8400:1 8404:1 8412:1 8436:1 8440:2 8452:2 8475:1 8524:1 8529:1 8550:1 8565:2 8569:1 8580:1 8587:1 8593:3 8596:1 8612:2 8622:1 8630:2 8633:1 8634:1 8644:1 8659:1 8662:37 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:20 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8749:1 8752:1 8759:1 8765:1 8777:47 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8948:1 8962:1 8963:2 8971:1 8974:1 8978:3 8980:1 8982:1 8983:1 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9039:1 9047:3 9048:1 9053:1 9054:1 9064:2 9066:1 9067:2 9070:1 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:1 9155:1 9161:2 9169:4 9212:1 9223:1 9225:1 9230:3 9273:1 9284:3 9285:1 9287:1 9310:2 9317:1 9323:1 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:2 9408:1 9409:4 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9533:1 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9630:1 9632:3 9633:2 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:2 9701:2 9703:2 9706:1 9714:1 9722:1 9728:1 9730:1 9736:1 9738:1 9743:1 9751:1 9753:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:9 9798:2 9800:2 9808:2 9823:1 9825:1 9841:3 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:3 9892:2 9897:1 9907:1 9920:1 9924:1 9926:1 9930:1 9933:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:2 9972:1 9977:1 9978:1 9984:1 9986:1 9990:2 9991:1 9992:11 10003:2 10004:12 10014:1 10020:1 10024:1 10026:3 10028:1 10032:1 10039:1 10041:1 10043:3 10044:1 10046:1 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:2 10135:1 10136:1 10137:2 10148:1 10152:1 10157:1 10169:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10273:1 10282:1 10293:1 10298:1 10309:1 10331:2 10343:1 10356:1 10357:1 10379:37 10385:1 10388:1 10390:1 10397:1 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:2 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:5 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:2 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10669:1 10681:1 10683:2 10691:1 10700:1 10703:1 10712:1 10721:2 10725:3 10729:1 10734:1 10746:1 10748:1 10764:1 10766:8 10778:2 10792:1 10811:1 10815:1 10843:1 10844:1 10862:2 10865:1 10868:1 10869:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:2 10931:1 10945:1 10953:1 10958:1 10971:2 10972:8 10983:1 10989:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:2 11089:5 11095:1 11107:1 11109:5 11110:1 11121:1 11125:1 11136:1 11142:2 11166:1 11174:3 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:8 11233:1 11240:1 11252:1 11256:1 11266:2 11273:1 11274:1 11281:1 11282:2 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:3 11315:1 11320:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:11 11437:1 11438:1 11439:1 11442:1 11448:3 11450:1 11458:1 11464:3 11469:3 11471:3 11482:1 11487:1 11498:5 11501:1 11506:1 11515:1 11524:2 11526:2 11530:1 11531:1 11537:1 11547:1 11550:9 11552:1 11556:1 11559:1 11570:1 11572:3 11574:1 11576:4 11577:1 11587:4 11593:2 11597:1 11606:1 11615:1 11621:1 11622:1 11625:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:1 11643:1 11648:1 11651:2 11658:1 11661:2 11664:1 11671:1 11694:1 11713:3 11714:1 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11835:1 11836:1 11843:1 11844:1 11845:4 11846:1 11850:1 11852:2 11856:1 11858:1 11868:2 11870:5 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11904:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11982:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:10 12035:2 12036:2 12064:1 12071:1 12076:1 12090:2 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:1 12234:1 12236:6 12237:5 12241:2 12243:1 12245:5 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:9 12297:1 12298:1 12318:1 12319:1 12325:2 12328:1 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:4 12431:1 12444:1 12455:1 12463:1 12464:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12616:1 12619:1 12623:1 12635:4 12654:1 12658:1 12662:1 12666:1 12667:2 12691:1 12700:1 12701:1 12708:1 12709:1 12714:2 12717:2 12718:1 12719:3 12725:6 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:3 12852:3 12855:5 12868:1 12877:1 12884:1 12905:1 12917:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 12984:1 13000:1 13013:1 13023:3 13034:1 13039:2 13040:1 13059:1 13079:1 13081:2 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13164:1 13178:1 13180:1 13211:1 13238:3 13240:38 13242:1 13244:1 13251:1 13254:5 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13325:1 13334:1 13346:1 13352:1 13359:1 13362:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13467:1 13497:2 13509:3 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:2 13653:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:13 13699:2 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:1 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:6 13851:1 13873:1 13874:1 13886:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13956:1 13982:1 13995:2 14005:1 14006:1 14007:2 14017:1 14051:1 14054:1 14065:3 14067:4 14071:3 14094:1 14100:1 14103:2 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:3 14173:1 14177:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:13 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14252:1 14254:1 14255:1 14256:1 14257:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:2 14330:1 14346:1 14355:1 14372:1 14377:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:2 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:14 14531:8 14567:1 14589:1 14605:2 14614:1 14615:5 14625:2 14634:4 14635:1 14655:1 14683:1 14700:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14741:1 14749:1 14757:2 14765:1 14769:1 14777:1 14778:1 14782:1 14806:1 14813:4 14823:1 14849:1 14856:1 14875:1 14877:2 14880:1 14894:3 14902:2 14904:1 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14926:1 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:2 15055:2 15061:1 15069:1 15074:1 15075:2 15076:1 15078:1 15081:2 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:2 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15151:1 15165:1 15173:1 15185:38 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:2 15239:1 15274:1 15276:1 15280:5 15282:1 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15392:6 15395:1 15405:1 15408:1 15411:1 15439:1 15441:1 15443:1 15485:1 15505:2 15512:1 15515:2 15516:2 15518:1 15528:1 15545:1 15555:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:9 15636:1 15677:1 15686:1 15689:1 15690:1 15704:1 15706:4 15707:1 15709:1 15720:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15815:1 15821:2 15825:1 15831:2 15848:2 15849:1 15891:3 15892:1 15898:1 15906:1 15923:1 15924:3 15943:1 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16003:1 16008:1 16010:1 16028:2 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:2 16139:9 16144:2 16148:2 16154:1 16164:1 16179:1 16186:1 16209:1 16227:1 16231:1 16259:1 16263:1 16265:1 16273:1 16281:1 16284:1 16285:4 16300:1 16303:1 16310:4 16324:1 16325:1 16328:1 16329:1 16337:1 16340:1 16341:5 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:2 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:5 16539:1 16576:1 16585:1 16588:1 16600:1 16611:1 16616:2 16618:1 16619:15 16622:2 16623:1 16626:1 16650:3 16655:4 16657:3 16660:1 16664:2 16676:1 16694:2 16699:1 16702:3 16703:2 16705:1 16706:2 16711:1 16731:13 16746:1 16753:1 16758:1 16759:1 16760:1 16769:1 16777:4 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:3 16884:1 16891:4 16892:2 16893:1 16897:4 16898:2 16903:1 16904:1 16905:4 16906:1 16907:2 16910:1 16926:1 16929:1 16946:2 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:2 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:4 17242:1 17252:2 17256:11 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17320:2 17321:4 17324:1 17329:1 17330:1 17331:1 17335:2 17363:1 17367:1 17380:1 17383:1 17386:3 17388:1 17396:2 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:2 17526:1 17528:1 17532:1 17536:51 17544:1 17545:3 17549:1 17556:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17656:2 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17796:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17981:1 17983:1 17986:1 17998:1 18007:2 18010:1 18014:1 18022:1 18025:1 18027:1 18028:2 18033:2 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:2 18101:2 18103:1 18105:2 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18171:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18237:1 18250:1 18264:1 18268:1 18270:1 18282:1 18284:1 18294:1 18297:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:2 18355:2 18367:1 18375:1 18379:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:5 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:2 18552:8 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:4 18737:2 18738:2 18739:1 18744:1 18753:1 18758:1 18770:2 18773:2 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18842:1 18843:1 18848:5 18861:1 18920:1 18924:2 18928:1 18945:2 18953:2 18968:1 18981:1 18988:1 18995:1 19024:13 19035:1 19038:2 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19192:1 19219:1 19224:1 19227:1 19238:2763 19250:2 19254:1 19261:2 19272:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19348:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:2 19459:1 19483:1 19485:1 19496:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19593:1 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19656:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19739:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19783:1 19790:1 19802:1 19821:1 19826:7 19850:1 19858:5 19863:1 19871:1 19874:2 19879:2 19913:1 19914:1 19916:1 19919:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:2 19977:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:8 20033:4 20063:1 20065:5 20085:1 20096:2 20100:1 20111:1 20112:3 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20257:1 20261:1 20270:1 20309:1 20317:1 20318:2 20321:1 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20425:1 20432:1 20435:2 20445:1 20447:2 20449:1 20464:1 20467:1 20474:4 20496:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:2 20627:1 20640:1 20671:4 20672:9 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20706:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20768:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:3 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20944:1 20947:5 20958:2 20972:1 20977:1 20978:1 20982:1 20986:1 20995:1 21000:1 21003:1 21018:1 21039:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:2 21146:1 21161:1 21162:2 21174:2 21177:2 21178:1 21192:3 21204:1 21218:1 21231:1 21252:1 21268:1 21281:1 21282:3 21286:1 21306:1 21312:2 21326:1 21334:1 21341:3 21345:2 21350:1 21356:2 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21498:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:5 21586:1 21615:1 21620:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:2 21748:1 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21815:1 21817:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:5 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21964:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:2 22040:1 22052:2 22054:1 22059:1 22062:1 22063:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:2 22093:1 22103:1 22104:1 22118:1 22119:1 22122:2 22126:1 22133:1 22149:1 22160:1 22161:2 22170:3 22180:4 22187:1 22189:1 22192:1 22193:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22256:1 22257:1 22266:1 22269:1 22270:1 22271:1 22281:3 22285:1 22293:4 22294:1 22298:2 22300:1 22301:1 22316:1 22339:1 22345:1 22349:8 22352:1 22360:1 22376:1 22378:1 22388:1 22402:1 22419:2 22420:1 22422:1 22429:8 22432:2 22433:1 22437:1 22438:5 22442:1 22453:3 22467:1 22469:1 22477:1 22493:2 22494:12 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:4 22618:3 22622:1 22631:2 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22675:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:3 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22854:1 22856:1 22885:3 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 22993:1 23007:1 23015:2 23019:1 23020:16 23039:2 23042:2 23048:1 23068:1 23079:1 23084:14 23086:2 23090:1 23094:1 23101:1 23106:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23156:4 23159:2 23167:1 23196:1 23200:1 23207:7 23216:1 23225:2 23235:1 23244:5 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23300:1 23304:1 23315:2 23332:1 23336:1 23339:1 23340:2 23355:10 23366:3 23386:1 23405:3 23413:1 23440:1 23441:1 23460:1 23465:1 23467:1 23486:2 23491:1 23497:2 23503:1 23507:1 23508:1 23511:1 23516:37 23521:1 23534:1 23537:3 23538:3 23540:1 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:6 23672:3 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23760:1 23796:1 23799:3 23812:3 23821:1 23822:1 23844:1 23867:1 23881:1 23883:1 23888:1 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23924:1 23956:38 23966:1 23975:3 23977:2 23985:1 24001:1 24003:1 24005:1 24015:1 24019:1 24026:1 24027:2 24038:2 24041:6 24045:1 24063:1 24073:1 24074:1 24078:2 24087:1 24089:1 24090:1 24102:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:3 24186:1 24210:2 24217:1 24227:1 24235:1 24261:1 24267:1 24291:1 24294:3 24315:5 24317:1 24318:2 24328:1 24342:1 24379:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:2 24476:1 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24566:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:2 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:2 24650:1 24656:1 24666:1 24684:1 24698:1 24701:1 24702:1 24704:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24762:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24852:1 24858:1 24860:1 24862:7 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24909:1 24912:1 24918:1 24925:1 24930:1 24939:3 24940:1 24945:1 24967:1 24971:1 24977:10 24978:2 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25040:1 25055:2 25077:1 25080:1 25088:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25164:1 25171:1 25174:1 25185:1 25189:2 25192:4 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25242:1 25252:1 25256:1 25284:1 25289:4 25291:1 25292:2 25299:1 25300:1 25301:1 25304:3 25309:5 25312:1 25313:1 25315:2 25328:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25414:2 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25481:1 25492:1 25494:1 25500:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25530:1 25534:1 25572:1 25581:4 25595:1 25597:1 25615:1 25621:3 25623:2 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25690:2 25691:1 25712:1 25718:1 25729:1 25736:1 25740:2 25756:2 25789:1 25791:1 25796:1 25838:1 25842:1 25845:1 25863:1 25874:1 25877:2 25881:1 25882:1 25883:2 25884:6 25903:1 25915:6 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26069:2 26075:1 26079:2 26089:1 26090:1 26097:1 26103:1 26107:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:3 26133:1 26135:2 26136:1 26154:1 26160:2 26163:1 26169:1 26174:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26358:1 26362:4 26363:1 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:15 26446:2 26457:1 26466:2 26488:2 26500:1 26506:1 26512:1 26543:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:3 26623:1 26634:3 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26759:1 26760:1 26761:2 26773:2 26787:1 26799:3 26809:1 26813:1 26824:3 26834:2 26836:2 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:15 26906:1 26910:1 26915:1 26919:1 26922:1 26926:3 26940:1 26950:1 26952:2 26957:1 26963:1 26981:1 26982:1 26988:5 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:2 27044:1 27051:1 27090:1 27099:2 27106:1 27125:2 27127:1 27141:3 27158:2 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:4 27219:1 27232:1 27234:1 27237:4 27250:1 27253:1 27262:1 27275:1 27277:3 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27343:1 27361:1 27365:1 27373:1 27374:1 27385:1 27386:1 27400:1 27410:1 27416:1 27419:1 27449:1 27454:1 27463:1 27469:1 27483:2 27490:1 27496:1 27500:1 27508:2 27510:6 27515:1 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27591:1 27593:1 27595:3 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:2 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27704:1 27708:1 27715:1 27725:1 27740:1 27741:1 27756:1 27777:2 27780:1 27783:2 27785:1 27788:2 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:6 27841:2 27842:2 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27888:1 27901:1 27908:2 27910:1 27913:1 27919:1 27929:1 27938:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:2 28005:1 28011:1 28016:10 28020:1 28035:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:3 28095:1 28100:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28174:1 28177:1 28178:2 28180:1 28181:2 28186:4 28200:2 28209:1 28213:3 28214:1 28216:3 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28282:1 28286:4 28314:1 28316:1 28317:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28499:1 28528:1 28534:1 28538:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28583:5 28586:1 28588:3 28590:1 28591:8 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28675:1 28676:1 28681:1 28687:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28760:1 28761:5 28772:2 28784:2 28793:1 28798:2 28799:1 28812:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:3 28866:1 28869:1 28872:1 28874:3 28883:1 28888:15 28890:2 28892:1 28895:1 28900:1 28911:1 28917:6 28926:1 28927:6 28964:1 28996:1 29009:1 29014:1 29018:1 29019:5 29037:1 29043:1 29048:1 29050:1 29051:2 29053:1 29055:12 29061:3 29071:1 29074:1 29077:1 29088:2 29089:1 29096:1 29100:1 29105:14 29114:2 29148:1 29156:2 29158:2 29163:1 29166:1 29174:1 29176:1 29178:1 29181:1 29182:2 29193:1 29202:1 29226:1 29237:2 29269:3 29280:1 29294:1 29296:1 29301:2 29305:1 29307:1 29316:1 29328:1 29332:47 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:5 29368:2 29370:1 29376:1 29402:1 29426:4 29430:13 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29497:1 29524:1 29539:1 29548:1 29554:3 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29814:1 29826:1 29833:3 29842:1 29843:1 29844:3 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29920:1 29921:1 29926:1 29929:1 29939:1 29940:11 29941:1 29943:2 29946:4 29968:1 29971:3 29982:7 29988:1 30000:1 30003:4 30008:2 30009:2 30015:2 30019:38 30026:2 30048:2 30062:1 30068:1 30070:1 30085:2 30087:1 30088:1 30089:2 30093:2 30094:2 30095:5 30096:1 30107:1 30121:1 30129:1 30131:2 30142:2 30147:3 30153:1 30161:1 30170:1 30174:1 30176:2 30186:1 30189:1
2 13:1 15:1 39:2 40:1 47:2 49:1 59:1 62:1 64:1 67:1 77:2 85:1 96:3 97:2 98:1 108:1 116:1 126:1 150:2 162:1 168:1 172:1 174:2 179:2 183:2 185:1 190:1 193:1 200:1 204:1 206:1 207:1 211:1 212:1 219:1 220:1 227:3 237:1 240:1 241:1 255:1 263:3 265:1 269:1 279:4 283:6 284:2 290:2 296:1 305:2 306:1 310:1 311:2 341:2 348:1 377:1 383:1 386:4 401:1 402:2 405:1 411:1 413:1 417:1 420:1 424:1 428:1 442:2 445:1 452:1 457:2 462:2 473:1 477:2 482:1 492:1 494:1 500:1 504:2 513:2 529:2 538:1 539:5 544:1 548:1 555:1 558:1 578:2 583:1 586:1 595:1 596:1 607:1 612:1 613:1 626:1 641:3 670:3 674:2 680:2 683:1 686:1 702:1 707:1 717:6 725:1 733:1 734:39 737:1 739:4 743:1 744:1 745:1 759:1 763:1 777:1 782:3 798:2 804:1 805:1 808:2 813:2 822:3 827:1 830:1 865:2 884:2 887:1 890:3 893:2 895:1 897:2 898:3 925:1 948:4 949:1 956:1 964:3 969:1 972:1 978:1 989:3 990:7 995:3 996:1 1007:6 1013:1 1021:1 1026:5 1034:1 1046:2 1051:4 1054:13 1058:1 1059:3 1066:1 1072:2 1073:1 1074:2 1077:4 1095:2 1098:1 1102:4 1122:1 1125:3 1128:1 1130:1 1143:1 1147:4 1149:1 1152:1 1198:1 1201:1 1207:2 1209:1 1213:1 1219:1 1221:1 1224:1 1238:1 1248:1 1256:1 1265:1 1268:4 1277:1 1293:1 1295:2 1318:1 1320:38 1328:3 1331:2 1332:2 1334:1 1337:4 1341:1 1352:1 1361:3 1363:2 1365:2 1371:1 1374:1 1377:1 1379:1 1381:4 1382:2 1383:1 1390:1 1392:1 1393:1 1396:1 1400:1 1404:1 1409:2 1415:1 1416:4 1437:1 1444:3 1460:2 1462:2 1463:1 1482:4 1496:1 1497:1 1499:1 1501:1 1504:1 1511:2 1513:11 1514:1 1531:1 1540:1 1555:1 1567:3 1577:1 1580:2 1593:1 1598:1 1606:1 1617:1 1618:1 1620:4 1623:2 1627:18 1628:1 1629:1 1632:1 1646:1 1648:2 1649:1 1653:1 1660:2 1661:2 1663:1 1691:1 1692:3 1700:2 1714:1 1715:1 1719:6 1732:1 1733:1 1745:1 1748:1 1749:2 1752:1 1760:3 1767:1 1788:1 1794:1 1798:1 1799:11 1803:1 1804:1 1805:1 1806:3 1819:1 1830:1 1835:1 1837:1 1848:2 1849:3 1857:1 1860:1 1863:1 1875:1 1877:1 1878:1 1881:1 1884:1 1892:1 1899:1 1915:1 1927:1 1931:1 1937:1 1940:1 1949:1 1962:1 1967:1 1971:3 1972:2 1978:2 1979:1 1989:1 1991:1 1994:1 1995:3 2000:1 2008:1 2012:1 2014:2 2017:3 2024:1 2030:1 2036:2 2045:2 2054:3 2056:1 2073:1 2076:1 2077:1 2081:1 2084:1 2089:1 2091:1 2096:1 2097:2 2108:1 2109:1 2116:1 2128:8 2147:1 2149:1 2154:1 2159:2 2161:1 2182:1 2183:1 2184:1 2191:1 2199:2 2213:1 2226:1 2227:1 2229:1 2230:2 2236:1 2238:1 2250:1 2254:1 2261:1 2266:2 2267:1 2268:1 2271:1 2275:1 2285:1 2288:1 2298:1 2305:1 2318:12 2359:3 2362:1 2387:1 2393:2 2423:2 2426:1 2436:1 2457:1 2460:1 2466:1 2467:2 2468:2 2469:4 2471:3 2472:2 2473:3 2475:1 2477:6 2478:1 2482:10 2484:5 2486:7 2490:5 2494:1 2495:3 2497:1 2499:1 2503:1 2505:4 2508:4 2513:1 2514:1 2517:1 2521:1 2522:1 2546:1 2547:1 2552:1 2553:1 2557:3 2558:1 2568:5 2571:1 2577:1 2584:1 2598:2 2603:1 2604:1 2631:2 2632:1 2633:1 2634:1 2638:1 2639:1 2647:1 2649:4 2650:4 2655:1 2657:4 2671:2 2672:4 2682:4 2683:1 2690:1 2692:1 2700:1 2709:4 2721:1 2722:1 2723:1 2726:1 2732:1 2746:1 2757:1 2771:2 2772:2 2779:1 2784:1 2789:1 2804:1 2807:1 2810:3 2817:1 2824:1 2827:1 2828:1 2840:2 2848:1 2849:1 2867:1 2883:1 2889:1 2890:2 2896:3 2899:1 2907:2 2914:3 2923:1 2924:2 2930:1 2932:1 2935:1 2942:3 2944:2 2949:4 2967:1 2973:1 2976:3 2979:4 2982:1 2985:3 2990:1 3002:1 3008:1 3010:1 3042:3 3049:5 3050:5 3052:1 3056:1 3058:4 3069:2 3073:1 3079:1 3099:2 3102:1 3112:1 3113:2 3119:1 3122:2 3128:1 3145:17 3149:39 3153:1 3156:3 3157:1 3172:2 3174:2 3175:1 3185:1 3188:2 3189:1 3194:4 3195:1 3199:1 3202:1 3208:8 3230:4 3234:2 3237:1 3243:1 3269:2 3274:1 3277:1 3278:1 3301:2 3305:1 3307:4 3313:1 3322:1 3350:3 3374:2 3397:1 3438:1 3447:1 3461:4 3467:1 3482:1 3487:1 3492:1 3509:2 3532:2 3534:1 3535:2 3544:1 3547:3 3548:1 3554:1 3558:1 3560:4 3569:1 3573:1 3576:2 3582:1 3587:1 3589:1 3590:4 3612:2 3637:1 3666:1 3672:1 3690:1 3695:1 3705:1 3709:2 3717:1 3720:1 3721:1 3727:1 3729:1 3731:1 3734:2 3747:1 3750:1 3755:1 3769:1 3778:1 3781:1 3783:1 3789:1 3796:1 3804:1 3805:1 3808:1 3819:1 3822:1 3841:2 3853:1 3862:1 3865:1 3878:1 3886:1 3897:1 3920:1 3941:1 3952:3 3953:2 3954:1 3957:3 3962:3 3975:1 4002:1 4010:3 4011:1 4038:1 4044:1 4045:2 4048:2 4058:1 4063:1 4064:3 4082:1 4088:2 4090:2 4097:2 4119:1 4121:1 4122:1 4129:3 4145:1 4147:1 4149:1 4153:1 4170:1 4175:38 4176:3 4181:1 4184:1 4190:2 4195:1 4203:1 4205:1 4228:1 4230:1 4231:1 4242:1 4243:1 4245:1 4247:2 4249:4 4250:6 4261:2 4266:1 4270:2 4278:1 4283:6 4288:7 4289:2 4297:1 4298:2 4299:1 4315:1 4334:1 4336:1 4343:1 4349:1 4359:1 4361:1 4363:3 4373:3 4375:1 4379:1 4389:1 4392:1 4419:1 4420:1 4422:2 4424:2 4428:1 4429:1 4432:1 4437:1 4445:1 4452:1 4460:1 4475:1 4480:1 4481:2 4482:1 4485:4 4489:1 4490:3 4508:1 4529:1 4543:1 4546:1 4548:3 4565:1 4577:2 4580:1 4582:1 4584:1 4586:1 4591:2 4604:1 4613:2 4615:38 4617:1 4622:2 4626:1 4629:5 4638:1 4645:1 4656:1 4659:2 4663:1 4675:1 4679:1 4716:6 4732:1 4740:1 4745:1 4757:1 4767:3 4781:1 4782:2 4789:3 4790:1 4795:2 4797:2 4798:1 4800:1 4803:1 4820:1 4835:9 4839:2 4861:2 4884:1 4897:1 4922:1 4929:6 4937:4 4944:1 4960:1 4965:6 4972:1 4988:1 5002:1 5012:1 5017:1 5019:1 5020:1 5032:1 5046:1 5049:5 5050:2 5053:2 5055:1 5061:1 5064:1 5067:4 5080:1 5091:1 5093:3 5106:1 5119:1 5120:1 5122:1 5124:1 5127:1 5144:3 5147:2 5163:21 5164:2 5177:2 5180:1 5203:9 5210:2 5218:2 5227:1 5228:1 5240:2 5241:1 5243:1 5254:1 5285:4 5287:2 5289:5 5300:4 5301:6 5302:2 5305:1 5309:6 5315:1 5316:2 5317:4 5318:1 5326:1 5333:2 5335:6 5336:1 5338:4 5339:1 5346:1 5354:1 5375:1 5410:1 5415:2 5418:1 5431:1 5450:1 5464:1 5474:1 5478:1 5487:1 5507:1 5531:1 5545:1 5548:1 5573:1 5584:1 5585:2 5588:1 5608:1 5631:1 5636:1 5638:1 5648:2 5649:2 5672:1 5681:1 5682:4 5695:1 5701:1 5704:2 5733:1 5741:1 5744:2 5747:1 5750:1 5780:1 5783:1 5793:2 5809:1 5811:1 5815:3 5818:1 5849:1 5877:1 5885:1 5886:1 5892:1 5901:1 5903:1 5906:1 5915:2 5916:1 5921:2 5925:2 5937:1 5938:1 5941:1 5942:1 5960:1 5961:2 5974:1 5976:1 5982:11 5983:1 5984:1 5990:2 5991:1 5993:1 5998:1 6000:2 6018:2 6029:2 6040:1 6053:2 6058:2 6061:1 6079:1 6089:1 6093:1 6100:1 6113:2 6126:1 6128:1 6131:2 6143:2 6148:1 6171:3 6199:1 6212:1 6228:1 6229:1 6236:1 6241:1 6249:1 6250:1 6273:1 6274:1 6276:2 6285:3 6287:1 6302:1 6305:2 6329:1 6344:1 6351:1 6355:1 6357:2 6362:1 6367:1 6372:2 6377:2 6386:3 6389:1 6395:1 6398:1 6402:1 6407:3 6408:5 6410:1 6412:1 6413:1 6419:1 6422:1 6423:1 6425:1 6427:1 6429:1 6443:1 6446:1 6447:1 6453:1 6466:1 6489:2 6490:2 6491:1 6495:1 6496:1 6500:2 6501:1 6505:1 6508:1 6509:3 6515:2 6517:2 6519:2 6520:3 6521:1 6529:1 6562:2 6600:5 6602:2 6610:1 6615:1 6623:4 6626:2 6630:1 6644:4 6651:1 6653:2 6654:1 6664:1 6668:1 6677:1 6708:2 6716:2 6728:1 6734:1 6736:1 6747:10 6752:1 6753:1 6758:2 6759:5 6761:2 6762:1 6763:1 6764:2 6765:1 6768:5 6769:4 6770:1 6771:1 6774:4 6775:9 6776:1 6777:3 6782:1 6785:1 6805:1 6821:1 6825:1 6827:2 6828:1 6850:1 6854:1 6862:1 6868:1 6876:1 6892:1 6903:2 6904:1 6912:3 6916:3 6933:1 6944:3 6959:1 6962:1 6977:1 6984:1 6990:1 6996:1 6998:1 7003:1 7012:1 7013:1 7020:1 7024:1 7037:1 7040:2 7042:1 7056:3 7065:1 7075:2 7093:1 7097:1 7113:1 7118:1 7143:1 7145:1 7151:1 7154:1 7158:1 7161:3 7163:1 7165:1 7177:3 7182:1 7192:1 7208:3 7210:1 7215:1 7221:1 7232:1 7237:2 7244:1 7245:3 7280:1 7286:1 7292:1 7295:1 7296:1 7321:1 7325:2 7341:2 7354:1 7367:1 7372:1 7374:1 7380:1 7385:1 7393:1 7429:1 7430:1 7434:1 7437:1 7441:5 7454:1 7456:1 7464:2 7465:6 7470:2 7518:1 7520:1 7521:1 7525:1 7531:1 7537:2 7539:1 7542:1 7548:2 7566:1 7572:1 7580:1 7588:2 7603:1 7604:1 7610:1 7623:3 7628:1 7654:1 7661:2 7666:2 7667:1 7668:1 7675:1 7679:1 7684:1 7687:1 7688:1 7692:1 7723:1 7725:1 7732:1 7739:1 7743:1 7744:2 7756:1 7763:1 7768:1 7772:1 7783:1 7788:2 7814:1 7815:1 7830:1 7836:1 7846:1 7847:6 7880:9 7882:1 7885:1 7917:1 7918:2 7924:1 7942:2 7956:1 7965:1 7967:1 7970:1 7994:4 7995:1 8000:1 8027:1 8031:1 8037:1 8055:3 8072:13 8073:13 8078:1 8086:1 8091:1 8092:3 8093:1 8095:6 8098:1 8101:1 8124:5 8128:4 8132:1 8138:60 8141:1 8142:1 8145:2 8148:1 8150:1 8151:1 8155:19 8159:6 8164:1 8168:1 8170:1 8172:1 8192:1 8193:4 8195:1 8198:2 8204:2 8213:1 8221:1 8239:1 8249:6 8266:2 8270:1 8280:1 8305:1 8307:3 8315:1 8324:4 8336:1 8337:1 8343:1 8348:4 8349:1 8354:1 8359:1 8383:7 8392:2 8400:1 8404:1 8412:1 8423:1 8436:1 8440:2 8452:2 8475:1 8524:1 8529:1 8550:1 8565:2 8569:1 8580:1 8587:1 8588:1 8593:3 8596:1 8612:2 8622:1 8630:2 8633:1 8634:1 8644:1 8659:2 8662:38 8668:1 8669:1 8677:1 8679:1 8681:1 8687:1 8691:1 8693:21 8694:4 8709:1 8711:2 8727:1 8729:1 8731:1 8733:1 8736:2 8749:1 8752:1 8759:1 8765:1 8777:48 8788:1 8819:2 8828:1 8830:1 8848:1 8854:1 8860:2 8880:2 8890:1 8894:1 8899:1 8902:1 8916:1 8934:1 8948:1 8954:1 8962:1 8963:2 8971:1 8974:1 8978:3 8980:1 8982:1 8983:2 8989:1 8994:2 8995:5 8996:1 9010:1 9017:1 9022:2 9039:1 9047:3 9048:1 9053:1 9054:1 9064:2 9066:1 9067:2 9070:2 9072:1 9077:2 9078:2 9081:1 9082:1 9089:1 9097:1 9110:1 9113:1 9114:1 9123:1 9142:1 9148:2 9155:1 9161:2 9169:4 9212:1 9223:1 9225:1 9230:3 9273:1 9284:3 9285:1 9287:1 9310:2 9317:1 9323:1 9349:1 9354:2 9356:1 9357:1 9360:1 9365:1 9369:1 9372:2 9390:1 9393:4 9401:1 9405:1 9407:2 9408:1 9409:4 9413:1 9421:3 9430:1 9435:1 9436:1 9439:1 9477:1 9486:3 9490:1 9492:2 9496:2 9519:1 9523:6 9533:1 9535:5 9545:1 9547:1 9556:2 9566:1 9589:1 9610:4 9613:1 9630:1 9632:3 9633:2 9663:1 9664:4 9671:2 9672:1 9681:5 9684:3 9685:1 9686:1 9689:1 9699:2 9701:2 9703:2 9706:1 9714:1 9716:1 9722:1 9728:1 9730:1 9736:1 9738:1 9743:1 9751:1 9753:1 9754:1 9755:1 9756:2 9757:1 9758:1 9765:1 9766:1 9778:1 9783:1 9784:3 9794:9 9798:2 9800:2 9808:2 9823:1 9825:1 9841:3 9845:1 9860:1 9868:1 9872:1 9874:2 9889:1 9891:3 9892:2 9897:1 9907:1 9920:1 9924:1 9926:1 9930:1 9933:1 9938:1 9941:1 9942:2 9947:2 9951:2 9955:1 9956:1 9959:1 9960:2 9961:1 9972:1 9977:1 9978:1 9984:1 9986:1 9990:2 9991:1 9992:11 10003:2 10004:12 10014:1 10020:1 10024:1 10026:3 10028:1 10032:1 10039:1 10041:1 10043:3 10044:1 10046:2 10048:1 10052:1 10066:1 10076:1 10093:1 10100:1 10106:1 10110:1 10126:1 10130:2 10135:1 10136:1 10137:2 10148:1 10152:1 10157:1 10169:1 10170:1 10174:2 10180:1 10181:1 10217:1 10241:6 10249:1 10250:1 10252:1 10257:3 10258:1 10261:4 10264:1 10269:1 10271:1 10273:1 10282:1 10293:1 10298:1 10309:1 10331:2 10343:1 10356:1 10357:1 10379:38 10385:1 10388:1 10390:1 10397:2 10409:1 10419:1 10423:2 10433:1 10439:1 10441:1 10444:1 10457:1 10459:1 10465:2 10466:2 10474:2 10478:1 10482:1 10493:1 10502:1 10512:1 10516:5 10521:3 10526:1 10531:2 10538:2 10545:1 10553:1 10566:1 10574:2 10576:2 10586:2 10589:1 10592:2 10599:2 10602:2 10606:1 10614:5 10617:5 10629:1 10633:3 10636:1 10648:1 10665:5 10669:1 10681:1 10683:2 10691:1 10700:1 10703:1 10712:1 10721:2 10725:3 10726:1 10729:1 10734:1 10746:1 10748:1 10764:1 10766:8 10778:2 10792:1 10811:1 10815:1 10843:1 10844:1 10862:2 10865:1 10868:1 10869:1 10887:5 10899:1 10910:2 10921:1 10923:2 10924:2 10931:1 10945:1 10953:1 10958:1 10971:2 10972:8 10983:1 10989:1 11005:1 11013:3 11028:1 11030:1 11037:1 11051:1 11053:1 11067:1 11068:1 11082:2 11089:5 11095:1 11107:1 11109:5 11110:2 11121:1 11125:1 11136:1 11142:2 11166:1 11174:3 11188:1 11193:1 11195:2 11216:1 11217:5 11224:2 11226:8 11233:1 11240:1 11252:1 11256:1 11266:2 11273:1 11274:1 11281:1 11282:2 11286:1 11289:7 11293:1 11300:1 11304:1 11305:1 11314:3 11315:1 11320:1 11333:2 11336:1 11350:1 11362:1 11369:1 11370:1 11396:1 11423:1 11424:11 11437:1 11438:1 11439:1 11442:1 11448:3 11450:1 11458:1 11464:3 11469:3 11471:3 11482:2 11487:1 11498:5 11501:1 11506:1 11515:1 11524:2 11526:2 11530:1 11531:1 11537:1 11547:1 11550:10 11552:1 11556:1 11559:1 11561:1 11570:1 11572:3 11574:1 11576:4 11577:1 11587:4 11593:2 11597:1 11606:1 11615:1 11621:1 11622:1 11625:1 11632:6 11636:1 11637:1 11639:1 11641:1 11642:2 11643:1 11648:1 11651:2 11658:1 11661:2 11664:1 11671:1 11694:1 11713:3 11714:1 11739:1 11748:1 11751:1 11756:1 11768:1 11770:3 11775:1 11805:2 11826:1 11827:2 11834:2 11835:1 11836:1 11843:1 11844:1 11845:4 11846:1 11850:1 11852:2 11856:1 11858:1 11868:2 11870:6 11871:1 11874:1 11876:1 11881:1 11895:1 11900:3 11903:1 11904:1 11927:1 11937:1 11940:5 11948:1 11961:1 11973:1 11976:1 11982:1 11985:2 11988:1 11989:1 11992:1 11996:1 12001:1 12004:1 12018:10 12035:2 12036:2 12064:1 12071:1 12076:1 12090:2 12091:1 12096:1 12097:1 12099:1 12111:1 12125:2 12134:1 12136:2 12141:2 12159:1 12163:6 12185:1 12189:1 12194:1 12199:1 12204:3 12217:1 12218:1 12220:2 12222:1 12229:2 12234:1 12236:7 12237:5 12241:2 12243:1 12245:6 12249:1 12266:1 12269:1 12277:2 12284:1 12288:2 12290:1 12293:9 12297:1 12298:1 12318:1 12319:1 12325:2 12328:1 12336:1 12359:1 12366:3 12368:1 12369:1 12375:4 12379:1 12415:1 12418:4 12431:1 12444:1 12455:1 12463:2 12464:1 12465:1 12483:1 12484:1 12516:1 12519:1 12539:1 12540:2 12556:1 12570:1 12594:1 12596:1 12609:1 12611:2 12614:3 12616:1 12619:1 12623:1 12635:4 12654:1 12658:1 12662:1 12666:1 12667:2 12691:1 12700:1 12701:1 12708:1 12709:1 12714:3 12717:2 12718:1 12719:3 12720:1 12725:6 12726:1 12729:1 12733:1 12750:1 12758:1 12762:1 12768:1 12769:1 12803:1 12816:1 12827:1 12838:1 12849:3 12852:3 12855:5 12868:1 12877:1 12884:1 12905:1 12917:1 12919:1 12921:2 12930:1 12941:2 12976:1 12983:1 12984:1 13000:1 13013:1 13023:3 13034:1 13039:2 13040:1 13059:1 13079:1 13081:2 13086:1 13094:1 13096:1 13141:1 13154:1 13160:1 13164:1 13178:1 13180:1 13211:1 13238:3 13240:39 13242:1 13244:1 13251:1 13254:6 13257:1 13263:1 13275:1 13296:6 13306:1 13318:2 13322:1 13325:1 13334:1 13346:1 13352:1 13359:1 13362:1 13363:1 13364:1 13389:2 13390:1 13391:2 13419:1 13429:1 13440:1 13444:2 13446:1 13449:1 13453:1 13454:1 13457:1 13467:1 13497:2 13509:3 13520:1 13538:1 13549:2 13551:1 13569:1 13585:1 13586:1 13593:1 13595:1 13597:1 13610:1 13631:1 13641:1 13650:1 13652:2 13653:1 13659:1 13667:1 13670:1 13673:1 13675:1 13677:1 13688:1 13695:13 13699:2 13700:4 13704:3 13719:1 13720:1 13728:2 13735:1 13739:1 13749:1 13750:1 13793:1 13797:2 13807:1 13821:1 13827:1 13830:2 13833:2 13836:6 13844:6 13851:1 13873:1 13874:1 13886:1 13891:1 13898:14 13902:1 13904:1 13912:1 13924:1 13946:1 13956:1 13982:1 13995:2 14005:1 14006:1 14007:2 14017:1 14051:1 14054:1 14065:3 14067:4 14071:3 14094:1 14100:1 14103:2 14104:1 14109:1 14124:1 14132:2 14136:2 14142:1 14150:1 14156:1 14157:1 14170:3 14173:1 14177:1 14202:1 14208:1 14212:2 14215:3 14216:1 14218:1 14220:1 14223:2 14224:1 14226:13 14227:1 14229:1 14231:2 14249:1 14250:2 14251:1 14252:1 14254:1 14255:1 14256:1 14257:1 14259:6 14262:1 14264:1 14269:1 14270:2 14287:1 14296:1 14310:1 14311:1 14315:2 14330:1 14346:1 14355:1 14372:1 14377:1 14378:1 14381:1 14384:2 14392:1 14396:10 14399:1 14401:2 14411:1 14414:2 14424:1 14430:1 14438:1 14442:1 14452:1 14456:1 14482:1 14484:2 14490:5 14505:1 14507:1 14514:3 14516:1 14517:2 14528:14 14531:8 14567:1 14589:1 14605:2 14614:1 14615:5 14625:2 14634:4 14635:1 14655:1 14683:1 14700:1 14705:1 14708:1 14711:3 14723:1 14724:2 14727:1 14741:1 14749:1 14751:1 14757:2 14765:1 14769:1 14777:1 14778:1 14782:1 14806:1 14813:5 14823:1 14849:1 14856:1 14875:1 14877:2 14880:1 14894:3 14902:2 14904:1 14905:1 14908:1 14914:2 14919:2 14920:2 14922:3 14926:1 14927:1 14935:1 14940:2 14941:1 14952:1 14953:2 14960:2 14971:1 15002:1 15017:1 15019:1 15022:1 15023:2 15026:1 15037:1 15038:2 15039:1 15042:1 15054:2 15055:2 15061:1 15069:1 15074:1 15075:2 15076:1 15078:1 15081:2 15087:1 15088:1 15089:1 15091:1 15092:1 15093:1 15094:1 15099:1 15103:1 15107:1 15110:2 15121:1 15123:1 15131:2 15133:1 15141:1 15150:2 15151:1 15165:1 15173:1 15185:39 15187:1 15193:3 15196:1 15197:1 15202:1 15210:1 15215:1 15225:2 15239:1 15274:1 15276:1 15280:6 15282:1 15292:1 15295:1 15301:2 15324:1 15330:1 15345:3 15347:1 15350:1 15360:1 15365:1 15366:1 15381:1 15392:6 15395:1 15405:1 15408:1 15411:1 15432:1 15439:1 15441:1 15443:1 15485:1 15505:2 15508:1 15512:1 15515:2 15516:2 15518:1 15528:1 15545:1 15555:1 15575:1 15580:1 15595:1 15596:2 15597:2 15604:1 15612:1 15622:1 15626:2 15627:1 15628:1 15631:9 15636:1 15677:1 15686:1 15689:1 15690:1 15704:1 15706:4 15707:1 15709:1 15720:1 15726:1 15738:1 15740:1 15754:2 15755:1 15762:2 15764:3 15773:1 15774:1 15782:1 15786:1 15793:2 15809:1 15815:1 15821:2 15825:1 15831:2 15848:2 15849:1 15864:1 15891:3 15892:1 15898:1 15906:1 15923:1 15924:3 15943:1 15944:1 15955:1 15963:1 15972:1 15977:2 15980:1 15996:1 16000:2 16003:2 16008:1 16010:1 16028:2 16044:1 16051:1 16062:1 16067:1 16082:1 16083:3 16084:4 16093:1 16109:1 16112:1 16117:2 16139:9 16144:2 16148:2 16154:1 16164:1 16179:1 16186:1 16209:1 16227:1 16231:2 16259:1 16263:1 16265:1 16273:1 16281:1 16284:1 16285:4 16300:1 16303:1 16310:4 16324:1 16325:1 16328:1 16329:1 16337:1 16340:1 16341:6 16346:3 16351:2 16363:4 16366:1 16370:1 16378:1 16379:2 16388:3 16398:1 16445:1 16447:1 16455:5 16457:2 16478:4 16480:2 16487:1 16498:1 16500:1 16505:1 16514:1 16516:3 16524:1 16525:5 16539:1 16576:1 16585:1 16588:1 16600:1 16611:1 16616:2 16618:1 16619:15 16622:2 16623:1 16626:1 16650:3 16655:4 16657:3 16660:1 16664:3 16676:1 16694:2 16699:1 16702:3 16703:2 16705:1 16706:2 16711:1 16731:13 16746:1 16753:1 16758:1 16759:1 16760:1 16769:1 16777:4 16822:1 16838:2 16853:1 16855:1 16862:1 16864:1 16873:1 16874:3 16884:1 16891:4 16892:3 16893:1 16897:4 16898:2 16903:1 16904:1 16905:5 16906:1 16907:2 16910:1 16926:1 16929:1 16946:2 16966:2 16984:1 16985:1 16994:1 16998:1 17011:1 17022:1 17026:1 17028:1 17030:1 17046:1 17051:1 17067:1 17070:1 17083:2 17092:1 17097:2 17128:1 17137:1 17138:1 17140:2 17146:1 17190:1 17204:2 17213:2 17224:1 17237:4 17242:1 17252:2 17256:11 17257:1 17260:1 17269:1 17291:1 17294:1 17296:1 17302:1 17313:1 17320:2 17321:4 17324:1 17329:1 17330:1 17331:1 17335:2 17363:1 17367:1 17373:1 17380:1 17383:1 17386:3 17388:1 17396:2 17406:1 17412:2 17414:3 17423:1 17425:2 17437:1 17442:1 17459:1 17490:1 17494:1 17507:1 17508:1 17522:2 17526:1 17528:1 17532:1 17536:52 17544:1 17545:3 17549:1 17556:1 17560:1 17564:1 17579:1 17582:1 17586:4 17621:1 17637:1 17644:1 17645:1 17648:1 17656:2 17661:1 17670:1 17683:1 17692:3 17695:2 17705:1 17709:1 17718:1 17722:2 17756:1 17761:1 17764:1 17765:1 17785:1 17786:1 17796:1 17809:1 17812:1 17825:1 17835:1 17858:1 17860:2 17865:2 17866:1 17867:1 17878:1 17883:1 17898:1 17912:1 17918:1 17980:2 17981:1 17983:1 17986:1 17998:1 18007:2 18010:1 18014:1 18022:1 18025:2 18027:1 18028:2 18033:2 18036:1 18037:1 18042:1 18049:2 18051:1 18063:1 18097:2 18101:2 18103:1 18105:2 18107:1 18111:1 18113:1 18115:2 18120:2 18141:1 18149:1 18171:1 18190:2 18191:1 18196:1 18200:1 18203:2 18208:2 18212:1 18235:1 18237:2 18250:1 18264:1 18268:1 18270:1 18282:1 18284:1 18294:1 18297:1 18299:4 18301:1 18304:2 18306:1 18319:1 18339:1 18342:1 18351:2 18352:2 18355:2 18367:1 18368:1 18375:1 18379:1 18391:1 18394:2 18398:2 18401:1 18412:3 18415:2 18439:4 18440:1 18448:5 18462:1 18473:4 18474:1 18481:1 18488:1 18497:1 18500:1 18535:2 18552:8 18557:1 18559:2 18587:3 18596:1 18611:2 18631:1 18634:2 18635:1 18641:2 18642:1 18645:1 18652:1 18672:1 18697:1 18701:2 18719:1 18731:1 18732:5 18737:2 18738:2 18739:1 18744:1 18753:1 18758:1 18767:1 18770:2 18773:2 18783:1 18786:1 18804:1 18806:2 18808:1 18827:1 18834:1 18842:1 18843:1 18848:5 18861:1 18920:1 18924:2 18928:1 18945:2 18953:3 18968:1 18981:1 18988:1 18995:1 19024:14 19035:1 19038:2 19044:1 19057:1 19065:2 19097:1 19102:1 19104:4 19112:1 19117:1 19119:1 19124:1 19126:1 19139:1 19142:1 19144:1 19157:2 19169:2 19172:1 19185:1 19192:1 19219:1 19224:1 19227:1 19238:2795 19250:2 19254:1 19261:2 19272:1 19273:1 19291:1 19306:1 19311:1 19313:1 19321:1 19323:1 19330:1 19342:1 19348:1 19360:3 19368:1 19372:3 19374:1 19400:1 19401:1 19407:1 19420:1 19430:1 19438:2 19450:2 19459:1 19483:1 19485:1 19496:1 19500:1 19506:1 19514:1 19529:1 19564:1 19571:1 19581:2 19593:1 19594:1 19602:1 19603:1 19612:1 19639:2 19644:1 19656:1 19675:1 19688:1 19697:1 19707:1 19708:1 19714:2 19717:1 19722:1 19726:1 19739:1 19745:1 19749:1 19756:1 19757:3 19759:2 19773:1 19778:1 19783:1 19790:1 19802:1 19821:1 19826:7 19850:1 19858:5 19863:1 19871:1 19874:2 19879:2 19913:1 19914:1 19916:1 19919:1 19923:1 19927:1 19939:1 19965:1 19968:1 19976:2 19977:1 19978:1 19988:1 19992:1 20000:1 20006:1 20009:1 20019:1 20032:8 20033:4 20063:1 20065:5 20085:1 20096:2 20100:1 20111:1 20112:3 20127:23 20137:1 20151:1 20152:2 20172:2 20173:1 20177:1 20178:1 20179:2 20201:1 20205:4 20207:1 20209:1 20210:2 20216:2 20229:1 20237:1 20238:2 20245:3 20246:1 20257:1 20261:1 20270:1 20309:1 20317:1 20318:2 20321:1 20324:1 20328:4 20332:2 20346:1 20353:3 20354:1 20374:1 20378:1 20381:1 20394:2 20397:1 20408:1 20417:2 20424:1 20425:1 20432:1 20435:2 20445:1 20447:2 20449:1 20464:1 20467:1 20474:5 20496:1 20508:1 20509:1 20527:1 20530:1 20554:1 20559:1 20560:3 20562:2 20563:1 20571:1 20578:1 20590:1 20596:2 20612:1 20616:2 20626:2 20627:1 20640:1 20671:4 20672:9 20677:1 20680:1 20685:1 20687:1 20694:1 20700:1 20706:1 20710:2 20726:1 20732:2 20736:2 20739:3 20740:1 20742:7 20745:1 20760:1 20768:1 20769:2 20770:6 20771:1 20774:1 20783:1 20784:1 20791:5 20815:3 20831:2 20835:1 20841:3 20851:1 20855:1 20856:6 20865:1 20866:1 20879:3 20884:1 20890:1 20896:2 20919:1 20921:1 20934:1 20944:1 20947:5 20958:2 20972:1 20977:1 20978:2 20982:1 20986:1 20995:1 21000:1 21003:1 21018:1 21039:1 21050:1 21063:2 21072:1 21079:1 21084:1 21092:1 21097:1 21136:6 21139:1 21144:2 21146:1 21161:1 21162:2 21174:2 21177:2 21178:1 21192:3 21204:1 21218:1 21231:1 21252:1 21268:1 21281:1 21282:3 21286:1 21306:1 21312:2 21326:1 21334:1 21341:3 21345:2 21350:1 21356:2 21362:1 21372:2 21373:3 21380:1 21382:1 21386:2 21388:1 21389:2 21401:2 21404:1 21408:1 21418:1 21432:1 21436:1 21439:1 21448:2 21450:2 21453:1 21460:3 21461:1 21479:1 21480:1 21481:1 21491:1 21492:1 21495:1 21498:1 21501:2 21503:2 21516:1 21522:1 21528:2 21531:2 21537:1 21540:4 21551:2 21552:1 21557:3 21558:2 21571:2 21576:1 21580:5 21586:1 21615:1 21620:1 21626:1 21641:1 21643:1 21645:5 21648:1 21651:2 21658:1 21696:1 21697:1 21701:2 21704:3 21717:1 21721:1 21724:1 21731:2 21745:2 21748:2 21750:1 21757:2 21763:1 21772:1 21774:1 21797:1 21802:1 21812:1 21815:1 21817:1 21823:1 21826:1 21833:1 21838:1 21840:1 21855:1 21866:1 21871:1 21877:1 21883:2 21885:1 21888:5 21900:2 21910:1 21920:3 21929:1 21945:1 21953:1 21957:2 21961:1 21964:1 21973:1 21974:1 21977:1 21988:1 21998:1 22002:1 22003:1 22006:1 22007:1 22009:4 22014:1 22028:1 22033:2 22040:1 22044:1 22052:2 22054:1 22059:1 22062:1 22063:1 22064:1 22065:2 22069:2 22074:1 22076:2 22083:2 22093:1 22103:1 22104:1 22118:1 22119:1 22122:2 22126:1 22133:1 22149:1 22160:1 22161:2 22170:3 22180:4 22187:1 22188:1 22189:1 22192:1 22193:1 22208:2 22209:2 22217:1 22229:1 22231:4 22238:1 22239:1 22251:1 22256:1 22257:1 22266:1 22269:1 22270:1 22271:1 22281:3 22285:1 22293:4 22294:1 22298:2 22300:1 22301:1 22316:1 22339:1 22345:1 22349:8 22352:1 22360:1 22376:1 22378:2 22388:1 22402:1 22419:2 22420:1 22422:1 22429:8 22432:2 22433:1 22437:1 22438:5 22442:1 22453:3 22467:1 22469:1 22477:1 22493:2 22494:12 22506:1 22527:1 22574:1 22580:1 22581:1 22611:1 22614:2 22615:5 22618:3 22622:1 22631:2 22632:1 22633:1 22634:2 22643:2 22645:2 22652:1 22655:1 22657:1 22661:7 22662:4 22663:1 22670:1 22675:1 22679:1 22680:1 22683:1 22696:1 22714:1 22740:1 22748:1 22762:1 22774:1 22776:3 22804:3 22815:2 22819:1 22821:4 22826:1 22843:2 22847:1 22854:1 22856:2 22885:4 22890:1 22896:1 22899:1 22904:1 22914:4 22927:1 22933:2 22938:2 22946:1 22947:1 22953:1 22960:1 22963:1 22983:1 22989:2 22993:1 23007:1 23015:2 23019:1 23020:17 23039:2 23042:2 23048:1 23068:1 23079:1 23084:14 23086:2 23090:1 23094:1 23101:1 23106:1 23107:1 23113:1 23139:1 23142:4 23144:2 23146:1 23155:1 23156:4 23159:2 23167:1 23196:2 23200:1 23207:7 23216:1 23225:2 23235:1 23244:5 23245:1 23251:1 23264:1 23267:1 23269:1 23281:1 23283:2 23300:1 23304:1 23315:2 23332:1 23336:1 23339:1 23340:2 23355:10 23366:3 23386:1 23405:3 23413:1 23440:1 23441:1 23460:1 23465:1 23467:1 23486:2 23491:1 23497:2 23503:1 23507:1 23508:1 23511:1 23516:38 23521:1 23534:1 23537:3 23538:3 23540:1 23541:1 23542:2 23543:1 23545:1 23547:1 23551:1 23572:2 23579:3 23581:1 23582:1 23583:1 23588:3 23591:1 23593:1 23602:1 23623:1 23625:1 23628:1 23631:1 23661:1 23662:6 23672:3 23682:2 23689:1 23691:4 23695:1 23708:1 23714:1 23717:1 23718:1 23760:1 23796:1 23799:3 23812:4 23821:1 23822:1 23844:1 23867:1 23881:1 23883:1 23888:2 23897:1 23899:3 23905:1 23909:1 23910:1 23913:3 23915:1 23917:1 23920:2 23924:1 23956:39 23966:1 23975:3 23977:2 23985:1 24001:1 24003:1 24005:1 24015:1 24019:1 24022:1 24026:1 24027:2 24030:1 24038:2 24041:6 24045:1 24063:1 24073:1 24074:1 24078:2 24087:1 24089:1 24090:1 24102:1 24104:1 24112:1 24118:3 24123:2 24127:1 24132:1 24142:2 24144:1 24150:1 24151:1 24159:1 24171:1 24176:1 24179:2 24183:3 24186:1 24210:2 24217:1 24227:1 24235:1 24261:1 24267:1 24291:1 24294:3 24315:5 24317:1 24318:2 24328:1 24342:1 24379:1 24391:1 24395:1 24407:1 24409:1 24417:2 24428:1 24438:1 24450:2 24458:2 24470:3 24476:2 24498:1 24531:1 24535:1 24551:1 24552:1 24558:2 24562:1 24566:1 24567:1 24581:1 24582:3 24585:1 24591:1 24597:2 24600:7 24603:1 24606:1 24614:1 24625:1 24636:1 24644:2 24650:1 24656:1 24666:1 24684:1 24698:1 24701:1 24702:1 24704:1 24705:1 24726:1 24729:2 24744:1 24753:1 24758:1 24762:1 24764:1 24769:3 24783:1 24786:2 24803:1 24812:2 24817:1 24828:2 24837:1 24852:1 24858:1 24860:1 24862:7 24869:2 24872:1 24875:2 24888:2 24889:2 24893:3 24898:1 24909:1 24912:1 24918:1 24925:1 24930:1 24939:3 24940:1 24945:1 24948:1 24967:1 24971:1 24977:10 24978:2 24985:1 24997:1 25009:1 25014:1 25016:1 25021:1 25022:2 25026:1 25029:1 25038:1 25040:1 25047:1 25055:2 25077:1 25080:1 25088:1 25089:1 25097:5 25106:1 25125:1 25133:2 25142:1 25164:1 25171:1 25174:1 25185:1 25189:2 25192:4 25197:1 25201:1 25206:1 25216:1 25225:1 25233:2 25239:1 25242:1 25252:1 25256:1 25284:1 25289:4 25291:1 25292:2 25299:1 25300:1 25301:1 25304:3 25309:5 25312:1 25313:1 25315:2 25328:2 25335:1 25346:2 25363:3 25369:1 25380:1 25385:2 25386:3 25398:1 25400:1 25414:2 25415:2 25418:1 25427:1 25431:2 25437:1 25439:4 25441:1 25448:1 25454:1 25458:1 25459:1 25461:1 25462:1 25467:1 25469:1 25473:1 25479:1 25481:1 25492:1 25494:1 25500:1 25503:1 25504:1 25505:1 25519:1 25521:1 25526:1 25529:1 25530:1 25534:1 25572:1 25581:4 25595:1 25597:1 25615:1 25621:3 25623:2 25629:1 25632:1 25657:1 25671:5 25674:2 25675:2 25678:1 25684:1 25690:2 25691:1 25712:1 25718:1 25728:1 25729:1 25736:1 25740:2 25756:2 25789:1 25791:1 25796:1 25838:1 25842:1 25845:1 25863:1 25874:1 25877:2 25881:1 25882:1 25883:2 25884:6 25903:1 25915:7 25918:3 25923:1 25947:1 25949:2 25951:2 25955:1 25986:1 25989:2 26001:2 26012:1 26013:1 26019:2 26027:1 26028:1 26034:2 26037:1 26039:1 26043:1 26046:1 26054:1 26057:4 26063:1 26069:2 26075:1 26079:2 26089:1 26090:1 26097:1 26103:1 26107:1 26123:1 26124:1 26128:4 26129:1 26130:1 26131:3 26133:1 26135:2 26136:1 26154:1 26160:2 26163:1 26169:1 26174:1 26179:2 26190:1 26202:1 26216:1 26218:1 26221:1 26224:1 26239:3 26244:1 26245:1 26248:1 26253:1 26265:1 26271:1 26281:1 26283:1 26284:1 26297:2 26311:1 26312:4 26322:4 26325:2 26333:1 26340:1 26347:5 26358:1 26362:4 26363:1 26373:2 26377:4 26399:1 26406:1 26407:1 26408:5 26416:1 26417:1 26428:1 26434:1 26437:16 26446:2 26449:1 26457:1 26466:2 26488:2 26500:1 26506:1 26512:1 26543:1 26548:1 26559:1 26562:1 26565:2 26568:3 26570:1 26575:1 26587:1 26590:2 26591:1 26594:1 26596:1 26618:3 26623:1 26634:3 26668:1 26677:1 26679:1 26684:1 26696:1 26711:1 26721:1 26725:1 26726:1 26727:2 26731:1 26737:1 26739:1 26750:1 26752:1 26753:1 26759:1 26760:1 26761:2 26773:2 26787:1 26799:3 26808:1 26809:1 26813:1 26824:3 26834:2 26836:2 26841:1 26843:1 26845:2 26865:1 26866:1 26872:1 26873:4 26876:2 26885:2 26900:2 26901:1 26905:16 26906:1 26910:1 26915:1 26919:1 26922:1 26926:3 26940:1 26950:1 26952:2 26957:1 26963:1 26981:1 26982:1 26988:6 26992:1 26995:1 27006:1 27011:1 27020:1 27025:1 27027:1 27030:1 27031:1 27042:1 27043:2 27044:1 27051:1 27090:1 27099:2 27106:1 27125:2 27127:1 27141:3 27158:2 27162:1 27167:1 27168:1 27172:1 27174:1 27179:1 27215:4 27219:1 27232:1 27234:1 27237:4 27250:1 27253:1 27262:1 27275:1 27277:3 27291:1 27300:1 27301:2 27310:1 27318:2 27327:2 27330:1 27339:1 27343:1 27361:1 27365:1 27373:1 27374:2 27385:1 27386:1 27400:1 27410:1 27416:1 27419:1 27449:1 27454:1 27463:1 27469:2 27483:2 27490:1 27496:1 27500:1 27508:2 27510:6 27515:1 27536:3 27539:1 27544:2 27546:1 27559:4 27570:1 27576:1 27585:4 27591:1 27593:1 27595:3 27617:1 27623:2 27627:7 27628:1 27631:2 27644:1 27645:2 27648:1 27653:2 27662:1 27670:3 27681:3 27690:2 27693:1 27696:1 27702:1 27704:1 27708:1 27715:1 27725:1 27740:1 27741:1 27756:1 27777:2 27780:1 27783:2 27785:1 27788:2 27792:1 27793:1 27797:1 27799:1 27802:3 27804:1 27806:1 27818:1 27822:1 27826:5 27832:6 27841:2 27842:2 27843:2 27854:2 27865:1 27872:1 27882:1 27884:2 27888:1 27901:1 27908:2 27910:1 27913:1 27919:1 27929:1 27938:1 27954:2 27959:1 27961:1 27968:3 27982:2 27996:1 28002:1 28003:2 28005:1 28011:1 28016:10 28020:1 28035:1 28042:1 28044:1 28054:1 28067:1 28074:1 28081:2 28089:1 28090:1 28093:3 28095:1 28100:1 28105:3 28111:1 28138:1 28141:2 28142:1 28144:1 28145:3 28149:1 28161:1 28162:5 28163:1 28165:2 28169:3 28171:1 28174:1 28177:1 28178:2 28180:1 28181:2 28186:4 28200:3 28209:1 28213:3 28214:1 28216:3 28221:1 28228:1 28235:1 28238:1 28251:1 28269:8 28275:1 28282:1 28286:4 28314:1 28316:1 28317:1 28324:1 28326:1 28329:3 28332:1 28335:3 28343:1 28347:1 28349:1 28351:1 28352:1 28370:2 28371:2 28390:1 28393:1 28423:1 28424:1 28438:2 28463:1 28473:1 28480:1 28482:1 28499:1 28528:1 28534:1 28538:1 28548:1 28559:1 28570:1 28574:3 28575:2 28578:2 28579:1 28580:1 28583:5 28586:1 28588:3 28590:1 28591:8 28592:1 28596:1 28599:1 28615:1 28652:1 28658:1 28662:1 28672:3 28675:1 28676:1 28681:1 28687:1 28689:1 28703:1 28707:1 28725:2 28742:2 28746:1 28760:1 28761:5 28772:2 28776:1 28777:1 28784:2 28793:1 28798:2 28799:1 28812:1 28824:1 28825:1 28834:1 28835:1 28838:1 28847:4 28866:1 28869:2 28872:1 28874:3 28883:1 28888:16 28890:2 28892:1 28895:1 28900:1 28911:1 28917:6 28926:1 28927:6 28964:1 28996:1 29009:1 29014:1 29018:1 29019:5 29037:1 29043:1 29048:1 29050:1 29051:2 29053:1 29055:12 29061:3 29071:1 29074:1 29077:1 29088:2 29089:1 29096:1 29100:1 29105:14 29114:2 29148:1 29156:2 29158:2 29163:1 29166:1 29174:1 29176:1 29178:1 29181:1 29182:2 29193:1 29202:1 29226:1 29237:2 29269:3 29280:1 29294:1 29296:1 29301:2 29305:1 29307:1 29316:1 29328:1 29332:48 29333:1 29335:1 29355:1 29357:5 29358:1 29361:2 29365:2 29367:6 29368:2 29370:1 29376:1 29402:1 29426:4 29430:13 29432:1 29440:1 29447:1 29450:2 29455:1 29463:1 29464:1 29472:1 29487:1 29488:2 29497:1 29524:1 29539:1 29548:1 29554:3 29558:1 29563:2 29578:1 29583:2 29587:1 29598:1 29612:1 29617:1 29622:5 29640:2 29650:5 29696:1 29699:1 29704:1 29706:1 29726:1 29732:1 29736:1 29739:1 29741:2 29749:1 29751:2 29753:1 29757:2 29758:1 29764:1 29794:1 29796:1 29799:2 29802:1 29813:2 29814:1 29826:1 29833:3 29842:1 29843:1 29844:3 29853:1 29866:1 29870:1 29871:1 29882:1 29886:2 29894:1 29899:1 29903:1 29916:1 29918:1 29920:1 29921:1 29926:1 29929:2 29939:1 29940:11 29941:1 29943:2 29946:4 29968:1 29971:3 29982:7 29988:1 30000:2 30003:4 30008:2 30009:2 30015:2 30019:39 30026:2 30048:2 30062:1 30068:1 30070:1 30085:2 30087:1 30088:1 30089:2 30093:2 30094:2 30095:5 30096:1 30107:1 30121:1 30129:1 30131:2 30138:1 30142:2 30147:3 30153:1 30161:1 30169:1 30170:1 30174:1 30176:2 30186:1 30189:1
|
853176b6bb5f87e655fa34ce8eeba9186d520281
|
d3d4c2b897530aaaea4c5411ba745ee516a78083
|
/w.tst
|
70ed6a98444525551244934778d06fea3b964238
|
[] |
no_license
|
jgmatu/SOT1516
|
e5d260b6318515570cfc464f17a572be74f818f8
|
c7d1d063ef006378577cb0ede7df3d61a945c65a
|
refs/heads/master
| 2020-12-31T04:17:39.843950
| 2017-03-23T15:35:08
| 2017-03-23T15:35:08
| 58,229,528
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 33
|
tst
|
w.tst
|
cd /tmps
ps
tee a.txt
grep bash
|
e8064725613eabd0bd1fa3b550223cbd40ddbffd
|
da5f041febe4b5e738a88500e6b5c0eeea4da116
|
/signals (1)/C_decod.sce
|
1ac5fde44ee2cab4bfee1ed2a2bb8adcc96be7f2
|
[] |
no_license
|
djouani/scilab-project
|
283a5d7467957851787288bb0505a6ceac8b0e07
|
01331434dff090bdff27d416c57ee54484cd2c47
|
refs/heads/main
| 2023-07-25T04:49:09.341708
| 2021-09-08T11:39:39
| 2021-09-08T11:39:39
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 189
|
sce
|
C_decod.sce
|
global Kol_DvoichKOD Decods
//Выводим Задекодированный сигнал после демодуляции
for i = 1:Kol_DvoichKOD
mprintf('%d) %s\n',i,Decods(i))
end
|
da69660e89df6d5c76c10937769f15842dd39044
|
676ffceabdfe022b6381807def2ea401302430ac
|
/solvers/DiffusionSolver/Tests/ImDiffusion_m6_time_int.tst
|
1086630562be51c1c20e285400c715ac21cf259f
|
[
"MIT"
] |
permissive
|
mathLab/ITHACA-SEM
|
3adf7a49567040398d758f4ee258276fee80065e
|
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
|
refs/heads/master
| 2022-07-06T23:42:51.869689
| 2022-06-21T13:27:18
| 2022-06-21T13:27:18
| 136,485,665
| 10
| 5
|
MIT
| 2019-05-15T08:31:40
| 2018-06-07T14:01:54
|
Makefile
|
UTF-8
|
Scilab
| false
| false
| 564
|
tst
|
ImDiffusion_m6_time_int.tst
|
<?xml version="1.0" encoding="utf-8"?>
<test>
<description> 2D unsteady CG implicit diffusion </description>
<executable>DiffusionSolverTimeInt</executable>
<parameters> ImDiffusion_m6.xml</parameters>
<files>
<file description="Session File"> ImDiffusion_m6.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-08"> 0.00199446 </value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-08"> 0.002837 </value>
</metric>
</metrics>
</test>
|
7ee9158b33eb9e09471fc8b1a117b2120b2a2b86
|
14880498693284f57507e99d65f9d65104a4566c
|
/html/template.php.tst
|
8ece5c58dfc94f8cbbef60c99268d81ddb897bee
|
[] |
no_license
|
hasakura12/AWS_QuikID_website
|
350f727586804909087a91bd0e31d144fa388749
|
55a03e0633099744b447eedd8fc88d6249b29ccb
|
refs/heads/master
| 2021-05-30T07:24:11.738439
| 2016-01-07T21:44:43
| 2016-01-07T21:44:43
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 12,836
|
tst
|
template.php.tst
|
<!DOCTYPE html>
<!-- Microdata markup added by Google Structured Data Markup Helper. -->
<html lang="en" itemscope itemtype="http://schema.org/Article">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="robot" content="All">
<meta name="language" content="EN">
<title>@TITLE@</title>
<meta name="copyright" content="2014 FusionPipe Software Solutions">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="author" content="FusionPipe">
<!--This helps to improves Google ownership for search engine optimization. -->
<meta property="place:location:latitude" content="49.28775"/>
<meta property="place:location:longitude" content="-123.118226"/>
<meta property="business:contact_data:street_address" content="1055 West Hastings Street"/>
<meta property="business:contact_data:locality" content="Vancouver"/>
<meta property="business:contact_data:postal_code" content="V6E 2E9"/>
<meta property="business:contact_data:country_name" content="Canada"/>
<meta property="business:contact_data:email" content="info@fusionpipe.com"/>
<meta property="business:contact_data:phone_number" content="+1 7783286427"/>
<meta property="business:contact_data:website" content="http://www.fusionpipe.com"/>
<meta name="title" content="@TITLE@">
@META_TAGS@
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="/media/favicon.ico" alt="favicon">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/media/apple-touch-icon-57.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/media/apple-touch-icon-72.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/media/apple-touch-icon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/media/apple-touch-icon-144.png">
<!-- Bootstrap core CSS -->
<link href="/css/bootstrap.min.css" rel="stylesheet">
<!--<link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> -->
<!-- Icon Font -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
<link rel="stylesheet" href="../css/custom.css">
<link rel="stylesheet" href="../css/animate.min.css">
<!--<script src="../js/response.min.js"></script> -->
@HEADER_SCRIPTS@
</head>
<body>
<!--Navigation-->
@NAVIGATION@
<!--Main Content-->
<div class="content">@CONTENT@</div>
<!--Fixed Tab-->
<!--
<div class="slide-out-div">
<a class="handle">Content</a>
<h3>Contact me</h3>
<p>Slide Out</p>
</div>
-->
<section id="subscribe">
<div class="container subscribe">
<div class="row">
<div class="col-md-12 ">
<hgroup>
<h1 class="text-center">Subscribe to our exclusive newsletter</h1>
<h4 class="text-center">Get the latest product updates sent right to your inbox!</h4>
</hgroup>
<div>
<div class="col-sm-offset-2 col-sm-8 col-md-offset-3 col-md-6 col-lg-offset-0 col-lg-12">
<div id="subscribing-state" style="display:none;">
<h4>Subscribing....</h4>
</div>
<div class="input-group" id="subscribe-form">
<input class="sub_text" name="sfname" id="sfname" type="text" placeholder="First name" required>
<input class="sub_text" name="slname" id="slname" type="text" placeholder="Last name" required>
<input class="sub_text" name="scompany" id="scompany" type="text" placeholder="Company">
<input class="sub_text" name="email" id="email" type="email" placeholder="Email address" required>
<button class="btn btn-info btn-lg" id="subscribe_btn">Subscribe</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section id="subscribe">
<div class="container subscribe">
<div class="row">
<div id="mc_embed_signup">
<form action="//fusionpipe.us5.list-manage.com/subscribe/post?u=a386546e12c1988cf05356144&id=a177e65bd2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<hgroup>
<h1 class="text-center">Subscribe to our exclusive newsletter!</h1>
<h4 class="text-center">Get the latest product updates sent right to your inbox!</h4>
</hgroup>
<div class="col-md-6 col-md-offset-3">
<div class="input-group">
<div class="mc-field-group">
<input type="email" value="" name="EMAIL" class="required email btn btn-lg" id="mce-EMAIL" placeholder="Email address">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div style="position: absolute; left: -5000px;">
<input type="text" name="b_a386546e12c1988cf05356144_a177e65bd2" tabindex="-1" value="">
</div>
<div class="clear sub-btn">
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-info btn-lg">
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
-->
<!--Footer-->
<footer id="footer">
<footer class="container">
<div class="row footer-main">
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-3">
<h4>Solutions</h4>
<ul>
<li class="quikid"><a href="http://@@http_host@@/quikid">QuikID<sup>TM</sup></a></li>
<li class="keyvault"><a href="http://@@http_host@@/keyvault">QuikSafe<sup>TM</sup> KeyVault<sup>TM</sup></a></li>
<li class="qscontainer"><a href="http://@@http_host@@/container">QuikSafe<sup>TM</sup> Enterprise HE Container</a></li>
<li class="sdk"><a href="http://@@http_host@@/sdk">QuikSafe<sup>TM</sup> SDK</a></li>
<li class="pro-service"><a href="mailto:info@fusionpipe.com?Subject=I would like to inquire about professional services" target="_top">Professional Services</a></li>
</ul>
</div><!--solution end-->
<div class="col-xs-12 col-sm-4 col-md-2 col-lg-2">
<h4>Company</h4>
<ul>
<li class="about"><a href="http://@@http_host@@/company#about">About</a></li>
<li class="team"><a href="http://@@http_host@@/company#team">Team</a></li>
<li class="event"><a href="http://@@http_host@@/company#events">Event Calendar</a></li>
<li class="awards"><a href="http://@@http_host@@/company#awards">Awards</a></li>
<li class="partners"><a href="http://@@http_host@@/company#partners">Partners</a></li>
<li class="careers"><a href="http://@@http_host@@/company#careers">Careers</a></li>
</ul>
</div><!--company end-->
<div class="clearfix visible-xs"></div>
<div class="col-xs-12 col-sm-4 col-md-2 col-lg-2">
<h4>Media</h4>
<ul>
<li class="press"><a href="http://@@http_host@@/press">Press & Media</a></li>
<!-- <li class="resources"><a href="?page=resources">Resources</a></li> -->
<!-- <li class="blog"><a href="?page=blog">Blog</a></li> -->
</ul>
</div><!--media end-->
<div class="contact-col col-xs-12 col-sm-12 col-md-5 col-lg-5">
<h4>Contact</h4>
<ul>
<li>FusionPipe Software Solutions Inc.</li>
<li>1400 - 1055 West Hastings Street Vancouver, BC V6E 2E9</li>
<li>+1 778 328 6427</li>
<li><a href="mailto:info@fusionpipe.com?Subject=I would like to inquire about..." target="_top">
info@fusionpipe.com</a></li>
</ul>
<div class="social-icon">
<a href="https://twitter.com/fusionpipe"><i id="social" class="fa fa-twitter-square fa-3x"></i></a>
<a href="https://www.facebook.com/FusionPipe"><i id="social" class="fa fa-facebook-square fa-3x"></i></a>
<a href="http://www.linkedin.com/company/fusionpipe-software"><i id="social" class="fa fa-linkedin-square fa-3x"></i></a>
<a href="https://www.youtube.com/channel/UCYdBWIA1FkSCS5wyXQC5O4g"><i id="social" class="fa fa-youtube-square fa-3x"></i></a>
<a href="http://vimeo.com/fusionpipe"><i id="social" class="fa fa-vimeo-square fa-3x"></i></a>
<!--<a href="https://plus.google.com/103084552466900146011/posts"><i id="social" class="fa fa-google-plus-square fa-3x"></i></a>-->
</div>
<div class="social-text">
<a href="http://www.crunchbase.com/company/fusionpipe-software-solutions">CRUNCHBASE</a>
<a href="http://www.techvibes.com/company-directory/fusionpipe-software-solutions-inc">TECHVIBES</a>
</div>
</div><!--Contact Line end-->
</div><!--row end-->
<div class="row footer-bottom">
<!-- copyright -->
<div class="footer-small">© @DATE@ FusionPipe Software Solutions Inc. · <a href="?page=privacy">Privacy</a> · <a href="?page=terms">Terms</a></div><!-- copyright -->
</div>
<a id="back-to-top" href="#" class="btn btn-primary btn-lg back-to-top" role="button" title="Click to return on the top page" data-toggle="tooltip" data-placement="left"><i class="fa fa-caret-up fa-2x"></i></a>
</footer><!--Footer Class end-->
</footer><!--Footer ID end-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../js/custom.js"></script>
<script src="../js/bootstrap.min.js"></script>
<!-- <script src="../js/jquery.tabSlideOut.v1.3.js"></script>-->
<!-- Plugin JavaScript -->
<!-- <script src="../js/cbpAnimatedHeader.js"></script> -->
<!-- <script src="../js/wow.min.js"></script> -->
<!-- <script src="../js/ekko-lightbox.js"></script> -->
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-17024088-6', 'auto');
ga('send', 'pageview');
</script>
<!--VISISTAT SNIPPET//-->
<script type="text/javascript">
//<![CDATA[
var DID=238727;
var pcheck=(window.location.protocol == "https:") ? "https://sniff.visistat.com/live.js":"http://stats.visistat.com/live.js";
document.writeln('<scr'+'ipt src="'+pcheck+'" type="text\/javascript"><\/scr'+'ipt>');
//]]>
</script>
<!--VISISTAT SNIPPET//-->
<!-- Activate Animation -->
<!--<script>new WOW().init();</script>-->
<!-- Social Share Plugin-->
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-53604ffd564dc736"></script>
<!-- Loop Slide Plugin-->
<script>
jQuery('.slider').lbSlider({
leftBtn: '.sa-left', // left button selector
rightBtn: '.sa-right', // right button selector
visible: 3, // visible elements quantity
autoPlay: true, // autoscroll
autoPlayDelay: 10 // delay of autoscroll in seconds
});
</script>
@FOOTER_SCRIPTS@
</body>
</html>
|
dc54e57695ea7ca629039feb41b9e1f1464fa9ae
|
1573c4954e822b3538692bce853eb35e55f1bb3b
|
/DSP Functions/allpasslp2bpc/test_4.sce
|
eecc2cc6358610249c47153f3e7424fa12169f2a
|
[] |
no_license
|
shreniknambiar/FOSSEE-DSP-Toolbox
|
1f498499c1bb18b626b77ff037905e51eee9b601
|
aec8e1cea8d49e75686743bb5b7d814d3ca38801
|
refs/heads/master
| 2020-12-10T03:28:37.484363
| 2017-06-27T17:47:15
| 2017-06-27T17:47:15
| 95,582,974
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 315
|
sce
|
test_4.sce
|
// Test # 4 : When either Input Argument #1 or #2 is of complex type
exec('./allpasslp2bpc.sci',-1);
[n,d]=allpasslp2bpc(0.1,[0.3,0.4*%i]);
//!--error 10000
//Wt must be real,numeric and must contain only 2 elements
//at line 43 of function allpasslp2bpc called by :
//[n,d]=allpasslp2bpc(0.1,[0.3,0.4*%i]);
|
15f35a3618c6013a03e961fce3a651d65cf6ac8c
|
f891f5aed2e66371488173c2b9c4e8f977a9f64a
|
/SunSpec Utilities/Tests/SMA_GG_Node_3.tst
|
f3cdf39deee6ea9ee140017e418aa0ee437b9bb7
|
[] |
no_license
|
jakedm/svp_directories
|
d9b85c41b45a3ded7572f9f730e8d1efc8515099
|
19272f8784baabf83e197778768933aef015432c
|
refs/heads/master
| 2021-01-18T18:08:29.224016
| 2017-01-16T20:09:35
| 2017-01-16T20:09:35
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 212
|
tst
|
SMA_GG_Node_3.tst
|
<scriptConfig name="SMA_GG_Node_3" script="gridguard">
<params>
<param name="gg.ipaddr" type="string">192.168.0.2</param>
<param name="gg.code" type="string">3598800</param>
</params>
</scriptConfig>
|
7aa63943ff578c13fdd4530c1d6af5c0657bdd7b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1697/CH7/EX7.5/Exa7_5.sce
|
9d3f941bbe2080835392723ce353b34e910f14a8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 237
|
sce
|
Exa7_5.sce
|
//Exa 7.5
clc;
clear;
close;
//given data :
f=1.2;//in GHz
f=f*10^9;//in Hz
BWFN=5;//in degree
c=3*10^8;//in m/s
lambda=c/f;//in meters
D=140*lambda/BWFN;//in meters
disp(D,"Diameter of a paraboloidal reflector in meters : ");
|
b9ceb15725dcc5d11585b41cfd7479430bb24efe
|
b26239033e0d21476c77ff50326b32231c2a3b00
|
/Workspace/missionB3.sce
|
159a3463ecc515cb4236fdc018737a838201d997
|
[] |
no_license
|
SmartGuyy/Exolife
|
1c9a5bfdb8b16523e9681170fe4cb2cb12613e3a
|
eb477766dffe7edd9022d0cf46028980489c6277
|
refs/heads/master
| 2021-06-17T03:56:00.785128
| 2017-03-17T09:39:04
| 2017-03-17T09:39:04
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,026
|
sce
|
missionB3.sce
|
img_input = readpbm("C:\Users\DimitriXPS\Documents\GitHub\Exolife\Exolife\Images\Mission 7\HD215497.pbm");
// dossier destination images séparées
imgDestination = ("C:\Users\DimitriXPS\Documents\GitHub\Exolife\Exolife\Stockage_Images_Missions\")
// filtre jaune + normalisation
imgEau = normalisation(intervalleColor(img_input,0,64))
//filtre rouge + normalisation
imgZonesRouge = normalisation(intervalleColor(img_input,65,128))
// filtre bleu + normalisation
imgZonesBleuVegetation = normalisation(intervalleColor(img_input,127,189))
// filtre vert + normalisation
imgVolcansMontagnes = normalisation(intervalleColor(img_input,191,255))
// écritures des images selon intervalles
writepbm(imgEau,imgDestination+"MissionB3_Eau.pbm");
writepbm(imgZonesRouge,imgDestination+"MissionB3_ZonesRouge.pbm");
writepbm(imgZonesBleuVegetation,imgDestination+"MissionB3_ZonesBleuVegetation.pbm");
writepbm(imgVegetation,imgDestination+"MissionB3_VolcansMontagnes.pbm");
|
ccf3ec584d69137817f3970d675c9c33217433fa
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1938/CH3/EX3.10/3_10.sce
|
81ad668b315cef16237c7d2736f4f869b8d93d79
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,225
|
sce
|
3_10.sce
|
clc,clear
printf('Example 3.10\n\n')
motor_output_FL =15000 //full load motor output
V=250,R_sh=100
//at 80 % of full load
motor_output_FL_dash=(80/100)*motor_output_FL //80 percent of full load output
eta=90/100 //efficiency
motor_input=motor_output_FL_dash/eta
total_losses = motor_input - motor_output_FL_dash //at 80 % of full load
//at maximum efficiency , variable losses = constant losses
constant_losses= total_losses/2
variable_losses= constant_losses
I= motor_input/V //line current at 80% load
I_sh= V/ R_sh
I_a= I- I_sh
//since armature copper loss =R_a*I_a^2
R_a=variable_losses/I_a^2
E_b1=V-I_a*R_a //motor back EMF at 80% of full load
N_1=750 // corresponding speed is given as 750 rpm
//When motor current is 80 A
I=80
I_a=I-I_sh
arm_cu_losses= R_a*I_a^2 //armature copper loss
total_losses = arm_cu_losses + constant_losses
motor_input= V*I
motor_output = motor_input- total_losses
eta=100*motor_output/motor_input //efficiency of motor
printf('Efficiency of motor is %.2f percent when motor draws 80A current',eta)
E_b2=V-I_a*R_a //motor back EMF at 80% of full load
N_2=N_1*(E_b2/E_b1) //because E_b is proportional to N
printf('\nand Speed is %.2f r.p.m',N_2)
|
360931ea6b98eee997f106136dca324f88de2069
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/62/CH5/EX5.7/ex_5_7.sce
|
a232f07f2c2f32a1f9fea2210c2d706cb6e7341d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 614
|
sce
|
ex_5_7.sce
|
clear;
close;
clc;
T0=4;
t=-5.99:0.01:6;
t_temp=0.01:0.01:T0/2;
s=length(t)/length(t_temp);
x=[];
for i=1:s
if modulo(i,2)==1 then
x=[x -ones(1,length(t_temp))];
else
x=[x ones(1,length(t_temp))];
end
end
plot(t,x,'r')
w0=%pi/2;
for k=-10:10
cc(k+11,:)=exp(-%i*k*w0*t);
ck(k+11)=x*cc(k+11,:)'/length(t);
if abs(ck(k+11))<0.01 then
ck(k+11)=0;
else if real(ck(k+11))<0.1 then
ck(k+11)=%i*imag(ck(k+11));
end
end
if k==0 then
c0=ck(k+11);
end
end
//trigmometeric form
a0=2*c0;
a=2*real(ck);
b=2*imag(ck);
|
581af7d2d07799194565fb4ef2f4c5fef075dd6c
|
8781912fe931b72e88f06cb03f2a6e1e617f37fe
|
/scilab/final/shootingmethod/newton.sci
|
90de9ae9def44e348ba2ad8152fca266f5f3d22e
|
[] |
no_license
|
mikeg2105/matlab-old
|
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
|
eac168097f9060b4787ee17e3a97f2099f8182c1
|
refs/heads/master
| 2021-05-01T07:58:19.274277
| 2018-02-11T22:09:18
| 2018-02-11T22:09:18
| 121,167,118
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 311
|
sci
|
newton.sci
|
function sol=newton(a,delta,funx,dfunx)
//delta=0.0001;
x=a+sqrt(delta);
//fx = 0.5*sin(2*(x-(%pi/4)))+h*sin(x);
fx=funx(x);
while (abs(fx))>=delta
a=x;
//fx = 0.5*sin(2*(x-(%pi/4)))+h*sin(x);
fx=funx(x);
dfx=dfunx(x);
//dfx= cos(2*(x-(%pi/4)))+h*cos(x);
x=a-(fx/dfx);
end;
sol=x;
endfunction;
|
639d01e5ffc6eb7f54db6dfa96050c9b9f47cad0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2216/CH2/EX2.1/ex_2_1.sce
|
cc514fbbeb2ff78d0462b624eb1656c9a6f8d445
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 636
|
sce
|
ex_2_1.sce
|
//Example 2.1 // NA ,angles and pulse broadning
clc;
clear;
close;
format('v',9 )
disp("part (a)")
n1=1.5;//core refrative index
n2=1.48;//claddin refractive index
a=100/2;//radius in micro meter
na=1;//air refrative index
NA=sqrt(n1^2-n2^2);//numerical aperture
disp(NA,"numerical aperture is")
disp("part (b)")
am=(asind(NA));//
tm=asind(NA/n1);//
tc=asind(n2/n1);//
disp(am,"angle in degree is (αm)")
disp(tm,"angle in degree is (Om)")
disp(tc,"angle in degree is(Φc)")
disp("part (c)")
c=3*10^8;//speed of light in m/s
dtl=((n1/n2)*(n1-n2)/c);//pulse broadning per unit length
disp(dtl,"pulse broadning per unit length in sm^-1")
|
2248bea23bf2d22d26f2501d5a8406d14b8f445a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/551/CH13/EX13.20/20.sce
|
9e2ade33a7ba370f912e3c64fb0dcd00bfd55102
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 231
|
sce
|
20.sce
|
clc
pm=7.5; //bar
r=12.5;
p1=1; //bar
y=1.4;
// pm = p1*r^y*[y*(rho-1) - r^(1-y)*(rho^y-1)]/(y-1)/(r-1)
//Solving above equation we get
rho=2.24;
%cutoff=(rho-1)/(r-1)*100;
disp("%cutoff=")
disp(%cutoff)
disp("%")
|
42301de186ec629cc783a76116acbf38d98bc5af
|
e770dc26235168913bdcd5b2332f3a38a95a8bc7
|
/Toolbox Test/levinson/levinson2.sce
|
b1b671cb79095771f1bef5293ed0f4150ca72845
|
[] |
no_license
|
deecube/majorTom
|
f00eca4e2effff2c5eba746878f2c0842fe14680
|
84365fc032fc0ca44abac8330ec4ac6d85a85b3f
|
refs/heads/master
| 2021-01-21T14:04:23.323717
| 2016-05-23T06:05:31
| 2016-05-23T06:05:31
| 51,731,222
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 191
|
sce
|
levinson2.sce
|
//check o/p for a given matrix
r=[1 34 4];
a=levinson(r);
disp(a);
//output
// !--error 4
//Undefined variable: n
//at line 31 of function levinson called by :
//levinson(r)
|
48b33fb1d918b090403d4697ddd03ca376e9e2be
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3755/CH6/EX6.28/Ex6_28.sce
|
cd8fefb48da01464da13397c988d41778f0a9682
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 323
|
sce
|
Ex6_28.sce
|
clear
//
//
//
//Variable declaration
delta_t=10^-12; //life time(s)
hby2pi=1.054*10^-34;
e=1.6*10^-19; //charge of electron(c)
//Calculations
deltaE=hby2pi/(2*e*delta_t); //uncertainity in energy(eV)
//Result
printf("\n uncertainity in energy is %0.1f *10^-4 eV",deltaE*10^4)
|
12b714b0623fc4e070ecbc9acad322c438a396d3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/98/CH13/EX13.16/example13_16.sce
|
afcbe1e243985236749d48223741551ea12b2d14
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 429
|
sce
|
example13_16.sce
|
//Chapter 13
//Example 13_16
//Page 328
clear;clc;
i=1.25;
//minimum voltage occurs at point C
Vc=220;
x=450;
r_km=0.05;
l=800;
r=2*r_km/1000;
Vac=i*r*x^2/2;
Va=Vc+Vac;
Vbc=i*r*(l-x)^2/2;
Vb=Vc+Vbc;
printf("Voltage drop in section AC = %.2f V \n\n", Vac);
printf("Voltage at feeding point A = %.2f V \n\n", Va);
printf("Voltage drop in section BC = %.2f V \n\n", Vbc);
printf("Voltage at feeding point B = %.2f V \n\n", Vb);
|
d4525ef049c729dd2ea7cc9699bf5cd629ee2a73
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2384/CH1/EX1.12/ex1_12.sce
|
7e90d7c8964618da03e10d5ca3eaf8b090374a5e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 441
|
sce
|
ex1_12.sce
|
// Exa 1.12
clc;
clear;
close;
format('v',7)
// Given data
V1 = 12;// in V
V2 = 10;// in V
VB = 0;// in V
R1 = 2;// in ohm
R2 = 1;// in ohm
R3 = 10;// in ohm
// Using KCL at node A :
VA= (V1*R2*R3+V2*R3*R1)/(R1*R2+R2*R3+R3*R1);// in V
I1 = (V1-VA)/R1;// in A
I2 = (V2-VA)/R2;// in A
I3 = (VA-VB)/R3;// in A
disp(I1,"The value of I1 in A is : ")
disp(I2,"The value of I2 in A is : ")
disp(I3,"The value of I3 in A is : ")
|
208e079b3685d6c2e942e54c4fbe535dee7cc3f5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3440/CH7/EX7.3/Ex7_3.sce
|
0552bcddd1581f4bc1d4c589347cccdf9b8be9e1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 534
|
sce
|
Ex7_3.sce
|
clc
T=300 //K
k=8.617*10^-5 //eV/K
q=1.6*10**-19 //C
epsilons=8.854*10^-31 //F/cm
ni=9.65*10^9//cm^-3
ND=5*10^19//cm^-3
phibn=0.8//V
I=1//A
mn=0.26
Rc=10^-6//ohm cm^2
A=10^-5//cm^2
h=1.05*10^-34
a=Rc/A
disp(a,"Rc/A in ohm is=")
C2=(4*sqrt(mn*epsilons*(1.05*10^-10)))/h
disp(C2,"C2 in m^(3/2)/V is= ") //texbook ans is wrong
I0=(A/Rc)*(sqrt(ND*10^6)/C2)*exp((C2*phibn)/sqrt(ND*10^6))
disp(I0,"I0 in A is= ") //textbook ans is wrong
V=phibn-(sqrt(ND)/C2)*log(I0/I)
disp(V,"V in V is= ")
|
4dc7aad6dfc64f3d4c50fa820b145f117ee0fb5c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1092/CH12/EX12.1/Example12_1.sce
|
4d58df8644f61d35d26d3e3f73cc5580c5492bae
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,699
|
sce
|
Example12_1.sce
|
// Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 12: POWER,ENERGY,AND EFFICIENCY RELATIONS OF DC AND AC DYNAMOS
// Example 12-1
clear; clc; close; // Clear the work space and console.
// Given data
P = 10000 ; // Power rating of the shunt generator in W
V = 230 ;// Voltage rating of the shunt generator in volt
S = 1750 ; // Speed in rpm of the shunt generator
// Shunt generator was made to run as a motor
V_a = 245 ; // Voltage across armature in volt
I_a = 2 ; // Armature current in A
R_f = 230 ; // Field resistance in ohm
R_a = 0.2 ; // Armature resistance
// Calculations
// case a
Rotational_losses = (V_a * I_a) - (I_a^2 * R_a); // Rotational losses in W at full load
// case b
V_t = V ;
// At rated load
I_L = P / V_t ; // Line current in A
I_f = V / R_f ; // Field current in A
Ia = I_f + I_L ; // Armature current in A
armature_loss = (Ia^2 * R_a); // Full-load armature loss in W
V_f = V ; // Field voltage in volt
field_loss = V_f * I_f; // Full-load field loss in W
// case c
//
eta = P / ( P + Rotational_losses + (armature_loss+field_loss) ) * 100 ;
// Display the results
disp("Example 12-1 Solution : ");
printf(" \n a: Rotational losses at full load = %.1f W \n",Rotational_losses);
printf(" \n b: At the rated load,\n I_L = %.1f A\n I_a = %.1f A\n",I_L,Ia);
printf(" \n Full-load armature loss :\n (I_a^2)*R_a = %.f W \n",armature_loss);
printf(" \n Full-load field loss :\n V_f*I_f = %.f W \n",field_loss);
printf(" \n c: Efficiency of the generator at rated load(full-load in this Ex.) : ");
printf(" \n η = %.1f percent ",eta);
|
cbb88a952f95cad984a699cae875b38f1c81390e
|
cb3c54411a4f3432c21524a69262b6655ba46ac1
|
/Calculo_Numerico/bisseccao.sci
|
de23c96198e65a2d976933e003be5935d26bbe19
|
[] |
no_license
|
draetus/faculdade_trabalhos
|
ae85c0c89888c2ad956c6aa7147a801d0cdf4f9a
|
e9971b4478112fbe7333ad71d1b4f1620b384eb6
|
refs/heads/master
| 2022-12-30T19:39:42.191109
| 2020-10-16T13:12:03
| 2020-10-16T13:12:03
| 87,357,566
| 4
| 2
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 390
|
sci
|
bisseccao.sci
|
clear
close
function [s] = f(x)
s = x*log(x) - 1;
endfunction
a = 1;
b = 2;
e = 0.002;
k=1; //contador de iterações
x=(b+a)/2;
while abs(b-a)>e & abs(f(x))>e
if f(x) == 0
break;
elseif f(a)*f(x)>0
a=x;
else
b=x;
end
x=(b+a)/2;
k=k+1;
end
disp("METODO BISSECCAO");
disp("X = ");
disp(x);
disp("Iteracoes = ");
disp(k);
|
3546e9bec00b5abc2cbe6b78b661e7e6693edee2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/914/CH7/EX7.5/ex7_5.sce
|
3a9a937c6d5a96b5442cf36b5037bdef5bbdc38e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
ex7_5.sce
|
clc;
warning("off");
printf("\n\n example7.5 - pg 282");
// given
Fextx=-2522; //[lb] - force in x direction
Fexty=2240; //[lb] - force in y direction
// the force exerted by the elbow on the fluid is the resolution of Fext,x and Fext,y , therefore
Fext=((Fextx)^2+(Fexty)^2)^(1/2);
alpha=180+(atan(Fexty/Fextx))*(180/%pi);
printf("\n\n the force has a magnitude of %flb and a direction of %f from the positive x direction(in the second quadrant",Fext,alpha);
|
5612a02e081d4899fa67615ce1cb55fd111508b6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3821/CH11/EX11.19/Example11_19.sce
|
8dd5a40319ca255b18cd641182ccd8a4de22cfa0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,456
|
sce
|
Example11_19.sce
|
///Chapter No 11 Steam Boilers
////Example 11.19 Page No 252
///Find Velocity of the flue gases in the chimney
//Input data
clc;
clear;
H2=38; //Stack height in m
d1=1.8; //Stack diameter in m
ma1=18; //Flue gases per kg of the fuel burnt
Tg1=277+273; //Average temp of the flue gases in degree celsius
Ta1=27+273; //Temperature of outside air in degree celsius
h11=0.4; //Theorical draught is lost in friction in %
g1=9.81;
pi1=3.142
//Calculation
H3=H2*(((Tg1/Ta1)*(ma1/(ma1+1))-1)); //Theoretical draught produced in hot gas column in m
gp1=0.40*H3; //Draught is lost in friction at the grate and passing in m
hgc1=H3-gp1; //Actual draught produced in hot gas column in m
V1=sqrt(2*g1*hgc1); //Velocity of the flue gases in the chimney in m/s
rhog1=((353*(ma1+1))/(ma1*Tg1)); //Density of flue gases in Kg/m^3
mg1=rhog1*((pi1/4)*d1^2)*V1; //Mass of gas fowing throgh the chimney in Kg/s
//Output
printf('Theoretical draught produced in hot gas column= %f m \n',H3);
printf('Draught is lost in friction at the grate and passing= %f m \n',gp1);
printf('Actual draught produced in hot gas column=%f m \n',hgc1);
printf('Velocity of the flue gases in the chimney=%f m/s \n',V1);
printf('Density of flue gases=%f Kg/m^3 \n',rhog1);
printf('Mass of gas fowing throgh the chimney=%f Kg/s \n',mg1);
|
48b93e97a11048b61f80b0eb1bb20168dac7315a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/671/CH4/EX4.36/4_36.sce
|
79fc6fb1baaf768e38405ce3e51df4585534c7b5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 307
|
sce
|
4_36.sce
|
function [x,y]=polar_to_cart(r,theta)
theta=theta/180*%pi
x=r*cos(theta)
y=r*sin(theta)
endfunction
[Vr,Vc]=polar_to_cart(120,45)
V=complex(Vr,Vc)
[Zr,Zc]=polar_to_cart(16.3,24.5)
Z=complex(Zr,Zc)
w=50
I=V/Z
P=V*conj(I)
Pavg=real(P)
pf=real((V/I)/norm(V/I))
disp(pf,Pavg)
|
b86e1d04ad6ee416510ddd8ddcd6a6c18369d70b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3434/CH14/EX14.5/Ex14_5.sce
|
3eb20fbfb502f650245527ba2e91d4c4e010fb7b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 203
|
sce
|
Ex14_5.sce
|
clc
//given data
F=12000 // Total amount in rs
i=9 // interest rate in %
n=4 // time in years
A=F*(i/100.0)/(((1+i/100.0)**n)-1) //
printf("The amount deposited each year should be Rs %i",A)
|
1b84ec2c90614501b635002302f32f08ced88bc1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1106/CH1/EX1.1/ex1_1.sce
|
39410512c4ce589ad732561070ee328a5e4e8183
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
ex1_1.sce
|
// Example 1.1, page no-23
clear
clc
Rs=200
R=5000
luponw= R/Rs
printf('L upon W =%d', luponw)
printf("\n5kohm resistor can be fabricated by using a pattern of %d mil*1mil",luponw)
|
e20fa2214b82bb03998ae594b4845001fa08cc13
|
c6c7eb21f96a4f31fbebb18724ed9bbca4bb661b
|
/Ex1.sce
|
fffb2f1e386e0db07edeb22a057ee5ceb0fa9cda
|
[] |
no_license
|
Yunagiri/MT12
|
766b022278b220e85358919241fff3f0f1c7e665
|
6da3df8fb7a8507f600ee51bd916e605c6838ee0
|
refs/heads/master
| 2020-12-05T11:04:18.108037
| 2020-01-06T11:45:31
| 2020-01-06T11:45:31
| 232,089,292
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 938
|
sce
|
Ex1.sce
|
//DINH Viet Phuong
function [L,U] = DecompLU(A)
n = size(A,1);
L = zeros(3,3);
U = zeros(3,3);
U(1,1:n) = A(1,:);
L(1:n,1) = A(:,1)/A(1,1);
S1 = 0;
S2 = 0;
for i = 2:n
U(i,i) = A(1,1) - L(i,1:i-1)*U(1:i-1,i);
for j = i+1:n
for k = 1:i-1
S1 = S1 + L(i,k)*U(k,j);
S2 = S2 + L(j,k)*U(k,i);
end
U(i,j) = A(i,j) - S1;
L(j,i) = (A(j,i) - S2)/U(i,i);
end
end
endfunction
//Code Scilab de test à entrer dans la console
//[L,U] = DecompLU(floor(10*rand(3)-5));
A = [ 7 -3 -2; -3 3 1; -2 1 4 ];
// [L1,U1] = DecompLU(A);
// A2 = [5 -3 1 -1; -3 4 -1 1; 1 -1 6 -1; -1 1 -1 5];
//[L2,U2] = DecompLU(A2);
B = [3;8;7];
function [X]=Res_sys(A,B)
[L,U] = DecompLU(A);
y = B \ L; //Ly = b
X = y \ U; //Ux = y
endfunction
[X] = Res_sys(A,B)
|
6e80b51d28ed21e76a8344d6362480c433e7cd06
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2273/CH6/EX6.2/ex6_2.sce
|
6ce6ced966fcae0ea1a1ca8e43bdc82af5349d19
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,282
|
sce
|
ex6_2.sce
|
//Determine sending end voltage and current
clear;
clc;
//soltion
//FUNCTIONS
function [z]=rxr(A,B)//Function for the multiplication of rectangular
z(1)=A(1)*B(1)
z(2)=A(2)+B(2)
endfunction
function [a]=r2p(z)//Function for rectangular to polar
a=z(1)*complex(cosd(z(2)),sind(z(2)))
endfunction
function [v]=p2r(q)//Function for polar to rectangular
v(1)=abs(q)
v(2)=atand(imag(q)/real(q))
endfunction
//given
P=80*10^6;//MW
Vrl=220*1000;//V
pf=0.8//power factir
Vr=[Vrl/sqrt(3) 0];
Ir=[P/(sqrt(3)*Vrl*pf) -acosd(pf)];
Z=[200 80];
Y=[0.0013 90];
YZ=rxr(Z,Y);
Y2Z2=rxr(YZ,YZ);
[Y3Z3]=rxr(Y2Z2,YZ);
A_=1+(r2p(YZ))/2+(r2p(Y2Z2))/24+(r2p(Y3Z3))/720;
A=p2r(A_);
printf("A = D = %.4f∠%.2f°\n",A(1),A(2));
P_=(1+(r2p(YZ))/6+(r2p(Y2Z2))/120+(r2p(Y3Z3))/5040);
P=p2r(P_);
B=rxr(Z,P);
printf("B= %.2f∠%.2f° ohm\n",B(1),B(2));
C=rxr(Y,P);
printf("C= %.6f∠%.2f° siemens\n",C(1),C(2));
D=A;
Z1=rxr(A,Vr);
Z2=rxr(B,Ir);
AV=r2p(Z1);
BI=r2p(Z2);
Vs=AV+BI;
theta1=atand((imag(Vs)/real(Vs)));
printf("Sending end voltage= %.3fkV\n",sqrt(3)*abs(Vs)/1000);
Y1=rxr(C,Vr);
Y2=rxr(D,Ir);
CV=r2p(Y1);
DI=r2p(Y2);
Is_=CV+DI;
Is=p2r(Is_);
printf("Magnitude of sending end current= %.1f∠%.2f° A\n",Is(1),Is(2));
|
a2acba1c315f69d628984a3e31a6a8d6fcd640eb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2144/CH8/EX8.5/ex8_5.sce
|
37454afda23d849e0f1313a4609beb80d2fba065
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 577
|
sce
|
ex8_5.sce
|
// Exa 8.5
clc;
clear;
close;
// Given data
W_c = 500*10^-3;//water collected in kg
C_P = 4.1868;// in kJ/kg-K
T_o = 28.3;//outlet temp. in °C
T_i = 14;//inlet temp. in °C
P_bero= 785;// barometric pressure in mm
P_gas= P_bero+90/13.6;// in mm
T1=17+273;// gas temp. in K
T2= 15+273;// in K
theta = T_o-T_i;//temp. rise in °C
Qw = W_c * C_P*theta;// in kJ
Vgs= 2.8*10^-3;//volume of gas consumed in m^3
E = Qw/Vgs;// in kJ
V1= P_gas/760*(T2/T1);// in m^3
CalorificValue= E/V1;// in kJ/standard m^3
disp(CalorificValue,"Calorific value in kJ/m^3 is : ")
|
c799de8fd5182249cec100679b8a0cd0251b77bb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1373/CH7/EX7.15/Chapter7_Example15.sce
|
aa14d331042f5c9c7723ef5e18526f83c19fd8ac
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 647
|
sce
|
Chapter7_Example15.sce
|
//Chapter-7, Example 7.15, Page 310
//=============================================================================
clc
clear
//INPUT DATA
D=0.2;//Diameter of pipeline in m
//velocity profile is given by u=96r-190r^2 m/s
//Temperature profile is given by T=100(1-2r) degree C
//CALCULATIONS
vmax=(64*(D/2))-(95*(D/2)^2);//Mean velocity in m/s
T=(2/(vmax*(D/2)^2))*(((9600*(D/2)^3)/3)-((38200*(D/2)^4)/4)+((38000*(D/2)^5)/5));//Average temperature of the fluid in degree C
//OUTPUT
mprintf('Average temperature of the fluid is %3.2f degree C',T)
//=================================END OF PROGRAM==============================
|
cf2e9a1bde869c83cbfe134fda1ccfe6855430c2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/858/CH6/EX6.17/example_17.sce
|
8e0eaafae27644298ebf338c78438b862efe7504
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 616
|
sce
|
example_17.sce
|
clc
clear
printf("example 6.17 page number 264\n\n")
//to find the number of stages
x=0.01 //mole fraction of nicotine
yN = 0.0006; //mole fraction in solvent
xN = 0.001; //final mole fraction in water
X0=x/(1-x); //in kg nicotine/kg water
YN =yN/(1-yN); //in kg nicotine/kg keroscene
XN = xN/(1-xN);
A0=100*(1-X0); //kgwater/h
B0=150*(1-YN); //in kg kerosene/h
Y1=((A0*(X0-XN))/B0)+YN; //in kg nicotine/kg kerosene
printf("Y1 = %f kg nicotine/kg kerosene",Y1)
//for graph refer to the book
number_of_stages = 8.4;
printf("\n\nnumnber of stages = %f",number_of_stages)
|
37bafa2b79e60456ea90e478054c72007db2a573
|
d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3
|
/r37/packages/xcolor/xcolor.tst
|
a52e0d1a307acfeadf3a2b76944273f494bfbd0e
|
[
"BSD-3-Clause"
] |
permissive
|
reduce-algebra/reduce-historical
|
8220e211b116e0e01ff1a38f51917cac9db6069f
|
e014152729c4d62bb1ce4f5c311a027042a5495a
|
refs/heads/master
| 2023-04-10T22:54:00.796596
| 2021-04-16T08:52:19
| 2021-04-16T08:52:19
| 343,245,204
| 7
| 1
|
NOASSERTION
| 2021-04-16T08:53:31
| 2021-03-01T00:15:22
|
TeX
|
UTF-8
|
Scilab
| false
| false
| 9,762
|
tst
|
xcolor.tst
|
%----------------------------------------------------------------------
% File: xcolor.tst
% Purpose: Tests for xcolor package.
% Author: A.Kryukov
% E-address: kryukov@npi.msu.su
% Vertion: 2.2.1
% Release: Aug. 17, 1994
%----------------------------------------------------------------------
% Revision: 14/03/91 Start
% 17/08/94 C0a,C0b,C0c,C0d
%----------------------------------------------------------------------
%load xcolor$
%in "xcolor.red"$
% on time$
SUdim n$ % Set the order of the SU(n) group, i.e. SU(n).
% n=3 is a default value.
spTT 1/2$ % Set the normalization coefficient A:
% Sp(TiTj) = A*Delta(i,j)
% A=1/2 is a default value.
% QG(inQuark,outQuark,gluon) - quark-gluon vertex.
% G3(gluon1,gluon2,gluon3) - three-gluon vertex.
%----------------------------------------------------------------------
% Run time (ms) without GC, compiled vertion.
%----------------------------------------------------------------------
% Test | SUN3/60 |i386SX-25|DEC APX |HP 735 |
% | |RAM=2M |3000/128MB| |
% | | |R=20MB |R=8MB |
%----------------------------------------------------------------------
% c1 | 323 | 2800 |34 |40 |
% c2 | 102 | 170 |0 |0 |
% c3 | 102 | 160 |0 |10 |
%----------------------------------------------------------------------
% c4a | 323 | 1270 |17 |20 |
% c4b | 51 | 110 |- |10 |
% c4c | 135 | 160 |17 |0 |
%----------------------------------------------------------------------
% c0a | | |17 |20 |
% c0b | | |0 |0 |
% c0c | | |17 |20 |
% c0d | | |17 |0 |
%----------------------------------------------------------------------
% cz | 187 | 990 |0 |10 |
% c0 | 374 | 330 | |20 |
%----------------------------------------------------------------------
% c91 | 255 | 1480 |17 |10 |
% c92 | 323 | 1480 |17 |20 |
% c93 | 2397 | 2970 |68 |130 |
% c94 | 18411 | 35838 |495 |750 |
% c95 | 139009 | 262956 |3485 |5670 |
%----------------------------------------------------------------------
%----------------------------------------------------------------------
% Test 1. See test run in: A.Kryukov & A.Rodionov
% Program "COLOR" for computing the group-theoretical
% weight of Feynman diagrams in non-abelian theories.
% Comp. Phys. Comm., 48(1988), 327-334.
%----------------------------------------------------------------------
%----------------------------------------------------------------------
% 1 4 1 4 1
% c1. --*--<--*-- c2. --<--*--*-- c3. --<--*--<--
% | : : | | : : | | : |
% | : : | | : : | | *4 |
% | : : | | ..:.. | | : : |
% | : : | | : : | | : : |
% --*-->--*-- --*--*-->-- ---*->-*---
% 2 3 2 3 2 3
%----------------------------------------------------------------------
%
% 4 2
% N - 2*N + 1
% C1 := ---------------
% 4*N
%
%
% 2
% - N + 1
% C2 := -----------
% 4*N
%
%
% 2
% N*(N - 1)
% C3 := ------------
% 4
%
%----------------------------------------------------------------------
c1 := QG(e4,e1,e5)*QG(e1,e2,e5)*QG(e2,e3,e6)*QG(e3,e4,e6);
c2 := QG(e4,e1,e5)*QG(e1,e2,e6)*QG(e2,e3,e5)*QG(e3,e4,e6);
c3 := QG(e3,e1,e4)*QG(e1,e2,e5)*QG(e2,e3,e6)*G3(e4,e6,e5);
%----------------------------------------------------------------------
%
% c4a. --*--<--*-- c4b. --*--<--*-- c4c. --*--<--*--
% | : : | | : : | | : : |
% | ..*.. | | : : | | *... : |
% | : | | *.....* | | : : : |
% | ..*.. | | : : | | *...:. |
% | : : | | : : | | : : |
% --*-->--*-- --*-->--*-- --*---*->--
%
%----------------------------------------------------------------------
%
% 2 2
% N *(N - 1)
% C4A := -------------
% 8
%
%
% 2 2
% N *(N - 1)
% C4B := -------------
% 8
%
%
% C4C := 0
%
%----------------------------------------------------------------------
c4a := QG(e4,e1,e7)*QG(e1,e2,e9)*QG(e2,e3,e8)*QG(e3,e4,e5)
*G3(e5,e6,e7)*G3(e6,e8,e9);
c4b := c4a;
c4c := QG(e4,e1,e7)*QG(e1,e2,e9)*QG(e2,e3,e5)*QG(e3,e4,e8)
*G3(e5,e6,e7)*G3(e6,e8,e9);
%----------------------------------------------------------------------
% Test 2.
%----------------------------------------------------------------------
% ......1......
% : :
% : 3 6 :
% 1*.3..*-6-*..4.*2
% : | | : = N^2*(N^2-1)/8
% C0a: 2 V | 5
% : | | :
% : 7 9 :
% : | | :
% ....*-8-*....
% 4 5
%
% ......1......
% : :
% : 3 6 :
% 1*.3..*-6-*..4.*2
% : | | : = 0
% C0b: 2 V | 5
% : | | :
% : \ / :
% : X :
% : / \
% : 7 9 :
% : | | :
% ....*-8-*....
% 4 5
%
%-------------------------------------------------------
C0a := g3(e1,e3,e2)*g3(e1,e5,e4)
*qg(e6,e7,e3)*qg(e7,e8,e2)*qg(e8,e9,e5)*qg(e9,e6,e4);
C0b := g3(e1,e3,e2)*g3(e1,e5,e4)
*qg(e6,e9,e3)*qg(e9,e8,e5)*qg(e8,e7,e2)*qg(e7,e6,e4);
%--------------------------------------------------------
%
% ......1......
% : :
% : 3 :
% 1*.3..*-6-- -*2
% : | \ / | = (N^2-1)/8
% C0c: 2 V X V
% : | / \ 4
% : | | -*6
% : 7 9 :
% : | | 5
% ....*-8-*....
% 4 5
%
% ......1......
% : :
% : 3 :
% 1*.3..*-6------*2
% : | | = -(N^2-1)^2/8
% C0d: 2 V A
% : | 4
% : | |----*6
% : 7 9 :
% : | | 5
% ....*-8-*....
% 4 5
%
%----------------------------------------------------------------------
C0c := g3(e1,e3,e2)*qg(e9,e4,e1)*qg(e6,e7,e3)
*qg(e7,e8,e2)*qg(e8,e9,e5)*qg(e4,e6,e5);
C0d := g3(e1,e3,e2)*qg(e4,e6,e1)*qg(e6,e7,e3)
*qg(e7,e8,e2)*qg(e8,e9,e5)*qg(e9,e4,e5);
%----------------------------------------------------------------------
% 1 1
% cz. .....*..... c0. .....*.....
% : : : : :e2 :
% : : : :e3 *4 :e1
% : : : : : : :
% : : : : :e4 :e6 :
% .....*..... ...*...*...
% 2 2e5 3
%----------------------------------------------------------------------
%
% 2
% CZ := N*(N - 1)
%
%
% 2 2
% N *(N - 1)
% C0 := -----------
% 2
%
%----------------------------------------------------------------------
cz := G3(e1,e2,e3)*G3(e1,e3,e2);
c0 := G3(e1,e2,e3)*G3(e3,e4,e5)*G3(e5,e6,e1)*G3(e2,e6,e4);
%$END$
%----------------------------------------------------------------------
% Test 3.
%----------------------------------------------------------------------
%----------------------------------------------------------------------
%
% 1
% c9n. .....*.......*.....
% : : 2 : :
% : *.......* :
% : : : :
% : : ... : :
% : : : :
% : : n : :
% .....*.......*.....
%
%----------------------------------------------------------------------
%
% C91 := 0
%
%
% 2 2
% C92 := N *(N - 1)
%
%
% 3 2
% N *(N - 1)
% C93 := -------------
% 4
%
%
% 2 4 2
% N *(N + 11*N - 12)
% C94 := ----------------------
% 8
%
%
% 3 4 2
% N *(N + 15*N - 16)
% C95 := ----------------------
% 16
%
%----------------------------------------------------------------------
c91 := G3(e3,e1,e1)*G3(e3,e2,e2);
c92 := G3(e3,e4,e1)*G3(e3,e2,e5)*G3(e6,e1,e4)*G3(e6,e5,e2);
c93 := G3(e3,e4,e1)*G3(e3,e2,e5)*G3(e6,e7,e4)*G3(e6,e5,e8)
*G3(e9,e1,e7)*G3(e9,e8,e2);
c94 := G3(e3,e4,e1)*G3(e3,e2,e5)*G3(e6,e7,e4)*G3(e6,e5,e8)
*G3(e9,e10,e7)*G3(e9,e8,e11)*G3(e12,e1,e10)*G3(e12,e11,e2);
c95 := G3(e3,e4,e1)*G3(e3,e2,e5)*G3(e6,e7,e4)*G3(e6,e5,e8)
*G3(e9,e10,e7)*G3(e9,e8,e11)*G3(e12,e13,e10)*G3(e12,e11,e14)
*G3(e15,e1,e13)*G3(e15,e14,e2);
%----------------------------------------------------------------------
$END$ % xColor tests
%----------------------------------------------------------------------
|
84c9ec82ebebcb9df8faee3f81bd8ae0a15e5858
|
09fb666c0701b49ab031e9c772024f96f6ed1c7e
|
/Lab 4/laboratorio4.sce
|
e088d2d926072b8ee405e2e69588a8c8cbcb7d25
|
[] |
no_license
|
Alejandro287/Numerica_Methods
|
ccbf8fa032809f6f6398a0f8100a268a750d8491
|
968f6cf10b651ff1049855a677753e6b2a44ca26
|
refs/heads/master
| 2020-04-02T02:45:35.586981
| 2018-10-20T16:38:01
| 2018-10-20T16:38:01
| 153,926,195
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 630
|
sce
|
laboratorio4.sce
|
clc
disp("* Ajuste lineal")
X = -1:1:6
Y = [10 9 7 5 4 3 0 -1]
disp(X)
disp(Y)
[A,B] = UN_ajuste_lineal(X,Y)
disp(" >> resultado:")
disp([A,B])
disp("* Ajuste potencial")
X = 0.2:0.2:1
Y = [0.1960 0.7850 1.7665 3.1405 4.9075]
disp(X)
disp(Y)
A = UN_ajuste_potencial(X,Y,2)
disp(" >> resultado:")
disp(A)
disp("* Ajuste exponencial")
X = 0:4
Y = [1.5 2.5 3.5 5.0 7.5]
disp(X)
disp(Y)
[A,C] = UN_ajuste_exponencial(X,Y)
disp(" >> resultado:")
disp([A,C])
disp("* Ajuste parabólico")
X = 2:9
Y = [18 24 35 44 59 72 91 109]
disp(X)
disp(Y)
[A,B,C] = UN_ajuste_parabolico(X,Y)
disp(" >> resultado:")
disp([A,B,C])
|
e7507290dcb22208726d84612a33ef3ac3601fac
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1286/CH7/EX7.12/7_12.sce
|
6fcfbcbf9bcd17494be1620c4d8638ffa8df5dee
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 250
|
sce
|
7_12.sce
|
clc
//initialisation
t1=273//k
p1=1*10^5//N/m2
p2=2*10^5//N/m2
v=10^-6//m3
a=2.73*10^-10//m4 N
b=1.03*10^-9//m3
//CALCULATIONS
t2=t1+(t1*(p2-p1))/(p1+(a/(v*v)))
//results
printf(' \n temperature of gas if pressure is doubled= % 1f k',t2)
|
8fcbcadc162bfa1f0f3599759c1b580a67eda1f1
|
2cf3f0dc5bb5a14ec847e254aa03ceca8d54ca8e
|
/Similarity/TOEFL.tst
|
16319dcaf5f0749674b301796ab2b70807cf4259
|
[] |
no_license
|
manishc1/Security_Word_Similarity_Model
|
f2966c20290b1d4be841265dbf98a875301d8e46
|
6b9171bb7c7fa503662cca103b237bea19f36fdf
|
refs/heads/master
| 2021-01-01T20:00:40.011537
| 2014-06-07T23:38:12
| 2014-06-07T23:38:12
| 20,576,010
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 5,031
|
tst
|
TOEFL.tst
|
enormously
appropriately
uniquely
tremendously
decidedly
tremendously
provisions
stipulations
interrelations
jurisdictions
interpretations
stipulations
haphazardly
dangerously
densely
randomly
linearly
randomly
prominent
battered
ancient
mysterious
conspicuous
conspicuous
zenith
completion
pinnacle
outset
decline
pinnacle
flawed
tiny
imperfect
lustrous
crude
imperfect
urgently
typically
conceivably
tentatively
desperately
desperately
consumed
bred
caught
eaten
supplied
eaten
advent
coming
arrest
financing
stability
coming
concisely
powerfully
positively
freely
succinctly
succinctly
salutes
information
ceremonies
greetings
privileges
greetings
solitary
alert
restless
alone
fearless
alone
hasten
permit
determine
accelerate
accompany
accelerate
perseverance
endurance
skill
generosity
disturbance
endurance
fanciful
familiar
imaginative
apparent
logical
imaginative
showed
demonstrated
published
repeated
postponed
demonstrated
constantly
instantly
continually
rapidly
accidentally
continually
issues
training
salaries
subjects
benefits
subjects
furnish
supply
impress
protect
advise
supply
costly
expensive
beautiful
popular
complicated
expensive
recognized
successful
depicted
acknowledged
welcomed
acknowledged
spot
climate
latitude
sea
location
location
make
earn
print
trade
borrow
earn
often
definitely
frequently
chemically
hardly
frequently
easygoing
frontier
boring
farming
relaxed
relaxed
debate
war
argument
election
competition
argument
narrow
clear
freezing
thin
poisonous
thin
arranged
planned
explained
studied
discarded
planned
infinite
limitless
relative
unusual
structural
limitless
showy
striking
prickly
entertaining
incidental
striking
levied
imposed
believed
requested
correlated
imposed
deftly
skillfully
prudently
occasionally
humorously
skillfully
distribute
commercialize
circulate
research
acknowledge
circulate
discrepancies
weights
deposits
wavelengths
differences
differences
prolific
productive
serious
capable
promising
productive
unmatched
unrecognized
unequaled
alienated
emulated
unequaled
peculiarly
partly
uniquely
patriotically
suspiciously
uniquely
hue
glare
contrast
color
scent
color
hind
curved
muscular
hairy
rear
rear
highlight
alter
imitate
accentuate
restore
accentuate
hastily
hurriedly
shrewdly
habitually
chronologically
hurriedly
temperate
cold
mild
short
windy
mild
grin
exercise
rest
joke
smile
smile
verbally
orally
overtly
fittingly
verbosely
orally
physician
chemist
pharmacist
nurse
doctor
doctor
essentially
possibly
eagerly
basically
ordinarily
basically
keen
useful
simple
famous
sharp
sharp
situated
rotating
isolated
emptying
positioned
positioned
principal
most
numerous
major
exceptional
major
slowly
rarely
gradually
effectively
continuously
gradually
built
constructed
proposed
financed
organized
constructed
tasks
customers
materials
shops
jobs
jobs
unlikely
improbable
disagreeable
different
unpopular
improbable
halfheartedly
customarily
bipartisanly
apathetically
unconventionally
apathetically
annals
homes
trails
chronicles
songs
chronicles
wildly
distinctively
mysteriously
abruptly
furiously
furiously
hailed
judged
acclaimed
remembered
addressed
acclaimed
command
observation
love
awareness
mastery
mastery
concocted
devised
cleaned
requested
supervised
devised
prospective
particular
prudent
potential
prominent
potential
generally
descriptively
broadly
controversially
accurately
broadly
sustained
prolonged
refined
lowered
analyzed
prolonged
perilous
binding
exciting
offensive
dangerous
dangerous
tranquillity
peacefulness
harshness
weariness
happiness
peacefulness
dissipate
disperse
isolate
disguise
photograph
disperse
primarily
occasionally
cautiously
consistently
chiefly
chiefly
colloquial
recorded
misunderstood
incorrect
conversational
conversational
resolved
publicized
forgotten
settled
examined
settled
feasible
permitted
possible
equitable
evident
possible
expeditiously
frequently
actually
rapidly
repeatedly
rapidly
percentage
volume
sample
proportion
profit
proportion
terminated
ended
posed
postponed
evaluated
ended
uniform
hard
complex
alike
sharp
alike
figure
list
solve
divide
express
solve
sufficient
recent
physiological
enough
valuable
enough
fashion
ration
fathom
craze
manner
manner
marketed
frozen
sold
sweetened
diluted
sold
bigger
steadier
closer
larger
better
larger
roots
origins
rituals
cure
function
origins
normally
haltingly
ordinarily
permanently
periodically
ordinarily
|
0565036a3d8beb6d56715da8cf04bc00c70bd8b8
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.1.1/macros/elem/fix.sci
|
3ad09c39491025f4cbfe2eeae5c3e0f9147756da
|
[
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] |
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
| 63
|
sci
|
fix.sci
|
function x= fix(x)
x1=x(:);
y=sign(x1).*floor(abs(x1))
x(:)=y;
|
b9b3cc16d1867c4d1ab5be0dc88ba8be759a715e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2837/CH11/EX11.5/Ex11_5.sce
|
90f063b9f517838b09a6d57502121c65631a9ea2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 484
|
sce
|
Ex11_5.sce
|
clc
clear
//Initialization of variables
v=210 //ft/s
g=32.17 //ft/s^2
p=200 //psia
z=5 //ft
x=2.361
h=1210.3
J=778
//calculations
P0=p + v^2 /(2*g*144*x) + z/(144*x)
h0=h + v^2 /(2*J*g) +z/J
S=1.5594 //units/lb
S0=S
t0=401.9 //F
v0=2.342 //cu ft/lb
rho0=1/v0
//results
printf("Pressure = %d psia",P0)
printf("\n Enthalpy = %.2f Btu/lb",h0)
printf("\n Entropy = %.4f units/lb",S0)
printf("\n Temperature = %.1f F",t0)
printf("\n Density = %.3f lb/cu ft",rho0)
|
5d5fc0c4c1f1eb9c4727e74dd1c433104d16f4f5
|
7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2
|
/Scilab/virtual/2dof_controller/dc/ident/scilab/ACF_def.sce
|
a6ea4f450652fa2ffcc0b0c76612dee47e21ac6b
|
[] |
no_license
|
advait23/sbhs-manual
|
e2c380051117e3a36398bb5ad046781f7b379cb9
|
d65043acd98334c44a0f0dbf480473c4c4451834
|
refs/heads/master
| 2021-01-16T19:50:40.218314
| 2012-11-16T04:11:12
| 2012-11-16T04:11:12
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 76
|
sce
|
ACF_def.sce
|
// Updated(7-8-07)
// 6.2
u = [1 2];
r = autocov(u);
rho = normacf(u);
|
e94be5d8e8aa9756899135c9ac8fa80b9d3860e6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3492/CH7/EX7.6/Ex7_6.sce
|
9758e81b78a43083041680c8d55ec67403472cdb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 991
|
sce
|
Ex7_6.sce
|
clc
//Chapter7
//Ex_6
//Given
//power dissipated at a given voltage per unit capacitance depends only on w*tan(delta)
//at f=60 //in Hz.
f=60 //in Hz.
w=2*%pi*f
//let x=tan(delta)
x_PC=9*10^-4 //Ploycarbonate
x_SR=2.25*10^-2 //Silicone rubber
x_E=4.7*10^-2 //Epoxy with mineral filler
p_PC=w*x_PC
p_SR=w*x_SR
p_E=w*x_E
a=min(p_PC,p_SR,p_E)
printf("The minimum w*tan(delta) is %f which corresponds to polycarbonate",a)
disp("Hence the lowest power dissipation per unit capacitance at a given voltage corresponds to polycarbonate at 60Hz")
//at f=1 //in MHz.
f=10^6 //in Hz.
w=2*%pi*f
//let x=tan(delta)
x_PC=1*10^-2 //Ploycarbonate
x_SR=4*10^-3 //Silicone rubber
x_E=3*10^-2 //Epoxy with mineral filler
p_PC=w*x_PC
p_SR=w*x_SR
p_E=w*x_E
a=min(p_PC,p_SR,p_E)
printf("The minimum w*tan(delta) is %f which corresponds to Silicone rubber",a)
disp("Hence, the lowest power dissipation per unit capacitance at a given voltage corresponds to Silicone rubber at 1MHz")
|
4d230a9af448964cdcd78bca28515153b00fcf73
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1394/CH18/EX18.5.2/Ex18_5_2.sce
|
eb94e6a1d378703e6997f0ff7d9b426df79bb323
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,017
|
sce
|
Ex18_5_2.sce
|
clc
// Initialization of variables
D = 2*10^-5 // cm^2/sec
l = 32*10^-4 // cm
c = 6.8*10^-6 // mol/cc
C10 = 10^-4 // mol/cc
function[j] = Totalflux(H,K)
j = (D*H*C10/l)+((D*H*K*c*C10)/(l*(1+(H*K*C10))))
endfunction
//For Lithium Chloride
H1 = 4.5*10^-4 //Partition coefficient
K1 = 2.6*10^5 // cc/mol association constant
j1 = (Totalflux(H1,K1))*10^10 // TOtal flux in x*10^-10 mol/cm^2-sec
printf("The total flux for Lithium Chloride is %.1f x10^-10 mol/cm^2-sec",j1)
//For Sodium Chloride
H2 = 3.4*10^-4 //Partition coefficient
K2 = 1.3*10^7 // cc/mol association constant
j2 = (Totalflux(H2,K2))*10^10 // TOtal flux in x*10^-10 mol/cm^2-sec
printf("\nThe total flux for Sodium Chloride is %.1f x10^-10 mol/cm^2-sec",j2)
//For potassium Chloride
H3 = 3.8*10^-4 //Partition coefficient
K3 = 4.7*10^9 // cc/mol association constant
j3 = (Totalflux(H3,K3))*10^10 // TOtal flux in x*10^-10 mol/cm^2-sec
printf("\nThe total flux for Potassium Chloride is %.1f x10^-10 mol/cm^2-sec",j3)
|
382b1108bbf168567e5569410fe3b4dcd3d5bcd0
|
bd9df8a33f36defa7e5b50d18f8bd6eb365ad9e2
|
/Stage/Bibliotheque_Canada/modpn/modpn/src.32/cumodp/tst/fast_resultant2_cumodp.tst
|
65d9c34053d0264a31775c15feee55dfe36cf82c
|
[] |
no_license
|
Lexriel/M2_Calcul_Scientifique
|
ef5c168ab3d2f9a4a45f728b7b3c7ad6fa11f005
|
5747a7bcf0c39de6d99f784b44f6e836bda41243
|
refs/heads/master
| 2021-08-07T19:16:54.459640
| 2017-11-08T19:22:11
| 2017-11-08T19:22:11
| 110,019,502
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 882
|
tst
|
fast_resultant2_cumodp.tst
|
#Test function:
#- MultivariateResultant
#test 500
with(RegularChains):
with(FastArithmeticTools):
with(modpn):
with(TestTools):
## Setting the polynomial ring with a prime characteristic
p := 469762049:
vars := [a, b]:
v := vars[1]:
R := PolynomialRing(p, vars):
dx := 30:
dy := 30:
f := randpoly(vars, dense, degree = dx) mod p:
g := randpoly(vars, dense, degree = dy) mod p:
fm := PolynomialConvertIn(R, f):
gm := PolynomialConvertIn(R, g):
EnableCUDA(true):
Try[testnoerror](10, MultivariateResultant(R, fm, gm, p), 'assign'='r1'):
r2 := PolynomialConvertOut(r1):
EnableCUDA(false):
Try[testnoerror](20, MultivariateResultant(R, fm, gm, p), 'assign'='r3'):
r4 := PolynomialConvertOut(r3):
Try[testnoerror](30, Resultant(f, g, v) mod p, 'assign'='r0'):
Try(40, evalb(`mod`(Expand(r2 - r0), p) = 0), true);
Try(50, evalb(`mod`(Expand(r4 - r0), p) = 0), true);
#end test;
|
0cdd3d734bc3f4e7a57e05838c8e524108eab59e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/965/CH2/EX2.31/31.sci
|
95e5e09927b007f0c869becde42a39c67cefcd01
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 603
|
sci
|
31.sci
|
clc;
clear all;
disp("Maximum system temperature")
La=0.02;//m
Lb=0.01;//m
kA=50;//W/(m*C)
kB=0.2;//W/(m*C)
h1=200;//W/(m^2*C)
h2=50;//W/(m^2*C)
A=0.15*0.15;//m^2
A
Q=1000;//W rating of heater
Q
ta=25;// degree C
//Q=A*(Tmax-ta)*(1/(La/kA+1/h1)+1/(Lb/kB+1/h2))
Tmax=Q/(A*(1/(La/kA+1/h1)+1/(Lb/kB+1/h2)))+ta;
disp("degree C",Tmax,"Tmax =")
disp("To find outer surface temperature of two slabs")
//QA=kA*A*(tmax-t1)/La=h1*A*(t1-ta)
t1=249.8/1.08;
disp("degree C",t1,"temperature t1 =")
//QB=kB*A*(tmax-t2)/La=h2*A*(t2-ta)
t2=310.3/3.5;
disp("degree C",t2,"temperature t2 =")
|
f7513b6164fb6b57eec69547abfb9400962f1802
|
079f0010c907e05868f96140e9632428ec53f25f
|
/2015/Numerical_analysis/trabalhoCN.sce
|
b9c58bb5b3a9e49eb63ea6173220aef95a61c4ec
|
[] |
no_license
|
gabrielvieira37/UFRJ
|
a013c68ecb9925b8e8f41d78b81cb5b6df19e45d
|
82dfe37892d6e4783fee1d8d708389218cb16acc
|
refs/heads/master
| 2021-07-10T13:37:20.239917
| 2020-07-05T00:15:08
| 2020-07-05T00:15:34
| 142,941,764
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,352
|
sce
|
trabalhoCN.sce
|
clc()
n = input("digite o numero de partições: ")
x=linspace(0,1,n)
deltaX = 1/n
y= (%e^x)
tol = 10^(-5)
eabs = 0
erel =0
iRec = 0
iTrap = 0
for i=0:1:n-1
iRec = ((%e^(deltaX*i)^2)*deltaX) + iRec
end
iTrap = (%e^(deltaX^2) + %e^((deltaX*(n+1))^2))/2
for i=0:1:n-1
iTrap = (%e^(deltaX*(i+1))^2) + iTrap
end
iTrap = iTrap * deltaX
eabs = iTrap-iRec
erel = iTrap-iRec/iTrap
while eabs > (10^-5)
eabs = 0
erel =0
iRec = 0
iTrap = 0
deltaX = 1/n
for i=0:1:n-1
iRec = ((%e^(deltaX*i)^2)*deltaX) + iRec
end
iTrap = (%e^(deltaX^2) + %e^((deltaX*(n+1))^2))/2
for i=0:1:n-1
iTrap = (%e^(deltaX*(i+1))^2) + iTrap
end
iTrap = iTrap * deltaX
eabs = iTrap-iRec
erel = iTrap-iRec/iTrap
n = n*2
end
mprintf("A integral numerica pelo metodo do retangulo é igual a: %.10f \n", iRec)
mprintf("A integral numerica pelo metodo do trapezio é igual a: %.10f \n", iTrap)
mprintf("O erro absoluto entre as duas integrais é igual a: %.10f \n", eabs)
mprintf("O erro relativo entre as duas integrais é igual a: %.10f \n", erel)
mprintf("O o numero de partições para que erro relativo entre as duas integrais seja menor ou igual a 10 elevado a -5 é igual a: %d \n", n)
//plot(x,y)
|
7d34995be6d8a6ae90f1c6958ba124d28710fdf9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2213/CH4/EX4.25/ex_4_25.sce
|
86ec8c9b9640fe9b7408f86cfef3cac4e33613f1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
ex_4_25.sce
|
//Example 4.25//number ,rating and disposition of lamps
clc;
clear;
close;
format('v',6)
h=4;//in meters
wp=75;//in lux
ef=14;//efficiency in lumens/watt
dp=0.2;//depreciation factor
uf=0.5;//utiliazation factor
l=72;// in meters
b=15;// in meters
a=l*b;//arean in m^2
mf=1-dp;//maintenance factor
glr=(a*wp)/(uf*mf);//gross illumination required
twr=glr/ef;//total wattage required
wec=twr/80;//wattage of each lamps
disp(80,"number of lamps of 150watt rating in 2 rows")
disp(" wattage of each lamp "+string(wec)+" watts equivalent to 200 watts")
|
9d156674d91df3b5bb2bf1de3a499a646c2d7329
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2081/CH5/EX5.8/Ex5_8.sce
|
78dcc4c100170ec15f2d4407b8a7581fb1f1274a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 559
|
sce
|
Ex5_8.sce
|
N=1
Y=4
K=4
q=sqrt(3*K)
CI=((q+0.7)^(-Y))^(-1)//C/I for 6-sector
CIdB=10*log10(CI)
disp(CIdB,'signal to co-channel interfernce ratio C/I in dB')
if CIdB>18 then
a= CIdB-6
if a>18 then
disp(,'K=4 is adequate system as C/I is still geater than 18dB after considering the practical conditions with reductions of 6dB ')
else
disp(,'K=4 is inadequate system as C/I is smaller than 18dB after considering the practical conditions with reductions of 6dB ')
end
else
disp(,'K=4 is inadequate system as C/I is less than the minimum required value of 18dB ')
end
|
cb330e56de1fc6083a0c26f6a21a6d27fc44c3f4
|
b9602336613b26d0b9c22a09d219c0ed8e158b4e
|
/Examples/Examples_MatFunc/trace.sce
|
32836125ef37e061303dd54f32b1ae90982f3026
|
[
"BSD-2-Clause"
] |
permissive
|
CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox
|
d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd
|
70c97cda4e0dd54df0a638e9b99f380c09ffa37e
|
refs/heads/master
| 2022-12-11T01:28:28.742041
| 2020-08-26T12:24:27
| 2020-08-26T12:24:27
| 290,481,428
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 198
|
sce
|
trace.sce
|
// Function Name: trace
// Returns Sum of the elements on the main diagonal of matrix
// Calculating the trace.
inputMat = [ 1, 2, 3; 4, 5, 6; 7, 8, 9;]
result = armaMatFunc("trace",inputMat)
|
bc84f0aee5c2897ecfc57f220b82afbea3f40f2e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/530/CH3/EX3.5/example_3_5.sce
|
8d40922d7738025ad2114a6107b04ef9e5414fbf
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 700
|
sce
|
example_3_5.sce
|
clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 3
// Thermal Radiation
// Example 3.5
// Page 124
printf("Example 3.5, Page 124 \n\n")
l1 = 0.5 ; // wavelength, [um]
l2 = 1.5 ; // wavelength, [um]
l3 = 2.5 ; // wavelength, [um]
l4 = 3.5 ; // wavelength, [um]
H1 = 2500 ; // [W/m^2 um]
H2 = 4000 ; // [W/m^2 um]
H3 = 2500 ; // [W/m^2 um]
// Since the irridiation is diffuse, the spectral intensity is given by eqn 3.4.14 and 3.4.8
// Integrating i_lambda over the directions of the specified solid angle and using fig 3.12
flux = 3/4*[H1*(l2-l1)+H2*(l3-l2)+H3*(l4-l3)];
printf("Rate at which radiation is incident on the surface = %f W/m^2",flux);
|
0c7357f5788a16fdde3c49fe05857ea4225c1714
|
e806e966b06a53388fb300d89534354b222c2cad
|
/macros/approxpolyDP.sci
|
616febe5bf177c63323e50bdec6d006fdefd12e3
|
[] |
no_license
|
gursimarsingh/FOSSEE_Image_Processing_Toolbox
|
76c9d524193ade302c48efe11936fe640f4de200
|
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
|
refs/heads/master
| 2021-01-22T02:08:45.870957
| 2017-01-15T21:26:17
| 2017-01-15T21:26:17
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 149
|
sci
|
approxpolyDP.sci
|
function output_curve = approxpolyDP(input_curve, epsilon, closed)
output_curve = opencv_approxpolyDP(input_curve, epsilon, closed)
endfunction
|
267daa650df01b188fd37855d59045eed0e7ce92
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2258/CH5/EX5.2/5_2.sce
|
b94529d8d9856d1ce2c61ab70cee78bbb9bc113d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 359
|
sce
|
5_2.sce
|
clc();
clear;
// To calculate the critical current
T=4.2; //temp in kelvin
Tc=7.18; //critical temp in kelvin
Hc_0=6.5*10^4; //in amp/m
d=1; //diameter in mm
d=d*10^-3; //diameter in m
r=d/2;
Hc_T=Hc_0*(1-((T/Tc)^2));
Ic=2*%pi*r*Hc_T;
printf("the critical current is %f Amp",Ic);
//answer given in the book is wrong
|
784241763024c3d7e4799e3f9b2b10afa6f9b642
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/149/CH28/EX28.2/ques2.sce
|
9e573969065504762267adfa0da4545ada98489d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 619
|
sce
|
ques2.sce
|
//ques28.2
disp('See figure in question');
disp('From symmetry u7=u1 , u8=u2 , u9=u3 , u3=u1 , u6=u4, u9=u7');
disp('u5=1/4*(2000+2000+1000+1000)=1500');
u5=1500;
disp('u1=1/4(0=1500+1000+2000)=1125');
u1=1125;
disp('u2=1/4*(1125+1125+1000+1500)=1188');
u2=1188;
disp('u4=1/4(2000+1500+1125+1125)=1438');
u4=1438;
disp(u1,u2,u4,u5)
disp('Iterations : ');
//n=input('Input the number of iterations required : ');
for i=1:6
u11=1/4*(1000+u2+500+u4);
u22=1/4*(u11+u1+1000+u5);
u44=1/4*(2000+u5+u11+u1);
u55=1/4*(u44+u4+u22+u2);
disp(' ');
disp(u55,u44,u22,u11);
u1=u11;
u2=u22;
u4=u44;
u5=u55;
end
|
54803e20c6bd557dcaae9617b8b0c2c2563fe99f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3507/CH3/EX3.5/Ex3_5.sce
|
2bea9eed8c89a7e04997f68331d232e98a475845
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 747
|
sce
|
Ex3_5.sce
|
//chapter3
//example3.5
//page58
// use of Rsg = to obtain desired potential on screen grid since it is connected between power supply and screen grid
// use of Csg = to provide ac grounding for the screen
Ebb=300 // V
Ib=10d-3 // A
Rl=4.7d3 // ohm
Rk=68 // ohm
Isg=3d-3 // A
Vsg=150 // V
cathode_voltage=Ebb-(Ib*Rl)
grid_cathode_bias=-Rk*(Ib+Isg) // since current through cathode resistance is Ib+Isg
Rsg=(Ebb-Vsg)/Isg // since plate supply voltage = grid voltage + drop across Rsg
Rsg_kilo_ohm=Rsg/10^3 // in kilo ohm
printf("zero signal plate cathode voltage = %.3f V \n",cathode_voltage)
printf("grid cathode bias = %.3f V \n",grid_cathode_bias)
printf("Resistor Rsg = %.3f ohm or %.3f kilo ohm \n",Rsg,Rsg_kilo_ohm)
|
a02d4b332e69417d3da7ebedb8d1f0ac76419b52
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3648/CH19/EX19.7/Ex19_7.sce
|
9a5bbd9780afd9d4de4bbda4ce45fa4d2beb9f72
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 242
|
sce
|
Ex19_7.sce
|
//Example 19_7
clc();
clear;
//To calculate the Back emf developed
i=3 //Units in A
r=2 //Units in Ohms
v=110 //Units in Ohms
e=v-(i*r) //Units in V
printf("The back emf developed is EMF=%d V",e)
|
1d74329d545590fb5b154419902972ca268e5b94
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/611/CH3/EX3.4/Chap3_Ex4_R1.sce
|
a71a1f73aa52fd0d013efcc484dc7de529b60434
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Chap3_Ex4_R1.sce
|
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-3,Example 4,Page 49
//Title:Mass ratio
//================================================================================================================
clear
clc
//INPUT
U=2000;//specific internal energy of liquid-vapour mixture in kJ/kg
uf=850.6;//specific internal energy of saturated liquid in kJ/kg
ug=2593.2;//specific internal energy of saturated vapour in kJ/kg
//CALCULATION
mass_ratio=(U-uf)/(ug-U);//calculation of the mass ratio of vapour to liquid using the lever rule (no unit)
//OUTPUT
mprintf('\n The mass ratio of vapour to liquid= %0.4f \n',mass_ratio);
//===============================================END OF PROGRAM===================================================
|
68abed7b63faeb98aa6f7acaa313ce97cbfb0b7c
|
717ddeb7e700373742c617a95e25a2376565112c
|
/1766/CH8/EX8.12/EX8_12.sce
|
01a968ac358aaf8c755cbdfe39c672bee48ae697
|
[] |
no_license
|
appucrossroads/Scilab-TBC-Uploads
|
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
|
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
|
refs/heads/master
| 2021-01-22T04:15:15.512674
| 2017-09-19T11:51:56
| 2017-09-19T11:51:56
| 92,444,732
| 0
| 0
| null | 2017-05-25T21:09:20
| 2017-05-25T21:09:19
| null |
UTF-8
|
Scilab
| false
| false
| 1,085
|
sce
|
EX8_12.sce
|
clc;funcprot(0);//Example 8.12
//Initilisation of Variables
Di=0.03;....//Inner diameter of brass tube in m
Do=0.04;....//Outer diameter of brass tube in m
K=110;....//Thermal conductivity of brass tube in W/m^2k
hi=1200;....//Inside heat transfer coefficient in W/m^2 K
ho=2000;.....//Outside heat transfer coefficient in W/m^2 K
Fi=0.00018;....//Fouling factor for inner surface in m^2C/W
Fo=0.00018;....//Fouling factor for outer surface in m^2C/W
//calculations
Ui=1/((1/hi)+Fi+((Di/(2*K))*log(Do/Di))+((Di/Do)*Fo)+((Di/Do)*(1/ho)));....//Overall heat transfer coefficient for inner surface in W/m^2 K
Uo=(Di/Do)*Ui;....//Overall heat transfer coefficient for outer surface in W/m^2 K
U=(hi*ho)/(ho+hi);.....//By neglecting tube resistance and fouling resistance U=Ui=Uo heat transfer coefficient in W/m^2C
disp(Ui,"Overall heat transfer coefficient for inner surface in W/m^2 K:")
disp(Uo,"Overall heat transfer coefficient for outer surface in W/m^2 K:")
disp(U,"By neglecting tube resistance and fouling resistance U=Ui=Uo heat transfer coefficient in W/m^2C:")
|
c8638c993526419f2320f6df6ac02c6990e87248
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3630/CH21/EX21.2/Ex21_2.sce
|
67ee50a7d1fa68cf453c6aea47f1fffa848616b9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 138
|
sce
|
Ex21_2.sce
|
clc;
vnl=5;
vfl=4.9998;
Il=0.020;
loadre=(vnl-vfl)/Il;
disp('uA/mA',loadre*100,"loadre=");//The answers vary due to round off error
|
c6e37f00f9c1553416f22f328eec66dcc9778eba
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/905/CH8/EX8.6/8_6.sce
|
71cadc66b85f039c021f7481707b0a6bf0fce795
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,407
|
sce
|
8_6.sce
|
clear;
clc;
// Illustration 8.6
// Page: 487
printf('Illustration 8.6 - Page: 487\n\n');
// a - toluene b - air
//*****Data*****
T_G1 = 333; // [K]
P_total = 101.325; // [kPa]
Y_1 = 0.05; // [kg vapor/kg dry air]
//*****//
C_pa = 1.256; // [kJ/kg.K]
C_pb = 1.005; // [kJ/kg.K]
C_s1 = C_pb + Y_1*C_pa
T_1 = 383.8; // [K]
T_c = 591.8; // [K]
M_a = 92; // [gram/mole]
M_b = 28.97; // [gram/mole]
lambda_1 = 33.18*1000/92; // [Latent heat of vaporization at T_1, kJ/kg]
// Constants of antoine equation
A = 13.9320;
B = 3057; // [K]
C = -55.52; // [K]
printf('Illustration 8.6 (a)\n');
// Solution (a)
// Using equation 8.10
// T_as = T_G1 - (Y_as - Y_l)*lambda_as/C_s1
// where lambda_2 = lambda_1*((1-T_as/T_c)/(1-T_1/T_c))^.38
// Y_as = P_a/(P_total-P_a)*M_a/M_b
// P_a = exp(A-B/(T+c))
deff('[y] = f12(T_as)',' y = T_as - T_G1 + ((exp(13.9320 - (3057/(T_as - 55.52)))/(P_total - (exp(13.9320 - (3057/(T_as - 55.52))))))*(M_a/M_b) - Y_1)*(lambda_1*((1-T_as/T_c)/(1-T_1/T_c))^.38/C_s1)');
T_as = fsolve(273,f12); // [K]
printf("Adiabatic Saturation Temperature is %f K\n",T_as);
// Now using equation 8.2
P_a = exp(13.9320-(3057/(T_as-55.52))); // [kPa]
Y_as = P_a/(P_total-P_a)*M_a/M_b; // [kg vapor/kg dry air]
printf("Absolute humidity is %f kg vapor/kg dry air\n\n",Y_as);
printf('Illustration 8.6 (b)\n');
// Solution (b)
// Thermodynamic properties of mixture of toluene and air
row = 1.06; // [kg/cubic m]
u = 19.5*10^-6; // [P]
Pr = 0.7;
Dab = 0.1; //[From Wilke-Lee equation, square cm/s]
Sc = u/(row*Dab*10^-4);
// Using equation 8.16
A_1 = C_s1*(Sc/Pr)^0.567; // [kJ/kg.K]
// here A_1 = hg/ky, psychrometric ratio
// Using equation 8.15
// T_w = T_G1 - (Y_w-Y_1)*lambda_w/(hg/ky)
// where lambda_w = lambda_1*((1-T_w/T_c)/(1-T_1/T_c))^.38
// Y_w = P_a/(P_total-P_a)*M_a/M_b
// P_a = exp(A-B/(T+c))
deff('[z] = f15(T_w)',' z = T_w - T_G1 + ((exp(13.9320 - (3057/(T_w - 55.52)))/(P_total - (exp(13.9320 - (3057/(T_w - 55.52))))))*(M_a/M_b) - Y_1)*(lambda_1*((1-T_w/T_c)/(1-T_1/T_c))^.38/A_1)');
T_w = fsolve(273,f15); // [K]
printf("Wet bulb Temperature is %f K\n",T_w);
// Now using equation 8.2
P_a = exp(13.9320-(3057/(T_w-55.52))); // [kPa]
Y_w = P_a/(P_total-P_a)*M_a/M_b; // [kg vapor/kg dry air]
printf("Absolute humidity is %f kg vapor/kg dry air\n",Y_w);
|
f626b82b4763d4adefe3c54916bca8b6469b98a7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3472/CH15/EX15.3/Example15_3.sce
|
2809f6ab8bb156b57f69edcdee9427c0fb8cb73e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,648
|
sce
|
Example15_3.sce
|
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 8: CORONA
// EXAMPLE : 8.3 :
// Page number 228
clear ; clc ; close ; // Clear the work space and console
// Given data
V = 132.0 // Operating line voltage(kV)
f = 50.0 // Frequency(Hz)
d = 1.17 // Diameter of conductor(cm)
D = 300.0 // Distance b/w conductor(cm)
m = 0.96 // Irregularity factor
b = 72.0 // Barometric pressure(cm)
t = 20.0 // Temperature(°C)
// Calculations
delta = 3.92*b/(273.0+t) // Air density factor
r = d/2.0 // Radius of conductor(cm)
E_0 = 21.1*m*delta*r*log(D/r) // Critical disruptive voltage for fair weather condition(kV/phase)
E_0_foul = 0.8*E_0 // Critical disruptive voltage for foul weather(kV/phase)
E = V/3**0.5 // Phase voltage(kV)
P_fair = 244.0*10**-5*(f+25)/delta*(r/D)**0.5*(E-E_0)**2 // Corona loss for fair weather condition(kW/km/phase)
P_foul = 244.0*10**-5*(f+25)/delta*(r/D)**0.5*(E-E_0_foul)**2 // Corona loss for foul weather condition(kW/km/phase)
// Results
disp("PART II - EXAMPLE : 8.3 : SOLUTION :-")
printf("\nCorona loss in fair weather, P = %.3f kW/km/phase", P_fair)
printf("\nCorona loss in foul weather, P = %.3f kW/km/phase", P_foul)
|
35445df2aae9b99b9b7f03c6d26f0b3cd070f4d2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2102/CH1/EX1.15/exa_1_15.sce
|
244d2ca6372f116ae54884f8e376585cd2631e24
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 234
|
sce
|
exa_1_15.sce
|
// Exa 1.15
clc;
clear;
close;
// Given data
q=1.6*10^-19;// in C
ni= 1.5*10^16;// in /m^3
miu_n= 0.13;// in m^3/vs
miu_p= 0.05;// in m^3/vs
sigma= q*ni*(miu_n+miu_p);// in Ω/m
disp(sigma,"The conductivity in Ω/m is : ")
|
7ae20c630e2070fe596529f4bf6a6fc8fb87c6d9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2321/CH4/EX4.9.5/EX4_9_5.sce
|
dc5fadc445a61b0be7a255e9bb97247944640ac8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 285
|
sce
|
EX4_9_5.sce
|
//Example No. 4.9.5
clc;
clear;
close;
format('v',6);
L=1;//m(Length of element)
f=10;//MHz(Operating frequency)
c=3*10^8;//m/s////Speed of light
lambda=c/(f*10^6);//m(Wavelength)
Rr=80*%pi^2*(L/lambda)^2;//Ω(Radiation resistance)
disp(Rr,"Radiation resistance in Ω : ");
|
8cb822bfeff086f77471fb1b9b3d8660015fc83a
|
0027a3de9d3e2b6b1672bf2ca2037940eabfc9ae
|
/Tasks/task2/2/2.2.10.sce
|
86820c6c7794456044cf5979613fcbd63e502683
|
[] |
no_license
|
SvichkarevAnatoly/Course-Control-Theory
|
6c7fecc01821b21f8084fbd3f432537d61a80cb2
|
f09d24212cf0940f1dd7ba0decb62d16d40b092b
|
refs/heads/master
| 2021-01-02T22:17:04.361009
| 2014-04-11T17:18:19
| 2014-04-11T17:18:19
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 268
|
sce
|
2.2.10.sce
|
// 258 стр
// 82 стр
// p(phi) = 1/cos( 3/phi )
phi = 0: 0.01: 2*%pi;
p = 1 / cos( 3 / phi ); // TODO: странное деление 3/... - вроде не работает
// TODO: как подписать оси?
polarplot( phi, p, style=color("blue") );
|
aea6af237bbd93af846c1ac2e723367e4c6f6f51
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/647/CH10/EX10.9/Example10_9.sce
|
610d9271a20f253396041ddfc8812be889c7da7c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 485
|
sce
|
Example10_9.sce
|
clear;
clc;
// Example: 10.9
// Page: 412
printf("Example: 10.9 - Page: 412\n\n");
// Solution
//*****Data******//
x1 = 0.42;
x2 = 0.58;
P = 760;// [mm of Hg]
P1sat = 786;// [mm of Hg]
P2sat = 551;// [mm of Hg]
//***************//
gama1 = P/P1sat;
gama2 = P/P2sat;
A = log(gama1)*(1 + (x2*log(gama2))/(x1*log(gama1)))^2;
B = log(gama2)*(1 + (x1*log(gama1))/(x2*log(gama2)))^2;
printf("Van Laar Constants\n");
printf("A = %.3f\n",A);
printf("B = %.3f\n",B);
|
674a7a3ffd3ba2b7045b9441f528280fd1b7c68a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1784/CH28/EX28.3/Example3.sce
|
3ff63f3eae5cc3b0532ef8f4ebe9d1ce4d121063
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Example3.sce
|
//chapter 28
//Example 3
clc
//Given
r=1*10^-10 //radius of the atom in meter
Z=79 //gold atomic number
e=1.6*10^-19 //charge in coul
q=Z*e //total positive charge in coul
E=(9.0*10^9)*q/r^2
disp(E,"Electric field strength at the surface of the gold atom in nt/coul is")
|
016451f88c71e130c6c876fd33dfa856dffb1c98
|
3cbee2296fd6b54f80587eead83813d4c878e06a
|
/sci2blif/rasp_design_added_blocks/nmirror_vmm.sce
|
1d539ee11ce4b026e30cf1bdfcddb5043e9a11c5
|
[] |
no_license
|
nikhil-soraba/rasp30
|
872afa4ad0820b8ca3ea4f232c4168193acbd854
|
936c6438de595f9ac30d5619a887419c5bae2b0f
|
refs/heads/master
| 2021-01-12T15:19:09.899590
| 2016-10-31T03:23:48
| 2016-10-31T03:23:48
| 71,756,442
| 0
| 0
| null | 2016-10-24T05:58:57
| 2016-10-24T05:58:56
| null |
UTF-8
|
Scilab
| false
| false
| 105
|
sce
|
nmirror_vmm.sce
|
style.fontSize=14;
style.displayedLabel="nmirror_vmm"
pal2=xcosPalAddBlock(pal2,"nmirror_vmm",[],style);
|
bbf29ea614172ace81d94842767963ccbb751473
|
7d91f8b3cb8d228617c08467d41edcff14343b7f
|
/SM_kolo.sce
|
912554a22c0e385f5828794c83cf6ec9e0744c14
|
[] |
no_license
|
szymczykmichal/KWP
|
aae875431be6fa9c1a370016396f2476cb06f793
|
77cbdf39521e41e2bbb9aa9c00fbba0766ec052e
|
refs/heads/master
| 2020-04-26T08:50:05.726038
| 2019-04-24T19:47:19
| 2019-04-24T19:47:19
| 173,435,873
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,776
|
sce
|
SM_kolo.sce
|
clear, close
exec ode1.sci;
clc
// | |
// | q1 | | q2 |
// ---------------------------------------
// /\ L/4 L/2 L/4 /\
// parametry
L = 4000; // długość belki
E = 210000 //N/mm^2 - szytwnosc na zginanie
I = 1940e4 //mm^4
EI = E*I
_q = 10000; // obciazenie liniowo rozlozne, kN/m
q1=_q/1000
q2=20;
// warunki początkowe
h = 10; // krok
x = 0:h:L; // x <0,L>
function dydx = pochodna(x, y, q1, q2, EI, L)
RA = q1*(7/32)*L+q2*(L/32)
// równanie momentu
if x <= L/4 then
M = -RA*x + q1*x*x/2
elseif x > L/4 && x <= (3*L)/4 then
M = -RA*x + q1*(L/4)*(x-L/8)
else
M = -RA*x + q1*(L/4)*(x-L/8) + q2*(x-(3*L)/4)*(x-(3*L)/4)*0.5
end
dydx(1,1) = y(2);
dydx(2,1) = -M/EI;
endfunction
//function M = Momentum(x, q1, q2, L)
// RA = q1*(7/32)*L+q2*(L/32)
//// równanie momentu
// if x <= L/4 then
// M = -RA*x + q1*x*x/2
// elseif x > L/4 && x <= (3*L)/4 then
// M = -RA*x + q1*(L/4)*(x-L/8)
// else
// M = -RA*x + q1*(L/4)*(x-L/8) + q2*(x-(3*L)/4)*(x-(3*L)/4)*0.5
// end
//endfunction
//
//for i=1:length(x)
// M(i)=Momentum(x(i), q1, q2, L);
//end
// pierwszy strzał
fi1 = -1e-3;
//fi1 = 1;
y = rk4([0; fi1], x, pochodna); // do wyboru: euler1, euler2, midpoint, rk2
// błąd
e1 = y(1,$) - 0;
// drugi strzał
fi2 = -1e-2;
//fi2 = 2;
y = rk4([0; fi2], x, pochodna); // do wyboru: euler1, euler2, midpoint, rk2
// błąd
e2 = y(1,$) - 0;
// skorygowany kąt obrotu
fi = fi2 - e2*(fi1 - fi2)/(e1 - e2)
//disp(y(1,$))
//disp(y(2,$))
disp(fi*180/%pi)
// rozwiązanie
y = rk4([0; fi], x, pochodna); // do wyboru: euler1, euler2, midpoint, rk2
plot(x,y(1,:))
//disp(min(y(1,:)))
//plot(x',M)
|
11398b3be87152f7ea4e003f770945b4defecce9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/284/CH9/EX9.6/ex_6.sce
|
172efd1281f3af3bd1e2d947c7985f1f476a6f60
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 549
|
sce
|
ex_6.sce
|
// Chapter 9_The bipolar transistor
//Caption_Non ideal effects
//Ex_6//page 377
DB=25
VBE=0.60
T=300
e=1.6*10^-19
NB=5*10^16 //doping concentration in base
NC=2*10^15 //doping concentration in collecor
XB=0.70*10^-4 //mettulurgical base width
ni=1.5*10^10 //intrinsic ion concentration
nBO=ni^2/NB
xb1=0.648*10^-4
Jc1=e*DB*nBO*exp(VBE/0.0259)/xb1
xb2=0.597*10^-4
Jc2=e*DB*nBO*exp(VBE/0.0259)/xb2
VCE1=2.6
VCE2=10.6
del_JC_VCE=(Jc2-Jc1)/(VCE2-VCE1)
Va=3.20/del_JC_VCE-2.6
printf('The early voltage is %1.0f V',Va)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.