blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cbc51a0e9e05d0555f2e2264ee8c8a1dc69143d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2330/CH16/EX16.4/ex16_4.sce | 91e11a05a41a93311da61061c4b179211415d826 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 825 | sce | ex16_4.sce | // Example 16.4
format('v',6)
clc;
clear;
close;
// given data
A=100;
R_B= 39*10^3;// in Ω
r_in= 2*10^6;// in Ω
r_out= 75;// in Ω
Vin_off= 2*10^-3;// in V
I_B1= 90*10^-9;// in A
I_in_off= 20*10^-9;// in A
// The closed loop voltage gain
B=1;// unit less
// The closed-loop input impedance
r_in_CL= (1+A*B)*r_in;// in Ω
r_in_CL= r_in_CL*10^-6;// in Mohm
disp(B,"The closed loop voltage gain is : ")
disp(r_in_CL,"The closed-loop input impedance in MΩ is : ")
A=100000;
// The closed-loop output impedance
r_out_CL= r_out/A;// in Ω
disp(r_out_CL,"The closed-loop output impedance in Ω is : ")
//Let V= V1-V2 = Vin_off+I_B1*R_B
V= Vin_off+I_B1*R_B;// in A
// The output offset voltage
Voo_CL= A*V/A;// in V
Voo_CL= Voo_CL*10^3;// in mV
disp(Voo_CL,"The output offset voltage in mV is : ")
|
845df9e7e7c7b73f45a3c08a190e43dd8d990a76 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH8/EX8.4/Ex8_4.sce | df4b17650ef149fd1f32ee4056a3c640e453ee4f | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 129 | sce | Ex8_4.sce | errcatch(-1,"stop");mode(2);//Ex:8.4
;
;
V_out=2;
SR=15;//in V/us
t=V_out/SR;
printf("Time taken = %f us",t);
exit();
|
deee9d79e410aa5ef59093124d1dc48733ce3810 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH17/EX17.9/example9.sce | ef993453816350ad914defdbf46189c6affe0c6d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 789 | sce | example9.sce | // calculate error output voltage
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 17-9, page 640
clear; clc; close;
// Given data
Av=300;// voltage gain
Inbias=80*10^-9;// input bias current in amperes
Inoff=20*10^-9;// input offset current in amperes
Vinoff=5*10^-3;// input offset voltage in volts
Rb1=10^4;// in ohms
Rb2=10^4;// in ohms
// Calculations
V1err=(Rb1-Rb2)*Inbias;// unwanted dc error input in volts
V2err=(Rb1+Rb2)*Inoff/2;// unwanted dc error input in volts
V3err=Vinoff;// unwanted dc error input in volts
Verror=Av*(V1err+V2err+V3err);// output error voltage in volts
disp("Volts",Verror,"output error voltage=")
// Result
// Output error voltage is 1.56 Volts |
ce341f352a47bf69fb83c3444205bae9061d6b51 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH5/EX5.9/Ex5_9.sce | 6c1a9889ef43267c111a3ccb44a03ff0074be0bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 590 | sce | Ex5_9.sce | //EX5_9 PG-5.17
clc
disp("refer to the figure-5.19 shown")
Vbe=0.7;//base emitter voltage for silicon
Vcc=16;//supply voltage
Beta=100;//voltage gain
Vce=5;//colector to emitter voltage
Ic=5e-3;//collector current
Ib=Ic/Beta;//base current
printf("\n Ib=%.0f microA \n",Ib*1e6)
Rc=(Vcc-Vce)/(Ic+Ib);//since Vcc-Vce-Ic*Rc=0
printf("\n Rc=%.3f kohm \n",Rc*1e-3)
disp("Rc=2 kohm standard value")
disp("We apply KVL to the input circuit ie Vce-Vbe-Ib*Rb=0")
Rb=(Vce-Vbe)/Ib;//since Vce-Vbe-Ib*Rb=0
printf("\n Rb=%.0f kohm \n",Rb*1e-3)
disp("the standard value of Rb=91 kohm")
|
d52516de29c941e2d3057317a813ff9a5936c7e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH5/EX5.12/ex5_12.sce | 3a055ffc4b620cdb0890bba23fb68c0a3a848220 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 200 | sce | ex5_12.sce | clc;
m=1; //mass in kg
KE=1; //Knetic Energy in Joule
v=sqrt((2*KE)/m); //calculating velocity in m/sec using KE=1/2(m*v*v)
disp(v,"Velocity in m/sec = "); //displaying velocity in m/sec |
532a2a7c411e111a87f2a8b80728c465da9bbc56 | 608ce453a5e6495299d7099c28b04d167ac50a76 | /Project2/phase2/AddSub.tst | b7501260a7f1129cab2a1dd043a55a8eeb71e58a | [] | no_license | andreww-han/CSCE-312 | abad4364c0a6a9f406a8a409145ec94a6eb52b88 | c3d23e7f5a13df9413656bda76ec82ab8bdc3a1c | refs/heads/master | 2022-11-27T18:52:41.794118 | 2020-07-20T20:16:53 | 2020-07-20T20:16:53 | 281,214,854 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 723 | tst | AddSub.tst | load AddSub.hdl,
output-file AddSub.out,
compare-to AddSub.cmp,
output-list a%B1.4.1 b%B1.4.1 sub%B2.1.2 out%B1.4.1 carry%B3.1.3;
set a %B0000,
set b %B0000,
set sub 0,
eval,
output;
//5 + (- 3) -> 3 is in 2s complement
set a %B0101,
set b %B1101,
set sub 0,
eval,
output;
//5 - 3 -> 3 is in binary
set a %B0101,
set b %B0011,
set sub 1,
eval,
output;
//2 + 4
set a %B0010,
set b %B0100,
set sub 0,
eval,
output;
//2 - 4
set a %B0010,
set b %B0100,
set sub 1,
eval,
output;
//8 - 0
set a %B1000,
set b %B0000,
set sub 1,
eval,
output;
//6 - 2
set a %B0110,
set b %B0010,
set sub 1,
eval,
output;
//4 + (-1) -> 2s complement
set a %B0100,
set b %B1111,
set sub 0,
eval,
output;
//Complete the rest of the tst file
|
53536933ebe9b95ee160f47acfd2ddf6fb61a80b | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/SparamToolBox/SparamToolbox/v1.0/x86/sci_gateway/cleaner_gateway.sce | aaacb6000f85b0f23d71f4820736155441240127 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 808 | sce | cleaner_gateway.sce | // This file is released into the public domain
// Generated by cleaner_gateway.sce: Please, do not edit this file
//
sci_gateway_dir = get_absolute_file_path('cleaner_gateway.sce');
current_dir = pwd();
chdir(sci_gateway_dir);
if ( isdir('c') ) then
chdir('c');
exec('cleaner.sce');
mdelete('cleaner.sce');
end
chdir(sci_gateway_dir);
if ( isdir('fortran') ) then
chdir('fortran');
exec('cleaner.sce');
mdelete('cleaner.sce');
end
chdir(sci_gateway_dir);
if ( isdir('cpp') ) then
chdir('cpp');
exec('cleaner.sce');
mdelete('cleaner.sce');
end
chdir(current_dir);
// ====================================================================
clear sci_gateway_dir;
clear current_dir;
// ====================================================================
|
a5b1c1c6e642959c558d84d4ee2782bd6fac9579 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2753/CH6/EX6.6/Ex6_6.sce | 8a0365f83b361d35d46df5b63ecd0c41bd0bb8f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sce | Ex6_6.sce | //Example 6.6:
clc;
clear;
close;
//given data :
gm=3;//Transconductance in mS
rl=10;//load resistance in kilo-ohm
av=gm*rl;//
format('v',4)
disp(av,"the voltage aplification is ,=")
|
3dbf484076d0a59a3d1185a76cc779a3eb6c4230 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH7/EX7.22/Example7_22.sce | 96aa6f505823396af484c74d78a570778d3de324 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,546 | sce | Example7_22.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART I : GENERATION
// CHAPTER 7: TARIFFS AND ECONOMIC ASPECTS IN POWER GENERATION
// EXAMPLE : 7.22 :
// Page number 82
clear ; clc ; close ; // Clear the work space and console
// Given data
MD = 20.0*10**3 // Maximum demand(kW)
LF = 0.6 // Load factor
CF = 0.48 // Plant capacity factor
UF = 0.8 // Plant use factor
// Calculations
// Case(a)
avg_demand = LF*MD // Average demand(kW)
ene_daily = avg_demand*24.0 // Daily energy produced(kWh)
// Case(b)
cap_installed = avg_demand/CF // Installed capacity(kW)
cap_reserve = cap_installed-MD // Reserve capacity(kW)
// Case(c)
max_ene_C = cap_installed*24.0 // Maximum energy that could be produced daily(kWh)
// Case(d)
max_ene_D = ene_daily/UF // Maximum energy that could be produced daily as per schedule(kWh)
// Results
disp("PART I - EXAMPLE : 7.22 : SOLUTION :-")
printf("\nCase(a): Daily energy produced = %.f kWh", ene_daily)
printf("\nCase(b): Reserve capacity of plant = %.f kW", cap_reserve)
printf("\nCase(c): Maximum energy that could be produced daily when plant runs at all time = %.f kWh", max_ene_C)
printf("\nCase(d): Maximum energy that could be produced daily when plant runs fully loaded = %.f kWh", max_ene_D)
|
640bcb6266fd2e3e95575f006a1fa46a5c1da01a | bbdc72de6d7eef74128eaf52b1f040053943de38 | /Code/Factorisation_LU_RecherchePivot.sci | 1c8c66807a5e5da5fffd21d106b49008b58f59e5 | [] | no_license | Abdel-BHPC/Numerical-analysis | 46bb4dbcd26e00d6c4f405fe59a1ba433b8b72e0 | 2bcdb80d9ab8890d036eac3cce92b595abb88784 | refs/heads/main | 2023-03-02T14:11:06.939206 | 2021-02-08T08:40:07 | 2021-02-08T08:40:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,376 | sci | Factorisation_LU_RecherchePivot.sci | /*
Etideur:
Jinshan GUO
Objecitf:
Fonction à réaliser l'algorithme de factorisation LU avec recherche de pivots(PA=LU)
Containtes:
A est une matrice carré inversible
L est une matrice triangulaire inférieure obtenue après la factorisation
U est une matrice triangulaire supérieure obtenue après la factorisation
P est une matrice de permutation(avec que des 0, un seul 1 par ligne et par colonne)
b est un vecteur colonne
y est un vecteur colonne intermédiaire
x est un vecteur colonne objetif à obtenir
Valeur retour:
L,U,P,x
*/
function [L,U,P,x]=Factorisation_LU_RecherchePivot(A,b)
n = size(A)(1) //Nombre de ligne de matrice
//Initialisation de L et P
L = eye(n,n);
P = eye(n,n);
for k=1:n-1
//Trouver le pivot maximal
pivot_max = A(k,k);
nombre_ligne = k;
for i=k+1:n
if A(i,k) > pivot_max then
pivot_max = A(i,k);
nombre_ligne = i;
end
end
if abs(A(nombre_ligne,k)) < %eps then
error("Pivots sont tous nulls après sa recherche, matrice inversible");
elseif nombre_ligne ~= k then
//Appliquer la permutation de lignes (k,l) à P,A,L dans les colonnes 1 à k-1
//Permutation P
temp_P = P(k,1:k-1);
P(k,1:k-1) = P(nombre_ligne,1:k-1);
P(nombre_ligne,1:k-1) = temp_P;
//Permutation A
temp_A = A(k,1:k-1);
A(k,1:k-1) = A(nombre_ligne,1:k-1);
A(nombre_ligne,1:k-1) = temp_A;
//Permutation L
temp_L = L(k,1:k-1);
L(k,1:k-1) = L(nombre_ligne,1:k-1);
L(nombre_ligne,1:k-1) = temp_L;
end
//Effectation d'éliminqtion de Gauss sur A permutée
for i=k+1:n
L(i,k) = A(i,k)/A(k,k);
for j=k:n
A(i,j) = A(i,j) - L(i,k) * A(k,j);
end
end
end
if abs(A(n,n))< %eps then
error("Dernier pivot est null");
end
U = A;
//Calculer y
exec(fullpath(pwd() + '\Système Triangulaire Inférieur_SL.sci'),-1);
[y] = sloinf(L,b);
//Calculer x
exec(fullpath(pwd() + '\Système Triangulaire Supérieur_SL.sci'),-1);
[x] = slosup(U,y);
endfunction
|
6fbf58fefcc9755031b72fce5090680034d1a976 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronics_Devices_And_Circuit_Theory_R._L._Boylestad_And_L._Nashelsky_69.zip/Electronics_Devices_And_Circuit_Theory_R._L._Boylestad_And_L._Nashelsky_69/CH12/EX12.3/12_3.sce | 067e43c2505945586e4e9db71bacba9cb81a49ce | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 138 | sce | 12_3.sce | errcatch(-1,"stop");mode(2);; ;
Rl_dash = 10*10^(3);
Rl = 8;
N1_N2 = sqrt(Rl_dash/Rl);
disp(N1_N2,'Turns ratio = ');
exit();
|
f7acf61be1a6b5505981c26502b213418a7eefba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1952/CH7/EX7.3/Ex7_3.sce | b55b35c1f9a63681db57dd69cc9e12c8e6149f35 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | Ex7_3.sce | // chapter 7 , Example7.3 , pg 208
Nd=10^14 //Donor density (in atoms/cm^3)
e=1.6*10^-19 //electronic charge of electron (in C)
Un=3900 // electron mobility (in cm^2/(V*s)) for Ge at 300 K
sigma=Nd*e*Un //conductivity
rho=1/sigma //resistivity
printf("Resistivity=\n")
printf("rho=%.2f ohm*cm",rho)
|
f6525f3c252c65ebf8143cd18686190d34a3d6e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH11/EX11.1/BBC_Ex_11_1.sce | 06e8ab05d069985c970a0351eb2868af6649c785 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 383 | sce | BBC_Ex_11_1.sce | clc
//Chapter11
//Example11.1, page no 435
//Given
//a
c=20// no of signal channels
s=8e3// Channel sampling rate
t=1/s// time interval over which ll channels are sampled once
//b
g=5e-6// guaed time for each channel sample
s_duration=t-g// duration of each sample
//c
samples_sec=c*s//
mprintf('The total no of samples per second is:\n %d samples/second',samples_sec)
|
54b3b7dfbb3311a56873525c029e5c16f3bf9d89 | bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b | /lense.sci | bfdd4e6f5c6a6e62dd72d1407d2acdde60098ba5 | [] | no_license | prasadovhal/Scilab-Codes | c8ccc49feba4243d092d8a1eba7a708eb95dc89e | 3af5566d62b1f1b6cf080ec20391c39b9d61897d | refs/heads/master | 2020-03-29T16:50:45.738023 | 2018-09-24T16:05:50 | 2018-09-24T16:05:50 | 150,130,310 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 338 | sci | lense.sci | function [mbd]=spherical_mirror_aberr(fn,D)
f = fn * D
delta_x = 0.01
theta = 0
d = 0
d_sum = 0
for (x = 0:delta_x:(D/2))
theta = asin(x/(2*f))
d = 2*f*(tan(2*theta))*((1/(cos(theta))) - 1)
d_sum = d_sum + (d * x)
end
dx_sum = d_sum
mbd = (8*delta_x) * dx_sum / D^2
endfunction
|
52708b7c9067b5d899b2ff9fdc3a599ca806a10c | c247bce84b3facd1a13b48e7417327c40c8b3898 | /FOPID/foBPF.sci | f7e8310e3edac4a21a9add4b07fd8a81c8ca9b52 | [] | no_license | AstroSayan/FuzzyFOPID | 9de9fa761301da6ae1f5dfe7b8e7e8214f3b472b | ea0e31e8fa0b36e407de9dfa466cf46b583e4103 | refs/heads/main | 2023-04-26T19:18:30.590337 | 2021-05-13T18:27:32 | 2021-05-13T18:27:32 | 367,137,779 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 489 | sci | foBPF.sci | function [H,wp]=foBPF(alpha,bita,wc,f,N,w)
s=poly(0,'s'); s=syslin('c',s/((0*s)+1));
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\fod.sci');
alphaTemp=fix(alpha);
alp=alpha-alphaTemp;
bitaTemp=fix(bita);
bi=bita-bitaTemp;
num=(wc^alpha)*((s^bitaTemp)*fod(bi,f,N,w));
den=((s^alphaTemp)*fod(alp,f,N,w))+(wc^alpha);
H=num/den;
wptemp=sqrt(alpha^2+4*bita*(alpha-bita)*tan(alpha*%pi/2)^2);
wp=wc*((cos(alpha*%pi/2)*((2*bita-alpha)+(wptemp)))/(2*(alpha-bita)))^(1/alpha);
endfunction
|
8a583f10b1caa2ae8a772d33af1e27e9c32dc52b | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH15/EX15.3/exp15_3pp.sce | 652bfe18eb1aee64278d641bf553e046400e84a5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,106 | sce | exp15_3pp.sce | clc
clear
disp("example 15.3")
b=4.2 //flux density
v=600 //gas velocity
d=0.6 //dimension of plate
k=0.65 //constent
sl=0.6 //length given
sb=0.35 //breath given
sh=1.7 //height given
c=60 //given condectivity
e=b*v*d //open circuit voltage
vg=e/d //voltage gradient
v=k*e //voltage across load
vgg=v/d //voltage gradient due to load voltage
rg=d/(c*sb*sh)
vd=e-v //voltage drop in duct
i=vd/rg //current due to voltage drop in duct
j=i/(sb*sh) //current density
si=e/(rg) //short circuit current
sj=si/(sb*sh) //short circuit current density
pd=j*vg //power density
p=pd*sl*sh*sb //power
pp=e*i //also power
pde=v*i //power delevered is V*i
los=p-pde //loss
eff=pde/p //efficiency
maxp=e^2/(4*rg)
printf("resistence of duct %fohms \n voltage drop in duct %.1fV \n current %.1fA \ncurrent density %fA/m^2 \nshort circuit current %.1fA \nshort current density %fA/m^2 \n power %fMW \npower delivered to load %fW \n loss in duct %fW \nefficiency is %f \nmaximum power delivered to load %dMW",rg,vd,i,j,si,sj,p/10^6,pde/10^6,los/10^6,eff,maxp/10^6)
|
df96a8e918f8878afc11b216605756a2fc761a1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2309/CH4/EX4.7/Ex4_7.sce | 15bfefeaff100a33446f95cf0f52d392849ed9d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_7.sce | // Chapter 4 Example 7
//==============================================================================
clc;
clear;
// input data
m = 1.675*10^-27; // Mass of proton in kg
c = 3*10^8; // velocity of light in m/s
h = 6.625*10^-34 // plancks constant
// Calculations
vp = c/20; // velocity of proton in m/s
lamda = h/(m*vp) // de-Broglie wavelength in m
// Output
mprintf('de-Broglie wavelength = %e m',lamda);
//==============================================================================
|
ba3a463888037f29be8a650f08f8029322d14ec5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH1/EX1.19/Ex1_19.sce | a9ae099d4384a5a458675d93336235f5b98a26ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 115 | sce | Ex1_19.sce | //Ex:1.19
clc;
clear;
close;
v=3;//in volts
i=1.5;//in amperes
p=v*i;
printf("Power supplied = %f watts",p); |
33ce672d5e79641e67dc020c709880ec47731f55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH14/EX14.6/Ex14_6.sce | 26ad594d57eeadaca68e19c96a5aa2e0e08e1b0e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 751 | sce | Ex14_6.sce | clear all; clc;
disp("Scilab Code Ex 14.6 : ")
//Given:
l_ab = 1; //m
l_bc = 2; //m
N_ab = 11.547*1000; //N
Nb = 20*1000; //N
Nc = -23.094*1000; //N
N_ac = -20*1000; //N
A = 100/(1000^2); //mm^2
E = 200*10^9; //N/m^2
P = 20*10^3;//N
//Eqn 14-26
P_by_2 = P/2;
l_ac = sqrt(l_bc^2 - l_ab^2);
del = 0;
N2= [N_ab^2 Nc^2 N_ac^2];
L = [l_ab l_bc l_ac];
for i = 1:3
del = del + (N2(i)*L(i))/(2*A*E);
end
del_bh = del/P_by_2;
del_bh = del_bh*1000;
//Display:
printf('\n\nThe horizontal displacement at point B = %1.2fmm',del_bh);
//-------------------------------------------------------------------------END-------------------------------------------------------------------------------------------
|
af81e5b1e54ce22f146f7ab5f61f9f8584382e9f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH14/EX14.7/Ex14_7.sce | ed28bdf09d1a99c5b7a332165b2770368cc6c5bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,798 | sce | Ex14_7.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 14 : Frequency Response
// Example 14 - 7
clear; clc; close;
//
// Given data
R = 2.0000;
L = 0.0010;
C = 0.4 * 10^(-6);
Vm = 20.0000;
//
// Calculations Resonant Frequency
Wo = 1/sqrt(L*C)
// Calculations The Lower Half Power Frequency and The Upper Power Frequency
W1_a = R/(2*L);
W1_b = 1/(L*C);
W1 = -W1_a + sqrt((W1_a)^2+(W1_b))
W2 = W1_a + sqrt((W1_a)^2+(W1_b))
// Calculations Bandwidth and Quality Factor
B = W2 - W1;
Q = Wo/B;
// Calculations Amplitude of The Current at Wo, W1 and W2
I_wo = Vm/R;
I_w1 = Vm/(sqrt(2)*R);
I_w2 = I_w1;
//
disp("Example 14-7 Solution : ");
disp("a. The Resonant Frequency, The Lower dan Upper Power Frequency: ");
printf(" \n Wo = Resonant Frequency = %.3f krad/s",Wo/1000)
printf(" \n W1 = The Lower Half Power Frequency = %.3f krad/s",W1/1000)
printf(" \n W2 = The Upper Half Power Frequency = %.3f krad/s",W2/1000)
disp("")
disp("b. Bandwidth and Quality Factor");
printf(" \n B = Bandwidth = %.3f krad/s",B/1000)
printf(" \n Q = Imaginary Part of Power Complex = %.3f ",Q)
disp("")
disp("c. Amplitude of The Current at Wo, W1 and W2");
printf(" \n I_wo = Amplitude of The Current at Wo = %.3f A",I_wo)
printf(" \n I_w1 = Amplitude of The Current at W1 = %.3f A",I_w1)
printf(" \n I_w2 = Amplitude of The Current at W2 = %.3f A",I_w2)
|
a971e128b1f0597271caa10ce66bf724b3eda0f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH1/EX1.18.2/Example1_18b.sce | 3470710c25704196a1c14f2d1ce7482727753a02 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Example1_18b.sce | clc
//Given
lambda=5.9e-5// wavelength of incident light in cm
n=10// order of ring
//Sample Problem 18b Page No. 54
printf("\n # Problem 18b # \n")
printf(" \n Standard formula used \n 2t = n*lambda \n")
t=n*lambda/200
printf(" Thickness of air film is %e m.\n ",t)
|
92b6fbe38f72e9112bb3d8f74acef710656ee9cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH9/EX9.3/Ex9_3.sce | ec8796bf93fe93a537d4904f2863c58626543817 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 274 | sce | Ex9_3.sce | clc;
clear;
n1=1.48 //core refractive index
delta=0.05 //fractional refractive index
//calculation
NA=n1*sqrt(2*delta) //numerical aperture
i_a=asind(NA)
mprintf("\nThe numerical aperture is = %1.3f\n",NA)
mprintf("The acceptance angle is = %2.1f degree.",i_a)
|
baa5ddb8296a50408415e69d08449da916630918 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH11/EX11.2.b/11_2_soln.sce | b7605dd6ad032c42b0296760a24bbc20a14eaa1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | 11_2_soln.sce | clc;
pathname=get_absolute_file_path('11_2_soln.sce')
filename=pathname+filesep()+'11_2_data.sci'
exec(filename)
// Solution:
// heat generation rate,
HP=(p*Q_gpm)/1714; //HP
// heat generation rate in Btu/min,
HP_btu=HP*42.4; //Btu/min
// oil flow-rate in lb/min,
Q_lb=7.42*Q_gpm; //lb/min
// temperature increase,
T_increase=HP_btu/(0.42*Q_lb); //deg F
// downward oil temperature,
T_downward=T_oil+T_increase; //deg F
// Results:
printf("\n Results: ")
printf("\n The downstream oil temperature is %.1f deg F.",T_downward)
|
0aedf1d95f1a6974a13f4bfabeb699049acec50d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2234/CH1/EX1.14/ex1_14.sce | d044f7a690fc059fe3586d1b50b2e66c60b51427 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 101 | sce | ex1_14.sce | clc;
disp("In a)parallel b)series c)Two pairs of parallel and then in series"); //displaying result |
1fe0dd5e837eae0c1ffbbeec21bceac49de7330d | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_arena_window_grid.sci | 34ee3b88afbf0fae7506fe7742921a04eeaf7a1b | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 645 | sci | kiks_arena_window_grid.sci | function [] = kiks_arena_window_grid()
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
global("KIKS_2DVISUALIZE","KIKS_2D_GRID");
if mtlb_logic(mtlb_double(KIKS_2DVISUALIZE),">",0) then
kiks_arena_window_close;
KIKS_2D_GRID = abs(mtlb_s(mtlb_double(KIKS_2D_GRID),1));
// !! L.12: Unknown function kiks_arena_window_open not converted, original calling sequence used
kiks_arena_window_open;
end;
endfunction
|
ab97a2977a193a755d870d8ecf521364fcf985e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /656/CH1/EX1.8/example1_8.sce | 92e2c4be590aec8ca57df051b02c12a09d312bb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 724 | sce | example1_8.sce | // e be the charge of an electron e=-1.6*10^-19c
// q be the charge, q=n*e where n is the no. of electrons
// t is the time in seconds
//i=q/t
//i=(n*e)/t
e=-1.6*10^-19;
disp("e=")
disp(e)
// in coulombs C
disp("C")
n=10^15;
disp(n)
t=1;
disp("t=")
disp(t)
// in seconds
disp("sec")
i=(n*e)/t;
disp("i=")
disp(i)
// in amperes A
disp("A")
// i current is -0.00016A
// power in watts P=V*I
p=4;
disp("p=")
disp(p)
// in watts W
disp("W")
v=p/i;
disp("v=")
disp(v)
// in Volts V
disp("V")
// voltage needed to accelerate electron beam to 4w is 25000V
V/1000;
disp("V=")
disp(V/1000)
disp("KV")
// V is 25Kv
|
93093086d01733f2ea91122fc413463b4dd21ecf | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH4/EX4.15/4_15.sce | a87dca19c7045e48e340c17efa2b0e5a1d8279b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,845 | sce | 4_15.sce | clear;
clc;
//Example - 4.15
//Page number - 168
printf("Example - 4.15 and Page number - 168\n\n");
//Given
P_1 = 3;//[bar] - Initial pressure
T_1 = 150 + 273.15;//[K] - Initial temperature
Vel_1 = 90;//[m/s] - Initial velocity
P_2 = 1;//[bar] - Final pressure
eff = 0.95;// Adiabatic effciciency of the nozzle
R = 8.314;//[J/mol*-] - Universal gas constant
// At 3 bar and 150 C, from steam table
S_1 = 7.0778;//[kJ/kg-K]
H_1 = 2761.0;//[kJ/kg]
S_2 = S_1;//
// At 1 bar saturated
S_liq = 1.3026;//[kJ/kg-K]
S_vap = 7.3594;//[kJ/kg-K]
H_liq = 417.46;//[kJ/kg]
H_vap = 2675.5;//[kJ/kg]
// The dryness factor of exit steam can be determined as
x = (S_1-S_liq)/(S_vap-S_liq);
// Enthalpy of exit steam is given by
H_2 = H_liq*(1-x) + x*H_vap;//[kJ/kg]
delta_H_s = H_2 - H_1;//[kJ/kg] - Enthalpy change
delta_H_a = eff*delta_H_s;//[kJ/kg]
// Assuming no heat exchange with surroundings and since no work is done
// delta_H + (delta_V^(2))/2 = 0
delta_Vel_square = 2*(-delta_H_a)*1000;//[m^(2)/s^(2)]
Vel_2 = (delta_Vel_square + Vel_1^(2))^(1/2);//[m/s]
printf(" (1).The final velocity (when fluid is steam) is %f m/s\n\n",Vel_2);
// (2)
Y = 1.4;// Index of expansion
Cp_0 = (Y*R)/(Y-1);//[J/mol-K] - Specific heat capacity at constant pressure
// The final temperature has to be determined such that entropy change is zero. Under isentropic conditions
// P_1^(1-Y)*T_1^(Y) = P_2^(1-Y)*T_2^(Y)
T_2 = T_1*(P_1/P_2)^((1-Y)/Y);//[K]
delta_H_s_2 = Cp_0*(T_2 - T_1);//[J/mol]
delta_H_a_2 = eff*delta_H_s_2;//[J/mol]
delta_H_a_2 = (delta_H_a_2*1000)/28.84;//[J/kg]
delta_Vel_square_2 = 2*(-delta_H_a_2);//[m^(2)/s^(2)]
Vel_2_2 = (delta_Vel_square_2 + Vel_1^(2))^(1/2);//[m/s]
printf(" (2).The final velocity (when fluid is air which behaves as an ideal gas) is %f m/s\n\n",Vel_2_2);
|
bf332954222616852b1abf7ed576bccbed19cfe0 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/gaussdesign/gaussdesign6.sce | f3ebc352b30d6f86269e2eba10b3a063d5e9b403 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | gaussdesign6.sce | bt = 0.3;
span = 4;
sps = 8;
h = gaussdesign(bt,span);
disp(h);
//output
//
// column 1 to 3
//
// 0.0000159 0.0014135 0.0348078
//
// column 4 to 6
//
// 0.2379553 0.4516150 0.2379553
//
// column 7 to 9
//
// 0.0348078 0.0014135 0.0000159
//
|
e361899e937f5295c38c582563b61379b8def98c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1627/CH6/EX6.2/Ex6_2.sce | 86d09aff5f8999b0d3a5511da52f1d5dba0d1023 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 724 | sce | Ex6_2.sce | clc
//initialisation of variables
w=400*10^-3//m^3/min
t=1/60//min/s
q=10*10^-2//m
v=1*10^-6//m^2
v1=4*10^-2//m
v2=10^-5//m^2/s
p=0.000046/0.01
R=0.000046/0.04
g=9.8//m/s^2
v3=100//m
v4=0.78//m
d1=0.5//m
d3=0.037//m
d2=0.84//m
Hg=10*1.44//m
Hck=2.5*1.44//m
f4=188.81//m
h4=4*0.9*1.44//m
Het=1.0*1.44//m
p1=9802//N/m^3
p2=10^-5//bars
w2=400//min
w3=448
//CALCULATIONS
V=(4*w*t)/((%pi)*(q)^2)//m/s
V4=(4*w*t)/((%pi)*(v1)^2)//m/s
Nr=(V*q)/v2
Nr4=(V4*v1)/v2
He=(v4*(V)^2)/(2*g)//m
f10=(He*v3*(V)^2)/(q*2*g)//m
Hr=d1*d2*d3//m
Htotal=He+f10+Hr+Hg+Hck+f4+h4+Het//m
FHP=(Htotal*p1*p2*w2)/w3//hp
//RESULTS
printf('The head and power loss associate with the friction in the system is=% f hp',FHP)
|
9600084c6c7cedcac127b4785b21a9195ab6c434 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH11/EX11.6/11_6.sce | 7e7e01e84fdbf21b5d1f8abc7f7c745f5672c19a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 11_6.sce | clear;
clc;
Zoc=800;Zsc=600;
R2=sqrt((Zoc*Zoc)-(Zsc*Zoc));
R1=2*(Zoc-R2);
printf("The components of the network are:\n");
printf(" R1/2 = %d ohms\n",R1/2);
printf(" R2 = %d ohms",R2);
|
4feb5f9c66e2d9d52242ba803692500f1de2ff68 | e9d5f5cf984c905c31f197577d633705e835780a | /GED/linear/scilab/P9_u_s7/ged_P9_sim_u_s7.sce | dfdc6ad7e284bb1b890c6452cb042c686d4090ed | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,759 | sce | ged_P9_sim_u_s7.sce | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Mandel, Denis, Ali Abdollahzadeh, Didier Maquin, and Jos� Ragot. 1998.
//Data reconciliation by inequality balance equilibration: a LMI approach.
//International Journal of Mineral Processing 53, no. 3 (April): 157-169.
//http://www.sciencedirect.com/science/article/B6VBN-3VM1X8N-3/2/8bffe94a1153eea8647eed5af0031d36.
//Bibtex Citation
//@article{Mandel1998,
//author = {Mandel, Denis and Abdollahzadeh, Ali and Maquin, Didier and Ragot, Jos�},
//isbn = {0301-7516},
//journal = {International Journal of Mineral Processing},
//keywords = {Linear Matrix Inequality Techniques,data reconciliation,error detection,error isolation},
//month = apr,
//number = {3},
//pages = {157--169},
//title = {{Data reconciliation by inequality balance equilibration: a LMI approach}},
//url = {http://www.sciencedirect.com/science/article/B6VBN-3VM1X8N-3/2/8bffe94a1153eea8647eed5af0031d36},
//volume = {53},
//year = {
// 12 Streams
// 5 Equipments
// Stream 7 unmeasured
getd('../functions/');
getd('../jacobians/');
clear xr sd sds x_sol xfinal jac jac_col jac_col rj sigma sigam_inv res V V_inv diag_diag_V Wbar gama zr_nt adj zadj Wbar_alt adjustability detect resi Qglr betaglr xchiglr ge_glr op_glr;
clear avti_gt_mt op_gt_mt op_gt_nt_tmp avt1_mt1 avt1_mt2 op_mt1 op_mt2 avti_glr op_glr_mt aee_mt aee_nt_tmp op_glr_nt_tmp avti_glr_nt_tmp avti_gt_mt_tmp op_gt_mt_tmp op_gt_nt avt1_nt1 avt1_nt2 op_nt1 op_nt2 avti_glr_tmp op_glr_mt_tmp aee_mt_tmp aee_nt op_glr_nt avti_glr_nt;
stacksize('max');
tic;
// Stream 7 unmeasured
xr =[230;21;209;35;174;15;50;209;94;115;44];
//the variance proposed by the original author
sd = [37.575
1.08
5
1.825
2
0.88
1
5
2
18.1
2.385
];
szx = size(xr,1);
runsize = 2500;
sds = sd;
var=sd.^2;
// Stream 7 unmeasured
jac=jacP9_u_s7();
jac_col = size(jac,2);
jac_row = size(jac,1);
rj=rank(jac);
sigma=diag(sds.^2);
[adj, detect, V, V_inv, sigma_inv, diag_diag_V, Wbar] = adjust(sigma, jac);
[xfinal, resRand, resGrossErrorNodalRand]=generate_data(xr, sd, jac, runsize, 2, 7, 0.02, 0.07);
resGrossErrorNodalRandFi = [ resRand;resGrossErrorNodalRand];
//observability/redundancy tests
//user can set unmeasured streams here, if this vector is empty, all streams are measured
umeas_P9 = [7];
[red_P9, just_measured_P9, observ_P9, non_obs_P9, spec_cand_P9] = qrlinclass(jac,umeas_P9)
measured_P9 = setdiff([1:length(xr)], umeas_P9);
red = measured_P9;//
// to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters:
//WLS analytical = -1 WLS numerical = 0 ; Absolute sum of squares = 1 ; Cauchy = 2 ;Contamined Normal = 3 ; Fair = 4
//Hampel = 5 Logistic = 6 ; Lorenztian = 7 ; Quasi Weighted = 8
// run the configuration functions with the desired objective function type
obj_function_type = -1;
[x_sol] = calc_results_DR(xfinal, jac, sigma, resGrossErrorNodalRandFi, obj_function_type);
[res, gamaMeasuremts,gamaNodal,zr_nt_nodal, zr_nt_nodal_rand, zadj ] = calc_results_index(x_sol, jac, sigma, resGrossErrorNodalRandFi);
[avti_gt_mt, op_gt_mt, op_gt_nt] = global_test(0.105, 0.105, gamaMeasuremts, runsize, rj, jac_col, jac_row);
[avt1_mt1, avt1_mt2, op_mt1, op_mt2] = measurement_test(0.017, 0.17, zadj, runsize, jac_col);
[avt1_nt1, avt1_nt2, op_nt1, op_nt2] = nodal_test(0.0225, 0.107, jac_row, runsize, zr_nt_nodal);
[avti_glr, op_glr_mt, aee_mt, aee_nt, op_glr_nt, avti_glr_nt ]=calc_GLR(res, V_inv, xfinal, jac, sigma, resGrossErrorNodalRandFi, 0.17, 0.22, runsize);
runtime=toc();
streamNames =generateStreamName(szx);
prettyprinttable([tokens(streamNames), string([xr, rrn(4,sd), rrn(3,adj), rrn(3,detect), rrn(3,op_mt1), rrn(3,op_mt2), rrn(3,op_glr_mt), rrn(4,aee_mt)])],"latex")
eqpNames = generateEqpName('P', jac_row);
prettyprinttable([tokens(eqpNames), string([rrn(3,op_nt1), rrn(3,op_nt2), rrn(3,op_glr_nt), rrn(7,aee_nt)])],"latex")
[ op_gt_mt avti_gt_mt avt1_mt1 avt1_mt2 avti_glr avt1_nt1 avt1_nt2 avti_glr_nt runtime ]
prettyprinttable(string([rrn(3,avt1_mt1), rrn(3,avt1_mt2), rrn(3,avti_glr), rrn(3,avt1_nt1), rrn(3,avt1_nt2), rrn(3,avti_glr_nt)]))
[rrn(3,op_mt1), rrn(3,op_mt2), rrn(3,op_glr_mt), rrn(7,aee_mt)]
[rrn(3,op_nt1), rrn(3,op_nt2), rrn(3,op_glr_nt), rrn(7,aee_nt)]
//
//
////saving results
//aa = clock();
//nowtime = '_' + string(aa(4)) + '-'+ string(aa(5));
//save ('P_resumed_' + date() + nowtime +'.sav', runtime, adj, detect, op_nt1, op_nt2, avt1_nt1, avt1_nt2, op_mt1, op_mt2, avt1_mt1, avt1_mt2, op_gt_mt, op_gt_nt, avti_gt_mt, op_glr_mt, op_glr_nt, avti_glr, avti_glr_nt, aee_nt, aee_mt);
|
827c41021f166fd62d5f12122525d29dbddcd32f | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH7/EX7.9/exa7_9.sce | c919f67230422a4459e627d18e1cc0e89a9af3f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | exa7_9.sce | // Example 7-9
// Polar Plot with transport lag
clear; clc;
xdel(winsid()); //close all windows
T = 10;
L = 100;
omega = logspace(-1,2,1000);
s = %i * omega;
den = s .* (T*s + 1);
num = exp(-1*s*L);
repf = num ./ den;
rad = abs(repf);
theta = atan(imag(repf),real(repf));
polarplot(theta,rad,style = 2);
|
071910c4ad50e592d9b3b4d30ea2f0756b1403ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH7/EX7.39/example_7_39.sce | e0bfedad27100157021a1298f70e40064f04089d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | example_7_39.sce | syms s
G=10/(s^2*(s^2+s+10))
H=s;
T=G/(1+G*H)
Kp=limit(s*T/s,s,0) //Kp= position error coefficient
Kv=limit(s*T,s,0) //Kv= velocity error coefficient
Ka=limit(s^2*T,s,0) //Ka= accelaration error coefficient
disp(Ka ,"Ka = ")
disp(Kv ,"Kv = ")
disp(Kp ,"Kp = ")
R=10/s
T1=T/(1+T)
C=R*T1;
Css=limit(s*C,s,0)
disp(Css," Css = ") |
9e8ee452b06346edcd1086363b7bc4df7eafa4e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/DEPENDENCIES/Gravitation.sci | a6ddc1705c3b3c4f8b9edcbc0ae85408880280be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | Gravitation.sci | //Universal constant G
G = 6.67*(10^-11)
//Radius of earth
Re = 6.37* 10^6 //in meter
//mass of earth
Me = 5.98 * 10^24; //in kg
//Mass of Sun
Ms = 1.99 * 10^30 //in kg
//calculates the gravitational force
//m1&m2 = mass of the particle
//d = distanece between m1 & m2
function [Force] = GForce(m1,m2,d)
Force = G*m1*m2/(d*d)
endfunction
//calculates the gravitational potential
//m1&m2 = mass of the particle
//d = distanece between m1 & m2
function [Potential] = GPotential(m1,m2,d)
Potential = - G*m1*m2/d;
endfunction
//Kepler's Law
//M = mass
//T = time period
function [radius] = KeplerRadius (M,T)
radius = (G*M*T*T/(4*%pi*%pi))^(1/3)
endfunction |
12f54bc666a6606b94c5ba8ff0520dc47f7b3a3a | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH13/EX13.9/Example_13_9.sce | b260581f6af458905d7941bac7c59f85108e5913 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Example_13_9.sce | //Chemical Engineering Thermodynamics
//Chapter 13
//Thermodynamics in Phase Equilibria
//Example 13.9
clear;
clc;
//Given
// In the given example, all the values were determined from the graph given as figure 13.9 and it does not involve any numerical computation
//end |
5b20a0d2343fd2043917b92b5514e80358a8ad48 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH1/EX1.12/example1_12.sce | 24f9eb54bf9d92d7b83c494fb24e8175dac8cc05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 579 | sce | example1_12.sce | clc
// Given that
d1 = 4.05e-3 // distance between slits in first position in meter
d2 = 2.90e-3 // distance between slits in second position in meter
lambda = 5.893e-7 // wavelength of light in meter
D = 1 // distance between slit and screen
// Sample Problem 12 on page no. 1.44
printf("\n # PROBLEM 12 # \n")
d = sqrt(d1 * d2)// calculation for distance between fringe
fringe_width = (lambda * D) / d // calculation for fringe width
printf("\n Standard formula used \n d = sqrt(d1*d2),\n beta = lambda*D/d \n")
printf("\n Fringe width = %f mm",fringe_width*1000)
|
164d1405e83780bf4198872d5f1cbecce1a50ded | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH4/EX4.13/Exa4_13.sce | 377a87772a76844472ca2117a3336a831581c83c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | Exa4_13.sce | //Exa 4.13
clc;
clear;
close;
// given data
Vdc=10;//in Volt
R1=10;//in Kohm
R2=10;//in Kohm
R3=100;//in Kohm
RF=100;//in Kohm
// Part(i) Balance Bridge : RA=RB=RC=RT=150ohm and VAB=0
RA=150;//in ohm
RB=150;//in ohm
RC=150;//in ohm
RT=150;//in ohm
VAB=0;//in Volt
Vo=(-RF/R1)*VAB;
// Part(ii) Unbalance Bridge : RT=200ohm
RT=200;//in ohm
VA=(RA/(RA+RT))*Vdc;
VB=(RB/(RB+RC))*Vdc;
VAB=VA-VB;//in Volt
Vo=(-RF/R1)*VAB;
disp(0,"Balance bridge have output voltage Vo in volt is :");
disp(Vo,"Unbalance bridge have output voltage Vo in volt is :");
|
09e95e3d28add924a8a2b9c7128f8adb069f1dc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH30/EX29.8/EX29_8.sce | 38f6e7024ffe82c7ae78055ce5a8812da27163b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,061 | sce | EX29_8.sce | // Grob's Basic Electronics 11e
// Chapter No. 29
// Example No. 29_8
clc; clear;
// Calculate the following quantities: Vb, Ve, Ic, Vc, Vce, r'e, Zin(base), Zin, Av, vb, and vout. Also, plot the dc load line.
// Given data
R1 = 22*10^3; // Resistance1=22 kOhms
R2 = 18*10^3; // Resistance2=18 kOhms
Rg = 600; // Generator resistance=600 Ohms
Re = 1.5*10^3; // Emitter resistance=1.5 kOhms
Rl = 1*10^3; // Load resistance=1 kOhms
Vcc = 20; // Supply Voltage=20 Volts
Vbe = 0.7; // Voltage Base-Emitter=0.7 Volts
B = 200; // Beta=200
vin = 5; // Input Voltage=5 Volts(p-p)
// Calculate the DC quantities first:
Vb = Vcc*(R2/(R1+R2));
disp (Vb,'The Base Voltage in Volts')
Ve = Vb-Vbe;
disp (Ve,'The Emitter Voltage in Volts')
Ie = Ve/Re;
Ic = Ie; // Ic =~ Ie
disp (Ic,'The Collector current in Amps')
disp ('i.e 5.53 mAmps')
Vc = Vcc; // Since the collector is tied directly to Vcc
disp (Vc,'The Collector Voltage in Volts')
Vce = Vcc-Ve;
disp (Vce,'The Collector-Emmiter Voltage in Volts')
Icsat = Vcc/Re;
Vceoff = Vcc;
// Now, calculate AC quantities:
a = 25*10^-3;
re = a/Ie;
disp (re,'The AC emmiter resistance in Ohms')
disp ('Appox 4.52 Ohms')
b = Re*Rl;
c = Re+Rl;
rl = b/c;
Av = rl/(rl+re);
disp (Av,'The Voltage gain is')
Zinbase = B*(re+rl);
disp (Zinbase,'The Input Base Impedence in Ohms')
disp ('i.e 120.9 kOhms')
d = 1/Zinbase;
e = 1/R1;
f = 1/R2;
Zin = (d+e+f)^-1
disp(Zin,'The Input Impedence in Ohms')
disp ('i.e 9.15 kOhms')
vb = vin*(Zin/(Zin+Rg));
disp (vb,'The AC base voltage in Volts(p-p)')
vout = Av*vb;
disp(vout,'The AC output voltage in Volts(p-p)')
Icq = Ic
Vceq = Vce
Vce1=[Vcc Vceq 0]
Ic1=[0 Icq Icsat]
//To plot DC load line
printf("Q(%f,%f)\n",Vceq,Icq)
plot2d(Vce1, Ic1)
plot(Vceq,Icq,".r")
plot(0,Icq,".r")
plot(Vceq,0,".r")
plot(0,Icsat,".b")
plot(Vceoff,0,".b")
xlabel("Vce in Volt")
ylabel("Ic in mAmps")
xtitle("DC Load-line for Emitter Follower Circuit")
|
173406b795e547109a1bfb526c25d6380fcbce90 | 25033eda4e7cd13f945f94c5dc35f15825066b42 | /ExactCure/Nelder Mead/nelder mead.sce | a122bc4385e543e8a70f23e1b23e8f023034e4b1 | [] | no_license | julienguegan/Internships | a26cb9efa2f1715832511a7aa94d25bfc675388b | ad51d5845ed8fd41e29259c95e8beff80bac65cf | refs/heads/master | 2020-12-20T21:54:29.099157 | 2020-01-25T19:20:10 | 2020-01-25T19:20:10 | 236,217,889 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,332 | sce | nelder mead.sce | clear
function y = f(x)
n = 2
A = 5
y = A*n+x(1)^2-A*cos(2*%pi*x(1))+x(2)^2-A*cos(2*%pi*x(2));
endfunction
tol = 10^-4
itermax = 1000
// triangle equilateral de barycentre (x0 y0) //
x0 = 1
y0 = 1
c = 2
x1 = [y0-sqrt(3)/6 , x0-c/2]
x2 = [y0-sqrt(3)/6 , x0+c/2]
x3 = [x0 , y0+sqrt(3)/3]
// //
x = [x1;x2;x3]
A = [f(x1);f(x2);f(x3)]
//initialisation du critere d'arret
xbar = (x3 + x2)./2
xbarold = [0 0]
k = 0
while (k<itermax )//& norm(xbar - xbarold)>tol)|k==1
xbarold = xbar
[fsort index] = gsort(A) //tri par ordre décroissant
xmin = x(index(3),:)
xmax = x(index(1),:)
xbar = (xmin + x(index(2),:))./2
//reflection
xrefl = xbar + (xbar - xmax)
if f(xrefl)<f(xmin) then //expansion
xexp = xbar +2*(xbar - xmax)
if f(xe)<f(xrefl) then
xmax = xexp
else
xmax = xrefl
end
elseif f(xrefl)<f(xmax) & f(xrefl)>f(xmin)
xmax = xrefl
else //contraction
xcon = xbar - 1/2*(xbar - xmax)
if f(xcon)<f(xmin) then
xmax = xcon
else
x(index(2),:) = xmax + 0.5*(x(index(2),:)-xmin)
end
end
k = k+1
x = [xmax;x(index(2),:);xmin]
A = [f(xmax);f(x(index(2),:));f(xmin)]
disp(xbar)
end
disp(xbar')
|
f4f089106726341fa20822633fde4fed3d56ebe5 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/ok_exit.tst | 76d550b0d762bb99792ca61e76e24927025de33d | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 28 | tst | ok_exit.tst | ; Valid exit command
(exit)
|
1d7342be7e0af2c60876926a71de4101057fb7f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH9/EX9.8/Ex9_8.sce | fbc6e24981e62f61fadcce945c80b60ac631d82c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 764 | sce | Ex9_8.sce | clc
P1=100 //pressure in kPa
T1=300 //temperature in kelvin
rp=8
P2=P1*rp
gama=1.4
mprintf("P2=%fkPa\n",P2)//ans vary due to roundoff error
T2=T1*rp^((gama-1)/gama)
mprintf("T2=%fK\n",T2)//ans vary due to roundoff error
P3=P2
T3=1300
Tmax=T3
T4=T3*(1/rp)^((gama-1)/gama)
mprintf("T4=%fK\n",T4)//ans vary due to roundoff error
P4=P1
Cp=1.0047
Wc=-Cp*(T2-T1)
mprintf("Wc=%fkJ/kg\n",Wc)//ans vary due to roundoff error
WT=Cp*(T3-T4)
mprintf("WT=%fkJ/kg\n",WT)//ans vary due to roundoff error
Wnet=WT+Wc
mprintf("Net Work done=%fkJ/kg\n",Wnet)//ans vary due to roundoff error
q1=Cp*(T3-T2)
mprintf("Energy added=%fkJ/kg\n",q1)//ans vary due to roundoff error
Eta=Wnet/q1
mprintf("Thermal efficiency=%f",Eta)//ans vary due to roundoff error
|
73476418e25e32913c9fc09d25316ac555b9a982 | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH5/EX5.10/Example5_10.sce | 8257d125529d601717a827f19d4e719963374119 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 537 | sce | Example5_10.sce | //Computation of Molar Mass
clear;
clc;
printf("\t Example 5.10\n");
percentSi=33;//percent of Si in compound
percentF=67;//percent of F in compound
nSi=percentSi/28.01;//moles of Si in 100g compound
nF=percentF/19;//moles of F in 100g compound
P=1.7;//pressure, atm
T=35+273;//temp. in K
m=2.38;//mass, g
V=0.21;//volume, L
R=0.0821;//universal Gas constant, L.atm/K.mol
n=P*V/(R*T);//moles
M=m/n;//mol. mass=mass/moles, g/mol
printf("\t the molecular mass of given compound is : %4.0f g/mol\n",M);
//End
|
1cd57ebd8ff1e89ad7f1e7ec7e433957c6b270c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH12/EX12.6/Ch12Ex6.sce | 2cdffd6806348a468171d01a5b863949b06ea510 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 568 | sce | Ch12Ex6.sce | // Scilab Code Ex12.6 : Page-606 (2011)
clc; clear;
M_i = 4.5;....// Intial value of total dipole moment of the sample
H_i = 0.84;....// External magnetic field, tesla
T_i = 4.2;....// Cooling temerature of the sample, K
H_f = 0.98;....// External magnetic field, tesla
T_f = 2.8;....// Cooling temerature of the sample, K
// According to the curie's law, Mf/Mi = (Hf/Hi)*(Ti/Tf)
M_f = M_i*H_f/H_i*T_i/T_f;
printf("\nThe total dipole moment of the sample = %5.3f joule/tesla",M_f);
// Result
// The total dipole moment of the sample = 7.875 joule/tesla
|
97f74496a7253ebff2e44a226763f730e6a47793 | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH3/EX3.5/example5_sce.sce | db6e8b16be01657a3d79fbe5671984819539ad63 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 421 | sce | example5_sce.sce | //chapter 3
//example 3.5
//page 120,
A=2*10^5;//open loop gain
R1=1000;Rf=10000;
Ri=2*10^6;//input resistance
Ro=75;//output resistance
Fo=5;// single break frequency in Hz
B=R1/(R1+Rf)
Af=A/(1+A*B);//gain
disp(Af)// closed loop gain
Rif=Ri*(1+A*B);// closed loop input resistance
disp(Rif)
Rof=Ro/(1+A*B);
disp(Rof)// colsed loop output resistance
Fof=Fo*(1+A*B);
disp(Fof)// colsed loop bandwidth in Hz |
d2bbcd2f6b15d25fd5ffd70aa7f2fe67b48882e8 | 13195192acc730725307108d600fa0c8521661a7 | /Serie_de_Maclaurin.sce | aa27a3cf5329f44c05b8e1fc9cc1862ac6ce2a6b | [] | no_license | vsapiens/Numerical-Methods | 7c3fc223d60271786ee23e4ae489365c6e8ab781 | 4ec4facfe2eeb171ff0234e1c3f752115f7fb8a5 | refs/heads/master | 2020-04-25T05:21:00.798079 | 2019-04-25T16:15:31 | 2019-04-25T16:15:31 | 172,539,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,440 | sce | Serie_de_Maclaurin.sce |
////////////////////////////////////////////////////
// Serie_de_Maclaurin.sce
// Esta programa aproxima la funncion coseno a partir
// de la serie de maclaurin a partir de que el
// usuario proporcione el valor en x y la potencia
// de la expresión.
// Erick González
// 21/1/2018 versión 1.0
////////////////////////////////////////////////////
////////////////////////////////////////////////////
// PedirInformacion
//
// Solicito y leo el valor de numero de iteraciones
// y valor inicial de la x para aproximar
//
// Parámetros:
// no tiene
//
// Retorno:
// dValor valor inicial de x
// iVeces numero de iteraciones
////////////////////////////////////////////////////
function [dValor, iVeces] = PedirInformacion()
//Solicitar y leer el valor de dValor
dValor = input("Da el valor de x")
// pido el valor de dValor y valido que sea positivo
while (dValor < 0)
disp("El valor debe ser positivo")
dValor = input("Da el valor de x")
end
//Solicitar y leer el valor de iVeces
iVeces = input("Da el valor de n")
// pido el valor de iVeces y valido que sea positivo
while (iVeces < 0)
disp("El valor debe ser positivo")
iVeces = input("Da el valor de n")
end
endfunction
////////////////////////////////////////////////////
// Factorial
//
// Calcula el factorial de un número
//
// Parámetros:
// iNumero valor límite del cálculo del factorial
// Retorno:
// iNumero valor del factorial
////////////////////////////////////////////////////
function iNumero = Factorial(iNumero)
// en caso de que sea 1 regresa 1
if (iNumero<=0) then iNumero = 1
// calcula recursivamente el factorial hasta iNumero
else
iNumero = iNumero* Factorial(iNumero-1)
end
endfunction
////////////////////////////////////////////////////
// ErrorRelativo
//
// Calcula el error real
//
// Parámetros:
// dValor1 valor del primer numero
// dValor2 valor del segundo numero
// Retorno:
// dErrorRelativo valor del error real relativo
////////////////////////////////////////////////////
function dErrorRelativo= ErrorRelativo(dValor1, dValor2)
//calcula la diferencia de los valores y divide entre el valor inicial
dErrorRelativo = 100* abs((dValor1-dValor2)/dValor1)
endfunction
////////////////////////////////////////////////////
// SerieMaclaurin
//
// Calcula el error real
//
// Parámetros:
// dValor
// iVeces
// Retorno:
// iSuma
// dErrorRealRelativo
// dErrorAproxRelativo
////////////////////////////////////////////////////
function [iSuma, dErrorRealRelativo, dErrorAproxRelativo] = SerieMaclaurin(dValor,iVeces)
//Se inicializa la suma
iSuma = 0
//Se inicializa la suma previa para calcular el error aproximado
iSumaAnterior = iSuma
//Se inicializa el contador para ir alternando el signo
iContador1 = 0
//
for iContador = 0 : 2: iVeces
iContador1 = iContador + 1
if(iContador == 0)
//Se suma en caso de que sea solo un numero
iSuma = iSuma + 1
else
//Se asigna el valor previo a la suma
iSumaAnterior = iSuma
//Es la suma de la evaluacion en esa iteracion
iSuma = iSuma +((-1)^iContador1)*((dValor) ^ iContador)/Factorial(iContador)
end
//Se llama a la funcion para calcualr el valor real relativo
dErrorRealRelativo = ErrorRelativo(cos(dValor),iSuma)
//Se define -1 para que no se muestre en caso de que sea negativo
dErrorAproxRelativo = -1
//Se llama a la funcion para calcualr el valor aproximado relativo
if(iVeces > 0)
dErrorAproxRelativo = ErrorRelativo(iSuma,iSumaAnterior)
end
end
endfunction
////////////////////////////////////////////////////
// Resultados
//
// Calcula el factorial de un número
//
// Parámetros:
// iNumero valor límite del cálculo del factorial
// Retorno:
// iNumero valor del factorial
////////////////////////////////////////////////////
function Resultados(iVeces, iSuma, dErrorRealRelativo, dErrorAproxRelativo)
//Despliega el numero de veces
disp("n = " + string(iVeces))
//Despliega la suma aproximada de mclaurin
disp("Suma = " + string(iSuma))
//Despliega el valor del error real relativo
disp("Error Real Relativo = " + string(dErrorRealRelativo) + " %")
//Despliega el valor del error aproximado relativo en caso de que exista
if(dErrorAproxRelativo <> -1)
disp("Error Aproximado Relativo = " + string(dErrorAproxRelativo) + " %")
end
endfunction
////////////////////////////////////////////////////
// Instrucciones del programa principal
////////////////////////////////////////////////////
// Pido la informacion de
[dValor, iVeces] = PedirInformacion()
//Llama a la funcion de MacLaurin para aproximar el resultado
[iSuma, dErrorRealRelativo, dErrorAproxRelativo] = SerieMaclaurin(dValor,iVeces)
// Despliega los resultados de todos los valores
Resultados(iVeces, iSuma, dErrorRealRelativo, dErrorAproxRelativo)
////////////////////////////////////////////////////
// Casos de Prueba
//
// Caso #1
// dValor = .5
// iVeces = 0
//
// iSuma = 1 dErrorRealRelativo = 13.9494 dErrorAproxRelativo = -1 s(No existe)
// Caso #2
// dValor = .5
// iVeces = 2
//
// iSuma = 0.875 dErrorRealRelativo = 0.2943 dErrorAproxRelativo = 14.2857
//
// Caso #3
// dValor = .5
// iVeces = 4
// iSuma = 0.8776 dErrorRealRelativo = 0.0025 dErrorAproxRelativo = 0.2967
////////////////////////////////////////////////////
|
452aa3632512e73af6f92619491c0b282cc9a1db | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH7/EX7.2/7_2.sce | 60df0f6f26eae9ba9df9bfa39dcdcb5674a0a641 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 699 | sce | 7_2.sce | clc
//initialisation of variables
I= 50 //amp
t= 1 //hr
F= 96500 //amp-sec
mh= 1.01 //gms
mc= 35.46 //gms
ms= 107.88 //gms
mb= 79.9 //gms
mf= 55.85 //gms
V= 11.2 //lit
e= 8 //v
//CALCULATIONS
N= I*t*60*60/F
Mh= mh*N
Mc= mc*N
Ms= ms*N
Mb= mb*N
Mf= mf*N
v= N*V
E= e*I*60*60
//RESULTS
printf (' quantity of hydrogen produced= %.2f gms',Mh)
printf (' \n quantity of chlorine produced= %.2f gms',Mc)
printf (' \n quantity of silver produced= %.2f gms',Ms)
printf (' \n quantity of bromine produced= %.2f gms',Mb)
printf (' \n quantity of ferrous ion produced= %.2f gms',Mf)
printf (' \n Volume occupied by gases= %.1f lit',v)
printf (' \n energy expenditure= %.f joules',E)
|
dc0a224a87cdeedbcaad3f4471714c854fea0132 | 62e111a6d9208f16c9a4979b3f85174cd051e3f7 | /Nand-7-Tests/Examples/MultiTest/MultiTestVME.tst | 44ce125f4879e1e3ecee53645c71c57147d4c5eb | [] | no_license | damebrown/NAND_ex7 | 3bbc71edf6e5f2cd61915f8b6318c5ffd00b8bd0 | 5fd0d9d666479654142a9b6e60ec82c8a7f691f8 | refs/heads/main | 2023-03-10T05:00:19.744596 | 2021-02-21T15:45:27 | 2021-02-21T15:45:27 | 340,937,654 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | tst | MultiTestVME.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/07/StackArithmetic/StackTest/StackTest.tst
load MultiTest.vm,
set RAM[0] 256,
set RAM[1] 4096,
set RAM[2] 4196,
set RAM[3] 4226,
set RAM[4] 4246,
repeat 172 {
vmstep;
}
|
9fdfcc93ebc6fefa2f4e366bc6845ce4a5b7fb2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH2/EX2.7/Ex2_7.sce | a2b70e663553d6173d880b62c79d019ad35df853 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 704 | sce | Ex2_7.sce | //CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT
//Example 7
clc;
disp("CHAPTER 2");
disp("EXAMPLE 7");
//VARIABLE INITIALIZATION
s1=300; //apparent power in kVA
pf1=0.65; //power factor(lagging)
pf2=0.85; //power factor(lagging)
//SOLUTION
//solution (a)
p=s1*pf1; //active power
q1=sqrt((s1^2)-(p^2));
disp(sprintf("(a) To bring the power factor to unity, the capacitor bank should have a capacity of %f kVAR",q1));
//solution (b)
s2=p/pf2;
q2=sqrt((s2^2)-(p^2));
disp(sprintf("(b) To bring the power factor to 85%% lagging, the capacitor bank should have a capacity of %f kVAR",q2));
//END
|
2815f7dcb9735ab80d8f598e48d163ce974945b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1739/CH1/EX1.5/Exa1_5.sce | 5728b5541823ca8ae6885f8e736bcbe9e27ec654 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sce | Exa1_5.sce | //Exa 1.5
clc;
clear;
close;
//Given data :
format('v',5);
c=3*10^8;//in m/s
v=1.1*10^8;//in m/s
//Formula : velocity_of_light_in_medium=velocity_of_light_in_free_space/Refractive_Index;
n=c/v;//in m/s
disp(n,"Refractive Index of medium : "); |
976a521dfa2c8bc8bd040ea20a6a5e2c047f65e3 | 92f5993eb05f0a027cc98c0304337a20d2d9da2e | /dfs.sce | 953c53d14218ba6a0ea632fa18efe458923ecb67 | [] | no_license | LuhJunior/Teoria-dos-Grafos | 664d034c857199d75e8a513cd0aaa12364347c89 | 22168992af086a2a03442701bcc26abe99d26aaa | refs/heads/master | 2020-03-28T02:39:12.681260 | 2018-12-06T06:29:07 | 2018-12-06T06:29:07 | 147,586,961 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,295 | sce | dfs.sce | function graph()
a = [0 1 0 0 0 0 0 0;
0 0 1 1 0 0 0 0;
0 0 0 0 1 0 0 0;
0 0 0 0 0 1 0 0;
0 0 0 0 0 0 1 0;
0 0 0 0 0 0 1 0;
0 0 0 0 0 0 0 1;
0 0 0 0 0 0 0 0]
disp(a, 'a')
a = a + a'
disp(a, 'a')
[nl, nc] = size(a)
n = nl
teta = [0 : 2*%pi/n :(n-1)* 2*%pi/n]
x = cos(teta)
y = sin(teta)
plot2d(x, y, -9)
plot2d(-2, -2, 0)
plot2d(2, 2, 0)
for i = 1 : n
xstring(x(i), y(i), string(i))
end
k = 0
for i = 1 : n
for j = i : n
if a(i, j) == 1
k = k+1
b(k, 1) = i
b(k, 2) = j
end
end
end
m = k
for k = 1: m
plot2d([x(b(k, 1)), x(b(k, 2))], [y(b(k, 1)), y(b(k, 2))], 1)
end
global('pre', 'pos', 'npre', 'npos', 'ordemdfs', 'ordem')
pre = zeros(1, n)
pos = zeros(1, n)
ordem = zeros(1, n)
npre = 1
npos = 1
dfs(a, 1)
disp(ordem, 'ordem')
endfunction
function dfs(a, v)
global('pre', 'pos', 'npre', 'npos', 'ordem')
pre(v) = npre;
ordem(npre) = v
npre = npre+1
for i = 1: n
if a(v, i) == 1 && pre(i) == 0
dfs(a, i)
end
end
pos(v) = npos;
npos = npos+1
endfunction
|
7459996584d7649e2380219983b7e721d8e545c5 | 907fed355293a1356a8a0557803e2f817aa8f59c | /macro/surfaceFeatureExtract.sci | 0a33f64f43632eb3976e02fa8c4c73d5dc86c389 | [] | no_license | aakash30jan/OpenFOAM-toolbox | e4e29ce573b570667279c13551b5f1efed3fff2f | 0c6e32b622f8b58f0d2cdebafb34e2982fe7c186 | refs/heads/master | 2021-04-09T15:27:03.435814 | 2017-08-24T19:48:49 | 2017-08-24T19:48:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sci | surfaceFeatureExtract.sci | function surfaceFeatureExtract()
Toolbox_Path = getenv('Toolbox_Path')
unix('cp -r '+ Toolbox_Path + '/etc .')
setenv('LD_LIBRARY_PATH',Toolbox_Path+'/src/')
setenv('WM_PROJECT_DIR',dir)
unix_w(Toolbox_Path+'/src/surfaceFeatureExtract')
unix('rm -rf ./etc')
endfunction
|
b06959b2bedc8cf3bc5635b0d1520464d491c1f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH11/EX11.16/11_16.sce | 9dd8bed15cbc32198b8cb7f63f1b506d0b2a5cd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 541 | sce | 11_16.sce |
clc
//initialisation of variables
f= 0.009
dc= 3.5 //in
ds= 6 //in
r= 0.25
sl= 8 //ft
d= 2.5 //in
l= 14 //ft
el= 8 //ft
ed= 22.5 //in
ph= 4 //ft
g= 32.2 //ft/sec^2
f= 0.009
//CALCULATIONS
BC= el+l
v= sqrt(BC*g/(l*(d/2)*(r)*(dc/d)^2))*9.55
x=poly(0,"x")
vec=roots(2*x^2+(1/r)*x-1)
H= vec(2)
H1= acosd(0.225)
MV= sqrt(BC*g/(l*(d/2)*(r)*(dc/d)^2))*r*(sind(H1)+(sind(2*H1)/8))
mvp= MV*dc^2/d^2
hf= 4*f*(sl+l)*mvp^2/(2*g*(d/12))
//RESULTS
printf ('pump speed = %.1f r.p.m',v)
printf ('\n Friction head = %.3f ft',hf)
|
0376f87a38fe114307f4a5ce210c7ac118cea62b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2627/CH3/EX3.3/Ex3_3.sce | 64fd2c9b4df6277efb89515f883906c9a6b6fea6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | Ex3_3.sce | //Ex 3.3
clc;clear;close;
format('v',6);
//v=141.4*sin(377*t)
Vm=141.4;//V
V=Vm/sqrt(2);//V(rms voltage)
disp(V,"(a) r.m.s. Voltage(V)");
omega=377;//rad/s
f=omega/2/%pi;//Hz
disp(f,"(b) Frequency(Hz)");
t=3*10^-3;//seconds
v=141.4*sin(377*t);//V
disp(v,"(c) Instantaneous Voltage(V)");
|
d2c8973d8a914c9fbd413a4552ef1602b4d81ab4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH1/EX1.9.b/ex_1_9_b.sce | 334c42792a396daf8f6a0709946b315635e578c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex_1_9_b.sce | // Example 1.9.b. deflection factor
clc, clear
// given :
Mo=2.4; // magnitude of output response in mm
Mi=6; // magnitude of input in ohm
D=Mi/Mo;
disp(D,"deflection factor = (ohm/mm)")
|
6454686ce3bca5091ddd78e5fe76bc2d1410e05d | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/macrocab_fgota1.sce | 73b7a490dd28864fe8535cef78246fafdf9cd6f5 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | macrocab_fgota1.sce | style.fontSize=12;
//style.fillColor="green";
style.displayedLabel="<table> <tr> <td><b>In(+)<br>In(-)</b></td> <td align=center>FGOTA1<br><b color=green>%1$s</b></td> <td align=left><b>Out</b></td> </tr> </table>";
pal11 = xcosPalAddBlock(pal11,"macrocab_fgota1",[],style);
|
772c8182e22c6b9645ee42833f347379d40a44cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH2/EX2.12/2_12.sce | cdd3a7a43aa4a6b0be8a528018ee64b672fc5054 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 442 | sce | 2_12.sce | //Problem 2.12: The current/voltage relationship for two resistors A and B is as shown in Figure 2.5. Determine the value of the resistance of each resistor.
//initializing the variables:
I1 = 0.020; // in ampere
V1 = 20; // in Volts
I2 = 0.005; // in ampere
V2 = 16; // in Volts
//calculation:
R1 = V1/I1
R2 = V2/I2
printf("\n\nResult\n\n")
printf("\nResistance(R1): %.0f Ohms",R1)
printf("\nResistance(R2): %.0f Ohms\n",R2) |
7e4d2573df57e286120df52732182d3523d76d58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3862/CH2/EX2.24/Ex2_24.sce | 1d8eca54197be819cc7f03f7fa20b581c695a0b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 799 | sce | Ex2_24.sce | clear
//
//variable declaration
PB=200.0 //Vertical loading at B,N
PD=250.0 //Vertical loading at D,N
thetabc=30.0*%pi/180.0
thetabd=60.0*%pi/180.0
thetaed=45.0*%pi/180.0
//Free body diagrams of points B and D . Let the forces in the members be as shown in the figure. Applying Lami’s theorem to the system of forces at point D,
T1=PD*sin(%pi-thetabd)/sin(thetaed+(%pi/2)-thetabd)
T2=PD*sin(%pi-thetaed)/sin(thetaed+(%pi/2)-thetabd)
printf("\n T1= %0.2f N",T1)
printf("\n T2= %0.2f N",T2)
//sum of vertical Fy & sum of horizontal forces Fx is zero
//Assume direction of Fx is right
//Assume direction of Fy is up
T3=(PB+T2*cos(thetabd))/cos(thetabc)
printf("\n T3= %0.2f N",T3)
T4=(T2*sin(thetabd))+T3*sin(thetabc)
printf("\n T4= %0.2f N",T4)
|
740d56e31cb54f26ecffe82712d58817d76c35f7 | 5f7db0f5a3737b6f6f934652d16e58d80745927a | /ode11/reva.tst | 9b206e3371af088e2ca60018366a9a4c6dc8e8d7 | [] | no_license | karttu/PDP-11-assembly-snippets-and-ODE11-emulator-for-MS-DOS | c973a243e0fd850ac4ccdca800a6f7092dfde252 | 25ad34a97139d0860d87e16cefedce3676961b5b | refs/heads/master | 2020-05-18T02:31:15.589768 | 2019-04-29T17:56:11 | 2019-04-29T17:56:11 | 184,117,766 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | tst | reva.tst | 012701
003000
004737
001164
020127
000002
103411
012702
003000
010203
060103
111200
114322
110013
020203
103773
012701
003000
004767
123727
003000
000100
001350
000240
000000
000000
010146
105737
177560
100375
113700
177562
110021
120027
000015
001367
105041
162601
000207
000240
000240
000240
105737
177564
100375
112137
177566
001372
000207
000240
000000
000000
|
6778554eb31e9798ada176d6167f4a2c731d90bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH10/EX43.1/43.sce | 4847887457086d35cc956d681a440d77241ee566 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | 43.sce | clc
//initialisation of variables
d=125//mm
D=2000//mm
n=240//rpm
t=60*1000//mm/sec
//CALCULATIONS
V=%pi*D*n/t//m/sec
V1=V*(d/D)//m/sec
an=2*(V)^2/2//m/sec^2
//RESULTS
printf('the paripheral velocity=% f m/sec^2',an)
|
cc51766fd9eb2e1ebb945846687a63328dde07e0 | 663b86328ceb7527ec030bd1e6d37860da115744 | /finite-volume-methods/src/burgers/lax_friedrichs/my_plot-diff.sce | f6fe67198bae345653d594d0dd22b4cb84269272 | [] | no_license | MLasserre/lab-internships | 4bfb6fc9a6af0459626a2912ab5cb32bb5a7d4e9 | 666cbd620c696714c64f2947f7ee819d8ff837fc | refs/heads/master | 2022-12-16T14:59:24.818197 | 2020-09-18T15:31:13 | 2020-09-18T15:31:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 553 | sce | my_plot-diff.sce | unit1 = file('open', "lax-friedrichs.dat", 'old')
infos = read(unit1, 1, 7)
n = infos(1) // nb de points en x
m = infos(2) // nb de points calcules en temps
x_left = infos(3)
x_right = infos(4)
t_f = infos(5)
x_step = infos(6)
t_step = infos(7)
approx= read(unit1, -1, n)';
m = size(approx, 2) // en cas d'arret premature
// taux d'echantillonnage en temps
pech = m/10
x=linspace(x_left,x_right,n)';
file('close', unit1)
xset("window", 1)
//xbasc(1)
xtitle("Burgers : schema de Lax-Friedrichs", "position (x)", "u(x,t)")
plot2d(x, approx(:, 1:pech:m))
|
ee2685da28f88e48e63958f78807ae6246ad4bba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2921/CH12/EX12.4/Ex12_4.sce | 6e4981960e8ced52124f921aa576bdcc3d44db2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sce | Ex12_4.sce | clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-12.4 Page No.262\n');
//Dynamic load
Vm=1129;
Ft=146;
Fd=(600+Vm)*Ft/600;
mprintf('\n Dynamic load = %f lb.',Fd);
Fs=1900;
Nsf=2;
//Comparing to the allowable stress
if (Fs/Nsf)>Fd then
mprintf('\n This is an acceptable design.');
end
|
8ed8528b2ae31c3e9820fbae47d475c103c732d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH8/EX8.10.a/data8_10.sci | 395f2245f282faf6da11e276c71a30ca971f1c3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sci | data8_10.sci |
//(Welded and Riveted Joints) Example 8.10
//Refer Fig. 8.25 on page 287
//Eccentric force acting on the welded connection P (kN)
P = 60
//Permissible shear stress for the weld tau (N/mm2)
tau = 100
//Width of the plate w (mm)
w = 100
//Length of the transverse welds l (mm)
l = 50
//Force eccentricity e (mm)
e = 150 + (l/2)
|
b82f78770fd7567efc835b076d63e1ccdea5ef1c | 449d555969bfd7befe906877abab098c6e63a0e8 | /50/CH4/EX4.15/ex_4_15.sce | be43049263c0cb28014f4c4a2130af5910c30346 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | ex_4_15.sce | // example 4.15:
// obtain the interpolate using backward differences polinomial
xL=[.1 .2 .3 .4 .5 ]'
f=[1.4 1.56 1.76 2 2.28]'
n=2;
// hence;
disp('P=1.4+(x-.1)*(.16/.1)+(x-.5)*(x-.4)*(.04/.02)')
disp('P=2x^2+x+1.28');
// 1) obtain the interpolate at x=0.25;
x=0.25;
[P]=NBDP(x,n,xL,f);
P
disp('f(.25)=1.655');
// 2) obtain the interpolate at x=0.35;
x=0.35;
[P]=NBDP(x,n,xL,f);
P
disp('f(.35)=1.875'); |
67e919cb0526f8aaaa07d3a6797c373b1cdb3770 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set11/s_Fundamentals_Of_Thermodynamics_B._Claus_And_R._E._Sonntag_172.zip/Fundamentals_Of_Thermodynamics_B._Claus_And_R._E._Sonntag_172/CH4/EX4.4/ex4.sce | 299a91b55246816f3345134c32063cae166c1f34 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 293 | sce | ex4.sce | errcatch(-1,"stop");mode(2);//example 4
//calculating work done
v1=0.35411 //specific volume at state 1 in m^3/kg
v2=v1/2
m=0.1 //mass of water in kg
P1=1000 //pressure inside cylinder in kPa
W=m*P1*(v2-v1) //in kJ
disp('hence,the work in the overall process is -17.7 kJ')
exit();
|
b6df198550052848e19e605dd1c7fd21933ccf58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH4/EX4.19/Ex4_19.sce | c5d310052fd226dce76ca938fbffa09ee4fa71fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | Ex4_19.sce | clc
// from figure 4.17
d = 19 // depth of cut in mm
D1 = 5 // diameter of round bar in cm
v = 50 // cutting speed in m/min
n = 8 // number of teeth
f = 0.2 // feed in mm/tooth
l = 2*sqrt(d*D1*10 - d^2) // length of chord in mm
D2 = 10 // daimeter of cutter in cm
overrun = sqrt(D2*10*d+D1*10*d-d^2) - sqrt(D1*10*d-d^2)// mm
tt = l + overrun // table travel in mm
N = (1000*v)/(%pi*D2*10) // r.p.m
tm = tt/(f*n*N) // time in min.
printf("\n The milling time = %0.2f min." , tm )
|
9d30c4a61a9cf5d5f3075dd7d47353d7dda786ab | b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf | /TD4/Scripts/Service 1/serveur1_base.sce | fc41595ab122edf0a2a29a9c07c820229618161d | [] | no_license | MFrizzy/Modelisation | 51794b2edf421f9d2206cb73972d8d8d7b1e9759 | 0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb | refs/heads/master | 2021-08-29T12:02:20.042037 | 2017-12-13T22:39:21 | 2017-12-13T22:39:21 | 106,943,303 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 579 | sce | serveur1_base.sce | // Extraction des temps de service
index_bool = ( data(:, 3) = 1 )
tabS1 = data(index_bool, :)
t_s1 = tabS1(1:$,4)
extremesS1 = [min(t_s1), max(t_s1)] // calcul du min et du max
moyenneS1 = mean(t_s1) // calcul de la moyenne
medianeS1 = perctl(t_s1,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
vS1 = variance(t_s1)
sS1 = stdev(t_s1)
// calcul de l'étendue
etendueS1 = extremesS1(2) - extremesS1(1)
Q1S1 = perctl(t_s1, 25) // premier quartile
Q3S1 = perctl(t_s1, 75) // troisième quartile
IQS1 = Q3S1(1) - Q1S1(1) // intervalle interquartile
|
e1d09b72647448d43317dbcb31103c031dd14a66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH6/EX6.10/example6_10_TACC.sce | d295ee7544ba34288e2f45e6abcbf82521d55feb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 530 | sce | example6_10_TACC.sce | //example 6.10
clear;
clc;
//Given:
m1=0.03;//mass of CO2(g)[gm]
w1=44.01;//molecular weight of CO2(g)[gm/mol]
m2=250;//mass of water[gm]
w2=18.02;//molecular weight of water[gm/mol]
k=1.25*10^6;//Henry's law constant[Torr]
T=298;//Temperature[K]
//To find the partial pressure of CO2 gas
n1=m1/w1;//no. of moles of CO2
n2=m2/w2;//no. of moles of water
x1=n1/(n1+n2);//mole fraction of CO2
Pco2=k*x1;//Partial pressure of CO2[Torr]
printf("The partial pressure of CO2 gas is %f Torr",Pco2);
|
a50e4b7102474b958007f073b801cad1ae007ff1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH2/EX2.22/EX_2_22.SCE | e53d64dbc1286410d8bc58aaee51b62ca8a0b431 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | EX_2_22.SCE | // Example 2.22: Collector to emitter bias voltage
clc;
clear;
close;
Vcc=20;// Colector voltage in volts
Beta=100;//Common emitter D.C. Current gain
Rc=2;// Collector resistance in killo ohms
Rb= 100;// in kilo ohms
Vbe=0.7;// Base to emitter voltage in volts
Ic=10; //in milli amperes
Ib=Ic/Beta;//in milli ampere
Vce= Vbe+(Ib*Rb); //Colector to emitter voltage in volts
disp(Vce,"Colector to emitter voltage In Volts")
disp (Ib,"Base current in milli Ampere")
|
315fa4b2a2197e2d293bb286ba1ad6942fb1ec0a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH3/EX3.9/exa_3_9.sce | a64fae3c867981a7d408cc7a641919459760dba3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 727 | sce | exa_3_9.sce | // Exa 3.9
clc;
clear;
close;
// Given data
nita= 2;
T1= 25;// in °C
T2= 150;// in °C
k= 8.62*10^-5;
V_T150= k*(T2+273);// in V
V_T25= k*(T1+273);// in V
V= 0.4;// in V
// Io150= Io25*2^(T2-T1)
Io150byIo25= 2^((T2-T1)/10);
I150byI25= Io150byIo25 *( %e^(V/(nita*V_T150))-1)/( %e^(V/(nita*V_T25))-1);
disp(I150byI25,"The factor by which the current will get multiplied when its temperature is raised from 25°C to 150°C is : ")
// Note : There is some difference between coding and the answer of the book because in the book the values of ( Io150byIo25, V_T150, V_T25 )
// are putted (respectively 5800, 0.0364, 0.026) whereas the accurate values of these are
// 5792.6188 , 0.0364626 and 0.0256876
|
bd7fe474911cffd2adc12f1ae69041570bb72102 | be96e52def8294f354d9eb84ba5fd00c3306a984 | /Templates/ContextTemplate.tst | 0d59faad4bb6b882dab101d5a334f9d9acad639d | [
"MIT"
] | permissive | FuryTechs/FuryTech.OdataTypescriptServiceGenerator | e6177564000a74e38e34bf82bd311a8d075b2a33 | 234c226ebe8a2faeb4f4661d2acca7bbeeb54e95 | refs/heads/master | 2023-04-28T06:05:05.934471 | 2023-04-18T05:34:27 | 2023-04-18T05:34:27 | 76,648,222 | 18 | 11 | MIT | 2023-04-18T05:34:28 | 2016-12-16T11:22:28 | TypeScript | UTF-8 | Scilab | false | false | 244 | tst | ContextTemplate.tst | //
export class ODataContext {
public static MetadataPath = '$metadataPath$';
public static ODataRootPath = '$odataRootPath$';
public static CreationDate = '$CreationDate$';
public static ODataVersion = '$ODataVersion$';
}
|
fb33d185e3ca4edc0768f61c2d6070716e023169 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH10/EX10.4/10_4.sce | 4b70c37e09e665924cd28c5bacb18e2e548a4bff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,136 | sce | 10_4.sce | clc
clear
//Input data
m=20000;//The storage capacity of fish in a storage plant in kg
T1=298;//Supplied temperature of fish in K
T2=263;//Temperature of cold storage in which fish are stored in K
T3=268;//Freezing point of fish in K
Caf=2.95;//Specific heat of fish above freezing point in kJ/kg K
Cbf=1.25;//Specific heat of below freezing point in kJ/kg K
W=75;//Work required by the plant in kW
TR=210;//One tonne refrigeration in kJ/min
hfg=230;//Latent heat of fish in kJ/kg
//Calculations
COPr=T2/(T1-T2);//COP of reversed carnot cycle
COPa=0.3*COPr;//Given that actual COP is 0.3 times of reversed COP
Hr=(COPa*W)*60;//Heat removed by the plant in kJ/min
C=Hr/TR;//Capacity of the plant in TR
Q1=m*Caf*(T1-T3);//Heat removed from the fish above freezing point in kJ
Q2=m*Cbf*(T3-T2);//Heat removed from fish below freezing point in kJ
Q3=m*hfg;//Total latent heat of the fish in kJ
Q=Q1+Q2+Q3;//Total heat removed by the plant in kJ
T=(Q/Hr)/60;//Time taken to achieve cooling in hrs
//Output data
printf('(a)Capacity of the plant is %3.2f TR\n (b)Time taken to achieve cooling is %3.2f hours',C,T)
|
d4a3faef49e2ddaed7d038a65522e611ce576355 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH3/EX3.2/Ex3_2.sce | 18a7deeeaee5b08a4fd0ff48bff0788181a13761 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 786 | sce | Ex3_2.sce |
clear//
//Variable Declaration
Ga=4*10**6 //Bulk modulus of Aluminium in psi
Gs=12*10**6 //Bulk Modulus of Steel in psi
T=10**4 //Torque in lb.in
L1=3 //Length in ft of the Steel bar
L2=6 //Length in ft of the Aluminium bar
d1=3 //Diameter of the Aluminium bar in inches
d2=2 //Diameter of the Steel bar in inches
//Calculations
//Using Compatibility and equlibrium conditions
a=([[1,1;(L1*32)/(Gs*%pi*d2**4),-((L2*32)/(Ga*d1**4*%pi))]])
b=([T;0])
y=linsolve(a,b)
//Stresses
t_max_st=(16*-y(1))/(%pi*d2**3) //Max shear Stress in Steel in psi
t_max_al=(16*-y(2))/(%pi*d1**3) //Max shear stress in aluminium in psi
printf("\n The maximum values of Shear Stresses are as follows")
printf("\n %0.1f psi in Steel and %0.1f psi in aluminium",(t_max_st),t_max_al)
|
87fcde0614135bd3130cfdac419cfeec4add48f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH4/EX4.30/Ex4_30.sce | f8cb031c18ef2f9d957a27c71d08cf21bd2c0f02 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | Ex4_30.sce | clc
//Variable Initialisation
Ra=0.08//Armature resistance in ohm
T=300//Torque in N-m
N=1000//Rated Speed of Motor in rpm
Rf=12//Field Winding Resistor in ohm
//Solution
Eb=poly(0,'Eb')
W=2*%pi*N/60
Pd=T*W
Ea=Eb-((Pd*Ra)/Eb)
If=20//From previous Example
Ea1=Rf*If
Eb1=250//From previous Example
Ia=(Eb1-Ea1)/Ra
If1=Ea1/Rf
Ir=Ia-If
Rb=Ea1/Ir
printf('\n\n Braking Resistance=%0.1f ohm\n\n',Rb)
|
5873ebf038cbbf5e5a09f6046875d0dce033faca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH3/EX3.25/M_Ex_3_25.sce | a7307b99c2b75a76c87840fa3198b217eff5cbc1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 584 | sce | M_Ex_3_25.sce | clc
//Chapter3: Modulation
//Example3.25, pageno 175
//Given
//em=3sin(2*pi*1000t)+5cos(2*pi*3000t)
//ec=50sin(2*pi*500e3*t)
m1=0.06//(sine wave amplitude/ peak carrier voltage)
m2=0.1//(cosine wave amplitude/ peak carrier voltage)
Vc=50//Carrier voltage
R=50//load resistance
Pc=(Vc^2)/(2*R)//Peak carrier power
Pt=Pc*(1+((m1^2+m2^2)/2))//Total power after modulation
mprintf('Average power is: %f watts',Pt)
F=[0,2.5,1.5,50,1.5,2.5,0]
T=[490,497,499,500,501,503,510]
plot2d3(T,F,5)
xlabel("Freq", "fontsize",3);
ylabel("Amplitude", "fontsize",3, "color", "blue");
|
6c2b44979e8e1d5e846e520e8796da77e08300a2 | 270c239ad1a53c003654a7b02b6ed1e7d2ae17bd | /salt/20300_bkp_old/UMD/Workflow/saltcheck-tests/init.tst | 90e3b9956bd3746f7635132a99e4a73b82bc2aa4 | [] | no_license | smerugumala/SumTFinalBuilds | 8f024c5e2a7cea534789f9d61ddaafbce97b57fd | f75bd81ab050d1a5c71c2af61aaa309b68c0f054 | refs/heads/main | 2023-02-11T22:26:24.576871 | 2021-01-08T12:10:18 | 2021-01-08T12:10:18 | 327,892,208 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | tst | init.tst | {% import "20300/UMD/Workflow/vars.sls" as base %}
check_service_running:
module_and_function: service.status
args:
- mongod
assertion: assertTrue
validate_user_{{ base.percona_user }}:
module_and_function: user.info
assertion_section: shell
args:
- {{ base.percona_user }}
assertion: assertEqual
expected-return: /bin/false
|
affa127ccc4852df65d2aec543a58355e36937ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH17/EX17.24/EX17_24.sce | 58a01b0d942ef19756114a16baa36462f7ede018 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,265 | sce | EX17_24.sce | clc;funcprot(0);//EXAMPLE 17.24
// Initialisation of Variables
v1=0.216;.....................//Gas consumption in m^3/min
pw=75;........................//Pressure of gas in mm of water
t1=290;......................//Temperature of gas in K
ac=2.84;....................//Air consumption in kg/min
br=745;......................//Barometer reading in m of Hg
D=0.25;.....................//Engine bore in m
L=0.475;......................//Engine stroke in m
N=240;........................//Engine rpm
R=287;......................//Gas constant for air in J/kgK
//Calculations
p1=br+(pw/13.6);...................//Pressure of gas in mm of mercury
p2=760;t2=273;.....................//NTP conditions in mm of Hg and Kelvin
v2=(p1*v1*t2)/(t1*p2);...............//Volume of gas used at NTP in m^3
gs=v2/(N/2);.........................//Gas used per stroke in m^3
v=(ac*R*t2)/(1.0132*10^5);...........//Volume occupied by air at NTP in m^3/min
aps=v/(N/2);...........................//Air used per stroke
Va=gs+aps;.....................//Actual volume of mixture in m^3 drawn per stroke at NTP
Vs=(%pi/4)*D*D*L;...............//Swept volume in mm^3
etaV=(Va/Vs);...................//Volumetric efficiency
disp(etaV*100,"Volumetric efficiency (in %):")
|
1870166db1ff844ab9359d43024e0c25c9f54e0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1823/CH2/EX2.5/SolEx2_5.sce | dc2c0fea62ba7357197e6727f968d04bb1f75c18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | SolEx2_5.sce |
//In the circuit D1 and D2 are ideal diodes. Find iD1 and iD2.
//Solved Example Ex2.5 page no 50
clear
clc
printf("\n In the circuit D1 and D2 are ideal diodes. Find iD1 and iD2.")
Vs=5 //V
V2=3 //V
iD2=((Vs-V2)/500)*1000//mA
printf("\n iD2= %d mA",iD2)
|
9da0981b09c996257e8e0bc5621e7ba2b47fb795 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH22/EX22.4/22Ex4.sce | a3d755f2089a29587473b1173093588ceae74eb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | 22Ex4.sce | //chapter 22 Ex 4
clc;
clear;
close;
p=16000; t=3; //since quarterly compounded
r=5;//since quarterly compounded
amount=(p*(1+r/100)^t);
CI=amount-p;
printf("The Compound Interest is Rs. %d",CI);
|
beb4ae5d56451305a35665fad6ffb51e18ff100b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH8/EX8.11/Ex8_11.sce | a1958f4a0d6aad0aed7cce0b03adf52a6902c244 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,236 | sce | Ex8_11.sce | //scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 8.11\n\n\n");
// Chapter 8 : Vapor Power Cycles
// Problem 8.11 (page no. 394)
// Solution
printf("Solution for (a)\n");
//For the rankine cycle,the Mollier chart gives
h4=1505; //Enthalpy //Unit:Btu/lbm
h5=922; //Enthalpy //Unit:Btu/lbm
h6=h5; //Enthalpy //Unit:Btu/lbm
//and at the condenser,
h1=69.74; //enthalpy //Unit:Btu/lbm
nR=(h4-h5)/(h4-h1); //efficiency of rankine cycle
printf("The efficiency of rankine cycle is %f percentage\n\n",nR*100);
printf("Solution for (b)\n");
//Figure 8.16 shows the regenerative cycle.After doing work(isentropically),W lbs of steam are bled from the turbine at 50 psia for each lbm of steam leaving the steam generator,and (1-W) pound goes through the turbine and is condensed in the condenser to saturated liquid at 1 psia.This condensate is pumped to the heater,where it mixes with the extraced steam and leaves as saturated liquid at 50 psia.The required enthalpies are:
//Leaving turbine:
h5=1168; //Btu/lbm at 50 psia
//Leaving condenser:
h7=69.74; //Btu/lbm at 1 psia // is equal to h8 if pump work is neglected
//Leaving heater:
h1=250.24; //Btu/lbm at 50 psia //is equal to h2 if pump work is neglected(saturated liquid)
//A Heat balance around the heater gives
//W*h5 + (1-W)*h7 = 1*h1
W=((1*h1)-h7)/(h5-h7); //Unit:lbm //W lb of steam
printf("W=%f lbm\n",W);
work=(1-W)*(h4-922) + W*(h4-h5); //h5=922 from the mollier chart //Unit:Btu/lbm //The work output
printf("The work output is %f Btu/lbm\n",work);
//Heat into steam generator equals the enthalpy leaving minus the enthalpy of the saturated liquid entering at 50 psia:
qin=h4-h1; //Unit:Btu/lbm //Heat in
n=work/qin; //Efficiency of regenerative cycle
printf("The efficiency of regenerative cycle is %f percentage\n",n*100);
//The efficiency of a regenerative cycle with one open heater is given by
n=1-(((h5-h1)*(h6-h7))/((h4-h1)*(h5-h7))); //efficiency of a regenerative cycle
W=(h1-h7)/(h5-h7); //Unit:lbm //W lb of steam
printf("When the rankine cycle is compared with regenerative cycle,\n");
printf("W=%f lbm and the efficiency of a regenerative cycle with one open heater is given by %f percentage\n",W,n*100);
|
bd76e0f775a752aa31fb80bf27305eb49168f405 | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH7/EX7.11/Example_7_11.sce | 8f5c57dbe5f549da66885aa6518f220098d8bf18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example_7_11.sce | //Caption: Confidence Interval Estimation (when Sample Size is Large)
//Example7.11
//Page215
clc;
Var = 81; //variance of diameter of shafts produced
Std = sqrt(Var); //standard deviation
X = 30;//mean diameter
n = 36;//number of random samples
Alpha = 0.05; //significance level
Alpha = Alpha/2;
StdError = Std/sqrt(n);//standard error
Zstat = standard_normal_zstat(Alpha);//standard normal z statistic
CI = [X-Zstat*StdError,X+Zstat*StdError];
disp(CI,'Confidence level range in mm =')
//Result
//Confidence level range in mm =
//
// 27.06 32.94 |
8102f9c61c2022d8e56b9b79f4ec0a9bdd3b546b | 39c5c468df5e2bde0147a30cf092fc8da3e7ed3e | /UFRGS/calcNumerico/area2/P2_numerico_oberdan/M8 - Minimos_Quadrados/minimos-quadrados-exponencial.sce | 4bdc8533141f6719943b9568ae8ed3f2d0100df4 | [] | no_license | andredxc/Files | 9dffc9fe5f7e923b83035d794dfa15c930cdb898 | e32309b9ab548b829b04be66c2776cf9c9c6656e | refs/heads/master | 2021-06-03T10:44:01.606242 | 2020-09-21T15:39:48 | 2020-09-21T15:39:48 | 107,410,076 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 106 | sce | minimos-quadrados-exponencial.sce | // c*e^()ax)
x=[0:0.1:1];
y=sin(x)+1;
yi=log(y);
A=[ones(11,1) x'];
v=inv(A'*A)*A'*yi'
C=exp(v(1))
a=v(2)
|
6953e3cab650d5bbb67d14f7185f4f67a67c305a | 6a7b4e7f7cf3a38abe4d239fc8b61f0a543f500a | /raices.sce | 2087ac2e4db6469695c6d79ba02e949e8fee465d | [] | no_license | luvitale/calculo-numerico | 43459bc3db413f953e2f2a6f6bc196cc078ea406 | 28a04ff20f019e4ae80818372be412bffa894573 | refs/heads/master | 2020-03-18T12:46:12.456590 | 2018-07-07T03:46:08 | 2018-07-07T03:46:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,834 | sce | raices.sce | function p = biseccion(a, b, f, E)
cotaError = (b - a)/2
p = a + cotaError
while cotaError > E
if(f(p) == 0) then
return;
elseif f(a) * f(p) < 0 then
b = p
else
a = p
end
cotaError = cotaError/2
p = a + cotaError
end
endfunction
function x = newtonRaphson(x0, f, fd, E)
x = x0 - f(x0)/fd(x0)
while abs(x - x0) > E
x0 = x
x = x0 - f(x0)/fd(x0)
end
endfunction
function x = newtonRaphsonConNIteraciones(x0, f, fd, E, N)
i = 1
x = x0 - f(x0)/fd(x0)
while abs(x - x0) > E & i < N
x0 = x
x = x0 - f(x0)/fd(x0)
i = i + 1
end
endfunction
function x = newtonRaphsonConIteracionesHastaErrorMenor(x0, a, b, f, fd, K, L, E)
i = 1
x = x0 - f(x0)/fd(x0)
N = cantidadDeIteracionesNecesariasNewtonRaphson(a, b, K, L, E)
while i < N
x0 = x
x = x0 - f(x0)/fd(x0)
i = i + 1
end
endfunction
function E = errorNewtonRaphsonEnNIteraciones(a, b, K, L, N)
m = K/(2*L)
E0 = b - a
if m * E0 < 1 then
E = (1/m) * (m * E0)^(2^N)
end
endfunction
function E = errorNewtonRaphsonEnNIteracionesConM(a, b, m, N)
E0 = b - a
if m * E0 < 1 then
E = (1/m) * (m * E0)^(2^N)
end
endfunction
function N = cantidadDeIteracionesNecesariasNewtonRaphson(a, b, K, L, E)
m = K/(2*L)
E0 = b - a
if m * E0 then
N = ceil(log(log(E * m) / log(m * E0)) / log(2))
end
endfunction
function n = cantidadDeIteracionesNecesariasNewtonRaphsonConM(a, b, m, E)
E0 = b - a
if m * E0 < 1 then
N = ceil(log(log(E * m) / log(m * E0)) / log(2))
end
endfunction
function b = puntoFijo(b0, g, E)
b = g(b0)
while abs(b - b0) > E
b0 = b
b = g(b0)
end
endfunction
|
505f23c611bc930a9dbf851e4569688dbcc40a44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH4/EX4.16/Ex4_16.sce | 0d9997618dfbb23563b3a6b4f2907030518c1a1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 670 | sce | Ex4_16.sce | clear
//Given
dia_out = 10 //mm- outer diameter of shaft
dia_in = 8 //mm- inner diameter of shaft
c_out = dia_out/2 //mm - outer Radius of shaft
c_in = dia_in/2 //mm - inner radius of shaft
T = 40 //N/mm -Torque in the shaft
//calculations
dia_mean = (dia_out+dia_in)/2
dia_diff = dia_out-dia_in
J = 3.14*((dia_out**4)- (dia_in**4))/32 //mm4
shear_T_max = T*c_out*(10**3)/J // The maximum torsion shear in the shaft
shear_T_min = T*c_in*(10**3)/J // The maximum torsion shear in the shaft
printf("\n The maximum shear due to torsion is %0.2f MPa",shear_T_max)
printf("\n The minimum shear due to torsion is %0.0f MPa",shear_T_min)
|
e2049401198cc97055bc902d9ec2f99d9eac41c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2522/CH19/EX19.9/exm19_9.sce | 29cbad27622832f6b8c330ac80e33eb0c27c31b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 557 | sce | exm19_9.sce | //page no 629
//example no A.9
// ADDITION OF TWO POSITIVE NUMBERS
clc;
//the given numbers are 41H & 54H.
A=hex2dec(['41']);
B=hex2dec(['54'])
Y=A+B;
X=dec2hex(Y);
printf('Sum =')
disp(X);
if Y>255 then // checking the carry flag.
printf('CY=1 \n \n')
else
printf('CY=0 \n \n')
end
if Y>127 then // checking the sign flag.
printf('S=1 \n \n')
else
printf('S=0 \n \n')
end
if Y>0 then // checking the zero flag.
printf('Z=0 \n \n')
else
printf('Z=1 \n \n')
end
|
88e984c6b0ddf666bb664043d42bbc7d54fceb2b | d566bba06eac5fd01c3fce33bf071b090a59c00f | /zerocrossings.sci | 6a884c381b502318c3af0b6dd5a677390bfd7797 | [] | no_license | ShashikiranYadalam/Signal_processing_toolbox | bf583f2592f6155e81d8cdcca8024c5e78e9c1dd | ebe9d76212a1f9b13948e6c84ecd9ecf04f5c454 | refs/heads/master | 2020-03-20T04:14:32.884061 | 2018-06-13T11:14:50 | 2018-06-13T11:14:50 | 137,176,252 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,684 | sci | zerocrossings.sci | function r = zerocrossing (x,y)
//This function estimates the points at which a given waveform crosses the x-axis.
//Estimates the points at which a given waveform y=y(x) crosses the
//x-axis using linear interpolation.
//Calling Sequence
//r = zerocrossing (w, y)
//Parameters
//r: zero crossing points
//y:function y=y(x)...the dependant variable
//x:the independant variable
//Description
//This function estimates the points at which a given waveform y = y(w) crosses the x-axis. It uses linear interpolation.
//Examples
////1.
//x = linspace(0,1,100);
// y = rand(1,100)-0.5;
// x0= zerocrossing(x,y);
//y0=interp1(x,y,x0)
//plot(x,y,x0,y0,'x')
//
//////2.
//x = linspace(0,1,100);
// y = 2*sin(2*%pi*x);
// x0= zerocrossing(x,y);
//ans:
//// x0 = 0. 0.5
//y0=interp1(x,y,x0)
//plot(x,y,x0,y0,'x')
//
x = x(:);y = y(:);
crossing_intervals = (y(1:$-1).*y(2:$ )<= 0);//find for crossing intervals
left_ends = (x(1:$-1)).*(crossing_intervals);
right_ends = (x(2:$)).*(crossing_intervals);
left_vals = (y(1:$-1)).*(crossing_intervals);
right_vals = (y(2:$)).*(crossing_intervals);
mid_points = (left_ends+right_ends)./2;//finding the midpoints of crossing interval
zero_intervals = find(left_vals==right_vals);
retval1 = mid_points(zero_intervals);//finding the set of points where the function crosses the x-axis
left_ends(zero_intervals) = [];
right_ends(zero_intervals) = [];
left_vals(zero_intervals) = [];
right_vals(zero_intervals) = [];
retval2=left_ends-(right_ends-left_ends).*left_vals./(right_vals-left_vals);
r = union(retval1,retval2);//combining both retval1 and retval2 and removing redundancies
endfunction
|
dcacdb0be0b8b9510190f111a49c55e10f813f45 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH2/EX2.7/Ex2_7.sce | aee5ea67452d1102e746248a5e00b771d29b3300 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | Ex2_7.sce | //problem 7 pagenumber 2.91
//given
format(6);
r1=1e3;//ohm
r2=100e3;//ohm
rf1=90e3;//ohm
//determine cmrr
ac=(r2-rf1)/(r1+r2);
ad=(rf1+((((rf1+r1)/r1)*r2)/(r1+r2)))/r1;format(12);
disp( 'CMRR = '+string(ad/(ac)));//no unit
|
8e050a588d154fa39babc6b02469f3083238d918 | 634acbc2dacd007e53af69f91a999eecda0be9a0 | /Coffee.tst | 6ee8a9e742cb23fbfb5a96ecd4b47f2e7c4e5bb2 | [] | no_license | MidnaPeach/Coffeeing | 8b6c2f83aa44f209a60e7455646e83026387a029 | 1981174d7893bd3ccd7332a0acafc2fcf21b7cf2 | refs/heads/master | 2021-01-22T17:14:41.036852 | 2015-04-03T03:48:13 | 2015-04-03T03:48:13 | 33,163,396 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,628 | tst | Coffee.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.idc.ac.il/tecs
// File name: projects/03/a/PC.tst
/*
IN start, temp, empty, carafe;
OUT heat, percolate, addWater, noCarafe;
*/
load Coffee.hdl,
output-file Coffee.out,
compare-to Coffee.cmp,
output-list time%S1.4.1 start%B3.1.6 temp%B3.1.6 empty%B3.1.6 carafe%B3.1.6 heat%B3.1.6 percolate%B3.1.6 addWater%B3.1.6 noCarafe%B3.1.6;
// Start
set start 0,
set temp 0,
set empty 0,
set carafe 0,
tick,
output;
tock,
output;
set start 1,
tick,
output;
tock,
output;
set temp 1,
tick,
output;
tock,
output;
set temp 0,
set carafe 1,
set empty 1,
tick,
output;
tock,
output;
set carafe 0,
tick,
output;
tock,
output;
set carafe 1,
set empty 0,
tick,
output;
tock,
output;
set temp 0,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set start 0,
set temp 1,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set empty 1,
tick,
output;
tock,
output;
set empty 0,
tick,
output;
tock,
output;
set start 1,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set carafe 0,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set carafe 1,
tick,
output;
tock,
output;
set carafe 0,
tick,
output;
tock,
output;
set empty 1,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set start 0,
tick,
output;
tock,
output; |
bcb1cd3b6e77d867241468ceb3d52e49a4161384 | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH2/EX2.40/Example2_40.sce | d92ecb1c073c099c12564b00a405c9171a442e24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example2_40.sce | //Example 2.40
//To find input x(n)
//h(n)=1 2 3 2, y(n)=[1 3 7 10 10 7 2]
clear;
clc ;
close ;
z=%z;
a=z^6+3*(z^(5))+7*(z^(4))+10*(z^(3))+10*(z^(2))+7*(z^(1))+2;
b=z^6+2*z^(5)+3*z^(4)+2*z^(3);
x =ldiv(a,b,4);
disp (x,"x(n)="); |
13ebcadce79f8d4c6ba923ae91682dcc3842aba9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH5/EX5.17/5_17.sce | 0ea28b0aa25e195685d6fc3c880a6e4543985d14 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 450 | sce | 5_17.sce | // Equivalent resistance and leakage reactance wrt primary
clc;
clear;
P=1200;
V=60;
I1=100;
R1eq=P/(I1^2);
Zeq=V/I1;
X1eq=sqrt((Zeq^2)-(R1eq^2));
// Secondary short circuited there the parameters calculated are wrt to primary itself
printf('Equivalent Resistance of the transformer w.r.t primary = %g ohms \n',R1eq)
printf('Leakage Reactance of the transformer w.r.t primary = %g ohms \n',X1eq)// Text Book Error Please note
|
bb25bac36755e07e4804cf4c841351113cf06a97 | 40689a68c18f23db020f48c2aa4cb188d51f5c0e | /Rnwood.Smtp4dev/ClientApp/src/ApiClient/Template.tst | f17b61d60534a1f6c4baa111f19da15acd7bf2c6 | [
"BSD-3-Clause"
] | permissive | rnwood/smtp4dev | c9153f78879cac503d62adda0efe48f1acbc73ac | 6ab48299ba5567e1b4a1ece89a0f3a0b2a574f9c | refs/heads/master | 2023-07-04T17:53:39.405304 | 2022-10-23T08:09:35 | 2022-10-23T08:09:35 | 3,171,508 | 2,518 | 336 | BSD-3-Clause | 2023-03-06T22:14:06 | 2012-01-13T14:52:22 | C# | UTF-8 | Scilab | false | false | 2,532 | tst | Template.tst | ${
using Typewriter.Extensions.WebApi;
string ReturnType(Method m) => m.Type.Name == "IActionResult" ? "void" : m.Type.Name;
string ParamType(Parameter p) => p.Type.Name.Replace("Delta<", "Partial<");
string ServiceName(Class c) => c.Name;
string Imports(Class c){
List<string> neededImports = c.Properties
.Where(p => !p.Type.IsPrimitive && p.Type.Name.TrimEnd('[',']') != c.Name)
.Select(p => "//" + p.Type.Name + " from " + c.Name + "\nimport " + p.Type.Name.TrimEnd('[',']') + " from './" + p.Type.Name.TrimEnd('[',']') + "';").ToList();
if (c.BaseClass != null) {
neededImports.Add("import " + c.BaseClass.Name +" from './" + c.BaseClass.Name + "';");
}
return String.Join("\n", neededImports.Distinct());
}
string ControllerImports(Class c){
List<string> returnTypeImports = c.Methods
.Where(m => !m.Type.IsPrimitive && !m.Type.Name.Contains("void") && m.Type.Name != "IActionResult")
.Select(p => "import " + p.Type.Name.TrimEnd('[',']') + " from './" + p.Type.Name.TrimEnd('[',']') + "';").ToList();
List<string> paramTypeImports = c.Methods
.SelectMany(m => m.Parameters)
.Where(p => !p.Type.IsPrimitive)
.Select(p => "import " + p.Type.Name.TrimEnd('[',']') + " from './" + p.Type.Name.TrimEnd('[',']') + "';").ToList();
return String.Join("\n", returnTypeImports.Concat(paramTypeImports).Distinct());
}
}
$Classes(c => c.Namespace == "Rnwood.Smtp4dev.ApiModel")[$Imports
export default class $Name$TypeParameters {
constructor($Properties(p => !p.Attributes.Any(a => a.Name.Contains("JsonIgnoreAttribute")))[$name: $Type, ]) {
$Properties(p => !p.Attributes.Any(a => a.Name.Contains("JsonIgnoreAttribute")))[
this.$name = $name;]
}
$Properties(p => !p.Attributes.Any(a => a.Name.Contains("JsonIgnoreAttribute")))[
$name: $Type;]
}]
$Classes(*Controller)[$ControllerImports
import axios from "axios";
export default class $ServiceName {
constructor(){
}
$Methods[
// $HttpMethod: $Url
public $name_url($Parameters(p => p.Type.IsPrimitive)[$name: $Type][, ]): string {
return `$Url`;
}
public async $name($Parameters[$name: $ParamType][, ]): Promise<$ReturnType> {
return (await axios.$HttpMethod(this.$name_url($Parameters(p => p.Type.IsPrimitive)[$name][, ]), $RequestData || undefined)).data as $ReturnType;
}]
}] |
ec09250b6f6d58e7a4ae09fb2aae09ac638ccb33 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/atanm.man.tst | ee60e791ffcda9a5d95d1b84e163511d128899bc | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 39 | tst | atanm.man.tst | clear;lines(0);
tanm(atanm([1,2;3,4]))
|
f4ff3b5e1f7bcd61be82c69e9d2a05d44dc7d7b3 | d4433dc5a6e90f6a26a4c5d9dee686eade240b25 | /KEYTEST1.TST | 075e55763187c7d566521a6980edab57f96b5ba5 | [] | no_license | qb40/all | 6e2149ef3c6151717e468ca236840de622cf7d2a | e168acb64fbde09277b04515574507dcbe35161c | refs/heads/master | 2022-02-05T17:58:39.207269 | 2014-01-19T13:28:41 | 2014-01-19T13:28:41 | 106,962,623 | 5 | 0 | null | 2017-10-14T21:02:04 | 2017-10-14T21:02:03 | null | UTF-8 | Scilab | false | false | 711 | tst | KEYTEST1.TST | DECLARE FUNCTION bin1$ (a%)
DECLARE FUNCTION bin& (a%)
'maxkeys per second = 857 INP(&H60) command
CLS
OPEN "O", #1, "test.log"
DO
k% = INP(&H60) 'recieve key from buffer
PRINT k%, bin1$(k%); "b" 'Print keycode, binary code
PRINT #1, k%, bin1$(k%); "b"
DEF SEG = 0 'stop beep sound
POKE &H41A, PEEK(&H41C) '(by clearing keyboard buffer)
DEF SEG '(Qbasic tip)
IF (k% = 129) THEN EXIT DO
LOOP
CLOSE #1
FUNCTION bin& (a%)
b& = 0
c% = 128
DO
b& = (b& * 10) + SGN((a% AND c%))
c% = c% \ 2
LOOP UNTIL c% = 0
bin& = b&
END FUNCTION
FUNCTION bin1$ (a%)
b& = bin&(a%)
c$ = STR$(b&)
c$ = RTRIM$(LTRIM$(c$))
FOR i = LEN(c$) TO 7
c$ = "0" + c$
NEXT
bin1$ = c$
END FUNCTION
|
9d087ef9d28771bf3a8914255ede4ea21acd9a78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH5/EX5.5/Ex5_5.sce | e3e2a9caca98ebb1dec1657999c7a016e4b10dd5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 631 | sce | Ex5_5.sce | clc;
clear;
lambda1=5016*10^-8 //wavelength in cm
lambda2=5048*10^-8 //wavelength in cm
N=15000 //lines per inch
k=2
//calculation
e=2.54/N //in cm
theta1_degrees= floor(asin((2*lambda1)/e)*(180/%pi)) //degrees part of angle
theta1_minutes=ceil((asin((2*lambda1)/e)*(180/%pi)-theta1_degrees)*60) //minutes part of angle
theta2_degrees = floor(asin((2*lambda2)/e)*(180/%pi)) //degrees part of angle
theta2_minutes=ceil((asin((2*lambda2)/e)*(180/%pi)-theta2_degrees)*60) //minutes part of angle
printf("Angle of separation = %d degrees %d minutes",(theta2_degrees-theta1_degrees),(theta2_minutes-theta1_minutes))
|
17a44b3d03bc0bcee830f13fdb9cdc0131208a8f | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.7_20.tst | 5e579b7131df74228d2a977dbde5438bd03d7de2 | [] | 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 | 510,114 | tst | 5.7_20.tst | 7 284:1 345:1 472:1 1070:1 1309:1 1469:1 1637:1 1754:1 1947:1 1978:1 2010:1 2047:1 2108:1 2114:1 2245:1 2537:1 2611:1 2624:1 2773:2 3096:1 3159:1 3570:1 3998:1 4309:1 4317:1 4425:1 4536:1 4672:1 4688:1 4689:1 5585:1 5912:1 5938:1 6139:1 6166:2 6582:1 7075:1 7151:1 7171:2 7574:1 7595:1 7613:2 8021:1 8186:1 8238:2 8922:1 9202:1 9652:1 9659:1 9755:1 9983:1 9985:1 10293:1 10368:1 10466:1 10928:1 11319:1 11779:1 12062:1 12107:1 12135:1 12188:1 12205:2 12343:2 12535:1 12562:1 12581:1 12706:1 12754:1 13141:1 13240:1 13284:1 13286:1 13868:1 14156:1 14214:1 14488:1 14510:1 14511:1 14799:1 15005:1 15030:1 15325:1 15432:1 15439:1 15463:2 15905:1 16124:1 16373:1 16432:1 16587:1 16622:1 16675:1 16781:1 16979:1 17274:1 17286:76 17290:1 17324:1 17436:1 17451:1 17805:1 18350:2 18399:1 18496:2 18616:2 18664:1 18765:2 19136:1 19346:1 19369:1 19629:1 19650:1 19654:1 19757:1 19920:1 19955:1 19956:1 20077:1 20257:1 20367:1 20454:1 20732:1 20771:1 20799:1 20841:1 20847:1 20848:2 20908:1 21047:1 21574:1 21603:1 21662:1 21674:1 22268:1 22292:1 22363:1 22642:1 22710:1 22727:1 22929:1 23144:1 23189:1 23719:1 23935:1 24080:1 24186:1 24401:1 24536:1 24936:1 25006:1 25038:1 25118:1 25351:1 25392:1 25956:1 26816:1 26937:1 26966:1 26985:1 27136:1 27153:1 27198:1 27237:1
7 8:1 284:1 345:1 459:1 472:1 1070:1 1108:1 1309:1 1315:1 1362:1 1469:1 1637:1 1691:1 1725:1 1754:1 1906:1 1947:1 1978:1 2010:1 2017:1 2047:1 2108:1 2114:2 2130:1 2146:1 2154:1 2245:1 2468:1 2537:1 2551:1 2611:1 2624:1 2637:1 2773:2 3066:1 3096:1 3159:1 3198:1 3570:1 3816:1 3998:1 4173:1 4309:1 4317:1 4362:2 4386:1 4425:1 4536:1 4558:1 4672:1 4688:1 4689:1 4999:1 5012:1 5014:1 5319:1 5585:1 5614:1 5669:1 5912:1 5938:1 5960:1 6139:1 6166:2 6582:2 6833:1 7058:1 7065:1 7075:1 7151:5 7171:2 7226:1 7574:1 7595:1 7613:2 7644:1 8021:1 8186:1 8238:2 8371:1 8443:1 8738:2 8922:2 8923:1 8936:1 8991:1 9090:1 9191:1 9202:1 9459:1 9652:1 9659:1 9755:1 9840:1 9897:1 9983:1 9985:1 10293:1 10368:1 10466:1 10860:1 10928:1 11025:1 11078:1 11273:1 11319:1 11779:1 11946:1 12062:1 12083:1 12107:1 12135:1 12188:1 12205:2 12263:1 12343:2 12535:1 12562:1 12581:1 12698:1 12706:1 12754:1 13141:1 13240:1 13265:1 13284:1 13286:1 13412:1 13557:1 13578:1 13585:1 13868:1 14044:1 14156:1 14214:1 14288:1 14488:1 14510:1 14511:1 14585:1 14799:1 15005:1 15030:1 15141:1 15201:1 15325:1 15432:1 15439:1 15463:2 15668:1 15673:1 15745:1 15791:1 15905:1 16046:1 16068:1 16086:1 16124:1 16373:1 16432:1 16587:1 16622:1 16675:1 16781:1 16979:1 17083:1 17156:1 17274:1 17286:143 17290:1 17324:1 17436:1 17451:1 17805:1 17973:1 18350:2 18399:1 18496:2 18616:2 18661:1 18664:1 18765:2 19136:1 19155:1 19335:1 19346:1 19369:1 19629:1 19650:1 19654:1 19757:1 19920:1 19955:1 19956:1 20036:1 20077:2 20147:1 20257:1 20367:1 20454:1 20485:1 20507:1 20575:1 20732:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20972:1 21020:1 21047:1 21146:1 21251:1 21401:1 21574:1 21603:1 21662:1 21674:1 21986:1 22268:1 22292:1 22317:1 22363:1 22633:1 22642:1 22710:1 22727:1 22875:1 22879:1 22929:1 23144:1 23189:1 23341:2 23406:1 23444:1 23638:1 23719:1 23751:1 23935:1 24080:1 24122:1 24186:1 24247:1 24315:1 24321:1 24368:1 24401:1 24536:1 24591:1 24936:1 25006:1 25038:1 25118:1 25351:1 25392:1 25397:1 25450:1 25695:1 25900:1 25956:1 26219:1 26439:1 26487:1 26816:1 26937:1 26966:1 26985:1 27136:1 27153:1 27198:1 27235:2 27237:1
7 8:1 163:1 284:1 345:1 459:1 472:1 673:1 1070:1 1108:1 1251:1 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:1 1529:1 1637:1 1691:1 1725:1 1754:1 1906:1 1947:1 1978:1 2010:1 2017:1 2047:1 2108:1 2114:2 2130:1 2146:1 2154:1 2156:1 2205:1 2245:1 2384:1 2468:1 2537:1 2551:1 2592:1 2611:1 2615:1 2624:1 2637:1 2773:2 3066:1 3096:1 3126:1 3159:1 3198:1 3460:1 3570:1 3816:1 3928:1 3998:1 4068:1 4173:1 4309:1 4317:1 4362:2 4386:1 4425:1 4536:1 4558:1 4672:1 4688:1 4689:1 4880:1 4999:1 5012:1 5014:1 5307:1 5319:1 5585:1 5614:1 5669:1 5912:1 5938:1 5952:1 5960:1 6098:1 6139:1 6166:2 6241:1 6582:2 6653:1 6833:1 6911:1 7058:1 7065:1 7075:1 7151:6 7171:2 7226:1 7461:1 7487:1 7574:1 7595:1 7613:2 7644:1 7707:1 8021:1 8170:1 8186:1 8238:2 8371:2 8443:1 8738:2 8922:2 8923:1 8936:1 8961:1 8991:1 9090:1 9191:1 9202:1 9459:1 9652:1 9659:1 9728:1 9740:1 9755:1 9840:1 9897:1 9983:1 9985:1 10179:1 10293:1 10368:1 10466:1 10860:1 10901:1 10928:1 11025:1 11078:1 11273:1 11319:1 11779:1 11946:1 12062:1 12063:1 12083:1 12107:1 12135:1 12188:1 12205:2 12263:1 12343:2 12535:1 12562:1 12581:1 12698:1 12706:1 12754:1 13141:1 13240:1 13265:1 13284:1 13286:1 13412:1 13440:1 13557:1 13578:1 13585:1 13868:1 14044:1 14156:1 14214:1 14244:1 14288:1 14304:1 14344:1 14488:1 14510:1 14511:1 14585:1 14702:1 14726:1 14799:1 14990:1 15005:1 15030:1 15141:1 15201:1 15292:1 15325:1 15432:1 15439:1 15463:2 15668:1 15673:1 15745:1 15791:1 15800:1 15905:1 16046:1 16068:1 16086:1 16124:1 16373:1 16432:1 16587:1 16622:1 16675:1 16781:1 16804:1 16979:1 17083:1 17156:1 17274:1 17286:181 17290:1 17324:1 17436:1 17451:1 17805:1 17973:1 18350:2 18399:1 18407:1 18496:2 18616:2 18661:1 18664:1 18765:2 19136:1 19155:1 19200:1 19335:1 19346:1 19369:1 19629:1 19650:1 19654:1 19757:1 19920:1 19955:1 19956:1 20036:1 20077:2 20103:1 20147:1 20257:1 20367:1 20454:1 20485:1 20507:1 20575:1 20732:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20972:1 21020:1 21047:1 21146:1 21251:1 21401:1 21496:1 21574:1 21603:1 21662:1 21674:1 21986:1 22268:1 22292:1 22317:1 22363:1 22633:1 22642:1 22710:1 22727:1 22732:1 22875:1 22879:1 22929:1 23144:1 23189:1 23341:2 23406:1 23444:1 23638:1 23719:1 23751:1 23935:1 24080:1 24122:1 24186:1 24247:1 24315:1 24321:1 24365:1 24368:1 24401:1 24536:1 24591:1 24936:1 25006:1 25038:1 25118:1 25351:1 25388:1 25392:1 25397:1 25450:1 25695:1 25900:1 25956:1 26007:1 26219:1 26405:1 26439:1 26487:1 26530:1 26816:1 26937:1 26966:1 26985:1 27136:1 27153:1 27198:1 27225:1 27235:2 27237:1
7 8:1 163:1 284:1 345:1 437:1 459:1 472:1 673:1 1070:1 1108:1 1251:1 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:1 1529:1 1637:1 1691:1 1725:1 1754:1 1906:1 1947:1 1978:2 2010:1 2017:1 2047:1 2108:1 2114:2 2130:1 2146:1 2154:1 2156:1 2205:1 2220:1 2245:1 2384:1 2468:1 2537:1 2551:1 2592:1 2611:1 2615:1 2618:1 2624:1 2637:1 2706:1 2721:1 2773:3 3066:1 3096:1 3126:2 3159:1 3198:1 3460:1 3570:1 3671:1 3816:1 3928:1 3935:1 3998:1 4009:1 4068:1 4143:1 4173:1 4309:1 4317:1 4362:2 4386:1 4425:1 4536:1 4558:1 4672:1 4688:1 4689:1 4701:1 4715:1 4851:1 4880:1 4971:1 4999:1 5012:1 5014:1 5302:1 5307:1 5319:1 5425:1 5585:1 5614:1 5669:1 5742:1 5912:1 5938:1 5952:1 5960:1 6032:1 6098:1 6139:1 6166:2 6241:1 6330:1 6423:1 6582:2 6653:1 6792:1 6833:1 6911:1 6956:1 6968:1 7058:1 7065:1 7075:1 7151:6 7171:3 7226:1 7461:1 7487:1 7574:1 7595:1 7613:3 7644:1 7707:1 8021:1 8170:1 8186:1 8238:2 8371:2 8443:1 8690:1 8738:2 8844:1 8922:2 8923:1 8936:1 8961:1 8991:1 9090:1 9191:1 9202:1 9364:1 9459:1 9463:1 9554:1 9652:1 9659:1 9728:1 9740:1 9755:1 9839:1 9840:1 9897:1 9983:1 9985:1 10179:2 10293:1 10368:1 10466:1 10578:1 10860:1 10901:1 10905:1 10928:1 10983:1 11017:1 11025:1 11078:1 11273:1 11319:1 11333:1 11779:1 11800:1 11864:1 11946:1 12062:1 12063:1 12083:1 12107:1 12135:1 12188:1 12205:2 12263:1 12325:1 12343:2 12535:1 12562:1 12581:1 12698:1 12706:1 12754:1 12821:1 12999:1 13141:1 13240:1 13265:1 13284:1 13286:1 13412:1 13422:1 13440:1 13557:1 13578:1 13585:1 13713:1 13868:1 14044:1 14079:1 14156:1 14214:1 14244:1 14280:1 14288:1 14304:1 14344:1 14488:1 14510:2 14511:1 14585:1 14702:1 14726:1 14799:1 14990:1 15005:1 15024:1 15030:1 15141:1 15201:1 15244:1 15259:1 15292:1 15325:1 15432:1 15439:2 15463:3 15484:1 15550:1 15668:1 15673:1 15745:1 15791:1 15800:2 15905:1 16046:1 16068:1 16086:1 16124:1 16373:1 16432:1 16587:1 16622:1 16675:1 16781:1 16804:1 16979:2 17083:1 17156:1 17230:1 17274:1 17286:249 17290:1 17324:1 17436:2 17451:1 17520:1 17805:1 17806:1 17893:1 17970:1 17973:1 18350:3 18399:1 18407:1 18435:1 18496:2 18616:2 18661:1 18664:1 18765:3 18983:1 19136:1 19155:1 19200:1 19312:1 19335:1 19346:2 19369:1 19629:1 19650:1 19654:1 19757:1 19920:1 19955:2 19956:1 20036:1 20077:2 20103:2 20147:1 20257:1 20280:1 20367:1 20375:1 20429:1 20441:1 20454:1 20485:1 20507:1 20520:1 20575:1 20732:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20972:1 21020:1 21034:1 21047:1 21146:2 21251:1 21315:1 21401:1 21496:1 21574:1 21603:1 21626:1 21662:1 21674:1 21683:1 21803:1 21986:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22628:1 22633:1 22642:1 22710:1 22727:1 22732:1 22875:1 22879:1 22929:1 23144:2 23189:1 23341:2 23406:1 23444:1 23631:1 23638:1 23719:1 23751:1 23791:1 23818:1 23935:1 23991:1 23994:1 24080:1 24122:1 24186:1 24247:1 24248:1 24315:1 24321:1 24365:1 24368:1 24388:1 24401:1 24536:1 24543:1 24591:1 24592:1 24703:1 24796:1 24828:1 24936:1 24978:1 25006:1 25038:1 25118:1 25351:1 25381:1 25388:1 25390:1 25392:1 25397:1 25419:1 25450:1 25695:1 25796:1 25900:1 25956:2 25976:1 26007:1 26027:1 26029:1 26219:1 26256:1 26399:1 26405:1 26439:1 26475:1 26487:1 26530:1 26531:1 26616:1 26816:1 26937:1 26948:1 26966:1 26985:1 27120:1 27136:1 27153:1 27198:1 27225:1 27235:2 27237:1
7 8:1 163:1 284:1 345:1 413:1 437:1 459:1 472:1 673:2 979:1 1070:1 1108:1 1251:1 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:1 1529:1 1637:1 1691:1 1725:1 1754:1 1826:1 1906:1 1947:1 1978:2 2010:1 2017:1 2047:1 2108:1 2114:2 2124:1 2130:1 2146:1 2154:1 2156:1 2205:1 2220:1 2245:1 2384:1 2468:1 2537:1 2551:1 2592:1 2611:1 2615:1 2618:2 2624:1 2637:1 2706:1 2721:1 2773:3 3066:1 3096:1 3126:2 3159:1 3198:1 3265:1 3388:1 3410:1 3460:1 3470:1 3570:1 3602:1 3671:1 3816:1 3928:1 3935:1 3998:1 4009:1 4068:1 4143:1 4173:1 4309:1 4317:1 4332:1 4362:2 4386:1 4425:1 4454:1 4536:1 4558:1 4561:1 4672:1 4688:1 4689:1 4701:1 4708:1 4715:1 4851:1 4880:1 4971:1 4999:1 5012:1 5014:1 5302:1 5307:1 5319:1 5425:1 5585:1 5614:1 5669:1 5742:1 5912:1 5928:1 5938:1 5952:1 5960:1 6032:1 6098:1 6139:1 6166:2 6241:1 6330:1 6423:1 6582:2 6653:1 6792:1 6833:1 6911:2 6956:1 6964:1 6968:1 7058:1 7065:1 7075:1 7151:7 7171:3 7226:1 7461:1 7487:1 7574:1 7595:1 7599:1 7613:3 7644:1 7707:1 7826:1 8021:1 8036:1 8170:1 8186:1 8238:2 8371:2 8443:1 8493:1 8690:1 8738:2 8844:1 8922:2 8923:1 8936:1 8961:1 8991:1 9090:1 9191:1 9202:1 9226:1 9364:1 9459:1 9463:1 9539:1 9554:1 9652:1 9659:1 9728:1 9740:1 9755:1 9762:1 9789:1 9839:2 9840:1 9897:1 9983:1 9985:1 10179:2 10293:1 10368:1 10466:1 10573:1 10578:1 10860:1 10901:1 10905:1 10928:1 10983:1 11017:1 11025:1 11078:1 11273:1 11319:1 11333:1 11344:1 11644:1 11779:1 11800:1 11856:1 11864:1 11946:1 12062:1 12063:1 12083:1 12107:1 12135:1 12188:1 12205:2 12263:1 12325:1 12343:2 12364:1 12535:1 12562:1 12581:1 12698:1 12706:1 12754:1 12821:1 12999:1 13141:1 13240:1 13265:1 13284:1 13286:1 13412:1 13422:1 13440:1 13447:1 13557:1 13578:1 13585:1 13713:1 13732:1 13868:1 14044:1 14079:1 14150:1 14156:1 14214:1 14244:1 14280:1 14288:1 14304:1 14336:1 14344:2 14488:1 14510:2 14511:1 14585:1 14636:1 14695:1 14702:1 14726:1 14799:1 14932:1 14990:1 15005:1 15024:1 15030:1 15141:1 15201:1 15244:1 15259:1 15292:1 15325:1 15432:1 15439:2 15463:3 15484:1 15550:1 15668:1 15673:1 15745:1 15791:1 15800:2 15905:1 16046:1 16068:1 16086:1 16124:1 16373:1 16432:1 16587:1 16622:1 16675:1 16781:1 16804:1 16979:2 17083:1 17156:1 17230:1 17274:1 17286:281 17290:1 17324:1 17436:2 17451:1 17520:1 17788:1 17805:1 17806:1 17893:1 17970:1 17973:1 18239:1 18350:3 18399:1 18407:1 18435:1 18496:2 18517:1 18616:2 18661:1 18664:1 18765:3 18983:1 19136:1 19155:1 19200:1 19296:1 19312:1 19335:1 19346:2 19369:1 19629:1 19650:1 19654:1 19757:1 19920:1 19955:2 19956:1 20036:1 20077:2 20103:2 20147:1 20257:1 20280:1 20295:1 20367:1 20375:1 20429:1 20441:1 20454:1 20485:1 20507:1 20520:1 20575:1 20647:1 20732:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20972:1 21020:1 21034:1 21047:1 21146:2 21232:1 21251:1 21315:1 21401:1 21496:2 21574:1 21603:1 21626:1 21662:1 21674:1 21683:1 21802:1 21803:1 21981:1 21986:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22628:1 22633:1 22637:1 22642:1 22663:1 22710:1 22727:1 22728:3 22732:1 22875:1 22879:1 22929:1 23144:2 23189:1 23341:2 23406:1 23444:1 23541:1 23631:1 23638:1 23719:1 23751:1 23791:2 23800:1 23818:1 23935:1 23991:1 23994:1 24080:1 24122:1 24141:1 24186:1 24247:1 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24536:1 24543:1 24591:1 24592:1 24673:1 24703:1 24786:1 24796:1 24828:1 24936:1 24978:1 25006:1 25038:1 25118:1 25314:1 25351:1 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25419:1 25450:1 25610:1 25637:1 25695:1 25796:1 25900:1 25956:2 25976:1 26007:1 26027:1 26029:1 26182:1 26219:1 26227:1 26256:1 26399:1 26405:1 26439:1 26475:1 26486:1 26487:1 26530:1 26531:1 26616:1 26816:1 26937:1 26948:1 26966:1 26985:1 27120:1 27136:1 27153:1 27198:1 27225:1 27235:2 27237:1
7 8:1 163:1 284:1 345:1 413:1 437:1 459:1 472:1 565:1 673:2 979:1 1070:1 1108:1 1166:1 1251:1 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:1 1529:1 1637:1 1691:1 1725:1 1754:1 1826:1 1906:1 1947:1 1978:2 2010:1 2017:1 2022:1 2047:1 2108:1 2114:2 2115:1 2124:1 2130:1 2146:2 2154:1 2156:1 2205:1 2220:1 2245:1 2384:1 2468:1 2537:1 2551:2 2592:1 2611:1 2615:1 2618:2 2624:1 2637:1 2706:1 2721:1 2773:3 3066:1 3096:1 3126:2 3159:1 3198:1 3265:1 3380:1 3388:1 3410:1 3460:1 3466:1 3470:1 3570:1 3602:1 3671:1 3816:1 3928:1 3935:1 3998:1 4009:1 4068:1 4143:1 4173:1 4309:1 4317:1 4329:1 4332:1 4362:2 4386:1 4425:1 4454:1 4536:1 4558:1 4561:1 4672:1 4688:1 4689:2 4701:1 4708:1 4714:1 4715:1 4851:1 4880:1 4911:1 4971:1 4999:1 5012:1 5014:1 5235:1 5302:1 5307:1 5319:1 5425:1 5585:1 5614:1 5669:1 5742:1 5787:1 5855:1 5912:1 5928:1 5938:1 5952:1 5960:1 6032:1 6098:1 6139:1 6166:2 6241:2 6330:1 6344:1 6423:1 6523:1 6582:2 6653:1 6792:1 6833:1 6911:2 6956:1 6964:1 6968:1 7058:1 7065:1 7075:1 7151:8 7171:3 7226:1 7411:1 7461:1 7487:1 7574:1 7595:1 7599:1 7613:3 7644:1 7707:1 7826:1 8021:1 8036:1 8170:1 8186:1 8238:2 8322:1 8365:1 8371:2 8443:1 8493:1 8690:1 8738:2 8844:1 8922:2 8923:1 8936:1 8961:1 8991:1 9090:1 9191:1 9202:1 9226:1 9364:1 9413:1 9459:1 9463:1 9511:1 9539:1 9554:1 9652:1 9659:1 9728:1 9740:1 9755:1 9762:1 9786:1 9789:1 9839:2 9840:1 9897:1 9983:1 9985:1 10179:2 10293:1 10368:1 10466:1 10573:1 10578:1 10860:1 10901:1 10905:1 10928:1 10983:1 11017:1 11025:1 11078:1 11207:1 11273:1 11319:1 11333:1 11344:1 11398:1 11644:1 11779:1 11800:1 11856:1 11864:1 11866:1 11916:1 11928:1 11946:1 12062:1 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12356:1 12364:1 12373:1 12535:1 12562:1 12581:1 12698:1 12706:1 12754:1 12773:1 12821:1 12993:1 12999:1 13141:1 13240:1 13265:1 13284:1 13286:1 13305:1 13386:1 13412:1 13422:1 13428:1 13440:1 13447:1 13557:1 13578:1 13585:1 13713:1 13732:1 13747:1 13830:1 13868:1 14044:1 14079:1 14150:1 14156:1 14214:1 14244:1 14280:1 14288:1 14304:1 14315:1 14336:1 14344:2 14488:1 14510:2 14511:1 14513:1 14562:1 14585:1 14636:1 14695:1 14702:1 14726:1 14773:1 14799:1 14932:1 14990:1 15005:1 15024:1 15030:1 15141:1 15201:1 15244:1 15259:1 15292:1 15325:1 15432:1 15439:2 15463:3 15484:1 15550:1 15668:1 15673:1 15682:1 15692:1 15745:1 15791:1 15800:2 15905:1 16046:1 16068:1 16086:1 16091:1 16124:1 16373:1 16432:1 16495:1 16587:1 16622:1 16675:1 16781:1 16804:1 16979:2 17083:2 17156:1 17230:1 17274:1 17286:323 17290:1 17324:1 17436:2 17451:1 17488:1 17520:1 17730:1 17788:1 17805:1 17806:1 17893:1 17970:1 17973:1 18161:1 18239:1 18350:3 18371:1 18399:1 18404:1 18407:1 18435:1 18496:2 18517:1 18534:1 18587:1 18616:2 18661:1 18664:1 18765:3 18983:1 19039:1 19136:1 19155:1 19200:1 19269:1 19296:1 19312:1 19335:1 19346:2 19369:1 19466:1 19510:1 19629:1 19650:1 19654:1 19757:1 19920:1 19948:1 19955:2 19956:1 19994:1 20036:1 20077:2 20103:2 20147:1 20235:1 20257:1 20280:1 20295:1 20310:1 20367:1 20375:1 20429:1 20439:1 20441:1 20454:1 20485:1 20507:1 20520:1 20575:1 20647:1 20655:1 20732:1 20743:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20972:1 21020:1 21034:1 21047:1 21146:3 21232:1 21251:1 21315:1 21365:1 21401:1 21496:2 21574:1 21603:1 21626:1 21662:1 21674:1 21683:1 21802:1 21803:1 21957:1 21981:1 21986:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22611:1 22628:1 22633:1 22637:1 22642:1 22663:1 22710:1 22727:1 22728:3 22732:1 22755:1 22875:1 22879:1 22929:1 23144:2 23189:1 23341:3 23406:1 23444:1 23541:1 23631:1 23638:1 23667:1 23719:1 23751:1 23791:2 23800:1 23818:1 23935:1 23962:1 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:2 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24431:1 24536:1 24543:1 24591:1 24592:1 24673:1 24703:1 24786:1 24796:1 24828:1 24936:1 24978:1 25006:1 25038:1 25114:1 25118:1 25314:1 25351:1 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25419:1 25450:1 25610:1 25637:1 25695:1 25796:1 25835:1 25900:1 25956:3 25976:1 26007:1 26027:1 26029:1 26182:1 26219:1 26227:1 26256:1 26260:1 26329:1 26399:1 26405:1 26439:1 26475:1 26486:1 26487:1 26530:1 26531:1 26616:1 26816:1 26937:1 26948:1 26966:1 26985:1 27114:1 27120:1 27136:1 27153:1 27198:1 27201:1 27225:1 27228:1 27235:2 27237:1 27249:1 27283:1
7 8:1 18:1 163:1 284:1 345:1 413:1 437:1 459:1 472:1 565:1 673:3 979:1 1070:1 1108:1 1162:1 1166:1 1251:1 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:1 1529:1 1637:2 1671:1 1691:1 1725:1 1754:2 1826:1 1906:1 1937:1 1947:1 1978:2 2010:1 2017:1 2022:1 2047:1 2069:1 2108:1 2114:3 2115:1 2124:1 2130:1 2146:2 2154:1 2156:1 2205:1 2220:1 2245:1 2303:1 2384:1 2425:1 2468:1 2537:1 2551:2 2592:1 2611:1 2615:1 2618:2 2624:1 2637:1 2706:1 2721:1 2773:3 2956:1 3066:1 3096:1 3126:2 3159:1 3198:1 3265:1 3380:1 3388:1 3410:1 3460:1 3466:1 3470:1 3563:1 3570:1 3602:1 3671:1 3816:1 3928:1 3935:1 3986:1 3998:1 4009:1 4033:1 4068:1 4143:1 4173:1 4309:1 4317:1 4329:1 4332:1 4362:2 4386:1 4425:2 4454:1 4536:1 4558:2 4561:1 4672:1 4688:1 4689:3 4701:1 4708:1 4714:1 4715:1 4851:1 4880:1 4911:1 4971:1 4999:1 5012:1 5014:1 5036:1 5202:1 5235:1 5302:1 5307:1 5319:1 5362:1 5425:1 5585:1 5614:1 5628:1 5669:1 5742:1 5787:1 5855:1 5912:2 5928:2 5938:1 5952:1 5960:1 5961:1 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6241:2 6330:1 6344:1 6423:1 6523:1 6582:2 6653:1 6792:1 6833:1 6911:3 6956:1 6964:1 6968:1 6983:1 7044:1 7058:1 7065:1 7075:1 7087:1 7151:9 7171:3 7226:1 7411:1 7461:1 7487:1 7574:1 7595:1 7599:1 7613:3 7644:1 7707:1 7822:1 7826:1 7964:1 8021:1 8036:1 8052:1 8123:1 8170:1 8186:1 8209:1 8238:2 8322:1 8365:1 8371:2 8440:1 8443:1 8493:1 8571:1 8690:1 8738:2 8753:1 8844:1 8900:1 8922:2 8923:1 8936:2 8961:1 8991:1 9090:1 9191:1 9202:1 9226:1 9286:1 9334:1 9364:1 9413:1 9426:1 9459:1 9463:1 9511:1 9539:1 9554:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9789:1 9839:2 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10179:2 10187:1 10293:1 10368:1 10466:1 10573:1 10578:1 10600:1 10830:1 10860:1 10876:1 10901:1 10905:1 10928:1 10929:1 10983:1 11017:1 11020:1 11025:1 11078:1 11207:1 11273:1 11319:1 11333:1 11344:1 11398:1 11644:1 11779:1 11800:1 11856:1 11864:1 11866:1 11916:1 11928:1 11946:1 11991:1 12062:1 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12356:1 12364:1 12373:1 12535:1 12562:1 12581:1 12681:1 12698:1 12706:1 12754:1 12773:1 12821:2 12859:1 12993:1 12999:1 13141:1 13181:1 13240:1 13265:1 13284:1 13286:1 13305:1 13386:1 13412:1 13422:1 13428:1 13440:1 13447:1 13557:1 13578:1 13585:1 13593:1 13713:1 13732:1 13747:1 13830:1 13845:1 13868:1 13915:1 14036:1 14044:1 14079:1 14136:1 14150:1 14156:1 14214:1 14244:1 14280:1 14288:1 14304:1 14315:1 14336:1 14344:3 14486:1 14488:1 14510:2 14511:1 14513:1 14562:1 14585:1 14636:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14983:1 14990:1 15005:1 15020:1 15024:1 15030:1 15141:1 15201:1 15244:1 15259:1 15292:1 15325:1 15354:1 15432:1 15439:2 15463:3 15484:1 15550:1 15568:1 15668:1 15673:1 15682:1 15692:1 15745:1 15791:1 15800:2 15905:1 15926:1 16046:1 16068:1 16086:1 16091:1 16124:1 16133:1 16282:1 16373:1 16432:1 16495:1 16587:1 16622:1 16675:1 16781:1 16804:1 16923:1 16979:2 17083:2 17156:1 17230:1 17231:1 17274:1 17286:388 17290:1 17324:2 17436:2 17451:1 17488:1 17520:1 17730:1 17788:1 17798:1 17805:1 17806:1 17893:1 17970:1 17973:1 18161:1 18239:1 18350:3 18371:1 18399:1 18404:1 18407:1 18435:1 18496:3 18517:1 18534:1 18587:2 18616:2 18661:1 18664:1 18765:3 18983:1 19039:1 19136:1 19155:1 19200:1 19269:1 19296:1 19312:1 19335:1 19346:2 19355:1 19369:1 19466:1 19510:1 19629:1 19650:1 19654:1 19757:1 19869:1 19920:1 19948:1 19955:2 19956:1 19994:1 20036:1 20051:1 20077:2 20103:2 20133:1 20147:1 20235:1 20257:1 20263:1 20280:1 20295:1 20310:1 20346:1 20367:1 20375:1 20429:1 20439:1 20441:1 20454:1 20485:1 20507:1 20520:1 20575:1 20647:1 20655:1 20667:1 20677:1 20732:1 20743:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20932:1 20972:1 21020:1 21034:2 21047:1 21146:3 21195:1 21232:1 21251:1 21315:1 21365:1 21401:1 21496:2 21574:1 21603:1 21626:1 21662:1 21674:1 21683:1 21762:1 21802:1 21803:1 21883:1 21957:1 21981:1 21986:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22548:1 22611:1 22628:1 22633:1 22637:1 22642:1 22663:2 22710:1 22727:1 22728:3 22732:1 22755:1 22875:1 22879:1 22929:1 23144:2 23189:1 23198:1 23314:1 23341:3 23406:1 23444:1 23537:1 23541:1 23631:1 23638:1 23667:1 23719:1 23751:1 23791:2 23800:1 23818:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:2 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24431:1 24514:1 24536:1 24543:1 24591:1 24592:1 24620:1 24673:1 24703:1 24786:1 24796:1 24828:1 24936:1 24978:1 25006:1 25038:1 25072:1 25114:1 25118:2 25196:1 25314:1 25351:1 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25419:1 25450:1 25581:1 25610:1 25637:1 25695:1 25704:1 25796:1 25835:1 25900:1 25956:3 25976:1 26007:1 26027:1 26029:1 26042:1 26182:2 26219:1 26227:1 26256:1 26260:1 26329:1 26399:1 26405:1 26439:1 26475:1 26486:1 26487:1 26530:1 26531:1 26563:1 26616:1 26816:1 26937:1 26948:1 26966:1 26985:1 27001:1 27114:1 27120:1 27136:1 27153:2 27198:1 27201:1 27225:1 27228:2 27235:2 27237:2 27249:1 27283:1
7 8:1 18:1 163:1 225:1 284:1 345:1 413:1 437:1 459:1 472:1 551:1 561:1 565:1 673:3 867:1 889:1 939:1 979:1 1068:1 1070:1 1108:1 1162:1 1166:1 1251:1 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:1 1529:1 1637:2 1671:1 1691:1 1725:1 1754:2 1826:1 1906:1 1937:1 1947:1 1978:2 1997:1 2010:1 2017:1 2022:1 2047:1 2069:1 2108:1 2114:3 2115:1 2124:1 2130:1 2146:2 2154:1 2156:1 2205:1 2208:1 2220:1 2245:1 2253:1 2303:1 2324:1 2384:1 2425:1 2468:1 2537:1 2551:2 2592:1 2611:1 2615:1 2618:2 2624:1 2628:1 2637:1 2706:1 2721:1 2773:3 2956:1 3066:1 3096:1 3126:2 3153:1 3159:1 3198:1 3265:1 3302:1 3380:1 3388:1 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3563:1 3570:1 3602:1 3671:1 3779:1 3816:1 3911:1 3928:1 3935:1 3986:1 3998:1 4009:1 4033:1 4068:1 4143:1 4173:1 4309:1 4317:1 4329:1 4332:1 4352:1 4362:2 4386:1 4425:2 4454:1 4536:1 4558:2 4561:1 4597:1 4672:1 4688:1 4689:3 4696:1 4701:1 4708:1 4714:1 4715:1 4851:1 4880:1 4911:1 4971:1 4999:1 5012:1 5014:1 5036:1 5202:2 5235:1 5302:1 5307:1 5319:1 5362:1 5425:1 5585:1 5614:1 5628:1 5669:1 5742:1 5787:1 5805:1 5855:1 5912:2 5928:2 5938:1 5952:1 5960:1 5961:1 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6241:2 6330:1 6343:1 6344:2 6423:1 6432:2 6523:1 6582:2 6653:1 6681:1 6732:1 6792:1 6833:1 6846:1 6911:3 6928:1 6956:1 6964:1 6968:1 6983:1 7044:1 7058:1 7065:1 7075:1 7086:1 7087:1 7151:9 7171:3 7226:1 7330:1 7411:1 7461:1 7487:1 7574:1 7595:1 7599:1 7613:5 7644:1 7662:1 7707:1 7822:1 7826:1 7964:1 8021:1 8036:1 8052:1 8058:1 8123:1 8170:1 8186:1 8209:1 8238:2 8322:1 8365:1 8371:2 8440:2 8443:1 8493:1 8571:1 8572:1 8573:1 8690:1 8738:2 8740:1 8753:1 8844:1 8898:1 8900:1 8922:2 8923:1 8936:2 8961:1 8991:1 9087:1 9090:1 9122:1 9191:1 9202:1 9226:1 9286:1 9334:1 9364:1 9413:2 9426:1 9459:1 9463:1 9482:1 9511:1 9522:1 9539:1 9554:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9789:1 9839:2 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10179:2 10187:1 10293:1 10368:1 10466:1 10573:1 10578:1 10600:1 10636:1 10655:1 10830:1 10860:1 10876:1 10890:1 10901:1 10905:1 10928:1 10929:1 10983:1 11017:1 11020:1 11025:1 11032:1 11078:1 11207:1 11273:1 11319:1 11333:1 11344:1 11398:1 11644:1 11779:1 11800:1 11856:1 11864:1 11866:1 11916:1 11928:1 11946:1 11991:1 12057:1 12062:1 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12356:1 12364:1 12373:1 12535:1 12562:1 12581:1 12645:1 12681:1 12696:1 12698:1 12706:2 12754:1 12773:1 12780:1 12817:1 12821:2 12859:1 12993:1 12999:1 13041:1 13138:1 13141:1 13181:1 13240:1 13265:1 13284:1 13286:1 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:1 13447:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13713:1 13732:1 13747:1 13830:1 13845:1 13868:1 13915:1 14036:1 14044:1 14046:1 14079:1 14136:1 14150:1 14156:1 14214:1 14244:1 14280:1 14288:1 14304:1 14315:1 14336:1 14344:3 14486:1 14488:1 14510:2 14511:1 14513:1 14514:1 14562:1 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15020:1 15024:1 15030:2 15141:1 15201:1 15230:1 15244:1 15253:1 15259:1 15292:1 15325:1 15354:1 15432:1 15439:2 15463:3 15484:1 15550:1 15568:1 15668:1 15673:1 15682:1 15692:1 15745:1 15791:1 15800:2 15905:1 15926:1 16046:1 16054:1 16068:1 16086:1 16091:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:1 16428:1 16432:1 16495:1 16587:1 16622:1 16675:1 16781:1 16804:1 16828:1 16923:1 16979:2 17083:3 17092:1 17156:1 17230:1 17231:1 17274:1 17286:438 17290:1 17324:2 17436:2 17451:1 17456:1 17488:1 17520:1 17730:1 17788:1 17798:1 17805:1 17806:1 17859:1 17893:1 17970:1 17973:1 18037:1 18103:1 18161:1 18192:1 18212:1 18239:1 18322:1 18350:3 18371:1 18395:1 18399:1 18404:1 18407:1 18435:1 18496:3 18517:1 18534:1 18587:2 18616:2 18661:1 18664:1 18765:3 18876:1 18983:1 19039:1 19136:1 19155:1 19200:1 19269:1 19296:1 19312:1 19335:1 19346:2 19355:1 19369:1 19398:1 19466:1 19510:1 19629:1 19650:1 19654:1 19757:1 19816:1 19869:1 19883:1 19920:1 19948:1 19955:2 19956:1 19994:1 20036:1 20051:1 20077:2 20103:2 20133:1 20147:1 20235:1 20257:1 20263:1 20280:1 20295:1 20310:1 20346:1 20367:1 20375:1 20429:1 20439:1 20441:1 20454:1 20485:1 20507:1 20520:1 20554:1 20575:1 20647:1 20655:1 20667:1 20677:1 20722:1 20732:1 20743:1 20771:1 20799:1 20841:1 20847:1 20848:2 20906:1 20908:1 20932:1 20972:1 21020:1 21034:2 21047:1 21146:3 21195:1 21232:1 21251:1 21315:1 21365:1 21401:1 21496:2 21574:1 21596:1 21603:2 21626:1 21662:1 21674:1 21683:1 21695:1 21762:1 21802:1 21803:1 21839:1 21883:1 21957:1 21981:1 21986:1 21993:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22548:1 22611:1 22628:1 22632:1 22633:1 22637:1 22642:1 22663:2 22710:1 22727:1 22728:3 22732:1 22755:1 22875:1 22879:1 22929:1 22990:1 23038:1 23144:2 23189:1 23194:1 23198:1 23314:1 23341:3 23406:1 23444:1 23532:1 23537:1 23541:1 23631:1 23638:1 23647:2 23667:1 23719:1 23751:1 23791:2 23800:1 23818:2 23893:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:3 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24431:1 24514:1 24536:1 24543:1 24591:1 24592:1 24620:1 24673:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24936:1 24978:1 25006:1 25038:1 25072:1 25114:1 25118:2 25128:1 25196:1 25304:1 25314:1 25316:1 25351:1 25370:1 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25419:1 25450:1 25502:1 25581:1 25610:1 25637:1 25695:1 25704:1 25796:1 25835:1 25900:1 25956:3 25976:1 26007:1 26019:1 26027:1 26029:1 26042:1 26182:2 26213:1 26215:1 26219:1 26227:1 26256:1 26260:1 26296:1 26300:1 26329:1 26399:1 26405:1 26439:1 26475:1 26486:1 26487:1 26530:1 26531:1 26563:1 26616:1 26706:1 26728:1 26816:1 26848:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27114:1 27120:1 27136:1 27153:2 27198:1 27201:1 27225:1 27228:2 27235:2 27237:2 27242:1 27249:1 27283:1
7 8:1 18:1 163:2 177:1 225:1 284:1 345:1 413:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 613:1 673:3 867:1 889:1 939:1 979:1 1068:1 1070:1 1108:1 1162:1 1166:1 1186:1 1251:2 1309:1 1314:1 1315:1 1351:1 1362:1 1461:1 1469:2 1523:1 1529:2 1547:1 1637:2 1671:1 1691:1 1725:1 1743:1 1754:2 1826:1 1906:1 1937:1 1947:1 1978:3 1997:1 2010:2 2017:1 2022:1 2047:1 2069:2 2108:1 2114:3 2115:1 2124:1 2130:1 2131:1 2146:2 2154:1 2156:1 2205:1 2208:1 2220:1 2245:1 2253:1 2303:1 2324:1 2384:1 2425:1 2468:1 2537:1 2551:2 2592:1 2611:1 2615:1 2618:2 2624:2 2628:1 2637:1 2706:1 2721:1 2773:4 2956:1 3066:1 3096:2 3126:3 3153:1 3159:1 3198:1 3259:1 3265:1 3302:1 3380:1 3388:2 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3563:2 3570:1 3602:1 3671:1 3779:1 3816:1 3849:1 3911:1 3928:1 3935:1 3986:1 3998:1 4009:1 4033:1 4068:1 4143:1 4173:1 4175:1 4231:1 4309:1 4317:1 4329:1 4331:1 4332:1 4352:1 4362:2 4386:1 4425:2 4444:1 4454:1 4536:2 4558:2 4561:1 4597:1 4634:1 4672:2 4688:2 4689:4 4696:1 4701:1 4708:1 4714:1 4715:1 4736:1 4851:1 4857:1 4880:2 4911:1 4971:1 4999:1 5012:1 5014:1 5036:1 5202:2 5235:1 5302:1 5307:1 5319:1 5362:1 5363:1 5425:1 5585:1 5614:1 5628:1 5669:1 5742:1 5787:1 5805:1 5855:2 5874:1 5893:1 5912:2 5928:2 5938:2 5952:1 5960:1 5961:2 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6241:2 6321:1 6330:1 6343:1 6344:2 6423:1 6428:1 6432:2 6523:1 6582:2 6653:1 6655:1 6681:1 6732:1 6792:1 6833:1 6846:1 6911:3 6928:1 6956:1 6964:1 6968:1 6983:1 7044:2 7058:1 7065:1 7075:1 7086:1 7087:1 7151:10 7171:4 7226:1 7330:1 7411:1 7454:1 7461:1 7487:1 7574:2 7595:1 7599:1 7613:5 7644:1 7662:1 7707:1 7822:1 7826:1 7949:1 7964:1 8021:2 8036:1 8052:1 8058:1 8123:1 8170:1 8186:1 8209:1 8215:1 8238:2 8322:1 8365:1 8371:2 8440:2 8443:1 8493:2 8571:1 8572:1 8573:1 8690:1 8738:2 8740:1 8753:1 8844:1 8898:1 8900:1 8922:2 8923:1 8936:2 8961:1 8991:1 9055:1 9087:1 9090:1 9122:1 9191:1 9202:1 9226:1 9286:1 9334:1 9364:1 9413:2 9426:2 9459:1 9463:1 9482:1 9511:1 9522:1 9539:1 9554:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9789:1 9839:2 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10179:3 10187:1 10293:1 10368:1 10466:1 10567:1 10573:2 10578:1 10600:1 10636:1 10655:1 10830:2 10860:1 10876:1 10890:1 10901:1 10905:1 10928:1 10929:1 10983:1 11017:1 11020:1 11025:1 11032:1 11078:1 11202:1 11207:1 11218:1 11273:1 11311:1 11319:1 11333:1 11344:1 11398:1 11644:2 11779:1 11800:1 11856:1 11864:1 11866:1 11881:1 11916:1 11918:1 11928:1 11946:1 11958:1 11991:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12356:1 12364:1 12373:1 12535:1 12549:1 12562:2 12581:2 12645:1 12681:1 12696:1 12698:1 12706:2 12754:1 12773:1 12780:1 12817:1 12821:2 12859:1 12947:1 12993:1 12999:1 13041:1 13138:1 13141:1 13181:1 13240:1 13265:1 13284:1 13286:2 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:1 13447:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13713:1 13732:1 13747:1 13830:1 13843:1 13845:1 13864:1 13868:1 13915:1 14036:1 14039:1 14044:1 14046:1 14079:1 14114:1 14136:1 14150:1 14156:1 14214:2 14244:1 14280:1 14288:1 14304:1 14315:1 14336:2 14344:3 14486:1 14488:2 14510:2 14511:1 14513:1 14514:1 14522:1 14562:1 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15020:1 15024:1 15030:2 15141:1 15201:1 15230:1 15244:1 15253:1 15259:1 15292:1 15325:1 15354:1 15432:1 15439:3 15463:4 15484:1 15550:1 15568:1 15668:1 15673:1 15682:1 15687:1 15692:1 15745:1 15791:1 15800:2 15840:1 15905:1 15926:2 16046:1 16054:1 16068:1 16071:1 16086:1 16091:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:1 16428:1 16432:1 16495:1 16551:1 16587:1 16622:1 16675:1 16781:1 16804:1 16828:1 16923:1 16979:3 17083:4 17092:1 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:476 17290:1 17324:2 17436:2 17451:1 17456:1 17488:1 17520:1 17730:1 17788:1 17798:1 17805:1 17806:1 17859:1 17893:1 17970:1 17973:1 18037:1 18103:1 18161:1 18187:1 18192:1 18212:1 18239:1 18302:1 18322:1 18350:4 18371:1 18395:1 18399:1 18404:1 18407:1 18435:1 18496:3 18517:1 18534:1 18585:1 18587:2 18616:2 18661:1 18664:1 18765:4 18775:1 18876:1 18983:1 19039:1 19136:2 19155:1 19200:2 19269:1 19276:1 19296:1 19312:1 19335:1 19346:3 19355:1 19369:1 19398:1 19466:1 19510:1 19629:1 19650:1 19654:1 19673:1 19757:2 19816:1 19869:1 19876:1 19883:1 19920:1 19948:1 19955:3 19956:1 19994:1 20036:1 20051:2 20077:2 20103:2 20133:1 20147:1 20226:1 20235:1 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20403:1 20429:1 20439:1 20441:1 20454:1 20485:1 20507:1 20520:1 20554:1 20575:1 20647:1 20655:1 20667:1 20677:1 20722:1 20732:1 20743:1 20770:1 20771:1 20799:1 20841:1 20847:1 20848:2 20870:1 20906:1 20908:1 20932:2 20972:1 21005:1 21020:1 21034:2 21047:2 21083:1 21146:3 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21496:2 21574:1 21596:1 21603:2 21626:1 21662:1 21674:1 21683:1 21695:1 21762:1 21802:1 21803:1 21839:1 21883:1 21957:1 21981:1 21986:1 21993:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22548:1 22611:1 22628:1 22632:1 22633:1 22637:1 22642:1 22663:3 22710:1 22720:1 22727:2 22728:3 22732:1 22755:1 22802:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:3 23189:1 23194:1 23198:1 23314:2 23341:3 23406:1 23444:1 23494:1 23532:1 23537:1 23541:1 23583:1 23631:1 23638:1 23647:2 23667:1 23719:1 23751:1 23791:2 23800:1 23818:2 23838:1 23893:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:4 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24431:1 24514:1 24536:1 24543:1 24591:1 24592:1 24620:1 24673:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24879:1 24936:1 24978:1 25006:2 25038:1 25072:1 25114:1 25118:3 25128:1 25196:1 25304:1 25314:1 25316:1 25351:1 25370:1 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25419:1 25450:1 25502:1 25581:1 25610:1 25637:1 25695:1 25704:1 25796:1 25835:1 25900:1 25956:3 25976:1 26007:1 26019:1 26027:1 26029:1 26042:2 26077:1 26182:3 26213:1 26215:1 26219:1 26227:1 26256:1 26260:1 26296:1 26300:1 26309:1 26329:1 26399:1 26405:2 26439:1 26475:1 26486:1 26487:1 26530:1 26531:1 26563:1 26568:1 26616:1 26706:1 26728:1 26816:1 26848:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27114:1 27120:1 27136:1 27153:2 27198:1 27201:1 27225:1 27228:2 27235:2 27237:2 27242:1 27249:1 27283:1 27348:1
7 8:1 18:1 37:1 91:1 163:3 177:2 225:1 284:1 325:1 345:1 413:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 613:1 673:3 683:1 867:1 889:1 939:1 979:1 1059:1 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1251:2 1309:1 1314:1 1315:1 1351:1 1355:1 1362:1 1429:1 1461:1 1469:2 1523:1 1529:3 1530:1 1547:1 1637:2 1671:1 1691:1 1702:1 1725:1 1743:1 1754:2 1826:1 1840:1 1906:1 1937:1 1947:1 1978:3 1997:1 2010:2 2017:1 2022:1 2047:1 2069:2 2108:1 2114:3 2115:1 2124:1 2130:1 2131:1 2146:2 2154:2 2156:1 2205:1 2208:1 2220:1 2245:1 2253:1 2303:1 2324:1 2384:1 2390:1 2425:1 2468:1 2512:1 2537:1 2551:2 2592:1 2595:1 2611:1 2615:2 2618:2 2624:3 2628:1 2637:1 2706:1 2721:1 2773:4 2894:1 2956:1 3066:1 3096:2 3126:4 3153:1 3159:1 3198:2 3259:1 3265:1 3302:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3508:1 3563:2 3570:1 3602:1 3659:1 3671:1 3752:1 3779:1 3816:1 3849:2 3911:1 3928:1 3935:1 3986:1 3998:1 4009:1 4021:1 4033:2 4058:1 4068:1 4143:1 4173:1 4175:1 4231:2 4309:1 4317:1 4329:1 4331:1 4332:1 4352:1 4359:1 4362:2 4386:1 4425:2 4444:1 4454:1 4497:1 4536:2 4558:3 4561:1 4597:1 4634:1 4672:2 4688:2 4689:5 4696:2 4701:1 4708:1 4714:1 4715:1 4736:2 4812:1 4851:1 4857:2 4880:2 4911:1 4971:1 4999:1 5012:1 5014:1 5036:1 5162:1 5202:2 5235:1 5302:1 5307:1 5319:1 5362:1 5363:1 5381:1 5425:1 5585:1 5614:1 5628:1 5669:1 5742:1 5787:1 5805:1 5855:2 5874:2 5893:2 5912:2 5928:2 5938:2 5952:1 5960:1 5961:2 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:1 6330:1 6343:1 6344:2 6423:1 6428:1 6432:2 6523:1 6564:1 6582:2 6653:1 6655:1 6681:1 6732:1 6792:1 6833:1 6840:1 6846:1 6870:1 6911:3 6928:1 6956:1 6964:1 6968:1 6983:1 7044:2 7058:1 7065:1 7075:1 7086:1 7087:1 7151:11 7171:4 7226:1 7330:1 7411:1 7424:1 7454:1 7461:1 7487:1 7543:1 7574:2 7595:1 7599:1 7613:6 7644:1 7662:1 7707:2 7780:1 7784:1 7822:1 7826:1 7949:1 7964:2 8021:2 8036:1 8052:1 8058:1 8123:1 8170:1 8186:1 8209:1 8215:1 8238:2 8322:1 8365:1 8371:2 8440:2 8443:1 8493:2 8571:1 8572:1 8573:1 8690:1 8738:2 8740:1 8753:1 8844:1 8898:1 8900:1 8922:2 8923:1 8936:2 8961:1 8991:1 9055:1 9087:1 9090:1 9122:1 9191:1 9202:1 9226:1 9286:1 9334:1 9364:1 9413:2 9426:2 9459:1 9463:1 9482:1 9511:1 9522:1 9539:1 9554:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9789:1 9839:2 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10166:1 10179:4 10187:1 10293:1 10368:1 10466:1 10567:1 10573:2 10578:1 10600:1 10636:1 10655:1 10726:1 10759:1 10830:2 10854:1 10860:1 10876:1 10890:1 10901:2 10905:1 10928:1 10929:1 10983:1 11017:1 11020:1 11025:1 11032:1 11078:1 11202:2 11207:1 11218:2 11273:1 11311:1 11319:1 11333:1 11344:1 11390:1 11398:1 11644:2 11779:1 11800:1 11827:1 11854:1 11856:1 11864:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11958:1 11991:1 11992:1 11998:1 12010:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:1 12356:1 12364:1 12373:1 12522:1 12535:1 12549:1 12562:2 12581:2 12645:1 12681:1 12696:1 12698:1 12706:2 12754:1 12773:1 12780:1 12817:1 12821:2 12859:1 12890:1 12947:1 12971:1 12993:1 12999:1 13041:1 13138:1 13141:1 13181:1 13240:1 13265:1 13277:1 13284:1 13286:2 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13447:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13694:1 13713:1 13732:1 13747:1 13780:1 13830:1 13843:1 13845:1 13864:1 13868:1 13915:1 14002:1 14036:1 14039:1 14044:1 14046:1 14079:1 14111:1 14114:1 14136:1 14150:1 14156:1 14214:2 14244:1 14280:1 14288:1 14304:2 14315:1 14336:2 14344:3 14352:1 14357:1 14417:1 14480:1 14486:1 14488:2 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14562:2 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15020:1 15024:1 15030:2 15141:1 15201:1 15230:1 15244:1 15253:1 15259:1 15292:2 15297:1 15325:1 15354:1 15375:1 15432:1 15439:3 15463:4 15484:1 15550:1 15568:1 15668:1 15673:1 15682:1 15687:1 15692:1 15716:1 15745:1 15791:1 15800:3 15840:1 15905:1 15926:2 16046:2 16054:1 16068:2 16071:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:1 16428:1 16432:1 16495:1 16551:1 16587:1 16622:1 16675:1 16781:1 16804:1 16828:1 16923:1 16979:4 16992:1 17041:1 17083:6 17092:1 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:562 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17508:1 17520:1 17578:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17859:2 17893:1 17958:1 17970:1 17973:1 17991:2 18022:1 18037:3 18103:1 18161:1 18187:1 18192:1 18212:1 18239:1 18301:1 18302:1 18322:1 18350:4 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18435:1 18496:4 18517:1 18534:1 18585:1 18587:2 18616:2 18661:1 18664:1 18765:4 18775:1 18802:1 18876:1 18983:1 19039:1 19136:2 19155:1 19200:3 19256:1 19269:1 19276:1 19296:1 19312:1 19335:1 19346:3 19355:1 19356:1 19369:1 19398:1 19440:1 19466:1 19510:1 19587:1 19629:1 19650:1 19654:1 19673:1 19757:2 19816:1 19869:1 19876:1 19883:1 19900:2 19920:1 19948:1 19955:3 19956:1 19994:1 20036:1 20051:2 20077:2 20103:2 20133:1 20147:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20403:2 20429:1 20435:1 20439:1 20441:1 20454:1 20485:1 20494:1 20507:1 20520:1 20554:2 20565:1 20575:1 20647:1 20655:1 20667:1 20677:1 20722:1 20732:1 20743:1 20770:1 20771:1 20799:1 20841:1 20847:1 20848:2 20870:1 20906:1 20908:1 20932:2 20972:1 21005:1 21020:1 21034:2 21047:2 21083:1 21146:3 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21433:1 21496:2 21574:1 21596:1 21603:2 21626:1 21662:1 21674:1 21683:1 21695:1 21698:1 21762:1 21802:1 21803:1 21839:1 21883:1 21957:1 21981:1 21986:1 21993:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22363:1 22376:1 22383:1 22548:1 22611:1 22628:1 22632:1 22633:1 22637:2 22642:1 22663:3 22685:1 22710:1 22720:1 22727:3 22728:3 22732:2 22755:1 22802:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:4 23189:1 23194:1 23195:1 23198:1 23314:2 23341:3 23406:1 23444:1 23494:1 23532:1 23537:1 23541:1 23583:1 23631:1 23638:1 23641:1 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23751:1 23791:2 23800:1 23818:2 23838:1 23870:1 23893:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:6 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24431:1 24514:1 24536:1 24543:1 24591:1 24592:1 24620:1 24673:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24879:1 24936:1 24978:1 25006:2 25038:1 25072:1 25083:1 25114:1 25118:4 25128:1 25194:1 25196:1 25264:1 25304:1 25314:1 25316:1 25333:1 25334:1 25351:1 25370:2 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25419:1 25450:1 25502:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25704:1 25796:1 25835:1 25849:1 25900:1 25956:3 25976:1 26007:1 26019:1 26027:1 26029:1 26042:3 26077:1 26182:3 26213:1 26215:1 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:1 26296:1 26300:1 26309:2 26329:1 26398:1 26399:1 26405:2 26439:1 26475:1 26486:1 26487:1 26530:1 26531:1 26563:1 26568:1 26616:1 26706:1 26728:1 26816:1 26848:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27037:1 27081:1 27114:1 27120:1 27136:1 27153:2 27198:1 27201:1 27225:1 27228:3 27235:2 27237:2 27242:1 27249:1 27283:1 27348:1
7 8:1 18:1 37:1 91:1 163:3 177:2 223:1 225:1 256:1 284:1 307:1 325:1 345:1 413:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 613:1 673:3 683:1 798:1 867:1 889:1 899:1 939:1 961:1 979:1 1059:1 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1205:1 1251:2 1309:1 1314:1 1315:1 1351:1 1355:1 1362:1 1429:1 1461:1 1469:2 1523:1 1529:3 1530:1 1547:1 1637:2 1671:1 1691:1 1702:1 1725:1 1743:1 1754:2 1826:1 1840:1 1906:1 1908:1 1937:1 1947:1 1978:3 1997:1 2010:2 2017:1 2022:1 2047:1 2067:1 2069:2 2085:1 2108:1 2114:3 2115:1 2124:1 2130:1 2131:1 2146:2 2150:1 2154:2 2156:1 2196:1 2205:1 2208:1 2220:1 2245:1 2253:1 2303:1 2324:1 2384:1 2390:1 2425:1 2468:1 2512:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:2 2624:4 2628:1 2637:1 2677:1 2706:1 2721:2 2773:4 2894:1 2956:1 3066:1 3096:2 3126:4 3153:1 3159:1 3198:2 3257:1 3259:1 3265:1 3302:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3508:1 3563:2 3570:1 3602:1 3659:1 3671:1 3752:1 3779:1 3816:1 3849:3 3911:1 3928:1 3935:1 3986:1 3998:1 4009:1 4021:1 4033:2 4058:1 4068:1 4137:1 4143:1 4173:1 4175:1 4231:3 4252:1 4309:1 4317:1 4329:1 4331:1 4332:1 4352:1 4359:1 4362:2 4386:1 4395:1 4425:2 4444:1 4454:1 4497:1 4536:2 4558:4 4561:1 4597:1 4634:1 4672:2 4688:2 4689:5 4696:2 4701:1 4708:1 4714:1 4715:1 4736:3 4812:1 4851:1 4857:3 4880:2 4911:1 4971:1 4999:1 5012:1 5014:1 5036:1 5162:1 5202:2 5235:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5669:1 5742:1 5777:1 5787:1 5805:1 5855:2 5874:3 5893:3 5900:1 5912:2 5928:2 5938:2 5951:1 5952:1 5960:1 5961:2 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:1 6330:1 6343:2 6344:2 6423:1 6428:1 6432:2 6443:1 6520:1 6523:1 6564:1 6582:2 6653:1 6655:1 6681:1 6732:1 6792:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7044:2 7058:1 7065:1 7075:1 7086:1 7087:1 7151:12 7170:1 7171:4 7226:1 7330:1 7382:1 7411:1 7424:1 7454:1 7461:1 7487:1 7543:1 7544:1 7574:2 7595:1 7599:1 7613:6 7644:1 7662:1 7707:2 7780:1 7784:1 7822:1 7826:1 7845:1 7949:1 7954:1 7964:2 8020:1 8021:2 8036:1 8052:1 8058:1 8076:1 8081:1 8123:1 8170:1 8186:1 8209:1 8215:1 8238:2 8322:1 8365:1 8371:2 8440:2 8443:1 8493:2 8571:1 8572:1 8573:1 8583:1 8690:1 8738:2 8740:1 8753:1 8844:1 8898:1 8900:1 8922:2 8923:1 8936:2 8961:1 8991:1 9044:1 9055:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9226:1 9286:1 9334:1 9364:1 9413:2 9426:2 9459:1 9463:1 9482:1 9511:1 9522:1 9539:1 9554:1 9570:1 9601:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9788:1 9789:1 9839:2 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10166:1 10176:1 10179:4 10187:1 10217:1 10293:1 10299:1 10331:1 10368:1 10441:1 10466:1 10567:1 10573:2 10578:1 10600:1 10602:1 10636:1 10655:1 10726:1 10759:1 10830:2 10854:1 10860:1 10862:1 10876:1 10879:1 10890:1 10901:2 10905:1 10928:1 10929:1 10983:1 11017:1 11020:1 11025:1 11032:1 11078:1 11152:1 11202:3 11207:1 11218:3 11273:1 11311:1 11319:1 11333:1 11344:1 11390:1 11398:1 11644:2 11779:1 11800:1 11827:1 11854:1 11856:1 11864:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:1 12010:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:1 12356:1 12364:1 12373:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12681:1 12696:1 12698:1 12706:2 12754:1 12773:1 12780:1 12817:1 12821:2 12858:1 12859:1 12890:1 12947:1 12971:1 12993:1 12999:1 13041:1 13138:1 13141:1 13181:1 13240:1 13265:1 13277:1 13284:1 13286:2 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13694:1 13713:1 13732:1 13747:1 13780:1 13830:1 13843:1 13845:1 13864:1 13868:1 13915:1 14002:1 14036:1 14039:1 14044:1 14046:1 14079:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14244:1 14245:1 14280:1 14288:1 14304:3 14315:1 14336:3 14344:3 14352:1 14357:1 14370:1 14417:1 14480:1 14486:1 14488:2 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14562:2 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15020:1 15024:1 15030:2 15141:1 15201:1 15230:1 15244:1 15253:1 15259:1 15292:2 15297:1 15300:1 15325:1 15354:1 15375:1 15432:1 15439:3 15463:4 15484:1 15504:1 15550:1 15568:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15716:1 15745:1 15791:1 15800:3 15840:1 15905:1 15926:2 15956:1 15982:1 16046:2 16054:1 16068:2 16071:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:2 16428:1 16432:1 16495:1 16551:1 16577:1 16587:1 16622:1 16675:1 16781:1 16804:1 16828:1 16923:1 16979:4 16992:1 17040:1 17041:1 17083:6 17092:1 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:647 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17508:1 17520:1 17578:1 17663:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17859:2 17893:1 17894:1 17928:1 17958:1 17970:1 17973:1 17991:2 18022:1 18037:3 18103:1 18161:1 18187:1 18192:1 18203:1 18212:1 18239:1 18301:1 18302:1 18307:1 18322:1 18350:4 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18435:1 18460:1 18496:4 18517:1 18534:1 18585:1 18587:2 18600:1 18616:2 18661:1 18664:1 18765:4 18775:1 18802:1 18834:1 18876:1 18983:1 19039:1 19046:1 19136:2 19155:1 19200:3 19256:1 19269:1 19276:1 19296:1 19312:1 19335:1 19342:1 19346:3 19355:1 19356:1 19369:1 19398:1 19440:1 19466:1 19510:1 19527:1 19587:1 19610:1 19629:1 19650:1 19654:1 19673:1 19757:2 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19920:1 19948:1 19951:1 19955:3 19956:1 19966:1 19994:1 20036:1 20051:2 20077:2 20103:2 20133:1 20147:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20403:3 20429:1 20435:1 20439:1 20441:1 20454:1 20485:1 20494:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20647:1 20655:1 20667:1 20677:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20841:1 20847:1 20848:2 20870:1 20906:1 20908:1 20932:2 20972:1 21005:1 21020:1 21034:2 21047:2 21083:1 21146:3 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21433:1 21496:2 21574:1 21596:1 21603:2 21626:1 21662:1 21674:1 21683:1 21692:1 21695:1 21698:1 21738:1 21758:1 21762:1 21802:1 21803:1 21839:1 21883:1 21957:1 21981:1 21986:1 21993:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:1 22485:1 22548:1 22611:1 22628:1 22632:1 22633:1 22637:2 22642:1 22663:3 22685:1 22710:1 22720:1 22727:3 22728:3 22732:2 22755:1 22802:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:4 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23406:1 23444:1 23494:1 23532:1 23537:1 23541:1 23583:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23751:1 23791:2 23800:1 23818:2 23820:1 23838:1 23870:1 23893:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:6 24248:1 24315:1 24321:1 24345:1 24365:1 24368:1 24388:1 24401:1 24431:1 24514:1 24536:1 24543:1 24591:1 24592:1 24620:1 24673:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24879:1 24888:1 24936:1 24978:1 25005:1 25006:2 25029:1 25038:1 25051:1 25072:1 25083:1 25114:1 25118:4 25128:1 25194:1 25196:1 25264:1 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25351:1 25370:2 25381:1 25388:1 25390:1 25392:1 25397:1 25401:1 25404:1 25419:1 25450:1 25502:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25704:1 25796:1 25835:1 25849:1 25900:1 25956:3 25976:1 26007:1 26019:1 26027:1 26029:1 26042:4 26047:1 26077:1 26182:3 26213:1 26215:1 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26296:1 26300:1 26309:3 26329:1 26398:1 26399:1 26405:2 26439:1 26462:1 26475:1 26486:1 26487:1 26530:1 26531:1 26563:1 26568:1 26616:1 26706:1 26728:1 26816:1 26848:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27037:1 27081:1 27114:1 27120:1 27136:1 27153:2 27198:1 27201:1 27225:1 27228:3 27235:2 27237:2 27242:1 27249:1 27283:1 27348:1
7 8:1 18:1 37:1 91:1 163:3 177:2 223:1 225:1 256:1 284:1 307:1 325:1 345:1 413:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 613:1 673:3 683:1 798:1 867:2 889:1 899:1 939:1 961:1 979:1 1059:1 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1205:1 1251:2 1309:1 1314:1 1315:1 1351:1 1355:1 1362:1 1429:1 1461:1 1469:2 1523:1 1529:3 1530:1 1547:1 1592:1 1637:2 1638:1 1671:1 1691:1 1702:1 1725:1 1743:1 1754:2 1826:1 1840:1 1906:1 1908:1 1937:1 1947:1 1978:3 1997:1 2010:2 2017:1 2022:1 2047:1 2067:1 2069:2 2085:1 2108:1 2114:3 2115:1 2124:1 2130:1 2131:1 2146:2 2150:1 2154:2 2156:1 2196:1 2205:1 2208:1 2220:1 2245:2 2253:1 2303:1 2324:1 2384:1 2390:1 2425:1 2468:1 2512:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2677:1 2706:1 2721:2 2761:1 2773:5 2894:1 2956:1 3066:1 3096:2 3126:4 3153:1 3159:1 3198:2 3257:1 3259:1 3265:1 3302:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3508:1 3563:2 3570:1 3602:1 3659:1 3671:1 3673:1 3675:1 3700:1 3752:1 3779:1 3816:1 3849:3 3854:1 3911:1 3928:1 3935:1 3986:1 3998:1 4009:1 4021:1 4033:2 4058:1 4068:1 4137:1 4143:1 4173:1 4175:1 4231:3 4252:1 4309:1 4317:1 4329:1 4331:1 4332:1 4352:1 4359:1 4362:2 4370:1 4386:1 4395:1 4425:2 4444:1 4454:1 4497:1 4536:2 4558:5 4561:1 4597:1 4634:1 4672:2 4688:2 4689:5 4696:2 4701:1 4708:1 4714:1 4715:1 4736:3 4812:1 4821:1 4851:1 4857:3 4880:2 4911:1 4965:1 4971:1 4999:1 5012:1 5014:1 5036:1 5162:1 5202:2 5235:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5669:1 5742:1 5777:1 5787:1 5805:1 5855:2 5874:3 5893:3 5900:1 5901:1 5912:2 5928:2 5938:2 5945:1 5951:1 5952:1 5960:1 5961:2 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:1 6330:1 6343:2 6344:2 6423:1 6428:1 6432:2 6443:1 6514:1 6520:1 6523:1 6564:1 6582:2 6653:1 6655:1 6681:1 6732:2 6792:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7044:2 7058:1 7065:1 7075:1 7086:1 7087:1 7118:1 7151:12 7170:1 7171:5 7226:1 7330:1 7382:1 7411:1 7424:1 7454:1 7461:1 7487:1 7543:1 7544:1 7574:2 7595:1 7599:1 7613:6 7644:1 7662:2 7707:2 7780:1 7784:1 7822:1 7826:1 7845:1 7949:1 7954:1 7964:2 7998:1 8020:1 8021:2 8036:1 8052:1 8058:1 8076:1 8081:1 8123:1 8170:1 8186:1 8209:1 8215:1 8238:2 8322:1 8365:1 8371:2 8440:2 8443:1 8493:2 8571:1 8572:1 8573:1 8583:1 8584:1 8642:1 8690:1 8738:2 8740:1 8753:1 8844:1 8898:1 8900:1 8903:1 8922:2 8923:1 8936:2 8961:1 8991:1 9044:1 9055:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9226:1 9286:1 9319:1 9334:1 9364:1 9413:2 9426:2 9459:1 9463:1 9482:1 9511:1 9522:1 9536:1 9539:1 9554:1 9570:1 9601:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9788:1 9789:1 9839:3 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10166:1 10176:1 10179:4 10187:1 10217:1 10293:1 10299:1 10331:1 10368:1 10441:1 10466:1 10509:1 10567:1 10573:2 10578:1 10600:1 10602:2 10636:1 10655:1 10726:1 10759:1 10830:2 10854:1 10860:2 10862:1 10876:1 10879:1 10890:1 10901:2 10905:1 10928:1 10929:1 10983:1 11017:1 11020:1 11025:1 11032:1 11078:1 11103:1 11152:1 11202:3 11207:1 11218:3 11273:1 11311:1 11319:1 11333:1 11344:1 11390:1 11398:1 11468:1 11624:1 11644:2 11779:1 11800:2 11827:1 11854:1 11856:2 11864:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:1 12010:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:1 12356:1 12364:1 12373:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12681:1 12696:1 12698:1 12706:2 12754:1 12773:1 12780:2 12817:1 12821:2 12858:1 12859:1 12890:1 12947:1 12971:1 12993:1 12999:1 13041:1 13138:1 13141:2 13162:1 13181:1 13240:1 13265:1 13277:1 13284:1 13286:2 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13694:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 14002:1 14036:1 14039:1 14044:1 14046:1 14079:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14244:1 14245:1 14280:1 14288:1 14304:3 14315:1 14336:3 14344:3 14352:1 14357:1 14370:1 14384:1 14417:1 14480:1 14486:1 14488:2 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14523:1 14562:2 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15020:1 15024:1 15030:2 15117:1 15141:1 15201:1 15230:2 15244:1 15253:1 15259:1 15292:2 15297:1 15300:1 15325:1 15346:1 15354:1 15375:1 15432:1 15439:3 15463:5 15484:1 15504:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15716:1 15738:1 15745:1 15791:1 15800:3 15840:1 15905:1 15926:2 15956:1 15982:1 16046:2 16054:1 16068:2 16071:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:2 16428:1 16432:1 16495:1 16551:1 16577:1 16587:1 16622:1 16675:1 16768:1 16781:1 16804:1 16828:1 16923:1 16979:4 16992:1 17040:1 17041:1 17083:6 17092:2 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:702 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17489:1 17508:1 17520:2 17578:1 17663:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17885:1 17893:1 17894:1 17928:1 17958:1 17970:1 17973:1 17991:2 18022:1 18037:3 18103:1 18161:1 18162:1 18187:1 18192:1 18203:1 18212:1 18239:1 18301:1 18302:1 18307:1 18322:1 18350:5 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18435:1 18460:1 18496:4 18517:1 18534:1 18585:1 18587:2 18600:1 18616:2 18638:1 18661:1 18664:1 18732:1 18765:5 18775:1 18802:1 18834:1 18876:1 18983:1 19039:1 19046:1 19136:2 19155:1 19200:3 19245:1 19256:1 19269:1 19276:1 19296:1 19312:1 19324:1 19335:1 19342:1 19346:3 19355:1 19356:1 19369:1 19398:1 19440:1 19466:1 19510:1 19527:1 19587:1 19591:1 19610:1 19629:1 19650:1 19654:1 19673:1 19757:2 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19920:1 19948:1 19951:1 19955:3 19956:1 19966:1 19994:1 19995:1 20036:1 20051:2 20058:1 20077:2 20103:2 20133:1 20147:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20403:3 20429:1 20435:1 20439:1 20441:1 20454:1 20485:1 20494:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20647:1 20655:1 20667:1 20677:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20815:1 20841:1 20847:1 20848:2 20870:1 20906:1 20908:1 20932:2 20972:1 21005:1 21020:1 21034:2 21047:2 21083:1 21146:3 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21414:1 21433:1 21496:2 21574:1 21596:1 21603:2 21626:1 21662:1 21674:1 21683:1 21692:1 21695:1 21698:1 21738:1 21758:1 21762:1 21802:1 21803:1 21839:1 21883:1 21946:1 21957:1 21981:1 21986:1 21993:1 22025:1 22072:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:1 22485:1 22548:1 22611:1 22625:1 22628:1 22632:1 22633:1 22637:2 22642:1 22663:3 22685:1 22710:1 22720:1 22727:3 22728:3 22732:2 22755:1 22802:1 22804:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:4 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23406:1 23444:1 23494:1 23509:1 23532:1 23537:1 23541:1 23583:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23751:1 23791:3 23800:1 23818:2 23820:1 23838:1 23870:1 23872:1 23893:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24247:6 24248:1 24297:1 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:1 24401:1 24428:1 24431:1 24440:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24673:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24879:1 24888:1 24936:1 24978:1 24994:1 25005:1 25006:2 25029:1 25038:1 25051:1 25072:1 25083:1 25114:1 25118:5 25128:1 25194:1 25196:2 25264:1 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25351:1 25370:2 25381:2 25388:1 25390:1 25392:1 25397:1 25401:1 25404:1 25419:1 25450:1 25502:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25704:1 25751:1 25796:1 25835:1 25849:1 25883:1 25884:1 25900:1 25956:3 25976:1 26007:1 26019:1 26027:1 26029:1 26042:4 26047:1 26077:1 26182:3 26213:1 26215:1 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26296:1 26300:1 26309:3 26329:1 26384:1 26398:1 26399:1 26405:2 26439:1 26462:1 26475:1 26486:2 26487:1 26530:1 26531:1 26563:1 26568:1 26616:1 26706:1 26728:1 26816:1 26848:1 26851:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27037:1 27081:1 27114:1 27120:2 27136:1 27153:2 27198:1 27201:1 27225:1 27228:3 27235:2 27237:2 27242:1 27249:1 27283:1 27348:1
7 8:1 18:1 37:1 91:1 163:3 177:2 202:1 223:2 225:1 256:1 284:1 307:1 325:1 345:1 413:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:1 613:1 673:3 683:1 798:1 867:2 889:1 899:1 939:1 961:1 979:1 1059:1 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1205:1 1251:2 1309:1 1314:1 1315:1 1326:1 1351:1 1355:1 1362:1 1429:1 1461:1 1469:2 1523:1 1529:3 1530:1 1547:1 1592:1 1637:2 1638:1 1671:1 1673:1 1691:1 1702:2 1725:1 1743:1 1754:2 1826:1 1840:1 1906:1 1908:1 1937:1 1947:1 1978:3 1997:1 2010:2 2017:1 2022:1 2047:1 2067:1 2069:2 2085:1 2108:1 2114:3 2115:1 2124:1 2130:1 2131:1 2146:2 2150:1 2154:2 2156:1 2196:1 2205:1 2208:1 2220:1 2239:1 2245:2 2253:1 2303:1 2324:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2677:1 2706:1 2721:3 2761:1 2773:6 2851:1 2894:1 2956:1 3051:1 3066:1 3096:2 3126:4 3153:1 3159:1 3198:2 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3508:1 3563:2 3570:1 3599:1 3602:1 3659:1 3671:1 3673:1 3675:1 3700:1 3752:1 3757:1 3779:1 3816:1 3849:3 3854:1 3911:1 3928:1 3935:2 3944:1 3986:1 3998:1 4009:1 4021:1 4033:2 4058:1 4068:1 4137:1 4143:1 4173:1 4175:1 4231:3 4252:1 4309:1 4317:1 4329:1 4331:1 4332:1 4352:1 4359:1 4362:2 4370:1 4386:1 4395:1 4425:2 4444:1 4454:1 4497:1 4536:2 4558:6 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4696:2 4701:1 4708:1 4714:1 4715:1 4736:3 4812:1 4821:1 4851:1 4857:3 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4999:1 5012:1 5014:1 5036:1 5162:1 5202:2 5235:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5669:1 5742:2 5777:1 5787:1 5805:1 5855:2 5874:3 5893:3 5900:1 5901:1 5912:2 5928:2 5938:2 5945:1 5951:1 5952:1 5960:1 5961:2 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:1 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6443:1 6514:1 6520:1 6523:1 6564:1 6582:2 6650:1 6653:1 6655:1 6681:1 6732:2 6792:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:1 7086:2 7087:1 7096:1 7118:1 7151:12 7170:1 7171:6 7226:1 7330:1 7363:1 7382:1 7411:1 7424:1 7454:1 7461:1 7487:1 7543:1 7544:1 7574:2 7595:1 7599:1 7613:6 7644:1 7662:2 7707:2 7780:1 7784:1 7822:1 7826:1 7845:1 7949:1 7954:1 7964:2 7998:1 8020:1 8021:3 8036:1 8052:1 8058:1 8076:1 8081:1 8123:1 8170:1 8186:1 8209:1 8215:1 8238:2 8322:1 8365:1 8371:2 8440:2 8443:1 8493:2 8571:1 8572:1 8573:1 8583:1 8584:1 8642:1 8690:1 8738:2 8740:1 8753:1 8844:1 8898:1 8900:1 8903:1 8922:2 8923:1 8936:2 8961:1 8991:1 9034:1 9044:1 9055:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9226:1 9286:1 9319:1 9334:1 9364:1 9371:1 9374:1 9387:1 9399:1 9413:2 9426:2 9459:1 9463:1 9482:1 9511:1 9522:1 9536:1 9539:1 9554:1 9570:1 9601:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9788:1 9789:1 9839:3 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10166:1 10176:1 10179:4 10187:1 10217:1 10293:1 10298:1 10299:1 10331:1 10358:1 10368:1 10441:2 10466:1 10509:1 10567:1 10573:2 10578:1 10600:1 10602:2 10636:1 10655:1 10679:1 10726:1 10759:1 10830:2 10854:1 10860:2 10862:1 10873:1 10876:1 10879:1 10880:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 11017:1 11020:1 11025:1 11032:1 11078:1 11080:1 11103:1 11152:2 11201:1 11202:3 11207:1 11218:3 11273:1 11311:1 11319:1 11333:1 11344:1 11390:1 11398:1 11468:1 11624:1 11644:2 11769:1 11779:1 11800:3 11827:1 11854:1 11856:2 11864:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:1 12010:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12166:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:1 12356:1 12364:1 12373:1 12494:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12681:1 12696:1 12698:1 12706:2 12754:1 12773:1 12780:2 12803:1 12817:1 12821:2 12858:1 12859:1 12890:1 12938:1 12947:1 12971:1 12993:1 12999:1 13041:1 13138:1 13141:2 13162:1 13181:1 13240:1 13265:1 13277:1 13284:1 13286:3 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13694:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 14002:1 14036:1 14039:1 14044:1 14046:1 14079:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14244:1 14245:1 14280:1 14288:1 14304:3 14315:1 14336:3 14344:3 14352:1 14357:1 14370:1 14384:2 14417:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14523:1 14530:1 14562:2 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15020:1 15024:1 15029:1 15030:2 15117:1 15141:1 15201:1 15207:1 15230:2 15244:1 15245:1 15253:1 15259:1 15292:2 15297:1 15300:1 15325:2 15343:1 15346:1 15354:1 15375:1 15432:1 15439:4 15463:6 15484:1 15504:1 15507:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15716:1 15738:1 15745:1 15791:1 15800:3 15840:1 15905:1 15926:2 15933:1 15956:1 15982:1 16046:2 16054:1 16068:2 16071:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:2 16428:1 16432:1 16495:1 16551:1 16577:1 16587:1 16622:1 16675:1 16758:1 16768:1 16781:1 16784:1 16804:1 16828:1 16923:1 16979:5 16992:1 17040:1 17041:1 17083:6 17092:2 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:747 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17489:1 17503:1 17508:1 17520:2 17578:1 17663:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:1 17893:1 17894:1 17928:1 17958:1 17970:1 17973:1 17991:2 18022:1 18037:3 18085:1 18103:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18301:1 18302:1 18307:1 18322:1 18350:6 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18435:1 18460:1 18496:4 18517:1 18534:1 18553:1 18585:1 18587:3 18600:1 18616:2 18638:1 18661:1 18664:1 18732:1 18765:6 18775:1 18802:1 18819:1 18834:1 18876:1 18983:1 19039:1 19046:1 19136:2 19155:1 19200:3 19245:1 19256:1 19269:1 19276:1 19296:1 19312:1 19323:1 19324:1 19335:1 19342:1 19346:4 19355:1 19356:1 19369:1 19390:1 19398:1 19440:1 19466:1 19510:1 19527:1 19587:1 19591:1 19610:1 19629:2 19650:1 19654:1 19673:1 19757:2 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19920:1 19938:1 19948:1 19951:1 19955:4 19956:1 19964:1 19966:1 19994:1 19995:1 20036:1 20051:2 20058:1 20077:2 20103:2 20133:1 20147:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20403:3 20429:1 20435:1 20439:1 20441:1 20454:1 20485:1 20494:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20647:1 20655:1 20667:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20801:1 20815:1 20841:1 20847:1 20848:3 20855:1 20870:1 20906:1 20908:1 20932:2 20972:1 21005:1 21020:1 21034:2 21047:3 21083:1 21132:1 21146:3 21163:1 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21414:1 21433:1 21496:2 21574:1 21596:1 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:1 21695:1 21698:1 21738:1 21758:1 21762:1 21802:1 21803:1 21839:1 21883:1 21946:1 21957:1 21981:1 21986:1 21993:1 22002:1 22025:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:2 22485:1 22501:1 22548:1 22611:1 22625:1 22628:1 22632:1 22633:1 22637:2 22642:1 22663:3 22685:1 22710:1 22720:1 22727:4 22728:3 22732:2 22755:1 22802:1 22804:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:5 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23406:1 23444:1 23494:1 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23583:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23735:1 23751:1 23791:3 23800:1 23818:2 23820:1 23838:1 23843:1 23870:1 23872:1 23893:1 23896:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24238:1 24247:6 24248:1 24297:1 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:1 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24650:1 24673:1 24689:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24879:1 24888:1 24936:1 24978:1 24994:1 25005:1 25006:3 25029:1 25038:1 25051:1 25072:1 25083:1 25114:1 25118:5 25128:1 25194:1 25196:2 25264:1 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25346:1 25348:1 25351:1 25363:1 25370:2 25381:2 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25419:1 25450:1 25502:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25704:1 25751:1 25796:1 25835:1 25849:1 25883:1 25884:1 25900:1 25956:3 25976:1 26007:1 26019:1 26027:1 26029:1 26042:4 26047:1 26077:1 26081:1 26182:3 26213:1 26215:2 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26296:1 26300:1 26309:3 26329:1 26384:1 26398:1 26399:1 26405:2 26439:1 26462:1 26465:1 26475:1 26486:2 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26616:1 26690:1 26697:1 26706:1 26721:1 26728:1 26816:1 26825:1 26848:1 26851:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27037:1 27081:1 27114:1 27120:3 27136:1 27153:2 27198:1 27201:1 27225:1 27228:3 27235:2 27237:2 27242:1 27249:1 27283:1 27348:1
7 8:1 18:1 37:1 91:1 163:3 177:2 202:1 223:2 225:1 256:1 284:1 307:1 325:1 345:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:1 613:1 673:3 683:1 798:1 805:1 828:1 867:2 889:1 895:1 899:1 929:1 939:1 961:1 979:1 1059:1 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1205:1 1251:2 1309:1 1314:1 1315:1 1326:1 1351:1 1355:1 1362:1 1429:1 1461:1 1469:2 1523:1 1527:1 1529:3 1530:1 1547:1 1592:1 1637:2 1638:1 1671:1 1673:1 1691:1 1702:2 1725:1 1743:1 1754:2 1826:1 1840:1 1906:1 1908:1 1936:1 1937:1 1947:1 1978:3 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2063:1 2067:1 2069:2 2085:1 2108:1 2114:3 2115:1 2124:1 2130:1 2131:1 2146:2 2147:1 2150:1 2154:2 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2239:1 2245:2 2253:1 2303:1 2324:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2677:1 2706:1 2721:3 2761:1 2773:7 2851:1 2894:1 2956:1 3051:1 3066:1 3096:2 3102:1 3126:4 3153:1 3159:1 3198:2 3239:1 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3460:1 3466:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3659:1 3661:1 3671:1 3673:1 3675:1 3687:1 3700:1 3720:1 3752:1 3757:1 3769:1 3779:1 3816:1 3845:1 3849:4 3854:1 3911:1 3928:1 3935:3 3944:1 3986:1 3998:1 4009:1 4021:1 4033:2 4058:1 4068:1 4137:1 4143:1 4173:1 4175:1 4231:4 4252:1 4309:1 4317:1 4329:1 4331:1 4332:1 4352:1 4359:1 4362:2 4370:1 4386:1 4395:1 4425:2 4444:1 4454:1 4497:1 4536:2 4558:6 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4708:1 4714:1 4715:1 4736:4 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4999:1 5012:1 5014:1 5036:1 5162:1 5202:2 5235:1 5260:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:1 5669:1 5742:3 5777:1 5787:1 5805:1 5855:3 5874:4 5893:4 5900:1 5901:1 5912:2 5928:2 5938:2 5945:1 5951:1 5952:1 5953:1 5960:1 5961:2 5989:1 6032:1 6098:1 6114:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:1 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6443:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6650:1 6653:1 6655:1 6681:1 6732:2 6791:1 6792:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7086:2 7087:1 7096:1 7109:1 7118:1 7151:12 7170:1 7171:6 7226:1 7330:1 7363:1 7382:1 7411:1 7424:1 7454:1 7461:1 7487:1 7543:1 7544:1 7574:2 7595:1 7599:1 7613:6 7644:1 7662:2 7707:2 7767:1 7780:1 7784:1 7822:1 7826:1 7845:1 7949:1 7954:1 7964:2 7998:1 8020:1 8021:4 8036:1 8052:1 8058:1 8076:1 8081:1 8103:1 8123:1 8170:1 8186:2 8209:1 8215:1 8238:2 8322:1 8365:1 8371:2 8440:3 8443:1 8493:2 8571:1 8572:1 8573:1 8583:1 8584:1 8642:1 8690:1 8738:2 8740:1 8753:1 8844:2 8852:1 8898:1 8900:1 8903:1 8922:2 8923:2 8936:2 8961:1 8991:1 9034:1 9044:1 9055:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9226:1 9286:1 9296:1 9319:1 9334:1 9364:2 9371:1 9374:1 9387:1 9399:1 9413:2 9426:2 9453:1 9459:1 9463:1 9482:1 9511:1 9522:1 9536:1 9539:1 9554:1 9570:1 9601:1 9605:1 9652:1 9659:1 9693:1 9728:1 9740:1 9755:1 9761:1 9762:1 9786:1 9788:1 9789:1 9839:3 9840:1 9897:1 9941:1 9983:1 9985:1 10011:1 10012:1 10166:1 10176:1 10179:4 10187:1 10217:1 10293:1 10298:1 10299:1 10331:1 10358:1 10368:1 10441:2 10466:1 10474:1 10509:1 10567:1 10573:2 10578:1 10600:1 10602:2 10636:1 10655:1 10679:1 10726:1 10759:1 10830:2 10854:1 10860:2 10862:1 10873:1 10876:1 10879:1 10880:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 11017:1 11020:2 11025:1 11032:1 11078:1 11080:1 11103:1 11152:2 11201:1 11202:4 11207:1 11218:4 11273:1 11311:1 11319:1 11331:1 11333:1 11344:1 11390:1 11398:1 11468:1 11624:1 11644:2 11769:1 11779:1 11800:3 11827:1 11854:1 11856:2 11864:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:1 12010:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12166:1 12179:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:1 12356:1 12364:1 12373:1 12428:1 12494:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12681:1 12683:1 12696:1 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12803:1 12817:1 12821:2 12858:1 12859:1 12890:1 12938:1 12947:1 12971:1 12993:1 12999:1 13041:1 13138:1 13141:2 13155:1 13162:1 13181:1 13240:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14079:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14244:1 14245:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:3 14352:1 14357:1 14370:1 14384:2 14417:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14523:1 14530:1 14562:2 14585:1 14636:1 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15020:1 15024:1 15029:1 15030:2 15117:1 15141:1 15201:1 15207:1 15230:2 15244:1 15245:1 15253:1 15259:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:1 15346:1 15354:1 15375:1 15432:1 15439:4 15463:6 15484:1 15504:1 15507:1 15539:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15716:1 15738:1 15745:1 15791:1 15800:3 15840:1 15905:1 15926:2 15933:1 15956:1 15982:1 16046:2 16054:1 16068:2 16071:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16235:1 16282:1 16373:2 16428:1 16432:1 16495:1 16551:1 16577:1 16587:1 16622:1 16675:1 16740:1 16758:1 16768:1 16781:1 16784:1 16804:1 16828:1 16923:1 16979:5 16992:1 17040:1 17041:1 17083:6 17092:2 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:871 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17489:1 17503:1 17508:1 17520:2 17578:1 17663:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:1 17893:1 17894:1 17928:1 17958:1 17970:1 17973:1 17991:2 18022:1 18037:3 18085:1 18103:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18301:1 18302:1 18307:1 18322:1 18350:6 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18425:1 18435:1 18460:1 18496:4 18517:1 18534:1 18553:1 18585:1 18587:3 18600:1 18616:2 18638:1 18661:1 18664:1 18732:1 18765:7 18775:1 18802:1 18819:1 18834:1 18876:1 18888:1 18909:1 18983:1 19039:1 19046:1 19136:2 19155:1 19200:3 19245:1 19256:1 19269:1 19276:1 19296:1 19312:1 19323:1 19324:1 19335:1 19342:1 19346:4 19355:1 19356:1 19369:1 19390:2 19398:1 19440:1 19466:1 19510:1 19527:1 19587:1 19591:1 19610:1 19629:2 19645:1 19650:1 19654:1 19673:1 19757:2 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19920:1 19938:1 19948:1 19951:1 19955:4 19956:1 19964:1 19966:1 19994:1 19995:1 20036:1 20051:2 20058:1 20077:2 20088:1 20103:2 20133:1 20147:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20403:4 20429:1 20435:1 20439:1 20441:1 20454:1 20464:1 20485:1 20494:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20801:2 20815:1 20841:1 20847:1 20848:3 20855:1 20870:1 20906:1 20908:1 20932:2 20972:1 21005:1 21020:1 21034:2 21047:3 21083:1 21132:1 21146:3 21163:1 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21414:1 21433:1 21496:2 21574:1 21596:1 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:1 21695:1 21698:1 21738:1 21758:1 21762:1 21802:1 21803:1 21839:1 21883:1 21946:1 21957:1 21981:1 21986:1 21993:1 22002:1 22025:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:2 22485:1 22501:1 22548:1 22611:1 22625:1 22628:1 22632:1 22633:1 22637:2 22642:1 22652:1 22663:3 22685:1 22710:1 22720:1 22727:4 22728:3 22732:2 22755:1 22802:1 22804:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:5 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23406:1 23444:1 23494:1 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23583:1 23587:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23735:1 23751:1 23791:3 23800:1 23810:1 23818:2 23820:1 23838:1 23843:2 23870:1 23872:1 23893:1 23896:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24080:1 24122:1 24141:1 24186:2 24221:1 24238:1 24247:6 24248:1 24297:1 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:2 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24786:1 24796:1 24828:1 24835:1 24861:1 24879:1 24888:1 24936:1 24978:1 24994:1 25005:1 25006:3 25029:1 25038:1 25051:1 25072:1 25083:1 25114:1 25118:5 25128:1 25194:1 25196:2 25243:1 25264:1 25290:1 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25346:1 25348:1 25351:1 25363:1 25370:2 25381:2 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25502:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25751:1 25796:1 25835:1 25849:1 25883:1 25884:1 25900:1 25938:1 25956:3 25965:1 25971:1 25976:1 26007:1 26019:1 26027:1 26029:1 26042:4 26047:1 26077:1 26081:1 26182:3 26213:1 26215:2 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26296:1 26300:1 26309:4 26329:1 26384:1 26398:1 26399:1 26405:2 26439:1 26462:1 26465:1 26475:2 26486:2 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26616:1 26690:1 26697:1 26706:1 26721:1 26728:1 26730:1 26816:1 26825:1 26848:1 26851:1 26868:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:1 27037:1 27081:1 27114:1 27120:3 27136:1 27153:2 27198:1 27201:1 27225:1 27228:3 27235:2 27237:2 27242:1 27249:1 27283:1 27348:1
7 8:1 18:1 37:1 81:1 91:1 163:4 177:2 202:1 223:2 225:1 256:1 266:1 284:1 307:1 325:1 345:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:1 613:1 673:4 683:1 798:1 805:1 806:1 823:1 828:2 867:2 889:1 895:1 899:1 929:1 939:1 961:1 967:1 979:1 1059:2 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1205:1 1251:2 1309:1 1314:1 1315:1 1326:1 1351:1 1355:1 1362:1 1407:1 1429:1 1461:1 1469:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:1 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1826:1 1840:2 1906:1 1908:1 1914:1 1936:1 1937:2 1947:1 1978:4 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2063:1 2067:1 2069:3 2085:1 2093:1 2108:1 2114:4 2115:1 2124:1 2130:2 2131:1 2140:1 2146:2 2147:1 2150:1 2154:2 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2239:1 2245:2 2253:1 2303:1 2311:1 2324:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2677:1 2706:1 2721:3 2761:1 2773:8 2851:1 2894:1 2909:1 2912:1 2956:2 3051:1 3066:1 3075:1 3096:2 3102:1 3126:5 3153:1 3159:1 3198:2 3239:1 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3659:1 3661:1 3671:1 3673:1 3675:1 3687:1 3692:1 3700:1 3720:1 3752:2 3757:1 3769:1 3779:1 3816:1 3845:1 3849:4 3854:1 3895:1 3911:1 3928:1 3935:3 3944:1 3986:1 3998:1 4009:1 4011:1 4021:1 4033:2 4041:1 4058:1 4068:1 4125:1 4137:1 4143:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4536:2 4558:7 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:1 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4999:1 5012:1 5014:1 5036:1 5162:2 5173:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5731:1 5742:4 5777:1 5787:1 5805:1 5855:3 5874:4 5893:4 5900:1 5901:1 5912:2 5928:2 5938:2 5940:2 5945:1 5951:1 5952:1 5953:1 5956:1 5960:1 5961:2 5989:1 6032:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:1 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6437:1 6443:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:1 6650:1 6653:1 6655:1 6657:1 6664:1 6681:1 6732:2 6791:1 6792:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:15 7170:1 7171:7 7226:1 7330:1 7363:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7543:1 7544:1 7574:2 7595:1 7599:1 7613:6 7644:1 7662:2 7682:1 7689:1 7707:2 7767:1 7780:2 7784:1 7822:1 7826:1 7845:1 7869:1 7948:1 7949:1 7951:1 7954:1 7964:2 7998:1 8020:1 8021:4 8036:2 8052:1 8058:1 8076:1 8081:1 8103:1 8106:1 8123:1 8170:1 8186:2 8209:1 8215:1 8238:2 8260:1 8322:1 8365:1 8371:2 8440:4 8443:1 8493:2 8571:1 8572:1 8573:1 8583:1 8584:1 8642:1 8688:1 8690:1 8738:2 8740:1 8753:1 8787:1 8788:1 8793:1 8822:1 8844:2 8852:1 8898:1 8900:1 8903:1 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:1 9044:1 9055:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9364:3 9371:1 9374:1 9387:1 9399:1 9413:2 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:1 9536:1 9539:1 9554:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:1 9983:1 9985:1 10007:1 10011:1 10012:1 10127:1 10166:1 10176:1 10179:5 10187:1 10217:1 10264:1 10293:1 10298:1 10299:1 10331:1 10358:1 10368:1 10413:1 10441:2 10466:1 10474:1 10509:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:2 10636:1 10655:1 10663:1 10666:1 10679:1 10726:1 10759:2 10830:2 10854:1 10860:2 10862:1 10873:1 10875:1 10876:1 10879:1 10880:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 11017:1 11020:3 11025:1 11032:1 11078:1 11080:1 11103:1 11152:2 11201:1 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11301:1 11311:1 11319:1 11331:1 11333:1 11344:1 11390:1 11398:1 11468:1 11506:1 11624:2 11644:2 11657:1 11769:1 11779:1 11800:3 11827:1 11854:1 11856:2 11864:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 12010:1 12026:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12155:1 12166:1 12179:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:2 12356:1 12364:1 12373:1 12428:1 12494:1 12497:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12679:2 12681:1 12683:1 12696:1 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12890:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13093:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14244:1 14245:3 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:4 14352:1 14357:1 14370:1 14384:2 14417:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14773:1 14799:1 14812:1 14859:1 14932:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15019:1 15020:1 15024:1 15029:1 15030:2 15112:1 15117:1 15141:1 15201:1 15207:1 15230:2 15244:1 15245:1 15253:1 15259:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15354:2 15375:1 15432:1 15439:4 15463:6 15484:1 15504:1 15507:1 15539:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15704:1 15716:1 15738:1 15745:1 15777:1 15791:1 15800:3 15840:1 15905:1 15926:3 15933:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16183:1 16235:1 16282:1 16373:2 16428:1 16432:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16675:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16858:1 16909:1 16923:1 16979:5 16992:1 17040:1 17041:1 17083:6 17092:2 17156:1 17177:1 17230:1 17231:1 17256:1 17274:1 17286:982 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17489:1 17503:1 17508:1 17520:2 17578:1 17663:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:1 17893:1 17894:1 17915:1 17928:1 17952:1 17958:1 17970:1 17973:1 17991:2 17997:1 18022:1 18025:1 18037:3 18085:1 18103:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18301:1 18302:1 18307:1 18322:1 18350:6 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18425:1 18435:1 18460:1 18496:5 18517:1 18528:1 18534:1 18553:1 18585:1 18587:3 18600:2 18616:2 18632:1 18638:1 18661:1 18664:1 18732:1 18765:8 18775:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18983:1 18988:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:1 19256:1 19258:1 19269:1 19276:1 19296:1 19312:1 19323:1 19324:1 19335:1 19342:1 19346:4 19355:1 19356:1 19366:1 19369:1 19390:2 19398:1 19440:1 19466:1 19510:1 19527:1 19587:2 19591:1 19610:1 19611:1 19629:2 19645:2 19650:1 19654:1 19673:1 19754:1 19757:2 19775:1 19778:1 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19920:1 19938:1 19948:1 19951:1 19955:4 19956:1 19964:1 19966:1 19994:1 19995:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20435:1 20439:1 20441:1 20454:1 20464:1 20485:1 20494:2 20495:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20801:2 20815:1 20841:1 20847:1 20848:3 20855:1 20870:1 20886:1 20906:1 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21083:1 21132:1 21146:3 21163:1 21175:1 21194:1 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21414:1 21433:1 21496:2 21574:1 21596:1 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:2 21695:1 21698:1 21738:1 21758:1 21762:1 21802:1 21803:1 21839:1 21883:1 21946:2 21957:1 21981:1 21986:1 21993:1 22002:1 22025:1 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:2 22485:1 22501:1 22548:1 22611:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:1 22652:1 22663:3 22685:1 22710:1 22720:1 22721:1 22727:4 22728:3 22732:2 22755:1 22773:1 22802:1 22804:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:5 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23406:1 23444:1 23494:2 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23583:1 23587:1 23597:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23735:1 23751:1 23791:3 23800:1 23810:1 23818:2 23820:1 23838:1 23843:2 23870:1 23872:1 23893:1 23896:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24051:1 24080:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:6 24248:1 24297:1 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:2 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24786:1 24796:1 24803:1 24828:1 24835:1 24841:1 24861:1 24879:1 24888:1 24931:1 24936:1 24978:1 24994:1 25005:1 25006:3 25029:1 25038:1 25039:1 25051:1 25053:1 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25194:1 25196:2 25243:1 25264:1 25290:1 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25346:1 25348:1 25351:1 25363:1 25370:2 25381:2 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25751:1 25796:1 25835:1 25849:1 25883:1 25884:1 25900:1 25938:1 25956:3 25960:1 25965:1 25971:1 25976:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:5 26047:1 26077:1 26081:1 26094:1 26182:3 26192:1 26213:1 26215:3 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26384:1 26398:2 26399:1 26405:2 26439:1 26462:1 26465:1 26475:2 26486:2 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26721:1 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:1 27037:1 27081:1 27114:1 27120:3 27136:1 27153:2 27198:1 27201:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27283:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 91:1 122:1 163:4 177:3 202:1 223:2 225:1 256:1 266:1 284:1 307:1 325:1 345:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:1 613:1 673:4 683:1 798:1 805:1 806:1 823:1 828:2 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1059:2 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1205:1 1251:2 1309:1 1314:1 1315:1 1326:1 1351:1 1355:1 1362:1 1407:1 1429:1 1461:1 1469:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:1 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1826:1 1840:2 1847:1 1870:1 1906:1 1908:1 1914:1 1936:1 1937:3 1947:1 1978:4 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2063:1 2067:1 2069:3 2085:1 2093:1 2108:1 2114:5 2115:1 2119:1 2120:1 2124:1 2130:2 2131:1 2140:2 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2303:1 2311:1 2324:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2677:1 2706:1 2721:3 2761:1 2773:9 2851:1 2866:1 2894:1 2909:1 2912:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:1 3198:2 3239:1 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3659:1 3661:1 3671:1 3673:1 3675:1 3687:1 3692:1 3700:1 3720:1 3746:1 3752:2 3757:1 3769:1 3779:1 3816:1 3845:1 3849:4 3854:1 3895:1 3911:1 3928:1 3935:3 3944:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:1 4033:2 4041:1 4058:1 4068:1 4125:1 4137:1 4143:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4536:2 4549:1 4558:8 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:1 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4999:1 5012:1 5014:1 5036:1 5126:1 5162:2 5173:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5731:1 5742:4 5777:1 5787:1 5805:1 5855:3 5874:4 5893:4 5900:1 5901:1 5912:2 5928:2 5929:1 5938:3 5940:2 5945:1 5951:1 5952:1 5953:2 5956:1 5960:1 5961:2 5989:1 6032:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:2 6211:1 6213:1 6241:2 6321:2 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6437:1 6443:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:1 6650:1 6653:1 6655:1 6657:1 6664:1 6681:1 6732:2 6791:1 6792:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:19 7170:1 7171:8 7226:1 7330:1 7363:2 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7543:1 7544:1 7574:2 7595:1 7599:1 7613:7 7644:1 7662:2 7682:1 7689:1 7707:2 7762:1 7767:1 7780:2 7784:1 7822:1 7826:1 7845:1 7869:1 7948:1 7949:1 7951:1 7954:1 7964:2 7998:1 8020:1 8021:4 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8103:1 8106:1 8123:1 8170:1 8186:2 8209:1 8215:1 8238:2 8260:1 8322:1 8365:1 8371:2 8440:4 8443:1 8493:2 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:1 8688:1 8690:1 8738:2 8740:1 8753:1 8787:1 8788:1 8793:1 8822:1 8844:2 8852:1 8872:1 8898:1 8900:1 8903:1 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:1 9044:1 9055:1 9060:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9364:3 9371:1 9374:1 9387:1 9399:1 9413:2 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:1 9536:2 9539:1 9554:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:1 9983:1 9985:1 10007:1 10011:1 10012:1 10127:1 10166:1 10176:1 10179:6 10187:1 10217:1 10264:1 10293:1 10298:1 10299:1 10331:1 10358:1 10368:1 10413:1 10441:2 10466:1 10474:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:1 10759:2 10830:2 10854:1 10860:2 10862:1 10873:2 10875:1 10876:1 10879:1 10880:1 10886:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 11005:1 11017:1 11020:3 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:1 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11468:1 11506:1 11624:2 11644:2 11657:1 11769:1 11779:1 11800:3 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12155:1 12166:1 12179:1 12188:1 12205:2 12263:1 12325:1 12343:2 12345:2 12356:1 12364:1 12373:2 12428:2 12494:1 12497:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12679:2 12681:1 12683:1 12696:1 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12890:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13093:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14234:1 14244:1 14245:3 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:4 14352:2 14357:1 14370:1 14384:2 14417:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14799:1 14812:1 14859:1 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:2 15112:1 15117:1 15141:1 15201:1 15207:1 15230:2 15244:1 15245:1 15253:1 15259:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15354:2 15375:1 15432:1 15439:4 15463:7 15484:1 15504:1 15507:1 15539:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:1 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:1 15840:1 15905:1 15926:3 15933:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16086:1 16090:1 16091:1 16092:1 16124:1 16129:1 16133:1 16183:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16675:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16858:1 16908:1 16909:1 16923:1 16979:5 16992:1 17040:1 17041:1 17083:7 17092:2 17156:1 17177:1 17197:1 17230:1 17231:1 17256:1 17274:1 17286:1029 17290:1 17324:2 17391:1 17436:2 17451:1 17456:1 17464:1 17488:1 17489:1 17503:1 17508:1 17520:2 17578:1 17663:1 17701:1 17711:1 17730:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:1 17893:1 17894:1 17915:1 17928:2 17952:1 17958:1 17970:1 17973:1 17991:2 17997:1 18022:1 18025:1 18037:3 18085:1 18103:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18350:6 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18425:1 18435:1 18460:1 18496:5 18517:1 18528:1 18534:1 18553:1 18585:1 18587:3 18600:2 18616:2 18632:1 18638:1 18661:1 18664:1 18732:1 18765:9 18775:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18983:1 18988:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19321:1 19323:1 19324:1 19335:1 19342:1 19346:5 19355:1 19356:1 19366:1 19369:1 19390:2 19398:1 19440:1 19466:1 19510:1 19527:1 19587:2 19591:1 19610:1 19611:1 19629:2 19645:2 19650:1 19654:1 19673:1 19754:1 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19920:1 19938:1 19948:1 19951:1 19955:4 19956:1 19964:1 19966:1 19994:1 19995:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20435:1 20439:1 20441:1 20454:1 20464:1 20485:1 20494:2 20495:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20801:2 20815:1 20841:1 20847:1 20848:3 20855:1 20870:1 20886:1 20906:2 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21132:1 21146:4 21157:1 21163:1 21175:1 21194:1 21195:1 21232:1 21251:1 21258:1 21262:1 21315:1 21365:1 21401:1 21414:1 21426:1 21433:1 21496:2 21574:1 21596:1 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:2 21695:1 21698:1 21736:1 21738:1 21758:1 21762:1 21764:1 21802:1 21803:1 21839:1 21877:1 21883:1 21946:2 21957:2 21981:1 21986:1 21993:1 22002:1 22025:1 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:2 22485:1 22501:1 22548:1 22611:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:4 22728:3 22732:2 22755:1 22773:1 22774:1 22802:1 22804:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:5 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23355:1 23406:1 23444:1 23494:2 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23583:1 23587:1 23597:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23735:1 23751:1 23791:3 23800:1 23810:1 23818:2 23820:1 23838:1 23843:2 23870:1 23872:1 23893:1 23896:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24051:1 24080:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:7 24248:1 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:2 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24796:1 24803:1 24828:1 24835:1 24841:1 24861:1 24879:1 24888:1 24931:1 24936:1 24978:1 24994:1 25005:1 25006:3 25029:1 25038:1 25039:1 25051:1 25053:1 25070:1 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:2 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25346:1 25348:1 25351:1 25363:1 25370:2 25381:2 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25751:1 25796:1 25835:1 25849:1 25883:1 25884:1 25900:1 25938:1 25956:3 25960:1 25965:1 25971:1 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:5 26047:1 26077:1 26081:1 26094:1 26182:3 26192:1 26213:1 26215:3 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:1 26465:1 26475:2 26486:2 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26721:1 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:1 27037:1 27081:1 27114:1 27120:3 27136:1 27153:2 27198:1 27201:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27283:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 115:1 122:1 163:4 177:3 202:1 223:2 225:1 256:1 258:1 266:1 284:1 307:1 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:2 613:1 673:4 683:1 798:1 805:3 806:1 823:1 828:2 866:1 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:1 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1187:1 1205:1 1251:2 1309:1 1314:1 1315:1 1326:1 1351:1 1355:1 1362:1 1407:1 1429:1 1461:1 1469:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:1 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1826:1 1840:2 1847:1 1870:1 1906:1 1908:1 1914:1 1936:1 1937:3 1947:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:1 2069:3 2085:1 2093:1 2108:1 2114:5 2115:1 2119:1 2120:1 2124:1 2130:2 2131:1 2140:2 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2677:1 2706:1 2721:4 2761:1 2773:10 2851:1 2866:1 2894:1 2909:1 2912:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:1 3198:2 3239:1 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3659:1 3661:1 3671:1 3673:1 3675:1 3687:1 3692:1 3700:1 3720:1 3746:2 3752:2 3757:1 3769:1 3779:1 3816:1 3845:1 3849:4 3854:1 3895:2 3911:1 3928:1 3935:3 3941:1 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:1 4033:2 4041:1 4058:1 4068:1 4125:1 4137:1 4143:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:10 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:1 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4999:1 5012:1 5014:1 5036:1 5126:1 5140:1 5162:2 5173:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:1 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5702:1 5731:1 5742:4 5777:1 5787:1 5805:1 5855:3 5874:4 5893:4 5900:1 5901:1 5912:2 5928:2 5929:1 5938:3 5940:2 5945:1 5951:1 5952:1 5953:2 5955:1 5956:1 5960:2 5961:2 5989:1 6032:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:3 6211:1 6213:1 6241:2 6321:2 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6437:1 6443:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:1 6650:1 6653:1 6655:1 6657:1 6664:1 6681:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:19 7170:1 7171:9 7226:1 7330:1 7363:2 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:9 7644:1 7662:2 7682:1 7689:1 7707:2 7762:1 7767:1 7780:2 7784:1 7822:1 7826:1 7845:1 7869:1 7948:1 7949:1 7951:1 7954:1 7964:2 7998:1 8020:1 8021:4 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8103:1 8106:1 8123:1 8170:1 8186:2 8209:1 8215:1 8238:3 8260:1 8322:1 8365:1 8371:2 8440:4 8443:1 8493:2 8560:1 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:1 8688:1 8690:1 8738:2 8740:1 8753:1 8787:1 8788:1 8793:1 8822:1 8844:2 8852:1 8872:1 8898:1 8900:1 8903:1 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:1 9044:1 9055:1 9060:1 9087:1 9090:1 9122:1 9180:1 9191:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9364:3 9371:1 9374:2 9387:1 9399:1 9413:2 9417:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:1 9536:2 9539:1 9554:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:1 9983:1 9985:1 10007:1 10011:1 10012:1 10127:1 10166:1 10176:1 10179:6 10187:1 10217:1 10264:2 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:2 10466:1 10474:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:1 10759:2 10805:1 10830:2 10854:1 10860:2 10862:1 10873:2 10875:2 10876:1 10879:1 10880:1 10886:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 10991:1 11005:1 11017:1 11020:3 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11468:1 11506:1 11624:2 11644:2 11657:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12155:1 12166:1 12179:1 12188:1 12205:3 12253:1 12263:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12428:2 12494:1 12497:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12679:2 12681:1 12683:1 12696:1 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:1 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12890:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13044:1 13093:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13513:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14234:1 14244:1 14245:3 14254:1 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:5 14352:2 14357:1 14370:1 14384:3 14417:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:1 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14799:1 14807:1 14812:1 14859:1 14924:1 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:2 15112:1 15117:1 15141:1 15201:1 15207:1 15230:2 15244:1 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15375:1 15432:1 15439:5 15463:8 15484:1 15504:1 15507:1 15539:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:1 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:1 15840:1 15905:1 15926:3 15933:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16675:1 16699:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16858:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17156:1 17177:1 17197:1 17230:1 17231:1 17256:1 17274:1 17286:1082 17288:1 17290:1 17324:2 17343:1 17391:1 17436:2 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17520:3 17557:1 17578:1 17663:1 17690:1 17701:1 17711:1 17730:1 17738:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:2 17893:1 17894:1 17915:1 17928:2 17952:1 17958:1 17970:1 17973:1 17991:2 17997:1 18022:1 18025:1 18037:3 18085:1 18103:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:7 18371:1 18395:1 18399:1 18404:1 18407:1 18424:1 18425:1 18435:1 18460:1 18496:5 18517:1 18528:1 18534:1 18553:1 18580:1 18585:1 18587:3 18600:2 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18732:1 18765:10 18775:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19321:1 19323:1 19324:1 19335:1 19342:1 19346:6 19355:1 19356:1 19366:2 19369:1 19390:2 19398:1 19440:1 19466:1 19510:1 19527:1 19587:2 19591:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19754:1 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:1 19883:1 19884:1 19900:2 19902:1 19920:1 19938:1 19948:1 19951:1 19955:5 19956:1 19964:1 19966:1 19994:1 19995:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20435:1 20439:1 20441:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20554:2 20565:1 20575:1 20589:1 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20770:1 20771:1 20779:1 20799:1 20801:2 20803:1 20814:1 20815:1 20841:1 20847:1 20848:4 20855:1 20870:1 20886:1 20906:2 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21118:1 21131:1 21132:1 21146:4 21157:1 21163:1 21175:1 21194:1 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21574:1 21596:1 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21736:1 21738:1 21758:2 21762:1 21764:1 21802:1 21803:1 21839:1 21877:1 21883:1 21946:2 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:2 22485:1 22501:1 22548:1 22611:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:1 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22773:1 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22929:1 22990:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:3 23355:1 23406:1 23444:1 23494:2 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23542:1 23583:1 23587:1 23597:1 23601:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:1 23735:2 23751:1 23791:3 23800:1 23810:1 23818:2 23820:1 23838:1 23843:2 23870:1 23872:1 23893:1 23896:1 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24051:1 24080:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:7 24248:1 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:2 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24796:1 24803:1 24828:1 24835:1 24841:1 24861:1 24879:1 24888:1 24931:1 24936:1 24978:1 24991:1 24994:1 25005:1 25006:3 25029:1 25038:1 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:2 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25751:1 25796:1 25835:2 25849:1 25883:1 25884:1 25900:1 25938:1 25956:3 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:5 26047:1 26077:1 26081:1 26094:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26239:1 26256:1 26260:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:1 26465:1 26475:2 26486:2 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26721:1 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:1 27037:1 27081:1 27114:1 27120:3 27136:1 27153:2 27198:1 27201:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27283:1 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:3 202:2 223:2 225:1 256:1 258:1 266:1 284:1 307:1 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:2 613:1 673:4 683:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:2 1070:1 1108:1 1141:1 1162:1 1166:1 1186:1 1187:1 1205:1 1251:2 1309:1 1314:1 1315:1 1326:1 1351:1 1355:1 1362:1 1407:1 1429:1 1461:1 1469:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:1 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1826:1 1840:2 1847:2 1870:1 1906:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:1 2069:3 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2119:2 2120:1 2124:1 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:1 2706:1 2721:4 2761:1 2773:12 2851:1 2866:1 2894:1 2909:1 2912:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:1 3194:1 3198:2 3239:1 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3720:1 3746:2 3752:2 3757:1 3769:1 3779:1 3816:1 3845:1 3849:4 3854:1 3895:2 3911:1 3928:1 3935:3 3941:1 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4125:1 4137:1 4143:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:10 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:1 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4992:1 4999:1 5012:1 5014:1 5036:1 5126:1 5140:1 5162:2 5173:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5691:1 5702:1 5731:1 5742:5 5777:1 5787:1 5805:1 5855:3 5874:4 5893:4 5900:1 5901:1 5912:2 5928:2 5929:1 5938:3 5940:2 5945:1 5951:1 5952:1 5953:2 5955:1 5956:1 5960:2 5961:2 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:3 6211:1 6213:1 6241:2 6321:2 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6437:1 6443:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:1 6650:1 6653:1 6655:1 6657:1 6664:1 6681:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:1 6842:1 6846:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:1 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:22 7170:1 7171:11 7226:1 7330:1 7363:2 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:10 7644:1 7662:2 7682:1 7689:1 7707:2 7762:1 7767:1 7780:2 7784:1 7801:1 7822:1 7826:1 7842:1 7845:1 7869:1 7948:1 7949:1 7951:1 7954:1 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:1 8106:1 8123:1 8170:1 8186:2 8191:1 8209:1 8215:1 8238:3 8260:1 8322:1 8365:1 8371:2 8440:4 8443:1 8493:2 8560:1 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:1 8688:1 8690:1 8738:2 8740:1 8753:1 8787:1 8788:1 8793:1 8822:1 8844:2 8852:1 8872:1 8898:1 8900:1 8903:1 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:1 9044:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9364:3 9371:1 9374:2 9387:2 9399:1 9413:2 9417:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:1 9983:1 9985:1 10007:1 10011:1 10012:1 10127:1 10166:1 10176:1 10179:6 10187:1 10217:1 10264:2 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:2 10466:1 10474:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:1 10759:2 10805:1 10830:2 10854:1 10860:2 10862:1 10873:2 10875:2 10876:1 10879:1 10880:1 10886:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 10991:1 11005:1 11017:1 11020:3 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11468:1 11506:1 11624:2 11632:1 11644:2 11657:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12155:1 12166:1 12179:1 12188:1 12205:3 12253:1 12263:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12428:2 12494:1 12497:1 12522:1 12535:1 12549:1 12554:1 12562:2 12581:2 12645:1 12679:2 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:1 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12890:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13044:1 13093:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13868:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14234:1 14244:1 14245:4 14254:1 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:5 14352:2 14357:1 14370:1 14384:3 14417:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14799:1 14807:1 14812:1 14859:1 14924:1 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:3 15112:1 15117:1 15141:1 15201:1 15207:2 15230:2 15244:1 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15375:1 15432:1 15439:5 15463:10 15484:1 15504:1 15507:2 15539:1 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:1 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:3 15933:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16675:1 16699:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16858:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17156:1 17177:1 17197:1 17230:1 17231:1 17256:1 17274:1 17286:1154 17288:1 17290:1 17324:2 17343:1 17391:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17520:3 17557:1 17578:1 17663:1 17690:1 17701:1 17711:1 17730:1 17738:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:2 17893:1 17894:1 17915:1 17928:2 17952:1 17958:1 17970:1 17973:1 17991:2 17997:1 18022:1 18025:1 18037:3 18085:1 18103:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:9 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18472:1 18496:5 18517:1 18528:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18709:1 18732:1 18765:12 18775:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:8 19355:1 19356:1 19366:2 19369:1 19390:2 19398:1 19440:1 19466:1 19510:1 19527:1 19587:2 19591:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19754:1 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:2 19902:1 19920:1 19938:1 19948:1 19951:1 19955:5 19956:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20554:2 20565:1 20575:1 20580:1 20589:1 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:1 20799:1 20801:2 20803:1 20814:1 20815:1 20841:1 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21118:1 21131:1 21132:1 21146:4 21156:1 21157:1 21163:1 21175:1 21194:1 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21574:1 21596:2 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21736:1 21738:1 21758:2 21762:1 21764:1 21802:1 21803:1 21839:1 21877:2 21883:1 21946:2 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22447:2 22485:1 22501:2 22548:1 22611:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22773:1 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22929:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:2 23341:4 23355:1 23406:1 23444:1 23467:1 23494:2 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23542:1 23583:1 23587:1 23597:1 23601:1 23631:1 23638:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23791:3 23800:1 23810:1 23818:2 23820:1 23838:1 23843:2 23870:1 23872:1 23893:1 23896:2 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24051:1 24080:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:7 24248:1 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:2 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24931:1 24936:1 24978:1 24991:1 24993:1 24994:1 25005:1 25006:3 25029:1 25038:1 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:2 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25751:1 25796:1 25835:2 25849:1 25883:1 25884:1 25900:1 25938:1 25956:4 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:5 26047:1 26077:1 26081:1 26094:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:1 26465:1 26475:2 26486:3 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:2 27037:1 27046:1 27081:1 27114:1 27120:3 27136:1 27153:2 27182:1 27198:1 27201:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27283:1 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 223:2 225:1 256:1 258:1 266:1 281:1 284:1 307:1 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:2 597:2 613:1 673:4 683:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:2 1070:1 1108:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1309:1 1314:1 1315:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:1 1461:1 1469:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:1 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1826:1 1840:2 1847:2 1870:1 1906:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:1 2069:3 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2119:2 2120:1 2124:1 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:1 2706:1 2721:4 2735:1 2761:1 2773:13 2851:1 2866:1 2894:1 2909:1 2912:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:1 3194:1 3198:2 3239:1 3257:1 3259:1 3265:1 3302:1 3310:1 3331:1 3351:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:1 3467:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3895:2 3911:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4125:1 4137:1 4143:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:11 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:2 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4992:1 4999:1 5012:1 5014:1 5036:1 5126:1 5140:1 5162:2 5173:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5691:1 5702:1 5731:1 5742:5 5777:1 5787:1 5805:1 5855:3 5874:4 5893:4 5900:1 5901:1 5912:2 5928:2 5929:1 5938:3 5940:2 5945:1 5951:1 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6321:2 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6437:1 6443:1 6471:1 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:1 6613:1 6647:1 6650:1 6653:1 6655:1 6657:1 6664:1 6681:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:1 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:2 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:22 7170:1 7171:12 7226:1 7330:1 7363:2 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:10 7644:1 7662:2 7682:1 7689:1 7707:2 7762:1 7767:1 7780:2 7784:1 7801:1 7822:1 7826:1 7842:1 7845:1 7865:1 7869:1 7948:1 7949:1 7951:1 7954:1 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:1 8106:1 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:1 8238:3 8260:1 8322:1 8365:1 8371:2 8440:4 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:2 8688:1 8690:1 8738:2 8740:1 8753:1 8787:1 8788:1 8793:1 8822:1 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:1 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:2 9044:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9335:1 9364:3 9371:1 9374:2 9387:2 9399:1 9413:2 9417:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:1 9983:1 9985:1 10007:1 10011:1 10012:1 10127:1 10166:1 10176:1 10179:6 10187:1 10217:1 10264:2 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:2 10466:1 10474:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:1 10759:2 10803:1 10805:1 10830:2 10854:1 10860:2 10862:1 10873:2 10875:2 10876:1 10879:2 10880:1 10886:1 10890:1 10901:2 10905:1 10928:1 10929:1 10962:1 10983:1 10991:1 11005:1 11017:1 11020:3 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11468:1 11506:1 11624:2 11632:1 11644:2 11657:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12135:1 12155:1 12166:1 12179:2 12188:1 12205:3 12228:1 12253:1 12263:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12428:2 12494:1 12497:1 12522:1 12535:1 12549:1 12554:2 12562:2 12581:2 12645:1 12679:2 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12890:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13044:1 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:5 14352:2 14357:1 14370:1 14384:3 14417:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14799:1 14807:1 14812:1 14859:1 14865:1 14924:2 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:3 15112:1 15117:1 15141:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15375:1 15432:1 15439:5 15463:11 15484:1 15504:1 15507:2 15539:2 15550:1 15561:1 15568:1 15621:1 15632:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:1 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:3 15933:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16656:1 16675:1 16699:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1231 17288:1 17290:1 17324:2 17343:1 17370:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17520:3 17557:1 17578:1 17583:1 17663:1 17690:1 17701:1 17711:1 17730:1 17738:1 17785:1 17788:1 17798:1 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17952:1 17958:1 17970:1 17973:1 17991:2 17997:1 18022:1 18025:1 18037:3 18085:1 18103:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:10 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18709:1 18732:1 18765:13 18775:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:1 19248:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:9 19355:1 19356:1 19366:2 19369:1 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:1 19587:2 19591:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19754:1 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:2 19902:1 19920:1 19938:1 19942:1 19948:1 19951:1 19955:5 19956:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20554:2 20565:1 20575:1 20580:1 20589:1 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:1 20799:1 20801:2 20803:1 20814:1 20815:1 20841:1 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21113:1 21118:1 21131:1 21132:1 21146:4 21156:1 21157:1 21163:1 21175:1 21194:1 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21574:1 21596:2 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:2 21762:1 21764:1 21802:1 21803:2 21839:1 21877:2 21883:1 21946:2 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22400:1 22447:2 22485:1 22501:2 22548:1 22611:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22773:1 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22929:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23467:1 23494:2 23509:1 23516:1 23528:1 23532:1 23537:1 23541:1 23542:1 23583:1 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23791:3 23800:1 23810:1 23818:2 23820:1 23838:1 23843:2 23870:1 23872:1 23893:1 23896:2 23897:1 23935:1 23962:2 23991:1 23994:1 24030:1 24051:1 24080:1 24091:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24514:1 24536:1 24543:1 24544:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24931:1 24936:1 24978:1 24991:1 24993:1 24994:1 25005:1 25006:3 25029:1 25037:1 25038:1 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:4 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:5 26047:1 26077:1 26081:2 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:1 26465:1 26475:3 26486:3 26487:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:2 27037:1 27046:1 27081:1 27114:1 27120:3 27136:1 27153:2 27182:1 27198:1 27201:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27273:1 27283:1 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 223:2 225:1 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:4 683:1 695:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:1 1461:1 1469:2 1503:1 1519:1 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:2 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1774:1 1815:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:1 2069:4 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:3 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:1 2706:1 2721:4 2735:1 2761:2 2768:1 2773:13 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:2 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3911:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4123:1 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:11 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:2 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5162:2 5173:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5691:1 5702:1 5720:1 5731:1 5742:5 5777:1 5787:1 5805:1 5855:4 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:3 5940:2 5945:1 5951:1 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6321:2 6330:1 6343:3 6344:2 6423:1 6428:1 6432:2 6437:1 6443:2 6471:1 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:2 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:25 7170:1 7171:13 7226:1 7330:1 7363:2 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:11 7644:1 7662:2 7682:1 7689:1 7707:3 7762:1 7767:2 7780:2 7784:1 7801:1 7822:1 7826:1 7842:1 7845:1 7865:1 7869:1 7948:1 7949:1 7951:2 7954:2 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:1 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8322:1 8365:1 8371:2 8440:4 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:2 8688:1 8690:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:2 9044:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9335:1 9364:3 9371:1 9374:2 9387:2 9399:1 9401:1 9413:2 9417:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10007:1 10011:1 10012:1 10097:1 10127:1 10166:1 10176:1 10179:6 10187:1 10202:1 10217:1 10264:2 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:2 10466:1 10474:1 10497:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:2 10759:2 10803:1 10805:1 10826:1 10830:2 10854:1 10860:2 10862:1 10873:2 10875:2 10876:1 10879:2 10880:1 10886:1 10890:1 10901:2 10905:1 10909:1 10928:1 10929:1 10958:1 10962:2 10983:1 10991:1 11005:1 11017:1 11020:3 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11468:1 11506:1 11603:1 11624:2 11632:1 11644:2 11657:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:2 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:2 12562:2 12581:2 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12864:1 12890:1 12933:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13044:1 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:5 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14799:1 14807:1 14812:1 14855:1 14859:1 14865:1 14924:2 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15112:1 15117:1 15141:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15375:1 15426:1 15427:1 15432:1 15439:5 15463:11 15484:1 15504:1 15507:2 15539:2 15550:1 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:2 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:3 15933:1 15936:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16638:1 16656:1 16675:1 16699:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1286 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17519:1 17520:3 17557:1 17578:2 17583:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17785:1 17788:1 17798:2 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17952:1 17957:1 17958:1 17970:1 17973:1 17991:3 17997:2 18022:1 18025:1 18037:3 18085:1 18103:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:10 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:13 18775:1 18790:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 18989:1 19026:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:1 19248:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:10 19355:1 19356:1 19366:2 19369:1 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:2 19587:2 19591:1 19607:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:2 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:3 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20554:2 20565:1 20575:1 20580:1 20589:2 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:1 20799:1 20801:2 20803:1 20814:1 20815:1 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21113:1 21118:1 21131:1 21132:1 21146:4 21156:1 21157:1 21163:1 21175:1 21194:1 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:2 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:1 22383:1 22400:1 22447:2 22485:1 22501:2 22548:2 22611:2 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22773:2 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22912:1 22929:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23583:2 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:2 23838:1 23843:2 23870:1 23872:1 23882:1 23893:1 23896:2 23897:1 23935:1 23962:2 23991:1 23994:1 24015:1 24030:1 24051:1 24080:1 24091:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24514:2 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24916:1 24931:1 24936:1 24978:1 24991:1 24993:1 24994:1 25005:2 25006:3 25029:1 25037:1 25038:1 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:4 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:7 26047:1 26077:1 26081:2 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26348:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26966:1 26985:1 27001:1 27020:2 27037:1 27046:1 27058:1 27081:1 27114:1 27120:3 27136:1 27153:2 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 223:2 225:1 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:5 683:1 695:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1519:1 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:2 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1774:1 1815:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:1 2069:4 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:3 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:1 2706:1 2721:4 2735:1 2761:2 2768:1 2773:16 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:2 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3911:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4123:1 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:1 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:12 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:2 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:1 5632:2 5669:1 5691:1 5702:1 5720:1 5731:1 5742:5 5777:1 5787:1 5805:1 5855:4 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:3 5940:2 5945:1 5951:1 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6321:2 6330:1 6343:3 6344:2 6370:1 6423:1 6428:1 6432:2 6437:1 6443:2 6471:1 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:2 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:25 7170:1 7171:15 7226:1 7330:1 7347:1 7363:2 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:11 7644:1 7662:2 7682:1 7689:1 7707:3 7762:1 7767:2 7780:2 7784:1 7801:1 7822:1 7826:1 7842:1 7845:1 7865:1 7869:1 7948:1 7949:1 7951:2 7954:2 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:1 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8322:1 8365:1 8371:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:2 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:2 9044:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9335:1 9364:3 9371:1 9374:2 9387:2 9399:1 9401:1 9413:2 9417:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:1 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10007:1 10011:1 10012:1 10097:1 10127:1 10166:1 10176:1 10179:6 10187:1 10202:1 10217:1 10264:2 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:2 10466:1 10474:1 10497:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:2 10759:2 10803:1 10805:1 10826:1 10830:2 10854:1 10860:2 10862:1 10871:1 10873:2 10875:2 10876:1 10879:2 10880:1 10886:1 10890:1 10901:2 10905:1 10909:1 10928:1 10929:1 10958:1 10962:2 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11468:1 11506:1 11603:1 11624:2 11632:1 11644:2 11656:1 11657:1 11713:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12301:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:2 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:2 12562:2 12581:2 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12864:1 12890:1 12933:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13044:1 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:6 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14794:1 14799:1 14807:1 14812:1 14855:1 14859:1 14865:1 14915:1 14924:2 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15112:1 15117:1 15141:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15375:1 15426:1 15427:1 15432:1 15439:5 15463:14 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:2 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:3 15933:1 15936:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16638:1 16656:1 16675:1 16699:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1306 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17519:1 17520:3 17557:1 17578:2 17583:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17785:1 17788:1 17798:2 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17952:1 17957:1 17958:1 17970:1 17973:1 17991:3 17997:2 18022:1 18025:1 18037:3 18085:1 18103:1 18109:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:13 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:16 18775:1 18790:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 18989:1 19026:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:12 19355:1 19356:1 19366:2 19369:2 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:2 19587:2 19591:1 19605:1 19607:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:2 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:3 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20565:1 20575:1 20580:1 20589:2 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20972:1 20981:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:2 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:2 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22363:1 22376:2 22383:1 22400:1 22447:2 22485:1 22501:2 22548:2 22611:2 22625:1 22626:1 22628:1 22632:1 22633:1 22637:2 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22912:1 22929:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23583:2 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:2 23642:1 23647:2 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:2 23838:1 23843:2 23870:1 23872:1 23882:1 23893:1 23896:2 23897:1 23935:1 23962:2 23991:1 23994:1 24015:1 24030:1 24051:1 24080:1 24091:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24916:1 24931:1 24936:1 24978:1 24991:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:1 25037:1 25038:2 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:4 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:7 26047:1 26077:1 26081:2 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26348:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:1 26985:1 27001:1 27020:2 27037:1 27046:1 27058:1 27081:1 27088:1 27114:1 27120:3 27136:1 27153:2 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:2 27251:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 223:2 225:1 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:5 683:1 695:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1515:1 1519:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1637:2 1638:2 1671:1 1673:2 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1774:1 1815:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:1 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:3 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:1 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:2 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:1 3471:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3911:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4123:1 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:12 4561:1 4580:1 4597:1 4634:1 4672:2 4688:2 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:2 4736:4 4780:1 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:2 5632:2 5669:1 5691:1 5702:1 5720:1 5731:1 5742:5 5762:1 5777:1 5787:1 5805:1 5855:5 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:3 5940:2 5945:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:1 6321:2 6330:1 6343:3 6344:2 6370:1 6423:1 6428:1 6432:2 6437:1 6443:2 6471:1 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:2 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:25 7170:1 7171:17 7226:1 7330:1 7347:1 7363:2 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:11 7644:1 7662:2 7682:1 7689:1 7707:3 7762:1 7767:2 7780:2 7784:1 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:1 7948:1 7949:1 7951:2 7954:2 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:1 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8322:1 8365:1 8371:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:2 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:2 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9335:1 9364:3 9371:1 9374:2 9387:2 9399:1 9401:1 9413:2 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10007:1 10011:1 10012:1 10097:1 10127:1 10166:1 10176:1 10179:6 10187:1 10202:1 10217:1 10264:2 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:2 10466:1 10474:1 10497:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:2 10759:2 10803:1 10805:1 10826:1 10830:2 10854:1 10860:2 10862:1 10871:1 10873:2 10875:2 10876:1 10879:2 10880:1 10886:1 10890:1 10901:2 10905:1 10909:1 10928:1 10929:1 10958:1 10962:2 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:2 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11467:1 11468:1 11506:1 11603:1 11624:2 11632:1 11644:2 11656:1 11657:1 11713:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:2 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:2 12562:2 12581:2 12597:1 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12864:1 12890:1 12933:1 12938:1 12947:2 12971:1 12993:1 12999:1 13011:2 13041:1 13044:1 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:1 14304:3 14315:1 14317:1 14336:3 14344:6 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:1 14773:1 14794:1 14799:1 14807:1 14812:1 14855:1 14859:1 14865:1 14915:1 14924:2 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15112:1 15117:1 15141:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15375:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:2 15716:1 15725:1 15738:1 15745:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:1 16551:1 16577:1 16587:1 16622:1 16624:1 16638:1 16656:1 16675:1 16699:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1335 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17519:1 17520:3 17557:1 17578:2 17583:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17785:1 17788:1 17798:2 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17952:1 17957:1 17958:1 17970:1 17973:1 17991:3 17997:2 18022:1 18025:1 18037:3 18085:1 18103:1 18109:1 18131:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:15 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18790:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 18989:1 19026:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:13 19355:1 19356:1 19366:2 19369:2 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:2 19587:2 19591:1 19605:1 19607:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:2 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:3 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:2 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:2 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:2 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:2 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:1 22308:1 22317:1 22350:1 22352:1 22363:1 22376:2 22383:1 22400:1 22447:2 22485:1 22501:2 22548:2 22611:2 22625:1 22626:1 22628:1 22632:1 22633:1 22637:3 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22911:1 22912:1 22929:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23583:2 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:2 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:2 23838:1 23843:2 23870:1 23872:1 23882:1 23893:1 23896:2 23897:1 23935:1 23962:2 23991:1 23994:1 24015:1 24030:1 24051:1 24080:1 24091:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24916:1 24931:1 24936:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:1 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:1 25610:1 25637:1 25693:1 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:7 26047:1 26077:1 26081:2 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26348:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27088:1 27114:1 27120:3 27136:1 27153:3 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 223:2 225:1 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:5 683:1 695:1 749:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 927:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1515:1 1519:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1636:1 1637:2 1638:2 1671:1 1673:3 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1774:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:4 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:2 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:2 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:1 3471:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3904:1 3911:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4118:1 4123:1 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:14 4561:1 4580:1 4597:1 4634:1 4672:2 4688:3 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:2 4736:4 4780:1 4793:2 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:2 5632:2 5669:1 5691:1 5702:1 5720:1 5731:1 5742:5 5762:1 5777:1 5787:1 5805:1 5855:5 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:3 5940:2 5945:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:1 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:1 6321:2 6330:1 6343:3 6344:2 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:26 7170:1 7171:17 7226:1 7330:1 7347:1 7363:3 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:11 7644:1 7653:2 7662:2 7682:1 7689:1 7707:3 7762:1 7767:2 7780:2 7784:1 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:1 7917:1 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8322:1 8365:1 8371:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8583:1 8584:1 8608:1 8642:2 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8991:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:2 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10166:1 10176:1 10179:6 10187:1 10202:1 10217:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:3 10636:1 10655:1 10663:1 10666:1 10679:1 10726:2 10759:2 10763:1 10803:1 10805:1 10826:1 10830:2 10854:1 10860:2 10862:1 10871:1 10873:3 10875:2 10876:1 10879:3 10880:1 10886:2 10890:1 10901:2 10905:1 10909:1 10928:1 10929:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11467:1 11468:1 11506:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:3 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:3 12562:2 12581:2 12597:1 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12796:1 12803:1 12817:2 12821:2 12858:1 12859:1 12860:1 12864:1 12890:1 12933:1 12938:1 12947:2 12971:1 12978:1 12993:1 12999:1 13011:2 13041:1 13044:1 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:6 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:2 14773:1 14794:1 14799:1 14807:1 14812:1 14855:1 14859:1 14865:1 14915:1 14924:2 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15112:1 15117:1 15141:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15372:1 15375:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:2 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16257:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:2 16551:1 16577:2 16587:1 16622:1 16624:1 16638:1 16656:1 16675:1 16699:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1423 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17519:1 17520:3 17557:1 17578:2 17583:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17785:1 17788:1 17792:1 17798:2 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17952:1 17957:1 17958:1 17970:1 17973:1 17991:3 17997:2 18022:1 18025:1 18037:3 18085:1 18103:1 18109:1 18131:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:1 18266:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:15 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18790:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 18989:1 19026:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:13 19355:1 19356:1 19366:2 19369:2 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:2 19587:2 19591:1 19605:1 19607:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:2 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:3 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:3 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20442:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:2 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20697:1 20708:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:2 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:4 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:2 22308:1 22317:1 22350:1 22352:1 22363:1 22376:2 22383:1 22400:1 22447:3 22485:1 22501:2 22548:2 22611:2 22625:1 22626:1 22628:1 22632:1 22633:1 22637:3 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22911:1 22912:1 22929:1 22942:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:2 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:2 23838:1 23843:2 23870:1 23872:1 23882:1 23888:1 23893:1 23896:2 23897:1 23901:1 23935:1 23962:2 23991:1 23994:1 24013:1 24015:1 24030:1 24051:1 24080:1 24091:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24916:1 24931:1 24936:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:1 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25228:1 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:1 25610:1 25637:1 25676:1 25691:1 25693:1 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:8 26047:1 26077:1 26081:3 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26348:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26419:1 26439:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27088:1 27114:1 27120:3 27136:1 27153:3 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 223:2 225:1 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:5 683:1 695:1 749:1 798:1 805:3 806:1 823:1 828:2 853:1 866:1 867:2 889:1 895:3 899:1 927:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1515:1 1519:2 1523:1 1527:1 1529:3 1530:1 1547:2 1592:1 1636:1 1637:2 1638:2 1671:1 1673:3 1688:1 1691:1 1702:2 1725:2 1743:1 1754:2 1774:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:4 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:1 2611:1 2612:1 2615:2 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:2 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2787:1 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:6 3153:1 3159:2 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:1 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:1 3471:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:1 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3904:1 3911:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:1 4068:1 4118:1 4123:1 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:14 4561:1 4580:1 4597:1 4634:1 4672:2 4688:3 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4714:2 4715:2 4736:4 4780:1 4793:2 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:2 5632:2 5669:1 5691:1 5702:1 5720:1 5731:1 5742:5 5762:1 5777:1 5787:1 5805:1 5855:5 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:3 5940:2 5945:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:1 6321:2 6330:1 6343:3 6344:2 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:26 7170:1 7171:17 7226:1 7330:1 7347:1 7363:3 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:11 7644:1 7653:2 7662:2 7682:1 7689:1 7707:3 7762:1 7767:2 7780:2 7784:1 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8322:1 8365:1 8371:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8583:1 8584:1 8586:1 8608:1 8642:2 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8988:1 8991:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9286:1 9296:1 9319:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:2 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10166:1 10176:1 10179:6 10187:1 10202:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:4 10636:1 10655:1 10663:1 10666:1 10679:1 10726:2 10759:2 10763:1 10803:1 10805:1 10826:1 10830:2 10854:1 10860:2 10862:1 10871:1 10873:3 10875:2 10876:1 10879:3 10880:1 10886:2 10890:1 10901:2 10905:1 10909:1 10928:1 10929:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11467:1 11468:1 11506:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:1 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:3 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:3 12562:2 12581:2 12597:1 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12796:2 12803:1 12817:2 12821:2 12858:2 12859:1 12860:1 12864:1 12890:1 12933:1 12938:1 12947:2 12971:1 12978:1 12993:1 12999:1 13011:2 13041:1 13044:1 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:2 13443:1 13447:1 13452:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:1 13705:1 13710:1 13713:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:6 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:2 14773:1 14794:1 14799:1 14807:1 14812:1 14855:1 14859:1 14865:1 14915:1 14924:2 14932:1 14955:1 14956:1 14983:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15112:1 15117:1 15141:1 15150:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15343:1 15344:2 15346:1 15350:1 15354:2 15372:1 15375:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:2 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15791:1 15800:3 15821:2 15840:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16257:1 16282:1 16373:2 16428:1 16432:1 16492:1 16495:2 16551:1 16577:2 16587:1 16622:1 16624:1 16638:1 16656:1 16675:1 16699:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16979:6 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1470 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17503:1 17508:1 17519:1 17520:3 17557:1 17578:2 17583:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17785:1 17788:1 17792:1 17798:2 17805:1 17806:1 17817:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17952:1 17957:1 17958:1 17970:1 17973:1 17991:3 17997:2 18022:1 18025:1 18037:3 18085:1 18103:1 18109:1 18131:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:1 18266:1 18272:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:15 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18790:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 18989:1 19026:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:1 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:13 19355:1 19356:1 19366:2 19369:2 19380:1 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:2 19587:2 19591:1 19605:1 19607:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:2 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:3 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:3 20258:1 20263:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:1 20433:1 20435:1 20439:1 20441:1 20442:1 20454:1 20464:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:2 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20697:1 20708:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:2 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:4 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:2 22308:1 22317:1 22350:1 22352:1 22363:1 22376:2 22383:1 22400:1 22447:3 22485:1 22501:2 22548:2 22611:2 22625:1 22626:1 22628:1 22632:1 22633:1 22637:3 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:5 22728:3 22732:3 22755:1 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22875:1 22879:1 22889:1 22911:1 22912:1 22929:1 22942:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:6 23189:1 23194:1 23195:1 23198:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:2 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:2 23838:1 23843:2 23870:1 23872:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23962:2 23991:1 23994:1 24013:2 24015:1 24030:1 24051:1 24080:1 24091:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24916:1 24931:1 24936:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:1 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25228:1 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:1 25610:1 25637:1 25676:1 25691:1 25693:1 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:8 26047:1 26077:1 26081:3 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:1 26256:1 26260:1 26263:1 26271:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26338:1 26348:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26407:1 26419:1 26439:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27088:1 27114:1 27120:3 27136:1 27153:3 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:1 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:2 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:5 683:1 695:1 740:1 749:1 750:1 798:1 805:3 806:1 823:1 828:3 853:1 866:1 867:2 889:1 895:3 899:1 927:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1282:1 1288:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:1 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1515:1 1519:2 1523:1 1527:1 1529:3 1530:1 1547:2 1583:1 1592:1 1636:1 1637:2 1638:2 1671:1 1673:3 1688:1 1691:1 1702:3 1725:2 1743:1 1754:2 1774:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:4 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:4 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:1 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:2 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2787:1 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:3 3102:1 3126:7 3153:1 3159:2 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:2 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3904:1 3911:1 3913:1 3928:1 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4118:1 4123:1 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:16 4561:1 4580:1 4597:1 4634:1 4672:2 4688:3 4689:5 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4713:1 4714:2 4715:2 4717:1 4736:4 4780:1 4782:1 4793:2 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:1 5537:1 5585:1 5614:1 5628:2 5632:2 5669:1 5691:1 5702:1 5717:1 5720:1 5731:1 5742:5 5762:1 5777:1 5787:1 5805:1 5855:5 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:3 5940:2 5945:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:1 6321:2 6330:1 6343:4 6344:2 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:1 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7058:1 7065:1 7075:2 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:26 7170:1 7171:17 7226:1 7236:1 7256:1 7330:1 7347:1 7355:1 7363:3 7370:1 7382:1 7389:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:11 7644:1 7653:2 7662:2 7682:1 7689:1 7707:3 7739:1 7762:1 7767:2 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7998:1 8020:2 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8322:1 8365:1 8371:2 8426:1 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:1 8586:1 8608:1 8642:2 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8988:1 8991:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9284:1 9286:1 9296:1 9319:1 9325:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:2 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10133:1 10166:1 10176:1 10179:6 10187:1 10202:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:4 10636:1 10655:1 10663:1 10666:1 10679:1 10681:1 10726:2 10759:2 10763:1 10803:1 10805:1 10826:1 10830:2 10852:1 10854:1 10859:1 10860:2 10862:1 10871:1 10873:3 10875:2 10876:1 10879:3 10880:1 10886:2 10890:1 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11390:1 11398:2 11467:1 11468:1 11506:1 11536:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11718:1 11743:1 11769:1 11779:1 11800:5 11827:1 11854:2 11856:2 11864:1 11865:1 11866:1 11881:1 11908:1 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:3 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:3 12562:2 12581:2 12597:1 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12773:1 12780:2 12795:2 12796:2 12803:1 12817:2 12821:2 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12933:1 12938:1 12947:2 12971:1 12978:1 12993:1 12999:1 13011:2 13041:1 13044:1 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13298:1 13305:1 13327:1 13386:1 13392:1 13411:1 13412:1 13422:1 13428:1 13440:3 13443:1 13447:1 13452:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:2 13705:1 13710:1 13713:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14081:1 14097:1 14111:1 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:6 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:3 14773:1 14794:1 14799:1 14807:1 14812:1 14823:1 14855:1 14859:1 14865:1 14915:1 14924:2 14932:1 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15112:1 15117:1 15141:1 15150:1 15201:1 15207:2 15211:1 15230:2 15244:2 15245:1 15253:1 15259:1 15285:1 15292:2 15297:1 15300:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:1 15354:2 15372:1 15375:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15701:1 15704:2 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15791:1 15800:3 15805:1 15821:2 15840:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:1 15982:1 16038:1 16046:2 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16257:1 16282:1 16373:2 16408:1 16425:1 16428:1 16432:1 16492:1 16495:2 16551:1 16577:2 16587:1 16622:1 16624:1 16638:1 16656:1 16675:1 16699:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:7 17092:2 17103:1 17156:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1538 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:1 17479:1 17488:1 17489:1 17498:1 17503:1 17508:1 17519:1 17520:3 17557:1 17578:2 17583:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17785:1 17788:1 17792:1 17798:2 17805:1 17806:1 17817:1 17837:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:3 17997:2 18008:1 18022:1 18025:1 18037:3 18085:1 18103:1 18109:1 18131:2 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:2 18266:1 18272:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:15 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:1 18587:4 18600:2 18608:1 18616:3 18632:1 18638:1 18642:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18790:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:1 18988:2 18989:1 19026:1 19031:1 19039:1 19046:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:13 19355:1 19356:1 19366:2 19369:2 19380:1 19390:2 19398:1 19440:1 19465:1 19466:1 19510:1 19527:2 19587:2 19591:1 19605:1 19607:1 19610:1 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:2 19757:3 19775:1 19778:1 19799:1 19816:1 19869:1 19876:2 19883:1 19884:1 19900:3 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:2 20238:1 20257:3 20258:1 20263:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20454:1 20464:1 20473:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:3 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20697:1 20708:1 20721:1 20722:1 20732:1 20743:1 20756:1 20768:1 20770:1 20771:2 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:2 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:2 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:4 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22219:1 22264:1 22268:1 22292:2 22308:1 22317:1 22350:1 22352:1 22363:1 22376:2 22383:1 22400:1 22447:3 22485:1 22501:2 22504:1 22548:2 22582:1 22610:1 22611:2 22624:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:6 22728:3 22732:3 22755:1 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22844:1 22875:1 22879:1 22889:1 22911:1 22912:1 22929:1 22942:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:7 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23278:1 23314:3 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23734:1 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:3 23838:1 23843:2 23870:1 23872:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23962:2 23991:1 23994:1 24013:2 24015:1 24030:1 24051:1 24080:1 24091:1 24115:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:8 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:1 24916:1 24931:1 24936:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:1 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:1 25131:1 25133:1 25150:1 25177:1 25194:1 25196:2 25228:1 25243:1 25260:1 25264:1 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:2 25610:1 25637:1 25676:1 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:8 26047:1 26077:1 26081:3 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:1 26401:1 26405:2 26407:1 26419:1 26439:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27088:1 27114:1 27120:3 27136:1 27153:3 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:2 356:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:2 613:1 673:5 683:1 695:1 726:1 740:1 749:1 750:1 798:1 805:3 806:1 823:1 828:3 853:1 866:1 867:3 889:1 895:3 899:1 927:1 929:1 939:1 961:1 967:1 979:1 1049:1 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1282:1 1288:1 1297:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:3 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1515:1 1519:2 1523:1 1527:1 1529:3 1530:2 1547:2 1583:1 1592:1 1636:1 1637:2 1638:2 1671:1 1673:3 1688:1 1691:1 1702:3 1725:2 1743:1 1754:2 1774:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:4 2130:2 2131:1 2135:1 2140:3 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2390:1 2397:1 2425:1 2468:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:2 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2787:1 2851:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:4 3102:1 3126:8 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3264:1 3265:1 3302:1 3310:2 3331:1 3351:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:1 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3563:2 3570:1 3599:1 3602:1 3632:1 3659:2 3661:1 3671:1 3673:1 3675:1 3680:1 3687:1 3692:1 3700:1 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3845:1 3849:4 3854:1 3884:1 3895:2 3904:1 3911:1 3913:1 3928:2 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4098:1 4118:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:17 4561:1 4580:1 4597:1 4599:1 4634:1 4672:2 4688:3 4689:6 4692:1 4695:1 4696:2 4701:1 4703:1 4708:1 4713:1 4714:2 4715:2 4717:1 4736:4 4780:1 4782:1 4793:2 4812:1 4821:1 4851:1 4857:4 4880:2 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5126:1 5140:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5531:1 5537:1 5585:1 5614:1 5628:2 5632:2 5669:1 5691:1 5702:1 5717:1 5720:1 5728:1 5731:1 5742:5 5762:1 5777:1 5787:1 5805:1 5855:5 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:4 5940:2 5945:1 5946:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:1 6321:3 6330:1 6343:4 6344:2 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:1 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:2 6884:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:26 7170:1 7171:17 7226:1 7236:1 7256:2 7330:1 7347:1 7355:1 7363:3 7370:1 7382:1 7389:1 7394:1 7411:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7543:1 7544:1 7574:2 7587:1 7595:1 7599:1 7613:12 7644:1 7653:2 7662:3 7682:1 7689:1 7707:3 7739:1 7751:1 7762:1 7767:2 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7998:1 8020:3 8021:5 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8281:1 8322:1 8365:1 8371:2 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:1 8586:1 8608:1 8642:2 8665:1 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8988:1 8991:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:1 9226:1 9244:1 9284:1 9286:1 9296:1 9319:1 9325:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9839:3 9840:1 9897:1 9941:1 9949:3 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10129:1 10133:1 10166:1 10176:1 10179:7 10187:1 10202:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10536:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:4 10636:1 10655:1 10659:1 10663:1 10666:1 10679:1 10681:1 10726:2 10730:1 10759:2 10763:1 10803:2 10805:1 10826:1 10830:2 10852:2 10854:1 10859:1 10860:2 10862:1 10871:1 10873:3 10875:2 10876:1 10879:3 10880:1 10886:2 10890:1 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11467:1 11468:1 11506:1 11536:1 11541:1 11597:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11718:1 11743:1 11769:1 11779:1 11800:5 11827:1 11841:1 11854:2 11856:2 11864:1 11865:1 11866:1 11881:1 11908:2 11916:1 11918:1 11928:1 11931:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12205:3 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:3 12478:1 12494:1 12497:1 12522:1 12535:2 12549:1 12554:3 12562:2 12581:2 12597:1 12645:1 12650:1 12679:3 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:2 12821:2 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12933:1 12938:1 12947:2 12971:1 12978:1 12993:1 12999:1 13011:2 13041:1 13044:1 13065:1 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:1 13155:1 13162:1 13181:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13297:1 13298:1 13305:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13428:1 13436:1 13440:3 13443:1 13447:1 13452:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13592:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:2 13705:1 13710:1 13713:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:1 14079:1 14081:1 14097:1 14111:2 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:6 14352:2 14357:1 14370:1 14384:3 14417:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:1 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:3 14773:1 14794:1 14799:1 14807:1 14812:1 14823:1 14855:1 14859:1 14865:1 14915:1 14924:2 14932:1 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:2 15023:1 15024:1 15029:1 15030:4 15038:1 15112:1 15117:1 15141:1 15150:1 15201:1 15207:2 15211:1 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:1 15354:2 15372:1 15375:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15791:1 15800:3 15805:1 15821:2 15840:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:1 16038:1 16046:2 16053:1 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16408:1 16425:1 16428:1 16432:1 16434:1 16492:1 16495:2 16551:1 16577:2 16587:1 16622:1 16624:1 16638:2 16656:1 16675:1 16699:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:8 17092:3 17103:1 17156:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17274:1 17286:1584 17288:1 17290:1 17324:2 17343:1 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:2 17479:1 17488:1 17489:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:1 17578:2 17583:1 17585:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17746:1 17785:1 17788:1 17792:1 17798:2 17805:1 17806:1 17817:1 17837:1 17849:1 17859:2 17878:1 17885:3 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:5 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18096:1 18103:1 18104:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:2 18266:1 18272:1 18301:1 18302:1 18307:1 18322:1 18334:1 18336:1 18350:15 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18632:1 18638:1 18642:1 18653:1 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18876:1 18888:1 18909:1 18932:1 18983:2 18984:1 18988:2 18989:2 19026:1 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19318:1 19321:1 19323:2 19324:1 19335:2 19342:1 19346:13 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19398:1 19440:1 19465:1 19466:1 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:3 19757:4 19775:1 19778:1 19799:1 19816:1 19837:1 19869:1 19876:2 19883:1 19884:1 19900:5 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:1 19994:1 19995:1 20009:1 20014:1 20028:1 20036:1 20051:2 20058:1 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:1 20226:1 20235:3 20238:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20449:1 20454:1 20464:1 20473:1 20483:1 20485:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:1 20626:1 20647:1 20655:1 20667:1 20668:1 20677:1 20697:1 20708:1 20721:1 20722:1 20732:1 20743:1 20754:1 20756:1 20768:1 20770:1 20771:2 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21047:3 21050:1 21051:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:2 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21414:1 21426:1 21433:1 21438:1 21496:2 21550:2 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:1 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:4 21762:1 21764:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:2 22028:1 22072:1 22116:1 22189:1 22219:1 22264:1 22268:1 22292:2 22308:1 22317:1 22326:1 22350:1 22352:1 22363:1 22376:2 22383:1 22400:1 22447:3 22485:1 22501:2 22504:1 22548:2 22582:1 22610:1 22611:2 22624:1 22625:1 22626:1 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:7 22728:3 22732:3 22755:1 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22844:1 22875:1 22879:1 22889:1 22911:1 22912:1 22929:1 22942:1 22945:1 22990:1 23016:1 23038:1 23067:1 23134:1 23144:8 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23314:4 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:1 23514:1 23516:1 23528:1 23532:1 23537:2 23541:1 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23734:1 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:4 23838:1 23843:2 23870:1 23872:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23962:2 23967:1 23991:1 23994:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24115:1 24122:1 24141:1 24186:2 24211:1 24221:1 24238:1 24247:9 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:2 24916:1 24923:1 24931:1 24936:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:2 25131:1 25133:1 25150:1 25177:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:2 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25348:1 25351:1 25363:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25412:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:2 25610:1 25637:1 25676:1 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:1 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:8 26047:1 26077:1 26081:3 26094:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:2 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27088:1 27114:1 27120:3 27136:1 27153:3 27162:1 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:2 356:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:3 613:1 673:5 683:1 695:1 726:1 740:1 749:1 750:1 798:1 805:4 806:1 823:1 828:3 853:1 866:1 867:3 889:1 891:1 895:3 899:1 927:2 929:1 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1157:2 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:3 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1505:1 1515:1 1519:2 1523:1 1527:1 1529:3 1530:3 1547:2 1550:1 1583:1 1592:1 1636:1 1637:2 1638:2 1671:1 1673:3 1688:1 1691:1 1702:4 1725:2 1743:1 1754:2 1756:1 1774:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:1 2119:2 2120:1 2124:4 2130:2 2131:1 2135:1 2140:3 2144:1 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2390:1 2397:1 2425:1 2468:1 2475:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:2 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2787:1 2806:1 2839:1 2851:1 2860:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:4 3102:1 3126:8 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3523:1 3563:2 3570:1 3599:1 3602:1 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3845:1 3849:4 3854:2 3884:1 3895:2 3904:1 3911:1 3913:1 3928:2 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4098:1 4118:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:21 4561:1 4580:1 4597:1 4599:1 4634:1 4672:2 4688:3 4689:6 4692:2 4695:1 4696:2 4701:1 4703:2 4708:1 4713:1 4714:2 4715:2 4717:1 4736:4 4758:1 4780:1 4782:1 4793:2 4812:1 4821:1 4851:1 4857:4 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5531:1 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5717:1 5720:1 5728:1 5731:1 5742:5 5762:1 5764:1 5777:1 5787:1 5805:1 5855:5 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:4 5940:2 5945:1 5946:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:2 6321:3 6330:1 6343:4 6344:2 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:2 6884:1 6887:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:1 7096:1 7109:1 7118:1 7151:27 7170:1 7171:17 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7523:1 7543:1 7544:2 7574:2 7584:1 7587:1 7595:1 7599:1 7613:13 7644:1 7653:2 7662:3 7682:1 7689:1 7707:3 7739:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7998:2 8020:3 8021:6 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8281:1 8322:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:1 8586:1 8608:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9226:1 9244:1 9284:1 9286:1 9296:1 9315:1 9319:1 9325:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9823:1 9839:3 9840:1 9850:1 9897:1 9941:1 9949:3 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10176:1 10179:7 10187:1 10202:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10536:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:4 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10726:2 10730:1 10759:2 10763:1 10803:2 10805:1 10826:1 10830:2 10841:1 10852:2 10854:1 10858:1 10859:1 10860:2 10862:1 10871:2 10873:4 10875:2 10876:1 10879:3 10880:1 10886:3 10890:1 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11424:1 11467:1 11468:1 11506:1 11536:1 11541:1 11597:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11718:1 11743:2 11769:1 11779:1 11800:5 11821:1 11827:1 11841:1 11854:2 11856:2 11864:1 11865:1 11866:1 11881:1 11908:2 11916:1 11918:1 11928:1 11931:1 11935:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:4 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:3 12457:1 12478:1 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:3 12562:2 12581:2 12597:1 12645:1 12650:1 12669:1 12679:3 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12999:1 13011:2 13041:1 13044:1 13053:2 13065:2 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13217:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13428:1 13436:1 13440:3 13443:1 13447:1 13452:1 13482:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13592:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13839:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14079:1 14081:1 14097:1 14111:2 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:2 14357:1 14370:1 14384:4 14417:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:3 14773:1 14794:1 14799:1 14807:1 14812:1 14823:1 14855:1 14859:1 14865:1 14915:1 14924:3 14932:2 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:3 15023:1 15024:1 15029:1 15030:4 15038:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15201:1 15207:2 15211:1 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:2 15354:2 15372:1 15375:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15791:1 15800:3 15805:1 15821:2 15840:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16038:2 16046:2 16053:1 16054:1 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16408:1 16425:1 16428:1 16432:1 16434:2 16492:1 16495:2 16542:1 16551:1 16577:2 16587:1 16622:1 16624:1 16638:2 16656:1 16675:1 16699:2 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:8 17092:3 17103:1 17156:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17274:1 17286:1685 17288:1 17290:1 17324:2 17343:2 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:2 17479:1 17488:1 17489:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:2 17583:1 17585:1 17663:1 17690:1 17701:1 17711:1 17713:1 17730:1 17738:1 17746:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:1 17806:1 17817:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:5 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18090:1 18096:1 18103:1 18104:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:2 18266:1 18272:1 18301:1 18302:1 18307:1 18322:1 18334:2 18336:1 18350:15 18369:1 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18632:1 18638:1 18642:1 18653:2 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18888:1 18909:1 18932:1 18950:1 18983:2 18984:1 18988:2 18989:2 19026:1 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:2 19337:1 19342:1 19346:13 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:1 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:3 19757:4 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19869:1 19876:2 19883:1 19884:1 19900:5 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:2 19994:1 19995:1 20009:1 20014:1 20019:1 20021:1 20028:1 20036:1 20051:2 20058:2 20077:2 20079:1 20088:1 20103:2 20116:1 20127:1 20133:1 20147:1 20224:2 20226:1 20235:3 20238:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20449:1 20454:1 20464:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:1 20626:1 20628:1 20647:2 20655:1 20667:1 20668:1 20677:1 20697:1 20708:3 20721:1 20722:1 20732:1 20740:1 20743:1 20754:1 20756:1 20768:1 20770:1 20771:3 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20868:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21043:1 21047:3 21050:1 21051:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21405:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21550:2 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:2 21683:1 21692:3 21695:1 21698:1 21731:1 21736:1 21738:1 21758:4 21762:1 21764:1 21765:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22072:1 22073:1 22104:1 22116:1 22189:1 22219:1 22264:1 22268:1 22292:2 22308:1 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22400:1 22447:3 22464:1 22485:1 22501:2 22504:1 22548:2 22582:1 22610:1 22611:2 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22844:1 22875:1 22879:1 22889:1 22911:1 22912:1 22929:1 22936:1 22942:1 22945:1 22990:1 23016:1 23038:1 23044:1 23067:1 23079:1 23086:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23314:4 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23528:1 23532:1 23537:2 23541:2 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24104:1 24115:2 24122:1 24141:1 24179:1 24186:3 24211:1 24221:1 24238:1 24247:9 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:3 24916:1 24923:1 24931:1 24936:1 24949:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:2 25131:1 25133:1 25142:1 25150:1 25177:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:2 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25412:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:2 25610:1 25637:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25740:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:8 26047:1 26077:1 26081:3 26094:2 26100:1 26141:1 26182:3 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:2 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:3 27136:1 27153:3 27162:2 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 325:1 345:2 356:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 551:1 561:1 565:3 597:4 613:1 673:5 683:1 695:1 726:1 740:1 749:1 750:1 798:1 805:4 806:1 823:1 828:3 853:1 866:1 867:3 889:1 891:1 895:3 899:1 927:2 929:3 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1157:2 1162:1 1166:1 1168:1 1186:1 1187:1 1205:1 1251:3 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:3 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1505:1 1515:3 1519:2 1523:1 1527:1 1529:3 1530:3 1547:2 1550:1 1583:1 1592:1 1636:1 1637:2 1638:2 1671:1 1673:3 1688:1 1691:1 1702:4 1725:2 1743:1 1754:2 1756:1 1774:1 1803:2 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2054:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2130:2 2131:1 2135:1 2140:4 2144:1 2146:2 2147:1 2150:1 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2390:1 2397:1 2425:1 2468:1 2475:1 2512:1 2513:1 2521:1 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:2 2706:1 2721:4 2735:1 2761:2 2768:1 2773:18 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:4 3097:1 3102:1 3126:8 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3460:1 3466:2 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3523:1 3563:2 3570:1 3599:1 3602:1 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3845:1 3849:4 3854:2 3884:1 3895:2 3904:1 3911:1 3913:1 3928:2 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4497:1 4500:1 4536:2 4549:1 4558:21 4561:1 4580:1 4597:1 4599:1 4634:1 4672:2 4688:3 4689:6 4692:2 4695:1 4696:2 4701:1 4703:2 4708:1 4713:1 4714:2 4715:2 4717:1 4736:4 4758:1 4774:2 4780:1 4782:1 4793:2 4812:1 4821:1 4851:1 4857:4 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5531:1 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5717:1 5720:1 5728:1 5731:1 5742:5 5762:1 5764:1 5777:1 5787:1 5805:1 5855:7 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:4 5940:2 5945:1 5946:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:2 6321:3 6330:1 6343:4 6344:3 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6822:1 6833:1 6840:2 6842:1 6846:1 6860:1 6870:1 6876:2 6884:1 6887:1 6891:1 6911:3 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:3 7096:1 7109:3 7118:1 7151:28 7170:1 7171:17 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:1 7473:1 7487:1 7519:1 7523:1 7543:1 7544:2 7574:2 7584:1 7587:1 7595:1 7599:1 7613:15 7644:1 7653:2 7662:3 7682:1 7689:1 7707:3 7739:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7998:2 8020:3 8021:6 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8209:1 8215:2 8238:3 8242:2 8260:1 8281:1 8322:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:1 8586:1 8608:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8728:1 8738:2 8740:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9226:1 9244:1 9284:1 9286:1 9296:1 9315:1 9319:1 9325:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:1 9786:1 9788:1 9789:1 9808:1 9823:1 9839:3 9840:1 9850:1 9897:1 9941:1 9949:3 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10176:1 10179:7 10187:1 10202:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10536:1 10548:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:4 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10726:2 10730:1 10759:2 10763:1 10803:2 10805:1 10826:1 10830:2 10841:1 10852:2 10854:1 10858:1 10859:1 10860:2 10862:1 10871:2 10873:4 10875:2 10876:1 10879:3 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11424:1 11467:1 11468:1 11506:1 11536:1 11541:1 11597:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11718:1 11743:2 11769:1 11779:1 11800:5 11821:1 11827:1 11841:1 11854:2 11856:2 11864:1 11865:1 11866:1 11881:1 11908:2 11916:1 11918:1 11928:1 11931:1 11935:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:1 12134:1 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:4 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:3 12457:1 12478:1 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:3 12562:2 12581:2 12597:1 12645:1 12650:1 12669:1 12679:3 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12999:1 13011:2 13041:1 13044:1 13053:2 13065:2 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13217:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13428:1 13436:1 13440:3 13443:1 13447:1 13452:1 13482:1 13489:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13592:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:1 13839:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14079:1 14081:1 14097:1 14111:2 14114:1 14136:1 14150:1 14154:1 14156:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:2 14357:1 14370:1 14384:5 14417:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:2 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14585:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:3 14773:1 14794:1 14799:1 14807:1 14812:1 14823:1 14855:1 14859:1 14865:1 14915:1 14924:3 14932:2 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:1 15012:1 15019:1 15020:3 15023:2 15024:1 15029:1 15030:4 15036:1 15038:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15201:1 15207:2 15211:1 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:2 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15791:1 15800:3 15805:1 15821:2 15840:1 15904:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16386:1 16408:1 16425:1 16428:1 16432:1 16434:2 16492:1 16495:3 16542:1 16551:1 16577:2 16587:1 16622:1 16624:1 16638:2 16656:1 16675:1 16699:2 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:8 17092:3 17103:1 17156:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17274:1 17286:1726 17288:1 17290:1 17324:2 17343:2 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17451:1 17456:1 17464:2 17479:1 17488:1 17489:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:2 17583:1 17585:1 17663:1 17690:3 17701:1 17711:1 17713:1 17730:1 17738:1 17746:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:1 17806:1 17817:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:5 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18090:1 18096:1 18103:1 18104:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18232:1 18239:2 18266:1 18272:1 18301:1 18302:1 18307:1 18322:1 18334:2 18336:1 18350:15 18369:1 18371:1 18395:1 18399:1 18404:2 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18553:2 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18632:1 18638:1 18642:1 18653:2 18661:1 18664:1 18665:1 18680:1 18700:2 18701:1 18709:1 18732:1 18765:18 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18888:1 18909:1 18932:1 18950:1 18983:2 18984:1 18988:2 18989:2 19026:1 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19346:13 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:1 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:3 19757:4 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19883:1 19884:1 19900:5 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:2 19994:1 19995:1 20009:1 20014:1 20019:1 20021:1 20028:1 20036:1 20051:2 20058:2 20077:2 20079:1 20088:1 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20224:2 20226:1 20235:3 20238:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20449:1 20454:1 20464:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:1 20626:1 20628:1 20647:2 20655:1 20667:1 20668:1 20677:1 20697:1 20708:3 20721:1 20722:1 20732:1 20740:1 20743:1 20754:1 20756:1 20768:1 20770:1 20771:3 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:4 20855:1 20868:1 20870:2 20886:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:2 21043:1 21047:3 21050:1 21051:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21405:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21550:2 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:2 21683:1 21692:3 21695:1 21698:1 21731:1 21736:2 21738:1 21758:4 21762:1 21764:1 21765:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22072:1 22073:1 22104:1 22116:1 22189:1 22218:3 22219:1 22264:1 22268:1 22292:2 22308:1 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22400:1 22447:3 22464:1 22485:1 22493:2 22501:2 22504:1 22548:2 22582:1 22610:1 22611:2 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22773:2 22774:2 22802:1 22804:1 22806:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22942:1 22945:1 22990:1 23016:1 23038:1 23044:1 23067:1 23079:1 23086:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23314:4 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23528:1 23532:1 23537:2 23541:2 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23791:3 23800:1 23810:1 23818:3 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24104:1 24115:2 24122:1 24141:1 24179:1 24186:3 24211:1 24221:1 24238:1 24247:9 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:1 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:3 24916:1 24923:1 24931:1 24936:1 24949:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:5 25128:2 25131:1 25133:1 25138:1 25142:1 25150:1 25177:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:2 25290:3 25304:1 25314:1 25316:1 25322:1 25333:1 25334:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25397:1 25401:1 25404:1 25412:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:1 25536:1 25581:1 25587:2 25610:1 25637:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25740:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25938:1 25956:5 25960:1 25965:1 25971:2 25976:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26042:8 26047:1 26077:1 26081:3 26094:2 26100:1 26141:1 26182:5 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26486:3 26487:1 26500:1 26517:1 26530:1 26531:1 26550:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26934:1 26937:1 26948:1 26960:1 26966:2 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:3 27136:1 27153:3 27162:2 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:2 27294:1 27336:1 27348:1
7 8:1 18:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 509:1 512:1 551:1 561:1 565:4 597:4 613:1 673:5 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 805:6 806:1 823:1 828:3 853:1 866:1 867:3 889:1 891:1 895:4 899:1 927:2 929:3 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1108:1 1140:1 1141:1 1157:2 1162:1 1166:1 1168:1 1179:1 1186:1 1187:1 1205:1 1251:3 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:1 1355:3 1362:1 1407:1 1429:2 1461:1 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1611:1 1636:1 1637:2 1638:2 1643:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2050:1 2054:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:4 2144:1 2146:2 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2390:1 2397:1 2425:1 2468:1 2475:1 2512:1 2513:1 2521:2 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:18 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 3037:1 3051:1 3066:1 3067:1 3075:1 3096:4 3097:1 3102:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3523:1 3563:2 3570:1 3599:1 3602:1 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:4 3854:2 3884:1 3895:2 3904:1 3911:1 3913:1 3928:2 3935:3 3941:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4536:2 4549:1 4558:22 4561:1 4580:1 4597:1 4599:1 4634:1 4672:2 4688:3 4689:6 4692:2 4695:1 4696:2 4701:1 4703:2 4708:1 4713:1 4714:2 4715:2 4717:1 4736:4 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:4 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5531:1 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5787:1 5805:1 5855:8 5874:4 5893:4 5900:1 5901:1 5912:2 5928:3 5929:1 5938:4 5940:2 5945:1 5946:1 5951:2 5952:1 5953:3 5955:2 5956:1 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6166:3 6189:1 6211:1 6213:1 6241:2 6316:2 6321:3 6330:1 6343:4 6344:3 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6508:1 6514:1 6520:1 6523:1 6564:1 6569:1 6582:2 6605:1 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6822:1 6833:1 6840:3 6842:1 6846:1 6860:1 6870:1 6876:2 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:4 7096:1 7109:3 7118:1 7136:1 7151:31 7170:1 7171:17 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:1 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:16 7644:1 7653:2 7662:3 7682:1 7689:1 7693:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8191:1 8208:1 8209:1 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:1 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8728:1 8738:2 8740:1 8741:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:1 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9226:1 9244:1 9284:1 9286:1 9296:1 9315:1 9319:1 9325:1 9334:1 9335:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9702:1 9705:1 9728:1 9740:1 9755:1 9757:1 9761:1 9762:1 9780:2 9786:1 9788:1 9789:1 9808:1 9823:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9949:4 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:1 10176:1 10179:7 10187:1 10202:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10474:1 10497:1 10509:1 10530:1 10536:1 10548:1 10552:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:4 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:3 10805:2 10826:1 10830:2 10841:1 10852:2 10854:1 10858:1 10859:1 10860:2 10862:1 10871:2 10873:4 10875:2 10876:1 10879:3 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10940:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11419:1 11424:1 11467:1 11468:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11854:2 11856:2 11864:1 11865:1 11866:1 11881:1 11908:2 11916:1 11918:2 11928:1 11931:1 11935:1 11946:1 11951:1 11958:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:1 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:5 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:4 12457:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:3 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12669:2 12679:3 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12999:1 13011:2 13041:1 13044:1 13053:2 13065:2 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13217:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13428:1 13436:1 13440:3 13443:1 13446:1 13447:1 13452:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13578:1 13585:1 13592:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:2 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14097:1 14111:2 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:3 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14571:1 14583:1 14585:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:4 14773:1 14776:1 14794:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14924:3 14932:2 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:2 15024:1 15029:1 15030:4 15036:1 15038:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:3 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15791:1 15800:3 15805:1 15821:2 15840:1 15904:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:1 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16115:1 16124:1 16129:1 16133:1 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16386:1 16408:1 16425:1 16428:1 16432:1 16434:2 16492:1 16495:3 16542:1 16551:1 16577:2 16587:1 16622:1 16624:1 16638:2 16656:3 16665:1 16675:1 16699:2 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:8 17092:3 17103:3 17118:1 17156:1 17163:1 17173:1 17176:1 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17274:1 17286:1869 17288:1 17290:1 17324:2 17343:2 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:1 17806:1 17817:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:5 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18090:1 18096:1 18103:1 18104:1 18105:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:1 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:2 18336:1 18342:1 18350:15 18369:1 18371:1 18395:1 18399:1 18404:3 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18632:1 18638:1 18642:1 18653:2 18661:1 18664:1 18665:1 18680:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18765:18 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:1 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19200:3 19212:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19346:13 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:1 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19754:3 19757:4 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19883:1 19884:1 19900:5 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:2 19994:1 19995:1 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:2 20079:1 20088:1 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20224:2 20226:1 20235:3 20238:1 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:1 20626:1 20628:1 20647:2 20655:1 20667:1 20668:1 20677:1 20697:1 20708:3 20721:1 20722:1 20732:1 20740:1 20743:1 20754:1 20756:1 20768:1 20770:1 20771:4 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:3 21043:1 21047:3 21050:1 21051:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21146:5 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21405:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:2 21683:1 21692:3 21695:1 21698:1 21731:1 21736:2 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21946:2 21951:1 21957:2 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22072:1 22073:1 22104:1 22116:1 22189:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:1 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22400:1 22444:1 22447:3 22464:1 22485:1 22493:2 22501:2 22504:1 22548:2 22559:1 22582:1 22610:1 22611:2 22620:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:3 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22773:3 22774:2 22802:1 22804:1 22806:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22942:1 22945:1 22990:1 23016:1 23038:1 23044:1 23067:1 23079:1 23086:1 23097:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23314:5 23327:1 23341:4 23355:1 23406:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23528:1 23532:1 23537:2 23541:2 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23789:1 23791:3 23800:1 23810:1 23818:3 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24141:1 24179:1 24186:3 24211:1 24221:1 24238:1 24247:11 24248:2 24259:1 24297:2 24315:1 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:1 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:3 24916:1 24923:1 24931:1 24936:1 24949:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:1 25177:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:2 25290:3 25304:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25401:2 25404:1 25412:1 25414:1 25419:1 25450:1 25458:1 25502:1 25510:3 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25740:1 25745:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26034:1 26042:8 26047:1 26077:1 26081:3 26094:2 26100:1 26141:1 26176:1 26182:5 26192:1 26213:1 26215:4 26219:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:3 26487:1 26500:1 26517:1 26530:1 26531:1 26550:1 26551:1 26563:1 26568:1 26592:1 26616:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26769:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26966:2 26971:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27136:1 27153:3 27162:2 27182:1 27198:1 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:3 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 509:1 512:1 524:1 551:1 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 805:6 806:1 823:1 828:3 853:1 866:1 867:3 889:1 891:1 895:4 899:1 927:2 929:3 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:1 1108:1 1140:1 1141:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1251:3 1269:1 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1407:1 1429:2 1461:2 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:2 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2047:1 2050:1 2054:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:2 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2390:1 2397:1 2425:1 2468:1 2475:1 2512:1 2513:1 2521:2 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:18 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 2994:1 3037:1 3051:1 3053:1 3066:1 3067:1 3075:1 3096:4 3097:1 3102:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3523:1 3563:2 3570:1 3581:1 3599:1 3602:1 3617:1 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:4 3854:2 3884:1 3895:2 3904:1 3911:1 3913:1 3928:3 3935:3 3941:2 3942:1 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4536:2 4549:1 4558:23 4561:1 4580:1 4597:1 4599:1 4634:1 4653:1 4672:2 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:1 4713:1 4714:2 4715:2 4717:1 4736:4 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:4 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5303:1 5307:1 5319:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5531:1 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5855:8 5874:4 5893:4 5900:1 5901:1 5912:2 5928:4 5929:1 5938:4 5940:2 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6189:1 6211:1 6213:1 6241:3 6299:1 6316:2 6321:3 6330:1 6343:4 6344:3 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:2 6605:1 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:1 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:4 7096:1 7109:3 7118:1 7136:1 7137:1 7151:31 7170:1 7171:17 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:1 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:18 7644:1 7653:2 7662:3 7682:1 7689:1 7693:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8187:2 8191:1 8208:1 8209:1 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8753:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8889:2 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9050:1 9055:1 9060:1 9087:1 9090:2 9109:1 9122:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9358:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9659:1 9693:1 9696:1 9702:1 9705:1 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9808:1 9823:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9949:4 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:1 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:1 10176:1 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10468:1 10473:1 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:1 10552:1 10555:1 10567:1 10573:2 10578:1 10582:1 10600:1 10602:5 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:2 10826:1 10830:2 10841:1 10852:2 10854:1 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:3 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10940:1 10941:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11316:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11419:1 11424:1 11467:1 11468:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11713:1 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11854:2 11856:2 11864:1 11865:1 11866:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:1 11931:1 11935:1 11946:1 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:1 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:5 12228:1 12253:1 12263:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:4 12457:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:3 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12669:2 12679:3 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12999:1 13011:2 13041:1 13044:1 13053:2 13065:2 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13240:1 13263:1 13265:1 13277:1 13284:1 13286:3 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:1 13428:1 13436:1 13440:3 13443:1 13446:1 13447:1 13452:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13609:1 13622:1 13628:1 13655:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:1 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14243:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:3 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14571:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:4 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:1 14924:3 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15029:1 15030:4 15036:2 15038:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15181:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:16 15484:1 15504:1 15507:2 15539:2 15550:3 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15783:1 15791:1 15800:3 15805:1 15821:2 15840:1 15904:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:1 16079:1 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16492:1 16495:3 16542:1 16551:1 16577:2 16587:1 16622:1 16624:1 16638:2 16656:3 16665:1 16675:1 16699:2 16706:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:8 17092:3 17103:3 17118:1 17156:1 17163:1 17173:1 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17274:1 17286:1967 17288:1 17290:1 17324:2 17343:2 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18090:1 18096:1 18103:1 18104:1 18105:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:2 18336:1 18342:1 18350:15 18369:1 18371:1 18376:1 18395:1 18399:1 18404:3 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18632:1 18638:1 18642:1 18653:2 18661:1 18664:1 18665:1 18680:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18765:18 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:1 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19165:1 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19296:1 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19346:13 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:2 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:4 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19883:1 19884:1 19885:1 19900:6 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:2 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:2 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20677:1 20697:1 20700:1 20708:3 20719:1 20721:1 20722:1 20732:1 20740:1 20743:1 20748:1 20754:1 20756:1 20768:1 20770:1 20771:4 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:1 21012:1 21020:1 21034:3 21043:1 21047:3 21050:1 21051:1 21054:1 21083:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21146:6 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21232:1 21251:1 21258:1 21262:1 21309:1 21315:1 21365:1 21372:1 21401:1 21405:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:2 21683:1 21692:3 21695:1 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21946:2 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22095:1 22104:1 22116:1 22180:1 22189:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22485:1 22493:2 22501:2 22504:1 22548:2 22559:1 22582:1 22610:1 22611:2 22620:2 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:2 22802:1 22804:1 22806:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22942:1 22945:1 22990:1 23016:1 23038:1 23044:1 23067:1 23079:1 23086:1 23097:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23314:5 23327:1 23341:4 23355:1 23404:2 23406:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23528:1 23532:1 23537:2 23541:3 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23789:1 23791:3 23800:1 23810:1 23818:4 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24141:1 24170:1 24179:1 24186:3 24211:1 24221:1 24238:1 24247:11 24248:2 24259:1 24297:2 24315:2 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:3 24916:1 24923:1 24931:1 24936:1 24949:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:3 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25083:2 25104:1 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:1 25177:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:3 25290:3 25304:1 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25401:2 25404:1 25412:1 25414:1 25419:1 25444:1 25450:1 25458:1 25502:1 25510:3 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25740:1 25745:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26176:1 26182:5 26192:1 26213:1 26215:4 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:3 26487:2 26500:1 26517:1 26530:1 26531:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26640:1 26649:1 26654:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26769:1 26813:1 26816:1 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26966:2 26971:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27124:1 27136:1 27153:3 27162:2 27182:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 81:1 86:1 91:1 109:1 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 459:1 472:1 477:1 509:1 512:1 524:1 551:1 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 805:6 806:1 823:1 828:3 853:1 866:1 867:3 889:1 891:1 895:4 899:1 927:2 929:3 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:1 1108:1 1126:1 1140:1 1141:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1407:1 1429:2 1461:2 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:1 2041:1 2047:1 2050:1 2054:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:2 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2390:1 2397:1 2425:1 2468:1 2475:1 2512:1 2513:1 2521:2 2537:1 2551:2 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:19 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2894:1 2909:1 2912:1 2949:1 2956:2 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:4 3097:1 3102:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3508:1 3522:1 3523:1 3563:2 3570:1 3581:1 3599:1 3602:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:4 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4021:2 4033:2 4041:1 4058:2 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4536:2 4549:1 4558:23 4561:1 4580:1 4597:1 4599:1 4634:1 4653:1 4672:2 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:1 4713:1 4714:2 4715:2 4716:1 4717:1 4736:4 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:4 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5531:1 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5855:8 5874:4 5893:4 5900:1 5901:1 5912:2 5928:4 5929:1 5938:4 5940:2 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:1 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6189:1 6211:1 6213:1 6241:3 6299:1 6316:2 6321:3 6330:1 6343:4 6344:3 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:2 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:4 7096:1 7109:3 7118:1 7136:1 7137:1 7151:31 7170:1 7171:18 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:1 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:18 7644:1 7653:2 7662:3 7682:1 7689:1 7693:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8106:2 8123:1 8135:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:1 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8889:2 8897:1 8898:1 8900:1 8903:2 8922:2 8923:2 8936:2 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9050:1 9055:1 9060:1 9073:1 9087:1 9090:2 9109:1 9122:1 9177:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9358:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:1 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:1 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:1 10176:1 10177:1 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:1 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:5 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:2 10826:1 10830:2 10841:1 10852:2 10854:1 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:3 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10927:1 10928:1 10929:1 10940:1 10941:1 10954:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11291:1 11301:1 11311:1 11316:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11419:1 11424:1 11467:1 11468:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11674:1 11712:1 11713:2 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:1 11931:1 11935:1 11946:1 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:5 12228:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:4 12457:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:3 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12668:1 12669:2 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12763:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:1 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13093:1 13123:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:1 13265:1 13277:1 13284:2 13286:3 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:2 13428:1 13436:1 13440:3 13443:1 13446:1 13447:1 13452:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:1 13628:1 13655:1 13680:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14243:1 14244:1 14245:4 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:1 14479:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:3 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14571:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:4 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:3 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15029:1 15030:4 15036:2 15038:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15181:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:17 15484:1 15504:1 15507:2 15539:2 15550:3 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15783:1 15791:1 15800:3 15805:1 15821:2 15840:1 15904:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:1 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16490:1 16492:1 16495:3 16542:1 16551:1 16577:2 16587:2 16622:1 16624:1 16638:2 16656:3 16665:1 16675:1 16699:2 16706:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16971:1 16979:7 16992:1 17040:1 17041:1 17083:8 17092:3 17103:3 17118:1 17156:1 17163:1 17173:1 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17274:1 17286:2010 17288:1 17290:1 17324:2 17343:2 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18090:1 18096:1 18103:1 18104:1 18105:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:2 18336:1 18342:1 18350:16 18369:1 18371:1 18376:1 18395:1 18399:1 18404:3 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18632:1 18638:1 18642:1 18653:2 18661:1 18664:1 18665:1 18680:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18765:19 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:1 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:1 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:14 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:2 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:4 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:2 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:1 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20677:1 20697:1 20700:1 20708:3 20719:1 20721:1 20722:1 20732:2 20740:1 20743:1 20748:1 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:1 21020:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21146:6 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21232:1 21251:1 21258:1 21262:1 21283:1 21309:1 21315:1 21365:1 21372:1 21387:1 21401:1 21405:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21662:1 21674:3 21683:1 21692:3 21695:1 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22095:1 22104:1 22116:1 22180:1 22189:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22485:1 22493:2 22501:2 22504:1 22548:2 22559:1 22582:1 22610:1 22611:2 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22942:1 22945:1 22953:1 22990:1 23016:1 23038:1 23044:2 23067:1 23079:1 23086:1 23097:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23297:1 23314:5 23327:1 23341:4 23355:1 23404:2 23406:1 23412:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23528:1 23532:1 23537:2 23541:3 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:1 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23789:1 23791:3 23800:1 23810:1 23818:4 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:11 24248:2 24259:1 24297:2 24315:2 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:1 24828:2 24835:1 24841:1 24861:1 24879:1 24888:1 24890:3 24916:1 24923:1 24931:1 24936:1 24949:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:1 25070:2 25072:2 25074:1 25083:2 25104:1 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:3 25290:3 25304:1 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25401:2 25404:1 25412:1 25414:1 25419:1 25444:1 25450:1 25458:1 25502:1 25510:3 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:1 25709:1 25740:1 25745:1 25751:1 25767:1 25796:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26176:1 26182:5 26192:1 26213:1 26215:4 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:3 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26769:1 26783:1 26813:1 26816:2 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26966:2 26971:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27124:1 27136:1 27153:3 27162:2 27182:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:4 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 459:1 472:1 473:1 477:1 509:1 512:1 524:1 551:1 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 805:6 806:1 823:1 828:3 853:1 866:1 867:3 889:1 891:1 895:4 899:1 927:2 929:3 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:1 1108:1 1126:1 1129:1 1140:1 1141:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1407:1 1429:2 1461:2 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:1 1999:1 2010:2 2017:1 2022:2 2041:1 2047:1 2050:1 2054:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2253:1 2266:1 2303:1 2311:1 2324:1 2356:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2425:1 2468:1 2475:1 2512:1 2513:1 2521:2 2537:1 2551:3 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:4 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:19 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:1 2956:2 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:5 3097:1 3102:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:1 3508:1 3522:1 3523:1 3563:2 3570:1 3581:1 3599:1 3602:1 3611:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:4 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4173:1 4175:1 4231:4 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:2 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4536:2 4549:1 4558:24 4561:1 4580:1 4597:1 4599:1 4634:1 4653:1 4672:2 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:1 4713:1 4714:2 4715:2 4716:1 4717:1 4736:4 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:4 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:2 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5531:1 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5855:8 5874:4 5893:4 5900:1 5901:1 5912:2 5928:4 5929:1 5938:5 5940:2 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6241:4 6299:1 6316:2 6321:3 6330:1 6343:4 6344:3 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:2 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:3 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:3 7087:4 7096:1 7109:3 7118:1 7136:1 7137:1 7151:32 7170:1 7171:18 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:1 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:19 7644:1 7653:2 7662:3 7682:1 7689:1 7693:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:1 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8493:2 8507:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8751:1 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8889:2 8897:1 8898:1 8900:1 8903:3 8922:2 8923:2 8936:3 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9090:2 9109:1 9122:1 9177:1 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:2 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:1 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:1 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:1 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:5 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:2 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:3 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10927:1 10928:1 10929:2 10940:1 10941:1 10954:1 10958:1 10962:3 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:4 11207:1 11218:4 11230:1 11255:1 11273:1 11284:1 11291:1 11301:1 11311:1 11316:1 11319:2 11331:1 11333:1 11344:1 11369:1 11390:1 11398:2 11419:1 11424:1 11467:1 11468:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11674:1 11712:1 11713:2 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:1 11931:1 11935:1 11946:1 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:5 12228:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12403:1 12428:4 12457:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:3 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12754:1 12763:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13093:1 13123:1 13127:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:1 13265:1 13271:1 13277:1 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:2 13428:1 13436:1 13440:3 13443:1 13446:1 13447:1 13452:1 13471:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:1 13628:1 13655:1 13665:1 13680:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14243:1 14244:1 14245:5 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:1 14479:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:4 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14571:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:4 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:3 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15181:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:2 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:17 15484:1 15504:1 15507:2 15539:2 15540:1 15550:3 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:1 15779:1 15783:1 15791:1 15800:3 15805:1 15821:2 15840:1 15889:1 15904:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:1 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16490:1 16492:1 16495:3 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16656:3 16665:1 16675:1 16699:2 16706:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16893:1 16908:1 16909:1 16923:1 16953:1 16971:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:8 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:1 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17274:1 17286:2052 17288:1 17290:1 17324:2 17343:2 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18085:1 18090:1 18096:1 18103:1 18104:1 18105:1 18109:1 18131:2 18141:1 18159:1 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:2 18336:1 18342:1 18350:16 18369:1 18371:1 18376:1 18395:1 18399:1 18404:4 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18632:1 18638:1 18642:1 18653:2 18661:1 18664:1 18665:1 18680:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18765:19 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:2 19031:1 19039:1 19046:1 19124:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:1 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:14 19355:1 19356:1 19366:2 19369:3 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:2 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:5 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:1 19955:5 19956:1 19962:1 19964:1 19966:2 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:1 20310:1 20346:2 20367:2 20375:1 20378:1 20403:4 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20565:1 20575:1 20580:1 20589:4 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20732:2 20740:1 20743:1 20748:1 20751:1 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:1 21020:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21146:6 21150:1 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21232:1 21251:1 21258:1 21262:1 21283:1 21309:1 21315:1 21365:2 21372:1 21387:1 21401:1 21405:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:1 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22095:1 22104:1 22116:1 22180:1 22189:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22485:1 22493:2 22501:2 22504:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22942:1 22945:1 22953:1 22976:1 22990:1 23016:1 23038:1 23044:2 23067:1 23079:1 23086:1 23097:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23297:1 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23528:1 23532:1 23537:2 23541:3 23542:1 23554:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:1 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23789:1 23791:3 23800:1 23810:1 23818:5 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:11 24248:2 24259:1 24297:2 24315:2 24321:1 24344:1 24345:1 24354:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24879:1 24888:1 24890:3 24916:1 24923:1 24931:1 24936:1 24949:1 24978:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:2 25070:2 25072:2 25074:1 25083:2 25104:1 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25228:1 25243:1 25260:1 25264:3 25290:3 25304:1 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25401:2 25404:1 25412:1 25414:1 25419:1 25444:1 25450:1 25458:1 25502:1 25510:3 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:2 25709:1 25740:1 25745:2 25751:1 25767:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26176:1 26182:5 26192:1 26213:1 26215:4 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:4 26310:1 26329:1 26334:1 26338:1 26348:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:3 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26769:1 26783:1 26813:1 26816:2 26825:1 26848:1 26851:1 26868:2 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26966:2 26971:1 26985:1 27001:2 27020:2 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27124:1 27136:1 27153:3 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:2 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 459:1 472:1 473:1 477:1 509:1 512:1 519:1 524:1 551:2 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 805:7 806:1 823:1 828:3 831:1 853:1 866:1 867:3 889:1 891:1 895:4 899:1 927:2 929:3 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:1 1108:1 1126:1 1129:1 1140:1 1141:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1247:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1407:1 1429:2 1461:2 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:2 1999:1 2010:2 2017:1 2022:2 2041:1 2047:1 2050:1 2053:1 2054:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2253:1 2266:1 2271:1 2303:1 2311:1 2324:1 2356:1 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2425:1 2468:1 2475:1 2493:1 2512:1 2513:1 2521:2 2537:1 2551:3 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:7 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:19 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:2 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:5 3097:1 3102:1 3121:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:1 3508:1 3522:1 3523:1 3533:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:1 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:1 4359:1 4362:3 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:2 4549:1 4558:26 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:2 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:1 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5531:2 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:5 5940:2 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6423:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:1 6655:1 6657:1 6664:1 6665:2 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:5 7087:5 7096:1 7109:3 7118:1 7136:1 7137:1 7151:32 7170:1 7171:18 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:4 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:19 7644:1 7653:2 7662:3 7682:1 7689:1 7693:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8478:1 8484:1 8493:2 8507:1 8511:1 8545:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8751:1 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8889:2 8897:1 8898:1 8900:1 8903:3 8922:2 8923:2 8936:3 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:2 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:1 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:2 9522:2 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:1 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:1 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:5 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:4 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:1 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:5 11207:1 11218:5 11230:1 11255:1 11273:1 11284:1 11291:1 11301:1 11311:1 11313:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:1 11674:1 11688:1 11712:1 11713:2 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:1 11931:1 11935:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:5 12228:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:1 12364:1 12373:2 12383:1 12403:1 12428:6 12457:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12744:1 12754:1 12757:2 12763:1 12773:2 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13083:1 13093:1 13123:1 13127:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:1 13265:1 13271:1 13277:1 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:2 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13452:2 13471:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:1 13680:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13915:1 13929:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14243:1 14244:1 14245:5 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14315:1 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:1 14479:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:4 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14571:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15181:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:17 15484:1 15504:1 15507:2 15539:2 15540:1 15550:3 15561:1 15568:1 15621:1 15632:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:2 15779:1 15783:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15926:4 15933:1 15936:1 15938:1 15949:1 15956:2 15982:2 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16490:1 16492:1 16495:3 16534:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16863:1 16893:1 16908:1 16909:1 16923:1 16934:1 16953:1 16971:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17272:1 17274:1 17286:2113 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17605:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18058:1 18085:1 18090:1 18096:1 18103:1 18104:1 18105:1 18109:1 18131:2 18141:1 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:3 18336:1 18342:1 18350:16 18355:1 18369:1 18371:1 18376:1 18395:1 18399:1 18404:4 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:1 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18753:1 18765:19 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:2 19031:1 19039:1 19046:1 19124:1 19135:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:14 19355:1 19356:1 19366:2 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:2 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19645:3 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:5 19775:1 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:2 19954:1 19955:5 19956:1 19962:1 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20559:1 20565:1 20575:1 20580:1 20585:1 20589:4 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20732:2 20740:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:1 21020:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:6 21150:1 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21218:1 21232:1 21251:1 21258:1 21262:1 21283:1 21309:1 21315:1 21337:1 21365:2 21372:1 21387:1 21401:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22095:1 22104:1 22116:1 22174:1 22180:1 22189:1 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22469:1 22485:1 22493:2 22501:2 22504:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23016:1 23038:1 23044:2 23067:1 23079:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23245:1 23259:1 23278:1 23297:1 23312:1 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:2 23541:3 23542:2 23554:1 23559:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23768:1 23789:1 23791:3 23800:1 23810:1 23818:5 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24297:2 24315:2 24321:1 24344:1 24345:1 24354:2 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24879:1 24888:1 24890:3 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:3 25039:1 25051:1 25053:2 25070:2 25072:2 25074:1 25083:2 25104:1 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:1 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25401:2 25404:1 25412:1 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:1 25510:3 25526:1 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:2 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25937:1 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26176:2 26182:5 26192:1 26213:1 26215:6 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:4 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27023:1 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27124:1 27136:1 27153:3 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:1 27244:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 459:1 472:1 473:1 477:1 509:1 512:1 519:1 524:1 551:2 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 805:7 806:1 823:2 828:3 831:1 853:1 866:2 867:3 889:1 891:1 895:4 899:1 927:2 929:3 936:1 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:1 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1247:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1407:1 1429:2 1461:2 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1986:1 1997:2 1999:1 2010:2 2017:1 2022:2 2041:1 2047:1 2050:1 2053:2 2054:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2271:1 2303:1 2311:1 2324:1 2356:1 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2425:1 2468:1 2475:1 2493:1 2512:1 2513:1 2521:2 2537:1 2551:3 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:7 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:20 2787:1 2806:1 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:3 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:5 3097:1 3102:1 3121:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:1 3508:1 3522:1 3523:1 3533:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:1 4362:3 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:2 4549:1 4558:26 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:2 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:1 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5531:2 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:5 5940:3 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6423:2 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:6 7087:5 7096:1 7109:3 7118:1 7136:1 7137:1 7151:32 7170:1 7171:19 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:4 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:20 7617:1 7644:1 7651:1 7653:2 7662:3 7682:1 7689:1 7693:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7852:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8478:1 8484:1 8493:2 8507:1 8511:1 8545:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8751:1 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8889:2 8897:1 8898:1 8900:1 8903:4 8922:2 8923:2 8936:4 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:3 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:2 9522:2 9533:1 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:1 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:5 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:4 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:5 11207:1 11218:5 11230:1 11255:1 11273:1 11284:1 11291:1 11301:1 11311:1 11313:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:2 11674:1 11678:1 11688:1 11712:1 11713:2 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:1 11931:1 11935:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:1 12205:5 12228:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:1 12343:3 12345:2 12356:2 12364:1 12373:2 12383:1 12403:1 12428:6 12457:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12744:1 12754:1 12757:2 12763:1 12773:3 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13083:1 13093:1 13123:1 13127:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13271:1 13277:1 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:2 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13452:2 13471:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:1 13680:1 13694:2 13705:1 13710:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:1 14315:1 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:2 14479:1 14480:1 14482:1 14486:1 14488:2 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14563:1 14571:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15181:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:18 15484:1 15504:1 15507:2 15510:1 15539:2 15540:1 15550:3 15561:1 15568:1 15621:1 15632:1 15655:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:3 15779:1 15783:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15949:2 15956:2 15982:2 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16490:1 16492:1 16495:3 16534:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16804:1 16823:1 16828:1 16857:1 16858:1 16863:1 16893:1 16908:1 16909:1 16923:1 16934:1 16953:1 16971:1 16975:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17272:1 17274:1 17286:2149 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17605:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18058:1 18085:1 18090:1 18096:1 18103:1 18104:1 18105:1 18109:1 18131:2 18141:1 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:3 18336:1 18342:1 18350:17 18355:1 18369:1 18371:1 18376:1 18395:1 18399:1 18404:5 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:1 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18745:1 18753:1 18765:20 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:3 19031:1 19039:1 19046:1 19124:1 19135:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:15 19355:1 19356:1 19366:3 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:3 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:3 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:5 19775:2 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:2 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20559:1 20565:2 20575:1 20580:1 20585:1 20589:4 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20731:1 20732:2 20740:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:1 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:7 21150:1 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21218:1 21232:1 21251:1 21258:1 21262:1 21283:1 21309:1 21315:1 21337:1 21365:2 21372:1 21386:1 21387:1 21401:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22095:1 22104:1 22116:1 22118:1 22174:1 22180:1 22189:1 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22469:1 22485:1 22493:2 22501:2 22504:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23016:1 23038:1 23044:2 23067:1 23079:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23223:1 23245:1 23259:1 23278:1 23297:1 23312:2 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:2 23541:3 23542:2 23554:1 23559:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23768:1 23789:1 23791:3 23800:1 23810:1 23818:6 23820:4 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24297:3 24315:2 24321:1 24344:1 24345:1 24354:2 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24879:1 24888:1 24890:3 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:4 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25083:2 25104:1 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:1 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:1 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:2 25510:3 25526:1 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25691:2 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25937:1 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26176:2 26182:5 26192:1 26213:1 26215:7 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:4 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26721:2 26723:1 26728:1 26730:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27023:1 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27124:1 27136:1 27153:3 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:2 27244:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 459:1 472:1 473:1 477:2 509:1 512:1 519:1 524:1 551:2 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 802:1 805:7 806:1 823:2 828:3 831:1 853:1 866:2 867:3 889:1 891:1 895:4 899:1 927:2 929:3 936:1 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:1 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1247:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1407:1 1429:2 1461:2 1469:2 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1985:1 1986:1 1997:2 1999:1 2010:2 2017:1 2022:2 2041:1 2047:1 2050:1 2053:2 2054:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2101:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2271:1 2303:1 2311:1 2324:1 2356:1 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2425:1 2468:1 2475:1 2493:1 2512:1 2513:1 2521:2 2537:1 2551:3 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:7 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:20 2787:1 2806:2 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:3 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:5 3097:1 3102:1 3121:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:2 3508:1 3522:1 3523:1 3533:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:1 4362:3 4370:1 4376:1 4379:1 4386:1 4395:1 4409:2 4425:2 4444:1 4449:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:2 4549:1 4558:26 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:2 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:1 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5226:1 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5531:2 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:5 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:5 5940:3 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6423:2 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:1 6707:1 6732:2 6744:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:6 7087:5 7096:1 7109:3 7118:1 7136:1 7137:1 7151:32 7170:1 7171:19 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:4 7544:2 7549:1 7574:2 7584:1 7587:1 7595:1 7599:1 7613:20 7617:1 7644:1 7651:1 7653:2 7662:3 7682:1 7689:1 7693:1 7695:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7852:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8395:1 8426:2 8440:5 8443:1 8478:1 8484:1 8493:2 8507:1 8511:1 8545:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8751:1 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:1 8889:2 8897:1 8898:1 8900:1 8903:4 8922:2 8923:3 8936:4 8959:1 8961:1 8977:1 8988:1 8991:1 9008:1 9034:3 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:3 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:3 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:2 9522:2 9533:1 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:1 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:1 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9943:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10437:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:5 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10695:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:4 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:4 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11201:2 11202:5 11207:1 11218:5 11230:1 11255:1 11273:1 11284:1 11291:1 11301:1 11311:1 11313:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:2 11674:1 11678:1 11688:1 11712:1 11713:2 11718:1 11743:2 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:1 11931:1 11935:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:2 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:2 12205:5 12228:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:2 12343:3 12345:2 12356:3 12364:1 12373:2 12383:1 12403:1 12428:6 12457:1 12477:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:2 12581:2 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12744:1 12754:1 12757:2 12763:1 12773:4 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13083:1 13093:1 13123:1 13127:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13271:1 13277:1 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:2 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13452:2 13471:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:1 13680:1 13694:2 13705:1 13710:1 13712:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:2 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:1 14315:2 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:2 14479:1 14480:1 14482:1 14486:1 14488:2 14489:1 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14563:1 14571:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15181:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:18 15484:1 15504:1 15507:2 15510:1 15539:2 15540:2 15550:3 15561:1 15568:1 15621:1 15632:1 15655:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:3 15779:1 15783:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15949:2 15956:2 15982:2 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16130:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16490:1 16492:1 16495:3 16534:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:1 16784:1 16790:1 16804:1 16823:1 16828:1 16857:1 16858:1 16863:1 16893:1 16908:1 16909:1 16923:1 16934:1 16953:1 16971:1 16975:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17272:1 17274:1 17286:2157 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17605:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18058:1 18085:1 18090:1 18096:1 18103:1 18104:2 18105:1 18109:1 18131:2 18141:2 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18212:1 18227:1 18232:1 18239:2 18266:1 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:3 18336:1 18342:1 18350:17 18355:1 18369:1 18371:1 18376:1 18395:1 18399:1 18404:5 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:1 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18745:1 18753:1 18765:20 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19026:3 19031:1 19039:1 19046:1 19124:1 19135:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:15 19355:1 19356:1 19366:3 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:4 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:3 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:5 19775:2 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:2 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20354:1 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20559:1 20565:2 20575:1 20580:1 20585:1 20589:5 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20731:1 20732:2 20740:1 20742:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20909:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:1 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21082:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:7 21150:1 21156:1 21157:1 21163:1 21175:1 21194:3 21195:2 21218:1 21232:1 21251:1 21258:1 21262:1 21283:1 21309:1 21315:1 21337:1 21365:2 21372:1 21386:1 21387:1 21401:1 21402:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21627:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22095:1 22104:1 22116:1 22118:1 22174:1 22180:1 22189:2 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22469:1 22485:1 22493:2 22501:2 22504:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23016:1 23038:1 23044:2 23067:1 23079:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23213:1 23223:1 23245:1 23259:1 23278:1 23297:1 23312:2 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:2 23541:3 23542:2 23554:1 23559:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23765:1 23768:1 23789:1 23791:3 23800:1 23810:1 23818:6 23820:5 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24133:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24297:3 24315:2 24321:1 24344:1 24345:1 24354:2 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24629:1 24648:1 24650:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24866:1 24879:1 24888:1 24890:3 24893:1 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:4 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25083:2 25104:1 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:1 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:2 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:2 25510:3 25514:1 25526:1 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25690:1 25691:2 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25937:1 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26176:2 26182:5 26192:1 26213:1 26215:7 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26477:1 26486:4 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26712:1 26721:2 26723:1 26728:1 26730:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27023:1 27037:1 27046:1 27058:1 27081:1 27082:1 27087:1 27088:1 27114:1 27120:4 27124:1 27136:1 27153:3 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:2 27244:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 365:1 366:1 381:1 413:1 432:1 437:1 438:1 459:1 472:1 473:1 477:2 509:1 512:1 519:1 524:1 551:2 561:1 565:4 597:4 613:1 619:1 673:6 683:1 695:1 726:1 740:1 749:1 750:1 789:1 798:1 802:1 805:7 806:1 823:2 828:3 831:1 853:1 866:2 867:3 889:1 891:1 895:4 899:1 927:2 929:3 936:1 939:1 961:1 967:1 979:1 1020:1 1049:2 1059:2 1068:3 1070:1 1099:1 1103:2 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1247:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:1 1326:1 1348:1 1351:2 1355:3 1362:1 1373:1 1407:1 1429:2 1461:2 1469:2 1471:1 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1985:1 1986:1 1997:2 1999:1 2010:3 2017:1 2022:2 2041:1 2047:1 2050:1 2053:2 2054:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2101:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:3 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2271:1 2303:1 2311:1 2324:1 2356:1 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2410:1 2424:1 2425:1 2468:1 2475:1 2493:1 2512:1 2513:1 2521:2 2537:1 2551:3 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:7 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:21 2787:1 2806:2 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:3 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:6 3097:1 3102:1 3121:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:2 3508:1 3522:1 3523:1 3533:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:1 4362:3 4370:1 4376:1 4379:1 4381:2 4386:1 4395:1 4409:2 4425:2 4444:1 4449:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:3 4544:1 4549:1 4558:26 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:3 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:1 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:2 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5226:1 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5497:1 5531:2 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:6 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:6 5940:3 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6423:2 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:1 6706:1 6707:1 6732:2 6744:1 6760:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:6 7087:5 7096:1 7109:3 7118:1 7136:1 7137:1 7140:1 7151:32 7170:1 7171:20 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7456:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:4 7544:2 7549:1 7574:3 7584:1 7587:1 7595:2 7599:1 7613:20 7617:1 7644:1 7651:1 7653:2 7662:3 7682:1 7689:1 7691:1 7693:1 7695:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7852:1 7854:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8387:1 8395:1 8426:2 8440:6 8443:1 8478:1 8484:1 8493:2 8507:1 8511:1 8545:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8751:2 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:2 8889:2 8897:1 8898:1 8900:1 8903:4 8922:2 8923:3 8936:4 8959:1 8961:1 8977:3 8988:1 8991:1 9008:1 9034:3 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:3 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:4 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:2 9522:2 9533:1 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:3 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:3 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9943:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10113:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10310:1 10331:1 10333:1 10353:1 10358:1 10368:1 10411:1 10413:1 10437:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:1 10530:1 10536:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:5 10612:1 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10695:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:4 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:5 11025:1 11032:1 11078:1 11080:1 11103:1 11111:1 11152:3 11195:1 11201:2 11202:5 11207:1 11218:5 11230:1 11255:1 11273:1 11284:1 11291:1 11301:1 11311:1 11313:1 11315:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:2 11674:1 11678:1 11688:1 11712:1 11713:2 11718:1 11743:2 11756:1 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:2 11931:1 11935:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:3 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12188:2 12191:2 12205:5 12228:1 12234:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:2 12343:3 12345:2 12356:3 12364:1 12373:2 12383:1 12403:1 12428:6 12457:1 12477:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:3 12581:3 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12744:1 12754:1 12757:2 12763:1 12773:4 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13083:1 13090:1 13093:1 13123:1 13127:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13271:2 13277:1 13283:2 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:3 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13452:2 13471:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:1 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:1 13680:1 13694:2 13705:1 13710:1 13712:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:1 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:3 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:2 14315:2 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:5 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:2 14479:1 14480:1 14482:1 14486:1 14488:2 14489:1 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14563:1 14571:1 14575:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15175:1 15181:1 15187:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:19 15484:1 15504:1 15507:2 15510:1 15539:2 15540:2 15550:3 15561:1 15568:1 15621:1 15632:1 15655:1 15657:1 15660:1 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:1 15745:1 15747:1 15777:3 15779:1 15783:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15949:2 15956:2 15982:2 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16130:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16264:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16442:1 16484:1 16490:1 16492:1 16495:3 16534:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:2 16784:1 16790:1 16804:1 16823:1 16828:1 16857:1 16858:2 16863:1 16880:1 16893:1 16908:1 16909:1 16923:1 16934:1 16953:1 16971:1 16975:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17272:1 17274:2 17286:2207 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17605:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18058:1 18085:1 18090:1 18096:1 18103:1 18104:2 18105:1 18109:1 18131:2 18141:2 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18208:1 18212:1 18227:1 18232:1 18239:2 18255:1 18266:2 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:3 18336:1 18342:1 18350:18 18355:1 18369:1 18371:1 18376:1 18391:1 18395:1 18399:1 18404:5 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:5 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:2 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:1 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18745:1 18753:1 18765:21 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19018:1 19026:3 19031:1 19039:1 19046:1 19124:1 19135:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:16 19355:1 19356:1 19366:3 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:4 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:3 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:6 19775:2 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:2 19910:1 19911:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20354:1 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20559:1 20565:2 20575:1 20580:1 20585:1 20589:5 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20669:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20731:1 20732:2 20740:1 20742:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20909:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:3 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21082:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:8 21150:1 21156:1 21157:1 21161:1 21163:1 21175:2 21194:3 21195:2 21218:1 21232:1 21251:1 21258:1 21262:2 21283:1 21309:1 21315:1 21337:1 21359:1 21365:2 21372:1 21386:1 21387:1 21401:1 21402:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21476:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21627:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:1 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22091:1 22095:1 22104:1 22116:1 22118:1 22126:1 22174:1 22180:1 22189:2 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22276:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22375:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22469:1 22485:1 22493:2 22501:2 22504:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22615:1 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:3 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23016:1 23038:1 23044:2 23067:1 23074:1 23079:1 23085:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23213:1 23217:2 23219:1 23223:1 23245:1 23259:1 23278:1 23297:1 23312:2 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23442:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:2 23541:3 23542:2 23554:1 23559:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23755:1 23765:1 23768:1 23789:1 23791:3 23800:1 23810:1 23818:6 23820:5 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24133:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24280:1 24297:3 24315:2 24321:1 24344:1 24345:1 24354:2 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24620:1 24622:1 24629:1 24648:1 24650:1 24656:1 24673:1 24689:1 24703:1 24704:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24866:1 24879:1 24888:1 24890:3 24893:1 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:5 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25083:2 25104:2 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:1 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:2 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:2 25510:3 25514:1 25526:1 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25690:1 25691:2 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25937:1 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25985:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:3 26094:2 26100:1 26134:1 26141:1 26148:1 26176:2 26182:5 26192:1 26213:1 26215:7 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26476:1 26477:1 26486:4 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26712:1 26721:2 26723:1 26728:1 26730:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26945:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27022:1 27023:1 27037:1 27046:1 27058:1 27081:1 27082:2 27087:1 27088:1 27114:1 27120:4 27121:1 27124:1 27136:1 27153:4 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:2 27244:1 27245:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 362:1 365:1 366:1 381:1 413:1 432:1 437:1 438:1 459:1 472:1 473:1 477:2 509:1 512:1 519:1 524:1 551:2 561:1 565:4 592:2 597:5 613:1 619:1 673:6 683:1 695:1 726:1 740:1 748:1 749:1 750:1 789:1 798:1 802:1 805:7 806:1 823:2 828:3 831:1 853:1 866:2 867:3 889:1 891:1 895:4 899:1 927:2 929:3 936:1 939:1 961:1 967:1 979:1 1020:1 1034:1 1049:2 1059:2 1068:3 1070:2 1099:1 1103:2 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1247:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:2 1326:1 1348:1 1351:2 1355:3 1362:1 1373:1 1407:1 1429:2 1461:2 1469:2 1471:1 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1985:1 1986:1 1997:2 1999:1 2010:3 2017:1 2022:2 2041:1 2047:1 2050:1 2053:2 2054:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2093:1 2101:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:4 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2271:1 2303:1 2311:1 2324:1 2356:1 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2410:1 2424:1 2425:1 2468:1 2475:1 2493:1 2512:1 2513:1 2514:1 2521:2 2537:1 2551:3 2555:1 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:7 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2761:2 2768:1 2773:21 2787:1 2806:2 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:3 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:6 3097:1 3102:1 3121:1 3126:8 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:2 3508:1 3522:1 3523:1 3533:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3816:1 3818:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:1 4362:3 4370:1 4376:1 4379:1 4381:2 4386:1 4395:1 4409:2 4425:2 4444:1 4449:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:3 4544:1 4549:1 4558:26 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:3 4688:3 4689:7 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:1 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:3 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5226:1 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5497:1 5531:2 5537:1 5577:1 5585:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:6 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:6 5940:3 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6423:2 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:1 6706:1 6707:1 6732:2 6744:1 6760:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:6 7087:5 7096:1 7109:3 7118:1 7136:1 7137:1 7140:1 7151:33 7170:1 7171:20 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7456:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:4 7544:2 7549:1 7574:3 7584:1 7587:1 7595:3 7599:1 7613:20 7617:1 7644:1 7651:1 7653:2 7662:3 7682:1 7689:1 7691:1 7693:1 7695:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7852:1 7854:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8387:1 8395:1 8426:2 8440:6 8443:1 8478:1 8484:1 8493:2 8507:1 8511:1 8545:1 8557:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8595:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:1 8738:2 8740:1 8741:1 8751:2 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:2 8889:2 8897:1 8898:1 8900:1 8903:4 8922:2 8923:3 8936:4 8959:1 8961:1 8977:3 8988:1 8991:1 9008:1 9034:3 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:3 9098:1 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9284:1 9286:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:4 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9432:1 9453:1 9459:1 9463:1 9482:1 9507:1 9511:2 9522:2 9533:1 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:3 9601:2 9605:1 9646:1 9652:1 9654:1 9659:1 9693:1 9696:1 9702:1 9705:3 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:2 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9897:1 9905:1 9941:1 9943:1 9949:4 9973:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10113:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10179:7 10187:1 10202:1 10214:1 10217:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10310:1 10331:1 10333:2 10353:1 10358:1 10368:1 10411:1 10413:1 10437:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:2 10530:1 10536:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:1 10602:6 10612:1 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10695:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10875:2 10876:1 10879:4 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:5 11025:1 11032:1 11078:1 11080:1 11081:1 11103:2 11111:1 11152:3 11195:1 11201:2 11202:5 11207:1 11218:5 11230:1 11255:1 11273:1 11284:1 11291:1 11301:1 11311:1 11313:1 11315:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:2 11479:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11652:1 11656:1 11657:2 11674:1 11678:5 11688:1 11712:1 11713:2 11718:1 11743:2 11756:1 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:2 11931:1 11935:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:3 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12155:1 12166:1 12179:2 12183:1 12188:2 12191:2 12205:5 12228:1 12234:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:2 12343:3 12345:2 12356:3 12364:1 12373:2 12383:1 12403:1 12428:6 12457:2 12477:1 12478:2 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:3 12581:3 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12706:2 12744:1 12754:1 12757:2 12763:1 12773:4 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:1 13044:1 13053:2 13065:2 13075:2 13083:1 13090:1 13093:1 13123:1 13127:1 13135:1 13138:1 13141:2 13148:2 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13271:2 13277:1 13283:2 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:3 13427:1 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13452:2 13471:1 13482:1 13489:1 13500:2 13511:1 13513:1 13527:1 13529:1 13542:2 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:1 13680:1 13694:2 13705:1 13710:1 13712:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:2 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:3 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:2 14315:2 14317:1 14336:3 14343:1 14344:7 14352:3 14357:1 14370:1 14380:1 14384:6 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:2 14479:1 14480:1 14482:1 14486:1 14488:3 14489:1 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14559:1 14562:2 14563:1 14571:1 14575:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15175:1 15181:1 15187:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:19 15484:1 15504:1 15507:2 15510:1 15539:2 15540:2 15550:3 15561:1 15568:1 15621:1 15632:1 15655:1 15657:1 15660:2 15668:1 15673:1 15682:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:1 15738:2 15745:1 15747:1 15777:3 15779:1 15783:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15949:2 15956:2 15982:2 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16130:1 16133:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16264:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16408:1 16425:1 16428:1 16432:1 16434:2 16437:1 16442:1 16484:1 16490:1 16492:1 16495:3 16513:1 16534:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16781:3 16784:1 16790:1 16804:1 16823:1 16828:1 16857:1 16858:2 16863:1 16880:1 16893:1 16908:1 16909:1 16923:1 16934:1 16953:1 16971:1 16975:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17272:1 17274:3 17286:2239 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:1 17436:3 17440:1 17451:1 17456:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17605:1 17615:1 17618:1 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:3 18058:1 18085:1 18090:1 18096:1 18103:1 18104:2 18105:1 18109:1 18131:2 18141:2 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18208:1 18212:1 18227:1 18232:1 18239:2 18255:1 18266:2 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:3 18336:1 18342:1 18350:18 18355:1 18369:1 18371:1 18376:1 18391:1 18395:1 18399:1 18404:5 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:6 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:3 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:1 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18745:1 18753:1 18765:21 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19018:1 19026:3 19031:1 19039:1 19044:1 19046:1 19124:1 19134:1 19135:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:16 19355:1 19356:1 19366:3 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:4 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:3 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:6 19775:2 19778:1 19799:1 19816:1 19837:1 19845:1 19850:1 19862:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:2 19910:1 19911:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:3 20258:1 20263:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20354:1 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20559:1 20565:2 20575:1 20580:1 20585:1 20589:5 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20669:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20731:1 20732:2 20740:1 20742:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20909:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:3 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21082:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:8 21150:1 21156:1 21157:1 21161:1 21163:1 21175:2 21194:3 21195:2 21218:1 21232:1 21251:1 21258:1 21262:2 21283:1 21309:1 21315:1 21337:1 21359:1 21365:2 21372:1 21386:1 21387:1 21401:1 21402:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21476:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21627:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:2 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22091:1 22095:1 22104:1 22116:1 22118:1 22126:1 22174:1 22180:1 22189:2 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22276:1 22292:2 22308:2 22317:1 22326:2 22350:1 22352:1 22363:1 22375:1 22376:2 22383:1 22394:1 22399:1 22400:1 22444:1 22447:3 22464:1 22469:1 22485:1 22493:2 22501:2 22504:1 22542:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22615:1 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:4 22642:2 22644:1 22652:2 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:3 22802:1 22804:1 22806:1 22807:1 22844:1 22875:1 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23016:1 23038:1 23044:2 23067:1 23074:1 23079:1 23085:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23213:1 23217:2 23219:1 23223:1 23245:1 23259:1 23278:1 23297:1 23312:2 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23415:1 23442:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:2 23541:3 23542:2 23554:1 23559:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:1 23707:1 23719:2 23734:2 23735:2 23751:1 23755:1 23765:1 23768:1 23789:1 23791:3 23800:1 23810:1 23818:6 23820:5 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24133:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24280:1 24297:3 24315:2 24321:1 24344:1 24345:1 24354:2 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24596:1 24620:1 24622:1 24629:1 24648:1 24650:1 24656:1 24673:1 24689:1 24703:1 24704:1 24756:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24866:1 24879:1 24888:1 24890:3 24893:1 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:5 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25083:2 25104:2 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:1 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:2 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:2 25510:3 25514:1 25526:1 25536:1 25581:1 25587:2 25588:1 25610:1 25637:1 25668:1 25676:2 25690:1 25691:3 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25921:2 25937:1 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25985:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:4 26094:2 26100:1 26134:1 26141:1 26148:1 26176:2 26182:5 26192:1 26213:1 26215:7 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26476:1 26477:1 26486:4 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26712:1 26721:2 26723:1 26728:1 26730:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26945:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27022:1 27023:1 27037:1 27046:1 27058:1 27081:1 27082:2 27087:1 27088:1 27114:1 27120:4 27121:1 27124:1 27136:1 27153:4 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:2 27244:1 27245:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:1 325:1 345:2 356:1 362:1 365:1 366:1 381:1 413:1 432:1 437:1 438:1 459:1 467:1 472:1 473:1 477:2 509:1 512:1 519:1 524:1 551:2 561:1 565:4 592:2 597:5 613:1 619:1 673:6 683:1 695:1 726:1 740:1 748:1 749:1 750:1 789:1 798:1 802:1 805:7 806:1 823:2 828:3 831:1 853:1 866:2 867:3 889:1 891:1 895:4 899:1 903:1 927:2 929:3 936:1 939:1 961:1 967:1 979:1 1020:1 1034:1 1049:2 1059:2 1068:3 1070:2 1099:1 1103:2 1106:1 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1247:1 1251:3 1269:2 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:2 1322:1 1326:1 1348:1 1351:2 1355:3 1358:1 1362:1 1373:1 1392:1 1407:1 1429:2 1461:2 1469:2 1471:1 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:1 1611:1 1618:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1702:4 1707:1 1725:2 1743:2 1754:2 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1985:1 1986:1 1997:2 1999:1 2010:3 2017:1 2022:2 2041:1 2047:1 2050:1 2053:2 2054:1 2056:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:1 2085:1 2091:1 2093:1 2101:1 2108:1 2114:6 2115:1 2117:2 2119:2 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:4 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2271:1 2303:1 2311:1 2324:1 2356:2 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2410:1 2424:1 2425:1 2468:1 2475:1 2493:1 2512:1 2513:1 2514:1 2521:2 2537:1 2551:3 2555:2 2564:1 2592:1 2595:2 2611:3 2612:1 2615:3 2618:3 2624:7 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2721:5 2735:1 2741:1 2761:2 2768:1 2773:21 2787:1 2799:2 2802:1 2806:2 2824:2 2839:1 2851:1 2860:1 2866:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:3 2994:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:6 3097:1 3102:1 3121:1 3126:9 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3350:1 3351:1 3374:1 3379:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:2 3508:1 3522:1 3523:1 3533:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3616:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3812:1 3816:1 3818:1 3822:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3964:1 3986:1 3998:1 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:1 4362:3 4370:1 4376:1 4379:1 4381:3 4386:1 4395:1 4409:2 4425:2 4444:1 4449:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:3 4544:1 4549:1 4558:26 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:3 4688:4 4689:8 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:1 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:4 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:1 5025:1 5036:1 5048:1 5066:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:2 5226:1 5228:1 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5356:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5497:1 5509:1 5531:2 5537:1 5577:1 5585:1 5608:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:6 5762:1 5764:1 5777:1 5778:1 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:6 5940:3 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:2 5960:2 5961:2 5976:1 5989:1 6032:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6373:1 6423:2 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:1 6706:1 6707:1 6732:2 6744:1 6760:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:3 7078:1 7086:6 7087:5 7096:1 7109:3 7118:1 7136:1 7137:1 7140:2 7151:34 7170:1 7171:21 7207:1 7226:1 7236:1 7256:2 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7411:1 7412:1 7424:1 7454:1 7456:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:4 7544:2 7546:1 7549:1 7574:3 7584:1 7587:1 7595:3 7599:1 7613:20 7617:1 7625:1 7644:1 7651:1 7653:2 7662:3 7682:1 7689:1 7691:1 7693:1 7695:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:1 7837:1 7842:1 7845:1 7852:1 7854:1 7865:1 7869:3 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7977:1 7998:2 8020:3 8021:7 8036:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8352:1 8365:1 8371:2 8387:2 8395:1 8426:2 8440:6 8443:1 8446:1 8478:1 8484:1 8493:2 8507:2 8511:1 8525:1 8545:1 8557:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8595:1 8608:1 8610:1 8625:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:2 8738:2 8740:1 8741:1 8751:3 8753:1 8784:1 8787:2 8788:1 8793:1 8822:2 8844:3 8852:1 8872:2 8889:2 8897:1 8898:1 8900:1 8903:4 8922:2 8923:3 8936:4 8959:1 8961:1 8977:3 8988:1 8991:1 9008:1 9034:4 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:3 9098:1 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9284:1 9286:1 9289:1 9296:2 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:4 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9431:1 9432:1 9453:1 9459:1 9463:1 9482:1 9493:1 9507:1 9511:2 9522:2 9533:1 9536:2 9539:1 9542:1 9554:1 9558:1 9570:1 9597:3 9601:2 9605:1 9646:1 9652:1 9654:2 9659:1 9693:1 9696:1 9702:1 9705:3 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:3 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9866:1 9897:1 9905:1 9941:1 9943:1 9949:4 9973:1 9981:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10096:2 10097:1 10113:1 10114:1 10127:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10179:8 10187:1 10202:1 10214:1 10217:1 10238:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10310:2 10331:1 10333:2 10353:1 10358:1 10368:1 10369:1 10411:1 10413:1 10437:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:2 10530:1 10536:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:2 10602:6 10612:1 10636:1 10655:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10695:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10807:1 10826:1 10830:2 10841:1 10852:2 10854:2 10858:1 10859:1 10860:2 10862:1 10871:3 10873:4 10874:1 10875:2 10876:1 10879:4 10880:1 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:5 11025:1 11029:1 11032:1 11078:1 11080:1 11081:1 11103:2 11111:1 11152:3 11195:1 11201:2 11202:5 11207:1 11218:5 11230:1 11255:1 11273:1 11284:1 11285:1 11291:1 11301:1 11311:1 11313:1 11315:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:2 11479:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11632:1 11644:2 11649:1 11652:1 11656:1 11657:2 11674:1 11678:5 11688:1 11712:1 11713:2 11718:1 11743:2 11756:1 11758:1 11769:1 11779:1 11800:7 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11908:2 11913:1 11916:1 11918:2 11925:1 11928:2 11931:1 11935:1 11939:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:3 12063:1 12072:1 12083:1 12107:2 12134:2 12135:1 12138:1 12155:1 12166:1 12179:2 12183:1 12188:2 12191:2 12205:5 12228:1 12234:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:2 12343:3 12345:2 12356:3 12364:1 12373:2 12383:1 12403:1 12428:6 12457:2 12477:1 12478:2 12480:1 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:3 12581:3 12597:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:3 12680:1 12681:1 12683:1 12696:2 12698:1 12702:1 12704:1 12705:1 12706:2 12744:1 12754:1 12757:2 12763:1 12773:4 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12924:1 12933:1 12938:1 12947:2 12971:1 12978:1 12981:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:2 13044:1 13053:2 13065:2 13073:1 13075:2 13083:1 13090:1 13093:1 13123:1 13127:1 13135:2 13138:1 13141:2 13148:2 13153:1 13155:1 13162:1 13181:1 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13271:3 13277:1 13283:2 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:3 13427:1 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13448:1 13452:2 13471:1 13482:1 13489:1 13490:1 13500:2 13511:1 13513:1 13527:1 13529:1 13538:1 13542:2 13546:1 13557:1 13560:1 13578:1 13585:1 13592:1 13593:1 13604:1 13609:1 13612:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:1 13680:1 13694:2 13705:1 13710:1 13712:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:2 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13959:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:1 14154:1 14156:1 14169:1 14181:1 14214:3 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:2 14315:2 14317:1 14336:3 14343:1 14344:7 14352:4 14357:1 14370:1 14380:1 14384:6 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14474:2 14479:1 14480:1 14482:1 14486:2 14488:4 14489:1 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14549:1 14559:1 14562:2 14563:1 14571:1 14575:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14950:1 14955:1 14956:1 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15175:1 15181:2 15186:1 15187:1 15201:1 15207:2 15211:3 15230:3 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15303:1 15325:2 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:19 15484:1 15504:1 15507:2 15510:1 15539:2 15540:2 15550:3 15561:1 15568:1 15621:1 15632:1 15655:1 15657:1 15660:2 15668:1 15673:1 15682:1 15685:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:2 15738:2 15745:1 15747:1 15763:1 15777:3 15779:1 15783:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15941:1 15949:2 15956:2 15982:2 15996:1 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16130:1 16133:1 16136:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16264:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16407:1 16408:1 16425:1 16428:2 16432:1 16434:2 16437:1 16442:1 16484:1 16490:1 16492:1 16495:3 16513:1 16534:1 16535:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16770:1 16781:3 16784:1 16790:1 16804:1 16823:1 16828:1 16857:1 16858:2 16863:1 16880:1 16893:1 16908:1 16909:1 16923:1 16926:1 16934:1 16953:1 16957:1 16971:1 16975:1 16979:7 16992:1 17029:1 17040:1 17041:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:1 17237:1 17256:1 17267:1 17272:1 17274:3 17286:2340 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:2 17436:3 17440:1 17451:1 17456:1 17463:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17605:1 17615:1 17618:2 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:2 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:4 18058:1 18085:1 18090:1 18096:1 18103:1 18104:2 18105:1 18109:1 18131:2 18141:2 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18208:1 18212:1 18227:1 18232:1 18239:2 18255:1 18266:2 18272:1 18301:2 18302:1 18307:1 18318:1 18320:1 18322:1 18324:1 18334:3 18336:1 18342:1 18350:18 18355:1 18366:1 18369:1 18371:1 18376:1 18391:1 18395:1 18399:1 18404:5 18407:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:1 18496:7 18517:1 18525:1 18528:1 18530:1 18534:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18587:4 18593:1 18600:3 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:1 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18745:1 18753:1 18765:21 18775:1 18780:1 18790:1 18791:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18983:2 18984:1 18988:2 18989:2 19018:1 19026:3 19031:1 19039:1 19044:1 19046:1 19124:1 19134:1 19135:1 19136:2 19155:1 19165:2 19197:1 19200:3 19212:1 19220:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:16 19355:1 19356:1 19366:3 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:4 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:3 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19754:3 19757:6 19771:1 19775:2 19778:1 19799:2 19816:1 19837:1 19845:1 19850:1 19862:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:2 19910:2 19911:1 19920:1 19938:2 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:1 20088:2 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:4 20258:1 20263:1 20266:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20354:1 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20454:1 20464:1 20465:1 20473:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20554:2 20558:1 20559:1 20565:2 20575:1 20580:1 20585:1 20589:5 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20669:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20731:1 20732:2 20740:1 20742:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:1 20906:2 20908:1 20909:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:3 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21082:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:8 21150:1 21156:1 21157:1 21161:1 21163:1 21171:1 21175:2 21194:3 21195:2 21218:1 21232:1 21238:1 21251:1 21258:2 21262:2 21283:1 21304:1 21309:1 21311:1 21315:1 21337:2 21359:1 21365:2 21372:1 21386:1 21387:1 21401:2 21402:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21476:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21626:1 21627:1 21630:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:3 21731:1 21736:3 21738:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22028:1 22057:1 22072:1 22073:1 22091:1 22095:1 22104:1 22116:1 22118:1 22126:1 22174:1 22180:1 22189:2 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22276:1 22292:2 22294:1 22308:2 22317:1 22326:2 22330:1 22350:1 22352:1 22363:1 22375:1 22376:2 22383:1 22394:1 22399:1 22400:2 22444:1 22447:3 22464:1 22469:1 22485:1 22493:2 22501:2 22504:1 22542:1 22548:2 22555:1 22559:1 22582:1 22610:1 22611:2 22615:1 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:5 22642:2 22644:1 22652:2 22657:1 22663:4 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:3 22802:1 22804:1 22806:1 22807:1 22844:1 22875:2 22879:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23015:1 23016:1 23021:1 23038:1 23044:2 23067:1 23074:1 23079:1 23085:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23213:1 23217:3 23219:1 23223:1 23245:1 23259:1 23278:1 23297:1 23312:2 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23415:1 23442:1 23444:1 23446:1 23467:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:2 23541:3 23542:2 23554:1 23559:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:3 23707:1 23719:2 23734:2 23735:2 23751:1 23755:1 23765:1 23768:1 23789:1 23791:3 23800:1 23810:1 23818:6 23820:5 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:1 23896:2 23897:1 23901:1 23935:1 23943:1 23950:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:1 24104:1 24115:2 24122:1 24133:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24280:1 24297:3 24315:2 24321:1 24344:1 24345:1 24354:2 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24482:1 24487:1 24513:1 24514:2 24524:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24596:1 24620:1 24622:1 24629:1 24648:1 24650:1 24656:1 24673:1 24689:1 24703:1 24704:1 24756:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24866:1 24879:1 24888:1 24890:3 24893:1 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:5 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25083:2 25104:2 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25141:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:1 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25318:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25363:1 25365:1 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:2 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:2 25510:3 25514:1 25526:1 25536:1 25581:1 25587:2 25588:1 25608:1 25610:1 25637:1 25649:1 25668:1 25676:2 25690:1 25691:4 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25916:1 25921:2 25937:1 25938:1 25956:5 25960:1 25965:1 25971:4 25976:1 25985:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:5 26094:2 26100:1 26134:1 26141:1 26148:1 26176:2 26182:5 26192:1 26213:1 26215:7 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26269:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26476:1 26477:1 26486:4 26487:2 26500:1 26501:1 26517:1 26530:1 26531:1 26535:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26624:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26712:1 26721:2 26723:1 26728:1 26730:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26945:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27022:1 27023:1 27037:1 27046:1 27058:1 27081:2 27082:2 27087:1 27088:1 27091:1 27114:1 27120:4 27121:1 27124:1 27136:1 27153:4 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:2 27244:1 27245:1 27249:3 27251:1 27266:1 27273:1 27283:4 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:4 177:5 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 266:1 281:1 284:1 307:2 312:3 325:1 345:2 346:1 356:1 362:1 365:1 366:1 381:1 413:1 432:1 437:1 438:2 442:1 459:1 467:1 472:1 473:1 477:2 509:1 512:1 519:1 524:1 551:2 561:1 565:4 592:2 597:5 613:1 619:1 673:6 683:1 695:1 726:1 740:1 748:1 749:1 750:1 789:1 798:1 802:1 805:8 806:1 823:2 828:4 831:1 853:1 866:2 867:3 889:1 891:1 895:5 899:1 903:1 927:2 929:3 936:1 939:2 961:1 967:1 979:1 1020:1 1034:1 1049:2 1059:2 1068:3 1070:2 1099:1 1103:2 1106:1 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1239:1 1247:1 1251:3 1269:2 1271:1 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:2 1322:1 1326:1 1348:1 1351:2 1355:3 1358:1 1362:1 1373:1 1392:1 1407:1 1429:2 1461:2 1469:2 1471:1 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:2 1611:1 1618:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1700:1 1702:4 1707:1 1725:2 1743:2 1754:3 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1851:1 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1985:1 1986:1 1997:2 1999:1 2010:3 2017:1 2022:2 2041:1 2047:1 2050:1 2053:2 2054:1 2056:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:2 2085:1 2091:1 2093:1 2101:1 2108:1 2114:6 2115:1 2117:2 2119:3 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2137:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:6 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2267:1 2271:1 2303:1 2311:1 2324:1 2356:2 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2410:1 2424:1 2425:1 2468:1 2475:1 2493:1 2512:3 2513:1 2514:1 2521:2 2537:1 2540:1 2551:3 2555:2 2559:1 2564:1 2592:1 2595:2 2611:4 2612:1 2615:3 2618:3 2624:8 2628:1 2637:1 2668:1 2672:1 2676:1 2677:3 2706:1 2713:1 2715:1 2721:5 2735:1 2741:1 2758:1 2761:2 2768:1 2773:22 2787:1 2799:2 2802:1 2806:2 2824:2 2839:1 2851:1 2860:1 2866:1 2879:1 2892:1 2894:1 2909:1 2912:1 2949:2 2956:3 2994:1 3008:1 3037:1 3051:1 3053:2 3066:1 3067:1 3075:1 3096:6 3097:1 3102:1 3121:1 3126:10 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3346:1 3350:1 3351:1 3374:1 3379:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:2 3508:1 3522:1 3523:1 3533:1 3559:1 3563:2 3570:1 3581:1 3599:1 3602:2 3611:1 3612:1 3616:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:2 3770:1 3779:1 3812:1 3816:1 3818:1 3822:1 3845:1 3849:5 3854:2 3858:1 3884:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3955:1 3964:1 3986:1 3998:2 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:1 4049:1 4058:2 4064:1 4068:1 4098:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:5 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:1 4362:3 4370:1 4376:1 4379:1 4381:3 4386:1 4395:1 4409:2 4425:2 4444:1 4449:1 4453:1 4454:1 4463:1 4465:1 4490:1 4497:1 4500:1 4502:1 4536:3 4544:1 4549:1 4558:27 4561:1 4580:1 4597:1 4599:1 4631:1 4634:1 4653:1 4662:1 4672:4 4688:5 4689:8 4692:2 4695:2 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:2 4736:5 4758:1 4774:2 4780:1 4782:1 4793:2 4812:4 4821:1 4851:1 4857:5 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:2 5025:1 5036:1 5048:1 5066:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:3 5226:1 5228:1 5235:1 5260:3 5270:1 5302:1 5303:2 5307:1 5319:1 5355:1 5356:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5497:1 5509:1 5531:2 5537:1 5577:1 5585:1 5608:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:1 5717:1 5720:1 5728:1 5731:1 5732:1 5742:6 5762:1 5764:1 5777:1 5778:2 5787:1 5805:1 5812:1 5855:8 5874:5 5893:5 5900:1 5901:1 5912:2 5928:4 5929:1 5938:6 5940:3 5945:2 5946:1 5951:2 5952:1 5953:3 5955:2 5956:4 5960:2 5961:2 5976:1 5989:1 6006:1 6032:1 6056:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6373:1 6423:2 6424:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:3 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:2 6706:1 6707:1 6732:2 6744:1 6760:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7014:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:4 7078:1 7086:6 7087:7 7096:1 7109:3 7118:1 7136:1 7137:1 7140:2 7141:1 7151:37 7170:2 7171:22 7192:1 7207:1 7226:2 7236:1 7256:2 7299:2 7329:1 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7401:1 7411:1 7412:1 7424:1 7454:1 7456:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:5 7544:2 7546:1 7549:1 7574:3 7584:1 7587:1 7595:3 7599:2 7613:20 7617:1 7625:1 7644:1 7651:1 7653:2 7662:3 7682:1 7689:1 7691:1 7693:1 7695:1 7707:3 7739:1 7744:1 7751:1 7762:1 7767:4 7780:2 7784:2 7801:1 7822:2 7826:2 7837:1 7842:1 7845:1 7852:1 7854:1 7865:1 7869:3 7878:2 7881:2 7912:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7973:1 7977:1 7998:2 8020:3 8021:7 8036:2 8050:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8148:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8346:1 8352:1 8365:1 8371:2 8387:2 8395:1 8426:2 8440:6 8443:1 8446:1 8478:1 8484:1 8493:2 8507:2 8511:1 8525:1 8545:1 8557:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8595:1 8608:1 8610:1 8625:1 8638:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:2 8738:2 8740:1 8741:1 8751:3 8753:1 8784:1 8787:4 8788:1 8793:1 8822:2 8844:3 8852:1 8872:2 8889:2 8897:1 8898:1 8900:1 8903:4 8918:1 8922:2 8923:3 8936:4 8959:1 8961:1 8977:3 8988:1 8991:1 9008:1 9034:4 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9087:1 9089:1 9090:3 9098:1 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9247:1 9284:1 9286:1 9289:1 9296:3 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:4 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9431:1 9432:1 9453:1 9459:1 9463:1 9482:1 9493:1 9507:1 9511:2 9522:2 9526:1 9533:1 9536:2 9539:1 9540:1 9542:1 9554:1 9558:1 9570:1 9597:3 9601:2 9605:1 9646:1 9652:1 9654:2 9659:1 9693:1 9696:1 9702:1 9705:3 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:3 9786:1 9788:1 9789:1 9802:1 9808:1 9823:1 9837:1 9839:3 9840:1 9850:1 9866:1 9897:1 9905:1 9941:1 9943:1 9949:4 9973:1 9981:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10037:1 10096:2 10097:1 10113:1 10114:1 10127:1 10128:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10178:1 10179:8 10187:1 10202:1 10214:1 10217:1 10238:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:1 10310:2 10331:2 10333:2 10336:1 10340:1 10353:1 10358:1 10368:1 10369:1 10411:1 10413:1 10437:1 10441:3 10466:1 10468:1 10473:2 10474:1 10494:1 10497:1 10509:2 10530:1 10536:1 10537:1 10538:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:2 10602:6 10612:1 10636:1 10655:1 10658:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10695:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:4 10805:3 10807:1 10826:1 10830:2 10831:1 10841:1 10852:2 10854:2 10858:1 10859:1 10860:3 10862:1 10865:1 10871:3 10873:4 10874:1 10875:2 10876:1 10879:4 10880:2 10886:4 10890:3 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:5 11025:1 11029:1 11032:1 11078:1 11080:1 11081:1 11103:2 11111:1 11152:3 11195:1 11201:2 11202:5 11207:1 11218:5 11229:1 11230:1 11240:1 11255:1 11273:1 11284:1 11285:1 11291:1 11301:1 11311:1 11313:1 11315:1 11316:1 11319:2 11331:1 11333:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11419:1 11424:1 11467:1 11468:2 11479:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11628:1 11631:1 11632:1 11644:2 11649:1 11652:1 11656:1 11657:2 11674:1 11678:5 11688:1 11690:1 11712:1 11713:2 11718:1 11743:2 11756:1 11758:1 11769:1 11779:1 11800:7 11815:1 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:1 11896:1 11908:2 11909:1 11913:1 11916:1 11918:2 11925:1 11928:2 11931:1 11935:1 11939:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:1 12045:1 12057:1 12062:3 12063:1 12072:1 12083:1 12107:2 12117:1 12134:2 12135:1 12138:1 12155:1 12166:1 12179:2 12183:1 12188:2 12191:2 12205:5 12228:1 12234:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:2 12343:3 12345:2 12346:1 12356:3 12364:1 12373:2 12383:1 12403:1 12428:6 12457:2 12477:1 12478:2 12480:1 12494:1 12497:1 12522:1 12530:1 12535:2 12549:1 12554:4 12559:1 12562:3 12581:3 12597:1 12637:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:5 12680:1 12681:1 12683:1 12692:1 12696:3 12698:1 12702:1 12704:1 12705:1 12706:2 12712:1 12744:1 12754:1 12757:2 12763:1 12773:4 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:1 12860:1 12864:2 12876:1 12890:1 12898:1 12917:1 12924:1 12933:3 12938:1 12947:2 12971:1 12978:1 12981:1 12982:1 12993:1 12997:1 12999:1 13011:2 13015:1 13041:2 13044:1 13053:2 13065:2 13073:1 13075:2 13083:1 13087:1 13090:1 13093:1 13123:1 13127:1 13135:2 13138:1 13141:2 13148:2 13153:1 13155:1 13162:1 13164:1 13181:2 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13268:1 13271:3 13277:1 13283:2 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:3 13427:1 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13448:1 13452:2 13471:1 13482:1 13489:1 13490:1 13500:2 13511:1 13513:1 13527:1 13529:1 13538:1 13542:2 13546:1 13557:1 13560:2 13578:2 13585:1 13592:1 13593:1 13604:1 13609:1 13612:1 13620:1 13622:2 13628:1 13650:1 13655:2 13665:2 13680:1 13694:2 13705:1 13710:1 13712:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:2 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13959:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:2 14154:1 14156:1 14169:1 14181:1 14214:3 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:2 14315:2 14317:1 14332:1 14336:3 14343:1 14344:7 14352:4 14357:1 14370:1 14380:1 14384:6 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14464:1 14474:2 14479:1 14480:1 14482:2 14486:2 14488:4 14489:1 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14549:1 14559:1 14562:2 14563:1 14566:1 14571:1 14575:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:6 14773:1 14776:1 14794:1 14795:1 14799:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:2 14924:4 14932:3 14950:1 14955:1 14956:2 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15112:1 15117:1 15141:1 15144:1 15150:1 15152:1 15175:1 15181:2 15186:1 15187:1 15201:1 15207:2 15211:3 15230:3 15231:1 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15302:1 15303:1 15325:3 15336:1 15343:1 15344:3 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:2 15421:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:19 15471:1 15484:1 15504:1 15507:2 15510:1 15539:2 15540:2 15550:3 15561:1 15568:1 15621:1 15632:1 15655:1 15657:1 15660:2 15668:1 15673:1 15682:1 15685:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:2 15738:2 15745:1 15747:1 15763:1 15777:3 15779:1 15783:2 15787:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15941:1 15949:2 15956:2 15982:2 15996:1 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16130:1 16133:1 16136:1 16154:2 16183:1 16232:1 16235:1 16243:1 16257:1 16264:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16407:1 16408:1 16425:1 16428:3 16432:1 16434:2 16437:1 16442:1 16484:1 16488:1 16490:1 16492:1 16495:3 16513:1 16534:1 16535:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16770:1 16781:3 16784:1 16790:1 16804:1 16823:1 16828:1 16857:1 16858:2 16863:1 16880:1 16893:1 16908:1 16909:1 16923:1 16926:1 16934:1 16953:1 16957:1 16971:1 16975:1 16979:7 16992:1 17029:1 17040:1 17041:1 17059:1 17083:9 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:3 17176:2 17177:1 17197:1 17230:1 17231:3 17237:1 17250:1 17256:1 17267:1 17272:1 17274:3 17286:2445 17288:1 17290:1 17324:2 17343:3 17352:1 17370:1 17388:1 17391:1 17400:2 17436:3 17440:2 17451:1 17456:1 17463:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17557:2 17578:3 17583:1 17585:1 17598:1 17605:1 17615:1 17618:2 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:3 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:4 18058:1 18085:1 18090:1 18096:1 18103:1 18104:2 18105:1 18109:1 18131:2 18141:2 18159:3 18161:1 18162:1 18183:1 18187:1 18192:1 18203:1 18208:1 18212:1 18227:1 18232:1 18239:2 18255:1 18266:2 18272:1 18301:2 18302:1 18307:1 18318:2 18320:1 18322:1 18324:2 18334:3 18336:1 18342:2 18350:18 18355:1 18366:1 18369:1 18371:1 18376:1 18391:1 18395:1 18399:1 18404:5 18407:1 18419:1 18424:1 18425:1 18435:1 18460:1 18471:1 18472:2 18496:7 18517:1 18522:1 18525:1 18528:1 18530:1 18534:1 18546:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18586:1 18587:4 18593:1 18600:3 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18680:2 18685:1 18700:3 18701:1 18709:1 18711:1 18715:1 18732:1 18745:1 18753:1 18765:22 18775:1 18776:1 18780:1 18790:1 18791:1 18792:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18961:1 18967:1 18983:2 18984:1 18988:2 18989:2 19018:1 19026:3 19031:1 19035:1 19039:1 19044:1 19046:1 19124:1 19134:1 19135:1 19136:2 19155:1 19165:2 19197:1 19199:1 19200:3 19212:1 19220:1 19228:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:2 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:17 19355:1 19356:1 19366:3 19369:5 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:4 19527:2 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:3 19649:1 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19752:1 19754:3 19757:6 19771:1 19775:2 19778:1 19799:2 19816:1 19837:1 19845:1 19850:1 19862:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19900:6 19902:2 19910:2 19911:1 19920:1 19938:2 19939:1 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20013:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:3 20079:2 20088:3 20103:2 20106:1 20116:1 20127:1 20133:1 20147:1 20184:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:5 20258:1 20263:1 20266:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20354:1 20367:2 20375:1 20378:1 20403:5 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20450:1 20454:1 20464:1 20465:1 20473:1 20479:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20551:1 20554:2 20558:1 20559:1 20565:2 20575:1 20580:1 20585:1 20589:6 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20669:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20723:1 20731:1 20732:2 20740:1 20742:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:2 20906:2 20908:1 20909:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:3 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21082:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:8 21150:1 21156:1 21157:1 21161:1 21163:1 21171:1 21175:2 21194:3 21195:2 21218:1 21232:1 21238:1 21249:1 21251:1 21258:2 21262:2 21283:1 21304:1 21309:1 21311:1 21315:1 21337:2 21359:1 21365:2 21372:1 21386:1 21387:1 21401:2 21402:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21475:1 21476:1 21496:2 21498:1 21550:2 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21617:1 21626:1 21627:1 21630:1 21636:1 21662:1 21674:3 21683:1 21692:3 21695:2 21698:3 21731:1 21736:3 21738:1 21752:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21960:1 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22027:1 22028:1 22057:1 22072:1 22073:1 22091:1 22095:1 22104:1 22116:1 22118:1 22126:1 22174:1 22180:1 22189:2 22207:1 22211:1 22214:1 22218:3 22219:1 22264:1 22268:1 22271:1 22276:1 22292:2 22294:1 22308:2 22317:1 22326:2 22330:1 22350:1 22352:1 22363:1 22375:1 22376:2 22382:1 22383:1 22394:1 22399:1 22400:2 22444:1 22447:3 22464:1 22469:2 22485:1 22493:2 22501:2 22504:1 22542:1 22548:2 22555:1 22559:1 22579:1 22582:1 22610:2 22611:2 22615:1 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:5 22642:2 22644:1 22652:2 22657:1 22663:5 22677:1 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:3 22779:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:2 22879:1 22880:1 22883:1 22889:1 22911:1 22912:1 22929:1 22936:1 22938:2 22942:1 22945:1 22953:2 22976:1 22990:1 23015:1 23016:1 23021:1 23038:2 23044:3 23067:1 23074:1 23079:1 23085:1 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23213:1 23217:3 23219:1 23223:1 23245:1 23259:1 23278:1 23297:1 23312:2 23314:5 23327:1 23341:5 23355:1 23404:2 23406:1 23412:1 23415:1 23442:1 23444:1 23446:1 23467:1 23485:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:4 23541:3 23542:2 23554:1 23559:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23667:2 23670:1 23694:3 23707:1 23719:2 23734:2 23735:2 23751:1 23755:1 23765:1 23768:1 23789:1 23791:3 23800:2 23810:1 23818:6 23820:6 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:2 23896:2 23897:1 23901:1 23935:1 23943:1 23950:1 23962:2 23967:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24080:1 24091:1 24093:2 24104:1 24115:2 24122:1 24133:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:12 24248:2 24259:1 24280:1 24297:3 24315:3 24321:1 24344:1 24345:1 24354:2 24361:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24482:1 24487:1 24513:1 24514:2 24524:1 24526:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24596:1 24620:1 24622:1 24629:1 24648:1 24650:1 24656:1 24673:1 24689:1 24703:1 24704:1 24733:1 24756:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24866:1 24879:1 24888:1 24890:3 24893:1 24916:1 24921:1 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:5 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25079:1 25083:2 25104:2 25114:1 25118:6 25128:2 25131:1 25133:1 25138:1 25141:1 25142:1 25150:2 25177:1 25185:1 25194:2 25196:2 25202:1 25228:1 25243:3 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25318:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25358:1 25363:1 25365:2 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:2 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25502:2 25506:1 25510:3 25514:1 25526:1 25536:1 25581:1 25587:2 25588:1 25608:1 25610:1 25637:1 25649:1 25668:1 25676:2 25690:1 25691:4 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25916:1 25921:2 25937:1 25938:1 25956:6 25960:1 25965:1 25971:4 25976:1 25985:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26081:5 26094:2 26100:1 26134:1 26141:1 26148:1 26176:4 26182:6 26192:1 26213:1 26215:7 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26269:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:5 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26413:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26476:1 26477:1 26486:4 26487:3 26500:1 26501:1 26517:1 26530:1 26531:1 26535:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26624:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26712:1 26721:3 26723:1 26728:1 26730:1 26759:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:3 26883:1 26885:1 26908:1 26934:1 26937:1 26941:1 26945:1 26948:1 26960:1 26965:2 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27022:1 27023:1 27037:1 27039:1 27046:1 27058:1 27081:2 27082:2 27087:1 27088:1 27091:1 27114:1 27120:4 27121:1 27124:1 27136:1 27153:4 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:1 27235:3 27237:2 27239:1 27242:2 27244:1 27245:1 27249:3 27251:1 27266:1 27273:1 27283:6 27294:1 27336:1 27348:1
7 8:1 18:1 21:1 37:1 49:1 81:1 86:1 91:1 109:2 115:1 122:1 163:5 177:6 202:2 209:1 215:2 223:2 225:2 240:1 256:1 258:1 263:1 266:1 281:1 284:1 307:2 312:3 325:1 345:2 346:1 356:1 362:1 365:1 366:1 381:2 413:1 432:1 433:1 437:1 438:2 442:1 459:1 467:1 472:1 473:1 477:2 509:1 512:1 519:1 524:1 551:2 561:1 565:4 592:2 597:5 613:1 619:1 673:6 683:1 695:1 726:1 740:1 748:1 749:1 750:1 789:1 798:1 802:1 805:8 806:1 823:2 828:4 831:2 853:1 866:2 867:3 889:1 891:1 892:1 895:5 899:1 903:1 927:2 929:3 936:1 939:2 961:1 964:1 967:1 979:1 1020:1 1026:1 1034:1 1049:2 1059:2 1068:3 1070:2 1099:1 1103:2 1106:1 1108:1 1126:1 1129:1 1140:1 1141:1 1142:1 1154:1 1157:2 1162:1 1166:1 1168:1 1173:1 1179:1 1186:1 1187:1 1205:1 1235:1 1239:1 1247:1 1251:3 1269:2 1271:1 1282:1 1288:1 1297:1 1300:1 1309:1 1314:1 1315:1 1317:2 1322:1 1326:1 1328:1 1348:1 1351:2 1355:3 1358:1 1362:1 1373:1 1392:1 1407:1 1429:2 1461:2 1463:1 1469:2 1471:1 1503:1 1505:1 1515:3 1519:3 1523:1 1527:1 1529:3 1530:3 1544:1 1547:2 1550:1 1583:1 1592:1 1598:2 1611:1 1618:1 1636:1 1637:3 1638:2 1643:1 1647:1 1671:1 1673:3 1688:1 1691:1 1700:1 1702:4 1707:1 1725:2 1743:2 1754:3 1756:1 1757:1 1771:1 1774:1 1803:2 1812:1 1815:1 1816:1 1822:1 1826:1 1840:2 1847:2 1851:1 1870:1 1906:1 1907:1 1908:1 1914:1 1927:1 1936:1 1937:4 1947:1 1958:1 1978:5 1985:1 1986:1 1997:2 1999:1 2010:3 2017:1 2022:2 2023:1 2041:1 2047:1 2050:1 2053:2 2054:1 2056:1 2057:1 2062:1 2063:1 2065:1 2067:2 2069:5 2083:2 2085:1 2091:1 2093:1 2101:1 2108:1 2114:6 2115:1 2117:2 2119:3 2120:1 2124:4 2129:1 2130:2 2131:2 2135:1 2137:1 2140:5 2144:1 2146:3 2147:1 2150:2 2154:6 2156:1 2196:1 2205:1 2208:1 2209:1 2220:1 2227:1 2229:1 2239:1 2243:1 2245:2 2251:1 2253:1 2266:1 2267:1 2271:1 2303:1 2311:1 2324:1 2356:2 2367:1 2369:1 2378:1 2384:1 2387:1 2390:1 2397:1 2407:1 2410:1 2424:1 2425:1 2468:1 2475:1 2493:1 2497:1 2512:3 2513:1 2514:1 2521:2 2537:1 2540:1 2551:3 2555:2 2559:1 2564:1 2592:1 2595:2 2611:4 2612:1 2615:3 2618:3 2624:8 2628:1 2637:2 2668:1 2672:1 2676:1 2677:3 2706:1 2713:1 2715:1 2721:5 2735:1 2741:1 2758:1 2761:2 2768:1 2773:22 2787:1 2799:2 2802:1 2806:2 2824:2 2839:1 2851:1 2860:1 2866:1 2879:1 2892:1 2894:1 2909:2 2912:1 2949:3 2956:3 2994:1 3008:1 3037:1 3051:1 3053:3 3066:1 3067:1 3075:1 3096:6 3097:1 3102:1 3121:1 3126:11 3130:1 3153:1 3159:2 3169:1 3194:1 3198:2 3239:1 3256:1 3257:1 3259:1 3263:1 3264:1 3265:1 3302:1 3306:1 3310:2 3331:1 3343:1 3346:1 3350:1 3351:1 3374:1 3379:1 3380:1 3382:2 3388:2 3396:1 3397:1 3405:2 3410:1 3412:1 3416:1 3433:1 3439:1 3460:1 3466:3 3467:1 3470:2 3471:1 3486:1 3501:2 3508:1 3522:1 3523:1 3533:1 3559:1 3563:2 3570:1 3581:1 3599:1 3602:3 3611:1 3612:2 3616:1 3617:2 3632:1 3649:1 3659:2 3661:1 3671:1 3673:2 3675:1 3680:1 3687:1 3692:1 3700:2 3711:1 3720:1 3746:2 3752:2 3757:1 3769:3 3770:1 3779:1 3812:1 3816:1 3818:1 3822:1 3831:1 3845:1 3849:6 3854:2 3858:1 3884:1 3889:1 3895:2 3904:1 3911:1 3913:1 3917:1 3928:3 3935:3 3941:2 3942:2 3944:1 3955:1 3964:1 3986:3 3998:3 4007:1 4009:2 4011:1 4013:1 4021:2 4033:2 4041:2 4049:1 4058:2 4064:1 4068:1 4098:1 4112:1 4118:1 4122:1 4123:2 4125:1 4137:1 4143:1 4153:1 4159:1 4173:1 4175:1 4190:1 4231:6 4239:1 4245:1 4252:1 4254:1 4262:1 4269:1 4270:1 4299:1 4309:1 4315:1 4317:1 4329:2 4331:2 4332:1 4352:2 4359:2 4362:3 4370:1 4376:1 4379:1 4381:3 4386:1 4395:1 4409:2 4425:2 4444:1 4449:1 4453:1 4454:1 4463:1 4465:1 4486:1 4490:1 4497:1 4500:1 4502:1 4536:3 4544:1 4549:1 4558:27 4561:1 4580:1 4597:1 4599:1 4631:1 4634:3 4653:1 4662:1 4672:5 4688:5 4689:9 4692:2 4695:3 4696:2 4701:1 4703:2 4708:2 4713:1 4714:2 4715:2 4716:1 4717:3 4736:6 4758:1 4774:2 4780:1 4782:1 4793:2 4812:4 4821:1 4851:1 4857:6 4880:2 4905:1 4911:1 4937:1 4964:1 4965:1 4971:1 4984:1 4992:1 4999:1 5002:1 5008:1 5012:1 5014:2 5025:1 5036:1 5048:1 5066:1 5126:1 5140:1 5149:1 5151:1 5162:2 5173:1 5194:1 5202:3 5203:1 5226:1 5228:2 5235:1 5260:4 5270:1 5282:1 5302:1 5303:2 5307:1 5308:1 5319:1 5355:1 5356:1 5362:1 5363:1 5378:1 5381:2 5385:1 5392:2 5425:1 5438:2 5450:1 5457:1 5483:1 5497:1 5509:1 5531:2 5537:1 5577:1 5585:1 5608:1 5614:1 5628:2 5632:2 5665:1 5669:1 5691:1 5702:1 5716:2 5717:1 5720:1 5728:1 5731:1 5732:1 5742:6 5762:1 5764:1 5777:1 5778:2 5787:1 5802:1 5805:1 5812:1 5855:8 5874:6 5893:6 5900:1 5901:1 5912:2 5914:1 5928:4 5929:1 5938:7 5940:3 5945:2 5946:1 5949:1 5951:2 5952:1 5953:3 5955:2 5956:4 5960:2 5961:2 5970:1 5976:1 5989:1 6006:1 6030:1 6032:1 6056:1 6073:1 6087:2 6090:1 6098:1 6114:1 6116:1 6132:2 6139:1 6165:1 6166:3 6187:1 6189:1 6211:1 6213:1 6234:1 6241:5 6299:1 6316:2 6321:4 6330:1 6343:4 6344:3 6370:1 6373:1 6423:2 6424:1 6428:1 6431:1 6432:2 6437:1 6443:2 6465:1 6471:1 6489:2 6503:1 6508:1 6514:1 6517:1 6520:1 6521:1 6523:1 6564:1 6569:1 6582:5 6605:1 6611:2 6613:1 6647:2 6650:2 6653:2 6655:1 6657:1 6664:1 6665:2 6681:2 6706:1 6707:1 6732:2 6744:1 6760:1 6790:1 6791:1 6792:1 6811:1 6822:1 6833:1 6840:3 6842:1 6846:1 6851:1 6860:1 6870:1 6876:2 6877:1 6884:1 6887:1 6891:1 6911:4 6928:1 6942:1 6956:1 6958:4 6964:1 6968:1 6977:1 6983:1 7014:1 7015:1 7044:2 7056:1 7058:1 7065:1 7075:4 7078:1 7086:8 7087:7 7096:1 7109:3 7118:1 7136:1 7137:1 7140:2 7141:1 7151:37 7170:2 7171:22 7192:1 7207:1 7226:2 7236:1 7256:2 7299:2 7329:1 7330:1 7334:1 7347:1 7355:1 7363:4 7370:1 7380:1 7382:1 7386:1 7389:1 7394:1 7401:1 7411:1 7412:1 7424:1 7454:3 7456:1 7461:2 7473:1 7487:1 7519:1 7523:1 7543:5 7544:2 7546:1 7549:1 7574:3 7584:1 7587:1 7595:3 7599:2 7613:20 7617:1 7625:1 7644:2 7651:1 7653:2 7662:3 7682:1 7689:1 7691:1 7693:1 7695:1 7707:3 7739:1 7744:1 7751:1 7762:2 7767:4 7780:2 7784:2 7801:1 7822:2 7826:2 7837:1 7842:1 7845:1 7852:1 7854:1 7865:1 7869:3 7878:2 7881:2 7912:1 7915:1 7917:2 7948:1 7949:1 7951:2 7954:2 7956:1 7964:2 7973:1 7977:1 7998:2 8020:3 8021:7 8036:2 8050:2 8052:1 8058:1 8076:1 8081:1 8089:1 8094:1 8103:2 8105:1 8106:2 8123:1 8135:1 8148:1 8149:1 8170:1 8186:2 8187:2 8191:1 8204:1 8208:1 8209:2 8215:2 8238:3 8242:3 8260:1 8281:1 8322:1 8333:1 8338:1 8346:1 8352:1 8364:1 8365:1 8371:2 8387:2 8395:1 8426:2 8440:6 8443:1 8446:1 8478:1 8484:1 8493:2 8507:2 8511:1 8525:1 8545:1 8557:1 8560:2 8571:1 8572:1 8573:1 8580:1 8583:1 8584:2 8586:1 8595:1 8608:1 8610:1 8625:1 8638:1 8642:3 8648:1 8665:1 8688:1 8690:1 8726:1 8728:2 8738:2 8740:1 8741:1 8751:3 8753:1 8784:2 8787:4 8788:1 8793:1 8822:2 8844:3 8852:1 8872:2 8889:2 8897:1 8898:1 8900:1 8903:4 8918:1 8922:3 8923:3 8936:4 8959:1 8961:1 8977:3 8988:1 8991:1 9008:1 9034:4 9044:1 9046:1 9050:1 9055:1 9060:1 9073:1 9081:1 9087:1 9089:1 9090:3 9098:1 9109:1 9122:1 9177:2 9180:1 9191:1 9200:1 9202:1 9206:1 9211:2 9218:1 9226:1 9244:1 9247:1 9284:1 9286:1 9289:1 9296:3 9315:1 9319:1 9325:1 9334:1 9335:1 9347:1 9358:1 9364:4 9366:1 9368:1 9371:1 9374:2 9387:2 9399:1 9401:1 9413:3 9417:2 9425:1 9426:2 9431:1 9432:1 9453:1 9459:1 9463:1 9482:1 9493:1 9507:1 9511:2 9522:2 9526:1 9531:1 9533:1 9536:2 9539:1 9540:1 9542:1 9554:1 9558:1 9570:1 9597:3 9601:2 9605:1 9646:1 9652:1 9654:2 9659:1 9693:1 9696:1 9702:1 9705:3 9728:2 9740:1 9755:1 9757:1 9761:1 9762:2 9780:3 9786:1 9788:1 9789:1 9802:1 9808:1 9814:1 9823:1 9837:1 9839:3 9840:1 9850:1 9866:1 9897:1 9905:1 9941:1 9943:1 9949:4 9973:2 9981:1 9983:1 9985:1 10002:1 10007:1 10011:1 10012:1 10016:1 10037:1 10096:2 10097:1 10113:1 10114:1 10127:1 10128:1 10129:1 10133:1 10166:2 10170:2 10176:1 10177:2 10178:1 10179:9 10187:1 10202:1 10214:1 10217:1 10221:1 10238:1 10240:1 10259:1 10264:2 10272:1 10293:1 10298:1 10299:2 10310:2 10331:2 10333:2 10336:1 10340:1 10353:1 10358:1 10368:1 10369:1 10411:1 10413:1 10437:1 10441:3 10466:1 10468:1 10473:3 10474:1 10494:1 10497:1 10509:2 10530:1 10536:1 10537:1 10538:1 10548:2 10552:1 10555:1 10567:2 10573:2 10578:1 10582:1 10600:2 10602:7 10612:1 10636:1 10655:1 10658:1 10659:1 10663:1 10666:1 10672:1 10679:1 10681:2 10688:1 10695:1 10702:1 10705:1 10707:1 10712:1 10726:3 10730:1 10759:2 10763:1 10803:5 10805:3 10807:1 10826:1 10830:2 10831:1 10841:1 10852:2 10854:2 10858:1 10859:1 10860:3 10862:1 10865:1 10871:3 10873:4 10874:1 10875:2 10876:1 10879:4 10880:2 10886:4 10890:4 10901:3 10905:1 10909:1 10912:1 10927:1 10928:1 10929:2 10940:2 10941:1 10950:1 10954:1 10958:1 10962:3 10968:1 10983:1 10991:1 11005:1 11017:1 11018:1 11020:5 11025:1 11029:1 11032:1 11078:1 11080:1 11081:1 11103:2 11108:1 11111:1 11152:3 11186:1 11195:1 11201:2 11202:6 11207:1 11218:6 11229:1 11230:1 11240:1 11255:2 11273:1 11284:1 11285:1 11291:1 11295:1 11301:1 11311:1 11313:2 11315:1 11316:1 11319:2 11331:1 11333:1 11343:1 11344:1 11354:1 11369:1 11390:1 11398:2 11406:1 11410:1 11419:1 11424:1 11467:1 11468:2 11479:1 11495:1 11506:1 11519:1 11536:1 11541:1 11597:1 11603:1 11623:1 11624:2 11628:1 11631:1 11632:1 11644:2 11649:1 11652:1 11656:1 11657:2 11670:1 11674:1 11678:5 11688:2 11690:1 11712:1 11713:2 11718:1 11739:1 11743:2 11756:1 11758:1 11769:1 11779:1 11784:1 11800:7 11815:1 11821:1 11827:1 11841:1 11848:1 11854:2 11856:2 11863:1 11864:1 11865:1 11866:1 11870:1 11881:4 11896:1 11908:2 11909:1 11913:1 11916:1 11918:2 11925:1 11928:2 11931:1 11935:1 11939:1 11941:1 11946:2 11951:1 11958:1 11972:1 11991:1 11992:2 11998:2 11999:1 12001:1 12010:1 12026:2 12045:1 12057:1 12062:3 12063:1 12072:1 12083:1 12091:1 12107:3 12117:1 12134:2 12135:1 12138:1 12155:1 12166:1 12179:2 12183:1 12188:2 12191:2 12205:5 12228:1 12234:1 12253:1 12263:1 12265:1 12276:1 12301:1 12325:1 12329:2 12343:3 12345:2 12346:1 12356:3 12364:1 12373:2 12383:1 12403:1 12428:7 12457:2 12477:1 12478:2 12480:1 12494:1 12497:1 12509:1 12522:1 12530:1 12535:2 12549:3 12554:4 12559:1 12562:3 12581:3 12586:1 12597:1 12608:1 12637:1 12645:1 12650:2 12668:1 12669:2 12677:1 12679:5 12680:2 12681:1 12683:1 12692:1 12696:3 12698:1 12702:1 12704:1 12705:1 12706:2 12712:1 12744:1 12754:1 12757:2 12763:1 12773:4 12780:3 12795:2 12796:2 12803:1 12817:3 12821:2 12826:1 12858:2 12859:3 12860:1 12864:2 12876:1 12890:1 12898:1 12917:2 12924:1 12933:3 12938:1 12947:2 12971:1 12978:1 12981:1 12982:1 12993:1 12997:1 12999:1 13011:2 13015:2 13041:3 13044:1 13053:2 13065:2 13073:1 13075:2 13083:2 13087:1 13090:1 13093:1 13123:1 13127:1 13135:2 13138:1 13141:2 13148:2 13153:1 13155:1 13162:1 13164:1 13181:2 13182:1 13217:1 13224:1 13240:1 13263:2 13265:1 13268:1 13271:3 13277:1 13283:2 13284:2 13286:3 13294:1 13297:1 13298:1 13305:1 13317:1 13327:1 13367:1 13386:1 13392:1 13410:1 13411:1 13412:1 13422:1 13424:3 13427:1 13428:1 13436:1 13440:3 13443:1 13446:1 13447:2 13448:1 13452:2 13471:1 13482:1 13489:1 13490:1 13500:2 13511:1 13513:1 13527:1 13529:1 13538:1 13542:2 13546:1 13557:1 13560:2 13578:2 13585:1 13592:1 13593:3 13604:1 13609:1 13612:1 13620:1 13622:2 13626:1 13628:1 13650:1 13655:2 13665:2 13680:1 13694:2 13705:1 13708:1 13710:1 13712:1 13713:1 13729:1 13732:1 13747:1 13763:1 13780:1 13802:2 13816:1 13830:2 13839:1 13843:1 13845:3 13864:2 13865:1 13868:1 13903:1 13912:1 13915:1 13929:1 13959:1 13965:1 14002:1 14019:1 14036:1 14039:1 14044:1 14046:1 14056:1 14068:2 14069:1 14079:1 14081:1 14087:1 14097:1 14111:3 14114:1 14136:1 14150:2 14154:1 14156:1 14169:1 14181:1 14214:3 14234:1 14243:1 14244:1 14245:6 14254:2 14262:1 14280:1 14288:1 14290:2 14304:3 14305:2 14315:2 14317:1 14332:1 14336:3 14343:1 14344:7 14352:4 14357:1 14370:1 14380:1 14384:6 14389:1 14417:1 14439:1 14441:1 14447:1 14449:1 14464:1 14474:2 14479:1 14480:1 14482:2 14486:2 14488:4 14489:1 14496:2 14508:1 14510:2 14511:1 14513:5 14514:2 14522:1 14523:1 14530:1 14542:1 14549:1 14559:1 14562:2 14563:1 14566:1 14571:1 14575:1 14583:1 14585:1 14606:1 14610:1 14636:2 14674:1 14695:1 14702:1 14726:1 14731:1 14769:7 14773:1 14776:1 14794:1 14795:1 14799:1 14805:1 14807:1 14812:1 14823:1 14855:2 14859:1 14865:1 14915:1 14916:3 14924:4 14932:3 14950:1 14955:1 14956:2 14983:1 14988:1 14990:1 15005:1 15007:1 15010:2 15012:1 15019:1 15020:3 15023:3 15024:1 15028:1 15029:1 15030:4 15036:2 15038:1 15051:1 15073:1 15105:1 15112:1 15117:1 15141:2 15144:1 15150:1 15152:1 15175:1 15181:2 15186:1 15187:1 15201:1 15207:2 15211:3 15230:3 15231:1 15244:2 15245:1 15253:2 15259:1 15277:1 15285:1 15292:2 15297:2 15300:1 15302:1 15303:1 15325:3 15329:1 15336:1 15343:1 15344:4 15346:1 15350:2 15354:2 15372:1 15375:1 15402:1 15405:2 15421:1 15426:1 15427:1 15432:1 15439:5 15455:1 15463:19 15471:1 15484:1 15504:1 15507:2 15510:1 15539:2 15540:2 15550:3 15561:1 15568:2 15569:1 15578:1 15621:1 15632:1 15655:1 15657:1 15660:2 15668:1 15673:2 15682:1 15685:1 15687:1 15692:1 15694:1 15701:1 15704:3 15716:1 15725:2 15738:2 15745:1 15747:1 15763:1 15777:3 15779:1 15783:2 15787:1 15791:1 15797:1 15800:3 15805:1 15821:2 15840:1 15849:1 15889:1 15904:1 15905:1 15919:1 15926:4 15933:1 15936:1 15938:1 15941:1 15949:2 15956:2 15982:2 15996:1 16005:1 16035:1 16038:2 16046:2 16053:1 16054:1 16063:2 16068:2 16071:1 16076:2 16079:2 16084:1 16086:1 16090:1 16091:1 16092:1 16106:1 16111:1 16115:1 16124:1 16129:1 16130:1 16133:1 16136:1 16154:2 16162:1 16183:1 16232:2 16235:1 16243:1 16249:1 16257:1 16264:1 16282:1 16303:1 16334:1 16373:2 16386:1 16390:1 16407:1 16408:1 16425:1 16428:3 16432:1 16434:2 16437:1 16442:1 16461:1 16484:1 16488:1 16490:1 16492:1 16495:3 16513:1 16534:1 16535:1 16542:1 16551:1 16577:2 16587:3 16622:1 16624:1 16638:2 16644:1 16656:3 16665:1 16675:1 16699:2 16706:1 16711:1 16724:1 16726:1 16739:1 16740:1 16758:1 16768:2 16770:1 16781:3 16784:1 16790:1 16804:1 16823:1 16828:1 16857:1 16858:2 16863:1 16880:1 16881:1 16893:1 16908:1 16909:1 16923:1 16926:1 16934:1 16953:1 16957:1 16971:1 16975:1 16979:7 16989:1 16992:1 17029:1 17040:1 17041:1 17059:1 17083:10 17092:3 17103:3 17110:1 17118:1 17156:1 17163:1 17173:4 17176:2 17177:1 17197:1 17230:1 17231:3 17235:2 17237:1 17250:1 17256:1 17267:1 17272:1 17274:3 17286:2548 17288:1 17290:1 17324:2 17343:3 17347:1 17352:1 17370:1 17388:1 17391:1 17400:2 17436:3 17440:2 17451:1 17456:1 17463:1 17464:2 17478:1 17479:1 17488:1 17489:1 17497:1 17498:1 17503:1 17508:2 17519:1 17520:3 17537:1 17557:2 17578:3 17583:1 17585:1 17598:1 17605:1 17615:1 17618:2 17663:1 17690:3 17701:1 17707:2 17711:1 17713:1 17730:1 17733:1 17738:1 17746:1 17760:1 17763:1 17774:1 17785:1 17788:1 17792:1 17793:1 17798:2 17805:2 17806:1 17817:1 17823:1 17834:1 17837:1 17849:1 17859:2 17878:1 17885:4 17893:1 17894:1 17915:1 17928:3 17932:1 17952:1 17957:1 17958:1 17970:1 17973:1 17991:6 17994:1 17997:3 18008:1 18022:2 18025:1 18037:4 18058:2 18085:1 18090:1 18096:1 18103:1 18104:2 18105:1 18109:1 18131:2 18141:2 18159:4 18161:1 18162:1 18176:1 18183:1 18187:1 18192:1 18203:1 18208:1 18212:1 18227:1 18232:1 18239:2 18255:1 18266:2 18272:1 18301:2 18302:1 18307:1 18318:2 18320:1 18322:1 18324:2 18334:3 18336:1 18342:2 18350:18 18355:1 18366:1 18369:1 18371:1 18376:1 18391:1 18393:1 18395:1 18399:1 18404:5 18407:1 18419:1 18424:2 18425:1 18435:1 18460:1 18471:1 18472:2 18496:7 18517:1 18522:1 18525:1 18528:1 18530:1 18534:1 18546:1 18548:1 18553:2 18575:1 18578:1 18580:1 18585:2 18586:1 18587:4 18593:1 18600:3 18608:1 18616:3 18617:1 18618:1 18626:1 18632:1 18638:1 18642:1 18653:3 18661:1 18664:1 18665:1 18671:1 18680:2 18685:2 18700:3 18701:1 18709:1 18711:1 18714:1 18715:1 18732:1 18745:1 18753:1 18765:22 18775:1 18776:1 18780:1 18790:1 18791:1 18792:1 18802:1 18819:1 18832:1 18834:1 18847:1 18876:1 18886:1 18888:1 18909:1 18926:1 18932:1 18950:2 18961:1 18967:1 18983:2 18984:1 18988:2 18989:2 19018:1 19026:3 19031:1 19035:1 19039:1 19044:1 19046:1 19124:1 19134:1 19135:1 19136:2 19155:1 19165:2 19188:1 19197:1 19199:1 19200:3 19212:1 19220:1 19228:1 19245:2 19248:1 19256:2 19258:1 19269:1 19274:1 19276:1 19277:1 19296:3 19312:1 19315:1 19318:1 19321:1 19323:2 19324:1 19335:3 19337:1 19342:1 19344:1 19346:17 19355:1 19356:1 19366:3 19369:6 19380:1 19390:2 19393:1 19398:1 19440:1 19456:1 19465:1 19466:3 19510:4 19527:2 19568:1 19587:2 19591:1 19605:1 19607:1 19610:2 19611:1 19629:2 19632:1 19639:1 19645:4 19649:1 19650:1 19654:1 19673:1 19679:1 19685:1 19711:1 19734:1 19743:1 19749:1 19752:2 19754:3 19757:6 19771:1 19775:2 19778:1 19799:2 19816:1 19837:1 19845:1 19850:1 19862:1 19869:1 19876:2 19878:1 19883:1 19884:1 19885:1 19898:1 19900:6 19902:2 19910:2 19911:1 19920:1 19938:2 19939:1 19941:1 19942:1 19948:1 19950:1 19951:3 19954:1 19955:5 19956:1 19962:2 19964:1 19966:2 19977:1 19994:1 19995:2 20009:1 20013:1 20014:1 20019:1 20021:1 20028:1 20036:2 20051:2 20058:2 20077:5 20079:2 20088:3 20103:2 20106:1 20116:1 20127:1 20133:3 20147:1 20184:1 20211:1 20224:2 20226:1 20235:4 20238:2 20240:1 20257:5 20258:1 20263:1 20266:1 20269:1 20271:1 20279:1 20280:1 20295:2 20310:1 20346:2 20354:1 20367:2 20375:1 20378:1 20403:6 20429:2 20433:1 20435:2 20439:2 20441:1 20442:1 20449:1 20450:2 20454:1 20464:1 20465:1 20473:1 20475:1 20479:1 20483:1 20485:1 20493:1 20494:2 20495:1 20507:1 20520:1 20529:1 20539:1 20551:1 20554:2 20558:1 20559:2 20565:2 20575:1 20580:1 20584:1 20585:1 20589:6 20610:2 20626:1 20628:1 20647:3 20655:1 20667:1 20668:1 20669:1 20677:1 20697:1 20700:1 20708:3 20714:1 20719:1 20721:1 20722:1 20723:1 20731:1 20732:2 20740:1 20742:1 20743:1 20748:1 20751:2 20754:1 20756:1 20765:1 20768:1 20770:1 20771:4 20779:2 20784:1 20799:1 20801:2 20803:1 20814:1 20815:2 20841:2 20847:1 20848:5 20855:1 20868:1 20870:2 20886:1 20898:2 20906:2 20908:1 20909:1 20932:2 20966:1 20972:1 20981:1 20998:1 21005:2 21012:3 21017:1 21020:1 21022:1 21034:3 21043:1 21047:3 21050:1 21051:2 21054:1 21082:1 21083:1 21098:1 21105:1 21113:1 21118:1 21131:1 21132:1 21137:1 21138:1 21146:8 21150:1 21156:1 21157:1 21161:1 21163:1 21171:1 21175:2 21194:3 21195:2 21202:1 21218:1 21232:1 21238:1 21240:1 21249:1 21251:1 21258:2 21262:2 21283:1 21285:1 21304:1 21309:1 21311:1 21315:1 21337:2 21359:1 21365:2 21372:1 21386:1 21387:2 21401:2 21402:1 21405:1 21407:1 21414:1 21426:1 21433:1 21438:1 21461:1 21470:1 21473:1 21475:1 21476:1 21496:2 21498:1 21550:3 21558:1 21569:1 21574:1 21596:3 21603:2 21609:1 21617:1 21626:1 21627:1 21630:1 21636:1 21662:1 21674:3 21683:1 21692:4 21695:3 21698:3 21731:1 21736:3 21738:1 21742:1 21752:1 21758:4 21762:1 21764:1 21765:1 21782:1 21802:1 21803:2 21811:1 21839:1 21850:1 21877:2 21883:1 21895:1 21946:2 21948:1 21951:1 21957:2 21960:1 21961:1 21981:1 21986:1 21993:1 22002:1 22025:3 22027:1 22028:1 22057:1 22072:1 22073:1 22091:1 22095:1 22104:1 22116:1 22118:1 22126:1 22174:1 22180:1 22189:2 22207:1 22211:1 22214:1 22218:3 22219:1 22236:1 22264:1 22268:1 22271:1 22276:1 22292:2 22294:1 22308:2 22317:2 22326:2 22330:1 22341:1 22350:1 22352:1 22363:1 22375:1 22376:2 22382:1 22383:1 22394:1 22399:1 22400:2 22444:1 22447:3 22464:1 22469:2 22485:1 22493:2 22501:2 22504:1 22542:1 22548:2 22555:1 22559:1 22579:1 22582:1 22584:1 22610:2 22611:2 22615:1 22620:2 22622:1 22624:1 22625:1 22626:3 22628:1 22632:1 22633:1 22637:5 22642:2 22644:1 22652:2 22657:1 22663:5 22674:1 22677:1 22685:1 22710:1 22720:1 22721:1 22727:8 22728:3 22732:3 22755:2 22760:1 22763:1 22773:3 22774:3 22779:2 22802:1 22804:1 22806:1 22807:1 22844:1 22875:2 22879:1 22880:1 22883:1 22889:1 22911:1 22912:1 22925:1 22929:1 22936:1 22938:3 22942:1 22945:1 22953:2 22976:1 22990:1 23015:1 23016:1 23021:1 23038:2 23044:3 23067:1 23074:1 23079:1 23085:2 23086:2 23097:1 23111:1 23134:1 23144:9 23189:1 23194:1 23195:1 23198:1 23209:1 23213:1 23217:3 23219:1 23223:1 23245:1 23259:1 23260:1 23278:1 23297:1 23312:2 23314:6 23327:1 23341:5 23355:1 23404:2 23406:1 23411:1 23412:1 23415:1 23442:1 23444:1 23446:1 23467:1 23485:1 23494:2 23509:2 23514:1 23516:1 23526:1 23528:1 23532:1 23537:4 23541:3 23542:2 23554:1 23559:1 23560:1 23561:1 23583:2 23587:1 23597:1 23601:2 23608:1 23628:1 23631:1 23638:1 23640:2 23641:3 23642:1 23647:2 23655:1 23662:1 23667:2 23670:1 23694:4 23707:1 23719:2 23734:2 23735:2 23751:1 23755:1 23765:1 23768:1 23789:1 23791:3 23800:2 23810:1 23818:6 23820:6 23838:1 23843:2 23870:1 23872:1 23875:1 23882:1 23888:2 23893:2 23896:2 23897:1 23901:1 23935:1 23943:1 23950:1 23951:1 23962:2 23967:1 23971:1 23991:1 23994:2 24002:1 24013:2 24015:1 24030:1 24051:1 24056:1 24066:1 24080:1 24091:1 24093:2 24104:1 24115:2 24122:1 24133:1 24141:1 24170:1 24179:1 24186:4 24211:1 24221:1 24238:1 24247:13 24248:2 24259:1 24280:1 24297:3 24315:3 24321:1 24335:1 24344:1 24345:1 24354:2 24361:1 24365:1 24368:1 24382:1 24388:3 24401:1 24428:1 24431:1 24440:1 24477:1 24482:1 24487:1 24513:1 24514:2 24524:1 24526:1 24536:2 24537:1 24539:1 24543:1 24544:1 24551:2 24591:1 24592:1 24596:1 24620:1 24622:2 24629:1 24648:1 24650:1 24656:1 24673:1 24689:1 24703:1 24704:1 24733:1 24756:1 24758:1 24786:1 24791:1 24796:1 24803:2 24828:2 24835:1 24841:1 24861:1 24862:1 24866:1 24879:1 24888:1 24890:3 24893:1 24916:1 24921:2 24923:1 24931:1 24936:1 24949:1 24976:1 24978:1 24979:1 24991:1 24992:1 24993:1 24994:2 25005:2 25006:4 25007:1 25029:2 25037:1 25038:5 25039:1 25051:1 25053:2 25070:2 25072:3 25074:1 25079:1 25083:2 25104:2 25114:1 25118:6 25128:2 25131:2 25133:1 25138:1 25141:1 25142:1 25150:2 25177:1 25185:2 25194:2 25196:2 25202:1 25228:1 25243:3 25260:1 25264:3 25290:3 25304:2 25309:1 25314:1 25316:1 25318:1 25319:1 25322:1 25333:1 25334:1 25337:1 25342:1 25346:2 25347:1 25348:1 25351:1 25358:1 25363:1 25365:2 25370:2 25379:1 25380:1 25381:2 25382:1 25388:1 25389:1 25390:1 25392:1 25394:1 25397:2 25400:1 25401:2 25404:1 25412:2 25413:1 25414:2 25419:1 25444:1 25450:1 25458:1 25491:1 25502:2 25506:1 25510:3 25514:1 25526:1 25536:1 25581:1 25587:2 25588:2 25608:1 25610:1 25637:1 25649:1 25668:1 25676:2 25690:1 25691:4 25693:2 25695:1 25702:1 25704:3 25709:1 25724:2 25731:1 25740:1 25745:2 25751:1 25767:1 25793:1 25796:1 25801:1 25825:1 25829:1 25835:2 25849:1 25883:1 25884:1 25887:1 25900:1 25916:1 25921:2 25937:1 25938:1 25956:6 25960:1 25965:1 25971:4 25976:1 25985:1 25987:1 25991:1 26004:1 26007:1 26014:1 26019:1 26027:1 26029:1 26031:1 26034:1 26042:8 26047:1 26048:1 26059:1 26062:1 26077:1 26080:1 26081:5 26094:2 26100:1 26134:1 26141:1 26148:1 26176:4 26182:6 26192:1 26213:1 26215:9 26219:1 26222:1 26227:1 26232:1 26239:2 26256:1 26260:1 26263:1 26269:1 26271:1 26272:1 26275:2 26283:1 26293:1 26296:1 26300:1 26309:6 26310:1 26314:1 26329:1 26334:1 26338:1 26348:1 26350:1 26359:1 26367:1 26384:1 26398:2 26399:2 26401:1 26405:2 26407:1 26413:1 26419:1 26439:1 26461:1 26462:2 26465:1 26473:1 26475:3 26476:1 26477:1 26486:4 26487:3 26500:1 26501:1 26517:1 26530:1 26531:1 26535:1 26536:1 26539:1 26542:1 26550:1 26551:1 26563:1 26568:1 26592:1 26595:1 26616:1 26623:1 26624:1 26640:1 26647:1 26649:1 26654:1 26676:1 26690:1 26697:1 26706:1 26708:1 26712:1 26721:3 26723:1 26728:1 26730:1 26759:1 26769:1 26774:1 26783:1 26813:1 26816:2 26825:2 26848:1 26851:1 26868:4 26883:2 26885:1 26908:1 26934:1 26937:1 26941:1 26945:1 26948:1 26960:1 26965:3 26966:2 26971:1 26985:1 27001:2 27008:1 27020:2 27022:1 27023:1 27037:1 27039:1 27046:1 27058:1 27081:2 27082:2 27087:1 27088:1 27091:1 27114:1 27120:4 27121:1 27124:1 27136:1 27153:4 27162:2 27182:1 27183:1 27198:2 27201:1 27202:1 27221:1 27223:1 27225:1 27228:3 27229:2 27235:3 27237:2 27239:1 27242:2 27244:1 27245:1 27249:3 27251:1 27266:1 27273:1 27283:6 27294:1 27336:1 27348:1
|
e8a8e9776dde5f837b47d662966770487ffc8879 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH4/EX4.66/Ex4_66.sce | c54ec073ac9ee7372c45d2e706b5db24e57b92f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 649 | sce | Ex4_66.sce | clc;
// answer is calculated for torque=30 but it is asked for torque=40 i.e why answer varies
p=4; // number of dc series motor
f=4*10^-3; // ratio of flux per pole to armature current
T=40; // torque of fan
n=1000; // speed of motor
a=2; // number of parallel path for waave winding
z=480; // number of conductors
ra=1; // armature resistance
v=230; // supply voltage
re=sqrt((T*2*%pi*a)/(p*z*f*n^2)); // ratio of armature current and new speed
// Ea=vt-ia*ra writing ia in terms of n solving for n (n is new speed)
n2=v/(re+((p*f*z)/(60*a)));
printf('Motor speed is %f rpm\n',n2);
ia=re*n2;
printf('Armature current is %f A',ia);
|
4c8ba7e84553e5ae61224a6f76356ccd288d9718 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH2/EX2.2.21/Ch2_2_21.sce | 3a98b6c2a18d20be9b41cdce15c3546573b04904 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | Ch2_2_21.sce | clc
disp("Example 2.21")
printf("\n")
disp("Find the load current and rms value of input current")
printf("Given\n")
V2=100
Rf=50
RL=950
//secondary voltage
Vm=sqrt(2)*V2
//DC load current
Idc=(2*Vm)/(%pi*(Rf+RL))
//RMS input current is same as RMS load current
Im=(Idc*%pi)/2
Irms=Im/sqrt(2)
printf("The load current=\t%f ampere\n",Idc)
printf("RMS load current=\t%f ampere\n",Irms)
|
d99afbd1763a0b44bd774a44ced5c128409029d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH8/EX8.6/Ex8_6.sce | 5463ead688f82c7698f473aabdf74e250f5ffeb4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sce | Ex8_6.sce | clc;clear;
//Example 8.6
//given data
COP=1;
TL=283;//in K
TH=294;//in K
//calculations
COPHP=1/(1-TL/TH);
nII=COP/COPHP;
disp(nII,'the second law efficiency')
|
5d88c16565ef1e07038655b7212a336e6c64ed8a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH3/EX3.1/exa_3_1.sce | 612903ebcfbf8c2b324a2176bb636c3c83402178 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | exa_3_1.sce | // Exa 3.1
clc;
clear;
close;
// Given data
Co= 20;// in pF
Vr= 5;// in V
V_T= 26;// in mV
V_T= V_T*10^-3;// in V
C_T= Co/(1+(Vr/V_T));// in pF
disp(C_T,"The transition capacitance of diode in pF")
|
4bba615e3b9667bb47d97d0c7a405148bc0e5c25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH5/EX5.1/Example_5_1.sce | 3fbf12e886f63e3aabfd3bd0f841640570c8a5b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,606 | sce | Example_5_1.sce | //Chemical Engineering Thermodynamics
//Chapter 5
//Thermodynamic Potentials and Maxwell's Relation
//Example 5.1
clear;
clc;
//Given
T = 293;//Constant temperature in K
w_NH3 = 20/100;//weight of NH3 in an aqueous solution in Kg
w_H2O = 80/100;//weight of H2O in an aqueous solution in Kg
V = 40;//feed rate in Kg/min
M_NH3 = 17;//Molecular weight of NH3
M_H2O = 18;//Molecular weight of H20
R = 1.98;//gas constant in Kcl/Kg mole K
V_s = 62;//Rate of heating steam in Kg/min
P1_H2O = 11.6;//Vapour pressure of water in feed in mm Hg
P2_H2O = 17.5;//Vapour pressure of pure water in mm Hg
P1_NH3 = 227;//Vapour pressure of NH3 in feed in mm Hg
P2_NH3 = 6350;//Vapor pressure of pure NH3 in mm Hg
//From steam tables:
Hs = 666.4;//Enthalpy of steam at 160 deg celsius & 2Kgf/cm^2 in Kcal /Kg
Ss = 1.75;//Entropy of steam at 160 deg celsius & 2Kgf/cm^2V in Kcal/Kg K
Hl = 20.03;//Enthalpy of liquid water at 20 deg celsius in Kcal/Kg
Sl = 0.0612;//Entropy of liquid water at 20 deg celsius in Kcal/Kg K
//To Calculate the efficiency of the separation process
//Material Balance:
n_NH3 = (V*w_NH3)/M_NH3;//Kg moles of NH3 in feed(tops)
n_H2O = (V*w_H2O)/M_H2O;//Kg moles of H20 in feed(bottoms)
//del_F = del_F_NH3 +del_F_H2O;
del_F = (R*T*n_NH3*log(P2_NH3/P1_NH3))+(R*T*n_H2O*log(P2_H2O/P1_H2O));//Theoretical minimum work done in Kcal
//The available energy of the steam can be calculated from equation 4.14(page no 110)
del_B = -V_s*((Hl-Hs)-T*(Sl-Ss));//Available energy of the steam in Kcal
E = (del_F/del_B)*100;
mprintf('The efficiency of the separation process is %f percent',E);
//end |
e59581029f353c46e6756918fbb7ff2073ec0244 | 449d555969bfd7befe906877abab098c6e63a0e8 | /243/CH3/EX3.18/3_18.sce | b5b1a377328282980b06f5c0f80f8636665d1216 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | 3_18.sce | //Example No. 3_18
//Floating Point Arithmetic
//Pg No. 56
clear ;close ;clc ;
fx = 0.500000 ;
Ex = 1 ;
fy = 0.100000 ;
Ey = -7 ;
[Ez,n] = max(Ex,Ey)
if n == 1 then
fy = fy*10^(Ey-Ex)
fz = fx + fy
if fz > 1 then
fz = fz*10^(-1)
Ez = Ez + 1
end
disp(fy,'fy = ',Ez,'Ez = ')
else
fx = fx*10^(Ex - Ey)
fz = fx + fy
if fz > 1 then
fz = fz*10^(-1)
Ez = Ez + 1
end
disp(fx,'fx = ',Ez,'Ez = ')
end
mprintf('\n fz = %f \n z = %f E%i \n',fz,fz,Ez) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.