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
08f8965e6029096b02c1a362e1f453513f516f18
449d555969bfd7befe906877abab098c6e63a0e8
/1592/CH4/EX4.1/example_4_1.sce
3a6c3c2babde1502242fd97f0bb3847f5583f344
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,280
sce
example_4_1.sce
//Scilab Code for Example 4.1 of Signals and systems by //P.Ramakrishna Rao //Plotting Magnitude and Phase spectrum clc; clear; A=8; Dt=0.005; T1=4; t=-T1/2:Dt:T1/2; q=length(t) for i=-(q/2)+1:q/2 if i>-q/4 & i<q/4 then xt(i+(q/2))=A; else xt(i+(q/2))=0; end end Wmax = 2*%pi*1; //Analog Frequency = 1Hz K = 4; k = 0:(K/1000):K; W = k*Wmax/K; xt = xt'; XW = xt* exp(-sqrt(-1)*t'*W) * Dt; XW_Mag = real(XW); W = [-mtlb_fliplr(W), W(2:1001)]; // Omega from -Wmax to Wmax XW_Mag = [mtlb_fliplr(XW_Mag), XW_Mag(2:1001)]; [ XW_Phase ,db] = phasemag (XW); XW_Phase =[-mtlb_fliplr(XW_Phase),XW_Phase(2:1001)]; // Plotting the Function subplot(2,1,1); a=gca(); a.data_bounds=[-4,0;4,2]; a.y_location="origin"; plot(t,xt); xlabel('t in sec.'); title('Continous Time Signal x(t)'); // Plotting Magnitude Reponse of CTS subplot(2,1,2); a=gca(); a.y_location="origin"; plot(W/(2*%pi),XW_Mag); xlabel('Frequency in Hz'); title('Continuous time Fourier Transform X(jW)'); // Plotting Phase Reponse of CTS figure(1); a = gca (); a.y_location = "origin"; a.x_location = "origin"; plot (W/(2*%pi),-XW_Phase *%pi /180) ; xlabel ( ' Frequency in Hz' ); ylabel ( '<X(jW) ' ) title ( ' Phase Response (CTFT) in Radians ' )
748939fe00258216485f6f2c4e2a8d7ceecca35c
f6134e0a162a059c42ec3ef8de2a63941d73936c
/Scilab_code/Graph_search/identify_transition.sci
cf098f456b0e2a2fd4a2edd6786980503590570e
[]
no_license
mxch18/SRL-WRT_pathPlanning
38a1701934a4a0e919a6c1c7990092b242df72da
6992febbbe103814d2cef5351a0e8917b183a2b0
refs/heads/master
2020-03-23T06:43:54.155192
2018-09-26T17:26:56
2018-09-26T17:26:56
141,226,032
0
0
null
null
null
null
UTF-8
Scilab
false
false
536
sci
identify_transition.sci
function trans_stnc = identify_transition(STNC1,STNC2) //Author : Maxens ACHIEPI //Space Robotics Laboratory - Tohoku University //Description: // //INPUT // //OUTPUT // //----------------------------------------------------------------------------// leg = -1; trans_stnc = STNC1; for i = 1:length(STNC1) if ~isequal(STNC1.pos(i),STNC2.pos(i)) then leg = i; break; end end trans_stnc(i).pos = []; endfunction
4d2e505fdb43003396a13a193be6873951e44db4
6f286be4a4e16867cc6e488080b8e3eced1dcd62
/htslib/test/sam_filter/filter.tst
129516b248e4f61a53acb2a4b043ec266a546995
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "BSD-2-Clause" ]
permissive
imgag/ngs-bits
3587404be01687d52c5a77b933874ca77faf8e6b
0597c96f6bc09067598c2364877d11091350bed8
refs/heads/master
2023-09-03T20:20:16.975954
2023-09-01T13:17:35
2023-09-01T13:17:35
38,034,492
110
36
MIT
2023-09-12T14:21:59
2015-06-25T07:23:55
C++
UTF-8
Scilab
false
false
2,824
tst
filter.tst
# Copyright (C) 2020 Genome Research Ltd. # # Author: James Bonfield <jkb@sanger.ac.uk> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. # First field: # INIT = initialisation, not counted in testing # P = expected to pass (zero return; expected output matches, if present) # N = expected to return non-zero # F = expected to fail # # Second field (P/N/F only): # Filename of expected output. If '.', output is not checked # # Rest: # Command to execute. $tv is replaced with the path to test_view # String matches P string1.out $tv -i 'filter=qname =~ "\.1" && cigar =~ "D"' ../ce#1000.sam P string2.out $tv -i 'filter=rname=="CHROMOSOME_II"' ../ce#5b.sam P string3.out $tv -i 'filter=rname=~"CHROMOSOME_II"' ../ce#5b.sam P string4.out $tv -i 'filter=cigar=~"D"' ../ce#1000.sam P string5.out $tv -i 'filter=seq =~ "(AT){2}"' ../ce#1000.sam P string6.out $tv -i 'filter=library=="x"' ../xx#rg.sam P string7.out $tv -i 'filter=library!="x"' ../xx#rg.sam # Integer ops P int1.out $tv -i 'filter=pos % 23 == 11' ../ce#1000.sam |egrep -cv '^@' P int2.out $tv -i 'filter=qlen/(flag*mapq+pos)>5' ../ce#1000.sam |egrep -cv '^@' # Aux tags P int3.out $tv -i 'filter=[NM]>=10 || [MD]=~"A.*A.*A"' -t4 ../ce#1000.sam |egrep -cv '^@' # Functions. P func1.out $tv -i 'filter=length(seq) != qlen' ../ce#5b.sam | egrep -cv '^@' P func2.out $tv -i 'filter=min(qual) >= 20' ../ce#1000.sam | egrep -cv '^@' P func3.out $tv -i 'filter=max(qual) <= 20' ../ce#1000.sam | egrep -cv '^@' P func4.out $tv -i 'filter=avg(qual) >= 20 && avg(qual) <= 30' ../ce#1000.sam | egrep -cv '^@' P func5.out $tv -i 'filter=sclen>=20' ../realn02.sam | egrep -v '^@' P func6.out $tv -i 'filter=rlen<50' ../realn02.sam | egrep -v '^@' P func7.out $tv -i 'filter=qlen>100' ../realn02.sam | egrep -v '^@'
228ccb7812df030b7d8af5f06be8510099bab75b
449d555969bfd7befe906877abab098c6e63a0e8
/2216/CH13/EX13.1/ex_13_1.sce
2a1e9e3fdb86ef2c91f7906c9e41b149374e0a83
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
947
sce
ex_13_1.sce
//Example 13.1: plot clc; clear; close; lod=[0;20;40;60;80;100;160];//in micro meter slong=[1.0;0.95;0.92;0.89;0.86;0.83;0.80];// lad=[0;10;20;30;40;50;60;70;80;90;100];//in micro meter slat=[0;0.1;0.2;0.3;0.4;0.5;0.6;0.7;0.8;0.9;1.0];// add=[0;1;2;3;4;5;6;7;8;9;10];// sang=[0;0.5;0.6;0.7;0.8;0.9;1.0;1.1;.12];// t=0:20:200; s1=1.0:-0.03:0.7;// subplot(131) plot(t,s1);// xtitle("Variation of Slong as a function of Δ x (with Δy=0 and Δθ=0) ") xlabel("Longitudinal displacement Δ x (micro meter)") ylabel("Slong (normalised)") t1=0:10:100; s2=1:-0.1:0;// subplot(132) plot(t1,s2);// xtitle("Variation of Slat as a function of Δ y (with Δx=0 and Δθ=0) ") xlabel("Lateral displacement Δ y (micro meter)") ylabel("Slat (normalised)") t2=0:1:10; s3=1.0:-0.03:0.7;// subplot(133) plot(t2,s3);// xtitle("Variation of Sang as a function of Δ θ (with Δx=0 and Δy=0) ") xlabel("Angular displacement Δ θ (deg)") ylabel("Sang (normalised)")
02d79903aed34eee323d806c0b6a8946e01e82d8
8712e7b4614b1ab648f19bcce8ca17e378876546
/Scilab Com Interface Grafica/Engine/B8_Salva_Dados.sce
4b0be306c31fc2e32c47771d2fea838434a5cfbb
[]
no_license
Diogo-Rossi/Mestrado-Diogo-Rossi
d0d476d878c729c44778ea8f364c50c5464fc751
d544d3bce094931eb96a6031aaa1ae1a833d2b04
refs/heads/master
2022-08-26T22:28:04.339221
2022-07-11T00:25:21
2022-07-11T00:25:21
236,889,761
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,182
sce
B8_Salva_Dados.sce
Arquivo = uiputfile(["*.dinam","Arquivos de Análise Dinâmica"], ... fileparts(pwd()),"Salvar dados da análise"); if ~isempty(Arquivo) then [Path,Name,Extension] = fileparts(Arquivo); Arquivo = Path + Name + ".dinam" EditBoxData = [] Campos = {MaterialData SectionData DampingData NewmarkBeta DeltaT_CTS ATS_Bergan ATS_Hulbert ATS_Cintra} k=1 for i=1:size(Campos,"*") for j=1:size(Campos{i},"*") EditBoxData(k) = Campos{i}(j).string k=k+1 end end if ~isempty(EditBoxData); save(Arquivo, "EditBoxData","-append") end if ~isempty(Barras); BarrasData = Barras.data; save(Arquivo, "BarrasData","-append") end if ~isempty(Barras); BarrasData = Barras.data; save(Arquivo, "BarrasData","-append") end if ~isempty(Cargas); CargasData = Cargas.user_data; save(Arquivo, "CargasData","-append") end if ~isempty(Restricoes); ApoiosData = {Restricoes.data Restricoes.user_data}; save(Arquivo, "ApoiosData","-append") end end
1d68cf5385d77354d31bf215bc9564c705cbcf15
449d555969bfd7befe906877abab098c6e63a0e8
/1061/CH8/EX8.12/Ex8_12.sce
ade16e0df251af1581c30fd50a459d840d2bea52
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
418
sce
Ex8_12.sce
//Ex:8.12 clc; clear; close; ni=0.09;// normal efficiency d=2*2.54;// separation distance in cm x=0.2;// divergence angle in radians vf=2.0;// forward voltage in volts i_f=65*10^-3;// forward current in amp pi=vf*i_f;// input power in Watt po=ni*pi;// output power in Watt H=4*po/(3.14*d^2*x^2);// irradiance in watt/cm^2 H1=H*1000;// irradiance in mwatt/cm^2 printf("The irradiance =%f mwatt/cm^2 ", H1);
40e94d89c8fc6a4b1a3c746888bafaf30d441543
449d555969bfd7befe906877abab098c6e63a0e8
/3012/CH12/EX12.5/Ex12_5.sce
c56e7e09d00160009eea8f64c96db121181cb9fd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,111
sce
Ex12_5.sce
// Given:- nN2 = 0.79 // initial moles of nitrogen in kmol pN2 = 2.0 // initial pressure of nitrogen in bars TN2 = 250.0 // initial temperature of nitrogen in kelvin nO2 = 0.21 // initial moles of oxygen in kmol pO2 = 1.0 // initial pressure of oxygen in bars TO2 = 300.0 // initial temperature of oxygen in kelvin // Part(a) MN2 = 28.01 // molar mass of nitrogen in kg/kmol MO2 = 32.0 // molar mass of oxygen in kg/kmol // Calculations // With the help of table A-20 cvbarN2 = MN2*0.743 // in kj/kmol.K cvbarO2 = MO2*0.656 // in kj/kmol.K T2 = (nN2*cvbarN2*TN2+nO2*cvbarO2*TO2)/(nN2*cvbarN2+nO2*cvbarO2) // Result printf( 'The final temperature of the mixture in kelvin is: %f',T2); // Part(b) // Calculation p2 = ((nN2+nO2)*T2)/(nN2*TN2/pN2 + nO2*TO2/pO2) // Result printf( 'The final pressure of the mixture in bar is: %f',p2); // Part(c) Rbar = 8.314 // universal gas constant // Calculations cpbarN2 = cvbarN2 + Rbar cpbarO2 = cvbarO2 + Rbar yN2 = nN2/(nN2+nO2) // mole fraction of N2 yO2 = nO2/(nN2+nO2) // mole fraction of O2 sigma = nN2*(cpbarN2*log(T2/TN2)-Rbar*log(yN2*p2/pN2)) + nO2*(cpbarO2*log(T2/TO2)-Rbar*log(yO2*p2/pO2)) // Result printf( 'The amount of entropy produced in the mixing process, in kJ/K is: %f',sigma);
ccecbdf570ffd3e331fc1c8f4842b64e5c316086
fbc2a84b0319c5448495b1d68ffcac68e352940e
/tr2_q2_ELM.sce
b7aa75c989645b0f9d780015880ed3750cfbdd03
[ "MIT" ]
permissive
aanfiel/trabalho2_ic
3b3c6e4b9478a42f01bc434922cf175eec8c3642
dd7797a3570768d46e0deeb680c8f3a025392336
refs/heads/master
2020-09-07T08:14:57.223275
2019-11-11T16:44:40
2019-11-11T16:44:40
220,719,056
0
0
null
2019-11-10T00:07:59
2019-11-09T23:56:55
Scilab
UTF-8
Scilab
false
false
1,488
sce
tr2_q2_ELM.sce
// SEGUNDO TRABALHO DE INTELIGÊNCIA COMPUTACIONAL // Questão 2 (ELM) // Aluno: José Lopes de Souza Filho // Matrícula: 389097 // Aplicação: Scilab, versão 6.0.2 // SO: Linux Mint 19.2 Tina //----------------------------------------------------------------------------- clear; clc; base = fscanfMat('iris_log.dat'); X = base(:,1:4); D = base(:,5:7); q = 9; //qtd de neurônios ocultos p = 4; //qtd atributos a=0; b=0.1; // define intervalo dos pesos x_ones = ones(150,1); X = [x_ones X]; X = X'; D = D'; //----------------leave-one-out-------------------------------------------- disp("método leave-one-out: \n"); W=a+(b-a).*rand(q,p+1); // gera numeros uniformes YT1 = []; for x = 1 : 150 XT = X(:,x); DT = D(:,x); if (x==1) XTR = X(:,x+1 : 150); DTR = D(:,x+1 : 150); else XTR = X(:,[1:x-1, x+1 : 150]); DTR = D(:,[1:x-1, x+1 : 150]); end u1 = W*XTR; Z1 = 1./(1+exp(-u1)); Z1 = [ones(1,149); Z1]; M1 = DTR*Z1'*(Z1*Z1')^(-1); ut1 = W*XT; ZT1 = 1./(1+exp(-ut1)); ZT1 = [ones(1,1); ZT1]; ach = 0; YT1 = [YT1 M1*ZT1]; end ach = 0; for i = 1 : 150 if(max(YT1(:,i)) == YT1(1,i)) YT1(:,i) = [1; 0; 0]; elseif(max(YT1(:,i)) == YT1(2,i)) YT1(:,i) = [0; 1; 0]; else YT1(:,i) = [0; 0; 1]; end if(YT1(:,i) == D(:,i)) ach = ach+1; end end // disp(YT1'); disp("Acuracia do método leave-one-out: "); disp(ach/150);
a35e1c2c9eb4209d646aa147e6d7cbe636d3348a
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH1/EX1.A.2/1_A_2.sce
f523b8b2f21452a7a7145602bf59bf8d9ef6710e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
45
sce
1_A_2.sce
v2=5 i2=v2/1000 v1=-i2/5 vs=v1 disp(vs)
e3afc22981d256487b6fe0e5c841a3b731aabfd0
449d555969bfd7befe906877abab098c6e63a0e8
/1133/CH4/EX4.19/Example4_19.sce
7588d26fe1378f67ca44d3691531201b1fc7db62
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
213
sce
Example4_19.sce
//Example 4.19 clc disp("For a Clapp oscillator,") disp(" f = 1 / 2*pi*sqrt(L*C3)") disp("where C3 = 63 pF") f=(1/(2*%pi*sqrt(315*10^-18)))*10^-6 // in MHz format(6) disp(f,"Therefore, f(in MHz) =")
b243906e139de650ce257cf5cc466cffef5b62b4
139d4a83f28a14dc04c48d99a492bec7abcc3229
/lab3_v8/0_bisection.sce
e1eaeddd6b9a7fd1cad2680c7c4333239ad05a64
[ "MIT" ]
permissive
s-kostyuk/labs_alg
0f78d0a5df7b94f9190bc3b45a077fb3e68e74fb
320902e94d9bfde9d7a13a427b315605929dec17
refs/heads/master
2021-01-10T03:54:40.483782
2015-12-03T22:52:39
2015-12-03T22:56:46
44,764,651
0
2
null
2015-12-01T15:07:01
2015-10-22T18:20:28
Scilab
UTF-8
Scilab
false
false
673
sce
0_bisection.sce
function [intervalA, intervalB] = GetNewInterval(f, a, b) C0 = ( a + b ) / 2; if ( f( a ) * f( C0 ) < 0 ) then intervalA = a; intervalB = C0; elseif( f( b ) * f( C0 ) < 0) then intervalA = C0; intervalB = b; else disp( "Invalid interval specified" ) end endfunction function x = BisectionSolve( f, a, b, density ) it = 1; while %T [ a, b ] = GetNewInterval( f, a, b ); if(abs( a - b ) < density) x = ( a + b ) / 2; break; end it = it + 1; end mprintf( "\nSolved on iteration number %d\n", it ) endfunction
26ac948cf0f18486851ea72b827316827eabebaa
3f321619d7f900b79810e0b5e3722b405b099c72
/PFM-I/cms1329-assin1-30-10-13/que1.sce
f874654f3a9e14dd343eae1267e244d3093dbbc1
[]
no_license
mina20/cppLinux
a1c1b3dfd78a3edc69e08d50c532b9325a9b4110
d0b4e950d962315b36f3202920ddda37ac744911
refs/heads/master
2020-12-02T22:47:50.704032
2017-07-04T06:42:28
2017-07-04T06:42:28
96,184,034
0
0
null
null
null
null
UTF-8
Scilab
false
false
501
sce
que1.sce
//Find pythagorean triplets till 100 Count no of triplets function[]=triplet() count=1 for(i=1:100) for(j=i:100) for(k=j:100) a=i b=j c=k if c*c==a*a+b*b then disp("Triplet no =") disp(count) disp("Triplet is="); disp(a,b,c); count=count+1 end end end end endfunction
c899e5475567933af2756af314112fe1a4eef92d
449d555969bfd7befe906877abab098c6e63a0e8
/1853/CH4/EX4.31/Ex4_31.sce
e56ec1b38cb243b71f805e61a4d71f772c1e0ba6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
251
sce
Ex4_31.sce
//calculate the value of RESISTANCE AND CAPACITANCE I=2.5;//amps V=150;//volts f=50;//hetz Z=V/I; P=100;//watt..power R=P/(I*I) Xc=sqrt(Z^2-R^2) C=1/(2*3.14*f*Xc);// capacitance disp('find tha value of capacitance='+string(C)+'farad');
f4e225356a46cf107b472a338397e275f475c026
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/RT1.prev.tst
b1e5d985ab9666bb800abfebc5c181ca078b8047
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
120
tst
RT1.prev.tst
usage: java -cp dist/ramath.jar org.teherba.ramath.linear.RationalTriangle "[vect1] oper [vect2]" oper= + - * / |
e3466aa0a430a0d385b2d534093ce0d2c8875451
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH10/EX10.9/10_9.sce
77f3b9b2faa2f05250a7784c8133fb0a0e908bec
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
215
sce
10_9.sce
m = 1.5; P1 = 5.6; V1 = 0.06; T2 = 273+240; a = 0.946; b = 0.662; k = 0.0001; // Part (b) R = a-b; T1 = (P1*1e03*V1)/(m*R); W12 = -integrate('m*(b+k*T)','T',T1,T2); disp("kJ",W12,"The work done in the expansion is")
2e25969e8adfd9a710373d68ccf768b6c32d0294
449d555969bfd7befe906877abab098c6e63a0e8
/3860/CH1/EX1.18/EX1_18.sce
ae23d476cb2cca4ad154dfc853009dc4f9e0b1fb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
476
sce
EX1_18.sce
//Example 1.18: add 7 to -5 clc//clears the console clear //clears all existing variables x=bitcmp(5,4) //finds complement of 5 y=1; u=x+y //1 is added to the complement v=7; w=u+v a=dec2bin(w) //binary conversion of the decimal number disp(' binary form of the number obtained by adding 7 to -5 ') disp(a) //result is displayed disp(' the msb is discarded,so four bit representation in binary form =') a=dec2bin(w-(2^4),4) disp(a) //final result is displayed.
c0c55a5b1279eaa3741c75e8ee525a20abe7273d
71ad8ef6fba3006cf2e7d8d16a3e2451b2df7459
/classifiers/simple_classifier.sci
3e8568985f580801ae1cfe068dd03a88ff4a1e33
[]
no_license
carloscdias/aln_reconhecimento_faces
ec356608bba71e74bc7c275707fa03ec33522629
7e14c443b60fd513cc1e410c6632aaaa87c40679
refs/heads/main
2023-05-02T09:29:46.151745
2021-05-18T20:00:14
2021-05-18T20:00:14
364,701,815
1
1
null
2021-05-18T20:00:15
2021-05-05T20:46:40
Scilab
UTF-8
Scilab
false
false
2,082
sci
simple_classifier.sci
/** * Classifies a given column-vector into a class in 'model_labels' * according to the minimum distance given by 'fn_distance' between the x and * each row in 'model' * * x: image to be classified * model: matrix of all known images as column-vectors * model_labels: vector where the ith element corresponds to the label of the * ith column in 'model' * fn_distance: function used to calculate distance between two vectors * * class: predicted class/label of image given by 'x' * projection: column-vector image as seen by the 'model' glass */ function [class, projection] = simple_classifier(x, model, model_labels, fn_distance) model_size = size(model, 2); min_distance = %inf; for i = 1:model_size distance = fn_distance(model(:, i), x); if distance < min_distance then min_distance = distance; class = model_labels(i); projection = model(:, i); end end endfunction /** * Same as 'simple_classifier' but with default 'manhattan_distance' */ function [class, projection] = simple_classifier_manhattan(x, model, model_labels) [class, projection] = simple_classifier(x, model, model_labels, manhattan_distance); endfunction /** * Same as 'simple_classifier' but with default 'euclidean_distance' */ function [class, projection] = simple_classifier_euclidean(x, model, model_labels) [class, projection] = simple_classifier(x, model, model_labels, euclidean_distance); endfunction /** * Builds a simple model with available 'train_indexes' * * train_indexes: vector of indexes used to build the model * dataset: matrix of all column-vector images available * labels: vector where the ith element corresponds to the label of the * ith column in 'dataset' * * model: column-vector images that the classifier knows * model_labels: labels that the classifier knows */ function [model, model_labels] = simple_classifier_model(train_indexes, dataset, labels) model = dataset(:, train_indexes); model_labels = labels(train_indexes); endfunction
7e01f5b9556d4f268ce772a76a6cb639b6e1f9e3
449d555969bfd7befe906877abab098c6e63a0e8
/767/CH3/EX3.9.4/Ch03Exa3_9_4.sci
609cf1dc00f048201241650d57a23fa09f02eab2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
792
sci
Ch03Exa3_9_4.sci
// Scilab code Exa. 3.9.4 : To calculate the number of nuclei at t = 0, initial activity and age of Pu-239 which emit alpha particle : Page no. 145 : (2011) t_h = 24000*365*24*3600; // Half life of Pu-239, s D_c = 0.6931/t_h; // Decay constant of Pu-239, s^-1 N = 6.023e+023*10/239; // Number of nuclei at t = 0, nuclei A_0 = D_c*N; // Initial activity, disintegrations/sec A = 0.1; // Activity after time t, disintegrations/sec t = log(A_0/A)*1/D_c; // Age of the Pu-239, years printf("\nThe number of nuclei at t = 0, = %4.2e nuclei \nInitial activity = %4.2e disintegrations/s and \nAge of Pu-239 = %4.2e years ", N, A_0, t) // Result // The number of nuclei at t = 0, = 2.52e+022 nuclei // Initial activity = 2.31e+010 disintegrations/s and // Age of Pu-239 = 2.86e+013 years
f3b449398fe482fd56d00c5f89240a1bc37758e3
08e6015408a35a317d4d0b609af8ccae9b88a3bf
/src/gates/chips/01/Nand.tst
af0146e0d1ef2a621064e43697247f036117f0a4
[ "MIT" ]
permissive
lekhacman/nand2teris
38c7aa44b2329ccf102333af5dc1dd542869144b
520ca48a492b6ac8966330ddaf5174c19e5a8f7f
refs/heads/master
2023-01-06T18:36:35.660251
2020-12-27T09:08:39
2020-12-27T09:08:39
209,975,266
1
0
MIT
2022-12-10T03:13:50
2019-09-21T11:41:33
Scilab
UTF-8
Scilab
false
false
207
tst
Nand.tst
load Nand.hdl, output-file Nand.out, output-list a b out, compare-to Nand.cmp; set a 0, set b 0, eval, output; set a 0, set b 1, eval, output; set a 1, set b 0, eval, output; set a 1, set b 1, eval, output;
7c29977ecd4704e6304341057d12de0eeea0505f
8d952a06e3809a06825a3be7b067201f3652f16a
/debug/bin/BackDoor/macros/scilab_backdoor.sci
5dcc869fe213318e9b56467671564b20656282f8
[ "GPL-3.0-only", "MIT" ]
permissive
andyLaurito92/haikunet
b771eaf6bd91292485f0a49698ce123b9308d676
db44623b248c56735c28a5f589c3239dc7e9855e
refs/heads/master
2021-06-14T12:38:38.996450
2021-05-05T18:26:02
2021-05-05T18:26:02
75,564,849
2
1
MIT
2021-05-05T18:26:26
2016-12-04T21:12:31
C++
UTF-8
Scilab
false
false
147
sci
scilab_backdoor.sci
// ==================================================================== // // ====================================================================
366dc7ea833451197b4554b19a07e2d8e8f55d3b
d3a7e2b6cf1d27b6a71f37f1848427ea4bfe3787
/packages/devextreme-angular-generator/src/templates/nested-component.tst
0d1dcb2ba6d55bdf2f439b0d41d623e0bda26035
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
DevExpress/devextreme-angular
6fb1cb7fdbc0570f6f21e0c5390ef253ab4bbc88
59f29008f0477f4084c5f674768539bc8ca7cdbd
refs/heads/master
2023-09-01T06:42:16.496592
2023-08-18T08:18:54
2023-08-18T08:18:54
60,595,740
566
200
MIT
2023-09-04T09:40:23
2016-06-07T08:24:41
TypeScript
UTF-8
Scilab
false
false
4,793
tst
nested-component.tst
/* tslint:disable:max-line-length */ <#? it.inputs #>/* tslint:disable:use-input-property-decorator */ <#?#> import { Component,<#? !it.isCollection #> OnInit, OnDestroy,<#?#> NgModule, Host,<#? it.hasTemplate #> ElementRef, Renderer2, Inject, AfterViewInit,<#?#> SkipSelf<#? it.properties #>, Input<#?#><#? it.events #>, Output, EventEmitter<#?#><#? it.collectionNestedComponents.length #>, ContentChildren, forwardRef, QueryList<#?#> } from '@angular/core'; <#? it.hasTemplate #>import { DOCUMENT } from '@angular/common';<#?#> <#? it.imports #><#~ it.imports :file #>import <#= file.importString #> from '<#= file.path #>'; <#~#><#?#> import { NestedOptionHost,<#? it.hasTemplate #> extractTemplate,<#?#><#? it.hasTemplate #> DxTemplateDirective, IDxTemplateHost, DxTemplateHost<#?#> } from 'devextreme-angular/core'; import { <#= it.baseClass #> } from '<#= it.basePath #>'; <#~ it.collectionNestedComponents :component:i #><#? component.className !== it.className #>import { <#= component.className #>Component } from './<#= component.path #>'; <#?#><#~#> @Component({ selector: '<#= it.selector #>', template: '<#? it.hasTemplate #><ng-content></ng-content><#?#>', styles: ['<#? it.hasTemplate #>:host { display: block; }<#?#>'], providers: [NestedOptionHost<#? it.hasTemplate #>, DxTemplateHost<#?#>]<#? it.inputs #>, inputs: [<#~ it.inputs :input:i #> '<#= input.name #>'<#? i < it.inputs.length-1 #>,<#?#><#~#> ]<#?#> }) export class <#= it.className #>Component extends <#= it.baseClass #><#? it.hasTemplate #> implements AfterViewInit,<#? !it.isCollection #> OnDestroy, OnInit,<#?#> IDxTemplateHost<#?#><#? !it.isCollection && !it.hasTemplate #> implements OnDestroy, OnInit <#?#> {<#~ it.properties :prop:i #> @Input() get <#= prop.name #>(): <#= prop.type #> { return this._getOption('<#= prop.name #>'); } set <#= prop.name #>(value: <#= prop.type #>) { this._setOption('<#= prop.name #>', value); } <#~#> <#~ it.events :event:i #> /** <#? event.isInternal #> * This member supports the internal infrastructure and is not intended to be used directly from your code. <#??#> * [descr:<#= event.docID #>] <#? event.isDeprecated #> * @deprecated [depNote:<#= event.docID #>] <#?#> <#?#> */ @Output() <#= event.emit #>: <#= event.type #>;<#? i < it.events.length-1 #> <#?#><#~#> protected get _optionPath() { return '<#= it.optionName #>'; } <#~ it.collectionNestedComponents :component:i #> @ContentChildren(forwardRef(() => <#= component.className #>Component)) get <#= component.propertyName #>Children(): QueryList<<#= component.className #>Component> { return this._getOption('<#= component.propertyName #>'); } set <#= component.propertyName #>Children(value) { this.setChildren('<#= component.propertyName #>', value); } <#~#> constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost, @Host() optionHost: NestedOptionHost<#? it.hasTemplate #>, private renderer: Renderer2, @Inject(DOCUMENT) private document: any, @Host() templateHost: DxTemplateHost, private element: ElementRef<#?#>) { super();<#? it.events #> this._createEventEmitters([ <#~ it.events :event:i #>{ emit: '<#= event.emit #>' }<#? i < it.events.length-1 #>, <#?#><#~#> ]); <#?#> parentOptionHost.setNestedOption(this); optionHost.setHost(this, this._fullOptionPath.bind(this));<#? it.hasTemplate #> templateHost.setHost(this);<#?#><#? it.optionName === 'dataSource' #> if ((console) && (console.warn)) { console.warn('The nested \'<#= it.selector #>\' component is deprecated in 17.2. ' + 'Use the \'<#= it.optionName #>\' option instead. ' + 'See:\nhttps://github.com/DevExpress/devextreme-angular/blob/master/CHANGELOG.md#17.2.3' ); }<#?#> } <#? it.hasTemplate #> setTemplate(template: DxTemplateDirective) { this.template = template; } ngAfterViewInit() { extractTemplate(this, this.element, this.renderer, this.document); } <#?#> <#? !it.isCollection #> ngOnInit() { this._addRecreatedComponent(); } ngOnDestroy() { this._addRemovedOption(this._getOptionPath()); } <#?#> <#? it.isCollection #> ngOnDestroy() { this._deleteRemovedOptions(this._fullOptionPath()); } <#?#> } @NgModule({ declarations: [ <#= it.className #>Component ], exports: [ <#= it.className #>Component ], }) export class <#= it.className #>Module { }
63b0bca7a8b2ae41524761eb615516bccca76db7
449d555969bfd7befe906877abab098c6e63a0e8
/509/CH18/EX18.1/18_1.sci
451809f22590f7ef55bf9b4b6a58a7778538ecb8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
431
sci
18_1.sci
// Chapter 18 Example 1// clc clear //line to ground capacitance= c,supply frequency=f// //inductance of the coil =l// f=50; c=0.2*10^-6; l=1/(3*(2*%pi*f)^2*c); printf("\n Inductance of the coil %.2f H\n",l); //kVA rating of the coil = kVA,operating voltage =v// v=132; // in kV// vph=v*10^3/sqrt(3); kVA=vph^2/(2*%pi*f*l); printf("\n kVA rating is given by %.f kVA\n",kVA/10^3);// to get ans in kVA divide by 10^3//
8e606a10f161efd5909d16c8501cbcaa7152c612
449d555969bfd7befe906877abab098c6e63a0e8
/1244/CH6/EX6.5/Example65.sce
9df88c1a5f92f4dcf8083b8fc363056c7f3e7774
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,746
sce
Example65.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clc; disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 6 Example # 6.5 ") //Velocity in ft/s U = 10; //Outer diameter in inches D = 1.5; //Inner diameter in inches d = 1; //Temperature of water in degree F Tw = 180; //Temperature of wall in degree F Twall = 100; //The hydraulic diameter D for this geometry is 0.5 in. D = 0.5; //Using properties given in the table provided //Reynolds number Re = (((U*D)*3600)*60.8)/(12*0.75); //Prandtl number Pr = (1*0.75)/0.39; //The Nusselt number according to the Dittus-Boelter correlation [Eq. (6.60)] Nu = (0.023*(125000^0.8))*(Pr^0.3); printf('The Nusselt number according to the Dittus-Boelter correlation comes out to be %5.2f\n',Nu) //Using the Sieder-Tate correlation [Eq. (6.61)] //Nusselt number Nu = 358; printf('The Nusselt number according to the Sieder-Tate correlation comes out to be %5.2f\n',Nu) //The Petukhov-Popov correlation [Eq. (6.63)] gives //Friction factor f = (1.82*log10(125000)-1.64)^(-2); //K1 of Eq. 6.63 K1 = 1+3.4*f; //K2 of Eq. 6.63 K2 = 11.7+1.8/(Pr^0.33); //Nusselt number Nu = 370; //The Sleicher-Rouse correlation [Eq. (6.64)] yields //a of Eq. 6.64 a = 0.852; //b of Eq. 6.64 b = 1/3+0.5/exp(0.6*4.64); //Reynolds number Re = 82237; //Nusselt number Nu = 5+(0.015*(Re^a))*(4.64^b); printf('Nusselt number according to The Sleicher-Rouse correlation comes out to be %5.2f\n',Nu) disp("Assuming that the correct answer is Nu=370") disp("The first two correlations underpredict by about 10% and 3.5%, respectively") disp("while the Sleicher-Rouse method overpredicts by about 10.5%.")
95c89940d7420f379185972c924c31ad00e66c6c
449d555969bfd7befe906877abab098c6e63a0e8
/296/CH3/EX3.6/eg3_6.sce
071e10a6e80b756e2c8073298a66c9c8b603fc16
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
214
sce
eg3_6.sce
m = 9.11*10^-31; //mass of electron ml = 0.98*m; mt = 0.19*m; mninverse = (1/3) * ((1/ml)+(2/mt)); mn = 1/mninverse; mn0 = mn/m; disp(mn0,"Conductivity effective mass in proportion to mass of an electron =")
b1d30725b0145cc25607832ed37c40eb67abe912
c908c5ec283c57c29da044966fce0fee1f659873
/labs/Experimento 5/Exp 5-Códigos/Algoritmo para Salvar Imagens.sce
afb76b20ae8867e9b4e91e39c43c80fbc9eb47ff
[]
no_license
marialago/numerical-computation
3ca0e95c637c1d4d3ea79789d1bda0b84ca29ca5
c88c0ddc6f7501ed115556f72f5f5db3a8610f6b
refs/heads/master
2022-10-30T01:42:21.032196
2020-06-14T18:33:45
2020-06-14T18:33:45
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
458
sce
Algoritmo para Salvar Imagens.sce
n = 11 ; //numero de imagens salvas for i=1:n nome = 'C:\Users\Isaac de Lyra Jr\Downloads\prints-20190616T040115Z-001\prints\'+string(i)+'.jpg'; img = imread(nome); figure(); matplot(img,'f') x = x0 - cos(a)*d(w*(i-1)+1) y = y0 + sin(a)*d(w*(i-1)+1) plot(x,y,'.','markersize',20) xs2jpg(gcf(),'r2' + string(i) +'.jpg',1); sleep(500) end
9c335d4b35bc8ecbaf8a53e1d4e48e5aa785e212
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH7/EX7.6/Ex_7_6.sce
51824e0cc6fab90a58fab095f44fce7a39fe50a8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
167
sce
Ex_7_6.sce
// Example 7.6 // responsivity clc; clear; close; e=1.6*10^-19;//elecronic charge eg=0.75;//eV n=0.7;// R=(n*e)/(eg*e);// disp(R,"Responsivity is in Ampere per Watt")
aacacadf9a1918a5f0e2ef981d1746875ecb7c19
449d555969bfd7befe906877abab098c6e63a0e8
/3876/CH14/EX14.5/Ex14_5.sce
48e08de47cebf8843bcafce9588c640b21cdeda7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
Ex14_5.sce
//Chapter 14 Determination of Hydroniumion Concentrations clc; clear; //Initialisation of Variables E= 0.034 //v E1= -0.280 //v E2= -0.699 //v E3= 0.0592 //CALCULATIONS pH= (E1-E-E2)/E3 pH1= (E-E2+E1)/E3 //RESULTS mprintf("pH of the unkown solution= %.1f",pH) mprintf("\npH of the unkown solution= %.2f",pH1)
13a78efb5feaba67e02375d5f261a2f53cb07b8d
20532887a0c5b4b5395589d2a668a1e9850b8cc8
/main.sce
d61dcb8267236d355255ed2438aef6ce955d4a5f
[]
no_license
proxodilka/optimization-analysis-labs
536ab210a207e6a7859d49e607cf618613b1707c
32e5d9863ba42977eee8c028256345343ec8110f
refs/heads/master
2023-05-10T07:13:16.723354
2021-05-23T13:25:05
2021-05-23T13:25:05
367,963,802
0
0
null
null
null
null
UTF-8
Scilab
false
false
25,428
sce
main.sce
function pretty_print(x) printf("[") for i=1:length(x) printf("%e", x(i)) if i ~= length(x) then printf(", ") end end printf("]") endfunction function [res]=to_list(arr) res = list() for i=1:length(arr) res($ + 1) = arr(i) end endfunction function [res]=simple_proj(point, square) [x, y] = to_list(point)(:) [x_diff, y_diff] = list(0, 0)(:) if x < square(1) then x_diff = square(1) - x elseif x > square(2) then x_diff = square(2) - x end if y < square(3) then y_diff = square(3) - y elseif y > square(4) then y_diff = square(4) - y end if size(point)(1) == 1 && size(point)(2) != 1 point = point' end res = point + [x_diff, y_diff]' endfunction function [res]=f1(point) [x, y] = to_list(point)(:) res = 100 * (x^2 - y)^2 + (1-x)^2 endfunction function [res]=f2(point) [x, y] = to_list(point)(:) res = 100 * (y - x^3)^2 + (1-x)^2 endfunction function [res]=f2_grad(point) [x, y] = to_list(point)(:) res = [ 2 * (300*x^5 - 300*x^2*y + x - 1), 200 * (y - x^3) ]' endfunction function [res]=f2_proj(point) res = simple_proj(point, list(-1.2, 1, -1, 1))' endfunction function [res]=f4(point) [x1, x2, x3, x4] = to_list(point)(:) res = (x1 + 10*x2)^2 + 5*(x3-x4) ^ 2 + (x2 - 2*x3)^4 + 10*(x1 - x4)^4 endfunction function [res]=search(f, x, i, h, eps, div_to) base = f(x) dir_vector = zeros(x) dir_vector(i) = 1 base_h = h test_point = x + dir_vector * h while (%T) if (h <= eps) break end h = h / div_to test_point = x + dir_vector * h if f(test_point) < base break end test_point = x - dir_vector * h if f(test_point) < base break end end if f(test_point) < base then res = test_point else res = x end endfunction function [res]=hooke_jeeves(f, x0, max_step_scale, scale_reducer, stop_condition, projection, verbose_level, max_iter) // Минимизирует целевую функцию методом Хука — Дживса. // // Аргументы // --------- // f : callable(vector) -> float // Целевая функция для минимизации. // x0 : vector // Начальное приближение. // max_step_scale : float, по умолчанию: 1 // Максимально возможный коэффициент шага метода. // scale_reducer : float, по умолчанию: 2 // Коэффициент уменьшения шага метода в случае "перепрыгивания" точки минимума. // stop_condition : float, callable(f, vector, vector) -> bool, по умолчанию: 10e-7 // Если передано число, параметр интерпретируется как точность метода, критерий останова при // этом будет следующим: // `` abs(f(xk) - f(xk_1)) < stop_condition `` // Если передана функция, параметр интерпретируется как критерий останова. На каждой итерации // функция получает на вход 3 параметра: // 1. Целевую функцию f. // 2. Значение x на текущем шаге. // 3. Значение х на предыдущем шаге. // Если функция возвращает True, метод прекращает свою работу. // projection : callable(vector) -> vector, опционально // Проекция на допустимое множество решения. Метод гарантирует, что все рассматриваемые // точки будут находится внутри этого множества. Можно использовать для решения задач // условного экстремума. // verbose_level : int, по умолчанию: 1 // Регулирует количество информации информации о работе метода, выводимой в консоль: // 0: Не выводить информацию в консоль. // >=1: Вывести в консоль результат работы метода. // >=2: Выводить в консоль информацию о текущем решении на каждом шаге. // max_iter : int, по умолчанию: 1000 // Максимальное число итераций метода. // // Возвращает // ---------- // vector // Найденная точка минимума функции. // // Примечание // ---------- // Ссылка на теоретическое описание работы метода: https://intuit.ru/studies/courses/1020/188/lecture/4931 // ========================= Обработка значений по умолчанию ========================= if ~exists("max_step_scale", "local") then max_step_scale = 1 end if ~exists("scale_reducer", "local") then scale_reducer = 2 end if ~exists("verbose_level", "local") then verbose_level = 1 end if ~exists("max_iter", "local") then max_iter = 1000 end if ~exists("eps", "local") then eps = 10e-7 end if ~exists("stop_condition", "local") then function [_res] = stop_condition(f, xk, xk_1) _res = abs(norm(xk - xk_1)) < eps endfunction end if ~exists("projection", "local") then function [_res] = projection(point) _res = point endfunction end // ========================= Начало метода ========================= better_x = x0 for j=1:max_iter scale = max_step_scale better_x = x0 prev_x = x0 for i=1:length(x0) better_x = projection(search(f, better_x, i, scale, eps, scale_reducer)) end direction = better_x - x0 i = 1 while (scale >= eps) while f(projection(x0 + scale * direction * i)) < f(projection(x0 + scale * direction * (i - 1))) i = i + 1 end x0 = projection(x0 + scale * direction * (i - 1)) i = 1 scale = scale / scale_reducer end x0 = projection(x0 + scale * direction * (i - 1)) if verbose_level > 1 then printf("Step %i: xk = ", j) pretty_print(x0) printf("| F(xk) = %e\n", f(x0)) end if stop_condition(f, x0, prev_x) break end end if verbose_level > 0 then printf("Found solution in %i iterations:\n", j) printf("\tResult point: ") pretty_print(x0) printf("\n\tFunction value: %e\n", f(x0)) end res = x0 endfunction function [res]=golden_section_search(fn, sect, eps, max_iter) // Минимизирует целевую функцию одного переменного методом золотого сечения. // // Аргументы // --------- // f : callable(float) -> float // Целевая функция для минимизации. // sect : list // Отрезок для поиска минимизирующей точки. // eps : float // Погрешность метода. // max_iter : int // Максимальное число итераций метода. // // Возвращает // ---------- // float // Найденная точка минимума функции. // // Примечание // ---------- // Ссылка на теоретическое описание работы метода: http://www.machinelearning.ru/wiki/index.php?title=%D0%9C%D0%B5%D1%82%D0%BE%D0%B4_%D0%B7%D0%BE%D0%BB%D0%BE%D1%82%D0%BE%D0%B3%D0%BE_%D1%81%D0%B5%D1%87%D0%B5%D0%BD%D0%B8%D1%8F._%D0%A1%D0%B8%D0%BC%D0%BC%D0%B5%D1%82%D1%80%D0%B8%D1%87%D0%BD%D1%8B%D0%B5_%D0%BC%D0%B5%D1%82%D0%BE%D0%B4%D1%8B1 [a, b] = to_list(sect)(:) ff = (1 + sqrt(5)) / 2 x1 = b - (b - a) / ff x2 = a + (b - a) / ff for i=1:max_iter if fn(x1) > fn(x2) then a = x1 x1 = x2 x2 = b - (x1 - a) end if fn(x1) < fn(x2) then b = x2 x2 = x1 x1 = a + (b - x2) end if (fn(x1) == fn(x2)) then a = x1 b = x1 end res = (a + b) / 2 err = (b - a) / 2 if err < eps then break end end endfunction function [x0]=grad_descent(f, x0, max_step, grad_fn, projection, stop_condition, verbose_level, max_iter) // Минимизирует целевую функцию градиентным методом наискорейшего спуска. // // Аргументы // --------- // f : callable(vector) -> float // Целевая функция для минимизации. // x0 : vector // Начальное приближение. // max_step : float, по умолчанию: 100 // Максимально возможный коэффициент шага метода. // grad_fn : callable(vector) -> vector, опционально // Градиент целевой функции, если не передано, будет вычислено автоматически. // projection : callable(vector) -> vector, опционально // Проекция на допустимое множество решения. Метод гарантирует, что все рассматриваемые // точки будут находится внутри этого множества. Можно использовать для решения задач // условного экстремума. // stop_condition : float, callable(f, vector, vector) -> bool, по умолчанию: 10e-7 // Если передано число, параметр интерпретируется как точность метода, критерий останова при // этом будет следующим: // `` abs(f(xk) - f(xk_1)) < stop_condition `` // Если передана функция, параметр интерпретируется как критерий останова. На каждой итерации // функция получает на вход 3 параметра: // 1. Целевую функцию f. // 2. Значение x на текущем шаге. // 3. Значение х на предыдущем шаге. // Если функция возвращает True, метод прекращает свою работу. // verbose_level : int, по умолчанию: 1 // Регулирует количество информации информации о работе метода, выводимой в консоль: // 0: Не выводить информацию в консоль. // >=1: Вывести в консоль результат работы метода. // >=2: Выводить в консоль информацию о текущем решении на каждом шаге. // max_iter : int, по умолчанию: 1000 // Максимальное число итераций метода. // // Возвращает // ---------- // vector // Найденная точка минимума функции. // // Примечание // ---------- // Ссылка на теоретическое описание работы метода: http://www.machinelearning.ru/wiki/index.php?title=%D0%9C%D0%B5%D1%82%D0%BE%D0%B4_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82%D0%BD%D0%BE%D0%B3%D0%BE_%D1%81%D0%BF%D1%83%D1%81%D0%BA%D0%B0#.D0.9C.D0.B5.D1.82.D0.BE.D0.B4_.D0.BD.D0.B0.D0.B8.D1.81.D0.BA.D0.BE.D1.80.D0.B5.D0.B9.D1.88.D0.B5.D0.B3.D0.BE_.D1.81.D0.BF.D1.83.D1.81.D0.BA.D0.B0_2 // ========================= Обработка значений по умолчанию ========================= if ~exists("max_step", "local") then max_step = 100 end if ~exists("eps", "local") then eps=10e-7 end if ~exists("verbose_level") then verbose_level = 1 end if ~exists("max_iter", "local") then max_iter = 1000 end if ~exists("grad_fn", "local") then function [_res] = grad_fn(x) _res = numderivative(f, x) endfunction end if ~exists("stop_condition", "local") then function [_res] = stop_condition(f, xk, xk_1) _res = abs(norm(xk - xk_1)) < eps endfunction end if ~exists("projection", "local") then function [_res] = projection(x) _res = x' endfunction end // ========================= Начало метода ========================= for i=1:max_iter grad = grad_fn(x0)' function [_res]=get_diff(p) _res = f(x0 - p * grad) endfunction a = golden_section_search(get_diff, list(0, max_step), 10e-5, 1000) x_prev = projection(x0)' x0 = projection(x0 - a * grad)' if verbose_level > 1 then printf("Step %i: xk = ", i) pretty_print(x0) printf("| F(xk) = %e\n", f(x0)) end if stop_condition(f, x0, x_prev) then break end end if verbose_level > 0 then printf("Found solution in %i iterations:\n", i) printf("\tResult point: ") pretty_print(x0) printf("\n\tFunction value: %e\n", f(x0)) end endfunction function [res]=nelder_mead(f, simplex, a, b, c, projection, stop_condition, verbose_level, max_iter) // Минимизирует целевую функцию методом Нелдера-Мида. // // Аргументы // --------- // f : callable(vector) -> float // Целевая функция для минимизации. // simplex : list of vectors // Начальный симплекс. // a : float, по умолчанию: 1 // Коэффициент отражения. // b : float, по умолчанию: 0.5 // Коэффициент сжатия. // c : float, по умолчанию: 2 // Коэффициент растяжения. // projection : callable(vector) -> vector, опционально // Проекция на допустимое множество решения. Метод гарантирует, что все рассматриваемые // точки будут находится внутри этого множества. Можно использовать для решения задач // условного экстремума. // stop_condition : float, callable(f, simplex, simplex_prev) -> bool, по умолчанию: 10e-7 // Если передано число, параметр интерпретируется как точность метода, критерий останова при // этом будет следующим: // `` norm(simplex -simplex_prev) < stop_condition `` // Если передана функция, параметр интерпретируется как критерий останова. На каждой итерации // функция получает на вход 2 параметра: // 1. Целевую функцию f. // 2. Симплекс на текущем шаге. // 3. Симплекс на предыдущем шаге. // Если функция возвращает True, метод прекращает свою работу. // verbose_level : int, по умолчанию: 1 // Регулирует количество информации информации о работе метода, выводимой в консоль: // 0: Не выводить информацию в консоль. // >=1: Вывести в консоль результат работы метода. // >=2: Выводить в консоль информацию о текущем решении на каждом шаге. // >=3: Выводить в консоль информацию о текущем симплексе на каждом шаге. // max_iter : int, по умолчанию: 1000 // Максимальное число итераций метода. // // Возвращает // ---------- // vector // Найденная точка минимума функции. // // Примечание // ---------- // Ссылка на теоретическое описание работы метода: http://www.machinelearning.ru/wiki/index.php?title=%D0%9C%D0%B5%D1%82%D0%BE%D0%B4_%D0%9D%D0%B5%D0%BB%D0%B4%D0%B5%D1%80%D0%B0-%D0%9C%D0%B8%D0%B4%D0%B0 // ========================= Обработка значений по умолчанию ========================= if ~exists("a", "local") then a = 1 end if ~exists("b", "local") then b = 0.5 end if ~exists("c", "local") then c = 2 end if ~exists("verbose_level", "local") then verbose_level = 1 end if ~exists("max_iter", "local") then max_iter = 1000 end if ~exists("eps", "local") then eps = 10e-7 end if ~exists("stop_condition", "local") then function [_res] = stop_condition(f, simplex_k, simplex_k_1) max_dist = -%inf indices = [1, length(simplex_k) - 1, length(simplex_k)] for j=1:length(indices) i = indices(j) cur_dist = abs(norm(simplex_k(i) - simplex_k_1(i))) if cur_dist > max_dist then max_dist = cur_dist end end _res = abs(max_dist) < eps endfunction end if ~exists("projection", "local") then function [_res] = projection(point) _res = point endfunction end // ========================= Вспомогательные функции ========================= function [_res] = sort_simplex(simplex) simplex_values = zeros(length(simplex)) for i=1:length(simplex) simplex_values(i) = f(simplex(i)) end [_, indices] = gsort(simplex_values, "g", "i") _res = list(simplex(indices)) endfunction function print_point(point, i, prepend) if ~exists("prepend", "local") then prepend = "" end if type(i) ~= 10 then i = string(i) end printf(prepend + i + ": ") pretty_print(point) printf(" | %f\n", f(point)) endfunction function print_simplex(simplex, verbose, prepend) if ~exists("verbose", "local") then verbose = %F end if ~exists("prepend", "local") then prepend = "" end if ~verbose for i=1:length(simplex) print_point(simplex(i), i, prepend) end else print_point(simplex(1), "L", prepend) if length(simplex) > 3 then printf(prepend + "...\n") end print_point(simplex($-1), "G", prepend) print_point(simplex($), "H", prepend) end endfunction // ========================= Начало метода ========================= for j=1:max_iter prev_simplex = simplex simplex = sort_simplex(simplex) accum = zeros(simplex(1)) for i=1:length(simplex) - 1 accum = accum + simplex(i) end [xh, xg, xl] = list(simplex($), simplex($ - 1), simplex(1))(:) x_prev = xl xc = accum ./ (length(simplex) - 1) xr = projection((1 + a) * xc - a * xh) should_squeeze = %F if f(xr) < f(xl) then xs = projection((1 - c) * xc + c * xr) if f(xs) < f(xl) then xh = xs else xh = xr end elseif f(xl) < f(xr) & f(xr) < f(xg) then xh = xr elseif f(xh) > f(xr) & f(xr) > f(xg) then [xr, xh] = list(xh, xr)(:) should_squeeze = %T else should_squeeze = %T end if should_squeeze xs = projection(b * xh + (1 - b) * xc) if f(xs) < f(xh) xh = xs simplex($) = xh else for i=1:length(simplex) simplex(i) = projection(xl + (simplex(i) - xl) ./ 2) end end end simplex($) = xh if f(simplex(1)) < f(simplex($)) res = simplex(1) else res = simplex($) end if verbose_level > 1 then printf("Step %i: xk = ", j) pretty_print(res) printf("| F(xk) = %e\n", f(res)) if verbose_level > 2 then printf("Current simplex:\n") print_simplex(sort_simplex(simplex), verbose=%T, prepend="\t") printf("\n") end end if stop_condition(f, simplex, prev_simplex) then break end end if verbose_level > 0 then printf("Found solution in %i iterations:\n", j) printf("\tResult point: ") pretty_print(res) printf("\n\tFunction value: %e\n", f(res)) end endfunction eps = 10e-7 max_iter = 1000 function [res]=solid_stop_condition(f, xk, xk_1) res = abs(f(xk) - f(xk_1)) < eps && abs(norm(xk - xk_1)) < eps endfunction printf("\n============================ Метод Хука-Дживса ============================\n") printf("\n--------------- Problem 1 ---------------\n") printf("100(x^2 - y)^2 + (1-x)^2 -> min | X0 = (-1.2, 1) | eps = 10e-7\n") hooke_jeeves(f1, [-1.2, 1], max_step_scale=0.5, scale_reducer=2, stop_condition=solid_stop_condition) printf("\n--------------- Problem 2 ---------------\n") printf("100(y - x^3)^2 + (1-x)^2 -> min | X0 = (-1.2, -1) | eps = 10e-7\n") hooke_jeeves(f2, [-1.2, -1], scale_reducer=1.2, stop_condition=solid_stop_condition) printf("\n--------------- Problem 3 ---------------\n") printf("100(y - x^3)^2 + (1-x)^2 -> min | X0 = (-1.2, -1) | eps = 10e-7 | x ∈ [-1.2, 1] | y ∈ [-1, 1]\n") hooke_jeeves(f2, [-1.2, -1], scale_reducer=1.2, stop_condition=solid_stop_condition, projection=f2_proj) printf("\n--------------- Problem 4 ---------------\n") printf("(x1 + 10x2)^2 + 5(x3 - x4)^2 + (x2 - 2x3)^4 + 10(x1 - x4)^4 | X0 = (3, -1, 0, 1) | eps = 10e-7\n") hooke_jeeves(f4, [3, -1, 0, 1], max_step_scale=0.5, scale_reducer=1.5, stop_condition=solid_stop_condition) printf("\n============================ Метод Нелдера-Мида ============================\n") printf("\n--------------- Problem 1 ---------------\n") printf("100(x^2 - y)^2 + (1-x)^2 -> min | X0 = [(-1.2, 1), (3, -2), (0, 0)] | eps = 10e-7\n") nelder_mead(f1, simplex=list([-1.2, 1], [3, -2], [0, 0])) printf("\n--------------- Problem 2 ---------------\n") printf("100(y - x^3)^2 + (1-x)^2 -> min | X0 = [(-1.2, -1), (-3, 2), (0, 0)] | eps = 10e-7\n") nelder_mead(f2, simplex=list([-1.2, -1], [-3, 2], [0, 0])) printf("\n--------------- Problem 3 ---------------\n") printf("100(y - x^3)^2 + (1-x)^2 -> min | X0 = [(-1.2, -1), (-1.2, 1), (0, 0)] | eps = 10e-7 | x ∈ [-1.2, 1] | y ∈ [-1, 1]\n") nelder_mead(f2, simplex=list([-1.2, -1], [-1.2, 1], [0, 0]), projection=f2_proj) printf("\n--------------- Problem 4 ---------------\n") printf("(x1 + 10x2)^2 + 5(x3 - x4)^2 + (x2 - 2x3)^4 + 10(x1 - x4)^4 | X0 = [(3, -1, 0, 1), (-3, 1, 0, -1), (0, 0, 1, 2), (1, 2, 0, 0), (1, 2, 3, 4)] | eps = 10e-7\n") nelder_mead(f4, simplex=list([3, -1, 0, 1], [-3, 1, 0, -1], [0, 0, 1, 2], [1, 2, 0, 0], [1, 2, 3, 4])) printf("\n============================ Градиентный метод наискорейшего спуска ============================\n") printf("\n--------------- Problem 1 ---------------\n") printf("100(x^2 - y)^2 + (1-x)^2 -> min | X0 = (-1.2, 1) | eps = 10e-7\n") grad_descent(f1, x0=[-1.2, 1]', max_step=200, stop_condition=solid_stop_condition) printf("\n--------------- Problem 2 ---------------\n") printf("100(y - x^3)^2 + (1-x)^2 -> min | X0 = (-1.2, -1) | eps = 10e-7\n") grad_descent(f2, x0=[-1.2, -1]', stop_condition=solid_stop_condition) printf("\n--------------- Problem 3 ---------------\n") printf("100(y - x^3)^2 + (1-x)^2 -> min | X0 = (-1.2, -1) | eps = 10e-7 | x ∈ [-1.2, 1] | y ∈ [-1, 1]\n") grad_descent(f2, x0=[-1.2, -1]', max_step=200, grad_fn = f2_grad, projection=f2_proj, stop_condition=solid_stop_condition) printf("\n--------------- Problem 4 ---------------\n") printf("(x1 + 10x2)^2 + 5(x3 - x4)^2 + (x2 - 2x3)^4 + 10(x1 - x4)^4 | X0 = (3, -1, 0, 1) | eps = 10e-7\n") grad_descent(f4, x0=[3, -1, 0, 1]', stop_condition=solid_stop_condition, max_iter=10000)
54aa04d95f7a5b957c5410f5040703e008374847
449d555969bfd7befe906877abab098c6e63a0e8
/3878/CH10/EX10.4/Ex10_4.sce
f0771bfd4d634f7739844f23bf7bf06cb8aa281d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
784
sce
Ex10_4.sce
clear // Variable declaration T_c1=30// Condensing temperature for larger condenser in °C T_c2=35// Condensing temperature for smaller condenser in °C Rc_1=242// Rated capacity of plant for larger condenser in kW Rc_2=218// Rated capacity of plant for smaller condenser in kW Rt_1=1802// Running time (kW-h) Rt_2=2000// Running time (kW-h) Ci_1=60// Compressor electrical input power in kW Ci_2=70// Compressor electrical input power in kW Ec_1=11533// Electricity cost per year (£) Ec_2=14933// Electricity cost per year (£) C_1=14000// Cost of the larger condenser in £ C_2=8500// Cost of the smaller condenser in £ // Calculation Es=Ec_2-Ec_1// Cost of the larger condenser in £ Bet=(C_1-C_2)*Es**-1// Break-even time in years printf("\n Break-even time=%1.1f years",Bet)
23456dea933561cf3cb0d0ca48903c5c0e6bd08f
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH15/EX15.8/Ex15_8.sce
acf0087574bec4dba5f8767c8d7cf1a875f10a75
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
242
sce
Ex15_8.sce
clear //Given E0=8*10**-4 //v c=3.0*10**8 w=6*10**6 //Calculation // B0=E0/c f=w/(2.0*%pi) l=c/f //Result printf("\n Wavelength of the wave is %0.4f m",l*10**-4) printf("\n Frequency is %0.3f *10**10 Hz",f*10**-6)
b63baaa2b483808eac0c6ec03dccf7aedb92bc9d
20f46832ae88a89a38f61087f5c7b9be092760cf
/tspDraw.sci
e7f70f232a8132f5ff0f2edec9e661c83baf09b1
[]
no_license
valdron/tspscilab
beef362216b51a534e928a51a917f691cb99b846
c148f9a1d08d246966f23bcfb2739f2faa62526d
refs/heads/master
2020-06-11T13:57:36.005279
2016-12-08T20:54:27
2016-12-08T20:54:27
75,650,403
0
0
null
null
null
null
UTF-8
Scilab
false
false
889
sci
tspDraw.sci
//<-function-- function tspDraw(tour,closed) // // INPUT: // tour ... 1 x n permutation of 1:n // closed ... flag for closed tour (optional = %T) global name pos; if argn(2) == 1 then closed = %T; end drawlater() clf(); plot(pos(:,1),pos(:,2),'.k','markersize',10) plot(pos(tour,1),pos(tour,2),'-r') if closed then plot(pos([tour($) tour(1)],1),pos([tour($) tour(1)],2),'-r') end xset('font size',2); xstring(pos(:,1),pos(:,2),name) mtlb_axis('equal') x0 = min(pos(:,1)); x1 = max(pos(:,1)); y0 = min(pos(:,2)); y1 = max(pos(:,2)); xl = x1 - x0; yl = y1 - y0; mtlb_axis([x0-0.05*xl x1+0.05*xl y0-0.05*yl y1+0.05*yl]); mtlb_axis('off'); title(['length = ' string(tspLength(tour))],'fontsize',8) drawnow() sleep(1) endfunction //--function->
80ef02d947d09de99c71aeb813b2668451b0015a
e806e966b06a53388fb300d89534354b222c2cad
/macros/fsamp2.sci
4c3b97a064743bb948740b20bf70f8356d969200
[]
no_license
gursimarsingh/FOSSEE_Image_Processing_Toolbox
76c9d524193ade302c48efe11936fe640f4de200
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
refs/heads/master
2021-01-22T02:08:45.870957
2017-01-15T21:26:17
2017-01-15T21:26:17
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
598
sci
fsamp2.sci
// Function Name = Frequency sampling // Inputs = Frequency response Hd; frequency vectors f1, f2; dimension [m n] // Output = matrix h of dimension m x n, stores the filter coeff function[h] = fsamp2(Hd, varargin) [lhs, rhs] = argn(0) select rhs case 1 then out = opencv_fsamp2(Hd) case 2 then out = opencv_fsamp2(Hd, varargin(1)) case 3 then out = opencv_fsamp2(Hd, varargin(1), varargin(2)) case 4 then out = opencv_fsamp2(Hd, varargin(1), varargin(2), varargin(3)) end channel = size(out) for i = 1: channel h(:,:,i) = out(i) end endfunction
8e9ffd72a874d56cb7d91d1406ff7e1babfa6dbf
91c9bb19518ab9ff20758558e74061ea9bfb47fb
/.vim/templates/skeleton.tst
80b2b800d42b155c6c3d72ff7cc7dfa917d108f7
[]
no_license
davidcl/dotfiles
93a664479f3920d3be625d012215992f93612ed6
05c9d5d59aa1a91dddc5cd2d9e83437e60f2c319
refs/heads/master
2023-03-17T05:16:37.683701
2023-03-13T14:00:50
2023-03-13T14:00:50
253,593,342
0
0
null
null
null
null
UTF-8
Scilab
false
false
607
tst
skeleton.tst
// ============================================================================= // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab // Copyright (C) 2018 - ESI Group - Clement DAVID // // This file is distributed under the same license as the Scilab package. // ============================================================================= // // <-- CLI SHELL MODE --> // // <-- Non-regression test for bug 8783 --> // // <-- Bugzilla URL --> // http://bugzilla.scilab.org/show_bug.cgi?id=8783 // // <-- Short Description --> // loadmatfile could not load hypermatrices of integer types.
4d7bf9d019792291a1f4acd12763648799aae5b8
449d555969bfd7befe906877abab098c6e63a0e8
/3864/CH2/EX2.1/Ex2_1.sce
573580d9766c3b490fb34c3bacb8721bc9e75d47
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
506
sce
Ex2_1.sce
clear // // //Initilization of Variables P=45*10**3 //N //Load E=200*10**3 //N/mm**2 //Modulus of elasticity of rod L=500 //mm //Length of rod d=20 //mm //Diameter of rod //Calculations A=%pi*d**2*4**-1 //mm**2 //Area of circular rod p=P*A**-1 //N/mm**2 //stress e=p*E**-1 //strain dell_l=(P*L)*(A*E)**-1 //Result printf("\n The stress in bar due to Load is %0.5f N/mm",p) printf("\n The strain in bar due to Load is %0.5f N/mm",e) printf("\n The Elongation in bar due to Load is %0.2f mm",dell_l)
64eafc7e73626245b16cee10a54acc70fcf66147
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/OW Train.sce
64684af270b5482863733e9287b58d0968fb1e36
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
66,170
sce
OW Train.sce
Name=OW Train PlayerCharacters=OWPlayer BotCharacters=Random Bot Watcher.rot;Shinji Bot.bot;McCoy Bot.bot;Sergeant Bot.bot;Racer Bot.bot IsChallenge=true Timelimit=120.0 PlayerProfile=OWPlayer AddedBots=Random Bot Watcher1.rot;Random Bot Watcher2.rot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=2 MapName=kovaim1.map MapScale=2.0 BlockProjectilePredictors=false BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=10000.0 ScorePerDamage=.0 ScorePerKill=50.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Overwatch WeaponHeroTag=Overwatch Weapons and Abilities DifficultyTag=2 AuthorsTag=xeLe BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Warmup for Overwatch [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=At Feet MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Ignore Spread MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=90.0 MinTolerableSpread=90.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=1.0 [Bot Profile] Name=McCoy Bot DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;ADAD DodgeProfileWeights=2.0;2.0;3.5 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=McCoy SeeThroughWalls=false [Bot Profile] Name=Sergeant Bot DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;ADAD DodgeProfileWeights=2.0;2.0;3.5 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Sergeant 87 SeeThroughWalls=false [Bot Profile] Name=Shinji Bot DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;ADAD DodgeProfileWeights=2.0;2.0;3.5 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Shinji SeeThroughWalls=false [Bot Profile] Name=Racer Bot DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;ADAD DodgeProfileWeights=2.0;2.0;3.5 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false SeeThroughWalls=false CharacterProfile=Racer [Bot Rotation Profile] Name=Random Bot Watcher1 ProfileNames=McCoy Bot;Sergeant Bot;Racer Bot;Shinji Bot ProfileWeights=1.0;1.0;1.0;1.0;1.0 Randomized=false [Bot Rotation Profile] Name=Random Bot Watcher2 ProfileNames=Shinji Bot;Racer Bot;McCoy Bot;Sergeant Bot ProfileWeights=1.0;1.0;1.0;1.0;1.0 Randomized=false [Character Profile] Name=OWPlayer MaxHealth=200.0 WeaponProfileNames=Six Shooter;Rifle;Machine Pistols;Shinji Stars;Shinji Triple;Monk Orb;Hansel Bow;Sniper Rifle MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=30.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=488.888885 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=270.0 Gravity=1.0 AirControl=0.04 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.774 Y=0.000 Z=0.000 EnemyHeadColor=X=0.149 Y=0.542 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.149 Y=0.542 Z=1.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=128.888885 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=12.5 MainBBHeadOffset=-12.5 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=128.888885 ProjBBRadius=20.0 ProjBBHasHead=true ProjBBHeadRadius=12.5 ProjBBHeadOffset=-12.5 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Phase.abilmov;Offhand Rocket.abilwep;Dash.abilmov;Melee.abilmelee;;;;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 [Character Profile] Name=McCoy MaxHealth=200.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=30.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=488.888885 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=270.0 Gravity=1.0 AirControl=0.04 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.778 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=0.265 Z=0.000 TeamBodyColor=X=0.000 Y=0.000 Z=0.787 TeamHeadColor=X=1.000 Y=0.265 Z=0.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=120.0 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=12.5 MainBBHeadOffset=-12.5 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=120.0 ProjBBRadius=20.0 ProjBBHasHead=true ProjBBHeadRadius=12.5 ProjBBHeadOffset=-12.5 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Rush.abilmov;;;;;;;;;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 [Character Profile] Name=Racer MaxHealth=150.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=30.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=533.333313 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=270.0 Gravity=1.0 AirControl=0.04 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.774 Y=0.000 Z=0.000 EnemyHeadColor=X=0.691 Y=0.514 Z=0.294 TeamBodyColor=X=0.000 Y=0.000 Z=0.774 TeamHeadColor=X=0.691 Y=0.514 Z=0.294 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=1600.0 MainBBType=Cylindrical MainBBHeight=105.0 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=12.5 MainBBHeadOffset=-12.5 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=105.0 ProjBBRadius=20.0 ProjBBHasHead=true ProjBBHeadRadius=12.5 ProjBBHeadOffset=-12.5 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Phase.abilmov; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 [Character Profile] Name=Sergeant 87 MaxHealth=200.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=30.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=488.888885 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=270.0 Gravity=1.0 AirControl=0.04 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.774 Y=0.000 Z=0.000 EnemyHeadColor=X=0.149 Y=0.542 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.149 Y=0.542 Z=1.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=128.888885 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=12.5 MainBBHeadOffset=-12.5 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=128.888885 ProjBBRadius=20.0 ProjBBHasHead=true ProjBBHeadRadius=12.5 ProjBBHeadOffset=-12.5 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 [Character Profile] Name=Shinji MaxHealth=200.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=30.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=533.333313 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=270.0 Gravity=1.0 AirControl=0.04 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.774 Y=0.000 Z=0.000 EnemyHeadColor=X=0.163 Y=0.167 Z=0.166 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.163 Y=0.167 Z=0.166 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=1 AirJumpVelocity=450.0 MainBBType=Cylindrical MainBBHeight=101.0 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=12.5 MainBBHeadOffset=-12.5 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=101.0 ProjBBRadius=20.0 ProjBBHasHead=true ProjBBHeadRadius=12.5 ProjBBHeadOffset=-12.5 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Dash.abilmov; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 [Weapon Profile] Name=Six Shooter Type=Hitscan ShotsPerClick=1 DamagePerShot=70.0 KnockbackFactor=0.1 TimeBetweenShots=0.5 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=2200.0 DamageFalloffStopDistance=4500.0 DamageAtMaxRange=20.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.5 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=4.0 MinRecoilUp=4.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.44 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Hansel Bow Type=Projectile ShotsPerClick=1 DamagePerShot=125.0 KnockbackFactor=0.1 TimeBetweenShots=0.5 Pierces=false Category=Charge BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=29.0 ChargeStartVelocity=X=2666.667 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=60.0 ChargeTimeToCap=0.5 ChargeMoveSpeedModifier=0.7 MuzzleVelocityMin=X=9777.777 Y=0.000 Z=0.000 MuzzleVelocityMax=X=9777.777 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=3 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=80.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Arrow VisualLifetime=0.5 WallParticleEffect=None HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=0 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Machine Pistols Type=Hitscan ShotsPerClick=2 DamagePerShot=6.0 KnockbackFactor=0.1 TimeBetweenShots=0.05 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=40 AmmoPerShot=2 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=1500.0 DamageFalloffStopDistance=3000.0 DamageAtMaxRange=1.5 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.03 HitSoundCooldown=0.03 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.25 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=1.05,9.0,0.0,3.6 SpreadSCA=1.05,9.0,0.0,3.6 SpreadMSA=1.05,9.0,0.0,3.6 SpreadMCA=1.05,9.0,0.0,3.6 SpreadSSH=1.05,9.0,0.0,3.6 SpreadSCH=1.05,9.0,0.0,3.6 SpreadMSH=1.05,9.0,0.0,3.6 SpreadMCH=1.05,9.0,0.0,3.6 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=720.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 PBS1=0.0,0.0 [Weapon Profile] Name=Rifle Type=Hitscan ShotsPerClick=1 DamagePerShot=19.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=5500.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.001 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,10.0,-2.6,2.4 SpreadSCA=2.0,10.0,-2.6,2.4 SpreadMSA=2.0,10.0,-2.6,2.4 SpreadMCA=2.0,10.0,-2.6,2.4 SpreadSSH=2.0,10.0,-2.6,2.4 SpreadSCH=2.0,10.0,-2.6,2.4 SpreadMSH=2.0,10.0,-2.6,2.4 SpreadMCH=2.0,10.0,-2.6,2.4 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.15 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Shinji Stars Type=Projectile ShotsPerClick=1 DamagePerShot=28.0 KnockbackFactor=0.1 TimeBetweenShots=1.0 Pierces=false Category=Burst BurstShotCount=3 TimeBetweenBursts=0.1 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=5333.333 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5333.333 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=24 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=28.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=false DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.1,0.1,0.0,0.0 SpreadSCA=0.1,0.1,0.0,0.0 SpreadMSA=0.1,0.1,0.0,0.0 SpreadMCA=0.1,0.1,0.0,0.0 SpreadSSH=0.1,0.1,0.0,0.0 SpreadSCH=0.1,0.1,0.0,0.0 SpreadMSH=0.1,0.1,0.0,0.0 SpreadMCH=0.1,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.2 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Shinji Triple Type=Projectile ShotsPerClick=1 DamagePerShot=28.0 KnockbackFactor=0.1 TimeBetweenShots=1.0 Pierces=false Category=FullyAuto BurstShotCount=3 TimeBetweenBursts=0.1 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=5333.333 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5333.333 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=28.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=false DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot=Shinji Left;Shinji Right ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.1,0.1,0.0,0.0 SpreadSCA=0.1,0.1,0.0,0.0 SpreadMSA=0.1,0.1,0.0,0.0 SpreadMCA=0.1,0.1,0.0,0.0 SpreadSSH=0.1,0.1,0.0,0.0 SpreadSCH=0.1,0.1,0.0,0.0 SpreadMSH=0.1,0.1,0.0,0.0 SpreadMCH=0.1,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Monk Orb Type=Projectile ShotsPerClick=1 DamagePerShot=46.0 KnockbackFactor=0.0 TimeBetweenShots=0.4 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=8000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=8000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=2.0 ReloadTimeFromPartial=2.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Gunshot BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=Circles RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=false Explosive=false Radius=500.0 DamageAtCenter=120.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.001 TriggerBotFOV=0.5 StickyLock=false HeadLock=false VerticalOffset=65.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Offhand Rocket Type=Projectile ShotsPerClick=1 DamagePerShot=120.0 KnockbackFactor=4.0 TimeBetweenShots=0.8 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=4444.444 Y=0.000 Z=0.000 MuzzleVelocityMax=X=4444.444 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Rocket VisualLifetime=0.1 WallParticleEffect=Flare HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=true Radius=400.0 DamageAtCenter=120.0 DamageAtEdge=30.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Sniper Rifle Type=Hitscan ShotsPerClick=1 DamagePerShot=13.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=0.8 DamageFalloffStartDistance=2500.0 DamageFalloffStopDistance=4000.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.379403 ADSMoveFactor=0.35 ADSStartDelay=0.333333 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=true ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot=Zoomed Sniper Rifle StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=51.0 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=false Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,5.5,0.0,3.0 SpreadSCA=2.0,5.5,0.0,3.0 SpreadMSA=2.0,5.5,0.0,3.0 SpreadMCA=2.0,5.5,0.0,3.0 SpreadSSH=2.0,5.5,0.0,3.0 SpreadSCH=2.0,5.5,0.0,3.0 SpreadMSH=2.0,5.5,0.0,3.0 SpreadMCH=2.0,5.5,0.0,3.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.01 TimeToRecoilReset=0.45 AAMode=2 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1.5 AADeadZone=0.0 AAFOV=75.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=true AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Zoomed Sniper Rifle Type=Hitscan ShotsPerClick=1 DamagePerShot=120.0 KnockbackFactor=0.1 TimeBetweenShots=0.5 Pierces=false Category=Charge BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=12.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=0.75 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.5 MagazineMax=0 AmmoPerShot=3 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=80.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.5 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=true BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=false Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=4.5 MinRecoilUp=4.5 MinRecoilHoriz=-0.25 MaxRecoilHoriz=0.25 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.5 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.2 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=1.0 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Sprint Ability Profile] Name=Run MaxCharges=1.0 ChargeTimer=0.001 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=false AbilityDuration=0.0 BlockAttackWhileSprinting=false AbilityBlockedWhenAttacking=true SpeedModifier=1.5 45DegreeSprint=true 90DegreeSprint=false 135DegreeSprint=false 180DegreeSprint=false TapToSprint=false Block45DegreesWhenSprinting=false AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Movement Ability Profile] Name=Phase MaxCharges=3.0 ChargeTimer=3.0 ChargesRefundedOnKill=0.0 DelayAfterUse=0.1 FullyAuto=false AbilityDuration=0.075 LockDirectionForDuration=true NegateGravityForDuration=true MainVelocity=8000.0 MainVelocityCanGoVertical=false MainVelocitySetToMovementKeys=true UpVelocity=0.0 EndVelocityFactor=0.075 Hurtbox=false HurtboxRadius=50.0 HurtboxDamage=50.0 HurtboxGroundKnockbackFactor=1.0 HurtboxAirKnockbackFactor=1.0 AbilityBlocksTurning=false AbilityBlocksMovement=true AbilityBlocksAttack=false AttackCancelsAbility=false AbilityReloadsWeapon=false HealthRestore=0.0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=1500.0 AIMaxTargDist=1000000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.75 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=25.0 AIDamageReactionResetTimer=1.0 [Movement Ability Profile] Name=Rush MaxCharges=1.0 ChargeTimer=8.0 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=false AbilityDuration=0.25 LockDirectionForDuration=true NegateGravityForDuration=true MainVelocity=1500.0 MainVelocityCanGoVertical=false MainVelocitySetToMovementKeys=true UpVelocity=0.0 EndVelocityFactor=0.25 Hurtbox=false HurtboxRadius=50.0 HurtboxDamage=50.0 HurtboxGroundKnockbackFactor=1.0 HurtboxAirKnockbackFactor=1.0 AbilityBlocksTurning=false AbilityBlocksMovement=true AbilityBlocksAttack=true AttackCancelsAbility=false AbilityReloadsWeapon=true HealthRestore=0.0 AIUseInCombat=false AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.75 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=50.0 AIDamageReactionResetTimer=1.0 [Movement Ability Profile] Name=Dash MaxCharges=1.0 ChargeTimer=8.0 ChargesRefundedOnKill=1.0 DelayAfterUse=0.1 FullyAuto=false AbilityDuration=0.25 LockDirectionForDuration=true NegateGravityForDuration=true MainVelocity=3000.0 MainVelocityCanGoVertical=true MainVelocitySetToMovementKeys=false UpVelocity=0.0 EndVelocityFactor=0.2 Hurtbox=true HurtboxRadius=300.0 HurtboxDamage=50.0 HurtboxGroundKnockbackFactor=1.0 HurtboxAirKnockbackFactor=1.0 AbilityBlocksTurning=true AbilityBlocksMovement=true AbilityBlocksAttack=true AttackCancelsAbility=false AbilityReloadsWeapon=false HealthRestore=0.0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=0.2 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=25.0 AIMinTargDist=0.0 AIMaxTargDist=1750.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.75 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=75.0 AIDamageReactionResetTimer=1.0 [Weapon Ability Profile] Name=Triple Star MaxCharges=1.0 ChargeTimer=0.5 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=true WeaponProfile=Shinji Triple BlockAttackTimer=0.5 AbilityBlockedWhenAttacking=true AmmoPerShot=3 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=0.2 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=1500.0 AIMaxTargFOV=15.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=1.0 [Weapon Ability Profile] Name=Stun Gren MaxCharges=1.0 ChargeTimer=10.0 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=false WeaponProfile=Stun Gren BlockAttackTimer=0.0 AbilityBlockedWhenAttacking=false AmmoPerShot=0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=500.0 AIMaxTargFOV=15.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=1.0 [Weapon Ability Profile] Name=Offhand Rocket MaxCharges=1.0 ChargeTimer=8.0 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=false WeaponProfile=Offhand Rocket BlockAttackTimer=0.3 AbilityBlockedWhenAttacking=false AmmoPerShot=0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=5000.0 AIMaxTargFOV=2.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=1.0 [Dodge Profile] Name=Long Strafes Jumping MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.65 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 [Dodge Profile] Name=Short Strafes Jumping MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.65 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.5 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 [Dodge Profile] Name=ADAD MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.2 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.16 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.2 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 [Dodge Profile] Name=Mimic MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.0 JumpFrequency=0.5 CrouchInAirFrequency=0.2 CrouchOnGroundFrequency=0.65 TargetStrafeOverride=Mimic TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.2 MaxCrouchTime=0.3 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 96.000000 -384.000000 -320.000000 96.000000 -384.000000 -320.000000 96.000000 -512.000000 -576.000000 96.000000 -512.000000 -576.000000 0.000000 -384.000000 -320.000000 0.000000 -384.000000 -320.000000 0.000000 -512.000000 -576.000000 0.000000 -512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 192.000000 96.000000 0.000000 448.000000 96.000000 0.000000 448.000000 96.000000 -128.000000 192.000000 96.000000 -128.000000 192.000000 0.000000 0.000000 448.000000 0.000000 0.000000 448.000000 0.000000 -128.000000 192.000000 0.000000 -128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -736.000000 entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -64.000000 0.000000 224.000000 Vector3 angles 180.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position -544.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000
85a11d23da48214e26a4e1c1d476ed322d5723a8
449d555969bfd7befe906877abab098c6e63a0e8
/1883/CH2/EX2.4.7/Example2_14.sce
255fb5400e12221648b3b7cf2002d99e8ebcdba6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
332
sce
Example2_14.sce
//Chapter-2,Example2_4_7,pg 2-27 m=1 //first ordr spectrum wavelength=6560*10^-8 //wavelength of light angle=16.2 //angle of diffraction N=2*sind(angle)/(m*wavelength) printf('\nNumber of lines per 2 cm is N = %.0f',N)
a6019e7d9a232e2f2aa81c9396bad45a51162970
449d555969bfd7befe906877abab098c6e63a0e8
/1544/CH5/EX5.10/Ch05Ex10.sce
d0e1aeb1dfc02f9be559b9b6e12a8298281c72f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ch05Ex10.sce
// Scilab code Ex5.10: Pg 155 (2008) clc; clear; N = 80; // Number of turns l = 0.02; // Length of coil, m r = 0.012; // Radius of coil, m I = 45e-06; // Current in coil, A T = 1.4e-06; // Torque exerted on coil, Nm A = l*r; // Cross-sectional area of coil, m^2 // Since T = 2*B*I*l*r, solving for B B = T/(2*A*N*I); // Flux density, T printf("\nThe flux density produced by the pole pieces = %4.2f T", B); // Result // The flux density produced by the pole pieces = 0.81 T
afe2c587213b853654dc5149985bde18154d60dc
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
/test/readlimit.tst
980541fe37d59c1099513e0c82d9263cdf4de4eb
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
dougsong/reposurgeon
394001c0da4c3503bc8bae14935808ffd6f45657
ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b
refs/heads/master
2023-03-09T15:22:45.041046
2023-02-25T08:33:06
2023-02-25T08:33:06
280,299,498
1
0
NOASSERTION
2023-02-25T08:33:08
2020-07-17T01:45:32
Go
UTF-8
Scilab
false
false
256
tst
readlimit.tst
## Test readlimit set relax set echo readlimit 3 read <simpletag.svn prefer git write - # This should yield an EOF message. read <binary.svn prefer git write - # This should not read <bs.fi prefer git write - # This should read <utf8.fi prefer git write -
a187117addee171e0296d6a7bb01e7eeeb2a9ed1
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH17/EX17.5/17_5.sce
d45983a968d44ef63974d6b91848d4189ed02cac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
570
sce
17_5.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 17.5 //calculation of the angular divergence for most of the light getting diffracted //given data lambda=450*10^-9//wavelength(in m) of the light used b=0.2*10^-3//width(in m) of the slit //calculation //for theta tends to zero......sin(theta) = theta theta1=lambda/b//angle of minima theta2=-lambda/b//angle of minima theta=theta1-theta2//angular divergence printf('the angular divergence for most of the light getting diffracted is %3.1e radian',theta)
50727d7b8c71bf8c4279f185b7454f704b122126
449d555969bfd7befe906877abab098c6e63a0e8
/46/CH2/EX2.3/Example2_3.sce
f6a27ffea2503b65e62e1cce340e10024501b9fa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
108
sce
Example2_3.sce
//Example 2.3 clc s=%s; xs=2/(s+3); disp(xs,'x(s)=') syms t; xt=ilaplace(xs,s,t); disp(xt,'x(t)=')
ba7dce5bd7578d759fee7625bca614da197c80cc
4e9df66700bcf9688afe22df0009cdf4a17bc61f
/Scilab_Lab/scimage/ch02/L2_2.sce
3d82841c67fe97a37716c01a87072a58348d180c
[]
no_license
vmebus/workspace
e18947a1f967e6a3a7dfbc5cce6f92380d8637fc
f251b8a8e6cec30a77c7ef7b4103c5ee6e6d1393
refs/heads/master
2021-01-09T21:53:45.183564
2015-10-03T06:42:23
2015-10-03T06:42:23
36,120,248
0
0
null
null
null
null
UTF-8
Scilab
false
false
365
sce
L2_2.sce
//程式L2_2.m: 矩陣的直積% A=[1 1;-1 1]; B=[1 2;3 4]; A1=A'; B1=B'; //將矩陣轉置 A2=inv(A); B2=inv(B); //求反矩陣 kron1=kron(A,B); //求右直接乘積 kron2=kron(A1,B1); kron3=kron(A2,B2); kron_left=kron1'; kron_right=kron2; invert_left=inv(kron1); invert_right=kron3; kron_left kron_right invert_left invert_right y
d77ef33ec0638c9a006abebe72f34c71bf095e62
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.11_14.tst
464eb8f794ca6f191ebc4b9d02649754567f4133
[]
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
805,145
tst
5.11_14.tst
11 1:1 61:1 147:1 607:1 896:1 1031:1 1121:1 1346:1 1382:1 1604:2 1607:1 1614:1 1736:2 1824:1 1863:1 1901:1 2060:1 2066:1 2180:1 2282:1 2370:1 2426:2 2485:1 2516:1 2576:1 2817:1 2828:1 3067:1 3098:1 3265:1 3434:1 3593:1 3656:1 3676:1 3876:1 3916:1 3930:1 3964:1 4251:1 4263:1 4344:2 4477:1 4851:1 4856:1 5022:2 5058:1 5170:1 5200:2 5320:1 5558:1 5660:1 5757:1 6522:1 6529:1 6722:1 6815:1 6853:1 6997:1 7152:1 7370:1 7799:1 7873:1 7897:1 8057:1 8349:1 8624:1 8655:1 8738:1 8916:1 9097:2 9432:1 9573:1 9782:1 10028:1 10065:1 10178:1 10215:1 10254:1 10278:1 10337:1 10425:1 10750:1 10913:1 10980:1 11027:1 11731:1 11906:1 11983:1 12191:1 12398:1 12899:1 13074:1 13192:1 13392:1 13566:1 13644:1 13780:1 13908:1 13959:1 14238:1 14771:1 14948:1 15110:1 15459:1 15746:1 15942:1 16108:1 16279:1 16412:1 16436:1 16535:1 16892:1 16926:1 17057:1 17181:1 17404:1 17521:1 17525:1 17649:1 17818:1 17851:1 17897:1 18043:1 19033:97 19133:1 19739:1 19827:1 19881:1 19967:1 20166:1 20465:1 20646:1 21188:1 21522:1 21556:1 21599:1 21695:1 21790:1 21993:1 22099:1 22170:1 22218:1 22227:1 22261:1 22339:1 22392:1 22627:2 22829:1 22855:1 22942:1 23187:1 23241:1 23315:1 23404:1 23630:1 23770:1 23870:1 24087:1 24725:1 24759:1 25023:1 25067:1 25146:1 25326:1 25350:1 25397:1 26076:1 26108:1 26315:1 26511:1 26771:1 27030:1 27210:1 27281:1 27598:1 27802:1 27883:1 27938:1 27978:1 28447:1 28547:1 28834:1 28837:1 28843:2 29010:1 29038:1 29351:1 29412:1 29635:1 30190:1 11 1:1 57:1 61:1 147:1 278:1 279:1 515:1 562:1 607:1 876:1 892:1 896:1 1031:1 1121:1 1283:1 1315:1 1346:1 1382:1 1421:1 1442:1 1558:1 1604:2 1607:1 1614:1 1736:2 1824:1 1863:1 1901:2 1919:1 1949:1 2060:1 2066:1 2082:1 2103:1 2180:1 2193:1 2282:1 2338:1 2370:1 2396:1 2419:1 2426:2 2485:1 2505:1 2516:1 2576:1 2703:1 2817:1 2828:1 2842:1 2854:1 3067:1 3098:1 3265:1 3418:1 3434:1 3517:1 3593:1 3656:1 3676:1 3753:1 3876:1 3916:1 3930:1 3964:1 4171:1 4251:1 4263:1 4344:2 4450:1 4477:1 4585:1 4788:1 4851:1 4856:1 5022:3 5058:1 5170:1 5200:3 5320:1 5370:1 5433:1 5558:1 5660:1 5757:1 5965:1 6522:1 6529:1 6722:1 6815:1 6853:1 6878:1 6901:1 6997:1 7152:1 7263:1 7300:1 7370:1 7444:1 7617:1 7676:1 7799:1 7873:3 7897:1 7968:1 8050:1 8057:1 8107:1 8200:1 8321:1 8349:1 8357:2 8624:1 8655:1 8672:1 8725:1 8738:1 8751:1 8870:1 8916:1 9097:2 9404:1 9432:1 9477:1 9573:1 9611:1 9711:1 9782:1 9805:1 9848:1 9866:1 10028:1 10052:1 10065:1 10178:1 10215:1 10254:1 10267:1 10278:1 10337:1 10425:1 10527:2 10750:1 10803:1 10808:1 10841:1 10913:1 10980:1 11027:1 11036:1 11437:1 11568:1 11716:1 11731:1 11806:1 11906:1 11983:1 12191:1 12398:1 12660:1 12848:1 12899:1 13074:1 13192:1 13392:1 13519:1 13566:1 13644:1 13780:1 13796:1 13868:1 13908:1 13953:1 13959:1 14211:1 14238:2 14245:1 14771:1 14909:1 14948:1 15110:1 15222:1 15316:1 15459:1 15692:1 15746:1 15942:1 16108:1 16184:1 16276:2 16279:1 16412:1 16436:1 16459:1 16535:1 16537:1 16548:1 16892:1 16926:1 16971:1 17057:1 17181:1 17404:1 17521:1 17525:1 17649:1 17727:1 17818:1 17851:1 17897:1 18043:1 18144:1 18264:1 18267:1 18348:1 18580:1 18744:1 18800:1 18845:1 19033:195 19133:1 19584:1 19739:1 19827:1 19881:1 19967:1 20166:1 20465:1 20646:1 20959:1 21188:1 21360:1 21522:1 21556:1 21599:1 21669:1 21695:1 21790:2 21850:1 21993:1 22099:1 22170:1 22218:1 22227:1 22261:1 22339:1 22392:1 22627:2 22707:1 22829:1 22855:1 22931:1 22942:1 22992:1 23022:2 23187:1 23241:1 23315:1 23404:1 23630:1 23662:1 23770:1 23870:1 23926:1 24087:1 24332:1 24425:1 24499:1 24510:1 24725:1 24726:1 24759:1 24973:1 25016:1 25023:1 25067:2 25145:1 25146:1 25194:2 25326:1 25350:1 25397:1 25414:1 25492:1 25526:1 25561:1 25610:1 25941:1 26076:1 26083:1 26108:1 26241:1 26315:1 26331:1 26384:1 26471:1 26511:1 26684:1 26771:1 26851:1 26942:1 27030:1 27210:1 27281:1 27503:1 27598:1 27768:1 27802:1 27883:1 27938:1 27978:1 27989:1 28088:1 28123:1 28124:1 28427:1 28447:2 28547:1 28716:1 28795:1 28834:3 28837:1 28843:2 29010:1 29038:1 29115:1 29301:1 29351:1 29364:1 29367:1 29412:1 29576:1 29593:1 29635:1 29690:1 30055:1 30190:1 30213:1 11 1:1 57:1 61:2 147:1 278:1 279:1 515:1 562:1 607:1 723:1 876:1 892:1 896:1 990:1 1021:1 1031:1 1121:1 1283:1 1315:1 1346:1 1362:1 1382:1 1421:1 1442:1 1558:1 1604:2 1607:1 1614:2 1736:2 1744:1 1824:1 1863:1 1901:2 1919:1 1949:1 2060:1 2066:1 2082:1 2103:1 2180:1 2193:1 2282:2 2310:1 2338:1 2363:1 2370:1 2396:1 2403:1 2419:1 2426:2 2485:1 2505:1 2516:1 2576:1 2656:1 2703:1 2712:1 2817:1 2828:1 2842:1 2854:1 3023:1 3067:2 3098:1 3265:2 3418:1 3434:1 3517:1 3593:1 3656:1 3676:1 3707:1 3753:1 3768:1 3876:1 3916:1 3930:1 3964:1 4140:1 4171:1 4251:1 4263:1 4340:1 4344:2 4450:1 4477:1 4585:1 4672:1 4755:1 4788:1 4851:1 4856:1 5022:5 5058:1 5170:1 5185:1 5200:3 5320:1 5370:1 5433:1 5535:1 5558:1 5660:1 5747:1 5757:1 5965:1 6138:1 6516:1 6522:1 6529:1 6722:2 6815:1 6821:1 6853:1 6878:1 6901:1 6997:1 7122:1 7152:1 7263:1 7300:1 7314:1 7370:1 7444:1 7617:1 7676:1 7792:1 7798:1 7799:1 7825:1 7873:5 7897:2 7968:1 8050:1 8057:1 8081:2 8107:1 8126:1 8200:1 8285:1 8321:1 8349:1 8357:3 8594:1 8624:1 8655:1 8672:1 8725:1 8738:1 8744:1 8751:1 8870:1 8916:1 9097:2 9404:1 9417:1 9432:1 9445:1 9477:1 9573:1 9611:1 9711:1 9782:1 9805:1 9848:1 9866:1 9988:1 10028:1 10052:1 10065:1 10178:1 10215:1 10254:1 10267:1 10278:1 10337:1 10425:1 10527:2 10750:1 10761:1 10803:1 10808:1 10841:1 10913:1 10980:1 11027:1 11036:1 11163:1 11220:1 11401:1 11437:1 11568:1 11716:1 11731:1 11772:1 11806:1 11906:1 11917:2 11926:2 11983:1 12138:1 12191:1 12227:1 12398:1 12517:1 12660:1 12780:1 12848:1 12899:1 13034:1 13074:1 13192:1 13238:1 13337:1 13392:1 13401:1 13519:1 13566:1 13644:1 13780:1 13796:1 13823:1 13868:1 13908:1 13952:1 13953:1 13959:1 14167:1 14211:1 14238:2 14245:1 14416:1 14550:1 14771:1 14909:1 14948:1 14979:1 15110:1 15222:1 15316:1 15459:1 15692:1 15746:1 15861:1 15942:1 16108:1 16184:1 16276:2 16279:1 16412:1 16436:1 16459:1 16532:1 16535:1 16537:1 16548:1 16863:1 16892:1 16926:2 16971:1 17057:1 17181:1 17404:1 17440:1 17521:1 17525:1 17649:1 17727:1 17818:1 17851:1 17896:1 17897:1 17943:1 18043:1 18144:1 18264:1 18267:1 18278:1 18348:1 18580:1 18648:1 18744:1 18800:1 18809:1 18845:1 19033:265 19052:1 19133:1 19461:1 19463:1 19584:1 19705:1 19721:1 19739:1 19823:1 19827:1 19865:1 19881:1 19916:1 19967:1 20166:1 20289:1 20465:1 20646:1 20703:1 20959:1 21033:1 21188:1 21360:1 21522:1 21556:1 21599:1 21669:1 21695:1 21790:3 21850:1 21993:1 22090:1 22099:1 22118:1 22170:1 22218:1 22227:1 22261:1 22339:1 22392:1 22549:1 22627:2 22646:1 22707:1 22829:1 22855:1 22931:1 22942:1 22992:1 23022:2 23163:1 23187:1 23241:1 23315:1 23404:1 23630:1 23662:1 23677:1 23770:1 23870:1 23926:1 24087:1 24332:1 24380:1 24422:1 24425:1 24499:1 24510:1 24725:1 24726:1 24759:1 24795:1 24973:1 25008:1 25016:1 25023:1 25028:1 25067:2 25145:1 25146:1 25194:2 25326:2 25350:1 25397:1 25414:1 25492:1 25526:1 25561:1 25610:1 25828:1 25941:1 26045:1 26076:1 26083:1 26108:1 26241:1 26315:1 26331:1 26384:1 26471:1 26500:1 26511:1 26684:1 26771:1 26826:1 26851:1 26942:1 27030:1 27210:1 27281:1 27503:1 27518:1 27598:1 27768:1 27802:3 27883:1 27938:1 27978:1 27989:1 28035:1 28054:1 28088:1 28123:1 28124:1 28125:1 28427:1 28447:2 28547:1 28601:1 28651:1 28716:1 28795:1 28811:1 28834:4 28837:1 28843:2 29010:1 29038:1 29115:1 29251:1 29301:1 29351:1 29364:1 29367:2 29412:1 29576:1 29593:1 29635:1 29690:1 30055:1 30129:1 30190:1 30213:1 30264:1 30320:1 11 1:1 46:1 57:1 61:2 93:1 105:1 147:1 177:1 278:1 279:1 387:1 393:1 483:1 515:1 562:1 607:1 723:1 734:1 755:1 860:1 876:1 892:1 896:1 990:1 1021:1 1031:1 1075:1 1121:1 1134:1 1142:1 1283:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1362:1 1369:1 1382:1 1421:1 1442:1 1558:1 1604:2 1607:2 1614:3 1627:1 1674:1 1700:1 1702:1 1736:2 1744:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1949:1 1993:1 2060:1 2066:1 2082:1 2103:1 2180:1 2193:1 2282:2 2310:1 2338:1 2339:1 2363:1 2370:1 2396:1 2403:1 2419:1 2426:2 2427:1 2436:2 2439:1 2485:1 2505:1 2516:1 2539:1 2576:1 2656:1 2672:1 2703:1 2712:1 2795:1 2803:1 2817:1 2828:2 2842:1 2854:1 2885:1 3004:1 3016:1 3023:1 3067:2 3079:1 3097:1 3098:1 3123:1 3265:2 3337:1 3355:1 3418:1 3434:1 3479:1 3517:1 3593:1 3636:1 3656:1 3676:1 3707:1 3753:1 3768:1 3800:1 3876:1 3885:1 3915:3 3916:1 3930:2 3946:1 3964:1 4140:1 4171:1 4203:1 4251:1 4263:1 4306:1 4340:1 4344:2 4450:1 4477:2 4533:1 4585:1 4672:2 4755:1 4788:1 4825:1 4851:1 4856:1 5022:9 5058:1 5170:1 5185:1 5200:3 5202:1 5303:1 5320:1 5370:1 5433:1 5535:1 5558:1 5660:2 5727:1 5737:1 5747:1 5751:1 5757:2 5804:3 5830:1 5907:1 5931:1 5965:1 6050:1 6138:1 6276:1 6509:1 6516:1 6518:1 6521:1 6522:2 6529:1 6722:2 6815:1 6821:1 6853:1 6878:1 6901:1 6997:1 7122:1 7152:1 7263:1 7300:1 7314:1 7370:1 7423:1 7444:1 7535:1 7605:1 7617:1 7676:1 7792:1 7798:1 7799:1 7825:1 7855:1 7856:1 7873:9 7895:1 7897:2 7968:1 8050:1 8057:1 8081:3 8107:1 8126:1 8200:1 8285:1 8321:1 8349:2 8357:4 8594:1 8624:1 8655:1 8672:1 8725:1 8738:1 8741:1 8744:1 8751:1 8870:1 8916:1 8971:1 9097:2 9361:2 9404:1 9417:1 9432:1 9445:1 9477:1 9493:1 9501:1 9573:1 9611:1 9693:1 9711:1 9782:1 9805:1 9848:1 9866:1 9988:1 10028:1 10052:1 10065:1 10158:1 10178:1 10215:1 10254:1 10267:1 10278:1 10309:1 10337:2 10425:1 10451:1 10527:2 10698:1 10750:1 10761:1 10803:1 10808:1 10841:1 10897:1 10913:1 10980:1 11027:1 11036:1 11163:1 11185:3 11220:1 11401:1 11437:2 11568:1 11604:1 11665:1 11716:1 11731:1 11772:1 11806:1 11823:1 11859:1 11890:2 11906:1 11917:3 11926:4 11930:1 11958:1 11983:1 12049:1 12055:1 12138:1 12191:2 12227:1 12239:1 12258:1 12306:1 12398:1 12415:1 12517:1 12660:1 12780:1 12848:1 12860:1 12899:2 12900:1 12930:1 13034:1 13038:1 13054:1 13074:1 13192:1 13238:1 13325:1 13337:1 13389:1 13392:1 13401:1 13420:1 13436:1 13467:1 13513:1 13519:1 13566:1 13644:1 13770:1 13780:1 13796:1 13823:1 13868:1 13908:1 13952:1 13953:1 13959:1 14167:1 14211:1 14238:2 14245:1 14362:1 14409:1 14416:1 14429:1 14550:1 14557:1 14560:1 14675:1 14745:1 14771:1 14836:1 14872:1 14873:1 14909:1 14948:1 14979:1 15110:1 15116:1 15142:1 15222:1 15316:1 15459:1 15692:3 15746:1 15861:1 15942:1 15956:1 15962:1 15992:1 16084:1 16108:1 16130:1 16184:2 16276:2 16279:1 16362:1 16412:2 16436:1 16459:1 16461:1 16506:1 16532:1 16535:2 16537:1 16548:1 16861:1 16863:1 16892:1 16926:2 16971:1 17057:1 17150:2 17181:2 17213:1 17370:1 17404:1 17440:1 17521:1 17525:2 17649:1 17727:1 17800:1 17818:1 17823:1 17851:1 17888:1 17896:1 17897:1 17918:1 17943:1 17980:1 18043:2 18144:1 18264:1 18267:1 18278:1 18345:1 18348:1 18562:1 18580:1 18648:1 18744:1 18800:1 18809:1 18845:1 18880:1 19033:375 19052:1 19133:2 19242:1 19461:1 19463:1 19523:1 19534:3 19536:1 19584:1 19632:1 19705:1 19721:1 19739:1 19785:1 19794:1 19805:1 19823:1 19827:2 19865:1 19871:1 19881:1 19916:1 19933:1 19967:1 20011:1 20109:1 20166:1 20279:1 20289:1 20355:1 20465:1 20569:1 20646:1 20703:1 20722:1 20947:1 20959:1 21033:1 21188:1 21190:1 21264:1 21326:1 21360:1 21522:1 21556:1 21599:1 21669:1 21695:1 21783:1 21790:4 21793:1 21850:1 21939:1 21993:2 22021:1 22090:1 22099:2 22118:1 22170:1 22218:1 22227:1 22261:1 22266:1 22339:1 22379:1 22392:1 22549:1 22627:2 22646:1 22668:1 22707:1 22829:1 22855:1 22866:1 22931:1 22942:1 22992:1 23022:2 23043:1 23163:1 23187:1 23202:1 23218:1 23241:1 23315:1 23356:1 23404:1 23630:1 23647:1 23662:1 23677:1 23770:1 23870:1 23926:1 23929:1 24087:2 24158:1 24254:1 24332:1 24380:1 24422:1 24425:1 24499:1 24510:1 24725:2 24726:1 24759:1 24795:1 24834:1 24973:1 25004:1 25008:1 25016:1 25023:1 25028:1 25048:1 25049:1 25067:2 25145:1 25146:1 25194:2 25197:1 25224:1 25326:3 25328:1 25350:1 25397:1 25414:1 25492:1 25526:1 25561:1 25610:1 25828:1 25854:3 25941:1 25964:1 26030:1 26045:1 26062:3 26076:1 26083:1 26108:1 26218:1 26241:1 26276:1 26315:1 26331:1 26384:1 26471:1 26500:1 26506:1 26511:1 26684:1 26706:1 26771:1 26826:1 26827:1 26851:1 26942:1 26992:1 27030:1 27056:1 27063:1 27163:1 27210:1 27281:1 27341:1 27503:1 27518:1 27598:1 27668:1 27768:1 27802:3 27883:1 27938:2 27978:1 27989:1 28035:1 28047:1 28054:1 28088:1 28123:1 28124:1 28125:1 28215:1 28294:1 28427:1 28447:2 28547:1 28601:1 28651:1 28658:1 28716:2 28795:1 28811:1 28834:4 28837:1 28843:2 28911:1 29010:1 29038:1 29115:1 29207:1 29251:1 29301:1 29351:1 29364:1 29367:2 29412:1 29555:1 29576:1 29593:1 29635:1 29690:1 29705:1 29741:1 29796:1 29806:1 29888:1 29965:1 30013:1 30055:1 30119:1 30129:1 30185:1 30190:1 30197:1 30213:1 30253:1 30258:1 30264:1 30320:1 11 1:1 46:1 57:1 61:2 93:1 94:1 105:1 147:1 177:1 278:1 279:1 385:1 387:1 393:2 483:1 515:1 562:1 607:1 723:1 734:1 755:1 860:1 876:1 892:1 896:1 915:1 990:1 1021:1 1031:2 1075:1 1112:1 1121:1 1134:1 1142:1 1283:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1356:1 1362:1 1369:1 1382:1 1421:1 1442:1 1558:1 1604:2 1607:3 1614:4 1627:1 1673:1 1674:1 1700:1 1702:2 1736:2 1744:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1949:1 1979:1 1993:1 2060:1 2066:1 2077:1 2082:1 2103:1 2159:1 2180:1 2193:1 2282:2 2310:1 2338:1 2339:1 2363:2 2367:1 2370:1 2396:1 2401:1 2403:1 2411:1 2419:1 2426:2 2427:1 2436:2 2439:1 2485:1 2505:1 2516:1 2533:1 2539:1 2576:1 2656:1 2672:1 2703:1 2712:1 2795:1 2803:1 2817:1 2828:2 2842:1 2854:1 2885:1 3004:1 3016:1 3023:2 3067:2 3079:1 3097:1 3098:1 3123:1 3245:1 3265:2 3337:1 3355:1 3382:1 3418:1 3434:1 3471:1 3479:1 3517:1 3593:1 3604:1 3636:1 3656:1 3676:1 3707:2 3753:1 3768:1 3800:1 3833:1 3835:1 3876:1 3885:2 3915:3 3916:1 3930:2 3946:1 3964:1 4111:1 4140:1 4150:2 4171:1 4203:1 4224:1 4251:1 4263:1 4306:1 4340:2 4344:2 4450:1 4477:2 4491:1 4533:1 4585:1 4672:3 4688:1 4755:1 4770:1 4788:1 4825:1 4851:1 4856:1 5022:10 5058:1 5145:1 5170:1 5185:1 5196:1 5200:3 5202:1 5218:1 5303:1 5320:1 5370:1 5433:1 5493:1 5535:2 5558:1 5660:2 5684:1 5690:1 5727:1 5737:1 5747:1 5751:1 5757:2 5803:1 5804:3 5830:1 5907:1 5931:2 5965:1 6050:1 6138:1 6146:1 6155:1 6276:1 6509:1 6516:1 6518:1 6521:1 6522:2 6529:2 6722:2 6815:1 6821:1 6853:1 6878:1 6901:1 6997:1 7108:1 7122:2 7152:1 7263:1 7300:1 7314:2 7370:1 7423:1 7444:1 7535:1 7603:1 7605:2 7617:1 7676:1 7732:1 7776:1 7792:2 7798:1 7799:1 7825:1 7855:1 7856:1 7873:12 7895:1 7897:2 7931:1 7942:1 7968:1 8050:1 8057:1 8081:4 8107:1 8126:2 8200:1 8285:1 8321:1 8349:2 8357:4 8594:1 8624:1 8655:1 8672:1 8725:1 8738:1 8741:1 8744:1 8751:1 8809:1 8870:1 8916:1 8971:1 9011:1 9093:1 9097:2 9361:2 9404:1 9417:1 9428:1 9432:1 9445:1 9477:1 9493:1 9501:1 9573:1 9574:1 9611:1 9689:1 9693:1 9711:1 9767:1 9782:1 9805:1 9848:1 9866:1 9936:1 9988:1 10028:1 10052:1 10065:1 10117:1 10134:1 10158:1 10165:1 10178:1 10215:1 10254:1 10267:1 10278:1 10309:1 10337:2 10388:1 10425:1 10451:2 10527:2 10584:1 10601:1 10698:1 10750:1 10761:1 10803:2 10808:1 10841:1 10897:1 10913:1 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11175:1 11185:3 11220:1 11401:1 11437:2 11568:1 11604:1 11614:1 11665:1 11716:1 11729:1 11731:1 11772:2 11793:1 11806:1 11823:1 11855:1 11859:1 11890:2 11906:1 11917:4 11926:5 11930:1 11958:1 11983:1 12035:1 12049:1 12055:1 12138:1 12169:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12369:1 12370:1 12375:1 12398:1 12415:1 12517:1 12660:1 12780:1 12848:1 12860:1 12899:2 12900:1 12930:1 12956:1 13034:1 13038:2 13054:1 13074:1 13192:1 13210:1 13238:1 13325:1 13337:2 13389:1 13392:1 13401:1 13407:1 13420:1 13436:1 13467:1 13513:1 13517:1 13519:1 13566:2 13644:1 13770:1 13780:1 13796:1 13823:1 13868:1 13908:1 13952:1 13953:1 13959:1 14002:1 14067:1 14167:2 14211:1 14238:2 14245:1 14361:1 14362:1 14388:1 14409:1 14416:1 14429:1 14550:1 14557:1 14560:1 14611:1 14675:1 14745:1 14771:1 14794:1 14836:1 14872:1 14873:1 14909:1 14948:1 14979:2 15017:1 15110:1 15116:1 15129:1 15142:1 15152:1 15176:1 15189:1 15222:1 15316:1 15317:1 15319:1 15459:1 15491:1 15648:1 15692:3 15746:1 15861:1 15942:1 15956:1 15962:1 15992:1 16041:1 16084:2 16108:1 16130:1 16184:2 16276:2 16279:1 16362:1 16412:2 16436:1 16459:1 16461:1 16498:1 16506:1 16532:1 16535:2 16537:1 16548:1 16602:1 16861:1 16863:1 16892:1 16926:2 16952:1 16971:1 17057:1 17150:2 17181:2 17213:1 17342:1 17370:1 17404:1 17440:1 17521:1 17525:2 17577:1 17649:1 17727:1 17800:1 17814:2 17818:1 17823:1 17851:1 17888:1 17896:1 17897:1 17912:1 17918:1 17943:1 17980:1 18043:2 18128:1 18137:1 18144:1 18264:1 18267:1 18278:1 18282:1 18345:1 18348:1 18429:1 18562:1 18580:1 18648:1 18744:2 18800:1 18809:1 18845:1 18880:1 18934:1 19033:526 19052:2 19058:1 19133:2 19242:1 19461:2 19463:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19705:1 19721:1 19739:1 19785:1 19794:1 19805:1 19823:1 19827:2 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:1 20011:1 20109:1 20166:1 20279:1 20289:1 20355:1 20440:1 20465:1 20569:1 20646:1 20703:1 20711:1 20722:1 20947:1 20959:1 21033:1 21167:1 21188:1 21190:1 21264:1 21275:1 21302:1 21320:1 21326:1 21360:1 21408:1 21522:1 21529:1 21556:1 21599:1 21669:1 21695:1 21783:1 21790:4 21793:1 21850:1 21929:1 21939:1 21960:1 21993:2 22021:1 22090:1 22099:2 22107:1 22118:1 22151:1 22170:1 22218:2 22227:1 22261:2 22266:1 22339:1 22379:2 22392:1 22549:1 22600:1 22627:2 22637:1 22646:1 22668:1 22707:1 22772:1 22829:1 22855:1 22866:1 22924:1 22931:1 22942:1 22992:1 23022:2 23043:1 23163:2 23173:1 23187:1 23202:1 23218:1 23241:1 23244:1 23307:1 23315:1 23322:1 23356:1 23404:1 23630:1 23647:1 23662:1 23677:1 23763:1 23770:1 23870:1 23926:1 23929:1 24087:2 24138:1 24158:1 24164:1 24254:1 24289:1 24332:1 24380:1 24422:2 24425:1 24474:1 24499:1 24510:1 24634:1 24725:2 24726:1 24759:1 24795:1 24834:1 24860:1 24894:1 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25028:1 25036:1 25048:1 25049:1 25067:2 25121:1 25145:1 25146:1 25194:2 25197:1 25224:1 25326:4 25328:1 25350:1 25397:1 25414:1 25428:1 25492:1 25493:1 25526:1 25561:1 25610:1 25611:1 25828:2 25829:1 25854:3 25941:1 25964:1 26030:1 26045:1 26062:3 26076:1 26083:1 26108:1 26218:1 26241:1 26276:1 26315:1 26331:1 26384:1 26471:1 26500:1 26506:1 26511:1 26653:1 26684:1 26706:1 26771:1 26826:1 26827:1 26851:1 26869:1 26942:1 26970:1 26992:1 27030:1 27056:1 27063:1 27163:1 27210:1 27281:1 27341:1 27351:1 27451:1 27503:1 27518:2 27547:1 27598:1 27633:1 27668:1 27718:1 27768:1 27791:1 27802:3 27883:1 27938:2 27964:1 27978:1 27989:1 28035:1 28047:1 28054:2 28063:1 28088:1 28120:1 28123:1 28124:1 28125:1 28149:1 28215:1 28294:1 28391:1 28427:1 28447:2 28547:1 28577:1 28601:1 28608:1 28627:1 28651:2 28658:1 28716:2 28795:1 28811:1 28834:4 28837:1 28843:2 28852:1 28854:1 28911:1 29001:1 29010:1 29038:1 29115:1 29158:1 29207:1 29251:1 29301:1 29351:1 29364:1 29367:2 29412:1 29555:1 29576:1 29593:1 29635:1 29690:1 29705:1 29741:1 29796:1 29806:1 29888:1 29951:1 29965:1 30013:1 30055:1 30108:1 30119:1 30129:1 30185:1 30190:1 30197:1 30213:1 30253:1 30258:1 30264:1 30303:1 30320:1 11 1:1 46:1 57:1 61:2 93:1 94:1 105:1 147:1 177:1 186:1 225:1 278:1 279:1 385:1 387:1 393:2 483:1 515:1 549:1 562:1 607:1 723:1 734:1 755:1 860:1 876:1 892:1 896:1 915:1 990:1 1006:1 1021:1 1031:2 1075:1 1112:1 1121:1 1134:1 1137:1 1142:1 1170:1 1283:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1356:1 1362:1 1369:1 1382:1 1407:1 1421:1 1442:1 1558:1 1604:3 1607:5 1614:6 1627:1 1673:1 1674:1 1700:2 1702:2 1731:1 1736:3 1744:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1938:1 1949:1 1979:1 1993:1 2060:1 2066:1 2077:1 2082:1 2103:1 2121:1 2159:1 2180:1 2193:1 2282:3 2294:1 2310:1 2315:1 2338:1 2339:1 2341:1 2345:1 2363:2 2367:1 2370:1 2396:1 2401:1 2403:1 2411:1 2419:1 2426:3 2427:1 2436:2 2439:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2656:1 2665:1 2672:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:2 2828:2 2842:1 2854:1 2885:1 2902:1 3004:1 3016:1 3023:2 3067:2 3079:1 3089:1 3097:1 3098:1 3123:1 3245:1 3265:2 3337:1 3355:1 3382:1 3418:1 3434:1 3471:1 3479:1 3517:1 3593:1 3604:1 3636:1 3656:1 3675:1 3676:1 3696:1 3707:2 3729:1 3753:1 3768:1 3800:1 3833:2 3835:1 3876:1 3885:2 3915:3 3916:1 3930:2 3946:1 3964:1 4111:1 4140:1 4150:2 4171:1 4203:1 4224:1 4251:1 4263:1 4306:1 4340:2 4344:3 4450:1 4477:2 4491:1 4533:1 4585:1 4672:3 4688:1 4755:1 4770:1 4788:1 4825:1 4851:1 4856:1 5022:10 5058:1 5145:1 5170:2 5185:1 5194:1 5196:1 5200:3 5202:1 5218:1 5256:2 5287:1 5303:1 5320:1 5370:1 5433:1 5493:1 5535:2 5558:1 5660:2 5684:1 5690:1 5727:1 5737:1 5747:1 5751:1 5757:2 5803:1 5804:3 5830:1 5907:1 5931:2 5965:1 6050:2 6138:1 6146:1 6155:1 6229:1 6276:1 6364:1 6378:1 6423:1 6509:1 6516:2 6518:1 6521:1 6522:2 6529:2 6694:1 6722:2 6815:1 6821:1 6853:1 6878:1 6901:1 6997:1 7014:1 7044:1 7108:1 7122:2 7152:1 7263:1 7280:1 7300:1 7314:2 7356:1 7370:1 7423:1 7444:1 7535:1 7603:1 7605:2 7617:1 7674:1 7676:1 7732:1 7742:1 7776:1 7792:2 7798:1 7799:1 7825:1 7855:1 7856:1 7873:13 7895:1 7897:2 7931:1 7942:1 7968:1 8050:1 8057:1 8081:4 8107:1 8126:2 8200:1 8285:1 8321:1 8349:2 8357:6 8551:1 8594:1 8624:1 8625:1 8651:1 8655:1 8672:1 8725:1 8738:1 8741:1 8744:2 8751:1 8809:1 8870:1 8916:1 8971:2 9011:1 9079:1 9093:1 9097:2 9327:1 9361:2 9382:1 9404:1 9417:1 9428:1 9432:1 9445:1 9477:1 9493:1 9501:1 9555:1 9573:1 9574:1 9611:1 9689:1 9693:1 9711:1 9767:1 9782:2 9805:1 9813:1 9825:1 9848:1 9866:1 9936:1 9965:1 9988:1 10028:1 10052:1 10065:1 10117:1 10127:1 10134:1 10158:1 10165:1 10178:1 10215:1 10254:1 10267:1 10278:1 10296:1 10309:1 10337:2 10379:1 10385:1 10388:1 10425:1 10451:2 10527:2 10551:2 10584:1 10601:1 10698:1 10727:1 10750:1 10761:1 10803:3 10808:1 10841:1 10897:1 10913:1 10924:1 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:3 11220:1 11401:1 11437:2 11465:1 11568:1 11604:1 11614:1 11664:1 11665:1 11716:1 11721:1 11729:1 11731:1 11772:2 11793:1 11806:1 11823:1 11855:1 11859:1 11890:2 11906:1 11917:4 11926:5 11930:1 11958:1 11983:2 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12169:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12369:2 12370:2 12375:1 12398:1 12415:1 12517:1 12660:1 12680:1 12780:1 12848:1 12860:1 12899:2 12900:1 12930:1 12956:1 13034:1 13038:2 13054:1 13074:1 13183:1 13192:1 13210:1 13238:1 13246:1 13325:1 13337:2 13389:1 13392:1 13401:1 13407:1 13420:1 13422:1 13436:1 13467:2 13494:1 13513:1 13517:1 13519:1 13566:2 13587:1 13644:1 13716:2 13770:1 13780:1 13796:1 13823:1 13868:1 13908:1 13952:1 13953:1 13959:2 14002:1 14067:1 14167:2 14211:1 14238:2 14245:1 14361:1 14362:1 14375:1 14388:1 14392:1 14409:1 14416:1 14429:1 14550:1 14557:1 14560:1 14591:1 14611:1 14675:1 14745:1 14771:1 14794:1 14836:1 14872:1 14873:1 14909:1 14948:1 14979:2 15017:1 15021:1 15078:1 15110:1 15116:1 15129:2 15142:1 15152:1 15176:1 15189:1 15217:1 15222:1 15316:1 15317:1 15319:1 15459:1 15491:1 15648:1 15692:3 15746:1 15861:1 15942:1 15956:2 15962:1 15964:1 15992:1 16041:1 16084:2 16108:1 16130:1 16184:2 16237:1 16276:2 16279:1 16362:1 16412:2 16436:1 16459:1 16461:1 16498:1 16506:2 16532:1 16535:2 16536:1 16537:1 16548:1 16560:1 16602:1 16861:1 16863:1 16892:1 16926:2 16952:1 16971:1 17057:1 17067:1 17124:1 17150:2 17181:2 17213:1 17299:1 17342:1 17370:1 17404:1 17412:1 17434:1 17440:1 17521:1 17525:2 17577:1 17649:1 17681:1 17727:1 17734:1 17753:1 17800:1 17814:2 17818:1 17823:1 17851:1 17888:1 17896:1 17897:1 17912:1 17918:1 17943:1 17980:1 18043:2 18123:1 18128:1 18137:1 18144:1 18226:1 18264:1 18267:1 18278:1 18282:1 18345:1 18348:1 18429:1 18525:2 18562:1 18580:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:1 18809:1 18845:1 18880:1 18934:1 18994:1 19033:635 19052:2 19058:1 19133:2 19242:1 19461:2 19463:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19705:1 19721:1 19739:1 19772:1 19785:1 19794:1 19805:1 19823:1 19827:2 19840:2 19855:1 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:1 20011:1 20109:1 20166:1 20279:1 20289:1 20355:1 20401:1 20440:1 20465:1 20569:1 20573:1 20646:1 20703:1 20711:1 20722:1 20811:1 20863:1 20904:1 20947:1 20959:1 20971:1 21033:1 21167:1 21188:1 21190:1 21239:1 21264:1 21275:1 21302:1 21320:1 21326:1 21360:1 21408:1 21522:1 21529:1 21556:1 21599:1 21635:1 21669:1 21695:1 21752:1 21783:1 21790:4 21793:1 21850:1 21873:1 21929:1 21939:1 21960:1 21987:1 21993:2 22021:1 22061:1 22090:1 22091:1 22099:2 22107:1 22118:1 22151:1 22170:1 22218:2 22227:1 22261:2 22266:1 22339:1 22379:2 22392:1 22405:1 22425:1 22549:1 22600:1 22608:1 22619:1 22627:2 22637:1 22646:1 22668:1 22672:1 22707:1 22772:1 22829:1 22836:2 22846:1 22855:1 22866:1 22896:1 22924:1 22931:1 22942:1 22992:1 23022:2 23043:1 23049:1 23163:2 23173:1 23187:1 23202:1 23218:1 23241:1 23244:1 23307:1 23315:1 23322:1 23356:1 23404:1 23497:1 23630:1 23647:1 23662:1 23671:2 23677:1 23763:1 23770:1 23870:1 23876:1 23886:1 23926:1 23929:1 23986:1 24087:2 24138:1 24158:1 24164:1 24243:1 24254:1 24289:1 24332:1 24380:1 24422:2 24425:1 24474:1 24499:1 24510:1 24634:1 24681:1 24725:2 24726:1 24759:1 24777:1 24795:1 24833:2 24834:1 24859:1 24860:1 24894:1 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25028:1 25036:1 25038:1 25048:1 25049:1 25067:2 25121:1 25145:1 25146:1 25194:2 25197:1 25224:1 25227:1 25326:6 25328:1 25350:1 25392:1 25397:1 25414:1 25428:1 25492:1 25493:1 25526:1 25561:1 25610:1 25611:1 25718:2 25828:2 25829:1 25854:3 25941:1 25964:2 26030:1 26045:1 26054:1 26062:3 26076:1 26083:1 26108:1 26125:1 26173:1 26212:1 26218:1 26241:1 26276:1 26315:1 26331:1 26384:1 26410:1 26471:1 26500:1 26506:1 26511:1 26653:1 26660:1 26684:1 26706:1 26729:1 26771:2 26826:1 26827:1 26851:1 26869:1 26904:1 26942:1 26970:1 26992:1 27030:1 27049:1 27056:1 27063:1 27158:1 27163:1 27210:1 27281:1 27341:1 27351:1 27443:1 27451:1 27503:1 27518:2 27547:1 27598:1 27625:1 27633:1 27668:1 27718:1 27768:1 27791:1 27802:3 27874:1 27883:1 27938:2 27964:2 27978:1 27989:1 28035:1 28047:1 28054:2 28063:2 28088:1 28120:1 28123:1 28124:1 28125:1 28149:1 28215:1 28294:1 28391:1 28427:1 28447:2 28547:1 28577:1 28601:1 28608:1 28627:1 28651:2 28658:1 28660:1 28673:1 28677:1 28716:2 28795:1 28811:1 28834:4 28837:1 28839:1 28843:2 28852:1 28854:1 28873:1 28911:1 29001:1 29010:1 29038:1 29057:1 29115:1 29158:1 29192:1 29207:1 29251:1 29301:1 29351:1 29364:1 29367:2 29412:1 29555:1 29576:1 29593:1 29635:1 29690:1 29705:1 29708:1 29741:1 29796:1 29806:1 29888:1 29951:1 29965:1 30013:1 30055:1 30106:1 30108:1 30119:1 30129:1 30185:1 30190:1 30197:1 30213:1 30253:1 30258:1 30264:1 30298:2 30303:1 30320:1 11 1:1 46:1 57:1 61:2 93:1 94:1 105:1 147:1 169:1 177:1 186:1 225:2 278:1 279:1 385:1 387:1 393:2 483:1 515:1 549:1 562:1 607:1 627:1 663:1 678:1 723:1 725:1 734:1 755:1 860:1 876:1 885:1 892:1 896:1 915:2 979:1 990:1 1006:1 1021:1 1031:2 1042:1 1075:1 1112:1 1121:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1358:1 1362:1 1369:1 1382:1 1407:1 1421:1 1442:1 1558:1 1604:3 1607:5 1614:6 1623:1 1627:1 1642:1 1673:1 1674:1 1700:2 1702:2 1723:1 1731:1 1736:3 1744:1 1805:1 1811:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1938:1 1949:1 1979:1 1993:1 2008:1 2060:1 2066:1 2077:1 2082:1 2103:1 2121:1 2159:1 2180:1 2193:1 2215:1 2282:4 2294:1 2310:1 2315:1 2338:1 2339:2 2341:1 2345:1 2363:2 2364:2 2367:1 2370:1 2396:2 2401:1 2403:1 2411:1 2419:1 2426:3 2427:1 2436:2 2439:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2656:1 2665:1 2672:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:2 2828:2 2842:1 2854:1 2885:1 2897:1 2902:1 3004:2 3016:2 3023:2 3067:2 3079:1 3089:1 3097:1 3098:1 3123:1 3181:1 3245:1 3265:2 3337:1 3355:1 3374:1 3382:1 3418:1 3434:1 3471:1 3479:1 3517:1 3593:1 3604:1 3636:1 3656:1 3669:1 3675:1 3676:1 3696:1 3707:2 3729:1 3753:1 3768:1 3800:1 3833:2 3835:1 3876:1 3885:3 3915:4 3916:1 3930:2 3946:1 3964:1 4085:1 4111:1 4140:1 4150:2 4171:1 4175:1 4203:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:2 4344:3 4436:2 4450:1 4462:1 4477:2 4491:1 4504:1 4533:1 4585:1 4596:1 4672:3 4688:1 4755:1 4770:1 4788:1 4825:1 4851:1 4856:2 5022:10 5058:1 5145:1 5169:1 5170:3 5174:1 5185:1 5194:1 5196:1 5200:3 5202:2 5218:1 5256:2 5287:1 5303:1 5320:1 5370:1 5433:1 5493:1 5535:2 5558:1 5660:2 5684:2 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5803:1 5804:3 5830:1 5882:1 5907:1 5931:2 5965:1 6050:2 6136:1 6138:1 6146:1 6155:1 6229:1 6236:2 6276:1 6364:1 6378:1 6423:1 6509:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:2 6532:1 6694:1 6722:2 6815:1 6821:2 6853:1 6878:1 6901:1 6929:1 6936:1 6941:1 6954:1 6962:1 6997:1 7014:1 7044:1 7108:1 7122:2 7152:1 7224:1 7263:1 7280:1 7300:1 7314:2 7346:1 7356:1 7370:1 7423:1 7444:1 7535:1 7583:1 7603:1 7605:2 7611:1 7617:1 7634:1 7674:1 7676:1 7732:1 7742:1 7776:1 7792:2 7798:1 7799:1 7801:1 7825:1 7855:1 7856:1 7873:14 7895:2 7897:2 7931:1 7942:1 7968:1 8050:1 8057:1 8081:4 8100:1 8107:1 8126:2 8200:1 8285:1 8321:1 8349:2 8357:8 8392:1 8400:1 8551:1 8594:1 8624:1 8625:1 8651:1 8653:1 8655:1 8672:1 8725:1 8738:1 8741:1 8744:3 8751:1 8809:1 8870:1 8882:1 8885:1 8889:1 8916:1 8971:2 9011:1 9045:1 9058:1 9079:1 9093:1 9097:2 9212:1 9327:1 9336:1 9361:2 9382:1 9384:1 9404:1 9417:1 9428:1 9432:1 9445:1 9477:1 9493:1 9501:1 9555:1 9573:1 9574:1 9611:1 9689:1 9693:1 9711:1 9767:1 9782:2 9805:1 9813:1 9825:1 9848:1 9866:1 9884:1 9936:1 9965:1 9986:1 9988:1 10028:1 10052:1 10065:1 10117:1 10127:1 10134:1 10158:1 10165:1 10178:1 10209:1 10215:1 10218:1 10244:1 10254:1 10267:1 10278:1 10296:1 10309:1 10337:2 10379:1 10385:1 10388:1 10425:1 10451:2 10527:2 10551:2 10584:1 10601:1 10698:1 10727:1 10729:1 10750:1 10761:1 10803:3 10808:1 10841:1 10897:1 10913:1 10924:1 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:4 11199:1 11218:1 11220:1 11306:1 11401:1 11437:2 11465:1 11568:1 11604:1 11614:1 11664:1 11665:1 11692:1 11716:1 11721:1 11729:1 11731:1 11772:2 11793:1 11806:1 11823:1 11855:1 11859:1 11890:2 11906:1 11917:4 11926:5 11930:1 11958:1 11983:2 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12153:1 12156:1 12169:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12479:1 12483:1 12517:1 12537:1 12660:1 12680:1 12780:1 12848:1 12860:1 12899:2 12900:1 12930:2 12939:1 12948:1 12956:1 13016:1 13034:1 13038:2 13054:1 13074:1 13097:1 13183:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:2 13389:1 13392:1 13401:1 13407:1 13420:1 13422:1 13436:1 13467:2 13494:1 13513:1 13517:1 13519:1 13566:2 13587:1 13644:1 13716:3 13770:1 13780:1 13796:1 13815:1 13823:1 13868:1 13908:1 13948:1 13952:1 13953:1 13959:2 13994:1 14002:1 14067:1 14167:2 14211:1 14238:2 14245:1 14361:1 14362:1 14375:1 14388:1 14392:1 14409:1 14416:1 14425:1 14429:1 14550:2 14557:1 14560:1 14591:1 14611:1 14675:1 14729:1 14745:1 14771:1 14783:1 14794:1 14836:1 14872:1 14873:1 14909:1 14948:1 14979:2 15017:1 15021:1 15078:1 15110:1 15116:1 15129:2 15142:1 15152:1 15176:1 15189:1 15217:1 15222:1 15316:1 15317:1 15319:1 15459:1 15491:1 15648:1 15692:5 15746:1 15857:1 15861:1 15942:1 15956:2 15962:1 15964:1 15965:1 15975:1 15980:1 15992:1 16041:1 16084:2 16108:1 16130:1 16184:2 16237:1 16276:2 16279:1 16358:1 16362:1 16412:2 16436:1 16459:1 16461:1 16498:1 16506:2 16525:1 16532:1 16535:2 16536:1 16537:1 16546:1 16548:1 16559:1 16560:1 16602:1 16861:1 16863:1 16875:1 16892:1 16893:1 16926:2 16952:1 16960:1 16971:1 17052:1 17057:1 17067:1 17120:1 17124:1 17150:2 17181:2 17213:1 17299:1 17316:1 17342:1 17370:1 17404:2 17412:1 17434:1 17440:1 17478:1 17521:1 17525:2 17577:1 17649:1 17681:1 17692:1 17703:1 17727:1 17734:1 17753:1 17800:1 17814:2 17818:1 17823:1 17851:1 17888:1 17896:1 17897:1 17912:1 17918:1 17943:1 17980:1 18043:2 18059:1 18123:1 18128:1 18137:1 18144:1 18226:1 18264:1 18267:1 18278:1 18282:1 18283:1 18345:1 18346:1 18348:1 18429:1 18444:1 18525:2 18562:1 18580:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:1 18809:1 18845:1 18880:1 18934:1 18960:1 18994:1 19029:1 19033:759 19052:2 19058:1 19133:2 19242:1 19262:1 19323:1 19333:1 19461:2 19463:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19705:1 19721:1 19726:1 19739:1 19772:2 19785:1 19794:1 19805:1 19823:1 19827:3 19840:2 19855:1 19856:1 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:1 20011:1 20046:1 20100:1 20109:1 20166:1 20179:1 20279:1 20289:1 20355:1 20401:1 20404:1 20440:1 20465:1 20569:1 20573:1 20646:1 20664:1 20671:1 20703:1 20711:1 20722:1 20811:1 20863:1 20904:2 20947:1 20959:1 20971:1 21033:1 21042:1 21133:1 21142:1 21145:1 21167:1 21188:1 21190:1 21239:1 21264:1 21275:1 21302:1 21320:1 21326:1 21346:1 21360:1 21408:1 21453:1 21522:1 21529:1 21550:1 21556:1 21599:1 21635:1 21669:1 21685:1 21695:1 21752:1 21783:1 21790:4 21793:1 21850:1 21873:1 21905:1 21929:1 21939:1 21960:2 21987:1 21993:2 22021:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22151:1 22170:1 22218:2 22227:1 22246:1 22261:2 22266:1 22339:1 22353:1 22376:1 22379:2 22386:1 22392:1 22405:2 22425:1 22549:1 22600:1 22608:2 22619:1 22627:2 22637:1 22646:1 22665:1 22668:1 22672:1 22707:1 22772:1 22822:1 22829:1 22836:2 22846:1 22855:1 22866:1 22896:1 22924:1 22931:1 22942:2 22992:1 23022:2 23043:1 23049:1 23163:2 23173:1 23187:1 23202:1 23218:1 23241:1 23244:1 23307:1 23315:1 23322:1 23356:1 23368:1 23404:1 23497:1 23630:1 23647:1 23662:1 23671:3 23677:1 23724:1 23763:1 23770:1 23831:1 23852:1 23870:1 23876:1 23886:1 23887:1 23926:1 23929:1 23930:1 23986:1 24019:1 24087:2 24138:1 24158:1 24164:1 24243:1 24254:1 24289:1 24332:1 24380:1 24422:2 24425:1 24474:1 24499:1 24510:1 24634:1 24652:1 24670:1 24681:1 24725:2 24726:1 24759:1 24777:1 24795:1 24833:2 24834:1 24859:1 24860:1 24894:1 24949:1 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:1 25028:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:2 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25194:2 25197:1 25224:1 25227:1 25326:7 25328:1 25350:2 25392:1 25397:1 25414:1 25428:1 25492:1 25493:1 25526:1 25561:1 25610:1 25611:1 25718:2 25802:1 25828:2 25829:1 25854:3 25941:1 25964:2 26030:1 26045:1 26054:1 26062:3 26076:1 26083:1 26095:1 26108:1 26125:1 26128:1 26142:1 26173:1 26212:2 26218:1 26241:1 26276:1 26315:1 26331:1 26384:2 26410:1 26471:1 26500:1 26506:1 26511:1 26653:1 26660:1 26684:1 26706:1 26729:1 26771:2 26791:1 26826:1 26827:1 26851:1 26867:1 26869:1 26904:1 26942:1 26970:1 26992:1 27030:2 27049:1 27056:1 27063:1 27158:1 27163:1 27169:1 27210:1 27268:1 27281:1 27284:1 27341:1 27351:1 27402:1 27443:1 27451:1 27503:1 27518:2 27547:1 27598:1 27625:1 27633:1 27668:1 27718:1 27768:1 27791:1 27802:3 27874:1 27883:1 27938:2 27964:2 27978:2 27989:1 28035:1 28047:1 28054:2 28058:1 28063:2 28088:1 28120:1 28123:1 28124:1 28125:1 28149:1 28215:1 28260:1 28294:1 28376:1 28391:1 28427:1 28447:3 28457:1 28547:1 28577:1 28601:1 28608:1 28627:1 28651:2 28658:1 28660:1 28673:1 28677:1 28716:2 28765:1 28795:1 28811:1 28834:5 28837:1 28839:1 28843:2 28852:1 28854:1 28873:1 28911:1 29001:2 29010:1 29038:1 29057:1 29115:1 29158:1 29192:1 29207:1 29251:1 29301:1 29351:1 29364:1 29367:2 29395:1 29412:1 29555:1 29576:1 29593:1 29635:1 29636:1 29690:1 29705:1 29708:1 29727:1 29741:1 29796:1 29806:1 29861:1 29888:1 29951:1 29965:1 30013:1 30020:1 30055:1 30106:1 30108:1 30119:1 30129:1 30185:1 30190:1 30197:1 30213:1 30253:1 30258:1 30262:1 30264:1 30298:2 30303:1 30320:1 11 1:1 10:1 41:1 46:1 57:1 61:2 93:1 94:1 100:1 105:1 147:1 169:1 177:1 186:1 225:2 265:1 278:1 279:1 385:1 387:1 393:2 483:1 515:1 549:1 562:1 598:1 607:1 627:1 663:1 678:2 723:1 725:1 734:1 755:1 858:1 860:1 876:1 885:1 892:1 896:1 915:2 936:1 953:1 979:1 990:1 1006:1 1021:1 1031:3 1042:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1358:1 1362:1 1369:1 1382:1 1407:1 1421:1 1442:1 1558:1 1598:1 1604:3 1607:5 1614:6 1619:1 1623:1 1627:1 1642:1 1673:1 1674:1 1700:3 1702:2 1723:1 1731:1 1736:3 1744:1 1789:1 1803:1 1805:1 1811:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1938:1 1948:1 1949:1 1979:1 1980:1 1993:1 2008:1 2060:1 2066:1 2077:1 2082:1 2103:1 2121:1 2159:1 2180:1 2192:1 2193:1 2213:1 2215:1 2282:4 2294:2 2310:1 2315:1 2338:1 2339:2 2341:2 2345:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:1 2403:1 2411:1 2419:1 2426:3 2427:1 2436:2 2439:1 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2656:1 2665:1 2672:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:2 2828:2 2842:1 2854:1 2885:1 2897:1 2902:1 2989:1 2994:1 3004:2 3016:2 3023:2 3054:2 3067:2 3079:1 3089:1 3097:1 3098:1 3105:1 3123:1 3171:1 3181:1 3189:1 3245:1 3265:2 3337:1 3355:1 3374:1 3382:1 3418:1 3434:1 3471:1 3479:2 3517:2 3593:1 3604:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3696:1 3707:2 3729:1 3753:1 3768:1 3800:1 3833:2 3835:1 3876:1 3885:3 3915:4 3916:1 3930:2 3946:1 3949:1 3964:1 4077:1 4085:1 4111:1 4136:1 4140:1 4150:2 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:2 4344:3 4351:1 4436:2 4450:1 4462:1 4477:2 4491:1 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4663:1 4672:3 4688:1 4755:1 4770:1 4788:1 4825:2 4851:1 4856:2 5022:12 5024:1 5058:1 5128:1 5145:1 5169:1 5170:3 5174:1 5181:1 5185:1 5194:1 5196:1 5200:3 5202:2 5213:1 5218:1 5256:2 5284:1 5287:1 5303:1 5320:1 5370:1 5433:1 5493:1 5535:2 5558:1 5614:1 5660:2 5684:2 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5803:1 5804:3 5830:1 5878:1 5882:1 5907:1 5931:2 5965:1 6050:3 6136:1 6138:1 6146:1 6155:1 6223:1 6229:1 6236:2 6276:1 6308:1 6364:1 6378:1 6407:1 6423:1 6509:1 6512:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:2 6532:1 6533:1 6694:1 6722:2 6815:1 6821:2 6853:1 6878:1 6901:1 6929:1 6936:1 6941:1 6954:1 6962:1 6994:1 6997:1 7014:1 7044:1 7071:1 7108:1 7122:2 7152:1 7224:1 7263:1 7280:1 7300:1 7314:2 7346:1 7356:1 7370:1 7423:1 7431:1 7444:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:1 7634:1 7648:1 7674:1 7676:1 7700:1 7726:1 7732:1 7742:1 7768:1 7772:1 7776:1 7792:2 7798:1 7799:1 7801:3 7825:1 7855:1 7856:1 7873:16 7895:2 7897:2 7931:1 7942:1 7968:1 7971:1 8050:1 8057:1 8081:4 8100:1 8101:1 8107:1 8126:2 8200:1 8285:1 8321:1 8340:1 8349:2 8357:9 8392:1 8400:1 8502:1 8551:1 8594:1 8624:1 8625:1 8651:1 8653:1 8655:2 8672:1 8725:1 8731:1 8738:1 8741:1 8744:3 8751:1 8809:1 8863:1 8870:1 8882:1 8885:1 8889:1 8916:1 8971:2 9011:1 9043:1 9045:1 9058:1 9079:2 9093:1 9097:2 9212:1 9327:1 9336:1 9361:2 9382:1 9384:1 9404:1 9417:1 9428:1 9430:1 9432:1 9445:1 9477:1 9493:1 9501:1 9555:1 9573:1 9574:1 9611:1 9689:1 9693:1 9711:1 9749:1 9767:1 9782:2 9805:1 9813:1 9824:1 9825:1 9848:1 9866:1 9884:1 9930:1 9936:1 9965:1 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10178:1 10209:1 10212:1 10215:1 10218:1 10244:1 10254:1 10267:1 10278:1 10296:1 10309:1 10334:1 10337:2 10379:1 10385:1 10388:1 10425:1 10451:2 10524:1 10527:2 10551:2 10584:1 10601:1 10653:1 10698:1 10727:1 10729:1 10750:1 10761:1 10803:3 10808:1 10832:1 10841:1 10897:1 10913:2 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:4 11199:1 11218:1 11220:1 11283:1 11306:1 11401:1 11437:2 11465:1 11473:1 11568:1 11604:1 11614:1 11664:1 11665:1 11692:1 11708:1 11716:1 11721:1 11729:1 11731:1 11772:2 11793:1 11806:1 11823:2 11829:1 11855:1 11859:1 11890:2 11906:1 11917:4 11918:1 11920:1 11926:5 11930:1 11958:1 11983:2 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12153:1 12156:1 12169:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12343:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12479:1 12483:1 12517:1 12532:1 12537:1 12550:1 12660:1 12680:1 12763:1 12780:1 12810:1 12848:1 12860:1 12899:2 12900:1 12930:2 12939:1 12948:1 12956:1 13016:1 13034:1 13038:2 13049:1 13054:1 13074:1 13097:1 13143:1 13170:1 13183:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:2 13389:2 13392:1 13393:1 13401:1 13407:2 13420:1 13422:1 13436:2 13467:2 13494:1 13495:1 13513:1 13517:1 13519:1 13566:2 13587:1 13644:1 13716:3 13748:1 13770:1 13780:1 13796:2 13815:1 13823:1 13868:1 13908:1 13948:1 13952:1 13953:1 13959:2 13978:1 13994:1 14002:1 14067:1 14167:2 14205:1 14211:1 14238:2 14245:1 14277:1 14361:1 14362:1 14375:1 14382:1 14388:1 14392:1 14409:1 14416:1 14425:1 14429:1 14476:1 14550:2 14557:1 14560:1 14569:1 14591:2 14611:1 14641:1 14675:1 14724:1 14729:1 14745:1 14771:1 14783:1 14794:1 14816:1 14836:1 14872:1 14873:2 14909:1 14948:1 14979:2 15017:1 15021:1 15078:1 15110:1 15116:1 15129:2 15142:1 15152:1 15176:1 15189:1 15217:1 15222:1 15253:1 15265:1 15316:1 15317:1 15319:1 15325:1 15335:1 15374:1 15459:1 15491:1 15648:1 15692:5 15746:1 15857:1 15861:1 15942:1 15956:2 15962:1 15964:1 15965:1 15975:1 15980:1 15992:1 15993:1 16010:1 16034:1 16041:2 16056:1 16084:2 16108:1 16130:1 16137:1 16184:2 16237:1 16276:2 16279:1 16334:1 16358:1 16362:1 16374:1 16412:2 16436:1 16459:1 16461:1 16498:1 16506:2 16525:1 16532:1 16535:3 16536:1 16537:1 16546:1 16548:1 16559:1 16560:1 16602:1 16686:1 16861:1 16863:1 16865:1 16875:1 16892:1 16893:1 16926:2 16952:1 16960:1 16971:1 16988:1 17052:1 17057:1 17067:1 17120:1 17124:1 17150:2 17181:2 17213:1 17299:1 17316:1 17342:2 17370:1 17404:3 17412:1 17434:1 17440:1 17478:1 17521:1 17525:2 17577:1 17649:1 17681:1 17692:1 17703:1 17727:2 17734:1 17753:1 17800:1 17804:1 17814:2 17818:1 17823:1 17851:1 17888:1 17896:1 17897:1 17912:1 17918:1 17943:1 17980:1 18043:2 18059:1 18123:1 18128:1 18137:1 18144:1 18152:1 18172:1 18220:1 18226:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18345:1 18346:1 18348:1 18373:1 18429:1 18444:1 18525:2 18562:1 18580:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:2 18809:1 18845:1 18880:1 18934:1 18960:1 18994:1 19029:1 19033:948 19052:2 19058:2 19133:2 19242:1 19262:1 19303:1 19323:1 19333:1 19461:2 19463:1 19465:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19659:1 19705:1 19721:1 19723:1 19726:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:3 19840:2 19855:1 19856:1 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:2 20011:1 20034:1 20046:1 20100:1 20109:1 20166:1 20179:1 20193:1 20279:1 20289:2 20355:1 20360:1 20399:1 20401:1 20404:1 20420:1 20440:1 20465:1 20529:1 20569:1 20573:2 20600:1 20646:1 20664:1 20671:1 20703:1 20711:1 20722:1 20737:1 20811:1 20863:1 20904:2 20929:1 20947:1 20959:1 20971:1 21033:1 21042:1 21065:1 21133:1 21142:1 21145:1 21167:1 21188:1 21190:1 21217:1 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21320:1 21326:1 21346:1 21360:1 21408:1 21452:1 21453:1 21522:1 21529:1 21550:1 21556:1 21599:1 21635:1 21669:1 21685:1 21695:1 21752:1 21783:1 21790:4 21793:1 21845:1 21850:1 21873:1 21905:1 21929:1 21939:1 21960:2 21982:1 21987:1 21993:2 22004:1 22021:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22151:1 22170:1 22218:2 22227:1 22246:1 22261:2 22266:1 22339:1 22353:1 22376:1 22379:2 22386:1 22392:1 22405:2 22425:1 22549:1 22600:1 22608:2 22619:1 22627:2 22637:1 22646:1 22665:1 22668:1 22672:1 22707:1 22739:1 22772:1 22822:1 22829:1 22836:2 22846:1 22855:1 22866:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23043:2 23049:1 23163:2 23170:1 23173:1 23187:1 23199:1 23202:1 23218:1 23241:1 23244:1 23302:1 23307:1 23315:1 23322:1 23356:1 23368:1 23404:1 23497:1 23630:1 23647:1 23662:1 23671:3 23677:1 23724:1 23763:1 23770:1 23798:1 23831:1 23852:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:1 23930:1 23986:1 24019:1 24028:1 24030:1 24087:2 24129:1 24138:1 24158:1 24164:1 24243:1 24254:1 24289:1 24325:1 24332:1 24380:1 24390:1 24422:2 24425:1 24449:1 24474:1 24488:1 24499:1 24510:1 24587:1 24594:1 24598:1 24634:1 24652:1 24658:1 24670:1 24671:1 24681:1 24709:1 24725:2 24726:1 24756:1 24759:1 24777:1 24795:1 24833:2 24834:1 24837:1 24859:1 24860:2 24894:1 24949:1 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:2 25028:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:2 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25194:2 25197:1 25223:1 25224:1 25227:1 25326:7 25328:1 25350:3 25364:1 25387:1 25392:1 25397:1 25414:1 25428:1 25492:1 25493:1 25526:1 25531:1 25543:1 25561:1 25600:1 25610:1 25611:1 25718:2 25802:1 25828:2 25829:1 25854:3 25869:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:1 26054:1 26062:3 26076:1 26083:1 26095:1 26108:1 26125:2 26128:1 26142:1 26173:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26384:2 26410:1 26471:1 26500:1 26506:1 26511:1 26527:1 26597:1 26634:1 26653:1 26660:1 26684:1 26706:1 26712:1 26729:1 26771:2 26791:1 26826:1 26827:1 26851:2 26867:1 26869:1 26904:1 26942:1 26970:1 26981:1 26992:1 27030:2 27049:1 27052:1 27056:1 27063:1 27158:1 27163:1 27169:1 27210:1 27268:1 27281:2 27284:1 27341:1 27351:1 27402:1 27443:1 27451:2 27503:1 27518:2 27547:1 27598:1 27625:1 27626:1 27627:1 27633:1 27662:1 27668:1 27718:1 27768:1 27772:1 27791:1 27802:3 27874:2 27883:1 27938:2 27964:2 27978:2 27989:1 28035:1 28047:1 28054:2 28058:1 28063:2 28088:1 28120:1 28123:1 28124:2 28125:1 28149:1 28215:1 28218:1 28239:1 28260:1 28294:1 28376:1 28379:1 28388:1 28391:1 28427:1 28447:3 28457:1 28545:1 28547:1 28577:1 28601:1 28608:1 28627:1 28651:2 28658:1 28660:1 28673:1 28677:1 28716:2 28765:1 28795:1 28811:1 28834:6 28837:1 28839:1 28843:2 28852:1 28854:2 28873:1 28887:1 28911:1 28951:1 28993:1 29001:3 29010:1 29038:1 29057:1 29092:1 29115:1 29158:1 29192:1 29207:1 29221:1 29241:1 29251:1 29301:1 29351:1 29364:2 29367:3 29395:1 29412:1 29555:1 29576:1 29593:2 29601:1 29635:1 29636:1 29690:1 29705:1 29708:1 29727:1 29735:1 29741:1 29796:1 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29999:1 30013:1 30020:1 30055:1 30095:1 30106:1 30108:1 30119:1 30129:1 30185:2 30190:2 30197:2 30213:2 30253:1 30258:1 30262:1 30264:1 30298:2 30303:1 30320:1 11 1:1 10:1 41:1 46:1 57:1 61:2 93:1 94:1 100:1 105:1 147:1 169:1 177:1 186:1 225:3 265:1 278:1 279:2 385:1 387:1 389:1 393:2 483:1 515:2 549:1 562:1 598:1 607:1 627:1 663:1 678:2 723:1 725:1 734:1 755:1 858:1 860:1 876:1 885:1 892:1 896:1 915:2 936:1 953:1 979:1 990:1 1006:1 1021:1 1026:1 1031:4 1042:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1369:1 1382:1 1400:1 1407:1 1421:1 1442:1 1558:3 1598:1 1604:3 1607:5 1614:6 1619:1 1623:1 1627:1 1642:1 1673:1 1674:1 1700:3 1702:2 1723:1 1731:1 1736:3 1744:1 1789:1 1803:1 1805:1 1811:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:2 2008:1 2021:1 2060:1 2066:1 2077:1 2082:1 2103:1 2121:1 2159:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2282:4 2294:2 2310:1 2315:1 2338:1 2339:2 2341:2 2345:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:1 2402:1 2403:1 2411:1 2414:1 2419:2 2426:3 2427:1 2436:2 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2656:1 2665:2 2672:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:2 2828:2 2842:1 2847:1 2854:2 2877:1 2885:1 2891:1 2897:1 2902:1 2989:1 2994:1 3004:2 3015:1 3016:2 3023:2 3054:2 3067:2 3079:1 3089:1 3097:1 3098:1 3105:1 3123:1 3171:1 3181:1 3189:1 3233:1 3244:1 3245:1 3265:2 3337:1 3355:1 3374:1 3382:1 3418:1 3434:1 3471:1 3479:2 3517:2 3593:2 3599:1 3604:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:2 3729:1 3753:1 3768:1 3800:1 3833:2 3835:1 3876:1 3885:3 3901:1 3915:4 3916:1 3930:2 3946:1 3949:1 3964:1 4077:1 4085:1 4111:1 4136:1 4140:1 4150:2 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:2 4344:3 4351:1 4370:1 4436:2 4450:1 4462:1 4477:2 4491:2 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4663:1 4672:3 4688:1 4755:1 4770:1 4788:1 4825:4 4851:1 4856:2 5022:13 5024:1 5058:1 5128:1 5145:1 5169:1 5170:4 5174:1 5181:1 5185:1 5194:1 5196:1 5200:3 5202:2 5213:1 5218:1 5256:2 5284:1 5287:1 5291:1 5303:1 5320:1 5370:1 5433:1 5493:1 5535:2 5558:1 5614:1 5660:2 5670:1 5684:2 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5774:1 5776:1 5803:1 5804:3 5830:1 5857:1 5878:1 5882:1 5907:1 5931:2 5965:1 6050:3 6136:1 6138:1 6146:1 6155:1 6223:1 6229:1 6231:1 6236:2 6276:1 6293:1 6308:1 6364:1 6378:1 6407:1 6423:1 6509:1 6512:1 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:3 6532:1 6533:2 6684:1 6694:1 6722:2 6773:1 6815:1 6821:2 6853:1 6878:1 6901:1 6929:1 6936:1 6941:1 6954:1 6962:2 6994:1 6997:1 7014:1 7044:1 7071:1 7108:1 7122:2 7152:1 7224:1 7263:1 7280:1 7300:1 7314:2 7346:1 7356:1 7370:1 7423:1 7431:1 7444:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:1 7634:1 7648:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7791:1 7792:2 7798:1 7799:2 7801:3 7825:1 7855:1 7856:1 7873:20 7895:2 7897:2 7931:1 7942:1 7968:1 7971:1 8050:1 8057:1 8081:4 8100:1 8101:1 8107:1 8126:2 8200:1 8285:1 8321:1 8340:1 8349:2 8357:9 8392:1 8400:1 8403:1 8502:1 8551:1 8594:1 8624:1 8625:1 8651:2 8653:1 8655:2 8672:1 8725:1 8731:1 8738:1 8741:1 8744:3 8751:1 8809:1 8863:1 8870:1 8882:1 8885:1 8889:1 8916:1 8971:2 8997:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9093:1 9097:2 9212:1 9214:1 9266:1 9275:1 9327:1 9336:1 9361:2 9382:1 9384:1 9400:1 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9493:1 9501:1 9522:1 9555:1 9573:1 9574:1 9594:1 9611:1 9664:1 9666:1 9689:1 9693:1 9711:2 9749:2 9767:1 9782:2 9805:1 9813:1 9824:1 9825:1 9848:1 9866:1 9884:1 9930:1 9936:1 9965:1 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10178:1 10209:1 10212:1 10215:1 10218:1 10244:1 10254:2 10267:1 10278:1 10296:1 10300:1 10309:1 10330:1 10334:1 10337:2 10379:1 10385:1 10388:1 10425:1 10451:2 10511:1 10524:1 10527:2 10551:2 10584:1 10601:1 10653:1 10663:1 10698:1 10727:1 10729:1 10750:1 10761:1 10803:3 10808:2 10832:1 10841:1 10897:1 10904:1 10913:2 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:4 11199:2 11218:1 11220:1 11274:1 11283:1 11306:1 11371:1 11401:1 11437:2 11465:1 11473:1 11548:1 11568:1 11604:1 11614:1 11664:1 11665:1 11679:1 11692:1 11708:1 11716:1 11721:1 11729:1 11731:1 11772:2 11785:1 11793:1 11806:1 11823:2 11829:1 11855:1 11859:1 11890:3 11906:1 11917:4 11918:1 11920:1 11926:5 11930:1 11958:1 11983:2 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12153:1 12156:1 12169:1 12177:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12343:1 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12479:1 12483:1 12517:1 12531:1 12532:1 12537:1 12550:1 12660:1 12680:1 12763:1 12780:1 12810:1 12848:1 12860:1 12899:2 12900:1 12930:2 12939:1 12948:2 12956:1 12993:1 13016:1 13034:1 13038:2 13045:1 13049:1 13054:1 13074:1 13097:1 13143:1 13170:1 13183:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:2 13389:2 13392:1 13393:1 13401:1 13407:2 13420:1 13422:1 13436:2 13444:1 13467:2 13484:1 13494:1 13495:1 13513:1 13517:1 13519:1 13566:2 13587:1 13644:1 13716:3 13742:1 13748:1 13770:1 13780:1 13796:2 13815:1 13823:1 13868:1 13908:1 13948:1 13952:1 13953:2 13959:2 13978:1 13994:1 14002:1 14067:1 14167:2 14175:1 14205:1 14211:1 14238:2 14245:2 14277:1 14361:1 14362:1 14375:2 14382:1 14388:1 14392:1 14409:1 14416:1 14425:1 14426:1 14429:1 14476:1 14550:2 14557:1 14560:1 14569:1 14591:2 14598:1 14611:1 14626:1 14641:1 14675:1 14724:1 14729:2 14745:1 14771:1 14783:1 14794:1 14816:1 14836:1 14872:1 14873:3 14909:1 14911:1 14948:1 14979:2 15017:1 15021:1 15078:1 15110:1 15116:1 15129:2 15142:1 15152:1 15176:1 15189:1 15217:2 15222:1 15253:1 15265:1 15316:1 15317:1 15319:1 15325:1 15329:1 15335:1 15374:1 15459:1 15466:1 15491:1 15519:1 15648:1 15692:5 15746:1 15783:1 15785:1 15857:1 15861:1 15931:1 15942:1 15956:3 15962:1 15964:1 15965:1 15975:1 15976:1 15980:1 15992:1 15993:1 16010:1 16027:1 16034:1 16041:2 16056:1 16084:2 16108:1 16130:1 16137:1 16184:2 16237:1 16276:2 16279:1 16334:1 16358:1 16362:1 16374:2 16412:2 16436:1 16459:1 16461:1 16498:1 16506:2 16525:1 16532:1 16535:3 16536:1 16537:1 16546:1 16548:1 16559:1 16560:1 16585:1 16602:1 16686:1 16861:1 16863:1 16865:1 16875:1 16892:1 16893:2 16926:2 16952:1 16960:1 16971:1 16988:1 17052:1 17057:1 17067:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:1 17213:1 17219:1 17299:1 17316:1 17327:1 17342:2 17370:1 17404:3 17412:1 17434:1 17440:1 17478:1 17521:1 17525:2 17577:1 17649:1 17681:1 17692:1 17703:1 17727:2 17734:1 17753:1 17800:1 17804:1 17814:2 17818:1 17823:1 17851:1 17888:1 17896:1 17897:1 17912:1 17918:1 17943:1 17980:1 17992:1 18043:2 18059:1 18123:1 18128:1 18137:1 18144:1 18152:1 18172:1 18173:2 18188:1 18197:1 18220:1 18226:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18345:1 18346:1 18348:1 18373:1 18429:1 18444:1 18479:1 18525:2 18562:1 18580:1 18605:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:2 18809:1 18845:1 18880:1 18885:1 18934:1 18960:1 18984:1 18994:1 19029:1 19033:1038 19052:2 19058:2 19133:2 19242:1 19262:1 19303:1 19323:1 19333:1 19397:1 19461:2 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19659:2 19705:1 19721:1 19723:1 19726:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:1 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20166:1 20179:1 20193:1 20212:1 20279:1 20289:2 20355:1 20360:1 20399:1 20401:1 20404:1 20420:1 20440:1 20465:1 20474:1 20495:2 20529:1 20569:1 20573:2 20575:1 20600:1 20646:1 20664:1 20671:1 20703:1 20711:1 20722:1 20737:1 20811:1 20863:1 20904:2 20929:1 20947:1 20959:1 20971:1 21033:1 21042:1 21065:1 21073:1 21133:1 21142:1 21145:1 21167:1 21188:1 21190:1 21217:1 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21320:1 21326:1 21346:1 21360:2 21403:1 21408:1 21442:1 21452:1 21453:1 21522:1 21529:1 21535:1 21550:1 21556:1 21599:1 21635:1 21669:1 21685:2 21695:1 21752:1 21769:1 21783:1 21790:4 21793:1 21826:1 21845:1 21850:1 21851:1 21873:1 21905:1 21929:1 21939:1 21948:1 21960:2 21982:1 21987:1 21993:2 22004:1 22021:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22151:1 22170:1 22218:3 22224:1 22227:1 22246:1 22261:2 22266:1 22305:1 22339:1 22353:2 22376:1 22379:2 22386:1 22392:1 22405:2 22425:1 22549:1 22600:1 22608:2 22619:1 22627:2 22637:1 22646:1 22665:1 22668:1 22672:1 22707:1 22739:1 22772:1 22822:1 22829:1 22836:2 22846:1 22855:1 22866:2 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23043:2 23049:1 23163:2 23170:1 23173:1 23187:1 23199:1 23202:1 23218:1 23241:1 23244:1 23302:1 23307:1 23312:1 23315:1 23322:2 23356:1 23368:1 23374:1 23404:1 23497:1 23616:1 23630:2 23647:1 23662:1 23671:3 23677:1 23724:2 23763:1 23770:1 23798:1 23831:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:1 23930:1 23986:1 24019:1 24028:1 24030:1 24087:2 24129:1 24138:1 24158:1 24164:1 24243:1 24254:2 24289:1 24325:1 24332:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24587:1 24594:1 24598:1 24634:1 24652:1 24658:1 24670:1 24671:1 24681:1 24709:1 24725:2 24726:1 24756:1 24759:1 24761:1 24777:1 24795:1 24833:2 24834:1 24837:1 24859:1 24860:2 24894:1 24928:1 24949:1 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:2 25028:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:2 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25194:2 25197:1 25223:1 25224:1 25227:1 25247:1 25326:7 25328:1 25350:3 25364:1 25387:1 25392:1 25397:2 25414:1 25428:1 25492:1 25493:1 25526:1 25531:1 25543:1 25561:1 25583:1 25600:1 25610:1 25611:1 25718:2 25802:1 25828:2 25829:1 25854:5 25869:1 25879:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:2 26054:1 26062:3 26073:1 26076:1 26083:1 26095:1 26106:1 26108:1 26125:2 26128:1 26142:1 26173:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26384:2 26395:1 26410:1 26471:1 26488:1 26500:1 26506:1 26511:1 26527:1 26597:1 26606:1 26622:1 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26696:1 26706:1 26712:1 26729:1 26771:2 26791:1 26817:1 26826:1 26827:1 26851:2 26858:1 26867:1 26869:1 26904:1 26917:1 26942:2 26970:1 26981:1 26992:1 27030:2 27049:1 27052:1 27056:1 27063:1 27158:1 27163:1 27169:1 27210:1 27268:1 27281:2 27284:1 27341:1 27351:1 27402:1 27443:2 27451:2 27503:1 27518:2 27533:1 27547:1 27598:1 27625:1 27626:1 27627:1 27633:1 27662:1 27668:1 27680:1 27718:1 27768:1 27772:1 27791:1 27802:3 27872:2 27874:2 27883:1 27938:2 27964:2 27978:3 27989:1 28035:1 28047:1 28054:2 28058:1 28063:2 28088:1 28100:1 28120:1 28123:1 28124:2 28125:1 28149:1 28215:1 28218:1 28239:1 28260:1 28285:1 28294:1 28376:1 28379:1 28388:1 28391:1 28427:1 28447:3 28457:1 28545:1 28547:1 28577:1 28601:1 28608:1 28627:1 28651:2 28658:1 28660:1 28673:1 28676:1 28677:1 28716:2 28736:1 28765:1 28795:1 28811:1 28834:6 28837:1 28839:2 28843:2 28852:1 28854:2 28873:1 28887:1 28911:1 28923:1 28951:1 28993:1 29001:3 29010:1 29038:2 29057:1 29092:1 29115:1 29127:1 29158:1 29192:1 29207:1 29221:1 29241:1 29251:1 29301:2 29351:1 29364:2 29367:3 29395:1 29412:1 29555:1 29572:1 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:1 29741:1 29796:1 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29999:2 30013:1 30020:1 30055:1 30095:1 30106:1 30108:1 30119:1 30129:1 30165:1 30183:1 30185:2 30190:2 30197:4 30213:2 30253:1 30258:1 30262:1 30264:1 30298:2 30303:1 30320:1 11 1:1 10:1 41:1 46:1 57:1 61:2 93:1 94:1 100:1 105:1 147:1 169:1 177:1 186:1 220:1 225:3 265:1 278:1 279:2 385:1 387:1 389:1 393:2 483:2 515:2 549:1 562:1 598:1 607:1 627:1 663:1 678:2 691:1 723:1 725:1 734:1 755:1 858:1 860:1 876:1 885:1 892:1 896:1 915:2 936:1 953:1 965:1 979:1 990:1 1006:1 1021:1 1026:1 1031:4 1042:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1369:1 1382:1 1400:1 1407:1 1421:1 1442:1 1558:3 1574:1 1598:1 1604:3 1607:5 1614:6 1619:1 1623:1 1627:1 1642:1 1673:1 1674:1 1700:3 1702:2 1723:1 1731:1 1736:3 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:2 2008:1 2021:1 2060:1 2066:1 2077:1 2081:1 2082:1 2103:1 2121:1 2159:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2282:4 2294:2 2310:1 2315:1 2338:1 2339:2 2341:3 2345:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:1 2402:1 2403:1 2411:1 2414:1 2419:2 2426:3 2427:1 2436:2 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2656:1 2665:2 2672:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:2 2828:2 2842:1 2847:1 2854:2 2863:1 2877:1 2885:1 2891:1 2897:1 2902:1 2989:1 2994:1 3003:1 3004:3 3015:1 3016:3 3023:2 3054:2 3067:4 3079:1 3089:1 3097:1 3098:1 3105:1 3123:1 3171:1 3181:1 3189:1 3233:1 3244:1 3245:1 3265:2 3337:1 3355:1 3374:1 3382:1 3418:1 3434:1 3471:1 3479:2 3517:2 3593:2 3599:1 3604:2 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:2 3729:1 3753:1 3768:1 3800:1 3833:2 3835:1 3876:1 3879:1 3885:3 3901:1 3915:4 3916:1 3930:2 3946:1 3949:1 3964:1 4077:1 4085:1 4095:1 4111:1 4136:1 4140:2 4150:2 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:2 4344:3 4351:1 4361:1 4370:1 4436:2 4450:2 4462:1 4477:2 4491:2 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4663:1 4672:3 4688:1 4689:1 4748:1 4755:1 4770:1 4788:1 4825:4 4851:1 4856:2 5022:15 5024:1 5058:1 5128:1 5145:1 5169:1 5170:4 5171:1 5174:1 5177:1 5181:2 5185:1 5194:1 5196:1 5200:3 5202:2 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5343:1 5370:1 5379:2 5433:1 5493:1 5535:2 5558:1 5614:1 5660:2 5670:1 5677:1 5684:2 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5774:1 5776:1 5803:1 5804:3 5830:1 5857:1 5878:1 5882:1 5907:1 5931:2 5965:1 5977:1 6050:3 6136:1 6138:1 6146:1 6155:1 6185:1 6223:1 6229:1 6231:1 6236:2 6276:1 6293:2 6308:1 6364:1 6378:1 6407:1 6408:1 6423:1 6509:1 6512:1 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:3 6532:1 6533:2 6582:1 6684:1 6694:1 6722:2 6726:1 6773:1 6815:1 6821:2 6853:1 6878:1 6901:1 6929:1 6936:2 6941:1 6954:1 6962:2 6994:1 6997:1 7014:1 7044:1 7071:1 7108:1 7122:2 7152:2 7224:1 7263:2 7280:1 7300:2 7314:2 7346:1 7356:1 7370:1 7423:1 7431:1 7444:1 7456:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:1 7634:1 7648:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7791:1 7792:2 7798:2 7799:2 7801:3 7820:1 7825:1 7855:1 7856:1 7873:20 7895:4 7897:4 7931:1 7942:1 7968:1 7971:1 8050:1 8057:1 8078:1 8081:6 8100:1 8101:1 8107:1 8126:3 8139:1 8200:1 8278:1 8285:1 8321:1 8340:1 8349:2 8357:9 8392:1 8400:1 8403:1 8502:1 8551:1 8594:1 8624:1 8625:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8751:1 8785:1 8809:1 8834:1 8863:1 8870:1 8882:1 8885:1 8889:1 8916:1 8971:2 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9093:1 9097:2 9212:1 9214:1 9266:1 9275:1 9327:1 9336:1 9348:1 9361:2 9382:1 9384:1 9400:1 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9493:1 9501:1 9522:1 9555:1 9573:1 9574:1 9594:1 9611:1 9626:1 9664:1 9666:1 9689:1 9693:1 9711:2 9749:2 9767:1 9782:2 9805:1 9813:1 9824:1 9825:1 9848:1 9866:1 9884:1 9930:1 9936:1 9965:3 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10178:1 10209:1 10212:1 10215:1 10218:1 10244:1 10254:2 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:2 10334:1 10337:2 10379:1 10385:1 10388:1 10425:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10584:1 10601:1 10653:1 10663:1 10698:1 10727:1 10729:3 10749:1 10750:1 10761:1 10803:3 10808:2 10832:1 10841:1 10897:1 10904:1 10913:2 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:4 11199:2 11218:1 11220:1 11274:1 11283:1 11306:1 11371:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11664:1 11665:1 11679:1 11692:1 11708:1 11716:1 11721:1 11729:1 11731:1 11772:2 11785:1 11793:1 11806:1 11823:2 11829:1 11855:1 11859:1 11862:2 11890:3 11906:1 11917:6 11918:1 11920:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:1 12153:1 12156:1 12169:1 12177:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12343:1 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12479:1 12483:1 12517:2 12531:2 12532:1 12537:1 12550:1 12660:1 12680:1 12763:1 12780:2 12803:2 12810:1 12848:1 12860:1 12899:2 12900:1 12930:2 12939:1 12948:2 12956:1 12993:1 13016:1 13034:1 13038:2 13045:1 13049:1 13054:1 13074:1 13097:1 13123:1 13143:1 13170:1 13183:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:2 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13420:1 13422:1 13436:2 13444:1 13467:2 13484:1 13494:1 13495:1 13513:1 13517:1 13519:1 13566:2 13587:1 13613:1 13644:1 13650:1 13716:3 13742:1 13748:1 13770:1 13780:1 13796:2 13815:1 13823:1 13868:1 13908:1 13948:1 13952:1 13953:2 13959:2 13978:1 13994:1 14002:1 14067:1 14167:2 14175:1 14205:1 14211:1 14238:2 14245:2 14277:1 14361:1 14362:1 14375:2 14382:1 14388:1 14389:1 14392:1 14409:1 14416:1 14425:1 14426:1 14429:1 14476:1 14550:2 14557:1 14560:1 14569:1 14591:2 14598:1 14611:1 14626:1 14641:1 14675:1 14700:1 14724:1 14729:2 14745:1 14771:1 14783:1 14794:1 14816:2 14836:1 14872:1 14873:3 14909:1 14911:1 14930:1 14948:1 14979:2 15017:2 15021:1 15078:1 15110:1 15116:1 15129:2 15142:1 15152:1 15176:1 15189:1 15217:2 15222:2 15251:2 15253:1 15265:1 15289:2 15316:1 15317:1 15319:1 15325:1 15329:1 15335:1 15374:1 15459:1 15466:1 15491:1 15519:1 15648:1 15692:6 15746:1 15783:1 15785:1 15857:1 15861:1 15931:1 15942:1 15956:3 15962:1 15964:1 15965:1 15975:1 15976:1 15980:1 15992:1 15993:1 16010:1 16027:1 16034:1 16041:2 16056:1 16084:2 16108:1 16130:1 16137:2 16184:2 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16358:1 16362:1 16374:2 16412:2 16436:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:1 16532:1 16535:3 16536:1 16537:1 16546:1 16548:1 16559:1 16560:1 16585:1 16602:1 16686:1 16861:1 16863:1 16865:1 16875:1 16892:1 16893:2 16926:2 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17067:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:1 17213:1 17219:1 17258:2 17299:3 17316:1 17327:1 17342:2 17370:1 17404:4 17412:1 17434:1 17440:2 17478:1 17493:1 17513:1 17521:1 17525:2 17577:1 17649:1 17681:1 17692:1 17703:1 17727:2 17734:1 17753:1 17800:1 17804:2 17814:2 17816:1 17818:1 17823:1 17851:1 17888:1 17896:2 17897:1 17912:1 17918:1 17943:1 17980:1 17989:1 17992:1 18043:2 18059:1 18123:1 18128:1 18137:1 18144:1 18152:1 18172:1 18173:2 18188:1 18197:1 18220:1 18226:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18345:1 18346:1 18348:1 18373:1 18429:1 18444:1 18479:1 18525:2 18562:1 18580:1 18605:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:2 18809:2 18845:1 18880:1 18885:1 18934:1 18960:1 18984:1 18994:1 19029:1 19033:1120 19052:2 19058:2 19133:2 19242:1 19262:1 19303:1 19323:1 19333:1 19377:1 19397:1 19461:2 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19659:2 19705:1 19721:1 19723:1 19726:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:1 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20166:2 20179:1 20193:1 20212:1 20279:1 20289:3 20355:1 20360:1 20399:1 20401:1 20404:1 20418:1 20420:1 20427:1 20440:1 20465:1 20474:1 20495:2 20529:1 20569:1 20573:2 20575:1 20586:1 20600:1 20646:2 20664:1 20671:1 20703:2 20711:1 20722:1 20737:1 20811:1 20863:1 20904:2 20929:1 20947:1 20959:3 20971:1 21033:1 21042:1 21065:1 21073:1 21133:1 21142:1 21145:1 21167:1 21188:2 21190:1 21217:3 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21311:2 21320:2 21326:1 21346:1 21360:2 21403:1 21408:1 21442:1 21452:1 21453:1 21522:1 21529:1 21535:1 21550:1 21556:1 21582:1 21599:1 21635:1 21669:1 21685:2 21695:1 21752:1 21769:1 21783:1 21790:4 21793:1 21826:1 21845:1 21850:1 21851:1 21873:1 21880:1 21905:1 21929:1 21939:1 21948:1 21960:2 21982:1 21987:1 21993:2 22004:2 22021:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22151:1 22170:1 22218:3 22224:1 22227:1 22246:1 22261:2 22266:1 22298:1 22305:1 22339:1 22353:2 22372:1 22376:1 22379:2 22386:1 22392:1 22405:2 22425:1 22549:1 22600:1 22608:2 22619:1 22627:2 22637:1 22646:1 22665:1 22668:1 22672:1 22707:1 22733:1 22739:1 22772:1 22806:1 22822:1 22829:1 22836:2 22846:1 22855:1 22866:2 22872:1 22887:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23043:2 23049:1 23163:2 23170:1 23173:1 23187:1 23196:2 23199:1 23202:1 23213:2 23218:1 23241:1 23244:1 23275:1 23302:1 23307:1 23312:1 23315:2 23322:2 23356:1 23368:1 23374:1 23404:1 23497:1 23616:1 23630:2 23647:1 23652:1 23662:1 23671:3 23677:1 23724:2 23763:1 23770:1 23798:1 23831:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:1 23930:1 23981:1 23986:1 24019:1 24028:1 24030:1 24087:2 24129:1 24138:1 24158:1 24164:1 24243:1 24254:2 24289:1 24325:1 24332:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24587:1 24594:1 24598:1 24634:1 24652:1 24658:1 24670:1 24671:1 24681:1 24709:1 24725:2 24726:1 24756:1 24759:1 24761:1 24762:1 24777:1 24795:1 24812:1 24833:2 24834:1 24837:1 24859:1 24860:2 24894:1 24928:1 24949:1 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:3 25028:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:2 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25194:2 25197:1 25207:1 25223:1 25224:1 25227:1 25247:1 25326:7 25328:1 25350:4 25364:1 25387:1 25392:1 25397:2 25414:1 25428:1 25492:1 25493:1 25526:1 25531:1 25543:1 25561:1 25583:1 25600:1 25610:1 25611:1 25718:2 25766:1 25802:1 25828:2 25829:1 25854:5 25869:1 25879:1 25888:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:2 26054:1 26062:3 26073:1 26076:1 26083:1 26095:1 26106:1 26108:1 26116:1 26125:2 26128:1 26142:1 26173:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26382:1 26384:2 26395:1 26410:1 26418:1 26471:1 26488:1 26500:1 26506:1 26511:1 26527:1 26593:1 26597:1 26606:1 26622:1 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26706:1 26712:1 26729:1 26771:3 26791:1 26817:1 26826:1 26827:1 26851:2 26858:1 26867:1 26869:1 26904:1 26917:1 26942:2 26970:1 26981:1 26992:1 27030:3 27049:1 27052:1 27056:1 27063:1 27149:2 27158:1 27163:1 27169:1 27210:1 27268:1 27281:2 27284:1 27341:1 27351:1 27402:1 27443:2 27451:2 27503:1 27518:2 27533:1 27547:1 27598:1 27625:1 27626:1 27627:1 27633:1 27662:1 27668:1 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27872:2 27874:2 27883:1 27938:2 27964:2 27978:3 27989:1 28035:1 28047:1 28054:3 28058:1 28063:2 28088:1 28100:1 28120:1 28123:1 28124:2 28125:1 28149:1 28215:1 28218:1 28239:1 28260:1 28285:1 28294:1 28318:1 28376:1 28379:1 28388:1 28391:1 28427:1 28447:3 28457:1 28545:1 28547:1 28577:1 28589:1 28601:2 28608:1 28627:1 28651:2 28658:1 28660:1 28673:1 28676:1 28677:1 28716:2 28722:1 28736:1 28765:1 28795:1 28811:1 28834:10 28835:1 28837:1 28839:2 28843:2 28852:1 28854:2 28873:3 28887:1 28911:1 28923:1 28951:1 28993:1 29001:3 29010:1 29038:2 29057:1 29092:1 29115:1 29127:1 29158:1 29192:1 29207:1 29221:1 29241:1 29251:1 29301:2 29351:1 29364:2 29367:3 29395:1 29412:1 29413:1 29555:1 29572:1 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:1 29741:1 29796:1 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29999:2 30013:1 30020:1 30055:1 30095:1 30106:1 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30190:2 30197:4 30208:1 30213:2 30253:1 30258:1 30262:1 30264:1 30298:2 30303:1 30320:1 11 1:1 10:1 41:1 46:1 57:1 61:2 93:1 94:1 100:1 105:1 147:1 169:1 177:1 183:1 186:1 220:1 225:3 265:1 278:1 279:2 385:1 387:1 389:1 393:2 475:1 483:2 488:1 515:2 549:1 562:1 598:1 607:1 621:1 627:1 640:1 663:1 678:2 691:1 723:1 725:1 734:1 755:1 858:1 860:1 876:1 885:1 892:1 896:1 915:2 936:1 953:1 965:1 975:1 979:1 983:1 990:1 1006:1 1010:1 1021:1 1026:1 1031:4 1042:2 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1369:1 1382:1 1400:1 1407:1 1421:1 1442:1 1558:3 1574:1 1598:1 1604:4 1607:6 1614:7 1619:1 1623:1 1627:1 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:4 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1824:1 1863:1 1895:1 1901:2 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:3 2008:1 2021:1 2060:1 2066:1 2077:1 2081:1 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2282:4 2294:2 2298:1 2310:1 2315:1 2336:1 2337:1 2338:1 2339:2 2341:3 2345:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:2 2402:1 2403:2 2411:1 2414:1 2419:2 2421:1 2426:4 2427:1 2436:2 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2611:1 2656:1 2665:2 2672:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:3 2828:2 2842:1 2847:1 2854:2 2855:1 2863:2 2877:1 2885:1 2891:1 2897:1 2902:1 2911:1 2989:1 2994:1 3003:1 3004:3 3015:1 3016:4 3023:2 3054:2 3067:4 3079:1 3089:1 3097:1 3098:1 3105:1 3123:1 3171:1 3179:1 3181:1 3189:1 3233:1 3244:1 3245:1 3265:2 3304:1 3337:1 3355:1 3360:1 3374:1 3382:1 3418:1 3434:1 3471:1 3479:2 3517:2 3525:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:2 3729:1 3753:1 3768:1 3800:1 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3885:3 3901:1 3915:4 3916:1 3930:2 3946:1 3949:1 3964:1 4077:1 4085:1 4095:1 4111:1 4136:1 4140:2 4150:2 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:3 4344:3 4351:1 4361:1 4370:1 4405:1 4436:2 4450:2 4462:1 4477:2 4491:2 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4663:1 4672:3 4688:1 4689:1 4699:1 4748:1 4755:1 4770:1 4788:1 4825:4 4851:1 4856:2 5022:18 5024:1 5058:1 5128:1 5145:1 5169:1 5170:4 5171:1 5174:1 5177:1 5181:2 5185:1 5194:1 5196:1 5200:3 5202:2 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5343:1 5370:1 5379:2 5433:1 5475:1 5493:1 5532:1 5535:2 5558:1 5604:1 5614:1 5660:2 5670:1 5677:1 5684:2 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:3 5830:1 5855:1 5857:1 5878:1 5882:1 5907:1 5931:3 5965:1 5977:1 6050:3 6136:1 6138:1 6146:1 6155:1 6185:1 6223:1 6229:1 6231:1 6236:2 6276:1 6293:2 6308:1 6364:1 6378:1 6407:1 6408:1 6423:1 6509:1 6512:2 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:3 6532:1 6533:3 6582:1 6684:1 6694:1 6722:2 6726:1 6773:1 6815:1 6821:2 6853:1 6874:1 6878:1 6901:1 6929:1 6936:2 6941:1 6954:1 6962:2 6994:1 6997:1 7014:1 7044:1 7071:1 7102:1 7108:1 7122:2 7152:2 7224:1 7238:1 7259:1 7263:2 7280:1 7300:3 7314:2 7346:1 7356:1 7370:1 7381:1 7423:2 7431:1 7444:1 7456:1 7498:1 7533:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:1 7634:1 7648:1 7665:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7791:1 7792:3 7798:2 7799:2 7801:3 7810:1 7820:1 7825:1 7855:1 7856:1 7873:23 7895:4 7897:4 7931:1 7942:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8100:1 8101:1 8107:1 8126:4 8139:1 8195:1 8200:1 8278:1 8285:1 8321:1 8340:1 8349:2 8357:10 8392:1 8400:1 8403:1 8418:1 8502:1 8551:1 8594:1 8624:1 8625:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8751:1 8785:2 8809:1 8834:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8916:1 8971:2 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9085:1 9093:1 9097:3 9212:1 9214:1 9266:1 9275:1 9276:1 9327:1 9336:1 9348:1 9361:2 9382:1 9384:1 9400:1 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:1 9493:1 9501:1 9522:1 9555:1 9573:1 9574:1 9583:1 9594:1 9611:1 9626:1 9662:1 9664:1 9666:1 9689:1 9693:1 9711:2 9749:2 9767:1 9782:2 9805:1 9813:1 9824:1 9825:1 9848:1 9866:1 9884:1 9930:1 9936:1 9965:3 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10178:1 10209:1 10212:1 10215:1 10218:1 10244:1 10245:1 10254:2 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:2 10334:1 10337:2 10379:1 10385:1 10388:1 10425:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10584:1 10601:1 10627:1 10653:1 10663:1 10698:1 10727:1 10729:3 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10832:1 10841:1 10897:2 10904:1 10913:2 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:4 11199:2 11218:1 11220:1 11274:1 11283:1 11306:1 11368:1 11371:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11650:1 11664:1 11665:2 11676:1 11679:1 11692:1 11708:1 11716:1 11721:1 11729:1 11731:1 11772:2 11785:1 11793:1 11806:1 11823:2 11829:1 11854:1 11855:1 11859:1 11862:2 11890:4 11897:1 11906:1 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:1 12153:1 12156:1 12169:1 12177:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12343:1 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12479:1 12483:1 12517:2 12531:2 12532:1 12537:1 12550:1 12660:1 12680:1 12763:1 12780:2 12803:2 12810:1 12848:1 12860:1 12899:2 12900:1 12930:3 12939:1 12948:2 12956:1 12993:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13074:1 13075:1 13097:1 13123:1 13143:1 13170:1 13183:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:3 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13420:1 13422:1 13436:2 13444:1 13467:2 13484:1 13494:1 13495:1 13513:1 13517:1 13519:1 13559:1 13566:2 13569:1 13587:1 13613:1 13644:1 13650:1 13694:1 13716:4 13742:1 13748:1 13770:1 13780:1 13796:2 13810:1 13815:2 13823:1 13868:1 13908:1 13938:1 13948:1 13952:1 13953:2 13959:2 13978:1 13994:1 14002:1 14067:1 14074:1 14167:3 14171:1 14175:1 14205:1 14211:1 14238:2 14245:2 14277:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:1 14389:1 14392:1 14409:1 14416:1 14425:1 14426:1 14429:1 14476:1 14550:2 14557:1 14560:1 14569:1 14591:2 14598:1 14611:1 14626:1 14641:1 14675:1 14700:1 14724:1 14729:2 14745:1 14762:1 14771:1 14783:1 14794:1 14816:2 14836:1 14872:1 14873:3 14909:1 14911:1 14930:1 14948:1 14979:3 15017:2 15021:1 15078:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:1 15189:1 15217:3 15222:2 15224:1 15251:2 15253:1 15265:2 15289:2 15316:1 15317:1 15319:1 15325:1 15329:1 15335:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15648:1 15692:7 15746:1 15783:1 15785:1 15857:1 15861:1 15931:1 15942:1 15956:3 15962:1 15964:1 15965:1 15975:1 15976:1 15980:1 15992:1 15993:1 16010:1 16027:1 16033:1 16034:1 16041:2 16056:1 16084:2 16108:1 16130:1 16133:1 16137:2 16184:2 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16358:1 16362:1 16374:2 16412:2 16436:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:1 16532:1 16535:3 16536:1 16537:1 16546:1 16548:2 16559:1 16560:1 16570:1 16585:1 16602:1 16686:2 16785:1 16861:1 16863:1 16865:1 16875:1 16892:1 16893:2 16926:2 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17067:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:1 17213:1 17219:1 17238:1 17258:2 17299:3 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17434:1 17440:2 17478:1 17493:1 17513:1 17521:1 17525:2 17577:1 17649:1 17681:1 17692:1 17703:1 17711:1 17727:3 17734:1 17753:1 17800:1 17804:2 17814:2 17816:1 17818:1 17823:1 17851:1 17888:1 17896:2 17897:1 17912:1 17918:1 17943:1 17980:1 17989:1 17992:1 18043:2 18059:1 18123:1 18128:1 18137:1 18144:1 18152:1 18154:1 18172:1 18173:2 18188:1 18197:1 18220:1 18226:1 18232:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18345:1 18346:1 18348:1 18373:1 18429:1 18444:1 18455:1 18479:1 18525:2 18562:1 18580:1 18605:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:3 18809:2 18810:1 18845:1 18880:1 18885:1 18934:1 18938:1 18960:1 18984:1 18994:1 19029:1 19033:1245 19052:2 19058:2 19133:2 19228:1 19242:1 19243:1 19262:1 19303:1 19323:1 19333:1 19377:1 19397:1 19461:2 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19659:2 19705:1 19721:1 19723:1 19726:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:2 19864:1 19865:1 19871:1 19881:1 19895:1 19916:2 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20112:1 20166:2 20179:1 20193:1 20212:1 20279:1 20289:3 20355:1 20360:1 20399:1 20401:1 20404:1 20418:1 20420:1 20427:1 20440:1 20465:1 20474:2 20495:2 20529:1 20569:1 20573:2 20575:1 20586:1 20600:1 20646:2 20664:1 20671:1 20703:2 20711:1 20722:1 20737:1 20811:1 20845:1 20853:1 20863:1 20904:2 20929:1 20947:1 20959:3 20971:1 21033:1 21042:1 21065:1 21073:1 21133:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21311:2 21320:2 21326:1 21346:1 21360:2 21403:1 21408:1 21438:1 21442:1 21452:1 21453:1 21517:1 21522:1 21529:1 21535:1 21550:1 21556:1 21572:1 21582:1 21599:1 21635:1 21669:1 21685:2 21695:1 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21826:1 21838:1 21845:1 21850:1 21851:1 21863:1 21873:1 21880:1 21905:1 21929:1 21939:1 21948:1 21960:2 21982:1 21987:1 21993:2 22004:2 22021:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22144:1 22151:1 22170:1 22218:3 22224:1 22227:1 22246:1 22261:3 22266:1 22298:1 22305:1 22339:1 22353:2 22372:1 22376:1 22379:2 22381:1 22386:1 22392:1 22405:2 22425:1 22476:1 22491:1 22549:1 22552:1 22600:1 22608:3 22619:1 22627:2 22637:1 22646:1 22665:1 22668:1 22672:2 22707:1 22733:1 22739:1 22772:1 22806:1 22822:1 22829:1 22836:2 22846:1 22855:1 22866:2 22872:1 22887:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23035:1 23043:2 23049:1 23071:1 23163:3 23170:1 23173:1 23187:1 23196:2 23199:1 23202:1 23213:2 23218:1 23241:2 23244:1 23275:1 23302:2 23307:1 23312:1 23315:2 23322:2 23356:1 23368:1 23374:1 23404:1 23497:1 23616:1 23630:2 23647:1 23652:1 23662:1 23671:4 23677:1 23724:2 23763:1 23770:1 23798:1 23831:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:2 23930:1 23951:1 23981:1 23986:1 24004:1 24019:1 24028:1 24030:1 24074:1 24087:2 24129:1 24138:1 24158:1 24164:1 24243:1 24254:2 24266:1 24289:1 24325:1 24332:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24587:1 24594:1 24598:1 24611:1 24634:1 24652:1 24658:1 24670:1 24671:1 24681:1 24709:1 24725:2 24726:1 24756:1 24759:1 24761:1 24762:1 24777:1 24795:1 24812:1 24833:2 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24969:1 24973:1 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:3 25028:1 25030:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:2 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25194:2 25197:1 25207:1 25223:1 25224:1 25227:1 25247:1 25326:8 25328:1 25350:5 25364:1 25387:1 25392:1 25397:2 25414:1 25428:1 25432:1 25492:1 25493:1 25526:1 25531:1 25543:1 25561:1 25583:1 25600:1 25610:1 25611:1 25718:2 25766:1 25802:1 25828:2 25829:1 25854:5 25869:1 25879:1 25888:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:2 26054:1 26062:3 26073:1 26076:1 26083:1 26095:1 26106:1 26108:1 26116:1 26125:2 26128:1 26142:1 26173:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26382:1 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26527:1 26593:1 26597:1 26606:1 26622:1 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26706:1 26712:1 26729:1 26771:3 26791:1 26817:1 26826:1 26827:1 26851:3 26858:1 26867:1 26869:1 26899:1 26904:1 26917:1 26942:2 26970:1 26981:2 26992:1 27006:1 27030:3 27049:1 27052:1 27056:1 27063:1 27149:2 27158:1 27163:1 27169:1 27210:1 27268:1 27281:2 27284:1 27341:1 27351:1 27402:1 27437:1 27443:2 27451:2 27464:1 27503:1 27518:2 27533:1 27547:1 27598:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:1 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27872:2 27874:2 27883:1 27938:2 27964:2 27978:3 27989:1 28035:1 28047:1 28054:3 28058:1 28063:2 28066:1 28088:1 28100:1 28120:1 28123:1 28124:2 28125:1 28149:1 28215:1 28218:1 28239:1 28260:1 28285:1 28294:1 28318:1 28376:1 28379:1 28388:1 28391:1 28405:1 28427:1 28447:3 28457:1 28545:1 28547:1 28577:1 28580:1 28589:1 28601:2 28608:1 28627:1 28648:1 28651:2 28658:1 28660:1 28673:2 28676:1 28677:1 28716:2 28722:1 28736:1 28755:1 28765:1 28795:1 28811:1 28834:10 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:3 28887:2 28911:1 28923:2 28951:1 28993:1 29001:3 29010:1 29015:1 29038:2 29057:1 29092:1 29095:1 29115:1 29127:1 29158:1 29192:1 29207:1 29221:1 29241:1 29251:1 29301:2 29351:1 29364:2 29367:3 29395:2 29412:1 29413:1 29421:1 29552:1 29555:1 29572:1 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:1 29741:1 29796:2 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29995:1 29999:2 30013:1 30020:1 30055:1 30077:1 30095:1 30106:1 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30190:2 30197:4 30208:2 30213:2 30253:1 30258:1 30262:1 30264:1 30298:2 30303:1 30305:1 30320:1 11 1:1 8:1 10:1 41:1 46:1 57:1 61:2 69:1 93:1 94:1 100:1 105:1 147:1 169:1 177:1 183:1 186:1 187:1 220:1 225:3 265:1 278:2 279:2 385:1 387:1 389:1 393:2 475:1 483:2 488:1 515:2 549:1 562:1 598:1 607:1 621:1 627:1 640:1 663:1 678:2 691:1 723:2 725:1 726:1 734:1 755:1 858:1 860:1 876:1 885:1 888:1 892:1 896:1 915:2 936:1 953:1 959:1 965:1 975:1 979:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1026:1 1028:1 1031:4 1042:2 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1369:1 1382:1 1400:1 1407:1 1421:1 1442:1 1522:1 1558:3 1574:1 1598:1 1604:4 1607:6 1614:8 1619:1 1623:1 1627:1 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:4 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:3 2008:1 2021:1 2060:1 2066:1 2077:1 2081:1 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2282:4 2294:3 2298:1 2310:1 2315:1 2336:1 2337:1 2338:1 2339:3 2341:3 2345:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:2 2402:1 2403:2 2411:1 2414:1 2419:2 2421:1 2426:4 2427:1 2436:2 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2611:1 2624:1 2656:1 2665:2 2672:1 2686:1 2703:1 2712:1 2780:1 2795:1 2803:1 2817:3 2828:2 2842:1 2847:1 2854:2 2855:1 2863:2 2877:1 2885:1 2891:1 2897:1 2902:1 2911:1 2938:1 2989:2 2994:1 3003:1 3004:3 3015:1 3016:5 3023:2 3054:3 3067:4 3079:1 3089:1 3097:1 3098:1 3105:1 3123:1 3171:1 3179:1 3181:1 3189:1 3223:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3337:1 3355:1 3360:1 3374:2 3382:1 3418:1 3434:1 3471:1 3479:2 3517:2 3525:1 3590:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:3 3729:1 3753:1 3768:1 3800:1 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3884:1 3885:4 3901:1 3915:4 3916:1 3927:1 3930:2 3946:1 3949:1 3964:2 4077:1 4085:1 4095:1 4111:1 4136:1 4140:2 4150:2 4169:1 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:4 4344:3 4351:1 4361:1 4370:2 4405:1 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4663:1 4672:4 4688:1 4689:1 4699:1 4748:1 4755:1 4770:1 4788:1 4809:1 4825:4 4851:1 4856:3 5022:19 5024:1 5058:1 5128:1 5145:1 5169:1 5170:4 5171:1 5174:1 5177:2 5181:2 5185:1 5194:1 5196:1 5200:3 5202:2 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5343:1 5370:1 5379:2 5433:1 5475:1 5493:1 5532:2 5535:3 5558:1 5604:1 5614:1 5660:2 5670:1 5677:1 5684:3 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:4 5830:1 5855:1 5857:1 5878:1 5882:1 5907:1 5931:3 5965:1 5977:1 6050:3 6054:1 6136:1 6138:1 6146:1 6155:1 6185:1 6223:1 6229:1 6231:1 6236:4 6276:1 6293:2 6308:1 6364:1 6378:1 6407:1 6408:1 6423:1 6505:1 6509:1 6512:2 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:3 6532:1 6533:3 6582:1 6610:1 6684:1 6694:1 6698:1 6722:2 6726:1 6773:1 6815:1 6821:2 6853:1 6874:1 6878:1 6901:1 6929:1 6936:2 6941:1 6954:1 6962:2 6994:1 6997:1 7014:1 7044:1 7071:1 7102:1 7108:1 7122:3 7152:2 7184:1 7224:1 7238:1 7259:1 7263:2 7280:1 7300:3 7314:2 7346:1 7356:2 7370:1 7381:1 7423:2 7431:1 7444:1 7454:1 7456:1 7498:1 7533:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:1 7634:1 7648:1 7665:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7780:1 7791:1 7792:4 7798:2 7799:3 7801:3 7810:1 7820:1 7825:1 7855:1 7856:1 7873:23 7895:4 7897:4 7931:1 7942:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8100:1 8101:1 8107:1 8126:4 8139:1 8195:1 8200:1 8278:1 8285:1 8321:1 8340:1 8349:2 8354:1 8357:11 8392:1 8400:1 8403:1 8418:1 8502:1 8551:1 8564:1 8594:1 8624:1 8625:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8751:1 8785:2 8809:1 8834:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8971:2 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9085:1 9093:1 9097:3 9212:1 9214:1 9266:1 9275:1 9276:1 9327:1 9336:1 9348:1 9361:2 9382:1 9384:1 9400:1 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:1 9493:1 9501:1 9522:1 9536:1 9555:1 9573:1 9574:1 9583:1 9594:1 9604:1 9611:1 9626:1 9641:1 9662:1 9664:1 9666:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9848:1 9866:1 9884:1 9904:1 9930:1 9931:1 9936:1 9965:3 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10168:1 10178:1 10196:1 10209:1 10212:1 10215:1 10218:2 10244:1 10245:1 10254:3 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:2 10334:1 10337:2 10379:1 10385:1 10388:1 10396:1 10425:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10584:1 10601:1 10604:1 10627:1 10653:1 10663:1 10698:1 10727:1 10729:3 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10832:1 10841:1 10897:2 10904:1 10913:3 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11117:1 11163:1 11167:1 11175:1 11185:4 11199:2 11218:1 11220:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11638:1 11650:1 11664:1 11665:2 11676:1 11679:1 11692:1 11708:1 11716:1 11721:1 11729:1 11731:1 11755:1 11772:3 11781:1 11785:1 11793:1 11806:1 11823:2 11829:1 11854:1 11855:1 11859:1 11862:2 11890:4 11897:1 11901:1 11906:1 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:1 12153:1 12156:1 12169:2 12177:1 12191:2 12227:1 12239:1 12258:2 12301:1 12306:2 12343:1 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12470:1 12479:1 12483:2 12488:1 12517:2 12531:2 12532:1 12537:1 12550:1 12660:1 12680:1 12763:1 12780:2 12803:2 12810:1 12848:1 12860:1 12899:2 12900:1 12930:3 12934:1 12939:2 12948:2 12956:1 12963:1 12993:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13060:1 13074:1 13075:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:4 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13420:1 13422:1 13424:1 13436:3 13444:1 13467:2 13484:1 13494:1 13495:1 13513:1 13517:1 13519:1 13559:1 13566:2 13569:1 13587:1 13613:1 13644:1 13650:1 13694:1 13716:4 13742:1 13748:1 13770:1 13780:1 13796:2 13810:1 13815:2 13823:1 13868:1 13908:1 13938:1 13948:1 13952:1 13953:2 13959:2 13978:1 13994:1 14002:1 14067:1 14074:1 14167:4 14171:1 14175:1 14205:1 14211:1 14238:2 14245:2 14277:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:1 14389:1 14392:1 14409:1 14416:1 14425:2 14426:1 14429:1 14476:1 14550:2 14557:1 14560:1 14569:1 14591:2 14598:1 14611:1 14626:1 14641:1 14675:1 14700:1 14724:1 14729:2 14745:1 14762:1 14771:1 14783:1 14786:1 14794:1 14816:2 14836:1 14872:1 14873:3 14909:1 14911:1 14930:1 14940:1 14948:1 14967:1 14979:4 15017:2 15021:1 15074:8 15078:1 15080:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:1 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:2 15289:2 15316:1 15317:1 15319:1 15325:1 15329:1 15335:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15648:1 15692:7 15746:1 15768:1 15783:1 15785:1 15857:1 15861:1 15931:1 15942:1 15956:3 15962:1 15964:1 15965:1 15975:1 15976:1 15980:1 15992:1 15993:1 16010:1 16027:1 16033:1 16034:1 16041:2 16056:1 16084:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:2 16184:2 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16358:1 16362:1 16374:2 16412:2 16436:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:2 16532:1 16535:3 16536:1 16537:1 16546:1 16548:2 16559:2 16560:1 16570:1 16585:1 16602:1 16686:2 16785:1 16861:1 16863:1 16865:1 16870:1 16875:1 16892:1 16893:2 16926:2 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17063:1 17067:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:1 17213:1 17219:1 17238:1 17258:2 17299:3 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17434:1 17440:2 17478:1 17493:1 17513:1 17521:1 17525:2 17577:1 17649:1 17681:1 17692:1 17703:1 17711:1 17727:3 17734:1 17753:1 17800:1 17804:2 17814:2 17816:1 17818:1 17823:1 17851:1 17888:2 17896:2 17897:1 17912:1 17918:1 17943:1 17980:1 17989:1 17992:1 18043:2 18059:1 18123:1 18128:1 18137:1 18144:1 18152:1 18154:1 18172:1 18173:2 18188:1 18197:1 18220:1 18226:1 18232:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18345:2 18346:1 18348:1 18373:1 18429:1 18444:1 18455:1 18479:1 18525:2 18562:1 18580:1 18605:1 18648:1 18657:1 18665:1 18699:1 18744:3 18800:3 18809:2 18810:1 18845:1 18880:1 18885:1 18926:1 18934:1 18938:1 18960:1 18970:1 18984:1 18994:1 19029:1 19033:1329 19052:3 19058:2 19133:2 19228:1 19242:1 19243:1 19262:1 19303:1 19323:1 19326:1 19333:1 19377:1 19394:1 19397:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19659:2 19705:1 19721:1 19723:1 19726:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:2 19864:1 19865:1 19871:1 19881:1 19895:1 19916:3 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20112:1 20166:2 20179:1 20193:1 20212:1 20250:1 20279:1 20289:3 20348:1 20355:1 20360:1 20399:1 20401:1 20404:1 20418:1 20420:1 20424:1 20427:1 20440:1 20465:1 20474:2 20495:2 20529:1 20569:1 20573:2 20575:1 20586:1 20600:1 20646:2 20664:1 20671:1 20680:1 20703:2 20711:1 20722:1 20737:1 20811:1 20845:1 20853:1 20863:1 20904:2 20929:1 20947:1 20959:3 20971:1 21033:1 21042:1 21065:1 21073:1 21133:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21311:2 21320:2 21326:1 21340:1 21346:1 21360:2 21403:1 21408:1 21438:1 21442:1 21452:1 21453:1 21517:1 21522:1 21529:1 21535:1 21550:1 21556:1 21572:1 21582:1 21599:1 21635:1 21669:1 21685:2 21695:1 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21826:1 21838:1 21845:1 21850:1 21851:1 21863:1 21873:1 21880:1 21905:1 21929:1 21939:1 21948:1 21960:2 21982:1 21987:1 21993:2 22004:2 22021:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22144:1 22151:1 22170:1 22218:4 22224:1 22227:1 22246:1 22261:3 22266:2 22298:1 22305:1 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22386:1 22392:1 22405:2 22425:1 22476:1 22491:1 22495:1 22545:1 22549:1 22552:1 22600:1 22608:3 22619:1 22627:2 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22707:1 22733:1 22739:1 22772:1 22806:2 22822:1 22829:1 22836:2 22846:1 22855:1 22866:2 22872:1 22887:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23035:1 23043:2 23049:1 23071:1 23163:4 23170:1 23173:1 23187:1 23196:2 23199:1 23202:1 23213:2 23218:1 23241:2 23244:1 23275:1 23302:2 23307:1 23312:1 23315:2 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23497:1 23526:1 23542:1 23616:1 23630:2 23632:1 23647:1 23652:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:2 23930:1 23951:1 23981:1 23986:1 24004:1 24019:1 24028:1 24030:1 24037:1 24038:1 24074:1 24087:2 24129:1 24130:1 24138:1 24158:1 24164:1 24243:1 24254:2 24266:1 24289:1 24320:1 24325:1 24332:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24587:1 24594:1 24598:1 24611:1 24634:1 24652:1 24658:1 24670:1 24671:1 24681:1 24709:1 24725:2 24726:1 24756:1 24759:1 24761:1 24762:1 24777:1 24795:1 24812:1 24833:2 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24969:1 24973:2 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:3 25028:1 25030:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:2 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25192:1 25194:2 25197:1 25207:1 25220:1 25223:2 25224:1 25227:1 25247:1 25326:9 25328:1 25350:5 25364:1 25387:1 25392:1 25397:2 25414:1 25428:1 25432:1 25492:1 25493:1 25526:1 25531:1 25543:1 25561:1 25583:1 25600:1 25610:1 25611:1 25718:2 25766:1 25802:1 25828:3 25829:1 25854:5 25869:1 25879:1 25888:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:2 26054:1 26062:3 26067:1 26073:1 26076:1 26083:1 26095:1 26106:1 26108:1 26116:1 26125:2 26128:1 26142:1 26173:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26382:1 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26527:2 26593:1 26597:1 26606:1 26622:1 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26706:1 26712:1 26729:1 26771:3 26791:1 26817:1 26826:1 26827:1 26851:3 26858:1 26867:1 26869:1 26899:1 26904:1 26917:1 26942:2 26970:1 26981:2 26992:1 27006:1 27030:3 27049:1 27052:1 27056:1 27063:1 27149:2 27158:1 27163:1 27169:1 27210:1 27268:1 27281:2 27284:1 27341:1 27351:1 27402:1 27437:1 27443:2 27451:2 27464:1 27503:1 27518:2 27533:1 27547:1 27598:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:1 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27872:2 27874:3 27883:1 27927:1 27938:2 27964:2 27978:3 27989:1 28035:1 28047:1 28054:3 28058:1 28063:2 28066:1 28088:1 28100:2 28120:1 28123:1 28124:2 28125:1 28149:1 28215:1 28218:1 28239:1 28260:1 28285:1 28294:1 28318:1 28376:2 28379:1 28388:1 28391:1 28405:1 28427:1 28447:4 28457:1 28545:1 28547:1 28577:1 28580:1 28589:1 28601:2 28608:1 28627:1 28648:1 28651:3 28658:1 28660:1 28673:2 28676:1 28677:1 28716:2 28722:1 28736:1 28755:1 28765:1 28795:1 28811:1 28834:10 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:3 28887:2 28911:1 28923:2 28951:1 28993:1 29001:3 29010:1 29015:1 29038:3 29057:1 29092:1 29095:1 29115:1 29127:1 29158:1 29192:1 29207:1 29221:1 29241:1 29251:1 29301:2 29351:1 29364:2 29367:3 29395:2 29412:1 29413:1 29421:1 29552:1 29555:1 29572:2 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:1 29741:1 29796:2 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29995:1 29999:2 30013:1 30020:1 30055:1 30077:1 30095:1 30106:1 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30189:1 30190:2 30197:4 30208:2 30209:1 30213:2 30253:1 30258:1 30261:1 30262:1 30264:1 30298:2 30303:1 30305:1 30320:1 11 1:1 8:1 10:1 34:1 41:1 46:1 57:1 61:2 69:1 80:1 93:1 94:1 100:1 105:1 147:1 169:1 177:1 183:1 186:1 187:1 220:1 225:3 265:1 266:1 278:2 279:2 303:1 385:1 387:1 389:1 393:2 475:1 483:2 488:1 494:1 515:2 549:1 562:2 598:1 607:1 621:1 627:1 640:1 663:1 678:2 691:1 723:2 725:1 726:1 734:1 755:1 858:1 860:1 876:1 885:1 888:1 892:1 896:1 915:2 936:2 953:1 959:1 965:1 975:1 977:1 979:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1042:2 1047:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1400:1 1407:1 1421:1 1442:1 1448:1 1522:1 1558:3 1574:1 1598:1 1604:4 1607:7 1614:8 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:4 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1822:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:3 2008:1 2021:1 2060:1 2066:1 2077:1 2081:1 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2282:4 2294:3 2298:1 2310:1 2315:1 2336:1 2337:1 2338:1 2339:3 2341:3 2345:1 2361:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:2 2402:1 2403:2 2411:1 2414:1 2415:1 2419:2 2421:1 2426:4 2427:1 2429:1 2436:2 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2611:1 2624:1 2656:1 2665:2 2672:1 2686:1 2703:1 2712:1 2780:1 2785:1 2795:1 2803:1 2817:3 2828:3 2842:1 2847:1 2854:2 2855:1 2863:2 2877:1 2885:1 2891:1 2897:1 2902:1 2911:1 2938:1 2989:2 2994:1 3003:1 3004:4 3015:1 3016:5 3023:2 3054:3 3064:1 3067:4 3073:1 3079:1 3087:1 3089:1 3097:1 3098:1 3105:1 3123:1 3148:1 3171:1 3179:1 3181:1 3189:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3337:1 3355:1 3360:1 3374:2 3382:1 3418:1 3434:1 3471:1 3479:2 3517:2 3525:1 3590:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:3 3729:1 3753:1 3768:1 3800:1 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3884:1 3885:4 3901:1 3915:4 3916:1 3927:1 3930:2 3946:1 3949:1 3964:2 4072:1 4077:1 4085:1 4089:1 4095:1 4111:1 4136:1 4140:2 4150:2 4169:1 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:4 4344:3 4351:1 4361:1 4370:2 4405:1 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4627:1 4635:1 4663:1 4672:4 4688:1 4689:1 4691:1 4699:1 4748:1 4755:1 4770:1 4788:1 4809:1 4825:4 4851:1 4856:3 5022:21 5024:1 5058:1 5128:1 5145:1 5169:1 5170:4 5171:2 5174:1 5177:2 5181:2 5185:1 5194:1 5196:1 5200:3 5202:2 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5343:1 5370:1 5379:2 5433:1 5475:1 5493:1 5532:3 5535:3 5558:1 5604:1 5614:1 5660:2 5670:1 5677:1 5684:3 5690:1 5714:1 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:4 5830:1 5855:1 5857:1 5876:1 5878:1 5882:1 5907:1 5931:3 5965:1 5977:1 6050:3 6054:1 6136:1 6138:1 6146:1 6155:1 6185:1 6223:1 6229:1 6231:1 6236:4 6276:1 6293:3 6308:1 6364:1 6378:1 6407:1 6408:1 6423:1 6505:1 6509:1 6512:2 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:4 6532:1 6533:3 6566:1 6582:1 6609:1 6610:1 6673:1 6684:1 6694:1 6698:1 6722:2 6726:1 6773:1 6815:1 6821:2 6825:1 6853:1 6874:1 6878:1 6901:1 6929:1 6936:2 6941:1 6954:1 6962:2 6994:1 6997:1 7014:1 7044:1 7071:1 7102:1 7108:1 7122:3 7152:2 7167:1 7184:1 7224:1 7238:1 7259:1 7263:2 7280:1 7300:3 7314:2 7346:1 7356:2 7370:1 7381:1 7423:2 7431:1 7444:1 7454:1 7456:1 7498:1 7533:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:2 7634:1 7648:1 7665:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7780:1 7791:1 7792:4 7798:2 7799:3 7801:3 7810:1 7820:1 7825:1 7855:1 7856:1 7873:25 7895:5 7897:4 7931:1 7942:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:4 8139:1 8195:1 8200:1 8278:1 8285:1 8321:1 8340:1 8349:2 8354:1 8357:11 8392:1 8400:1 8403:1 8418:1 8419:1 8502:1 8551:1 8564:1 8594:1 8624:2 8625:1 8629:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8751:1 8756:1 8785:2 8809:1 8834:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8971:2 8990:1 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9085:1 9093:1 9097:3 9151:1 9212:1 9214:1 9266:1 9275:1 9276:1 9327:1 9334:1 9336:1 9348:1 9361:2 9382:1 9384:1 9393:1 9400:1 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:1 9493:1 9501:1 9522:1 9536:1 9555:1 9573:1 9574:1 9578:1 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9641:1 9662:1 9664:1 9666:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9848:1 9866:1 9884:1 9894:1 9904:1 9930:1 9931:1 9936:1 9965:3 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10168:1 10178:1 10196:1 10209:1 10212:1 10215:1 10218:2 10244:1 10245:1 10254:4 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:3 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10396:1 10425:1 10429:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10584:1 10601:1 10604:1 10627:1 10653:1 10663:1 10698:1 10703:1 10727:1 10729:3 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10832:1 10841:1 10897:2 10904:1 10913:3 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11080:1 11117:1 11163:1 11167:1 11175:1 11185:4 11199:2 11218:1 11220:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11638:1 11650:1 11664:1 11665:2 11676:1 11679:1 11692:1 11708:1 11716:1 11721:1 11729:1 11731:1 11745:1 11755:1 11772:3 11781:1 11785:1 11793:1 11806:1 11823:2 11829:1 11832:1 11854:1 11855:1 11859:1 11862:2 11890:4 11897:1 11901:1 11906:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:2 12153:1 12156:1 12169:2 12177:1 12191:2 12224:1 12227:1 12239:1 12258:2 12301:1 12306:2 12343:1 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12470:1 12479:1 12483:2 12488:1 12517:2 12531:2 12532:1 12537:1 12550:1 12660:1 12680:1 12744:1 12763:1 12780:2 12799:1 12801:1 12803:2 12810:1 12848:1 12860:1 12899:2 12900:1 12930:3 12934:1 12939:2 12948:2 12956:1 12963:1 12993:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13060:1 13074:1 13075:1 13094:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:4 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13412:1 13420:1 13422:1 13424:1 13436:3 13444:1 13467:2 13484:1 13494:1 13495:1 13513:1 13517:1 13519:1 13535:1 13559:1 13566:2 13569:1 13587:1 13613:1 13644:1 13650:1 13694:1 13716:4 13742:1 13748:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:2 13823:1 13868:1 13908:1 13938:1 13948:1 13952:1 13953:2 13959:2 13968:1 13978:1 13994:1 14002:1 14067:1 14074:1 14167:4 14171:1 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14277:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:1 14389:1 14392:2 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14476:1 14550:2 14557:1 14560:1 14569:1 14579:1 14591:2 14598:1 14611:1 14626:1 14635:1 14641:1 14675:1 14700:1 14724:1 14729:2 14745:1 14762:1 14771:1 14783:1 14786:1 14794:1 14816:2 14836:2 14872:1 14873:3 14909:1 14911:1 14930:1 14940:1 14948:1 14967:1 14979:4 15017:2 15021:1 15074:8 15078:1 15080:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:1 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:2 15274:1 15289:2 15316:1 15317:1 15319:1 15325:1 15329:1 15335:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15648:1 15692:7 15746:1 15768:1 15783:1 15785:1 15807:1 15815:1 15857:1 15861:1 15931:1 15942:1 15956:3 15962:1 15964:1 15965:1 15975:1 15976:1 15980:1 15992:1 15993:1 16010:1 16027:1 16033:1 16034:1 16041:2 16056:1 16084:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:2 16184:2 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16358:1 16362:1 16374:2 16412:2 16436:2 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:2 16532:1 16535:3 16536:1 16537:1 16546:1 16548:2 16559:2 16560:1 16570:1 16585:1 16602:1 16686:2 16785:1 16801:1 16861:1 16863:1 16865:1 16870:1 16875:1 16892:1 16893:2 16926:2 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:1 17213:1 17219:1 17238:1 17258:2 17284:1 17299:3 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17434:1 17440:2 17478:1 17493:1 17513:1 17521:1 17525:2 17577:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17727:3 17734:1 17753:1 17800:1 17804:2 17814:3 17816:1 17818:1 17823:1 17839:1 17851:1 17888:2 17896:2 17897:1 17912:1 17918:1 17943:1 17950:1 17980:1 17989:1 17992:1 18043:2 18059:1 18123:2 18128:1 18137:1 18144:1 18152:1 18154:1 18172:1 18173:2 18188:1 18197:1 18220:1 18226:1 18232:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18345:2 18346:1 18348:1 18373:1 18429:1 18444:1 18455:1 18479:1 18498:1 18525:2 18562:1 18580:1 18605:1 18648:1 18657:1 18665:1 18699:2 18744:3 18800:4 18809:2 18810:1 18845:1 18880:1 18885:1 18926:1 18934:1 18938:1 18960:1 18970:2 18984:1 18994:1 19004:1 19029:1 19033:1510 19052:3 19058:2 19133:2 19228:1 19242:1 19243:1 19262:1 19303:1 19323:1 19326:1 19333:1 19377:1 19394:1 19397:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19632:1 19659:2 19705:1 19721:1 19723:1 19726:1 19734:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:2 19864:1 19865:1 19869:1 19871:1 19881:1 19895:1 19916:3 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20112:1 20166:2 20179:1 20193:1 20212:1 20250:1 20279:1 20289:3 20317:1 20348:1 20355:1 20360:1 20370:1 20399:1 20401:1 20404:1 20418:1 20420:2 20424:1 20427:1 20440:1 20465:1 20474:2 20495:2 20529:2 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20646:2 20664:1 20671:1 20680:1 20703:2 20711:1 20722:1 20737:1 20811:1 20845:1 20853:1 20863:1 20904:2 20929:1 20947:1 20959:3 20971:1 20979:1 21033:1 21042:1 21065:1 21073:1 21133:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21311:2 21320:2 21326:1 21340:1 21346:1 21360:2 21403:1 21408:1 21438:1 21442:1 21452:1 21453:1 21457:1 21509:1 21517:1 21522:1 21529:1 21535:1 21550:1 21556:1 21572:1 21582:1 21599:1 21633:1 21635:1 21669:1 21685:2 21695:1 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21818:1 21826:1 21838:1 21845:1 21850:1 21851:1 21863:1 21873:1 21880:1 21905:1 21929:1 21939:1 21948:1 21960:2 21982:1 21987:2 21993:2 22004:2 22021:1 22060:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22144:1 22151:1 22170:1 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:1 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:1 22386:1 22392:1 22405:2 22425:1 22476:1 22491:1 22495:1 22545:1 22549:1 22552:1 22600:1 22608:3 22619:1 22627:2 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22707:1 22733:1 22739:1 22772:1 22806:2 22822:1 22829:1 22836:2 22846:1 22855:2 22866:2 22872:2 22887:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23035:1 23043:2 23045:1 23049:1 23071:1 23110:1 23163:4 23170:1 23173:1 23187:1 23196:2 23199:1 23202:1 23213:2 23218:1 23241:2 23244:1 23275:1 23302:2 23307:1 23312:1 23315:2 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23497:1 23526:1 23542:1 23616:1 23630:2 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:2 23930:1 23931:1 23951:2 23978:1 23981:1 23986:1 24004:1 24019:1 24027:1 24028:1 24030:2 24037:1 24038:1 24074:1 24087:2 24129:1 24130:1 24138:1 24158:1 24164:1 24243:1 24254:2 24266:1 24289:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24549:1 24587:1 24594:1 24598:1 24611:1 24634:1 24652:2 24658:1 24670:1 24671:1 24681:2 24709:1 24725:2 24726:1 24756:1 24759:1 24761:1 24762:1 24777:1 24795:1 24812:1 24833:2 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24969:2 24973:2 24997:1 25004:1 25008:1 25016:1 25023:1 25025:1 25026:4 25028:2 25030:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:3 25079:2 25121:1 25145:1 25146:1 25164:1 25190:1 25192:1 25194:2 25197:1 25207:1 25220:1 25223:2 25224:1 25227:1 25247:1 25285:1 25326:9 25328:1 25350:5 25364:1 25387:1 25392:1 25397:2 25414:1 25428:1 25432:1 25485:1 25492:1 25493:1 25526:1 25531:1 25543:1 25561:1 25583:1 25595:1 25600:1 25610:1 25611:1 25718:2 25766:1 25794:1 25802:1 25828:3 25829:1 25854:5 25869:1 25879:1 25888:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:2 26054:1 26062:3 26067:1 26073:1 26076:2 26083:1 26095:1 26106:1 26108:1 26116:1 26125:2 26128:1 26142:1 26150:1 26173:1 26192:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26382:1 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26527:2 26593:1 26597:1 26606:1 26622:1 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26704:1 26706:1 26712:1 26729:1 26771:3 26791:1 26817:1 26826:1 26827:1 26835:1 26851:4 26858:1 26867:1 26869:1 26899:1 26904:1 26917:1 26942:2 26970:1 26981:2 26992:1 27006:1 27030:3 27049:1 27052:1 27056:1 27063:1 27149:2 27158:1 27163:1 27169:1 27210:1 27268:1 27281:2 27284:1 27341:1 27344:1 27351:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:1 27547:1 27598:1 27605:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:1 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27872:2 27874:3 27883:1 27927:1 27938:2 27964:2 27978:3 27989:1 28035:1 28047:1 28054:3 28058:1 28063:2 28066:1 28088:1 28100:2 28110:1 28120:1 28123:1 28124:2 28125:1 28136:1 28149:1 28215:1 28218:1 28239:1 28260:1 28285:1 28294:2 28318:1 28376:2 28379:1 28388:1 28391:1 28405:1 28427:1 28447:5 28457:1 28528:1 28545:1 28547:1 28577:1 28580:1 28589:1 28601:2 28604:1 28608:1 28627:1 28628:1 28648:1 28651:3 28658:1 28660:1 28673:2 28676:1 28677:2 28716:2 28722:1 28726:1 28736:1 28755:1 28765:1 28795:1 28811:1 28834:10 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:3 28887:2 28911:1 28923:2 28951:1 28993:1 29001:3 29010:1 29015:1 29038:3 29057:1 29092:1 29095:1 29115:1 29127:1 29158:1 29192:1 29207:1 29221:1 29241:1 29251:1 29260:1 29281:1 29301:2 29351:1 29364:2 29367:3 29395:2 29409:1 29412:1 29413:1 29421:1 29552:1 29555:1 29572:2 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:2 29741:1 29796:2 29804:1 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29995:1 29999:2 30013:1 30020:1 30055:1 30077:1 30095:1 30106:2 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30189:1 30190:2 30197:4 30208:3 30209:1 30213:2 30253:1 30258:1 30261:1 30262:1 30264:1 30298:2 30303:1 30305:1 30320:1 11 1:1 8:1 10:1 34:1 41:1 46:1 57:1 61:2 69:1 80:1 93:1 94:1 100:1 105:1 147:1 169:1 177:1 183:1 186:1 187:1 220:1 225:3 265:1 266:1 278:2 279:2 303:1 385:1 387:2 389:1 393:2 439:1 475:1 483:3 488:1 494:1 515:2 549:1 562:2 598:1 607:1 621:1 627:1 640:1 663:1 678:2 691:2 723:2 725:1 726:1 734:1 737:1 755:1 858:1 860:1 876:1 885:1 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:1 977:1 979:2 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1042:2 1047:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1229:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1391:1 1400:1 1407:1 1421:1 1442:1 1448:1 1522:1 1558:3 1574:2 1598:1 1604:4 1607:7 1614:8 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:4 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1822:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:3 2008:1 2021:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2336:2 2337:1 2338:1 2339:3 2341:3 2345:1 2361:1 2363:2 2364:2 2367:1 2370:1 2396:3 2398:1 2401:2 2402:1 2403:2 2411:1 2414:1 2415:1 2419:2 2421:1 2426:4 2427:1 2429:1 2436:2 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2611:1 2624:1 2656:1 2665:2 2672:1 2686:1 2703:1 2712:1 2780:1 2785:1 2795:1 2803:1 2817:3 2828:3 2842:1 2847:1 2854:2 2855:1 2863:2 2877:1 2885:1 2891:2 2897:1 2902:1 2911:1 2938:1 2989:2 2994:1 3003:1 3004:4 3011:1 3015:1 3016:5 3023:2 3054:4 3063:1 3064:1 3067:5 3073:1 3079:1 3087:1 3089:1 3097:1 3098:1 3105:1 3123:1 3148:1 3171:1 3179:1 3181:1 3189:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3337:1 3355:1 3360:1 3374:2 3382:1 3418:1 3434:1 3471:1 3479:2 3513:1 3517:2 3525:1 3590:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:3 3729:1 3753:1 3768:1 3800:2 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3884:1 3885:4 3901:1 3912:1 3915:4 3916:1 3927:1 3930:2 3946:1 3949:1 3964:2 4072:1 4077:1 4085:1 4089:1 4095:1 4111:1 4132:1 4136:1 4140:2 4150:2 4169:1 4171:1 4175:1 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:4 4344:3 4351:1 4361:1 4370:3 4405:2 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4627:1 4635:1 4663:1 4672:4 4688:1 4689:1 4691:1 4699:1 4748:1 4755:1 4770:1 4788:2 4809:1 4825:4 4851:1 4856:3 5022:23 5024:2 5058:1 5128:1 5145:1 5146:1 5169:1 5170:4 5171:2 5174:1 5177:2 5181:2 5185:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5343:1 5370:1 5379:2 5433:1 5475:1 5493:1 5532:3 5535:3 5558:1 5604:1 5614:1 5646:1 5660:2 5670:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:4 5807:1 5815:1 5830:2 5855:1 5857:1 5876:1 5878:1 5882:1 5907:2 5931:3 5965:1 5977:1 6050:3 6054:1 6136:1 6138:1 6146:1 6155:1 6185:1 6223:1 6229:1 6231:1 6236:4 6276:1 6293:3 6308:1 6364:1 6378:1 6407:1 6408:1 6423:1 6450:1 6501:1 6504:1 6505:1 6509:1 6510:1 6512:2 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:4 6532:1 6533:3 6566:1 6582:1 6609:1 6610:1 6673:1 6684:1 6694:1 6698:1 6722:2 6726:1 6773:1 6815:1 6821:2 6825:1 6853:1 6874:1 6878:1 6901:1 6908:1 6929:1 6936:2 6941:1 6954:1 6962:2 6977:1 6994:1 6997:1 7000:1 7014:1 7044:1 7071:1 7102:1 7108:1 7122:3 7152:2 7167:1 7184:1 7224:1 7238:1 7259:1 7263:2 7280:1 7300:3 7314:2 7346:1 7356:2 7370:1 7381:1 7423:2 7431:1 7444:1 7454:1 7456:1 7498:1 7526:1 7533:1 7535:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:2 7634:1 7648:1 7665:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7780:1 7791:1 7792:4 7798:3 7799:3 7801:3 7810:1 7820:1 7825:1 7855:1 7856:1 7873:25 7895:5 7897:5 7931:1 7942:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8278:1 8285:1 8321:1 8340:1 8349:2 8354:1 8357:11 8392:1 8400:1 8403:1 8418:1 8419:1 8502:1 8551:1 8564:1 8594:1 8624:2 8625:1 8629:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8751:1 8756:1 8785:2 8809:1 8834:1 8838:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8971:2 8990:1 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9212:1 9214:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9348:1 9361:2 9382:1 9384:1 9393:1 9400:1 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:1 9493:1 9500:1 9501:2 9522:1 9536:1 9555:1 9573:1 9574:1 9578:1 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9637:1 9641:1 9662:1 9664:1 9666:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9848:1 9866:1 9884:1 9894:1 9904:1 9930:1 9931:1 9936:1 9965:5 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:1 10127:2 10134:1 10151:1 10158:1 10165:1 10168:1 10178:1 10196:1 10209:1 10212:1 10215:1 10218:2 10244:1 10245:1 10254:4 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:3 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10396:1 10425:1 10429:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10584:1 10601:1 10604:1 10627:1 10653:2 10663:1 10698:2 10703:1 10727:1 10729:3 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10832:1 10841:1 10897:2 10904:1 10913:3 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11080:1 11117:1 11163:1 11167:1 11175:1 11185:4 11199:2 11212:1 11218:1 11220:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11638:1 11650:1 11664:1 11665:3 11676:1 11679:1 11692:1 11708:1 11716:1 11721:2 11729:1 11731:1 11745:1 11755:1 11772:3 11781:1 11785:1 11793:1 11797:1 11806:1 11823:2 11829:1 11832:1 11841:1 11854:1 11855:1 11859:1 11862:2 11890:6 11897:1 11901:1 11906:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:2 12153:1 12156:1 12169:2 12177:1 12191:2 12224:1 12227:1 12239:1 12258:2 12301:1 12306:2 12343:2 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12470:1 12479:1 12483:2 12488:1 12517:3 12531:2 12532:1 12537:1 12550:1 12644:1 12660:1 12680:1 12720:1 12744:1 12763:1 12780:2 12799:1 12801:1 12803:2 12810:1 12848:1 12860:1 12899:2 12900:1 12930:3 12934:1 12939:2 12948:2 12956:1 12963:1 12993:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13060:1 13074:1 13075:1 13094:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13210:1 13238:1 13246:1 13302:1 13325:1 13337:4 13352:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13412:1 13420:1 13422:1 13424:1 13436:4 13444:1 13467:2 13484:2 13494:1 13495:1 13513:1 13517:1 13519:1 13535:1 13559:1 13566:2 13569:1 13587:1 13612:1 13613:1 13644:1 13650:1 13694:1 13716:4 13742:1 13748:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:2 13823:1 13868:1 13908:1 13938:1 13948:1 13952:1 13953:2 13959:2 13968:1 13978:1 13994:1 14002:1 14067:1 14074:1 14167:4 14171:1 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14277:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:1 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:1 14476:1 14550:2 14557:1 14560:1 14569:1 14579:1 14591:2 14593:1 14598:1 14611:1 14626:1 14635:1 14641:1 14675:2 14700:1 14724:1 14729:2 14745:1 14762:1 14771:1 14783:1 14786:1 14794:1 14816:2 14836:2 14872:1 14873:3 14909:1 14911:1 14930:1 14940:1 14948:1 14967:1 14979:4 15017:2 15021:1 15074:8 15078:1 15080:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:1 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:2 15274:1 15289:2 15316:2 15317:1 15319:1 15325:1 15329:1 15335:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15545:1 15570:1 15594:1 15637:1 15648:1 15692:7 15746:1 15768:1 15783:1 15785:1 15807:1 15815:1 15857:1 15861:1 15931:1 15942:1 15956:4 15962:1 15964:1 15965:1 15975:1 15976:2 15979:1 15980:1 15992:1 15993:1 16010:1 16027:1 16033:1 16034:1 16041:2 16056:2 16084:2 16106:1 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:2 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16358:1 16362:1 16374:2 16412:2 16436:2 16449:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:2 16532:1 16535:3 16536:1 16537:1 16546:1 16548:2 16559:2 16560:1 16570:1 16585:1 16602:1 16686:2 16778:1 16785:1 16801:1 16861:1 16863:1 16865:1 16870:1 16875:1 16892:1 16893:2 16926:2 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:2 17213:1 17219:1 17238:1 17258:2 17276:1 17284:1 17299:4 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17433:1 17434:1 17440:3 17478:1 17493:1 17513:1 17518:1 17521:1 17525:2 17576:1 17577:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:1 17727:3 17734:1 17753:1 17761:1 17800:1 17804:2 17814:3 17816:1 17818:1 17823:1 17839:1 17851:1 17888:2 17896:2 17897:1 17912:1 17918:1 17943:1 17950:1 17980:1 17989:1 17992:1 18043:2 18059:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:2 18188:1 18197:1 18220:1 18226:1 18232:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18345:2 18346:1 18348:1 18373:1 18429:1 18431:1 18444:1 18455:1 18479:1 18498:1 18525:2 18562:1 18580:1 18605:1 18648:1 18657:1 18665:1 18699:2 18744:3 18800:5 18809:2 18810:1 18845:1 18880:1 18885:1 18926:1 18934:1 18938:1 18960:1 18970:2 18984:1 18994:1 19004:1 19029:1 19033:1613 19052:3 19058:2 19062:1 19072:1 19133:2 19228:1 19242:1 19243:1 19262:1 19303:1 19323:1 19326:1 19333:1 19352:1 19377:1 19394:1 19397:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19614:1 19632:1 19659:3 19705:1 19721:1 19723:1 19726:1 19734:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:3 19864:1 19865:1 19869:1 19871:1 19881:1 19895:1 19916:3 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20112:1 20136:1 20166:2 20179:1 20193:1 20212:1 20250:1 20279:1 20289:3 20317:1 20332:1 20348:1 20355:2 20360:1 20370:1 20399:1 20401:1 20404:1 20418:1 20420:2 20424:1 20427:1 20440:1 20465:1 20474:2 20495:2 20529:2 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20646:2 20664:1 20671:1 20680:1 20703:3 20711:1 20722:1 20737:1 20806:1 20811:1 20845:1 20853:1 20863:1 20904:3 20929:1 20947:1 20959:4 20971:1 20979:1 21033:1 21042:1 21065:1 21067:1 21073:1 21133:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21311:2 21320:2 21326:1 21340:1 21346:1 21360:2 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21509:1 21517:1 21522:1 21529:1 21535:2 21550:1 21556:1 21572:1 21582:1 21599:1 21633:1 21635:1 21669:1 21685:2 21695:1 21715:1 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:1 21845:1 21850:1 21851:1 21863:1 21873:1 21880:1 21881:1 21905:1 21929:1 21939:2 21948:1 21960:2 21982:1 21987:2 21993:2 22004:2 22021:1 22060:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22144:1 22151:1 22170:1 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:1 22386:1 22392:1 22405:2 22425:1 22476:1 22491:1 22495:1 22545:1 22549:1 22552:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22707:1 22733:1 22739:1 22772:1 22806:2 22822:1 22829:1 22836:2 22846:1 22855:2 22866:2 22872:2 22887:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23035:1 23043:2 23045:1 23049:1 23071:1 23110:1 23163:4 23170:1 23173:1 23187:1 23196:2 23199:1 23202:2 23213:2 23218:1 23241:2 23244:1 23275:1 23302:3 23307:1 23312:1 23315:2 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:1 23514:1 23526:1 23542:1 23616:2 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:2 23930:1 23931:1 23951:2 23978:1 23981:1 23986:1 24004:1 24019:1 24027:1 24028:1 24030:2 24037:1 24038:1 24074:1 24087:2 24129:1 24130:1 24138:1 24158:1 24164:1 24243:1 24254:2 24266:1 24289:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24549:1 24587:1 24594:1 24598:1 24611:1 24634:2 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24725:2 24726:1 24756:1 24759:1 24761:1 24762:1 24777:1 24795:1 24812:1 24833:3 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24969:2 24973:2 24997:1 25004:1 25008:1 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:3 25079:2 25086:1 25092:1 25121:1 25145:1 25146:1 25164:1 25189:1 25190:1 25192:1 25194:2 25197:1 25207:1 25220:1 25223:2 25224:1 25227:1 25247:1 25285:1 25326:9 25328:1 25350:5 25364:1 25387:1 25392:1 25397:2 25414:1 25428:1 25432:2 25485:1 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25583:1 25595:1 25600:1 25610:1 25611:1 25718:2 25766:1 25794:1 25802:1 25828:3 25829:1 25854:5 25869:1 25879:1 25888:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:1 26076:2 26083:1 26095:1 26106:1 26108:1 26116:1 26125:2 26128:1 26142:1 26150:1 26173:1 26192:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26527:2 26593:1 26597:1 26606:1 26622:2 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26704:1 26706:1 26712:1 26729:1 26771:4 26791:1 26817:1 26826:1 26827:1 26835:1 26851:5 26858:1 26862:1 26867:1 26869:1 26899:1 26904:1 26917:1 26942:2 26970:1 26981:2 26992:1 27006:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27122:1 27149:2 27158:1 27163:1 27167:1 27169:1 27210:1 27268:2 27281:2 27284:1 27341:1 27344:1 27351:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:1 27547:1 27598:1 27605:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:2 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27859:1 27872:2 27874:3 27883:1 27927:1 27938:2 27964:2 27978:3 27989:1 28035:1 28047:1 28054:3 28058:1 28063:2 28066:1 28088:1 28100:3 28110:1 28120:1 28123:1 28124:2 28125:1 28136:1 28149:1 28215:1 28218:2 28239:2 28260:1 28285:1 28294:2 28300:1 28318:1 28376:2 28379:1 28388:1 28391:1 28405:1 28427:1 28447:5 28457:1 28528:1 28545:1 28547:1 28577:1 28580:1 28589:1 28601:2 28604:1 28608:1 28627:1 28628:1 28648:1 28651:3 28658:1 28660:1 28673:2 28676:1 28677:3 28685:1 28716:3 28722:1 28726:1 28736:1 28755:1 28765:1 28795:1 28808:1 28811:1 28834:10 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:5 28887:3 28911:1 28923:2 28951:1 28993:1 29001:3 29010:1 29015:1 29038:3 29057:1 29092:1 29095:1 29115:1 29127:1 29158:1 29192:1 29203:1 29207:1 29221:1 29241:1 29251:1 29260:1 29281:1 29301:2 29351:1 29364:2 29367:3 29395:2 29409:1 29412:1 29413:1 29421:1 29537:1 29552:1 29555:1 29572:3 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29796:2 29804:1 29806:1 29861:1 29888:1 29901:1 29951:1 29965:1 29995:2 29999:2 30013:1 30020:1 30055:1 30077:1 30095:2 30106:3 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30189:1 30190:2 30197:4 30208:3 30209:1 30213:3 30253:1 30258:1 30261:1 30262:1 30264:1 30298:2 30303:1 30305:1 30320:1 11 1:1 8:1 10:1 34:1 41:1 46:1 57:1 61:2 69:1 80:1 93:1 94:1 100:1 105:1 129:1 147:1 158:1 169:1 177:1 182:1 183:1 186:1 187:1 220:1 225:3 265:1 266:1 278:2 279:2 303:1 385:1 387:2 389:1 393:2 439:1 475:1 483:3 488:1 494:1 515:2 549:1 562:2 598:1 607:1 621:1 627:1 640:1 663:1 678:2 691:2 723:2 725:1 726:1 730:1 734:1 737:1 755:1 858:1 860:1 876:1 885:1 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:1 977:1 979:2 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1042:2 1047:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1229:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1391:1 1400:2 1407:1 1421:1 1442:1 1448:1 1522:1 1548:1 1558:3 1574:2 1579:1 1598:1 1604:4 1607:7 1614:8 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1822:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:1 1948:1 1949:1 1979:1 1980:1 1982:1 1993:4 2008:1 2021:1 2035:1 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2336:2 2337:1 2338:1 2339:3 2341:3 2345:1 2361:1 2363:2 2364:3 2367:1 2370:1 2395:1 2396:3 2398:1 2401:2 2402:1 2403:2 2411:1 2414:1 2415:1 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2611:1 2624:1 2656:1 2665:2 2672:1 2686:1 2703:1 2712:1 2764:1 2780:1 2785:1 2794:1 2795:1 2803:1 2817:3 2828:3 2842:1 2847:2 2854:2 2855:1 2863:2 2877:1 2885:1 2891:2 2897:1 2902:1 2911:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:4 3011:1 3015:1 3016:5 3023:2 3054:4 3063:2 3064:1 3067:5 3073:1 3079:1 3087:1 3089:1 3097:1 3098:1 3105:1 3123:1 3125:1 3148:2 3171:1 3179:1 3181:1 3189:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3337:1 3355:1 3360:1 3374:2 3382:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3513:1 3517:2 3525:1 3590:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:3 3729:1 3753:1 3768:1 3800:2 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3884:1 3885:5 3901:1 3912:1 3915:4 3916:1 3920:1 3927:1 3930:2 3946:1 3949:1 3964:2 4072:1 4077:1 4085:1 4089:1 4095:1 4111:1 4132:1 4136:1 4140:3 4150:2 4169:1 4171:1 4175:2 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:4 4344:4 4351:1 4361:1 4370:3 4405:2 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4521:1 4533:1 4542:1 4565:1 4574:1 4585:1 4596:1 4627:1 4635:1 4663:1 4672:4 4688:1 4689:1 4691:1 4699:1 4748:1 4755:1 4770:1 4788:2 4809:1 4825:4 4851:1 4856:3 5022:25 5024:2 5058:1 5128:1 5145:1 5146:1 5169:1 5170:4 5171:2 5174:1 5177:2 5181:3 5185:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:2 5433:1 5475:1 5493:1 5532:3 5535:3 5552:1 5558:1 5604:1 5614:1 5642:1 5645:1 5646:1 5660:2 5670:1 5674:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5733:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:4 5807:1 5815:1 5830:2 5843:1 5855:1 5857:1 5876:1 5878:1 5882:1 5907:2 5931:3 5933:1 5965:1 5977:1 6050:3 6054:1 6136:1 6138:1 6146:1 6155:1 6182:1 6185:2 6223:1 6229:1 6231:1 6236:4 6276:1 6293:3 6308:1 6364:1 6378:1 6407:1 6408:1 6423:1 6450:1 6501:1 6504:1 6505:1 6509:1 6510:1 6512:2 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:4 6532:1 6533:3 6566:1 6582:1 6609:1 6610:1 6673:1 6684:1 6694:1 6698:1 6718:1 6722:2 6726:1 6773:1 6815:1 6821:2 6825:1 6853:1 6867:1 6874:1 6878:1 6901:1 6908:1 6929:1 6936:2 6941:1 6954:1 6962:2 6977:1 6994:1 6997:1 7000:1 7014:1 7044:1 7071:1 7102:1 7108:1 7122:3 7152:2 7167:1 7184:1 7188:1 7215:1 7224:1 7238:1 7259:1 7263:2 7280:1 7294:1 7300:4 7314:2 7346:1 7356:2 7370:1 7381:1 7423:2 7431:1 7444:1 7454:1 7456:1 7498:1 7526:1 7533:1 7535:1 7542:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7665:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7780:1 7791:1 7792:4 7798:3 7799:3 7801:3 7810:1 7820:1 7825:1 7855:1 7856:1 7873:27 7895:6 7897:5 7931:1 7942:1 7954:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8278:1 8285:1 8306:1 8321:1 8340:1 8349:2 8354:1 8357:12 8392:1 8400:1 8403:1 8418:1 8419:1 8502:1 8515:1 8551:1 8564:1 8586:1 8594:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8745:1 8751:1 8756:1 8785:2 8809:1 8834:1 8838:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8955:1 8971:2 8990:1 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9212:1 9214:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9348:1 9361:2 9382:1 9384:1 9393:1 9400:2 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:1 9493:1 9500:1 9501:2 9522:1 9536:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9637:1 9641:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9848:1 9866:1 9884:1 9894:1 9904:1 9930:1 9931:1 9936:1 9965:5 9986:1 9988:1 9989:1 10012:1 10028:1 10052:1 10065:1 10077:1 10117:2 10127:2 10134:1 10151:1 10158:2 10165:1 10168:1 10178:1 10196:1 10209:1 10212:1 10215:1 10218:2 10222:1 10244:1 10245:1 10254:4 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:3 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10396:1 10425:1 10429:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10557:1 10584:1 10601:1 10604:1 10627:1 10653:2 10663:1 10698:2 10703:1 10727:1 10729:4 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10832:1 10841:1 10897:2 10904:1 10913:3 10916:1 10924:2 10942:1 10980:1 11027:1 11036:2 11080:1 11117:1 11163:1 11167:1 11175:2 11177:1 11185:4 11199:2 11212:1 11218:1 11220:1 11244:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11638:1 11650:1 11664:1 11665:3 11676:1 11679:1 11692:1 11708:1 11716:1 11721:2 11722:1 11729:1 11731:1 11745:1 11755:1 11772:3 11781:1 11785:1 11793:1 11797:1 11806:1 11813:1 11823:2 11829:1 11832:1 11841:1 11854:2 11855:1 11859:2 11862:2 11880:1 11890:6 11897:1 11901:2 11906:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:2 12153:1 12156:1 12169:2 12177:1 12191:2 12224:1 12227:1 12239:1 12258:2 12301:1 12306:2 12315:1 12343:2 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12440:1 12470:1 12479:1 12483:2 12488:1 12517:3 12531:2 12532:1 12537:1 12550:1 12644:1 12660:1 12680:1 12720:1 12744:1 12763:1 12780:2 12799:1 12801:1 12803:2 12810:1 12848:1 12860:1 12877:1 12899:2 12900:1 12930:3 12934:1 12939:2 12948:2 12956:1 12960:1 12963:1 12978:1 12993:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13302:1 13325:1 13337:4 13352:1 13370:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13412:1 13420:1 13422:1 13424:1 13436:4 13444:1 13467:2 13484:2 13494:1 13495:1 13513:1 13517:1 13519:1 13535:1 13559:1 13566:2 13569:1 13587:1 13612:1 13613:1 13644:1 13650:1 13652:1 13694:1 13716:4 13742:1 13748:1 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:2 13823:1 13868:1 13908:1 13938:1 13948:1 13952:1 13953:2 13959:2 13968:1 13978:1 13994:1 14002:1 14067:1 14074:1 14094:1 14167:4 14171:1 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14277:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:1 14476:1 14550:2 14557:1 14560:1 14566:1 14569:1 14579:1 14591:2 14593:1 14598:1 14611:1 14626:1 14635:1 14641:1 14675:2 14700:1 14724:1 14729:2 14745:1 14755:1 14762:1 14763:1 14771:1 14783:1 14786:1 14794:1 14816:2 14836:2 14872:1 14873:3 14909:1 14911:1 14930:1 14940:1 14948:2 14967:1 14979:4 15017:2 15021:1 15074:8 15078:1 15080:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:1 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:2 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15545:1 15570:1 15594:1 15637:1 15648:1 15692:8 15746:1 15768:1 15783:1 15785:1 15807:1 15815:1 15857:1 15861:1 15931:1 15942:1 15948:1 15956:4 15962:1 15964:1 15965:1 15975:1 15976:2 15979:1 15980:1 15992:1 15993:1 16010:1 16027:1 16033:1 16034:1 16041:2 16056:2 16084:2 16106:1 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:2 16186:1 16219:1 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16338:1 16358:1 16362:1 16374:2 16412:2 16436:2 16449:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:1 16537:1 16546:1 16548:2 16559:2 16560:1 16570:2 16585:1 16602:1 16686:2 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17181:2 17201:2 17213:1 17219:1 17235:1 17238:1 17258:2 17276:1 17284:1 17299:4 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17433:1 17434:1 17440:3 17478:1 17493:1 17513:1 17518:1 17521:1 17525:2 17576:1 17577:1 17588:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:1 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:2 17814:3 17816:1 17818:1 17823:1 17825:1 17839:1 17851:1 17888:2 17896:2 17897:1 17912:1 17918:1 17943:1 17950:1 17980:1 17989:1 17992:1 18043:2 18059:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:2 18188:1 18197:1 18220:1 18226:1 18232:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18345:2 18346:1 18348:1 18373:1 18429:1 18431:1 18437:1 18444:1 18447:1 18455:1 18479:1 18498:1 18525:2 18552:1 18562:1 18580:1 18605:1 18648:1 18657:2 18665:1 18699:2 18744:3 18800:5 18809:2 18810:1 18845:1 18880:1 18885:1 18926:1 18934:1 18938:1 18960:1 18970:3 18984:1 18994:1 19004:1 19029:1 19033:1700 19052:3 19058:2 19062:1 19072:1 19133:2 19228:1 19242:1 19243:1 19262:1 19303:1 19323:1 19326:1 19333:1 19352:1 19377:1 19394:1 19397:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19614:1 19632:2 19659:3 19705:1 19721:1 19723:1 19726:1 19734:1 19739:2 19772:2 19785:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19895:1 19916:3 19926:1 19933:1 19967:2 20011:1 20034:1 20046:2 20049:1 20100:1 20109:1 20112:1 20136:1 20166:2 20179:1 20193:1 20212:1 20235:1 20250:1 20279:1 20289:3 20317:1 20332:2 20348:1 20355:2 20360:1 20370:1 20399:1 20401:1 20404:1 20418:1 20420:2 20424:1 20427:1 20440:1 20465:1 20474:2 20495:2 20529:2 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20646:2 20664:1 20671:1 20680:1 20703:3 20711:1 20722:1 20737:1 20806:2 20811:1 20845:1 20853:1 20863:1 20904:3 20929:1 20947:1 20959:4 20971:1 20979:1 21033:1 21042:1 21065:1 21067:1 21073:1 21075:1 21133:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21232:1 21239:1 21264:1 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21509:1 21517:1 21522:1 21529:1 21535:2 21550:1 21556:1 21572:1 21582:1 21599:1 21633:1 21635:1 21669:1 21685:2 21695:1 21715:1 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:1 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21905:1 21929:1 21939:2 21948:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22060:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22144:1 22151:1 22170:1 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:1 22386:1 22392:1 22405:2 22425:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22552:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22707:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22836:2 22846:1 22855:2 22866:2 22872:2 22882:1 22887:1 22896:1 22924:2 22931:1 22942:2 22992:1 22998:2 23022:2 23035:1 23043:2 23045:1 23049:1 23071:1 23110:1 23146:2 23163:4 23170:1 23173:1 23187:1 23196:2 23199:1 23202:2 23213:2 23218:1 23241:2 23244:1 23275:1 23302:3 23307:1 23312:1 23315:2 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:1 23514:1 23526:1 23542:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:1 23926:1 23929:2 23930:1 23931:1 23951:2 23978:1 23981:1 23986:1 24004:1 24019:1 24027:1 24028:1 24030:2 24037:1 24038:1 24074:1 24087:2 24129:1 24130:1 24138:2 24158:1 24160:1 24164:1 24242:1 24243:1 24254:2 24266:1 24289:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24549:2 24587:1 24594:1 24598:1 24611:1 24634:2 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24756:1 24759:1 24761:2 24762:1 24763:1 24777:1 24795:1 24812:1 24833:3 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25008:1 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:3 25079:2 25086:1 25092:1 25121:1 25145:1 25146:1 25164:1 25189:1 25190:1 25192:1 25194:2 25197:1 25207:1 25213:1 25220:1 25223:2 25224:1 25227:1 25247:1 25285:1 25326:9 25328:1 25350:5 25364:1 25387:1 25392:1 25397:2 25414:1 25428:2 25432:2 25485:1 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25583:1 25595:1 25600:1 25610:1 25611:2 25718:2 25766:1 25794:1 25802:1 25828:3 25829:2 25854:5 25869:1 25879:1 25888:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:1 26076:2 26083:1 26095:1 26106:2 26108:1 26116:1 26125:2 26128:1 26142:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26527:2 26593:1 26597:1 26606:1 26622:2 26634:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26704:1 26706:1 26712:1 26729:1 26771:4 26791:1 26817:1 26826:1 26827:1 26835:1 26851:5 26858:1 26862:1 26867:1 26869:1 26899:1 26904:1 26917:1 26942:2 26970:1 26981:2 26992:1 27006:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27158:1 27163:1 27167:1 27169:1 27210:1 27222:1 27268:2 27276:1 27281:3 27284:1 27341:1 27344:1 27351:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:1 27547:1 27598:1 27605:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:2 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27859:1 27872:2 27874:3 27883:1 27927:1 27938:2 27964:2 27971:1 27978:3 27989:1 28035:1 28047:1 28054:3 28058:2 28063:2 28066:1 28088:1 28100:3 28110:2 28120:1 28123:1 28124:2 28125:1 28136:1 28149:1 28215:1 28218:2 28239:2 28260:1 28285:3 28294:2 28300:1 28318:1 28360:1 28376:2 28379:1 28388:1 28391:1 28405:1 28414:1 28427:1 28447:5 28457:1 28528:1 28545:1 28547:1 28577:1 28580:1 28589:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:1 28648:1 28651:3 28658:1 28660:1 28673:2 28676:1 28677:3 28685:1 28716:3 28722:1 28726:1 28736:1 28755:1 28765:1 28795:1 28808:1 28811:1 28834:11 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:5 28887:3 28911:1 28923:2 28951:1 28993:1 29001:3 29010:1 29015:1 29038:3 29057:1 29080:1 29092:1 29095:1 29115:1 29127:1 29158:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:1 29251:1 29260:1 29281:1 29301:2 29351:1 29364:2 29367:3 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29537:1 29552:1 29555:1 29572:3 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:2 29804:1 29806:1 29858:1 29861:1 29870:1 29888:1 29901:1 29919:1 29951:1 29965:1 29995:2 29999:2 30013:1 30020:1 30055:1 30077:1 30095:2 30106:3 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30189:1 30190:2 30197:4 30208:3 30209:1 30213:3 30253:1 30258:1 30261:1 30262:1 30264:1 30298:2 30303:1 30305:1 30320:1 11 1:1 8:1 10:1 34:1 41:1 46:1 57:1 61:2 69:1 80:1 93:1 94:1 100:1 105:1 129:1 147:1 158:1 169:1 177:1 182:1 183:1 186:1 187:1 220:1 225:4 265:1 266:1 278:2 279:2 303:1 385:1 387:2 389:1 393:2 439:1 475:1 483:3 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 663:1 678:2 685:1 691:2 723:2 725:1 726:1 730:1 734:1 737:1 755:1 858:1 860:1 876:1 885:1 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:1 977:1 979:3 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1042:2 1047:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:1 1137:1 1142:1 1170:1 1197:1 1229:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1391:1 1400:2 1407:1 1421:1 1442:1 1448:1 1522:1 1548:1 1558:3 1574:2 1579:1 1598:1 1604:4 1607:7 1614:8 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1822:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:2 1948:1 1949:2 1970:1 1979:1 1980:1 1982:1 1993:4 2008:1 2021:1 2035:1 2041:1 2048:1 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2336:2 2337:1 2338:1 2339:3 2341:4 2345:1 2361:1 2363:2 2364:3 2367:1 2370:1 2395:1 2396:3 2398:1 2401:2 2402:1 2403:2 2409:1 2411:2 2414:1 2415:2 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2611:1 2624:1 2656:1 2665:2 2672:1 2686:1 2703:1 2712:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2817:3 2828:3 2842:1 2847:3 2854:2 2855:1 2863:2 2877:1 2885:1 2891:2 2897:1 2902:1 2911:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:4 3011:1 3015:1 3016:5 3023:2 3054:4 3063:2 3064:1 3067:5 3073:1 3079:1 3087:1 3089:1 3097:1 3098:1 3105:1 3123:1 3125:2 3148:2 3171:1 3179:1 3181:1 3189:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3337:1 3355:1 3360:1 3374:2 3382:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3513:1 3517:2 3525:1 3590:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:3 3729:1 3753:1 3768:1 3800:2 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3884:1 3885:6 3901:1 3912:1 3915:4 3916:1 3920:1 3927:1 3930:2 3946:2 3949:1 3964:2 3984:1 4072:1 4077:1 4085:1 4089:1 4095:1 4111:1 4132:1 4136:1 4140:3 4150:2 4169:1 4171:1 4175:2 4203:1 4216:1 4224:1 4251:1 4263:1 4306:1 4309:1 4340:4 4344:4 4351:1 4361:1 4370:3 4405:2 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4565:1 4569:1 4574:2 4585:2 4596:1 4627:1 4635:1 4663:1 4672:4 4688:1 4689:1 4691:1 4699:1 4748:1 4755:1 4770:1 4788:2 4809:1 4825:4 4851:1 4856:3 4915:1 5022:25 5024:2 5058:1 5128:1 5145:1 5146:2 5169:1 5170:4 5171:3 5174:1 5177:2 5181:3 5185:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:2 5426:1 5433:1 5475:1 5493:1 5532:3 5535:3 5552:1 5558:1 5604:1 5614:1 5642:1 5645:1 5646:1 5660:2 5670:2 5674:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5733:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:5 5807:1 5815:1 5830:2 5843:1 5855:1 5857:1 5876:1 5878:1 5882:1 5907:2 5931:3 5933:1 5965:1 5977:1 6050:3 6054:2 6136:1 6138:1 6146:1 6155:1 6182:1 6185:2 6223:1 6229:1 6231:2 6236:4 6276:1 6293:3 6308:1 6340:1 6359:1 6364:1 6366:1 6378:1 6407:1 6408:1 6423:1 6450:1 6501:1 6504:1 6505:1 6509:1 6510:1 6512:2 6513:1 6516:2 6518:1 6520:1 6521:1 6522:2 6529:7 6532:1 6533:3 6566:1 6582:1 6606:1 6609:1 6610:1 6673:1 6684:1 6694:1 6698:1 6718:1 6722:2 6726:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6901:1 6908:1 6914:1 6929:1 6936:2 6937:1 6941:1 6954:1 6962:3 6977:1 6994:1 6997:1 7000:1 7014:1 7044:1 7071:1 7102:1 7108:1 7122:3 7152:2 7167:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:1 7259:1 7263:2 7280:1 7294:1 7300:4 7314:2 7346:1 7356:2 7370:1 7381:1 7423:2 7431:1 7444:1 7454:1 7456:1 7498:1 7526:1 7533:1 7535:1 7542:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7665:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7768:1 7772:1 7776:1 7780:1 7787:1 7791:1 7792:4 7798:3 7799:3 7801:3 7810:1 7820:1 7825:1 7855:2 7856:1 7873:30 7895:6 7897:5 7931:1 7942:1 7954:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8278:1 8285:1 8306:1 8321:1 8340:1 8349:2 8354:1 8357:13 8392:1 8400:1 8403:1 8418:1 8419:1 8502:1 8515:1 8551:1 8564:1 8586:1 8594:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8736:1 8738:2 8741:1 8744:3 8745:1 8751:1 8756:1 8785:2 8809:1 8834:1 8838:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8955:1 8960:1 8971:2 8990:1 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9212:1 9214:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9348:1 9361:2 9382:1 9384:1 9393:1 9400:3 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:3 9493:1 9500:1 9501:2 9522:1 9536:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9637:1 9641:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9848:1 9866:1 9884:1 9894:1 9904:1 9930:1 9931:1 9936:1 9965:5 9985:1 9986:1 9988:1 9989:1 10012:1 10027:1 10028:1 10052:1 10065:1 10077:1 10117:2 10127:2 10134:1 10151:1 10158:2 10165:1 10168:1 10174:1 10178:1 10196:1 10201:2 10209:1 10212:1 10215:1 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:3 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10396:1 10425:1 10429:1 10434:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10557:1 10584:1 10601:1 10604:1 10627:1 10653:2 10663:1 10695:1 10698:2 10703:1 10727:1 10729:4 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10831:1 10832:1 10841:1 10852:1 10897:2 10904:1 10913:3 10916:1 10924:2 10942:1 10980:1 11027:1 11032:1 11036:2 11080:1 11117:1 11163:1 11167:1 11175:2 11177:1 11185:4 11199:2 11212:1 11218:1 11220:1 11244:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:2 11450:2 11465:1 11473:1 11548:1 11568:1 11578:1 11604:1 11612:2 11614:1 11638:1 11650:1 11664:1 11665:5 11676:1 11679:1 11692:1 11708:1 11716:1 11721:2 11722:1 11729:1 11731:1 11745:1 11755:1 11772:3 11781:1 11785:1 11793:1 11797:1 11806:1 11813:1 11823:2 11829:1 11832:1 11841:1 11854:2 11855:2 11859:2 11862:2 11880:1 11890:6 11897:1 11901:2 11906:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11958:1 11983:2 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12138:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:2 12224:1 12227:1 12239:1 12257:1 12258:2 12287:1 12301:1 12306:2 12315:1 12343:2 12350:1 12362:1 12369:2 12370:2 12375:1 12398:1 12415:1 12422:1 12440:1 12470:1 12479:1 12483:2 12488:1 12517:3 12531:2 12532:1 12537:1 12550:1 12565:1 12644:1 12660:1 12680:1 12720:1 12744:1 12763:1 12780:2 12799:1 12801:1 12803:2 12810:1 12838:1 12848:1 12860:1 12877:1 12899:2 12900:1 12930:3 12934:1 12939:2 12948:2 12956:1 12960:1 12963:1 12978:1 12993:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13302:1 13325:1 13337:4 13352:1 13370:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13412:2 13420:1 13422:1 13424:1 13436:4 13444:1 13467:2 13484:2 13494:1 13495:1 13513:1 13517:1 13519:1 13535:1 13559:1 13566:2 13569:1 13587:1 13612:1 13613:1 13644:1 13650:1 13652:1 13694:1 13716:5 13742:1 13748:1 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:2 13823:1 13863:1 13868:1 13870:1 13908:1 13920:1 13938:1 13948:1 13952:1 13953:2 13959:2 13968:1 13978:1 13994:1 14002:1 14067:1 14074:1 14094:1 14114:1 14167:4 14171:3 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14277:1 14309:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:1 14476:1 14550:2 14557:1 14560:1 14566:1 14569:1 14579:1 14591:2 14593:1 14598:1 14611:1 14626:1 14635:1 14641:1 14666:1 14675:2 14700:1 14724:1 14729:2 14745:1 14755:1 14762:1 14763:1 14771:1 14783:1 14786:1 14794:1 14816:2 14836:2 14852:1 14872:1 14873:3 14909:1 14911:1 14930:1 14940:1 14948:2 14967:1 14979:4 15017:2 15021:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:1 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:2 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15545:1 15570:1 15594:1 15637:1 15648:1 15692:9 15746:1 15768:1 15783:1 15785:1 15807:1 15815:1 15857:1 15861:1 15875:1 15931:1 15942:1 15948:1 15956:4 15962:1 15964:1 15965:1 15975:1 15976:2 15979:1 15980:1 15984:1 15992:1 15993:1 16010:1 16027:1 16033:2 16034:1 16041:2 16056:2 16078:1 16084:2 16106:1 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:2 16186:1 16219:1 16225:1 16237:1 16276:2 16279:1 16295:2 16334:1 16338:1 16358:1 16362:1 16374:2 16412:2 16436:2 16449:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:1 16537:1 16543:1 16546:1 16548:2 16559:2 16560:1 16570:2 16585:1 16602:1 16686:2 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17052:2 17057:2 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17171:1 17181:2 17201:2 17213:1 17219:1 17235:1 17238:3 17258:2 17276:1 17284:1 17299:4 17308:1 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17433:1 17434:1 17440:3 17478:1 17493:1 17513:1 17518:1 17521:1 17525:2 17576:1 17577:1 17588:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:1 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:2 17814:3 17816:1 17818:1 17823:1 17825:1 17839:1 17851:1 17888:2 17896:2 17897:1 17912:1 17918:1 17936:1 17943:1 17950:1 17980:1 17989:1 17992:1 18043:2 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:3 18181:1 18188:1 18197:1 18220:2 18226:1 18232:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18338:1 18345:2 18346:1 18348:1 18373:1 18429:1 18431:1 18437:1 18444:1 18447:1 18455:1 18479:1 18498:1 18525:2 18552:1 18562:1 18580:1 18605:1 18648:1 18657:2 18665:1 18699:2 18744:3 18800:5 18809:2 18810:1 18826:1 18845:1 18879:1 18880:1 18885:1 18926:1 18934:1 18938:1 18960:1 18970:3 18984:1 18994:1 19004:1 19029:1 19033:1775 19052:3 19058:2 19062:1 19072:1 19124:1 19133:2 19228:1 19242:1 19243:1 19262:1 19303:1 19310:1 19323:1 19326:1 19333:1 19352:1 19377:1 19394:1 19397:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19584:1 19614:1 19632:2 19659:3 19705:1 19721:1 19723:1 19726:1 19734:1 19739:2 19772:2 19785:1 19789:1 19794:1 19805:1 19823:1 19827:4 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19895:1 19916:3 19926:1 19933:1 19937:1 19959:1 19967:2 20011:1 20034:1 20046:3 20049:1 20053:1 20100:1 20109:1 20112:1 20136:1 20166:2 20179:1 20193:1 20212:1 20235:1 20250:1 20279:1 20289:3 20317:1 20332:2 20348:1 20355:2 20360:1 20370:1 20399:1 20401:1 20404:2 20418:1 20420:2 20424:1 20427:1 20440:1 20465:1 20474:3 20495:2 20529:2 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20646:2 20664:1 20671:1 20680:1 20703:3 20711:1 20722:1 20737:1 20806:2 20811:1 20845:1 20853:1 20863:1 20904:3 20929:1 20947:1 20959:4 20969:1 20971:1 20979:1 21033:1 21042:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21219:1 21232:1 21239:1 21264:2 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21509:1 21517:1 21522:1 21529:1 21534:1 21535:2 21550:1 21556:1 21572:1 21582:1 21599:1 21633:1 21635:1 21669:1 21685:2 21695:1 21715:2 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:1 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21905:1 21929:1 21939:2 21948:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22060:1 22061:1 22090:1 22091:1 22099:3 22107:1 22118:1 22143:1 22144:1 22151:1 22170:1 22202:1 22203:2 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:2 22386:1 22392:1 22405:2 22425:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22552:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22707:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22836:2 22846:1 22855:2 22866:2 22868:1 22872:2 22882:1 22887:1 22896:1 22924:2 22931:2 22942:2 22992:1 22998:3 23022:2 23035:1 23043:2 23045:2 23049:1 23071:1 23110:1 23146:2 23163:4 23170:1 23173:1 23187:1 23196:2 23199:1 23202:2 23213:2 23218:1 23241:2 23244:1 23275:1 23302:3 23307:1 23312:2 23315:2 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:1 23514:1 23526:1 23540:1 23542:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:1 24038:1 24074:1 24087:2 24129:1 24130:1 24138:2 24158:1 24160:1 24164:1 24242:1 24243:1 24254:2 24266:1 24289:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24549:2 24587:1 24594:1 24598:1 24611:1 24634:3 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24756:1 24759:1 24761:3 24762:1 24763:1 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:2 25008:1 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:1 25036:1 25038:1 25048:1 25049:1 25052:1 25067:3 25079:3 25086:1 25092:1 25121:1 25145:1 25146:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25220:1 25223:2 25224:1 25227:1 25247:1 25285:1 25326:9 25328:1 25350:5 25364:1 25387:1 25392:1 25397:2 25414:1 25428:2 25432:3 25485:1 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25583:1 25595:1 25600:1 25610:1 25611:2 25718:2 25766:1 25794:1 25802:1 25828:3 25829:3 25854:5 25869:1 25879:1 25888:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:1 26076:2 26083:1 26095:1 26106:2 26108:1 26116:1 26125:2 26128:1 26142:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26527:2 26593:1 26597:1 26606:1 26622:2 26634:1 26637:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26704:1 26706:1 26712:1 26729:1 26771:4 26791:1 26817:1 26826:1 26827:1 26835:1 26851:6 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26917:1 26942:2 26949:1 26970:1 26981:2 26992:1 27006:2 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27158:1 27163:1 27167:1 27169:1 27210:1 27222:1 27268:2 27276:1 27278:1 27281:3 27284:1 27341:1 27344:1 27351:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:1 27547:1 27598:1 27605:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:2 27680:1 27718:1 27768:1 27772:3 27791:1 27802:3 27806:1 27838:1 27859:1 27872:3 27874:3 27883:1 27927:1 27932:1 27938:2 27964:2 27971:1 27978:3 27989:2 28035:1 28047:1 28054:4 28058:2 28063:2 28066:2 28088:1 28100:3 28110:2 28120:1 28123:1 28124:2 28125:1 28136:1 28139:1 28149:1 28215:1 28218:2 28239:2 28245:1 28260:1 28285:3 28294:2 28300:1 28318:1 28360:1 28376:2 28379:1 28388:1 28391:1 28405:1 28414:1 28423:1 28427:1 28447:5 28457:1 28528:1 28545:1 28547:1 28577:1 28580:1 28589:2 28601:3 28604:1 28608:1 28627:2 28628:1 28643:1 28648:1 28651:3 28658:1 28660:1 28673:2 28676:2 28677:3 28685:1 28716:3 28722:1 28726:1 28736:1 28755:1 28765:1 28795:1 28808:1 28811:1 28834:11 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:5 28887:3 28911:1 28923:3 28951:1 28993:1 29001:3 29010:1 29015:1 29038:3 29057:1 29069:1 29080:1 29092:1 29095:1 29108:1 29113:1 29115:1 29127:1 29158:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29281:1 29301:2 29351:1 29364:2 29367:3 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29537:1 29552:1 29555:1 29572:3 29576:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:2 29804:1 29806:1 29858:1 29861:1 29870:1 29888:1 29901:1 29919:1 29951:1 29965:1 29995:2 29999:2 30013:1 30020:1 30055:2 30077:1 30095:2 30106:3 30108:1 30119:1 30129:1 30165:1 30176:1 30183:1 30185:2 30189:1 30190:2 30191:1 30197:4 30208:3 30209:1 30213:3 30253:1 30258:1 30261:1 30262:1 30264:1 30272:1 30298:2 30303:1 30305:1 30320:1 11 1:1 2:1 8:1 10:1 34:1 41:1 46:1 57:1 61:2 69:1 80:1 91:1 93:1 94:1 100:1 105:1 129:1 138:1 147:1 149:1 158:1 169:1 177:1 182:1 183:1 186:1 187:1 220:1 225:4 265:1 266:1 278:2 279:2 303:1 385:1 387:2 389:1 393:2 439:1 475:1 483:4 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 663:1 678:3 685:1 691:3 723:2 725:1 726:1 730:1 734:1 737:1 755:2 804:1 858:1 860:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:1 977:1 979:3 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1068:1 1075:1 1098:1 1112:1 1121:1 1123:1 1134:2 1137:1 1142:1 1162:1 1170:1 1197:1 1229:1 1231:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1391:1 1400:2 1407:1 1421:1 1442:1 1448:1 1490:1 1522:1 1533:1 1548:1 1555:1 1558:3 1574:2 1579:2 1598:1 1604:4 1607:7 1614:9 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1756:1 1789:1 1803:1 1805:1 1811:1 1822:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:2 1948:1 1949:2 1952:1 1970:1 1979:1 1980:1 1982:1 1993:4 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:1 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2336:2 2337:1 2338:1 2339:3 2341:4 2345:1 2361:2 2363:2 2364:3 2367:1 2370:1 2395:1 2396:3 2398:1 2401:2 2402:1 2403:2 2409:1 2411:3 2414:1 2415:2 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2585:1 2611:1 2624:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2817:3 2828:3 2842:1 2847:3 2854:2 2855:1 2863:2 2877:1 2885:1 2891:3 2897:1 2902:1 2911:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:5 3011:1 3015:1 3016:6 3023:2 3054:4 3063:2 3064:1 3067:6 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3123:1 3125:2 3131:1 3148:2 3171:1 3179:1 3181:1 3189:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3337:1 3355:1 3360:1 3374:2 3382:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3488:1 3513:1 3517:2 3525:1 3590:1 3593:2 3599:1 3604:2 3608:1 3620:1 3636:1 3640:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:1 3700:1 3707:3 3729:1 3753:1 3768:1 3800:2 3810:1 3813:1 3833:2 3835:1 3876:1 3879:1 3884:2 3885:8 3896:1 3901:1 3912:1 3915:4 3916:2 3920:1 3927:1 3930:3 3946:3 3949:1 3964:3 3984:1 4072:1 4077:1 4085:1 4089:1 4095:1 4108:1 4111:1 4132:1 4136:1 4140:3 4150:2 4169:1 4171:1 4175:2 4203:1 4216:1 4224:1 4251:1 4263:1 4296:1 4306:1 4309:1 4340:5 4344:4 4351:1 4361:1 4370:4 4392:1 4405:2 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4627:1 4635:1 4663:1 4672:4 4688:1 4689:1 4691:1 4699:1 4748:1 4755:1 4770:1 4788:2 4809:1 4825:4 4851:1 4856:3 4915:1 5022:26 5024:2 5058:1 5128:1 5145:1 5146:3 5169:1 5170:4 5171:3 5174:1 5177:2 5180:1 5181:3 5185:1 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:2 5426:1 5433:1 5475:1 5493:1 5532:3 5535:3 5548:2 5552:1 5558:1 5604:1 5614:1 5642:1 5645:1 5646:1 5656:1 5660:2 5670:2 5674:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5733:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:6 5807:1 5815:1 5830:2 5843:1 5855:1 5857:1 5876:1 5878:1 5882:1 5907:2 5931:3 5933:1 5965:1 5977:1 6050:3 6054:2 6132:1 6136:1 6138:1 6146:1 6155:1 6182:1 6185:2 6223:1 6229:1 6231:2 6236:4 6276:1 6293:3 6308:1 6340:1 6359:1 6364:1 6366:1 6378:1 6407:1 6408:1 6409:1 6423:1 6450:1 6466:1 6501:1 6504:1 6505:1 6509:1 6510:1 6512:2 6513:1 6516:3 6518:2 6520:1 6521:1 6522:2 6529:7 6532:1 6533:3 6562:1 6566:1 6582:1 6606:1 6609:1 6610:1 6673:1 6684:2 6694:1 6698:1 6718:1 6722:2 6726:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:3 6937:1 6941:1 6954:1 6962:4 6977:1 6994:1 6997:1 7000:1 7014:1 7042:1 7044:1 7071:1 7074:1 7102:1 7108:1 7122:3 7152:2 7167:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7280:1 7285:1 7294:1 7300:4 7314:2 7330:1 7346:1 7356:2 7364:1 7370:1 7381:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:1 7533:1 7535:1 7542:1 7580:1 7583:1 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7744:1 7768:1 7772:1 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:3 7801:3 7810:1 7820:1 7825:1 7827:1 7855:2 7856:1 7873:31 7886:1 7895:7 7897:5 7931:1 7942:1 7954:2 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8246:2 8278:1 8285:1 8294:1 8306:2 8321:1 8340:1 8349:2 8354:1 8357:14 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8502:1 8515:1 8551:1 8564:1 8586:1 8594:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8733:1 8736:1 8738:2 8741:1 8744:3 8745:1 8751:1 8756:1 8785:2 8809:1 8834:1 8838:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8955:1 8960:1 8971:2 8978:1 8990:1 8997:1 9003:1 9011:1 9043:1 9045:1 9058:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9187:1 9212:2 9214:1 9224:1 9230:1 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9393:1 9400:3 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9637:1 9641:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9826:1 9848:1 9866:1 9884:2 9894:1 9904:1 9930:1 9931:1 9936:1 9965:5 9985:1 9986:1 9988:1 9989:1 10012:1 10027:1 10028:1 10052:1 10065:1 10077:1 10117:2 10127:2 10134:1 10151:1 10158:2 10161:1 10165:1 10168:1 10169:1 10174:1 10178:2 10193:1 10196:2 10201:2 10204:1 10209:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:3 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10557:1 10584:1 10601:1 10604:1 10627:1 10653:2 10663:1 10695:1 10698:2 10702:1 10703:1 10715:1 10727:1 10729:5 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10808:2 10825:1 10827:1 10831:1 10832:1 10841:1 10852:1 10897:2 10904:1 10913:3 10916:1 10924:2 10942:1 10980:1 11027:1 11032:1 11036:2 11080:1 11117:1 11163:1 11167:1 11175:2 11177:1 11182:1 11184:1 11185:4 11199:2 11212:1 11218:1 11220:1 11244:1 11263:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:3 11450:2 11460:1 11465:1 11473:1 11545:1 11548:1 11568:1 11578:1 11579:1 11604:1 11612:2 11614:2 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:1 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11745:1 11755:1 11772:3 11781:1 11785:1 11793:1 11797:1 11806:1 11813:1 11823:2 11829:1 11832:1 11841:1 11854:2 11855:2 11859:2 11862:2 11872:1 11880:1 11890:6 11897:1 11901:2 11906:2 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11958:1 11983:2 11993:1 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12134:1 12138:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:2 12224:1 12227:1 12239:1 12257:1 12258:2 12287:1 12301:1 12306:2 12315:1 12343:2 12350:1 12362:1 12369:2 12370:2 12375:1 12382:1 12398:1 12415:1 12422:2 12440:1 12470:1 12479:1 12483:2 12488:1 12517:3 12531:2 12532:1 12537:1 12550:1 12561:1 12565:1 12644:1 12652:1 12660:1 12680:1 12720:1 12744:1 12763:1 12780:2 12799:1 12801:1 12803:2 12810:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:4 12934:1 12939:2 12948:2 12956:1 12960:1 12963:1 12978:1 12993:1 12998:1 13016:1 13034:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13302:1 13325:1 13337:5 13352:1 13370:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:2 13408:1 13412:3 13420:1 13422:1 13424:1 13436:4 13444:1 13467:2 13473:1 13484:2 13494:1 13495:1 13513:1 13517:1 13519:1 13535:1 13554:1 13559:2 13566:3 13569:1 13587:1 13601:1 13612:1 13613:1 13644:2 13650:1 13652:1 13689:1 13694:1 13716:5 13742:1 13748:1 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13908:1 13920:1 13938:1 13948:2 13952:1 13953:2 13959:2 13968:1 13978:1 13982:1 13994:1 14002:1 14067:2 14074:1 14094:1 14114:1 14167:5 14171:4 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14277:1 14309:1 14337:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:1 14476:1 14550:2 14557:1 14560:1 14566:1 14569:1 14579:1 14591:2 14593:1 14598:1 14611:1 14626:1 14635:1 14641:1 14666:1 14675:2 14700:1 14724:1 14729:2 14745:1 14755:1 14762:1 14763:1 14771:1 14783:1 14786:1 14794:1 14816:3 14836:2 14852:1 14855:1 14872:1 14873:3 14909:1 14911:1 14930:1 14934:1 14940:1 14948:2 14967:1 14979:5 14986:1 15017:2 15021:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:3 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15545:1 15570:1 15589:1 15594:1 15637:1 15648:1 15692:9 15706:1 15746:1 15768:1 15783:1 15785:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:1 15875:1 15920:1 15931:1 15942:1 15948:1 15956:6 15962:1 15964:1 15965:1 15975:1 15976:3 15979:1 15980:1 15984:1 15992:1 15993:2 16010:1 16027:1 16033:2 16034:1 16041:2 16056:2 16078:1 16084:2 16106:1 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:3 16186:1 16219:1 16225:1 16237:1 16276:2 16279:2 16295:3 16334:1 16338:1 16341:1 16358:1 16362:1 16374:2 16412:4 16436:3 16449:1 16459:2 16461:1 16470:2 16482:1 16484:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16559:2 16560:1 16570:2 16585:1 16602:1 16686:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17164:1 17171:1 17181:2 17201:2 17213:2 17219:1 17235:1 17238:4 17258:2 17276:1 17284:1 17299:4 17308:1 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17433:1 17434:1 17440:3 17478:1 17493:1 17513:1 17518:1 17521:1 17525:2 17576:1 17577:1 17588:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:4 17816:1 17818:1 17823:2 17825:1 17839:1 17851:1 17861:2 17888:2 17896:2 17897:1 17912:1 17918:1 17936:1 17943:1 17950:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18047:1 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:3 18181:1 18188:1 18197:1 18220:2 18226:1 18232:1 18248:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18338:1 18345:2 18346:1 18348:1 18373:1 18429:1 18431:1 18437:1 18444:1 18447:1 18455:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18562:1 18580:1 18605:1 18648:1 18657:2 18665:1 18699:2 18744:3 18800:6 18809:2 18810:1 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:1 18934:1 18938:1 18960:1 18970:3 18984:1 18994:1 19004:1 19029:1 19033:1968 19052:3 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19228:1 19242:1 19243:1 19246:1 19262:1 19303:1 19310:1 19323:1 19326:1 19333:1 19352:1 19377:1 19394:1 19397:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:1 19632:2 19659:3 19705:1 19721:1 19723:1 19726:1 19734:1 19739:3 19772:2 19785:1 19789:1 19794:1 19805:1 19806:1 19823:1 19827:5 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19895:1 19916:3 19926:1 19933:1 19937:2 19959:1 19967:2 20000:1 20011:1 20034:1 20046:3 20049:1 20053:1 20100:1 20109:1 20112:1 20136:1 20159:1 20166:3 20179:1 20185:1 20193:1 20212:1 20235:1 20250:1 20279:1 20284:1 20289:3 20317:1 20332:2 20348:1 20355:2 20360:1 20370:1 20384:1 20399:1 20401:1 20404:2 20418:1 20420:2 20424:1 20427:1 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:2 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20664:1 20671:1 20680:1 20703:3 20709:1 20711:1 20722:1 20737:1 20771:1 20781:1 20806:2 20811:1 20845:1 20853:1 20863:1 20904:3 20925:1 20929:1 20947:1 20955:1 20959:4 20969:1 20971:1 20974:1 20979:1 21033:1 21042:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21219:1 21232:1 21239:1 21264:3 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21462:1 21509:1 21517:1 21522:1 21529:2 21534:1 21535:2 21550:1 21556:1 21565:1 21572:1 21582:1 21599:1 21633:1 21635:1 21669:1 21685:2 21695:1 21713:2 21715:2 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:1 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21905:1 21929:1 21939:2 21940:1 21948:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22046:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22115:1 22118:1 22143:1 22144:1 22151:1 22170:1 22202:1 22203:2 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:3 22386:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22552:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22707:1 22715:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22836:2 22846:1 22855:3 22866:2 22868:1 22872:2 22882:1 22887:1 22896:1 22924:2 22931:2 22942:2 22992:1 22998:3 23022:2 23035:1 23043:2 23045:3 23049:1 23071:1 23094:1 23100:1 23110:1 23135:1 23146:2 23163:5 23170:1 23173:1 23187:1 23196:2 23199:1 23202:2 23213:2 23218:1 23241:2 23244:1 23275:2 23302:3 23307:1 23312:2 23315:3 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:1 23514:1 23526:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23870:1 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:1 24038:1 24072:1 24074:2 24087:3 24129:1 24130:1 24138:2 24158:1 24160:1 24164:1 24214:1 24242:1 24243:1 24254:3 24266:1 24289:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24549:2 24587:1 24594:1 24598:2 24611:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24755:1 24756:1 24759:1 24761:3 24762:1 24763:1 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:1 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:2 25008:1 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:1 25036:1 25038:1 25048:2 25049:1 25052:1 25067:3 25079:3 25086:1 25092:1 25121:1 25145:1 25146:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25220:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:10 25327:1 25328:1 25350:5 25364:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25583:1 25595:1 25600:1 25610:1 25611:2 25718:2 25766:1 25794:1 25802:2 25828:3 25829:3 25854:5 25869:1 25879:1 25888:2 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:1 26076:3 26083:1 26095:1 26106:2 26108:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26315:1 26329:1 26331:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:1 26527:2 26593:1 26597:1 26606:1 26622:2 26632:1 26634:1 26637:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26699:1 26704:1 26706:1 26712:1 26729:1 26771:4 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:7 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:2 26949:1 26970:1 26981:2 26992:1 27006:3 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27158:1 27163:1 27167:1 27169:1 27210:1 27222:1 27268:2 27276:1 27278:1 27281:3 27284:1 27341:1 27344:1 27351:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:2 27547:1 27549:1 27598:1 27603:1 27605:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:2 27680:1 27706:1 27718:1 27768:1 27772:3 27791:1 27801:1 27802:3 27806:1 27838:1 27859:1 27872:3 27874:3 27883:1 27927:1 27932:1 27938:3 27964:2 27971:1 27978:3 27989:2 28035:1 28047:1 28054:4 28058:2 28063:2 28066:2 28088:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28136:1 28139:1 28149:1 28204:1 28214:1 28215:1 28218:2 28224:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28300:1 28318:1 28360:1 28376:2 28379:1 28388:1 28391:1 28405:1 28414:1 28423:1 28427:1 28447:6 28457:1 28528:1 28545:1 28547:1 28577:1 28580:1 28589:2 28601:3 28604:1 28608:1 28627:2 28628:1 28643:1 28648:1 28651:3 28658:1 28660:2 28673:2 28676:2 28677:3 28685:1 28716:3 28722:1 28726:1 28736:1 28755:1 28765:1 28795:1 28803:1 28808:1 28811:1 28834:12 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:5 28882:1 28887:3 28911:1 28923:3 28927:1 28951:1 28993:1 29001:3 29010:1 29015:1 29038:3 29057:1 29069:1 29080:1 29092:1 29095:1 29108:1 29113:1 29115:1 29127:1 29158:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29281:1 29301:2 29322:1 29351:1 29364:2 29367:3 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29509:1 29537:1 29552:1 29555:1 29557:1 29572:4 29576:1 29590:1 29593:2 29601:1 29635:1 29636:2 29690:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:2 29804:1 29806:1 29816:1 29858:1 29861:1 29870:1 29883:1 29888:1 29901:1 29912:1 29919:1 29951:1 29965:1 29974:2 29995:2 29999:2 30013:1 30020:1 30055:2 30077:1 30095:2 30106:3 30108:1 30119:1 30129:1 30150:1 30165:1 30176:1 30180:1 30183:1 30185:2 30189:1 30190:2 30191:1 30197:4 30205:1 30208:3 30209:1 30213:3 30253:1 30258:1 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:1 30320:1 11 1:1 2:1 8:1 10:1 34:1 41:1 46:1 57:1 61:2 69:1 80:1 91:1 93:1 94:1 100:1 105:1 129:1 138:1 147:1 149:1 158:1 169:1 177:1 182:1 183:1 186:2 187:1 220:1 225:4 265:1 266:1 278:2 279:2 303:1 385:1 387:3 389:1 393:2 439:1 475:1 483:5 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 663:1 678:3 685:2 691:3 723:2 725:1 726:1 730:1 734:1 737:1 755:2 804:1 858:1 860:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:3 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1068:1 1075:1 1098:1 1104:1 1112:1 1121:1 1123:1 1134:2 1137:1 1142:1 1162:1 1170:1 1197:1 1229:1 1231:1 1234:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1391:1 1400:2 1407:1 1421:1 1442:1 1447:1 1448:1 1490:1 1522:1 1524:2 1533:1 1548:1 1555:1 1558:3 1574:2 1579:2 1598:1 1604:4 1607:7 1614:9 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1756:1 1789:1 1795:1 1803:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:2 1948:2 1949:2 1952:1 1970:1 1979:1 1980:1 1982:1 1993:4 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:3 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2336:2 2337:1 2338:1 2339:3 2341:4 2345:1 2346:1 2361:2 2363:2 2364:3 2367:1 2370:1 2395:1 2396:3 2398:1 2401:2 2402:2 2403:2 2409:1 2411:3 2414:1 2415:2 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2585:1 2611:1 2624:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2817:3 2819:1 2828:3 2842:1 2847:3 2854:2 2855:1 2863:2 2877:1 2885:1 2887:1 2891:3 2897:1 2902:1 2911:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:5 3011:1 3015:1 3016:6 3023:2 3035:1 3054:4 3063:2 3064:1 3067:6 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3123:1 3125:2 3131:1 3148:2 3171:1 3179:1 3181:1 3189:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3325:1 3337:1 3355:1 3359:1 3360:1 3374:2 3382:1 3410:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3488:1 3513:1 3517:2 3525:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:2 3700:1 3707:3 3729:1 3753:1 3768:1 3800:3 3810:1 3813:1 3833:2 3835:1 3876:1 3879:2 3884:2 3885:8 3896:1 3901:1 3912:1 3915:4 3916:2 3919:1 3920:1 3927:1 3930:3 3946:3 3949:1 3964:3 3984:1 4072:1 4077:1 4085:1 4089:1 4095:1 4108:1 4111:1 4132:1 4136:1 4140:3 4150:2 4153:1 4169:1 4171:1 4175:2 4203:1 4216:1 4224:1 4251:1 4263:1 4296:1 4306:1 4309:1 4340:5 4344:4 4351:1 4361:1 4369:1 4370:4 4392:2 4405:2 4436:4 4450:2 4462:1 4477:2 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4627:1 4635:1 4663:2 4672:4 4688:1 4689:1 4691:1 4699:1 4723:1 4748:1 4755:2 4770:1 4788:3 4809:1 4825:5 4851:1 4856:3 4915:1 4950:1 5022:27 5024:2 5058:1 5128:1 5145:1 5146:3 5169:1 5170:4 5171:3 5172:1 5174:1 5177:2 5180:1 5181:3 5185:1 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:2 5426:1 5433:1 5475:1 5493:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:1 5646:1 5656:1 5657:1 5660:3 5670:2 5674:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5732:2 5733:1 5737:1 5747:1 5751:1 5757:2 5762:1 5774:1 5776:1 5803:1 5804:6 5807:1 5815:1 5830:3 5843:1 5855:1 5857:1 5876:1 5878:1 5882:1 5907:3 5927:1 5931:3 5933:1 5965:1 5977:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6182:1 6185:2 6223:1 6229:1 6231:2 6236:4 6276:1 6293:3 6308:1 6325:1 6340:1 6359:1 6364:1 6366:1 6378:1 6407:1 6408:1 6409:1 6423:1 6450:1 6466:1 6501:1 6504:1 6505:1 6509:1 6510:1 6512:3 6513:1 6516:3 6518:2 6520:1 6521:1 6522:2 6526:1 6529:7 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6673:1 6679:1 6684:3 6694:1 6698:1 6718:1 6722:2 6726:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6881:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:3 6937:1 6941:1 6954:1 6962:4 6977:1 6994:1 6997:1 7000:1 7001:1 7014:1 7042:1 7044:1 7071:1 7074:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:4 7314:2 7330:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:1 7533:1 7535:1 7542:1 7580:1 7583:2 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:3 7801:4 7810:1 7820:1 7825:1 7827:1 7849:1 7855:2 7856:1 7873:32 7886:1 7895:7 7897:5 7931:1 7942:1 7954:2 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8246:2 8278:1 8285:1 8294:1 8306:2 8321:1 8340:1 8349:2 8354:1 8357:14 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8502:1 8515:1 8551:1 8564:1 8586:1 8591:1 8594:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8733:1 8736:1 8738:2 8741:1 8744:3 8745:1 8751:2 8756:1 8785:2 8809:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8916:1 8955:1 8960:1 8971:2 8978:1 8990:1 8997:1 9003:2 9011:1 9043:1 9045:1 9058:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9187:1 9198:1 9204:1 9212:2 9214:1 9224:1 9230:1 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9393:1 9400:3 9404:1 9417:1 9427:1 9428:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9635:1 9637:2 9641:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:1 9693:1 9711:2 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9826:1 9840:1 9848:1 9866:1 9884:2 9894:1 9904:1 9930:1 9931:1 9936:1 9965:5 9985:1 9986:1 9988:1 9989:2 10012:1 10027:1 10028:1 10052:1 10062:1 10065:1 10077:1 10094:1 10117:2 10127:2 10134:1 10151:1 10158:2 10161:1 10165:1 10168:1 10169:1 10174:1 10178:2 10193:1 10196:2 10201:2 10204:1 10209:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10284:1 10296:1 10300:1 10309:1 10330:3 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10557:1 10584:1 10601:1 10604:1 10627:1 10653:2 10663:1 10695:1 10698:3 10702:1 10703:1 10715:1 10727:1 10729:5 10749:1 10750:1 10758:1 10761:1 10798:1 10803:3 10805:1 10808:2 10825:1 10827:1 10831:1 10832:2 10841:1 10852:1 10885:1 10897:2 10903:1 10904:1 10913:3 10916:1 10924:2 10942:1 10968:1 10980:1 11027:1 11032:1 11036:2 11080:1 11117:1 11135:1 11163:1 11167:1 11175:2 11177:1 11182:1 11184:1 11185:4 11199:2 11201:1 11212:1 11218:1 11220:1 11244:1 11263:1 11274:1 11283:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:3 11450:2 11460:1 11465:1 11473:2 11545:1 11548:1 11568:1 11578:1 11579:1 11604:1 11612:2 11614:2 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:1 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11793:1 11797:1 11806:1 11813:1 11823:2 11829:1 11832:1 11841:1 11854:2 11855:2 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11901:2 11906:2 11912:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11958:1 11983:2 11993:1 12013:1 12035:1 12049:1 12055:1 12095:1 12119:1 12134:1 12138:2 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12224:2 12227:2 12231:1 12239:1 12257:1 12258:2 12287:1 12289:1 12301:1 12306:2 12315:1 12343:2 12350:1 12362:1 12369:2 12370:2 12375:1 12382:1 12398:1 12415:1 12422:2 12440:1 12470:1 12479:1 12483:2 12488:1 12517:3 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12644:1 12652:1 12660:1 12680:1 12720:1 12744:1 12763:1 12780:2 12799:1 12801:1 12803:2 12810:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:4 12934:1 12939:2 12948:2 12953:1 12956:1 12960:1 12963:1 12978:1 12993:1 12998:1 13016:1 13023:1 13034:1 13037:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:1 13370:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:3 13408:1 13412:4 13420:1 13422:1 13424:1 13436:5 13444:1 13467:2 13473:1 13484:2 13494:1 13495:1 13513:1 13517:1 13519:1 13535:1 13554:1 13559:2 13566:3 13569:1 13587:1 13601:1 13612:1 13613:1 13620:1 13644:2 13650:1 13652:1 13689:1 13694:1 13716:5 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13908:1 13920:1 13938:1 13948:2 13952:1 13953:2 13959:2 13968:1 13978:1 13982:1 13994:1 14002:1 14026:1 14067:2 14074:1 14094:1 14114:2 14167:5 14171:4 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:1 14314:1 14328:1 14337:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:1 14470:1 14476:2 14526:1 14550:2 14557:1 14560:1 14566:1 14569:1 14579:1 14591:2 14593:1 14597:1 14598:1 14611:1 14626:1 14635:1 14641:1 14666:1 14675:3 14691:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:1 14763:1 14771:1 14783:1 14786:1 14794:1 14816:3 14836:2 14852:1 14855:1 14872:1 14873:3 14909:1 14911:1 14930:1 14934:1 14940:1 14948:2 14967:1 14979:5 14986:1 15017:2 15021:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:3 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:1 15374:1 15425:1 15459:1 15466:1 15491:1 15519:1 15522:1 15545:1 15570:1 15589:1 15594:1 15637:1 15648:1 15692:9 15706:1 15746:1 15768:1 15783:1 15785:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:1 15875:1 15877:1 15920:1 15931:2 15942:1 15948:1 15956:6 15962:1 15964:1 15965:1 15975:1 15976:3 15979:1 15980:1 15984:1 15992:1 15993:2 16010:1 16027:1 16033:2 16034:1 16041:2 16056:2 16078:1 16084:2 16106:1 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:3 16186:1 16219:1 16225:1 16237:1 16276:2 16279:2 16295:3 16334:1 16338:1 16341:1 16358:1 16362:1 16374:2 16412:5 16436:3 16449:1 16459:2 16461:1 16470:2 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16559:2 16560:1 16570:2 16585:1 16602:1 16686:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17035:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17164:1 17171:1 17181:2 17201:2 17213:2 17219:1 17235:1 17238:4 17258:2 17276:1 17284:1 17299:4 17308:1 17309:1 17316:1 17327:1 17342:2 17370:1 17404:5 17412:1 17433:1 17434:1 17440:3 17478:1 17493:1 17513:1 17518:1 17521:1 17525:2 17534:1 17576:2 17577:1 17588:1 17629:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:4 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17888:2 17896:2 17897:1 17912:1 17918:1 17936:1 17943:1 17950:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18047:2 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:3 18181:2 18188:1 18197:1 18220:2 18226:1 18232:1 18248:1 18249:1 18264:1 18267:1 18278:1 18282:1 18283:1 18325:1 18326:1 18338:1 18345:2 18346:1 18348:1 18373:1 18429:1 18431:1 18437:1 18444:1 18447:1 18455:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18648:1 18657:2 18665:1 18695:1 18699:2 18706:1 18727:1 18744:3 18800:7 18809:2 18810:1 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:1 18934:1 18938:1 18960:1 18963:1 18970:3 18984:1 18994:1 19004:1 19029:1 19033:2114 19052:3 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19228:1 19241:1 19242:1 19243:1 19246:1 19262:1 19303:1 19310:1 19323:1 19326:1 19333:1 19352:1 19377:1 19394:1 19397:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:1 19632:2 19659:3 19705:1 19720:1 19721:1 19723:1 19726:1 19734:1 19739:3 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19823:1 19827:5 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19895:1 19916:3 19926:1 19932:1 19933:1 19937:2 19959:1 19967:2 19979:1 20000:1 20011:1 20034:1 20046:3 20049:1 20053:2 20100:1 20109:1 20112:1 20136:1 20159:1 20166:3 20179:1 20185:1 20193:1 20212:1 20235:1 20250:1 20257:1 20279:1 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20360:1 20370:1 20384:1 20399:1 20401:1 20404:2 20418:1 20420:2 20424:1 20426:1 20427:2 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:2 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20664:1 20671:1 20680:1 20703:3 20709:1 20711:1 20722:1 20737:1 20748:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20904:3 20911:1 20925:1 20929:1 20947:1 20955:1 20959:4 20969:2 20971:1 20974:1 20979:1 21033:1 21042:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21167:1 21188:2 21190:1 21193:1 21217:3 21219:1 21232:1 21239:1 21264:3 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21462:2 21509:2 21517:1 21522:1 21529:2 21534:1 21535:2 21550:1 21556:1 21565:1 21572:1 21582:1 21585:1 21599:1 21633:1 21635:1 21669:1 21685:2 21695:1 21704:1 21713:2 21715:2 21752:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21891:1 21905:1 21929:1 21939:2 21940:1 21948:1 21952:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22046:1 22052:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22115:1 22118:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:3 22386:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22699:1 22707:1 22715:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:2 22868:1 22872:2 22882:1 22887:1 22896:1 22924:3 22931:2 22942:2 22992:1 22998:3 23022:2 23035:1 23043:2 23045:4 23049:1 23071:1 23094:1 23100:1 23110:2 23135:1 23146:2 23163:5 23170:1 23173:1 23187:2 23196:3 23199:1 23202:3 23209:1 23213:2 23218:1 23241:2 23244:1 23275:2 23302:3 23307:1 23312:2 23315:3 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:1 23514:1 23526:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23870:2 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:1 24038:1 24052:1 24066:1 24072:1 24074:2 24087:3 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24214:1 24242:1 24243:1 24254:3 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24549:2 24580:1 24587:1 24594:1 24598:2 24610:2 24611:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24755:1 24756:1 24759:1 24761:3 24762:1 24763:1 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:2 25036:1 25038:1 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25092:1 25121:1 25145:1 25146:1 25154:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:10 25327:1 25328:1 25350:5 25361:1 25364:2 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25562:1 25583:1 25595:1 25600:1 25610:1 25611:2 25624:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:3 25854:6 25869:1 25879:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:1 26076:3 26083:1 26095:1 26106:2 26108:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26315:1 26329:1 26331:2 26345:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:1 26527:2 26593:1 26597:1 26606:1 26622:2 26632:1 26634:1 26637:1 26653:1 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26699:1 26704:1 26706:1 26712:1 26713:1 26729:1 26771:4 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:2 26949:1 26970:1 26981:2 26992:1 27006:3 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27158:1 27163:1 27165:1 27167:1 27169:1 27210:1 27222:1 27268:2 27276:1 27278:1 27281:3 27284:1 27298:1 27318:1 27341:1 27344:1 27351:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:3 27547:1 27549:1 27566:1 27598:1 27603:1 27605:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:3 27680:1 27706:1 27718:1 27768:1 27772:3 27791:1 27801:1 27802:3 27806:2 27838:1 27859:2 27872:3 27874:3 27883:1 27927:1 27932:1 27938:3 27964:2 27971:1 27978:3 27989:2 28035:1 28047:1 28054:5 28058:2 28063:2 28066:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28300:1 28318:1 28360:1 28376:2 28379:1 28388:1 28391:1 28405:1 28414:1 28423:1 28427:1 28439:1 28441:1 28447:7 28457:1 28528:1 28545:1 28547:1 28577:1 28580:1 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:1 28648:1 28651:3 28658:1 28660:2 28673:2 28676:2 28677:3 28685:1 28716:4 28722:1 28726:1 28736:1 28755:1 28765:1 28795:1 28803:1 28808:1 28811:1 28834:14 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:5 28882:1 28887:3 28911:1 28923:3 28927:1 28951:1 28993:2 29001:3 29010:1 29015:1 29038:3 29057:1 29069:1 29080:1 29092:1 29095:2 29108:1 29113:1 29115:1 29127:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29281:1 29301:2 29322:1 29351:1 29364:2 29367:3 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29427:1 29509:1 29537:1 29552:1 29555:1 29557:1 29572:4 29576:1 29590:1 29593:2 29601:1 29635:1 29636:2 29690:1 29701:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:2 29804:1 29806:1 29816:1 29858:1 29861:1 29870:1 29883:1 29888:1 29901:1 29912:1 29919:1 29951:1 29965:1 29974:2 29995:2 29999:2 30013:1 30020:1 30055:2 30077:1 30095:2 30106:3 30108:1 30119:1 30129:1 30150:1 30156:1 30165:1 30176:1 30180:1 30183:2 30185:2 30189:1 30190:2 30191:1 30197:5 30205:1 30208:3 30209:1 30213:4 30253:1 30258:1 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:1 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 57:1 61:2 69:1 80:1 91:1 93:1 94:1 100:1 105:1 129:1 138:1 147:1 149:1 158:1 169:1 177:1 182:1 183:1 186:2 187:1 220:1 225:4 265:1 266:1 278:2 279:2 303:1 350:1 385:1 387:3 389:1 393:2 439:1 475:1 483:6 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 663:1 678:3 685:2 691:3 723:2 725:1 726:1 730:1 734:1 737:1 748:1 755:2 799:1 804:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:3 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1068:1 1075:1 1098:1 1104:1 1112:1 1121:1 1123:1 1134:2 1137:1 1142:1 1162:1 1170:1 1197:1 1225:1 1229:1 1231:1 1234:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1391:1 1400:2 1407:1 1414:1 1421:1 1442:1 1447:1 1448:1 1490:1 1522:1 1524:2 1533:1 1548:1 1555:1 1558:3 1574:2 1576:1 1579:2 1598:1 1604:4 1607:8 1614:9 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1756:1 1767:1 1789:1 1795:1 1796:1 1803:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:2 1947:1 1948:2 1949:2 1952:1 1970:1 1971:1 1979:1 1980:1 1982:1 1993:4 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:3 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2336:2 2337:1 2338:1 2339:3 2341:4 2345:1 2346:1 2353:1 2356:1 2361:2 2363:2 2364:3 2367:1 2370:1 2395:1 2396:3 2398:1 2401:2 2402:2 2403:2 2404:1 2409:1 2411:3 2414:2 2415:2 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2585:1 2611:1 2624:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2817:3 2819:1 2828:3 2842:1 2843:1 2847:4 2854:2 2855:1 2863:2 2877:1 2885:1 2887:1 2891:3 2897:1 2902:1 2911:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:5 3011:1 3015:1 3016:6 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:6 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3115:1 3123:1 3125:2 3131:1 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3325:1 3337:1 3355:1 3359:1 3360:1 3374:2 3382:1 3410:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3488:1 3513:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3656:1 3669:1 3675:1 3676:1 3684:1 3696:2 3700:1 3707:3 3729:1 3753:1 3768:1 3800:3 3810:1 3813:1 3833:2 3835:1 3876:1 3879:2 3884:2 3885:8 3896:1 3901:1 3907:1 3912:1 3915:4 3916:2 3919:1 3920:1 3927:1 3930:3 3946:3 3949:1 3964:3 3984:1 4058:1 4072:1 4077:1 4085:1 4089:1 4095:1 4108:1 4111:1 4132:1 4136:1 4140:3 4150:2 4153:1 4169:1 4171:1 4175:2 4203:1 4216:1 4224:1 4251:1 4263:1 4296:1 4306:1 4309:1 4340:5 4344:4 4351:1 4361:1 4369:1 4370:4 4392:2 4405:2 4436:4 4450:2 4462:1 4477:2 4490:1 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4627:1 4635:1 4663:2 4672:4 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:2 4770:1 4788:3 4809:1 4825:5 4851:1 4856:3 4889:1 4915:1 4950:1 5022:27 5024:2 5058:1 5128:1 5145:1 5146:3 5169:2 5170:4 5171:3 5172:1 5174:1 5177:2 5180:1 5181:3 5185:1 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:2 5426:1 5433:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:1 5646:1 5656:1 5657:1 5660:3 5670:2 5674:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5732:2 5733:1 5737:2 5747:1 5751:1 5757:2 5762:1 5769:1 5774:1 5776:1 5803:1 5804:6 5807:1 5815:1 5830:3 5843:1 5855:1 5857:1 5876:1 5878:1 5882:1 5907:3 5927:1 5931:3 5933:1 5965:1 5977:1 6008:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6182:1 6185:2 6223:1 6229:1 6231:2 6236:4 6276:1 6293:4 6308:1 6325:1 6340:1 6359:1 6364:1 6366:1 6378:1 6407:1 6408:1 6409:1 6423:1 6437:1 6450:1 6466:1 6501:2 6504:1 6505:1 6509:1 6510:1 6512:3 6513:1 6516:3 6518:2 6520:1 6521:1 6522:2 6526:1 6529:7 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6673:1 6679:1 6684:3 6694:1 6698:1 6718:1 6722:2 6726:1 6745:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6881:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:3 6937:1 6941:1 6954:1 6962:4 6977:1 6994:1 6997:2 7000:1 7001:2 7014:1 7042:1 7044:1 7071:1 7074:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:4 7314:2 7317:1 7330:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:3 7801:4 7810:1 7820:1 7825:1 7827:1 7829:1 7849:1 7855:2 7856:1 7873:33 7886:1 7895:7 7897:5 7931:1 7942:1 7954:2 7956:1 7968:1 7971:2 8011:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8246:2 8278:1 8285:1 8294:1 8300:1 8306:2 8321:1 8340:1 8349:2 8354:1 8357:14 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8502:1 8515:1 8551:1 8564:1 8586:1 8591:1 8594:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8733:1 8736:1 8738:2 8741:1 8744:3 8745:1 8751:2 8756:1 8785:2 8809:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8909:1 8916:1 8955:1 8960:1 8971:2 8978:1 8990:1 8997:1 9003:2 9011:1 9043:1 9045:1 9058:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9187:1 9198:1 9204:1 9212:2 9214:1 9224:1 9230:1 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9391:1 9393:1 9400:4 9404:1 9417:1 9420:1 9427:1 9428:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9641:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:1 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:1 9866:1 9884:2 9894:1 9901:1 9904:1 9930:1 9931:2 9936:1 9965:5 9970:1 9985:1 9986:1 9988:1 9989:2 10012:1 10027:1 10028:1 10052:1 10062:1 10065:1 10077:1 10094:1 10117:2 10127:2 10134:1 10151:1 10158:2 10161:1 10165:1 10168:1 10169:1 10174:1 10178:2 10193:1 10196:2 10201:2 10204:1 10209:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10330:4 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10495:1 10511:1 10524:1 10527:2 10530:2 10551:2 10557:1 10584:1 10601:1 10604:2 10627:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:3 10702:1 10703:1 10715:1 10727:1 10729:5 10749:1 10750:1 10758:1 10761:1 10762:1 10798:1 10803:3 10805:1 10808:2 10825:1 10827:1 10831:1 10832:2 10841:1 10852:1 10885:1 10897:2 10903:1 10904:1 10913:3 10916:1 10924:2 10942:1 10968:1 10980:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11135:1 11161:1 11163:1 11167:1 11175:3 11177:1 11182:1 11184:1 11185:4 11199:2 11201:1 11212:1 11218:1 11220:1 11244:1 11263:1 11272:1 11274:1 11283:1 11300:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:3 11450:2 11460:1 11465:1 11473:2 11545:1 11548:1 11568:1 11578:1 11579:1 11604:1 11612:2 11614:2 11620:1 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11744:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11793:1 11797:1 11806:1 11813:1 11823:2 11829:1 11832:1 11841:1 11854:2 11855:2 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11901:2 11906:2 11912:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11958:1 11963:1 11983:2 11993:1 12013:1 12035:1 12049:1 12055:1 12067:1 12095:1 12119:1 12134:1 12138:2 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12224:2 12227:2 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12315:1 12343:2 12344:1 12350:1 12362:1 12369:2 12370:2 12375:1 12382:1 12398:1 12415:1 12422:2 12440:1 12470:1 12479:1 12483:2 12488:1 12517:3 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12644:1 12652:1 12660:1 12680:1 12720:1 12744:1 12763:2 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:4 12934:1 12939:2 12948:2 12953:1 12956:1 12960:1 12963:1 12978:1 12993:1 12998:1 13016:1 13023:1 13034:1 13037:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:1 13370:1 13377:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:3 13408:1 13412:4 13420:1 13422:1 13424:1 13434:1 13436:5 13444:1 13467:2 13473:1 13484:2 13494:1 13495:1 13497:1 13513:1 13517:1 13519:1 13535:1 13554:1 13559:2 13566:3 13569:1 13587:1 13601:1 13612:1 13613:1 13620:1 13644:2 13650:1 13652:1 13689:1 13694:1 13716:5 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13908:1 13920:1 13938:1 13948:2 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13994:1 14002:1 14026:1 14067:2 14074:1 14094:1 14114:2 14154:1 14167:5 14171:4 14175:1 14205:1 14211:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:1 14314:1 14328:1 14337:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:1 14470:1 14476:2 14518:1 14526:1 14550:2 14557:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:2 14593:1 14597:1 14598:1 14611:1 14626:1 14635:1 14641:1 14666:1 14675:3 14691:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:1 14783:1 14786:1 14794:1 14816:3 14836:2 14846:1 14852:1 14855:1 14872:1 14873:3 14909:1 14911:1 14930:1 14934:1 14940:1 14948:2 14967:1 14979:5 14986:1 15017:2 15021:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:2 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:1 15265:3 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15374:1 15425:1 15442:1 15459:1 15466:1 15488:1 15491:1 15519:1 15522:1 15545:1 15570:1 15589:1 15594:1 15637:1 15648:1 15692:10 15706:1 15746:1 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:1 15875:1 15877:1 15920:1 15931:2 15942:1 15948:1 15956:6 15962:1 15964:1 15965:2 15975:1 15976:3 15979:1 15980:1 15984:1 15992:1 15993:2 16010:1 16027:1 16033:2 16034:1 16041:2 16056:3 16078:1 16084:2 16106:1 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:3 16186:1 16219:1 16225:1 16237:1 16276:2 16279:2 16295:3 16334:1 16338:1 16341:1 16358:1 16362:1 16374:2 16389:1 16412:5 16436:3 16449:1 16459:2 16461:1 16470:2 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:1 16570:2 16585:1 16602:1 16686:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17035:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17164:1 17171:1 17176:1 17181:2 17201:2 17213:2 17219:1 17235:1 17238:4 17258:2 17276:1 17284:1 17299:4 17308:1 17309:1 17316:1 17327:1 17342:2 17370:1 17404:6 17412:1 17433:1 17434:1 17440:3 17478:1 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17629:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:4 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:2 17896:2 17897:1 17912:1 17918:1 17936:1 17943:1 17950:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18047:2 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:3 18181:2 18188:1 18197:1 18220:2 18226:1 18232:1 18248:1 18249:1 18264:1 18267:1 18273:1 18278:1 18282:1 18283:1 18325:1 18326:1 18338:1 18345:2 18346:1 18348:1 18373:1 18429:1 18431:1 18437:1 18444:1 18447:1 18455:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18648:1 18657:2 18665:1 18695:1 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:1 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:1 18934:1 18938:1 18960:1 18963:1 18970:3 18984:1 18994:1 19004:1 19029:1 19033:2217 19052:3 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19228:1 19241:1 19242:1 19243:1 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19352:1 19377:1 19394:1 19397:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19632:2 19659:3 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:1 19739:3 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19823:1 19827:5 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19916:3 19926:1 19932:1 19933:1 19937:2 19959:1 19967:2 19979:1 20000:1 20011:1 20034:1 20046:3 20049:1 20053:3 20100:1 20109:1 20112:1 20136:1 20159:1 20166:3 20179:1 20185:1 20193:1 20212:1 20235:1 20250:1 20257:1 20279:1 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:1 20399:1 20401:1 20404:2 20418:1 20420:2 20424:1 20426:1 20427:2 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20664:1 20671:1 20680:1 20703:3 20709:2 20711:1 20722:1 20737:1 20748:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20904:3 20911:1 20925:1 20929:1 20947:1 20955:1 20959:4 20969:2 20971:1 20974:1 20979:1 21033:1 21042:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21165:1 21167:1 21188:2 21190:1 21193:1 21217:3 21219:1 21232:1 21239:1 21264:3 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21462:2 21509:2 21517:1 21522:1 21529:2 21534:1 21535:2 21541:1 21550:1 21556:1 21565:1 21572:1 21582:1 21585:1 21599:1 21628:1 21633:1 21635:1 21669:1 21685:2 21695:1 21704:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21891:1 21905:1 21929:1 21939:2 21940:1 21948:1 21952:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22046:1 22052:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22115:1 22118:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:3 22386:2 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22699:1 22707:1 22715:1 22722:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:2 22868:1 22872:2 22882:1 22887:1 22896:1 22924:3 22931:3 22942:2 22992:1 22998:3 23022:2 23035:1 23043:2 23045:4 23049:1 23071:1 23094:1 23100:1 23110:2 23135:1 23146:2 23163:5 23170:1 23173:2 23187:2 23196:3 23199:1 23202:3 23209:1 23213:2 23218:1 23241:2 23244:1 23265:1 23275:3 23302:3 23307:1 23312:2 23315:3 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23870:2 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:1 24038:1 24052:1 24066:1 24072:1 24074:2 24087:3 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24214:2 24232:1 24242:1 24243:1 24254:3 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24549:2 24580:1 24587:1 24594:1 24598:2 24610:2 24611:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24755:1 24756:1 24759:1 24761:4 24762:1 24763:1 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24859:1 24860:2 24879:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:2 25036:1 25038:1 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25092:1 25121:1 25145:1 25146:1 25154:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:1 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:10 25327:1 25328:1 25350:6 25361:1 25364:2 25383:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25562:1 25576:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:3 25854:6 25862:1 25866:1 25869:1 25879:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:1 26076:3 26083:1 26095:1 26106:2 26108:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26315:1 26329:1 26331:3 26345:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:1 26527:2 26582:1 26593:1 26597:1 26606:1 26622:2 26632:1 26634:1 26637:1 26653:2 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26699:1 26704:1 26706:1 26712:1 26713:1 26729:1 26771:4 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:2 26949:1 26970:1 26981:2 26992:1 27006:3 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27210:1 27222:1 27268:2 27276:1 27278:1 27281:3 27284:1 27298:1 27318:1 27341:1 27344:1 27351:1 27361:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:3 27547:1 27549:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:3 27680:1 27706:1 27718:1 27741:1 27768:1 27772:3 27791:1 27801:1 27802:3 27806:2 27838:1 27859:2 27872:3 27874:3 27883:1 27927:1 27932:1 27937:1 27938:3 27964:2 27971:1 27978:4 27989:2 28035:1 28047:1 28054:5 28058:2 28063:2 28066:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28318:1 28360:1 28376:2 28379:1 28388:1 28391:1 28405:1 28414:1 28423:1 28427:1 28439:1 28441:1 28447:7 28457:1 28528:1 28539:1 28545:1 28547:1 28577:1 28580:1 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:2 28673:2 28676:2 28677:3 28685:1 28716:4 28722:1 28726:1 28736:1 28746:1 28755:1 28765:1 28795:1 28803:1 28808:1 28811:1 28834:14 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:5 28882:1 28887:3 28911:1 28923:3 28927:1 28951:1 28993:2 29001:3 29010:1 29015:1 29038:3 29057:1 29069:1 29080:1 29092:1 29095:2 29108:1 29113:1 29115:1 29127:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29272:1 29281:1 29301:2 29322:1 29351:1 29364:3 29367:4 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29427:1 29509:1 29537:1 29548:1 29552:1 29555:1 29557:1 29572:4 29576:1 29590:1 29593:2 29601:1 29635:1 29636:2 29664:1 29690:1 29701:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:2 29804:1 29806:1 29807:1 29816:2 29858:1 29861:1 29870:1 29883:1 29888:1 29901:1 29912:1 29919:1 29951:1 29965:1 29974:2 29995:2 29999:2 30013:1 30020:1 30055:2 30077:1 30092:1 30095:3 30106:3 30108:1 30119:1 30129:1 30150:1 30156:1 30165:1 30176:1 30180:1 30183:2 30185:2 30189:1 30190:2 30191:1 30197:5 30205:1 30208:4 30209:1 30213:4 30253:1 30258:1 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:1 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 57:1 61:2 69:1 76:1 80:1 91:1 93:1 94:1 100:1 102:1 105:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 220:1 225:4 265:1 266:1 278:2 279:2 303:1 350:1 385:1 386:1 387:4 389:1 393:2 439:1 475:1 483:7 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:4 723:2 725:1 726:1 730:1 734:1 737:1 748:1 755:2 799:2 804:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:3 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1068:1 1075:1 1098:1 1104:1 1112:1 1121:1 1123:1 1134:2 1137:1 1142:1 1162:1 1170:1 1197:1 1225:1 1229:1 1231:1 1234:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1533:1 1548:1 1555:1 1558:3 1574:2 1576:1 1579:2 1598:1 1604:4 1607:8 1614:9 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1750:1 1756:2 1767:2 1789:1 1795:1 1796:1 1803:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:2 1949:2 1952:1 1970:1 1971:1 1979:1 1980:1 1982:1 1993:4 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:3 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2294:3 2298:1 2310:1 2315:1 2316:1 2333:1 2336:2 2337:1 2338:1 2339:4 2341:4 2345:1 2346:1 2353:1 2356:1 2361:2 2363:2 2364:3 2367:1 2370:1 2389:1 2395:1 2396:3 2398:1 2401:2 2402:2 2403:2 2404:1 2409:1 2411:3 2414:2 2415:2 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2585:1 2611:1 2624:1 2628:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2817:3 2819:1 2828:3 2842:1 2843:1 2847:5 2854:2 2855:1 2863:2 2877:1 2885:1 2887:1 2891:3 2897:1 2902:1 2911:2 2918:1 2927:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:6 3011:1 3015:1 3016:7 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:8 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3115:1 3123:1 3125:2 3131:1 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3325:1 3337:1 3355:1 3359:1 3360:1 3374:2 3382:1 3410:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3488:1 3513:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3656:1 3669:1 3675:1 3676:1 3684:1 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3768:1 3800:3 3810:1 3813:1 3833:2 3835:1 3876:1 3879:2 3884:2 3885:9 3896:1 3901:1 3907:1 3912:2 3915:4 3916:2 3919:1 3920:1 3927:1 3930:3 3946:4 3949:1 3964:3 3984:1 4058:1 4072:1 4077:1 4085:1 4089:1 4095:1 4108:1 4111:1 4132:1 4136:1 4140:3 4144:1 4150:3 4153:1 4169:1 4171:1 4175:2 4203:1 4216:1 4217:1 4224:1 4251:1 4263:1 4296:1 4306:1 4307:1 4309:1 4340:5 4344:4 4351:1 4361:1 4369:1 4370:4 4392:2 4405:2 4427:1 4436:5 4450:2 4462:1 4477:2 4490:1 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:4 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4788:3 4809:1 4825:5 4851:1 4856:3 4889:1 4915:1 4950:1 4968:1 5022:27 5024:2 5058:1 5128:1 5145:1 5146:3 5169:2 5170:4 5171:3 5172:1 5174:1 5177:2 5180:1 5181:3 5185:1 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:2 5426:1 5433:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:1 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5732:2 5733:1 5737:2 5739:1 5747:1 5751:1 5757:2 5762:1 5769:1 5774:1 5776:1 5803:1 5804:6 5807:1 5815:1 5830:3 5843:1 5855:1 5857:1 5876:1 5878:1 5882:1 5885:1 5895:1 5907:4 5927:1 5931:3 5933:1 5965:1 5977:1 6008:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6182:1 6185:2 6223:1 6229:1 6231:2 6236:4 6276:1 6293:6 6308:1 6325:1 6340:1 6359:1 6364:1 6366:1 6378:1 6382:1 6402:1 6407:1 6408:2 6409:1 6423:1 6437:2 6450:1 6466:1 6501:2 6504:1 6505:1 6509:1 6510:1 6512:3 6513:1 6516:3 6518:2 6520:1 6521:1 6522:2 6526:1 6529:7 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6673:1 6679:1 6684:5 6694:1 6698:1 6718:1 6722:2 6726:1 6745:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6881:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:3 6937:1 6941:1 6954:1 6962:4 6977:1 6994:1 6997:2 7000:1 7001:2 7014:1 7021:1 7042:1 7044:1 7071:1 7074:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:4 7314:2 7317:1 7330:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:2 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:4 7801:4 7810:1 7820:1 7825:1 7827:1 7829:1 7849:1 7855:2 7856:1 7873:33 7886:1 7895:8 7897:5 7931:1 7942:1 7954:2 7956:1 7968:1 7971:2 8011:1 8030:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8246:2 8278:1 8285:1 8294:1 8300:2 8306:2 8317:1 8321:1 8340:1 8349:2 8354:1 8357:14 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8469:1 8479:1 8502:1 8515:1 8551:1 8564:1 8586:1 8591:1 8594:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8733:1 8736:1 8738:2 8741:1 8744:3 8745:1 8751:2 8756:1 8761:1 8785:2 8809:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8909:1 8916:1 8955:1 8960:1 8971:2 8978:1 8990:1 8997:1 9003:2 9011:1 9043:1 9045:1 9058:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9181:1 9187:1 9198:1 9204:1 9212:2 9214:1 9224:1 9230:1 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9391:1 9393:1 9400:5 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:1 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:1 9862:1 9866:1 9884:2 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:6 9970:1 9985:1 9986:1 9988:1 9989:2 10012:1 10017:1 10027:1 10028:1 10052:1 10062:1 10065:1 10077:1 10094:1 10117:2 10127:2 10134:1 10151:1 10158:2 10160:1 10161:1 10165:1 10168:1 10169:1 10174:1 10178:3 10193:1 10196:2 10201:2 10204:1 10209:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10330:6 10334:1 10337:2 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10495:1 10511:1 10521:1 10524:1 10527:2 10530:2 10551:2 10557:1 10584:1 10601:1 10604:2 10627:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:3 10702:1 10703:1 10715:1 10727:1 10729:5 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10798:1 10803:3 10805:1 10808:2 10825:1 10827:1 10831:1 10832:2 10841:1 10852:1 10885:1 10897:3 10903:1 10904:1 10913:3 10916:1 10924:2 10942:1 10968:1 10980:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11135:1 11161:2 11163:1 11167:1 11175:3 11177:1 11182:1 11184:1 11185:4 11199:2 11201:1 11212:1 11218:1 11220:1 11244:1 11263:1 11272:1 11274:1 11283:1 11300:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:3 11450:2 11460:1 11465:1 11473:2 11545:1 11548:1 11568:1 11578:1 11579:1 11604:1 11612:2 11614:2 11620:1 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11744:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11793:1 11797:2 11806:1 11813:1 11823:2 11829:1 11832:1 11840:1 11841:1 11854:2 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11901:2 11906:2 11912:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12049:1 12055:1 12067:2 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12343:2 12344:1 12350:1 12362:1 12369:2 12370:3 12375:1 12382:1 12398:1 12412:1 12415:1 12422:2 12440:1 12470:1 12479:1 12483:2 12488:1 12517:4 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12628:1 12644:1 12652:1 12660:1 12680:1 12720:1 12744:1 12763:2 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:5 12934:1 12939:2 12948:2 12953:1 12956:1 12960:1 12963:1 12978:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:4 13408:1 13412:4 13420:1 13422:1 13424:1 13434:1 13436:6 13444:1 13467:2 13473:1 13484:2 13494:1 13495:1 13497:1 13513:1 13517:1 13519:1 13535:1 13554:1 13559:2 13566:4 13569:1 13587:1 13601:1 13612:2 13613:1 13620:1 13644:2 13650:1 13652:1 13689:1 13694:1 13716:5 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13908:1 13920:1 13938:1 13948:2 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13994:1 14002:1 14026:1 14067:3 14074:1 14094:1 14111:1 14114:2 14154:1 14167:5 14171:4 14175:1 14205:1 14211:1 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:1 14314:1 14328:1 14337:1 14354:1 14361:1 14362:1 14365:1 14375:3 14382:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14518:1 14526:1 14550:2 14557:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:2 14593:1 14597:1 14598:1 14611:1 14626:1 14635:1 14641:1 14666:1 14675:4 14691:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:1 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14872:1 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:2 14967:1 14979:5 14986:1 15017:2 15021:1 15035:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:3 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:2 15253:2 15265:3 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:1 15488:1 15491:1 15519:1 15522:1 15545:1 15570:1 15589:1 15594:1 15637:1 15648:1 15671:1 15692:11 15706:1 15746:1 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:1 15875:1 15877:1 15920:1 15931:3 15942:1 15948:1 15956:7 15962:1 15964:1 15965:2 15975:1 15976:3 15979:1 15980:1 15984:1 15992:2 15993:2 16000:1 16010:1 16027:1 16033:2 16034:1 16041:2 16056:3 16078:1 16084:2 16106:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:3 16186:1 16219:1 16225:1 16237:1 16276:2 16279:2 16295:3 16334:1 16338:1 16341:1 16358:1 16362:1 16374:3 16389:1 16412:5 16436:3 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:1 16570:2 16585:1 16602:1 16619:1 16686:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17035:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:2 17164:1 17171:1 17176:2 17181:2 17201:2 17213:2 17219:1 17235:1 17238:4 17258:2 17276:1 17284:1 17299:4 17308:1 17309:1 17316:1 17327:1 17342:2 17370:1 17404:6 17412:1 17433:1 17434:1 17440:3 17443:1 17478:1 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17629:1 17649:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:4 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:2 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18047:2 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:4 18181:2 18188:1 18197:1 18220:2 18226:1 18232:1 18248:1 18249:1 18264:1 18267:1 18273:1 18278:1 18282:1 18283:1 18325:1 18326:1 18338:1 18345:2 18346:2 18348:1 18373:1 18395:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:1 18455:1 18460:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18648:1 18657:2 18665:1 18695:1 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:1 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:1 18934:1 18938:1 18960:1 18963:1 18970:3 18984:1 18991:1 18994:1 19004:1 19029:1 19033:2362 19052:3 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19352:2 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19632:2 19655:1 19659:3 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:1 19739:3 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19823:1 19827:5 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19916:3 19926:1 19932:1 19933:1 19937:2 19959:1 19967:2 19979:1 20000:1 20011:1 20034:1 20046:3 20049:1 20053:3 20100:1 20109:1 20112:1 20136:1 20159:1 20166:3 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:2 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:1 20399:1 20401:1 20404:2 20418:1 20420:2 20424:1 20426:1 20427:2 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20658:1 20664:1 20671:1 20680:1 20703:4 20709:2 20711:1 20722:1 20737:1 20748:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20904:3 20911:1 20925:1 20929:1 20947:1 20955:1 20959:4 20969:2 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21165:1 21167:1 21188:2 21190:1 21193:1 21217:3 21219:1 21232:1 21239:1 21264:4 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21462:2 21509:2 21517:1 21522:1 21529:3 21534:1 21535:2 21541:1 21550:1 21556:1 21565:1 21572:1 21582:1 21585:2 21599:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21891:1 21905:1 21929:1 21939:3 21940:1 21948:1 21952:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22046:1 22052:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22112:1 22115:1 22118:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:5 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22348:1 22353:2 22372:1 22376:1 22379:2 22381:1 22384:3 22386:2 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22699:1 22707:1 22715:1 22722:1 22727:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:3 22868:1 22872:2 22882:1 22887:1 22896:1 22924:4 22931:3 22942:2 22992:1 22998:3 23022:2 23035:1 23036:1 23043:2 23045:4 23049:1 23071:1 23094:1 23100:1 23110:2 23135:1 23146:2 23163:5 23170:1 23173:2 23187:2 23196:3 23199:1 23202:3 23209:1 23213:2 23218:1 23228:1 23241:2 23244:1 23265:1 23275:4 23286:1 23302:3 23304:1 23307:1 23312:4 23315:3 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:2 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23870:2 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:1 24038:1 24052:1 24066:1 24072:1 24074:2 24087:3 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24214:2 24232:1 24241:1 24242:1 24243:1 24254:3 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24527:1 24533:1 24549:2 24580:1 24587:1 24594:1 24598:2 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24743:1 24755:1 24756:1 24759:1 24761:5 24762:1 24763:1 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24859:1 24860:2 24879:1 24885:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:2 25036:1 25038:1 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25092:1 25121:2 25145:1 25146:1 25154:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:1 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:10 25327:1 25328:1 25350:6 25361:1 25364:2 25383:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25562:1 25576:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:6 25855:1 25862:1 25866:1 25869:1 25879:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:2 26076:3 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:3 26345:2 26349:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:1 26527:2 26582:1 26593:1 26597:1 26606:1 26622:2 26632:1 26634:2 26637:1 26643:1 26653:2 26660:1 26671:1 26680:1 26684:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26712:1 26713:1 26729:1 26771:4 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:2 26949:1 26959:1 26970:1 26981:2 26992:1 27006:3 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27268:3 27276:1 27278:1 27281:3 27284:1 27298:1 27309:1 27318:1 27341:1 27344:1 27351:1 27361:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27518:2 27533:4 27547:1 27549:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:4 27680:1 27706:1 27718:1 27741:1 27768:1 27772:3 27783:1 27791:1 27801:1 27802:3 27803:1 27806:2 27838:1 27842:1 27859:2 27872:4 27874:3 27883:1 27927:1 27932:1 27937:1 27938:3 27964:2 27971:1 27978:4 27989:2 28035:1 28047:1 28054:5 28058:2 28063:2 28066:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28318:1 28360:1 28376:2 28379:1 28388:1 28391:1 28405:1 28414:1 28423:1 28427:1 28439:1 28441:1 28447:7 28457:1 28528:1 28539:1 28545:1 28547:1 28577:1 28580:1 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:2 28673:2 28676:2 28677:3 28685:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28834:14 28835:2 28837:1 28839:2 28843:3 28852:1 28854:2 28873:6 28882:1 28887:3 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28993:2 29001:3 29010:1 29015:1 29038:4 29057:1 29069:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29272:1 29281:1 29301:2 29322:1 29351:1 29364:3 29367:4 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29427:1 29452:1 29509:1 29537:1 29548:2 29552:1 29555:1 29557:1 29572:4 29576:1 29590:1 29593:2 29601:1 29635:1 29636:2 29664:1 29690:1 29701:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:3 29804:1 29806:1 29807:1 29816:2 29858:1 29861:1 29870:1 29883:1 29888:1 29901:1 29912:1 29919:1 29951:1 29965:1 29974:2 29995:2 29999:3 30013:1 30020:1 30055:2 30077:1 30092:1 30095:4 30106:3 30108:1 30119:1 30129:1 30150:1 30156:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:5 30205:1 30208:4 30209:1 30213:4 30253:1 30258:1 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:1 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 57:1 61:2 69:1 76:1 80:1 91:1 93:1 94:1 100:1 102:1 105:2 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 220:1 225:4 243:1 265:1 266:1 278:2 279:2 303:1 350:1 385:1 386:1 387:4 389:1 393:2 439:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:5 715:1 723:3 725:1 726:1 730:1 734:1 737:1 747:1 748:1 755:2 799:2 804:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:3 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:1 1075:1 1098:1 1104:1 1112:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1197:1 1225:2 1229:1 1231:1 1234:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1533:1 1548:1 1555:1 1558:3 1574:2 1576:1 1579:2 1598:1 1604:4 1607:8 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1750:1 1756:2 1767:3 1789:1 1795:1 1796:1 1803:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:2 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1993:4 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:3 2180:1 2192:1 2193:1 2213:1 2215:1 2230:1 2234:1 2282:5 2290:1 2294:3 2298:1 2310:1 2315:1 2316:1 2333:1 2336:2 2337:1 2338:1 2339:4 2341:4 2345:1 2346:1 2353:1 2356:1 2361:2 2363:2 2364:3 2365:1 2367:1 2370:1 2389:1 2395:1 2396:3 2398:1 2401:2 2402:2 2403:2 2404:1 2409:1 2411:3 2414:2 2415:2 2419:2 2421:2 2426:4 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:1 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:5 2854:2 2855:1 2863:2 2877:1 2885:1 2887:1 2891:3 2897:1 2902:1 2911:2 2918:1 2921:1 2927:1 2938:1 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:7 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:8 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:1 3265:2 3274:1 3304:1 3325:1 3337:1 3355:1 3359:1 3360:1 3374:2 3382:1 3410:1 3418:1 3421:1 3434:1 3471:1 3478:1 3479:2 3488:1 3513:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3656:1 3669:1 3675:1 3676:1 3684:1 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3768:1 3800:4 3810:1 3813:2 3833:2 3835:1 3876:1 3879:2 3884:2 3885:9 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:1 3920:1 3927:1 3930:4 3932:1 3946:4 3949:1 3964:3 3984:1 4058:1 4072:1 4077:1 4085:1 4089:1 4095:1 4108:1 4111:1 4132:1 4136:1 4140:3 4144:1 4150:3 4153:1 4169:1 4171:1 4175:2 4203:1 4216:2 4217:1 4224:1 4251:1 4263:1 4296:1 4306:1 4307:1 4309:1 4340:5 4344:4 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4427:1 4436:5 4450:2 4462:1 4472:1 4477:2 4490:1 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4788:3 4809:1 4825:5 4851:1 4856:3 4889:1 4915:1 4950:1 4953:1 4968:1 5022:27 5024:2 5058:1 5128:1 5145:1 5146:3 5169:2 5170:6 5171:3 5172:1 5174:1 5177:2 5180:1 5181:3 5185:1 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5256:2 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5426:1 5433:1 5435:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:1 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:1 5714:2 5727:1 5728:1 5732:2 5733:1 5737:2 5739:1 5747:1 5751:1 5757:2 5762:1 5769:1 5774:1 5776:1 5803:1 5804:6 5807:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5882:1 5885:1 5895:1 5907:4 5927:1 5931:3 5933:1 5965:1 5977:1 6008:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6182:1 6185:3 6223:1 6229:1 6231:2 6236:4 6276:1 6293:6 6308:1 6325:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:1 6408:3 6409:1 6411:1 6423:1 6437:2 6450:1 6466:1 6501:2 6504:1 6505:1 6509:1 6510:1 6512:3 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6673:1 6679:1 6684:6 6694:1 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6881:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:3 6937:1 6941:1 6954:1 6962:4 6977:1 6994:1 6997:2 7000:1 7001:2 7014:1 7021:1 7042:1 7044:1 7071:1 7074:1 7089:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:5 7314:2 7317:1 7330:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:2 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:4 7801:4 7810:1 7820:1 7825:1 7827:1 7829:1 7849:1 7855:2 7856:1 7873:33 7886:1 7895:9 7897:5 7931:1 7942:1 7954:2 7956:1 7968:1 7971:2 8011:1 8030:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8246:2 8278:1 8285:1 8294:1 8300:3 8306:2 8317:1 8321:1 8340:1 8349:2 8354:1 8357:14 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8469:1 8479:1 8502:1 8515:1 8551:1 8564:1 8586:1 8591:1 8594:1 8603:1 8611:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8733:2 8736:1 8738:2 8741:2 8744:3 8745:1 8751:2 8756:1 8761:1 8785:2 8809:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8909:1 8916:1 8955:1 8960:1 8971:3 8978:1 8990:1 8997:1 9003:2 9011:1 9043:1 9045:1 9058:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9178:1 9181:1 9187:1 9198:1 9204:1 9212:2 9214:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9391:1 9393:1 9400:5 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:1 9862:1 9866:1 9884:2 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:6 9970:1 9985:1 9986:1 9988:1 9989:2 10012:1 10017:1 10027:1 10028:1 10052:1 10062:1 10065:1 10077:1 10094:1 10117:2 10127:2 10134:1 10151:2 10158:2 10160:1 10161:1 10165:1 10168:1 10169:1 10174:1 10178:3 10193:1 10196:2 10201:2 10204:1 10209:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10495:1 10511:1 10521:1 10524:1 10527:2 10530:3 10551:2 10557:1 10584:1 10601:1 10604:2 10627:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:6 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10798:1 10803:3 10805:1 10808:2 10825:1 10826:1 10827:1 10831:1 10832:2 10841:1 10852:1 10885:1 10897:3 10903:1 10904:1 10907:1 10913:3 10916:1 10924:2 10942:1 10968:1 10980:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11129:1 11135:1 11161:2 11163:1 11167:1 11175:3 11177:1 11182:1 11184:1 11185:4 11199:2 11201:1 11212:1 11218:1 11220:1 11244:1 11263:1 11272:1 11274:1 11283:1 11300:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:4 11450:2 11460:1 11465:1 11473:2 11545:1 11548:1 11568:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11744:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11793:1 11797:2 11806:1 11813:1 11823:2 11829:1 11832:1 11840:1 11841:1 11854:2 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11901:2 11906:2 11912:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12049:1 12055:1 12067:3 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12343:2 12344:1 12350:1 12362:1 12369:2 12370:3 12375:1 12382:1 12398:1 12412:1 12415:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:2 12488:1 12517:4 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12628:1 12644:1 12652:1 12658:1 12660:1 12680:1 12720:1 12744:1 12763:2 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:5 12934:1 12939:2 12948:2 12953:1 12956:1 12960:1 12963:1 12978:1 12987:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:3 13045:1 13049:1 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:4 13408:1 13412:4 13420:1 13422:1 13424:1 13434:2 13436:6 13444:1 13449:2 13467:2 13473:1 13484:2 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13545:1 13554:1 13559:2 13566:5 13569:1 13587:1 13601:1 13612:2 13613:1 13620:1 13644:2 13650:1 13652:1 13689:1 13694:1 13716:5 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:2 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13875:1 13908:1 13920:1 13938:1 13948:2 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13994:1 14002:1 14026:1 14067:4 14074:1 14075:1 14094:1 14111:1 14114:2 14154:1 14167:5 14171:4 14175:1 14205:1 14211:1 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:1 14314:1 14328:1 14337:1 14354:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14518:1 14526:1 14550:2 14557:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:2 14593:1 14597:1 14598:1 14611:1 14626:1 14635:1 14641:1 14666:1 14675:4 14691:2 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:1 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14872:2 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:2 14967:1 14979:5 14986:1 15017:2 15021:1 15035:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:3 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:2 15265:3 15274:1 15289:2 15316:2 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:2 15488:1 15491:1 15519:1 15522:1 15537:1 15545:1 15570:1 15589:1 15594:1 15637:1 15648:1 15659:1 15671:1 15692:12 15706:1 15746:1 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:2 15875:1 15877:1 15920:1 15931:3 15942:1 15948:1 15956:8 15962:1 15964:1 15965:2 15975:1 15976:3 15979:1 15980:1 15984:1 15992:2 15993:2 16000:1 16010:1 16027:1 16033:2 16034:1 16041:2 16056:3 16078:1 16084:2 16106:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:3 16184:4 16186:1 16219:1 16225:1 16237:1 16276:2 16279:2 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16389:1 16412:6 16436:3 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:1 16570:2 16585:1 16602:1 16619:1 16686:2 16716:1 16719:1 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17035:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:3 17164:1 17171:1 17176:3 17181:2 17201:2 17213:2 17217:1 17219:1 17235:1 17238:4 17258:3 17276:1 17284:1 17299:4 17308:1 17309:1 17316:1 17327:1 17342:2 17370:1 17404:6 17412:1 17433:1 17434:1 17440:3 17443:1 17478:1 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17629:1 17649:1 17679:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:4 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:2 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18047:2 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:4 18181:2 18188:1 18194:1 18197:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18264:1 18267:1 18273:1 18278:1 18282:1 18283:1 18325:1 18326:1 18338:1 18345:2 18346:2 18348:1 18373:1 18395:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:1 18455:1 18460:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18642:1 18648:1 18657:2 18665:1 18695:1 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:1 18934:1 18938:1 18960:1 18963:1 18970:3 18984:1 18991:1 18993:1 18994:1 19004:1 19029:1 19033:2465 19052:3 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19352:2 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19632:2 19655:1 19659:3 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:1 19739:3 19766:1 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19823:1 19827:5 19840:2 19855:1 19856:4 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19916:3 19922:1 19926:1 19932:1 19933:2 19937:2 19959:1 19967:2 19979:1 20000:1 20011:1 20034:1 20046:3 20049:1 20053:3 20100:1 20109:1 20112:1 20116:2 20136:1 20159:1 20166:3 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:2 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:2 20418:1 20420:2 20424:1 20426:1 20427:2 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20658:1 20664:1 20671:1 20680:1 20703:4 20709:2 20711:1 20722:2 20737:1 20748:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20925:1 20929:1 20947:1 20955:1 20959:4 20969:2 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21165:1 21167:1 21188:2 21190:1 21193:1 21217:4 21219:1 21232:1 21239:1 21264:4 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:2 21364:1 21403:1 21408:1 21414:1 21438:1 21442:1 21452:1 21453:1 21457:1 21462:2 21509:2 21517:1 21522:1 21529:4 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21582:1 21585:2 21599:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21891:1 21905:1 21929:1 21939:3 21940:1 21948:1 21952:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22046:1 22052:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22112:1 22115:2 22118:1 22125:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22341:1 22348:1 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:3 22386:2 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22637:1 22646:1 22657:1 22665:1 22668:1 22672:2 22674:1 22699:1 22707:1 22715:1 22722:1 22727:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:3 22868:1 22872:2 22874:1 22882:1 22887:1 22896:1 22924:5 22931:3 22942:2 22992:1 22993:1 22998:3 23022:2 23035:1 23036:1 23043:2 23045:4 23049:1 23071:1 23094:1 23100:1 23110:2 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:1 23236:1 23241:2 23244:1 23265:1 23275:4 23286:1 23302:3 23304:1 23307:1 23312:4 23315:3 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:2 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:4 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24254:3 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:1 24527:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:2 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24743:1 24755:1 24756:1 24759:1 24761:5 24762:1 24763:1 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24859:1 24860:2 24879:1 24885:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:2 25036:1 25038:1 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25092:1 25121:2 25145:1 25146:1 25154:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:6 25361:1 25364:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25562:1 25576:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:6 25855:1 25862:1 25866:1 25869:1 25879:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:3 26076:3 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:3 26345:2 26349:1 26356:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:1 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26632:1 26634:2 26637:1 26643:1 26653:2 26660:1 26671:1 26680:1 26684:1 26691:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26712:1 26713:1 26729:1 26771:4 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:2 26949:1 26959:1 26970:1 26981:2 26987:1 26992:1 27006:3 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27268:3 27276:1 27278:1 27281:3 27284:1 27298:1 27309:1 27318:1 27341:1 27344:1 27351:1 27361:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27490:1 27503:1 27509:1 27518:2 27533:5 27547:1 27549:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:4 27680:1 27706:1 27718:1 27741:1 27768:1 27772:4 27783:1 27791:1 27801:1 27802:3 27803:1 27806:2 27838:1 27842:1 27859:2 27872:4 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:4 27964:2 27971:1 27978:4 27989:2 28035:1 28047:1 28054:5 28058:2 28063:2 28066:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:2 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28356:1 28360:1 28376:2 28379:1 28388:2 28391:1 28405:1 28414:1 28423:1 28427:1 28429:1 28439:1 28441:1 28447:7 28457:1 28528:1 28539:1 28545:1 28547:1 28577:1 28580:1 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28673:2 28676:2 28677:3 28685:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28834:15 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:6 28882:1 28887:3 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28993:2 29001:3 29010:1 29015:1 29038:4 29057:1 29069:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29272:1 29281:1 29301:2 29322:1 29351:1 29364:3 29367:4 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29548:3 29552:1 29555:1 29557:1 29572:4 29576:1 29590:1 29593:2 29601:1 29635:1 29636:2 29664:1 29690:1 29701:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29796:3 29804:1 29806:1 29807:1 29816:2 29858:1 29861:1 29870:1 29883:1 29888:1 29901:1 29912:1 29919:1 29951:1 29965:2 29974:2 29995:2 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:4 30106:3 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:5 30205:1 30208:4 30209:1 30213:4 30253:1 30258:1 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:1 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 126:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 220:1 225:4 243:1 265:1 266:1 278:3 279:2 303:1 350:1 385:1 386:1 387:4 389:1 393:2 439:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:6 715:1 723:3 725:1 726:1 730:1 734:1 737:1 747:1 748:1 755:2 799:2 804:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:5 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:1 1075:1 1098:1 1104:2 1112:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1197:1 1225:2 1229:1 1231:1 1234:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:4 1607:8 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1723:1 1731:2 1736:5 1744:1 1750:1 1756:2 1767:4 1788:1 1789:1 1795:1 1796:1 1803:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:2 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1993:4 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:1 2128:1 2153:1 2159:1 2173:1 2174:3 2180:1 2192:1 2193:1 2213:1 2215:1 2222:1 2230:1 2234:1 2282:5 2290:1 2294:3 2298:1 2310:1 2315:1 2316:1 2333:1 2336:2 2337:1 2338:1 2339:4 2341:4 2345:1 2346:1 2353:1 2356:1 2361:2 2362:1 2363:2 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:1 2401:2 2402:2 2403:2 2404:1 2409:1 2411:3 2414:2 2415:2 2416:1 2419:2 2421:2 2426:5 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2556:1 2576:1 2584:2 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:5 2854:2 2855:1 2863:2 2877:1 2885:1 2887:1 2891:3 2897:1 2902:1 2911:2 2918:1 2921:1 2927:1 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:7 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:8 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:2 3360:1 3374:2 3382:1 3410:1 3418:1 3421:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3800:4 3810:1 3813:3 3833:2 3835:1 3843:1 3859:1 3876:1 3879:2 3884:3 3885:11 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:1 3920:1 3927:1 3930:5 3932:1 3946:4 3949:1 3964:3 3984:1 4016:1 4058:1 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:1 4111:1 4112:1 4132:1 4136:1 4140:3 4144:1 4150:3 4153:1 4169:1 4171:1 4175:2 4181:1 4203:1 4216:2 4217:1 4224:1 4251:1 4263:1 4296:1 4306:1 4307:1 4309:1 4340:5 4344:4 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4427:1 4436:5 4441:1 4450:2 4451:1 4462:1 4472:1 4477:2 4490:1 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4788:3 4809:1 4824:2 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 5022:27 5024:2 5058:1 5128:1 5145:1 5146:3 5169:3 5170:6 5171:3 5172:1 5174:1 5177:2 5180:1 5181:3 5185:2 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5256:2 5268:1 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5426:1 5433:1 5435:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:1 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:2 5714:2 5719:1 5727:1 5728:1 5732:2 5733:1 5737:2 5739:1 5747:1 5751:1 5757:2 5762:1 5769:1 5774:1 5776:1 5799:1 5803:1 5804:6 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5882:1 5885:1 5895:1 5901:1 5907:4 5927:1 5931:3 5933:1 5965:1 5977:1 6008:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6182:1 6185:3 6223:1 6229:2 6231:2 6236:4 6276:1 6293:6 6308:1 6325:1 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:1 6408:3 6409:1 6411:1 6412:1 6423:1 6437:2 6450:1 6466:1 6501:2 6504:1 6505:1 6509:1 6510:1 6512:3 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6672:1 6673:1 6679:1 6684:6 6694:1 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6815:1 6821:2 6825:1 6853:1 6861:1 6867:1 6874:1 6878:1 6881:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:3 6937:1 6941:2 6954:1 6962:4 6964:1 6977:1 6994:1 6997:2 7000:1 7001:2 7014:1 7021:1 7042:1 7044:1 7071:1 7074:1 7089:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:1 7181:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:5 7314:2 7317:1 7330:2 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:2 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:2 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:4 7801:4 7810:1 7820:1 7825:1 7827:1 7829:1 7849:1 7855:2 7856:1 7873:35 7886:1 7887:1 7895:9 7897:5 7931:1 7942:1 7954:2 7956:1 7968:1 7971:2 8008:1 8011:1 8014:1 8020:1 8030:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8139:1 8195:1 8200:1 8210:1 8246:2 8278:1 8285:1 8294:1 8300:4 8306:2 8317:1 8321:1 8340:1 8349:2 8350:1 8354:1 8357:16 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8460:1 8469:1 8479:1 8502:1 8515:1 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:1 8611:1 8624:2 8625:1 8629:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8731:1 8732:1 8733:2 8736:1 8738:2 8741:2 8744:3 8745:1 8751:2 8756:1 8761:1 8768:1 8774:1 8785:2 8809:1 8832:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8900:1 8909:1 8916:2 8955:1 8960:1 8971:3 8978:1 8990:1 8997:1 9003:2 9011:1 9038:1 9043:1 9045:3 9058:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9153:1 9178:1 9181:1 9187:1 9198:1 9204:1 9212:2 9214:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9391:1 9393:1 9400:5 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:1 9574:1 9578:2 9583:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:1 9862:1 9866:1 9884:2 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:6 9970:1 9985:1 9986:1 9988:1 9989:3 10012:1 10017:1 10027:1 10028:1 10052:1 10062:1 10065:1 10077:1 10094:1 10117:2 10127:3 10134:1 10151:2 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:3 10201:2 10204:1 10209:1 10211:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10495:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:2 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:6 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:1 10852:1 10885:1 10897:3 10903:1 10904:1 10907:1 10913:3 10916:1 10924:2 10942:1 10968:1 10980:1 11017:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11129:1 11135:1 11161:2 11163:1 11167:1 11175:3 11177:1 11182:1 11184:1 11185:4 11199:2 11201:1 11212:1 11218:1 11220:1 11244:1 11263:1 11272:1 11274:1 11283:1 11300:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:4 11450:2 11460:1 11465:1 11473:2 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11744:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11791:1 11793:1 11797:2 11806:1 11813:1 11823:2 11829:1 11832:1 11840:1 11841:1 11854:2 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11901:2 11906:2 11912:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12049:1 12055:1 12067:4 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12343:2 12344:1 12350:1 12362:1 12369:2 12370:3 12375:1 12382:1 12398:2 12412:1 12415:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:2 12488:1 12517:4 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12628:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:2 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:5 12934:1 12939:2 12948:2 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:3 13045:1 13049:2 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:6 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:2 13436:7 13444:1 13449:2 13467:2 13473:1 13484:2 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13545:1 13554:1 13559:2 13566:5 13569:1 13587:1 13601:1 13612:2 13613:1 13620:1 13644:3 13650:1 13652:1 13689:1 13694:1 13716:5 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:3 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13875:1 13908:1 13920:1 13938:1 13948:2 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:4 14074:1 14075:1 14094:1 14111:1 14114:2 14122:1 14154:1 14164:1 14167:5 14171:4 14175:1 14205:1 14211:1 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:1 14314:1 14328:1 14337:1 14347:1 14354:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14518:1 14526:1 14550:2 14557:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:1 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14872:2 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:2 14967:1 14979:5 14986:1 15017:2 15021:1 15035:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15129:3 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:2 15265:3 15274:1 15289:2 15316:3 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:2 15488:1 15491:1 15519:1 15522:2 15537:1 15545:1 15558:1 15570:1 15584:1 15589:1 15594:1 15637:1 15648:1 15659:1 15671:1 15692:12 15706:1 15746:2 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:2 15875:1 15877:1 15920:1 15931:3 15942:1 15948:1 15956:10 15962:1 15964:1 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15992:2 15993:2 16000:1 16010:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:3 16078:1 16084:2 16106:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:4 16184:4 16186:1 16219:1 16225:1 16237:1 16276:2 16279:3 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16389:1 16412:8 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:3 16570:2 16585:1 16602:1 16619:1 16686:2 16716:1 16719:1 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17035:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:3 17164:1 17171:1 17176:4 17181:2 17201:2 17213:2 17217:1 17219:1 17235:1 17238:4 17258:3 17276:1 17284:1 17299:4 17308:1 17309:1 17316:2 17327:1 17342:2 17370:1 17404:6 17412:1 17433:1 17434:1 17440:3 17443:1 17478:1 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:2 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18047:2 18059:1 18070:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:4 18181:2 18188:1 18194:1 18196:1 18197:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18264:1 18267:1 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:2 18348:1 18373:1 18395:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18642:1 18648:1 18657:2 18665:1 18695:1 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:2 18934:1 18938:1 18960:1 18963:1 18970:3 18984:1 18991:1 18993:1 18994:1 19004:1 19029:1 19033:2611 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19352:2 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19632:2 19655:1 19659:3 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:1 19756:1 19766:1 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19823:2 19827:5 19840:2 19855:1 19856:5 19862:1 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:1 19926:1 19932:1 19933:2 19937:2 19959:1 19967:3 19979:1 20000:1 20011:1 20028:1 20034:1 20046:3 20049:1 20053:3 20100:1 20109:1 20112:1 20116:2 20136:1 20152:1 20159:1 20166:3 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:2 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:1 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20658:1 20664:1 20671:1 20680:1 20699:1 20703:4 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20925:1 20929:1 20947:1 20955:1 20959:4 20969:2 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21165:1 21167:1 21188:2 21190:1 21193:1 21207:1 21217:4 21219:1 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:3 21364:1 21403:1 21408:1 21414:1 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:4 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21582:1 21585:2 21599:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:1 21863:1 21873:1 21880:1 21881:1 21891:1 21905:1 21929:1 21932:1 21936:1 21939:3 21940:1 21948:1 21952:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:1 22004:2 22021:1 22046:1 22052:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:2 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:3 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22631:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22672:2 22674:1 22699:1 22707:1 22715:1 22722:1 22727:1 22733:1 22739:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:3 22868:1 22872:2 22874:1 22882:1 22887:1 22896:1 22924:6 22931:3 22935:1 22942:2 22992:1 22993:1 22998:3 23022:3 23035:1 23036:1 23043:2 23045:4 23049:1 23071:1 23076:1 23094:1 23095:1 23100:1 23110:2 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:1 23236:1 23241:2 23244:1 23265:1 23275:4 23286:1 23302:3 23304:1 23307:1 23312:4 23315:3 23322:2 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:2 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23647:1 23652:1 23653:1 23662:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24019:2 24027:1 24028:1 24030:2 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:5 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24254:3 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:1 24527:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:2 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24743:1 24755:1 24756:1 24759:1 24761:5 24762:1 24763:1 24774:2 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24859:1 24860:2 24879:1 24885:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25019:1 25022:1 25023:1 25025:1 25026:4 25028:2 25030:2 25036:1 25038:1 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25092:1 25121:2 25123:1 25145:1 25146:1 25154:1 25164:1 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:6 25361:1 25364:3 25383:1 25385:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25562:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:1 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:6 25855:1 25862:1 25866:1 25869:1 25879:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:3 26076:3 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:2 26190:1 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:4 26345:2 26349:1 26354:1 26356:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26632:1 26634:2 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26684:1 26691:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26712:1 26713:1 26726:1 26729:1 26771:4 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26949:1 26959:1 26970:1 26981:2 26987:1 26992:1 27006:4 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:3 27276:1 27278:1 27281:3 27284:1 27298:1 27309:1 27318:1 27321:1 27341:1 27344:1 27351:1 27361:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27465:1 27490:1 27503:1 27509:1 27518:2 27533:5 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:4 27680:2 27706:1 27718:1 27741:1 27768:1 27772:4 27783:1 27791:1 27801:1 27802:3 27803:1 27806:2 27838:1 27842:1 27859:2 27872:5 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:5 27964:2 27971:1 27978:5 27989:2 28006:1 28035:1 28047:1 28054:5 28058:2 28063:2 28066:2 28071:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28356:1 28360:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:1 28429:1 28439:1 28441:1 28447:7 28449:1 28457:1 28528:1 28539:1 28545:1 28547:1 28577:1 28580:1 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28673:2 28676:2 28677:3 28685:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:2 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28834:15 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:6 28882:1 28887:3 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28988:1 28993:2 29001:3 29010:1 29015:1 29038:4 29057:1 29069:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29351:1 29364:4 29367:5 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29548:4 29552:1 29555:1 29557:1 29572:4 29576:1 29590:1 29593:3 29601:1 29635:1 29636:2 29664:1 29690:1 29701:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29788:1 29796:3 29804:1 29806:1 29807:1 29816:2 29858:1 29861:1 29870:1 29883:1 29888:1 29901:1 29912:1 29919:2 29951:1 29965:2 29974:2 29995:2 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:4 30106:3 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:7 30205:1 30208:4 30209:1 30213:4 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:2 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:4 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 332:1 350:1 385:1 386:1 387:4 389:1 393:2 409:1 439:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:6 715:1 723:3 725:1 726:1 730:1 734:1 737:1 747:1 748:1 755:2 799:2 804:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:5 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:1 1075:1 1098:1 1104:2 1112:1 1117:2 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:6 1607:8 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:3 1704:1 1723:1 1731:2 1736:7 1744:1 1750:1 1756:2 1767:4 1788:1 1789:1 1795:1 1796:1 1803:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1879:1 1895:1 1901:2 1903:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:2 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1993:4 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:3 2128:1 2153:1 2159:1 2173:1 2174:3 2180:1 2192:1 2193:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2307:1 2310:1 2315:1 2316:1 2333:1 2336:2 2337:1 2338:1 2339:4 2341:4 2345:1 2346:1 2353:1 2356:1 2361:2 2362:1 2363:2 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:1 2401:2 2402:2 2403:2 2404:1 2409:1 2411:3 2414:2 2415:2 2416:1 2419:2 2421:2 2426:5 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2505:1 2516:1 2533:1 2539:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:6 2854:2 2855:1 2863:2 2877:1 2885:1 2887:1 2891:3 2897:1 2902:2 2911:2 2918:1 2921:1 2927:2 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:7 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:8 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:2 3360:1 3374:2 3382:1 3392:1 3410:1 3418:1 3421:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:1 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3800:4 3810:1 3813:3 3833:2 3835:1 3843:1 3859:1 3876:1 3879:2 3884:3 3885:11 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:1 3920:1 3927:1 3930:5 3932:1 3946:4 3949:1 3964:3 3984:1 4016:1 4058:1 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:2 4111:1 4112:1 4132:1 4136:1 4140:3 4144:1 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4224:1 4251:1 4263:1 4296:1 4306:1 4307:1 4309:1 4340:5 4344:6 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4427:1 4436:5 4441:1 4450:2 4451:1 4462:1 4472:1 4477:2 4490:1 4491:2 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:2 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4788:3 4809:1 4824:2 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 4986:1 5022:28 5024:2 5058:1 5128:1 5145:1 5146:3 5169:3 5170:7 5171:3 5172:2 5174:1 5177:2 5180:1 5181:3 5183:2 5185:2 5190:1 5194:1 5196:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5256:2 5268:1 5284:1 5287:1 5291:1 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:2 5714:2 5719:1 5724:1 5727:1 5728:1 5732:2 5733:1 5737:2 5739:1 5747:1 5751:1 5757:2 5762:1 5769:1 5774:1 5776:1 5799:1 5803:1 5804:6 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5882:1 5885:1 5895:1 5901:1 5907:4 5916:1 5927:1 5931:3 5933:1 5965:1 5977:1 6008:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6182:1 6185:4 6223:1 6229:2 6231:2 6236:4 6276:1 6293:6 6308:1 6325:1 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:1 6408:3 6409:1 6411:1 6412:1 6423:1 6437:2 6450:1 6466:1 6501:2 6504:1 6505:1 6509:1 6510:2 6512:3 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6672:1 6673:1 6679:1 6684:6 6694:1 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6849:1 6853:1 6861:1 6867:2 6874:1 6878:1 6881:1 6901:1 6908:1 6914:1 6917:1 6929:1 6936:4 6937:1 6941:2 6954:1 6962:4 6964:1 6977:1 6994:1 6997:2 7000:1 7001:2 7014:1 7021:1 7042:1 7044:1 7071:1 7074:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:1 7181:1 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:1 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:7 7314:2 7317:1 7330:2 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:2 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:2 7623:1 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:5 7801:4 7810:1 7820:1 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:35 7886:1 7887:1 7895:9 7897:5 7904:1 7931:1 7942:1 7954:2 7956:1 7968:1 7971:2 7972:1 8008:1 8011:1 8014:1 8020:1 8030:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:4 8306:2 8317:1 8319:1 8321:1 8340:2 8349:2 8350:1 8354:1 8357:16 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:1 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:1 8611:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:1 8732:1 8733:3 8736:1 8738:2 8741:2 8744:3 8745:2 8751:2 8756:1 8761:1 8768:1 8774:1 8785:2 8809:1 8832:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8900:1 8909:1 8916:2 8955:1 8960:1 8971:3 8978:1 8990:1 8997:1 9003:2 9011:1 9038:1 9043:1 9045:3 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9153:1 9178:1 9181:1 9187:1 9198:1 9204:1 9212:2 9214:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9391:1 9393:1 9400:6 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:4 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:1 9574:1 9578:2 9583:1 9587:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:7 9970:1 9985:1 9986:1 9988:1 9989:3 9999:1 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:1 10065:1 10077:1 10094:1 10117:2 10127:3 10134:1 10151:2 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:3 10201:2 10204:1 10209:1 10211:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:2 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:6 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:1 10852:1 10885:1 10897:3 10903:1 10904:1 10907:1 10913:3 10916:1 10924:2 10942:1 10968:1 10980:1 11017:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11129:1 11135:1 11161:2 11163:1 11167:1 11175:3 11177:1 11182:1 11184:1 11185:4 11199:2 11201:1 11212:1 11218:1 11220:1 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11300:1 11306:1 11368:1 11371:1 11388:1 11401:1 11437:4 11450:2 11460:1 11465:1 11473:2 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:1 11665:7 11676:1 11679:1 11692:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11744:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11787:1 11791:1 11793:1 11797:2 11806:1 11813:1 11823:2 11829:1 11832:1 11840:1 11841:1 11854:3 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11901:2 11906:2 11912:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11957:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12049:1 12055:1 12067:4 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12343:2 12344:1 12350:1 12362:1 12369:2 12370:3 12375:1 12382:1 12398:2 12412:1 12415:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:2 12488:1 12517:4 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12628:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:3 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:5 12934:1 12939:2 12948:2 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:3 13045:1 13049:2 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:6 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:2 13436:7 13444:1 13449:2 13467:2 13473:1 13484:3 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13545:1 13554:1 13559:2 13566:5 13569:1 13587:1 13601:1 13610:1 13612:2 13613:1 13620:1 13644:3 13650:1 13652:1 13689:1 13694:1 13716:5 13731:1 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:3 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13875:1 13908:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:4 14074:1 14075:1 14094:1 14111:1 14114:2 14122:2 14154:1 14164:1 14167:5 14171:4 14175:1 14205:1 14211:1 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:1 14314:1 14328:1 14337:1 14347:1 14354:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14518:1 14526:1 14550:2 14557:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:1 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14872:2 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:1 14979:5 14986:1 15017:2 15021:1 15035:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:3 15138:1 15142:2 15152:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:2 15265:3 15274:1 15289:2 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15488:1 15491:1 15519:1 15522:2 15537:1 15545:1 15558:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15692:12 15706:1 15746:2 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:11 15962:1 15964:1 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15992:2 15993:2 16000:1 16010:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:4 16078:1 16084:2 16106:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:4 16184:4 16186:1 16219:1 16225:1 16237:1 16276:2 16279:3 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16389:1 16412:8 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:3 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:3 16570:3 16585:1 16602:1 16619:1 16686:2 16716:1 16719:1 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16971:1 16988:1 17035:1 17047:1 17052:3 17057:3 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17171:1 17176:4 17181:2 17201:2 17213:2 17217:1 17219:1 17235:1 17238:4 17258:3 17276:1 17284:1 17299:4 17308:1 17309:1 17316:2 17327:1 17338:1 17342:2 17370:1 17404:6 17412:1 17433:1 17434:1 17440:3 17443:1 17455:1 17478:1 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18046:1 18047:2 18059:1 18070:1 18073:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:5 18181:2 18188:1 18194:1 18196:1 18197:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18264:1 18267:1 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:2 18348:1 18373:1 18395:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18498:1 18515:1 18525:2 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18642:1 18648:1 18657:3 18665:1 18695:1 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18926:2 18934:1 18938:1 18960:1 18963:1 18970:3 18984:2 18991:1 18993:1 18994:1 19004:1 19029:1 19033:2701 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19352:2 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19632:2 19655:1 19659:3 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:1 19756:1 19766:2 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:5 19840:2 19855:1 19856:5 19861:1 19862:1 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:1 19926:2 19932:1 19933:2 19937:2 19959:1 19967:3 19979:1 20000:1 20011:1 20028:1 20034:1 20046:3 20049:1 20053:3 20100:1 20109:1 20112:1 20116:2 20136:1 20152:1 20159:1 20166:3 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:2 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20618:1 20620:1 20622:1 20623:1 20646:3 20658:1 20664:1 20671:1 20680:1 20685:1 20699:1 20703:4 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20925:2 20929:1 20947:1 20955:1 20959:4 20969:2 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21133:1 21139:1 21142:1 21145:1 21165:1 21167:1 21188:2 21190:1 21193:1 21207:1 21217:4 21219:1 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21296:1 21298:1 21302:1 21311:2 21320:3 21326:1 21331:1 21340:1 21346:1 21360:3 21364:1 21403:1 21408:1 21414:1 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:4 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21582:1 21585:2 21599:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21817:1 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:2 21863:1 21873:1 21880:1 21881:1 21891:1 21905:1 21929:1 21932:1 21936:1 21939:3 21940:2 21948:1 21952:1 21954:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:2 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22090:1 22091:2 22099:4 22101:1 22107:1 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:3 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:1 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22672:2 22674:1 22675:1 22690:2 22699:1 22707:1 22715:1 22722:1 22727:1 22733:1 22739:1 22751:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:3 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:6 22931:3 22935:1 22942:2 22992:1 22993:1 22998:3 23022:4 23035:1 23036:1 23043:2 23045:4 23049:1 23071:1 23076:1 23094:1 23095:1 23100:1 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:1 23236:1 23241:2 23244:1 23265:1 23275:4 23286:1 23302:3 23304:1 23307:1 23312:4 23315:3 23322:2 23326:1 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:2 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23724:2 23747:1 23763:1 23770:1 23798:2 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:2 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:2 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:5 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24254:3 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:1 24527:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:2 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24731:1 24743:1 24755:2 24756:1 24759:1 24761:5 24762:1 24763:1 24774:2 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25019:1 25022:1 25023:1 25025:1 25026:4 25028:3 25030:2 25036:1 25038:2 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25087:1 25092:1 25121:2 25123:1 25145:1 25146:1 25154:1 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:6 25361:1 25364:3 25383:1 25385:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25561:1 25562:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:1 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:6 25855:1 25862:1 25866:1 25869:1 25879:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26073:4 26076:3 26077:1 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:3 26190:1 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:4 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:2 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26632:1 26634:2 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26684:1 26691:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26709:1 26712:1 26713:1 26726:1 26729:1 26734:1 26771:6 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26949:1 26959:1 26970:1 26981:2 26987:1 26992:1 27006:4 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27152:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:3 27276:1 27278:1 27281:3 27284:1 27298:1 27309:1 27318:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:1 27465:1 27490:1 27503:1 27509:1 27518:2 27533:5 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27662:1 27668:4 27680:2 27706:1 27718:1 27741:1 27768:1 27772:4 27783:1 27791:1 27801:2 27802:3 27803:1 27806:2 27838:1 27842:1 27859:2 27872:6 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:5 27964:2 27971:1 27978:5 27989:2 28006:1 28035:1 28047:2 28054:6 28058:2 28063:2 28066:2 28071:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28338:1 28356:1 28360:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:1 28429:1 28439:1 28441:1 28447:7 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:1 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28671:1 28673:2 28676:2 28677:3 28685:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:2 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28834:18 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:7 28882:1 28887:3 28892:1 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28988:1 28993:2 29001:3 29010:1 29015:1 29038:5 29055:1 29057:1 29069:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29351:1 29364:4 29367:5 29392:1 29395:2 29409:1 29412:1 29413:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29548:4 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:3 29601:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29708:1 29727:1 29735:2 29739:1 29741:1 29774:1 29776:1 29788:1 29796:3 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29880:1 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29995:2 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:5 30106:3 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:7 30205:1 30208:4 30209:1 30213:4 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:2 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 332:1 350:1 385:1 386:1 387:4 389:1 393:2 409:1 439:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:6 715:1 723:3 725:1 726:1 730:1 734:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:5 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:2 1075:1 1077:1 1098:1 1104:3 1112:1 1117:2 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:6 1607:9 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:3 1702:4 1704:1 1723:1 1731:2 1736:7 1744:1 1750:1 1756:2 1767:4 1788:1 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:2 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:4 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:3 2128:1 2153:1 2159:1 2166:1 2173:1 2174:4 2180:1 2192:1 2193:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2307:1 2310:1 2315:1 2316:1 2333:1 2336:2 2337:1 2338:1 2339:4 2341:4 2345:1 2346:1 2353:1 2356:1 2361:2 2362:1 2363:2 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:1 2401:2 2402:4 2403:2 2404:1 2409:1 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:5 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2505:1 2516:1 2533:1 2539:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2764:1 2768:1 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:6 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2921:1 2927:2 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:8 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:9 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:2 3360:1 3374:2 3382:1 3392:2 3410:1 3418:1 3421:3 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:1 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3774:1 3800:4 3810:1 3813:4 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:3 3885:11 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:1 3920:1 3927:1 3930:5 3932:1 3946:4 3949:1 3964:3 3968:1 3984:1 4016:1 4058:1 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:2 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4224:1 4251:1 4263:1 4265:1 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:6 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:3 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:3 4809:1 4824:2 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 4986:1 5022:31 5024:2 5058:1 5128:1 5145:1 5146:3 5169:3 5170:7 5171:3 5172:2 5174:1 5177:2 5180:1 5181:3 5183:3 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:2 5714:2 5719:2 5724:1 5727:1 5728:1 5732:2 5733:1 5737:2 5739:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:6 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 6008:1 6050:4 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6167:1 6182:1 6185:4 6223:1 6229:2 6231:2 6236:4 6272:1 6276:1 6293:6 6308:1 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:1 6411:1 6412:1 6423:1 6425:1 6437:2 6450:1 6466:1 6501:2 6504:1 6505:1 6509:1 6510:3 6512:3 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6662:1 6672:1 6673:1 6679:1 6684:6 6694:1 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6842:1 6849:1 6853:1 6861:1 6867:2 6874:1 6878:1 6881:1 6894:1 6901:1 6908:1 6914:2 6917:1 6929:1 6936:4 6937:1 6941:2 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7042:1 7044:1 7071:1 7074:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:7 7314:2 7317:1 7330:2 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:2 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:2 7623:1 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:6 7801:4 7810:1 7820:1 7821:1 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:38 7886:1 7887:1 7895:9 7897:6 7904:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:1 8008:1 8011:1 8014:1 8020:1 8030:1 8038:1 8050:1 8057:1 8078:2 8081:6 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:4 8306:2 8317:1 8319:1 8321:1 8340:3 8349:2 8350:1 8354:1 8357:18 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:1 8611:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:1 8732:1 8733:3 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:2 8756:1 8761:1 8768:1 8774:1 8777:1 8785:2 8804:1 8809:1 8832:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8900:1 8909:1 8916:2 8955:1 8960:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:1 9043:1 9045:3 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9153:1 9178:1 9181:1 9187:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:2 9382:1 9384:1 9391:1 9393:1 9400:6 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:1 9574:1 9578:2 9583:1 9587:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:7 9970:1 9985:1 9986:1 9988:1 9989:3 9999:1 10000:1 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:1 10065:1 10077:1 10094:2 10117:2 10127:3 10134:1 10151:2 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:3 10201:2 10204:1 10209:1 10211:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:1 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:3 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:6 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:4 10903:1 10904:2 10907:1 10913:3 10916:1 10924:3 10942:1 10968:1 10980:1 11017:1 11021:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:3 11182:1 11184:1 11185:4 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11300:1 11303:1 11306:1 11368:1 11371:1 11378:1 11388:1 11401:1 11437:4 11450:2 11460:1 11465:1 11473:2 11499:1 11538:1 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:1 11665:8 11668:1 11676:1 11679:1 11692:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11744:1 11745:1 11755:1 11762:1 11772:3 11781:1 11785:1 11787:1 11791:1 11793:1 11797:2 11806:1 11813:1 11823:2 11829:1 11832:1 11840:1 11841:1 11852:1 11854:3 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:6 11897:1 11899:1 11901:2 11906:3 11912:1 11915:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:5 11930:1 11935:1 11936:1 11957:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12049:1 12055:1 12067:4 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:1 12398:2 12412:1 12415:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:2 12488:1 12498:1 12517:4 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:3 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:6 12934:1 12939:2 12948:3 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:4 13045:1 13049:2 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13401:2 13404:1 13407:6 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:2 13436:7 13444:1 13449:2 13467:2 13473:1 13477:1 13484:3 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13545:1 13554:1 13559:2 13566:5 13569:1 13587:1 13601:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13689:1 13694:1 13716:5 13731:1 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:3 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13875:1 13908:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:4 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14154:1 14164:1 14167:5 14171:5 14175:1 14205:1 14211:2 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:2 14314:1 14328:1 14337:1 14347:1 14354:1 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14518:1 14526:1 14550:2 14557:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:1 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14871:1 14872:2 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:2 15152:1 15162:1 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15265:3 15274:1 15289:2 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:1 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15692:12 15702:1 15706:1 15746:2 15750:1 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:11 15961:1 15962:1 15963:1 15964:1 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15992:2 15993:2 16000:1 16010:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:4 16078:1 16084:2 16106:2 16108:1 16112:1 16117:1 16130:1 16133:1 16137:4 16183:1 16184:4 16186:1 16219:1 16225:2 16237:1 16276:2 16279:4 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16389:1 16412:8 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:5 16562:1 16570:3 16585:1 16602:1 16619:1 16686:2 16716:1 16719:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16962:1 16971:1 16988:1 17035:1 17047:1 17052:3 17057:4 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17171:1 17176:4 17181:2 17201:2 17213:2 17217:1 17219:1 17235:1 17238:5 17258:3 17276:1 17284:1 17299:4 17308:1 17309:1 17316:3 17327:1 17338:1 17342:2 17370:1 17404:7 17412:1 17429:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17478:1 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:1 17989:1 17991:1 17992:1 18036:1 18043:2 18046:1 18047:2 18059:2 18070:1 18072:1 18073:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:1 18172:2 18173:6 18181:3 18188:1 18194:1 18196:1 18197:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18264:1 18267:2 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:2 18348:1 18373:1 18395:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18492:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18642:1 18648:1 18657:3 18665:1 18690:1 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18912:1 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:1 18994:1 19004:1 19029:1 19033:2888 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19227:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19352:2 19367:1 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:1 19756:1 19766:2 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:6 19840:2 19855:1 19856:6 19861:1 19862:1 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:1 19926:2 19932:1 19933:2 19937:2 19952:1 19959:1 19967:3 19979:1 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:2 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:2 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20618:1 20620:1 20622:1 20623:1 20646:4 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:4 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20915:1 20925:2 20929:1 20947:2 20955:1 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21207:1 21217:4 21219:2 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21296:1 21298:1 21302:1 21311:3 21320:3 21326:1 21331:1 21340:1 21346:1 21360:3 21364:1 21368:1 21403:1 21408:1 21414:1 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:4 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:4 21793:1 21798:1 21804:1 21817:2 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:1 21905:1 21929:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21960:2 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:5 22101:1 22107:2 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:3 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:1 22690:2 22699:1 22707:1 22715:1 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:3 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:7 22931:3 22935:1 22942:2 22992:1 22993:1 22998:4 23022:4 23027:1 23035:1 23036:1 23043:2 23045:4 23049:1 23071:1 23076:1 23094:1 23095:1 23100:1 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:1 23236:1 23241:2 23244:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:4 23315:4 23322:2 23326:1 23356:1 23359:1 23368:1 23374:1 23404:1 23479:1 23497:2 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23798:2 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:3 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:3 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:5 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24254:3 24264:1 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:1 24527:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:2 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25019:1 25022:1 25023:1 25025:1 25026:4 25028:3 25030:2 25036:1 25038:2 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25087:1 25092:1 25119:1 25121:2 25123:1 25145:1 25146:1 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:7 25361:1 25364:3 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:1 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:6 25855:1 25862:1 25866:1 25869:1 25879:2 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:4 26076:3 26077:1 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:3 26190:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:4 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:1 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26632:1 26634:2 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26684:1 26691:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26709:1 26712:1 26713:1 26726:1 26729:1 26734:1 26771:6 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:2 26987:1 26992:1 27006:4 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27152:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:3 27276:1 27278:2 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:1 27395:1 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:5 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27680:2 27706:1 27718:1 27729:1 27741:1 27768:1 27772:4 27783:1 27791:1 27801:2 27802:3 27803:1 27806:2 27838:2 27842:1 27859:2 27872:7 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:5 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:3 28063:3 28066:2 28071:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:1 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28329:1 28335:1 28338:2 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:2 28429:2 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28671:1 28673:2 28676:2 28677:3 28685:1 28707:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28823:1 28834:19 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:7 28882:1 28887:3 28892:1 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28988:1 28993:2 29001:3 29010:1 29015:1 29038:6 29055:1 29057:1 29069:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29203:1 29207:1 29219:1 29221:1 29230:1 29239:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:4 29367:5 29392:1 29395:2 29409:1 29412:1 29413:1 29419:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29545:1 29548:4 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:3 29601:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29774:2 29776:1 29788:1 29796:4 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29875:2 29880:1 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29995:2 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:5 30105:1 30106:3 30107:1 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:7 30205:1 30208:4 30209:1 30213:4 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 332:1 335:1 350:1 385:1 386:1 387:4 389:1 393:2 409:1 439:2 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:7 715:1 723:3 725:1 726:1 730:1 734:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:5 981:1 983:1 990:1 998:1 1006:1 1010:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:2 1075:1 1077:1 1098:1 1104:3 1112:1 1117:2 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:10 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:4 1702:4 1704:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:4 1788:1 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:4 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:2 2066:1 2077:1 2081:2 2082:1 2103:1 2121:3 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:4 2180:1 2192:1 2193:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2307:1 2310:1 2315:1 2316:1 2333:1 2336:2 2337:1 2338:1 2339:4 2341:4 2345:1 2346:2 2353:1 2356:1 2361:2 2362:1 2363:2 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:2 2401:3 2402:4 2403:2 2404:1 2409:1 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:5 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2505:1 2516:2 2533:1 2539:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:6 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2921:1 2927:2 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:8 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:9 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:2 3360:1 3374:2 3382:1 3392:3 3410:1 3418:1 3421:3 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:1 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3774:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:3 3885:11 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:1 3920:1 3927:1 3930:5 3932:1 3946:4 3949:1 3964:3 3968:1 3984:1 4016:1 4058:1 4060:1 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:2 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4224:1 4251:1 4263:1 4265:1 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:3 4809:1 4824:2 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 4986:1 5022:33 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:3 5172:2 5174:1 5177:2 5180:1 5181:3 5183:3 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:2 5696:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:6 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 6008:1 6050:5 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6167:1 6182:1 6185:4 6223:1 6229:2 6231:2 6236:4 6272:1 6276:1 6293:6 6308:2 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:1 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6466:1 6501:2 6504:1 6505:1 6509:1 6510:4 6512:3 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6662:1 6672:1 6673:1 6679:1 6684:6 6694:2 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6842:1 6849:1 6853:1 6861:1 6867:2 6874:1 6878:1 6881:1 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:2 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7041:1 7042:1 7044:1 7071:1 7074:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:7 7314:2 7317:1 7330:2 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7431:1 7444:1 7454:2 7456:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:2 7611:1 7617:3 7623:1 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:6 7801:4 7810:1 7820:1 7821:1 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:40 7886:1 7887:1 7895:9 7897:6 7904:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:1 8008:1 8011:1 8014:1 8020:1 8030:1 8038:1 8050:1 8057:1 8078:2 8081:7 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8171:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:4 8306:2 8317:1 8319:1 8321:1 8340:3 8349:2 8350:1 8354:1 8357:18 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:1 8611:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:1 8732:1 8733:3 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:2 8756:1 8761:1 8768:1 8774:1 8777:1 8785:2 8804:1 8809:1 8832:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:1 8889:1 8896:1 8900:1 8909:1 8916:2 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:1 9043:1 9045:3 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9153:1 9178:1 9181:1 9187:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9391:1 9393:1 9400:6 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9445:1 9462:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:1 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:8 9970:1 9985:1 9986:1 9988:1 9989:3 9999:1 10000:2 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:1 10065:1 10077:1 10094:2 10117:2 10127:3 10134:1 10151:2 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:3 10201:2 10204:1 10209:1 10211:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:2 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:3 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:6 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:4 10903:1 10904:2 10907:1 10913:3 10916:1 10924:3 10942:1 10968:1 10980:1 11017:1 11021:1 11027:1 11032:1 11036:2 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:3 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11300:1 11303:1 11306:1 11368:1 11371:1 11378:1 11388:1 11401:1 11437:4 11450:2 11460:1 11465:1 11473:2 11499:1 11538:1 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:1 11665:8 11668:1 11676:1 11679:1 11692:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11732:1 11744:1 11745:1 11755:1 11762:2 11772:3 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:3 11912:1 11915:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:6 11930:1 11935:1 11936:1 11957:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12042:1 12049:1 12055:1 12067:4 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:1 12398:2 12412:1 12415:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:2 12488:1 12498:1 12517:4 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:3 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:6 12934:1 12939:2 12948:3 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:4 13045:1 13049:2 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:1 13401:2 13404:1 13407:6 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:2 13436:7 13444:1 13449:2 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13545:1 13554:1 13559:2 13566:5 13569:1 13587:1 13594:1 13601:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13689:1 13694:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:3 13810:1 13815:3 13823:1 13863:1 13868:1 13870:2 13875:1 13908:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:4 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14154:1 14164:1 14167:5 14171:5 14175:2 14183:1 14205:1 14211:2 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:2 14314:1 14328:1 14337:1 14347:1 14354:1 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:2 15152:1 15162:2 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15265:3 15266:1 15274:1 15289:2 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15692:12 15702:1 15706:1 15746:2 15750:1 15768:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:12 15961:1 15962:1 15963:1 15964:1 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15992:2 15993:2 16000:1 16010:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:4 16078:1 16084:2 16106:2 16108:2 16112:1 16117:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:1 16219:1 16225:2 16237:1 16276:2 16279:4 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16389:1 16412:8 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16686:3 16716:1 16719:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16962:2 16971:1 16988:1 17020:1 17035:1 17047:1 17052:3 17057:4 17063:1 17067:1 17088:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17171:1 17176:4 17181:2 17201:2 17213:2 17217:1 17219:1 17235:1 17238:5 17258:3 17265:1 17272:1 17276:1 17284:1 17299:4 17307:1 17308:1 17309:1 17316:3 17327:1 17338:1 17342:2 17370:1 17404:8 17412:1 17429:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17591:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18046:1 18047:2 18059:2 18070:1 18072:1 18073:1 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:2 18172:2 18173:6 18181:3 18188:1 18194:1 18196:1 18197:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:2 18348:1 18373:1 18395:1 18410:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18492:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18642:1 18648:1 18657:3 18665:1 18690:1 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18892:1 18912:1 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:1 18994:1 19004:1 19029:1 19033:2958 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19227:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19333:1 19350:1 19352:3 19367:1 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:1 19756:1 19766:2 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:6 19840:2 19855:1 19856:6 19861:1 19862:1 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:1 19926:2 19928:1 19932:1 19933:2 19937:2 19952:1 19959:1 19967:3 19979:1 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:2 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:2 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20618:1 20620:1 20622:1 20623:1 20646:4 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:4 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20915:1 20925:2 20929:1 20947:2 20955:1 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21219:2 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21296:1 21298:1 21302:1 21311:3 21320:3 21326:1 21331:1 21340:1 21346:1 21360:3 21364:1 21368:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:4 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21838:2 21845:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:1 21905:1 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21960:2 21975:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:5 22101:1 22107:2 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:3 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:1 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:2 22699:1 22707:1 22715:1 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22772:2 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:3 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:7 22931:3 22935:1 22942:2 22992:1 22993:1 22998:5 23022:4 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:1 23236:1 23241:2 23244:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:4 23315:4 23322:2 23326:1 23356:1 23359:1 23360:1 23368:1 23374:1 23404:1 23479:1 23497:2 23513:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23798:2 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:4 23926:1 23929:2 23930:1 23931:1 23951:2 23957:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:3 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:5 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24254:3 24264:1 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:1 24527:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25019:1 25022:1 25023:1 25025:1 25026:4 25028:3 25030:2 25036:1 25038:2 25048:2 25049:1 25052:1 25058:1 25067:3 25079:3 25086:1 25087:1 25092:1 25119:1 25121:2 25123:1 25145:1 25146:1 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:8 25361:1 25364:3 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:1 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:6 25855:1 25862:1 25866:1 25869:1 25879:2 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:4 26076:3 26077:1 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:3 26190:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:4 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26684:1 26691:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26709:1 26712:1 26713:1 26726:1 26729:1 26734:1 26771:6 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27006:4 27028:1 27030:3 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:3 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:1 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:5 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:2 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:7 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:5 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:3 28063:3 28066:2 28071:2 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:1 28147:1 28149:1 28204:2 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:2 28429:2 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28671:1 28673:2 28676:2 28677:3 28685:1 28707:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28823:1 28834:19 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:8 28882:1 28887:3 28892:1 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28988:1 28993:2 29001:3 29010:1 29015:1 29038:6 29055:1 29057:1 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29197:1 29203:1 29207:1 29219:1 29221:1 29230:1 29239:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:4 29367:5 29392:1 29395:3 29409:1 29412:1 29413:1 29419:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29545:1 29548:4 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:3 29601:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29774:2 29776:1 29788:1 29796:4 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29875:2 29880:1 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29995:2 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:5 30105:1 30106:3 30107:1 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:7 30205:1 30208:4 30209:1 30213:4 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:4 389:1 393:2 398:2 409:2 439:2 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:7 715:1 723:4 725:1 726:1 730:1 734:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:6 981:1 983:1 990:1 998:1 1006:1 1010:1 1020:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:2 1075:1 1077:1 1090:1 1098:1 1104:3 1112:1 1117:2 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:10 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:4 1702:4 1704:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:4 1788:1 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:4 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:2 2061:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:3 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:4 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2307:1 2310:1 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:4 2341:4 2342:1 2345:1 2346:2 2350:1 2353:1 2356:1 2361:2 2362:1 2363:2 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:4 2403:2 2404:1 2409:1 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2505:1 2516:2 2533:1 2539:1 2541:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:1 2712:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:6 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:8 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:10 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:2 3360:1 3374:2 3382:1 3392:3 3410:1 3418:1 3421:3 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3774:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:3 3885:12 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:1 3920:1 3927:1 3930:6 3932:1 3946:4 3949:1 3964:3 3968:1 3984:1 4016:1 4058:1 4060:1 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:3 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:3 4809:1 4824:2 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 4986:1 5022:33 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:3 5172:2 5174:1 5177:3 5180:2 5181:3 5183:3 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:3 5690:2 5696:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:6 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 6008:1 6050:5 6054:2 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6167:1 6182:1 6185:4 6223:1 6229:2 6231:2 6236:4 6272:1 6276:1 6293:6 6308:2 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:1 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6466:1 6470:1 6501:2 6504:1 6505:1 6509:1 6510:4 6512:4 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6662:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:1 6881:1 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:2 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7041:1 7042:1 7044:1 7071:1 7074:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:7 7314:2 7317:1 7330:2 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7431:1 7444:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:4 7611:1 7617:3 7623:1 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:6 7801:4 7810:1 7820:1 7821:1 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:42 7886:1 7887:1 7895:9 7897:7 7904:2 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 8008:1 8011:1 8014:1 8020:1 8030:1 8034:1 8038:1 8050:1 8057:1 8076:1 8078:2 8081:7 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8171:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:4 8306:2 8317:1 8319:1 8321:1 8340:3 8349:2 8350:1 8354:1 8357:18 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:1 8611:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:1 8732:1 8733:3 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:2 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:2 8804:1 8809:1 8832:1 8834:1 8838:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:1 9043:1 9045:3 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9151:1 9153:2 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9391:1 9393:1 9400:6 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9442:1 9445:1 9462:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:8 9970:1 9985:1 9986:1 9988:1 9989:3 9999:1 10000:2 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:1 10065:1 10077:1 10094:2 10117:2 10127:3 10134:1 10151:2 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:3 10201:2 10204:1 10209:1 10211:1 10212:1 10215:2 10216:1 10218:2 10222:2 10244:1 10245:2 10254:4 10267:1 10278:1 10283:1 10284:1 10296:1 10300:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:3 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:6 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:4 10903:1 10904:2 10907:1 10913:3 10916:1 10924:3 10942:1 10968:1 10980:1 11017:1 11021:1 11027:1 11032:1 11036:2 11037:1 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:3 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11300:1 11303:1 11306:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11401:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11499:1 11538:1 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:1 11665:9 11666:1 11668:1 11676:1 11679:1 11692:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11732:1 11744:1 11745:1 11755:1 11762:2 11772:3 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:3 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:3 11912:1 11915:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:6 11930:1 11935:1 11936:1 11957:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:1 12035:1 12042:1 12049:1 12055:1 12067:4 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:1 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:1 12398:3 12412:1 12415:1 12418:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:2 12488:1 12498:1 12517:4 12518:1 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:3 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:6 12934:1 12939:2 12948:3 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:1 13016:1 13023:1 13034:1 13037:1 13038:4 13045:1 13049:2 13054:1 13060:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:1 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:1 13401:2 13404:1 13407:7 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:2 13436:7 13444:1 13449:2 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:1 13554:1 13559:2 13566:6 13569:1 13587:1 13594:1 13601:1 13606:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13689:1 13694:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13766:1 13770:2 13780:1 13796:3 13810:1 13815:3 13823:1 13847:1 13863:1 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:5 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:1 14205:1 14211:2 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:2 14314:1 14328:1 14337:1 14347:1 14354:1 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:2 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:3 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:2 15152:1 15162:2 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15692:13 15702:2 15706:1 15746:2 15750:1 15768:1 15772:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15840:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:12 15961:1 15962:1 15963:1 15964:1 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15992:4 15993:2 16000:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:4 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:1 16219:1 16225:2 16237:1 16276:2 16279:4 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:9 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16686:3 16716:1 16719:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16962:2 16971:1 16988:1 17020:1 17035:1 17047:1 17052:3 17057:4 17063:1 17067:1 17088:1 17098:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17171:1 17176:4 17181:2 17201:2 17213:2 17217:1 17219:1 17235:1 17238:5 17258:3 17265:1 17272:1 17276:1 17284:1 17299:4 17307:1 17308:1 17309:1 17316:3 17327:1 17338:1 17342:2 17370:1 17404:8 17412:1 17429:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17591:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:1 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:2 18172:2 18173:6 18181:3 18188:1 18194:1 18196:1 18197:2 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:2 18348:1 18373:1 18395:1 18410:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18492:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18642:1 18648:1 18657:3 18665:1 18685:1 18690:1 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:1 18994:1 19004:1 19029:1 19033:3045 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19227:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:1 19756:1 19766:2 19772:2 19785:1 19789:1 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:6 19840:2 19855:1 19856:7 19861:1 19862:1 19864:1 19865:2 19869:1 19871:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:1 19926:2 19928:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:2 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:4 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:4 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:5 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20915:1 20925:2 20929:1 20947:2 20955:1 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21219:2 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21296:1 21298:1 21302:1 21311:3 21320:3 21326:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:5 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21752:1 21754:1 21769:1 21783:1 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:1 21905:1 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21960:2 21975:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:5 22101:1 22107:2 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:3 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:2 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22772:2 22790:1 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:7 22931:3 22935:1 22942:2 22992:1 22993:1 22998:5 23022:4 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23050:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:2 23236:1 23241:2 23244:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:4 23315:4 23322:2 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23474:1 23479:1 23497:2 23513:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:4 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:3 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:6 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24254:3 24264:1 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:2 24527:1 24530:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25019:1 25022:1 25023:1 25025:1 25026:4 25028:3 25030:2 25036:1 25038:3 25048:2 25049:1 25052:1 25058:1 25067:3 25079:4 25086:1 25087:1 25092:1 25119:1 25121:2 25123:1 25145:1 25146:2 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:8 25361:1 25364:3 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:1 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:1 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:4 25854:8 25855:1 25862:1 25866:1 25869:1 25879:2 25885:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:4 26076:3 26077:1 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:3 26190:2 26192:1 26212:2 26218:1 26241:1 26276:1 26281:1 26298:1 26315:1 26329:1 26331:4 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26699:1 26701:1 26704:1 26706:1 26709:1 26712:1 26713:1 26726:1 26729:1 26734:1 26745:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27006:4 27028:1 27030:4 27037:1 27049:1 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:3 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:1 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:3 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:7 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:6 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:3 28063:3 28066:2 28071:3 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:2 28147:2 28149:1 28204:2 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:2 28429:2 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28671:1 28673:2 28676:2 28677:3 28685:1 28707:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28823:2 28834:19 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:8 28882:1 28887:3 28892:1 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28985:1 28988:1 28993:2 29001:4 29010:1 29015:1 29038:6 29055:1 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29197:1 29203:1 29207:1 29219:1 29221:1 29230:1 29239:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:4 29367:5 29392:1 29395:3 29409:1 29412:1 29413:1 29419:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29545:1 29548:4 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:3 29601:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29774:2 29776:1 29788:1 29796:4 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:5 30105:1 30106:3 30107:1 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:8 30205:1 30208:4 30209:1 30213:4 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:1 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:1 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:4 389:1 393:2 398:2 409:2 439:2 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:7 715:1 723:4 725:1 726:1 730:1 734:2 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:1 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:1 959:1 965:1 975:2 977:1 979:6 981:1 983:1 990:1 998:1 1006:1 1010:1 1020:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:2 1075:1 1077:1 1090:1 1098:1 1104:3 1112:1 1117:2 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:1 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1436:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:10 1614:10 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:4 1702:4 1704:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:5 1788:1 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:4 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:2 2061:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:4 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2307:1 2310:1 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:4 2342:1 2345:1 2346:2 2350:1 2353:1 2356:1 2361:2 2362:1 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:4 2403:2 2404:1 2409:1 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2505:1 2516:2 2533:1 2539:1 2541:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:2 2712:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:6 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:8 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:11 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:3 3360:1 3374:3 3382:1 3392:3 3410:1 3418:1 3421:3 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3774:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:3 3885:13 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:2 3920:1 3927:1 3930:6 3932:1 3946:4 3949:1 3964:3 3968:1 3984:1 4016:1 4040:1 4058:1 4060:1 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:3 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:2 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:3 4789:2 4809:1 4824:3 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 4986:1 5022:33 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:2 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:3 5670:3 5674:1 5676:1 5677:1 5684:4 5690:2 5696:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 6008:1 6050:5 6054:3 6062:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6167:1 6182:1 6185:4 6223:1 6229:2 6231:2 6236:4 6270:1 6272:1 6276:1 6293:6 6308:2 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:1 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6466:1 6470:1 6501:2 6504:1 6505:1 6509:1 6510:4 6512:4 6513:1 6516:3 6518:3 6520:1 6521:1 6522:2 6526:1 6529:8 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:1 6662:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:1 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:1 6881:1 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7041:1 7042:1 7044:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:8 7314:2 7317:1 7330:2 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7426:1 7431:1 7444:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:4 7611:1 7617:3 7623:1 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:6 7801:4 7810:1 7820:1 7821:1 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:43 7886:1 7887:1 7895:9 7897:7 7904:2 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 8008:1 8011:1 8014:1 8020:1 8030:1 8034:1 8038:1 8050:1 8057:1 8076:1 8078:2 8081:7 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8171:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:5 8306:2 8317:1 8319:1 8321:1 8340:3 8349:2 8350:1 8354:1 8357:18 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:2 8611:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:1 8732:1 8733:4 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:2 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:2 8804:1 8809:1 8832:1 8834:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:1 9043:1 9045:3 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9391:1 9393:1 9400:6 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9442:1 9445:1 9462:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9930:1 9931:2 9936:1 9965:8 9970:1 9985:1 9986:1 9988:1 9989:3 9999:1 10000:2 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:3 10134:1 10151:2 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:3 10201:2 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10222:2 10244:1 10245:2 10254:4 10267:1 10278:1 10283:1 10284:1 10295:1 10296:1 10300:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:3 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:4 10903:1 10904:2 10907:1 10913:3 10916:1 10917:1 10924:3 10942:1 10968:1 10980:1 11017:1 11021:1 11027:1 11032:1 11036:3 11037:1 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:3 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11300:1 11303:1 11304:1 11306:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11401:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11499:1 11538:1 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:2 11665:11 11666:1 11668:1 11676:1 11679:1 11692:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11729:1 11731:1 11732:1 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:4 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:3 11912:1 11915:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:6 11930:1 11935:1 11936:1 11948:1 11957:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:2 12035:1 12042:1 12049:1 12055:1 12067:5 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:2 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:1 12398:3 12412:1 12415:1 12418:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:5 12518:1 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12627:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:3 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:6 12934:1 12939:2 12948:3 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13016:1 13023:1 13034:1 13037:1 13038:4 13045:1 13049:2 13054:1 13060:1 13063:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:1 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:1 13401:2 13404:1 13407:7 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:3 13436:7 13444:1 13449:2 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:7 13569:1 13577:2 13587:1 13594:1 13601:1 13606:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:1 13689:1 13694:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:3 13810:1 13815:3 13823:1 13847:1 13853:1 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:1 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:6 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:1 14205:1 14211:2 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:2 14314:1 14328:1 14337:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14496:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:4 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:2 15152:1 15162:2 15176:2 15189:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15692:13 15702:2 15706:1 15746:2 15750:1 15768:1 15772:1 15783:1 15785:1 15801:1 15807:1 15811:1 15815:1 15817:1 15840:1 15844:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:12 15961:1 15962:1 15963:1 15964:2 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15992:5 15993:2 16000:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:4 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16219:1 16225:2 16237:1 16276:2 16279:4 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:10 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:2 16556:1 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16686:3 16716:1 16719:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16926:2 16946:1 16952:2 16960:1 16962:2 16971:1 16988:1 17020:1 17035:1 17047:1 17052:3 17057:4 17063:1 17067:1 17088:1 17098:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17171:1 17176:5 17181:2 17201:2 17213:2 17217:1 17219:1 17229:1 17235:1 17238:5 17258:3 17265:1 17272:1 17276:1 17284:1 17299:4 17307:1 17308:1 17309:1 17311:1 17316:3 17327:1 17338:1 17341:1 17342:2 17370:1 17388:1 17404:9 17412:1 17417:1 17429:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17508:1 17513:1 17514:1 17518:1 17521:1 17525:2 17534:1 17573:1 17576:2 17577:1 17588:1 17591:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:2 17825:1 17839:1 17842:1 17851:1 17861:2 17870:1 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:2 18172:2 18173:6 18181:3 18188:1 18194:1 18196:1 18197:2 18217:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18492:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:1 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:1 19004:1 19029:1 19033:3161 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19133:2 19136:1 19182:1 19187:1 19189:1 19227:1 19228:2 19241:1 19242:1 19243:2 19246:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:1 19414:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:1 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:2 19926:2 19928:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:2 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:3 20317:1 20332:2 20337:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20529:3 20534:1 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:4 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:6 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20915:1 20925:2 20929:1 20947:2 20955:1 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21219:2 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21296:1 21298:2 21302:1 21311:3 21320:3 21326:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:6 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:1 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:1 21905:1 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21960:2 21975:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22198:1 22202:1 22203:2 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:4 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22772:2 22790:1 22806:2 22822:1 22829:1 22830:1 22836:2 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:7 22931:3 22935:1 22942:2 22992:1 22993:1 22998:5 23022:4 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23050:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:2 23236:1 23241:2 23244:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:4 23315:4 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23468:1 23474:1 23479:1 23497:2 23513:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:4 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:3 24037:2 24038:1 24052:1 24066:1 24072:1 24074:3 24087:6 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:1 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24254:3 24264:1 24266:1 24289:1 24292:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24474:1 24488:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:3 25008:3 25016:1 25019:1 25022:1 25023:1 25025:1 25026:4 25028:3 25030:2 25036:1 25038:3 25048:2 25049:1 25052:1 25058:1 25067:3 25079:4 25086:1 25087:1 25092:1 25119:1 25121:2 25123:1 25145:1 25146:2 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:1 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:11 25327:1 25328:1 25350:9 25361:1 25364:3 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:1 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:5 25854:9 25855:1 25862:1 25866:1 25869:1 25879:2 25885:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:1 26150:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:4 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:1 26709:1 26712:1 26713:1 26726:1 26729:1 26734:1 26745:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27006:4 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:3 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:1 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:3 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:7 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:6 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:2 28147:2 28149:1 28204:2 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:2 28429:2 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:3 28671:1 28673:2 28676:2 28677:3 28685:1 28707:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28811:1 28823:2 28834:20 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:8 28882:1 28887:3 28892:1 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28985:1 28988:1 28993:2 29001:4 29010:1 29015:1 29038:6 29055:1 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29197:1 29203:1 29207:1 29219:1 29221:1 29230:1 29239:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:4 29367:5 29392:1 29395:3 29409:1 29412:1 29413:1 29419:1 29420:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29545:1 29548:5 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:3 29601:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29774:2 29776:1 29788:1 29796:4 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:6 30105:1 30106:3 30107:1 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:1 30197:9 30205:1 30208:4 30209:1 30213:4 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:2 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:4 389:1 393:2 398:2 409:2 439:2 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:3 685:2 691:7 715:1 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 875:1 876:1 885:2 888:1 892:1 896:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 990:1 998:1 1006:1 1010:1 1020:1 1021:1 1022:1 1026:1 1028:1 1031:5 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:2 1075:1 1077:2 1090:1 1098:1 1104:4 1112:1 1117:2 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1436:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:1 1627:2 1642:1 1673:1 1674:1 1700:4 1702:4 1704:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:6 1788:1 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:1 1824:1 1863:2 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:6 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:2 2061:1 2066:1 2077:1 2081:2 2082:1 2103:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:5 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:4 2342:1 2345:1 2346:2 2350:1 2353:1 2356:1 2361:2 2362:1 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:5 2403:2 2404:1 2409:1 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:1 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2505:1 2516:2 2533:1 2539:1 2541:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:1 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:7 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2938:2 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:9 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:11 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:3 3360:1 3374:3 3382:1 3392:3 3410:1 3418:1 3421:3 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3729:1 3753:1 3764:1 3768:1 3774:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:4 3885:13 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:2 3920:1 3927:1 3930:7 3932:1 3946:4 3949:1 3964:3 3968:1 3984:1 3997:1 4016:1 4040:1 4058:1 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:3 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:3 4789:2 4809:1 4824:3 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4950:1 4953:1 4968:1 4986:1 5002:1 5013:1 5022:36 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:4 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:2 5696:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 6008:1 6050:5 6054:3 6062:1 6106:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:2 6167:1 6182:1 6185:4 6207:1 6223:1 6227:1 6229:2 6231:2 6236:4 6270:1 6272:1 6276:1 6293:6 6308:2 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:2 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6466:1 6470:1 6501:2 6504:1 6505:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:3 6520:2 6521:1 6522:2 6526:1 6529:9 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:2 6662:2 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:2 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:1 6881:1 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7041:1 7042:1 7044:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:8 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7403:1 7423:2 7426:1 7431:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:4 7611:1 7617:3 7623:1 7630:1 7634:1 7648:1 7651:1 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:6 7801:4 7810:1 7820:1 7821:2 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:44 7886:1 7887:1 7895:9 7897:7 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 8008:1 8011:1 8014:1 8020:1 8030:1 8034:1 8038:1 8050:1 8057:2 8076:1 8078:2 8081:7 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8171:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:6 8306:2 8317:1 8319:1 8321:1 8340:3 8349:2 8350:1 8354:1 8357:18 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:2 8611:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:1 8732:1 8733:4 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:2 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:2 8804:1 8809:1 8832:1 8834:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:1 9043:1 9045:3 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9391:1 9393:1 9400:7 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9442:1 9445:1 9462:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:8 9970:1 9985:1 9986:1 9988:1 9989:3 9999:1 10000:2 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:3 10134:1 10151:2 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10222:2 10239:1 10244:1 10245:2 10254:4 10267:1 10278:1 10283:1 10284:1 10295:1 10296:1 10300:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:3 10652:1 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:4 10903:1 10904:2 10907:1 10913:3 10916:1 10917:1 10924:3 10942:1 10968:1 10980:1 11017:1 11021:1 11027:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:3 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11401:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11499:1 11538:1 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11604:1 11612:3 11614:2 11620:1 11638:1 11650:1 11664:2 11665:11 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:1 11732:1 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:4 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11912:1 11915:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:6 11930:1 11935:1 11936:1 11948:1 11957:1 11958:1 11963:1 11983:2 11993:1 12004:1 12013:2 12035:1 12042:2 12049:1 12055:1 12067:6 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:2 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:5 12518:1 12531:2 12532:2 12537:1 12550:1 12561:1 12565:1 12569:1 12599:1 12627:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12744:1 12763:3 12780:2 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:7 12934:1 12939:2 12948:3 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13016:1 13023:1 13034:1 13037:1 13038:5 13045:1 13049:2 13054:1 13060:1 13063:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:1 13401:2 13404:1 13407:7 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:4 13436:7 13444:1 13449:2 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:7 13569:1 13577:2 13587:1 13594:1 13601:1 13606:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:1 13689:1 13694:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:1 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14026:2 14067:6 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:1 14274:1 14277:1 14309:2 14314:1 14328:1 14337:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14496:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:3 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:4 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:2 15152:1 15162:2 15176:2 15189:1 15205:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15687:1 15692:13 15702:2 15706:1 15746:2 15750:1 15768:1 15772:1 15783:1 15785:1 15801:2 15807:1 15811:1 15813:2 15815:1 15817:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:12 15961:1 15962:1 15963:1 15964:2 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:4 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16219:1 16225:2 16237:1 16276:2 16279:4 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:11 16436:3 16439:1 16449:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:3 16556:1 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16686:3 16716:1 16719:2 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16875:1 16883:1 16887:1 16892:1 16893:2 16915:1 16926:2 16946:1 16952:2 16960:1 16962:2 16971:1 16988:1 17020:1 17035:1 17047:1 17052:3 17057:4 17063:1 17067:1 17088:1 17098:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17171:1 17176:6 17181:2 17201:2 17213:2 17217:1 17219:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17316:3 17327:1 17338:1 17341:1 17342:2 17370:1 17388:1 17404:9 17412:1 17417:1 17429:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17508:1 17513:1 17514:2 17518:1 17521:1 17525:2 17534:2 17573:1 17576:2 17577:1 17588:1 17591:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:2 18172:2 18173:7 18181:3 18188:1 18194:1 18196:1 18197:2 18217:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:1 18325:1 18326:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:2 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:1 19004:1 19029:1 19033:3277 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19126:1 19133:2 19136:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:2 19241:1 19242:1 19243:2 19246:2 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:1 19414:1 19425:1 19427:1 19458:1 19461:3 19463:1 19465:1 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:2 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:3 20317:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:4 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:6 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20915:1 20925:2 20929:1 20947:2 20955:1 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21219:2 21228:1 21232:1 21239:1 21264:4 21275:2 21289:1 21291:1 21296:1 21298:2 21302:2 21311:3 21320:3 21326:1 21328:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:6 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:1 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:2 21975:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:1 22129:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22198:1 22202:1 22203:3 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:4 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22769:1 22772:2 22790:1 22806:2 22822:1 22829:1 22830:2 22836:2 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:7 22931:3 22935:1 22942:2 22992:1 22993:1 22998:5 23022:4 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:2 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:2 23236:1 23241:2 23244:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:5 23315:4 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23468:1 23474:1 23479:1 23497:2 23513:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:1 23887:1 23893:4 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:3 24037:2 24038:1 24052:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24129:1 24130:1 24138:2 24144:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24250:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24474:1 24488:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:1 25023:2 25025:1 25026:4 25028:3 25030:2 25036:1 25038:3 25048:2 25049:1 25052:1 25058:1 25067:3 25079:4 25086:1 25087:1 25092:1 25119:1 25121:2 25123:1 25145:1 25146:2 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25213:1 25215:2 25220:2 25221:1 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25285:1 25326:12 25327:1 25328:1 25350:9 25361:1 25364:3 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:1 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:5 25854:9 25855:1 25862:1 25866:1 25869:1 25879:3 25885:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26083:1 26095:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:2 26150:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:5 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:1 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27006:4 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:3 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:1 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:1 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27676:1 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:3 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:8 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:7 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:1 28136:1 28138:1 28139:2 28147:2 28149:1 28204:2 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:2 28429:2 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:20 28835:2 28837:2 28839:2 28842:1 28843:3 28852:1 28854:2 28873:8 28882:1 28887:3 28892:1 28895:1 28911:1 28923:3 28927:1 28951:1 28957:1 28985:1 28988:1 28993:2 29001:4 29010:1 29015:1 29038:6 29055:1 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29197:1 29203:1 29207:1 29219:1 29221:1 29230:1 29239:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:5 29367:6 29392:1 29395:3 29409:1 29412:1 29413:1 29419:1 29420:1 29421:1 29427:1 29442:2 29452:1 29509:1 29537:1 29543:1 29545:1 29548:6 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29774:2 29776:1 29788:1 29796:4 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:6 30105:1 30106:3 30107:1 30108:1 30119:1 30129:1 30146:1 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:2 30197:9 30205:1 30208:5 30209:1 30213:4 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:2 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 229:1 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:4 389:1 393:2 398:2 409:2 439:2 442:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:1 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:1 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:1 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 990:1 998:1 1006:1 1010:1 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:2 1075:1 1077:2 1090:1 1098:1 1104:4 1112:1 1117:3 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:1 1436:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:1 1627:2 1642:1 1668:1 1673:1 1674:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:2 1824:1 1863:2 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:6 2003:1 2008:1 2021:1 2035:1 2041:1 2048:2 2053:1 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:1 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:5 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:5 2342:1 2345:1 2346:2 2350:1 2353:1 2356:1 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:5 2403:2 2404:1 2409:1 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2504:1 2505:1 2516:2 2533:1 2539:1 2541:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:1 2656:1 2665:2 2672:2 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:7 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2932:1 2938:2 2953:1 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3023:2 3035:1 3039:1 3054:4 3063:2 3064:1 3067:11 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:3 3360:1 3374:3 3381:1 3382:1 3392:3 3410:1 3418:1 3421:3 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3546:1 3582:1 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:1 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3726:1 3729:1 3753:1 3764:1 3768:1 3774:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:4 3885:13 3896:1 3901:1 3907:1 3912:2 3915:4 3916:3 3919:2 3920:1 3927:1 3930:7 3932:1 3946:4 3949:1 3964:3 3968:1 3984:1 3997:1 4016:1 4040:1 4043:1 4058:1 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:3 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4283:1 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:3 4789:2 4809:1 4824:3 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4995:1 5002:1 5013:1 5022:36 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:1 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:4 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:2 5696:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5908:1 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 5989:1 6008:1 6050:5 6054:3 6062:1 6106:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6167:1 6182:1 6185:4 6207:1 6215:1 6223:1 6227:1 6229:2 6231:2 6236:4 6270:1 6272:1 6276:1 6293:6 6308:2 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:2 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6466:1 6470:1 6501:2 6504:1 6505:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:2 6521:1 6522:2 6526:1 6529:9 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:2 6662:2 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:2 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:1 6881:2 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7041:1 7042:1 7044:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:10 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7382:1 7403:1 7423:2 7426:1 7431:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:4 7611:1 7617:3 7623:1 7630:1 7634:1 7648:1 7651:2 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:6 7801:4 7810:1 7820:1 7821:2 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:45 7886:1 7887:1 7895:9 7897:7 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8008:1 8011:1 8014:1 8020:1 8030:1 8032:1 8034:1 8038:1 8050:1 8057:2 8076:1 8078:2 8081:7 8099:1 8100:1 8101:1 8107:1 8126:5 8133:1 8139:1 8171:1 8195:1 8200:1 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8317:1 8319:1 8321:1 8334:1 8340:3 8349:2 8350:1 8354:1 8357:19 8387:1 8392:1 8400:1 8403:1 8411:1 8418:1 8419:1 8449:1 8456:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:2 8611:2 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:3 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:1 9043:1 9045:3 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:1 9390:1 9391:1 9393:1 9400:7 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9442:1 9445:1 9462:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9736:1 9749:3 9767:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:9 9970:1 9985:1 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10151:2 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10222:2 10239:1 10244:1 10245:2 10254:4 10267:1 10278:1 10283:1 10284:1 10295:1 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:3 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:2 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:4 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:5 10903:1 10904:2 10907:1 10913:3 10916:1 10917:1 10924:3 10942:1 10968:1 10980:1 11017:1 11021:1 11027:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:3 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11401:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11568:1 11572:1 11578:1 11579:1 11587:1 11604:1 11612:3 11614:2 11620:2 11638:1 11650:1 11664:2 11665:11 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:1 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:4 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11912:1 11915:1 11916:2 11917:6 11918:1 11920:1 11921:1 11926:6 11930:1 11935:1 11936:1 11948:1 11957:1 11958:1 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12049:1 12055:1 12067:7 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:3 12194:1 12199:1 12224:2 12227:3 12231:1 12239:2 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:5 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12565:1 12569:1 12599:1 12627:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12680:1 12709:1 12720:1 12727:1 12744:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:1 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13016:1 13023:1 13034:1 13037:1 13038:5 13045:1 13049:2 13054:1 13060:1 13063:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:1 13401:2 13404:1 13407:7 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:5 13436:7 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:8 13569:1 13577:2 13587:1 13594:1 13601:1 13606:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:1 13689:1 13694:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:1 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:1 14002:1 14012:1 14026:2 14067:7 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:1 14337:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14451:2 14470:1 14476:2 14491:1 14496:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:1 14567:1 14569:1 14579:1 14591:4 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:3 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:4 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:2 15189:1 15205:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15687:1 15692:13 15702:2 15706:1 15746:2 15750:1 15768:1 15772:2 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:12 15961:1 15962:1 15963:1 15964:2 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16219:1 16225:2 16237:1 16276:2 16279:4 16295:4 16334:1 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:11 16436:3 16439:1 16449:1 16450:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:2 16897:1 16915:1 16926:2 16946:1 16952:2 16960:1 16962:2 16971:1 16988:2 17020:1 17035:1 17047:1 17052:3 17057:4 17063:1 17067:1 17074:1 17088:1 17098:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:2 17201:2 17213:2 17217:1 17219:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17316:3 17327:1 17338:1 17341:1 17342:2 17370:1 17388:1 17404:9 17412:1 17417:1 17429:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17508:1 17513:1 17514:2 17518:1 17521:1 17525:2 17534:2 17573:1 17576:2 17577:1 17588:1 17591:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18152:1 18154:2 18172:2 18173:7 18181:3 18188:1 18194:1 18196:1 18197:2 18217:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:2 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18800:7 18809:2 18810:2 18826:1 18845:1 18878:1 18879:1 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:1 19004:2 19029:1 19033:3370 19052:3 19054:1 19058:2 19062:1 19072:1 19124:1 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:1 19414:1 19425:1 19427:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:4 20653:1 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:6 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:1 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21218:1 21219:2 21228:1 21232:1 21239:1 21248:1 21264:4 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:3 21320:3 21326:1 21328:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:7 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:1 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:2 21975:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22198:1 22202:1 22203:3 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:3 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:4 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22763:1 22769:1 22772:2 22787:1 22790:1 22806:2 22822:1 22829:1 22830:2 22836:2 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:8 22931:3 22935:1 22942:2 22992:1 22993:1 22998:5 23022:4 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:2 23236:1 23241:2 23244:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:5 23315:4 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23468:1 23474:1 23479:1 23497:2 23513:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:2 23887:1 23893:4 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24129:1 24130:1 24138:2 24144:1 24155:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24250:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24474:1 24488:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24730:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:1 25023:2 25025:1 25026:4 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:1 25058:1 25067:3 25079:5 25086:1 25087:1 25092:1 25119:1 25121:2 25123:1 25145:1 25146:2 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:2 25197:1 25207:1 25212:1 25213:1 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25350:9 25361:1 25364:4 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25486:1 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:1 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25657:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:5 25854:9 25855:1 25862:1 25866:1 25869:1 25879:3 25885:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26083:1 26095:1 26099:1 26106:2 26108:1 26109:1 26116:1 26125:2 26128:1 26142:1 26147:2 26150:1 26151:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:5 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26387:1 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27006:4 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27150:1 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:3 27280:1 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27676:1 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:3 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:8 27874:3 27883:1 27927:1 27932:1 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:2 28149:1 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:1 28413:1 28414:1 28423:1 28427:2 28429:2 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:1 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:4 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:23 28835:3 28837:2 28839:2 28842:2 28843:3 28852:1 28854:2 28873:9 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28985:1 28988:1 28993:2 29001:5 29010:1 29015:1 29038:6 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29197:1 29203:1 29207:1 29219:1 29221:1 29230:1 29239:1 29241:2 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:5 29367:6 29392:1 29395:3 29409:1 29412:1 29413:1 29419:1 29420:1 29421:1 29427:1 29442:3 29452:1 29509:1 29537:1 29543:1 29545:1 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29774:2 29776:1 29788:1 29796:5 29804:1 29806:1 29807:1 29816:3 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:6 30105:1 30106:3 30107:1 30108:1 30119:1 30129:1 30142:1 30146:1 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:2 30197:9 30205:1 30208:5 30209:1 30213:4 30224:1 30242:1 30253:1 30258:2 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:2 158:1 161:1 169:1 177:1 182:1 183:1 186:2 187:1 206:1 220:1 225:5 229:1 243:1 265:1 266:1 278:3 279:2 282:1 290:1 303:1 311:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:4 389:1 393:2 398:2 409:2 439:2 442:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:1 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 990:1 998:1 1006:1 1010:1 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1047:1 1063:1 1068:1 1073:3 1075:1 1077:2 1090:1 1098:1 1104:4 1112:1 1117:3 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:1 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:1 1627:2 1642:1 1646:1 1668:1 1673:1 1674:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:2 1824:1 1863:2 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:6 2003:1 2008:1 2021:1 2023:1 2035:1 2041:1 2048:2 2053:1 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:1 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:5 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:5 2342:1 2345:1 2346:2 2350:1 2353:1 2356:1 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:5 2403:2 2404:1 2409:2 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2504:1 2505:1 2516:2 2533:1 2539:1 2541:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:7 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2932:1 2938:2 2953:1 2984:1 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:11 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:4 3360:1 3374:3 3381:1 3382:1 3392:3 3410:1 3418:1 3421:4 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3525:1 3535:1 3546:1 3582:2 3590:1 3593:2 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:2 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3726:1 3729:1 3753:1 3764:1 3768:1 3774:1 3793:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:4 3885:13 3896:1 3901:1 3907:1 3912:2 3915:4 3916:4 3919:2 3920:1 3924:1 3927:1 3930:7 3932:2 3946:4 3949:1 3964:3 3968:1 3974:1 3984:1 3997:1 4016:1 4040:1 4043:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4283:1 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4995:1 4997:1 5002:1 5013:1 5022:37 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5207:1 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:2 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:5 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5908:1 5916:1 5927:1 5931:4 5933:1 5965:1 5977:1 5989:1 6008:1 6050:5 6054:3 6062:1 6106:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6167:1 6182:1 6185:4 6207:1 6215:1 6223:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:6 6308:2 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:2 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:2 6504:1 6505:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:2 6521:1 6522:2 6526:1 6529:9 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:2 6662:2 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:1 6881:2 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7041:1 7042:1 7044:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:10 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7382:1 7403:1 7423:2 7426:1 7431:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:4 7611:1 7617:4 7623:1 7630:1 7634:1 7648:1 7651:2 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:7 7801:4 7810:1 7820:1 7821:2 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:46 7886:1 7887:1 7895:9 7897:7 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8008:1 8011:2 8014:1 8020:1 8030:1 8032:1 8034:1 8038:1 8050:1 8057:2 8076:1 8078:2 8081:8 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8317:1 8319:1 8321:1 8334:1 8340:3 8349:2 8350:1 8354:1 8357:19 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8469:1 8479:1 8502:1 8515:2 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:2 8611:2 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:3 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:1 9223:1 9224:1 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:1 9390:1 9391:1 9393:1 9400:7 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:1 9432:1 9442:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9729:1 9736:1 9749:4 9767:1 9779:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:9 9970:1 9985:1 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10220:1 10222:2 10239:1 10244:1 10245:2 10251:1 10254:4 10267:1 10278:1 10283:1 10284:1 10295:1 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:1 10584:1 10590:1 10601:1 10604:3 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:5 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:5 10903:1 10904:2 10907:1 10913:3 10916:1 10917:1 10924:3 10942:1 10968:1 10980:1 10984:1 11017:1 11021:1 11027:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:4 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11604:1 11612:3 11614:2 11620:2 11638:1 11650:1 11664:2 11665:11 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:2 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:5 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11912:1 11914:1 11915:1 11916:2 11917:7 11918:1 11920:1 11921:1 11926:6 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:1 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12049:1 12055:1 12067:7 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:4 12194:1 12199:1 12224:2 12227:3 12231:1 12239:2 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:2 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:5 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12565:2 12569:1 12599:2 12627:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:1 12709:1 12720:1 12727:1 12744:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:2 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13016:1 13023:1 13034:1 13037:1 13038:5 13045:1 13049:2 13054:2 13060:1 13063:1 13071:1 13074:1 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:4 13420:1 13422:1 13424:1 13427:1 13434:5 13436:7 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:8 13569:1 13577:2 13587:1 13594:1 13601:1 13606:1 13610:1 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:1 13689:1 13694:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:1 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13958:1 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:2 14002:1 14012:1 14026:3 14067:7 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:1 14337:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:3 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14451:2 14455:1 14470:1 14476:3 14491:1 14496:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14579:1 14591:4 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:4 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:2 15189:1 15205:1 15217:3 15222:2 15224:1 15226:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:1 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15687:1 15692:13 15702:2 15706:1 15736:1 15746:2 15750:1 15756:1 15768:1 15772:2 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:12 15961:1 15962:1 15963:1 15964:2 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16219:1 16225:2 16237:1 16276:3 16279:4 16295:4 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:12 16436:3 16439:1 16449:1 16450:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16778:1 16785:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:2 16897:1 16915:1 16926:2 16940:1 16946:1 16952:2 16960:1 16962:2 16971:1 16988:2 17020:1 17035:1 17037:1 17047:1 17052:3 17057:4 17063:1 17067:1 17074:1 17088:1 17098:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:2 17201:2 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17316:3 17327:1 17338:1 17341:1 17342:2 17370:1 17388:1 17404:10 17412:1 17417:1 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17508:1 17513:1 17514:2 17518:1 17521:1 17525:2 17534:2 17573:1 17576:2 17577:1 17588:1 17591:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18148:1 18152:1 18154:2 18172:2 18173:7 18181:3 18188:1 18194:1 18196:1 18197:2 18217:1 18220:2 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18552:1 18553:1 18561:1 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:2 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18800:7 18809:2 18810:2 18826:1 18845:1 18878:2 18879:1 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:1 19004:2 19029:1 19033:3456 19052:3 19054:1 19058:2 19062:1 19072:1 19086:1 19124:1 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:1 19414:1 19425:1 19427:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19546:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:4 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:4 20653:1 20658:1 20664:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:6 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21041:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21218:1 21219:2 21228:1 21232:1 21239:1 21248:1 21264:4 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:3 21320:3 21326:1 21328:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21529:7 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21669:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:1 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:2 21975:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:3 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:4 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:1 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:5 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:2 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22763:1 22769:1 22772:2 22787:3 22790:1 22805:1 22806:2 22822:1 22829:1 22830:2 22836:2 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:9 22931:3 22935:1 22942:2 22992:1 22993:1 22998:5 23022:5 23026:1 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:2 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:2 23236:1 23241:2 23244:1 23245:1 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:5 23315:4 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23468:1 23474:1 23479:1 23497:2 23513:1 23514:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:2 23887:1 23893:4 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24129:1 24130:1 24138:2 24144:1 24148:1 24155:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24250:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24457:1 24474:1 24488:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24730:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:1 25023:2 25025:1 25026:4 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25092:1 25099:1 25119:1 25121:2 25123:1 25145:1 25146:2 25154:2 25164:1 25166:2 25189:1 25190:2 25192:1 25194:3 25197:1 25207:1 25212:1 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25486:1 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25695:1 25718:2 25766:1 25794:1 25802:2 25828:3 25829:6 25854:9 25855:1 25862:1 25866:1 25869:1 25879:3 25885:1 25888:2 25889:1 25892:1 25941:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26083:1 26095:1 26099:1 26106:2 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:2 26150:1 26151:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:5 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26387:3 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26851:8 26858:2 26862:1 26867:1 26869:1 26880:1 26899:1 26904:1 26907:1 26917:1 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27006:4 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27150:1 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:4 27279:1 27280:1 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27676:1 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:8 27874:3 27883:1 27906:1 27927:1 27932:1 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:2 28149:1 28194:1 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:1 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28736:1 28746:1 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:23 28835:3 28837:2 28839:2 28842:2 28843:3 28850:1 28852:1 28854:2 28873:9 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28985:1 28988:1 28993:2 29001:5 29010:1 29015:1 29038:7 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29192:1 29197:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:5 29367:6 29392:1 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:1 29421:1 29427:1 29442:3 29452:1 29509:1 29537:1 29543:1 29545:1 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:1 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29756:1 29774:2 29776:1 29788:1 29796:5 29804:1 29806:1 29807:2 29816:3 29833:1 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:6 30105:1 30106:3 30107:1 30108:1 30119:1 30127:1 30129:1 30142:1 30146:2 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:2 30197:9 30205:1 30208:5 30209:1 30213:5 30224:1 30242:1 30253:1 30258:3 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:2 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 206:1 220:1 225:5 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:4 389:1 393:2 398:2 409:2 439:2 442:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:1 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:2 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 990:1 998:1 1006:1 1010:1 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1044:1 1047:1 1063:1 1068:1 1073:3 1075:1 1077:2 1090:1 1098:1 1104:4 1112:1 1117:3 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:2 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1642:1 1646:1 1668:1 1673:1 1674:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1822:2 1824:1 1863:2 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:6 2003:2 2008:1 2021:1 2023:1 2035:1 2041:1 2048:2 2053:1 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:2 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:5 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:6 2342:1 2345:1 2346:2 2350:1 2353:1 2356:1 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:5 2403:2 2404:1 2409:2 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:1 2533:1 2539:1 2541:1 2548:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:7 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2932:1 2938:2 2953:1 2984:2 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:12 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:4 3360:1 3374:3 3381:1 3382:1 3392:3 3410:1 3418:1 3421:5 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:2 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:1 3546:1 3582:2 3590:1 3593:3 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:2 3645:1 3656:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3726:1 3729:1 3753:1 3764:1 3768:1 3774:1 3793:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:1 3876:1 3879:2 3884:4 3885:13 3896:1 3901:1 3907:2 3912:2 3915:4 3916:4 3919:2 3920:1 3924:1 3927:1 3930:7 3932:2 3946:5 3949:1 3964:3 3968:1 3974:1 3984:1 3997:1 4016:1 4040:1 4043:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:1 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4283:1 4293:1 4296:1 4306:1 4307:1 4309:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4748:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:5 4851:1 4856:3 4877:1 4889:1 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:37 5024:2 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5207:1 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:1 5272:1 5284:1 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:1 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:2 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:5 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:4 5908:1 5916:1 5927:1 5931:4 5933:1 5953:1 5965:1 5977:1 5989:1 6008:1 6050:5 6054:3 6062:1 6077:1 6106:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6167:1 6182:1 6185:4 6207:1 6215:1 6223:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:6 6308:2 6312:1 6325:2 6332:1 6340:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:2 6411:1 6412:1 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:2 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:2 6526:1 6529:9 6532:1 6533:3 6535:1 6562:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:2 6662:2 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7027:1 7041:1 7042:1 7044:1 7057:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:10 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7382:1 7399:1 7403:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:3 7603:1 7605:4 7611:1 7617:4 7623:1 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7768:1 7772:1 7773:4 7776:1 7780:1 7787:1 7791:1 7792:5 7798:3 7799:7 7801:4 7810:1 7820:1 7821:2 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:46 7886:1 7887:1 7895:10 7897:8 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8008:1 8011:2 8014:1 8020:1 8030:1 8032:1 8034:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:8 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8317:1 8319:1 8321:1 8334:1 8340:3 8349:2 8350:1 8354:1 8357:19 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8469:1 8479:1 8502:1 8515:3 8548:1 8551:1 8557:1 8564:1 8586:1 8591:1 8594:1 8603:2 8611:2 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8653:1 8655:2 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:2 9223:1 9224:1 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:1 9390:1 9391:1 9393:1 9400:7 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9729:1 9736:1 9749:4 9767:1 9779:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:10 9970:1 9985:1 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10220:1 10222:2 10239:1 10244:1 10245:2 10251:1 10254:4 10267:1 10278:1 10283:1 10284:1 10295:1 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:1 10388:1 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:2 10584:1 10590:1 10601:1 10604:3 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:5 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:5 10903:1 10904:2 10907:1 10913:3 10916:1 10917:1 10924:3 10942:1 10968:1 10980:1 10984:1 10985:1 11017:1 11021:1 11025:1 11027:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:1 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:5 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:2 11620:2 11638:1 11650:1 11664:2 11665:11 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:3 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:2 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:6 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11912:1 11914:1 11915:1 11916:2 11917:7 11918:1 11920:1 11921:1 11926:6 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:1 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12049:1 12055:1 12067:7 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:4 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:1 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:1 12341:1 12343:2 12344:2 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:3 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:5 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:1 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12709:1 12720:1 12727:1 12744:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:1 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:2 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13015:1 13016:1 13023:1 13034:1 13037:1 13038:5 13045:1 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:2 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:4 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:7 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:9 13569:1 13577:2 13587:1 13594:1 13601:1 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:1 13689:1 13694:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:1 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13958:1 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:2 14002:1 14012:1 14026:3 14067:7 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14451:2 14455:1 14470:1 14476:3 14491:1 14496:1 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:4 14691:2 14692:1 14700:1 14724:2 14729:2 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14786:1 14794:1 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:2 15189:1 15205:1 15217:4 15222:2 15224:1 15226:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15637:1 15648:1 15659:1 15671:1 15687:1 15692:14 15702:2 15706:1 15736:1 15746:2 15750:1 15756:1 15768:1 15772:2 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:13 15961:1 15962:1 15963:1 15964:2 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16219:1 16225:2 16237:1 16276:3 16279:4 16295:4 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:12 16414:1 16436:3 16439:1 16449:1 16450:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:2 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:1 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:3 17201:2 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17316:3 17327:1 17338:1 17341:1 17342:2 17354:2 17370:1 17388:1 17404:10 17412:1 17417:1 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17470:1 17478:2 17493:1 17508:1 17513:1 17514:2 17518:1 17521:1 17525:2 17534:2 17573:1 17576:2 17577:1 17588:1 17591:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18148:1 18152:1 18154:2 18172:2 18173:7 18181:3 18188:1 18194:1 18196:1 18197:2 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18552:1 18553:1 18561:1 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:2 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18800:7 18809:2 18810:2 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:2 19004:2 19029:1 19033:3501 19052:3 19054:1 19058:2 19062:1 19072:1 19086:1 19124:1 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:1 19425:1 19427:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19546:1 19584:1 19614:2 19616:1 19632:2 19655:1 19659:4 19705:1 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:1 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:2 20575:1 20586:1 20600:2 20604:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:6 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:4 20963:1 20969:3 20971:1 20974:1 20979:1 21033:1 21041:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21218:1 21219:2 21228:1 21232:1 21239:1 21248:1 21264:5 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21523:1 21529:8 21534:1 21535:2 21541:1 21550:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21667:1 21669:1 21680:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22046:1 22052:1 22058:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:3 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:5 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:1 22353:3 22361:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:3 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22733:1 22739:1 22751:1 22763:1 22769:1 22772:2 22787:3 22790:1 22805:1 22806:2 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:6 23026:1 23027:1 23035:1 23036:1 23043:2 23044:1 23045:4 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:3 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:2 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:5 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24129:1 24130:1 24138:2 24144:1 24148:1 24155:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24250:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24457:1 24474:1 24488:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24730:1 24731:1 24743:1 24755:2 24756:1 24757:1 24759:1 24761:5 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:2 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:1 25023:2 25025:1 25026:4 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25092:1 25099:1 25119:1 25121:2 25123:1 25145:1 25146:2 25154:2 25157:1 25164:1 25166:2 25189:1 25190:2 25192:1 25194:3 25197:1 25202:1 25207:1 25212:1 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25695:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:7 25854:9 25855:1 25862:1 25863:1 25866:1 25869:1 25879:3 25885:1 25888:2 25889:1 25892:1 25941:1 25943:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26083:1 26095:1 26099:1 26106:2 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:2 26150:1 26151:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:6 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26387:3 26395:2 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26851:8 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:1 26917:2 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:1 27237:1 27268:4 27276:1 27278:4 27279:1 27280:1 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:4 27676:1 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:8 27874:3 27883:1 27889:1 27906:1 27927:1 27932:1 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:2 28149:1 28194:1 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:1 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:1 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:2 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:1 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:23 28835:3 28837:2 28839:2 28842:2 28843:4 28850:1 28852:1 28854:2 28873:10 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28985:1 28988:1 28993:2 29001:5 29010:1 29015:1 29038:7 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:1 29421:1 29427:1 29442:3 29452:1 29509:1 29526:1 29537:1 29543:1 29545:1 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29735:2 29739:1 29741:1 29756:1 29774:3 29776:1 29788:1 29796:5 29804:1 29806:1 29807:2 29816:3 29833:1 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:2 30077:1 30083:1 30092:1 30095:6 30105:1 30106:3 30107:1 30108:1 30119:1 30127:1 30129:1 30142:1 30146:2 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:2 30197:9 30205:1 30208:5 30209:1 30213:5 30224:1 30242:1 30253:1 30258:3 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:2 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 206:1 220:1 225:5 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 332:1 335:1 350:1 367:1 385:1 386:1 387:5 389:1 393:2 398:2 409:2 439:2 442:1 455:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:2 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:2 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 990:1 998:1 1006:1 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1044:1 1047:1 1063:1 1068:1 1070:1 1073:3 1075:1 1077:2 1090:1 1098:1 1104:4 1112:1 1117:3 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:2 1400:2 1407:1 1414:1 1421:2 1436:1 1440:2 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1642:1 1646:1 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1817:1 1822:2 1824:1 1863:2 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:6 2003:2 2008:1 2021:1 2023:2 2035:1 2041:1 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:2 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:5 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:1 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:7 2342:1 2345:1 2346:2 2350:1 2353:1 2356:2 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:5 2403:2 2404:1 2409:3 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:1 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:4 3360:1 3374:3 3381:1 3382:1 3392:3 3410:1 3418:1 3421:5 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:1 3546:1 3582:2 3590:1 3593:4 3599:1 3602:1 3604:2 3608:1 3620:1 3636:1 3640:2 3645:1 3656:1 3658:1 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3726:1 3729:1 3753:1 3764:1 3768:1 3774:1 3793:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:2 3876:1 3879:2 3884:4 3885:13 3896:1 3901:1 3907:2 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:5 3949:1 3964:3 3968:1 3974:1 3984:1 3997:1 4016:1 4040:1 4043:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4283:1 4293:1 4296:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4392:2 4402:1 4405:2 4407:1 4414:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:5 4851:1 4856:3 4877:1 4888:1 4889:1 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:37 5024:3 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:1 5194:1 5196:1 5198:1 5200:5 5202:3 5207:1 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:2 5604:1 5614:1 5642:1 5645:2 5646:1 5647:1 5656:1 5657:1 5660:5 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:1 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:5 5908:1 5916:1 5927:1 5931:4 5933:1 5953:1 5965:1 5977:1 5989:1 6008:1 6050:5 6054:3 6062:1 6077:1 6106:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6167:1 6182:1 6185:4 6207:2 6215:1 6223:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:6 6308:2 6312:1 6325:2 6332:1 6340:2 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:2 6411:1 6412:1 6418:1 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6526:1 6529:9 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:10 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:4 7364:1 7370:1 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:4 7603:1 7605:4 7611:1 7617:4 7623:1 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:7 7801:5 7810:1 7820:1 7821:2 7825:1 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:47 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8030:1 8032:1 8034:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:8 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8317:1 8319:1 8321:1 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:19 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:3 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:2 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:2 9223:1 9224:1 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:1 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9729:1 9736:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:10 9970:1 9985:1 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10220:1 10222:2 10239:1 10244:1 10245:2 10251:1 10254:4 10267:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:6 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:1 10388:2 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:2 10584:1 10590:1 10601:1 10604:3 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:5 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10885:1 10887:1 10897:5 10903:1 10904:2 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10942:1 10968:1 10980:1 10984:1 10985:1 11017:1 11021:1 11025:1 11027:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:5 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:1 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:2 11620:2 11638:1 11650:1 11664:3 11665:12 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:3 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:7 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11912:1 11914:1 11915:1 11916:2 11917:7 11918:1 11920:1 11921:1 11926:7 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:1 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:4 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:3 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:2 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12691:2 12709:1 12720:1 12727:1 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:1 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:2 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13015:1 13016:1 13023:1 13034:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13156:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13325:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:4 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:8 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:9 13569:1 13577:2 13587:1 13594:1 13601:1 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:2 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13958:1 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:2 14002:1 14012:1 14026:3 14067:7 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:1 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:5 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:1 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:2 15189:1 15202:1 15205:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15603:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:14 15702:2 15706:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:2 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:13 15961:1 15962:1 15963:1 15964:3 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16190:1 16219:1 16225:2 16237:1 16239:1 16276:3 16279:4 16295:4 16302:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:12 16414:1 16436:3 16439:1 16449:1 16450:1 16459:2 16461:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:2 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:1 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:4 17201:2 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17493:1 17508:1 17513:1 17514:2 17518:1 17521:1 17525:2 17534:2 17566:1 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18148:1 18152:1 18154:2 18172:2 18173:7 18181:4 18188:2 18194:1 18196:1 18197:2 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18561:1 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:2 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18800:7 18809:2 18810:3 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:2 18999:1 19004:2 19029:1 19033:3582 19052:3 19054:1 19058:2 19062:1 19072:1 19086:1 19124:1 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19546:1 19584:1 19614:3 19616:1 19632:2 19655:1 19659:4 19705:1 19711:1 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:2 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:2 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:3 20575:1 20586:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:4 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21217:4 21218:1 21219:2 21223:1 21228:1 21232:1 21239:1 21248:1 21264:5 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:1 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21523:1 21529:8 21534:1 21535:2 21541:1 21550:1 21553:1 21556:1 21559:1 21565:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22031:1 22046:1 22052:1 22058:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:3 22218:6 22224:1 22227:1 22246:1 22249:1 22260:1 22261:5 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:3 22390:1 22392:1 22405:2 22425:1 22447:1 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:1 22772:2 22787:3 22790:1 22805:1 22806:2 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:2 22883:1 22887:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:6 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:4 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:2 23265:1 23267:1 23275:4 23286:1 23302:3 23304:2 23307:1 23311:1 23312:5 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24457:1 24474:1 24488:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24709:1 24717:1 24725:2 24726:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:1 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:2 25157:1 25164:1 25166:2 25189:1 25190:2 25192:1 25194:3 25197:1 25202:1 25207:1 25212:1 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25695:1 25711:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:8 25854:9 25855:1 25862:1 25863:1 25866:1 25869:1 25879:3 25885:1 25888:2 25889:1 25892:1 25941:1 25943:1 25958:1 25964:2 25967:1 25993:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:2 26150:1 26151:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:6 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26851:8 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:1 26914:1 26917:2 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:1 27268:4 27276:1 27278:4 27279:1 27280:1 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27476:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:5 27676:1 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:8 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:1 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:2 28149:1 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:1 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:23 28835:3 28837:2 28839:2 28842:2 28843:4 28850:1 28852:1 28854:2 28873:10 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28977:1 28985:1 28988:1 28993:2 29001:6 29010:1 29015:1 29038:7 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29509:1 29526:1 29537:1 29543:1 29545:1 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:1 29774:3 29776:1 29788:1 29796:5 29804:1 29806:1 29807:2 29816:3 29833:1 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:3 30077:1 30083:1 30092:1 30095:7 30105:1 30106:3 30107:1 30108:1 30119:1 30127:1 30129:1 30142:1 30146:2 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:2 30197:9 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:1 30253:1 30258:3 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:2 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 206:1 220:1 225:5 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 332:1 335:1 344:1 350:1 367:1 385:1 386:1 387:5 389:1 393:2 398:2 409:2 439:2 442:1 455:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:2 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:1 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1044:1 1047:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:2 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:1 1369:1 1370:1 1382:1 1383:1 1389:1 1391:2 1400:2 1407:1 1414:1 1421:2 1436:1 1440:2 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1642:1 1646:1 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1811:1 1813:1 1817:1 1822:2 1824:1 1863:2 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:1 1988:1 1993:6 2003:2 2008:1 2021:1 2023:2 2035:1 2041:1 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:6 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:7 2342:1 2345:1 2346:2 2347:1 2350:1 2353:1 2356:2 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:1 2396:3 2398:3 2401:3 2402:6 2403:2 2404:1 2409:3 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:4 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:1 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:2 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:2 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:4 3360:1 3374:3 3381:1 3382:1 3392:3 3410:1 3418:1 3421:5 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:1 3546:1 3582:2 3590:1 3593:4 3599:1 3602:1 3604:2 3608:1 3620:1 3636:2 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:1 3726:2 3729:1 3753:1 3764:1 3768:1 3774:1 3793:1 3800:4 3810:1 3813:5 3833:3 3835:1 3843:1 3859:2 3876:1 3879:2 3884:4 3885:14 3892:1 3896:1 3901:1 3907:2 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:5 3949:1 3964:3 3968:1 3974:1 3984:1 3997:1 4016:1 4040:1 4043:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4283:1 4293:1 4296:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:7 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:6 4851:1 4856:3 4877:1 4888:1 4889:2 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:37 5024:3 5058:2 5128:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:2 5194:1 5196:1 5198:1 5200:5 5202:3 5207:2 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:2 5604:1 5614:1 5642:1 5645:3 5646:1 5647:1 5656:1 5657:1 5660:5 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:7 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:1 5901:1 5907:5 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 6008:1 6050:5 6054:3 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:1 6167:1 6182:1 6185:6 6207:2 6215:1 6223:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:7 6308:2 6312:1 6325:2 6332:1 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:1 6382:1 6402:1 6407:2 6408:3 6409:2 6411:1 6412:1 6418:1 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:10 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:1 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:1 6914:3 6917:1 6929:1 6936:4 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:11 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:1 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7580:1 7583:4 7603:1 7605:4 7611:1 7617:4 7623:1 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:7 7801:5 7810:1 7820:1 7821:2 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:48 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8030:1 8032:1 8034:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:8 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8317:1 8319:1 8321:1 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:20 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:3 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:2 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:1 8916:3 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:2 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:2 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:1 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9729:1 9736:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:1 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9868:1 9877:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:10 9970:1 9985:1 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:1 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:1 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:2 10218:2 10219:1 10220:1 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10267:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:7 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:1 10388:2 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:2 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:5 10702:1 10703:1 10715:1 10727:1 10729:7 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10877:1 10885:1 10887:1 10897:5 10903:1 10904:2 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10942:1 10968:1 10980:1 10984:1 10985:1 11017:1 11021:1 11025:1 11027:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:5 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11638:1 11650:1 11664:3 11665:13 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:3 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:7 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11912:1 11914:1 11915:1 11916:2 11917:7 11918:1 11920:1 11921:1 11926:7 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:4 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:3 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:2 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:1 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:2 12956:1 12960:1 12963:1 12978:1 12986:1 12987:1 12993:1 12998:1 13010:2 13015:1 13016:1 13023:1 13034:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13156:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13325:1 13335:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:5 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:8 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:1 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:9 13569:1 13577:2 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:2 13863:2 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13958:1 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:2 14002:1 14012:1 14026:3 14067:7 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:1 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:5 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:1 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:1 14911:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:1 15589:1 15594:2 15603:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:15 15702:2 15706:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:2 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:13 15961:1 15962:1 15963:1 15964:3 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:3 16279:4 16295:4 16302:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:12 16414:1 16436:3 16439:1 16449:1 16450:1 16459:2 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:2 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:1 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:4 17201:2 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17493:1 17508:2 17513:1 17514:2 17518:1 17521:1 17525:2 17534:2 17566:1 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:1 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18120:1 18123:3 18128:1 18137:1 18144:1 18148:1 18152:1 18154:2 18172:2 18173:8 18181:4 18188:2 18194:1 18196:1 18197:2 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18561:1 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:3 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18800:7 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:1 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:2 18999:1 19004:2 19029:1 19033:3647 19052:3 19054:1 19058:2 19062:1 19072:1 19086:1 19124:1 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19546:1 19584:1 19614:3 19616:1 19632:2 19655:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:2 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:2 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:3 20575:1 20586:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20719:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:1 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:4 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:5 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21523:1 21529:8 21534:1 21535:2 21541:1 21550:1 21553:1 21556:1 21559:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:1 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:2 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:3 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22004:2 22008:1 22021:1 22031:1 22046:1 22052:1 22058:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:3 22218:7 22224:1 22227:1 22246:1 22249:1 22260:1 22261:5 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:3 22390:1 22392:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:3 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:1 22805:1 22806:2 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:3 22883:1 22887:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:6 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:5 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:2 23265:1 23267:1 23275:4 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:3 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:1 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:1 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24457:2 24474:1 24488:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:3 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:2 25157:1 25164:1 25166:2 25189:1 25190:2 25192:1 25194:3 25197:1 25202:1 25207:1 25212:1 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:1 25397:3 25414:2 25428:2 25432:3 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25695:1 25711:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:8 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:4 25885:1 25888:2 25889:1 25892:1 25941:1 25943:1 25958:1 25964:2 25967:1 25993:1 26028:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:2 26150:1 26151:1 26173:4 26190:2 26192:1 26212:2 26218:1 26241:2 26276:1 26281:1 26298:1 26315:1 26329:1 26331:6 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26851:8 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:1 26914:1 26917:2 26942:3 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:1 27268:4 27276:1 27278:4 27279:2 27280:1 27281:3 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27476:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:1 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:5 27676:1 27680:2 27706:1 27718:1 27729:1 27741:1 27748:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:1 27806:2 27838:2 27842:2 27859:2 27872:9 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:1 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:5 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:2 28149:1 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:24 28835:3 28837:2 28839:2 28842:2 28843:4 28850:2 28852:1 28854:2 28873:10 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28977:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:7 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:1 29281:1 29301:2 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29509:1 29526:1 29537:1 29543:1 29545:1 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:1 29763:1 29774:3 29776:1 29788:1 29796:5 29804:1 29806:1 29807:2 29816:3 29833:1 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:1 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:1 30055:3 30077:1 30083:1 30092:1 30095:7 30105:1 30106:3 30107:1 30108:1 30119:1 30127:1 30129:1 30142:1 30146:2 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30253:1 30258:3 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 206:1 220:1 225:5 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:5 389:1 393:2 398:2 409:2 439:2 442:1 455:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:2 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:1 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1044:1 1047:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:2 1369:1 1370:1 1382:1 1383:1 1389:1 1391:2 1398:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:2 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1642:2 1646:1 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:1 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:2 1988:1 1993:6 2003:2 2008:1 2021:1 2023:2 2035:1 2041:1 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:6 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:7 2342:1 2345:1 2346:2 2347:1 2350:1 2353:1 2356:3 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:3 2398:3 2401:3 2402:6 2403:2 2404:1 2409:3 2411:3 2412:1 2414:2 2415:2 2416:1 2419:2 2421:5 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:1 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:1 2927:3 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:3 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3381:1 3382:1 3392:4 3410:1 3418:1 3421:5 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:1 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3620:1 3636:2 3638:1 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:1 3726:2 3729:1 3752:1 3753:1 3761:1 3764:1 3768:1 3774:1 3777:1 3793:1 3800:4 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:1 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:5 3949:1 3960:1 3964:3 3968:1 3974:1 3984:2 3997:1 4016:1 4040:1 4043:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:3 4144:2 4150:3 4153:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:1 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:6 4851:1 4856:3 4877:1 4888:1 4889:2 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:38 5024:3 5058:2 5128:1 5144:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:3 5180:2 5181:3 5183:4 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:3 5207:2 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:2 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:5 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:1 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:1 6167:1 6178:1 6182:1 6185:6 6207:2 6215:1 6223:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:1 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:1 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:10 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:5 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:11 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:1 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:1 7580:1 7583:4 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:49 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:8 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:20 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:3 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8622:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:3 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:2 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:2 9729:2 9736:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:2 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9868:1 9877:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:11 9970:1 9985:2 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:1 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10267:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:2 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:5 10702:1 10703:1 10715:1 10727:1 10729:8 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:1 10827:1 10831:1 10832:2 10841:2 10852:1 10877:1 10885:1 10887:1 10897:5 10903:1 10904:2 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10942:1 10968:1 10980:1 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:3 11037:1 11053:1 11079:1 11080:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:5 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:13 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:3 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:7 11918:1 11920:1 11921:1 11926:8 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:1 12191:5 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:3 12440:1 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:2 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:1 12993:1 12998:1 13010:2 13015:1 13016:1 13023:1 13034:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:5 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:8 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:9 13569:1 13577:2 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:2 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:2 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:1 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:7 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:2 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:5 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:16 15702:2 15706:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:2 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:13 15961:1 15962:1 15963:1 15964:3 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:3 16279:4 16295:4 16302:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:13 16414:1 16436:3 16439:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:2 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:1 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:4 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17566:2 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:1 18152:1 18154:2 18172:2 18173:8 18181:4 18188:2 18194:1 18196:1 18197:2 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18561:1 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:3 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:7 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:1 18960:1 18963:2 18970:3 18984:2 18991:1 18993:2 18994:2 18999:1 19004:2 19029:1 19033:3738 19052:3 19054:2 19058:2 19062:1 19072:1 19086:1 19124:2 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19614:3 19616:1 19632:2 19655:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19979:2 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20550:1 20569:1 20573:3 20575:1 20586:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20719:1 20722:2 20737:1 20748:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:2 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:1 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:1 21133:1 21139:1 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:5 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21523:1 21529:8 21534:1 21535:2 21541:2 21550:1 21553:1 21556:1 21559:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:1 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:1 21685:2 21695:1 21704:1 21709:1 21713:2 21715:3 21722:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:1 22058:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:3 22218:7 22224:1 22227:1 22246:1 22249:1 22260:1 22261:5 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:3 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:1 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:3 22883:1 22887:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:6 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:5 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:2 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:1 24160:1 24164:2 24180:1 24182:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24457:2 24474:1 24488:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:4 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:2 25157:1 25164:1 25166:2 25189:1 25190:2 25192:1 25194:3 25197:1 25202:1 25207:1 25212:1 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:3 25414:2 25428:2 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25695:1 25711:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:9 25831:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:4 25885:1 25888:2 25889:1 25892:1 25941:1 25943:1 25958:1 25964:2 25967:2 25993:1 26011:1 26028:1 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26298:1 26309:1 26315:1 26329:1 26331:6 26345:2 26349:1 26354:2 26356:1 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26851:8 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:1 26914:1 26917:2 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27126:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:1 27268:4 27276:1 27278:4 27279:2 27280:1 27281:4 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27476:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:5 27676:1 27680:2 27706:1 27718:1 27729:1 27741:2 27748:1 27765:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27859:2 27872:9 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:2 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:6 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:2 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:24 28835:3 28837:2 28839:2 28842:2 28843:4 28850:2 28852:2 28854:2 28873:11 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28971:1 28977:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:1 29763:1 29774:3 29776:1 29788:1 29796:5 29804:1 29806:1 29807:2 29816:3 29833:1 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29951:2 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:2 30055:3 30077:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:1 30108:1 30119:1 30127:1 30129:1 30142:1 30146:2 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30253:1 30258:3 30261:1 30262:1 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 206:1 220:1 225:6 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 323:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:5 389:1 393:2 398:2 409:2 439:2 442:1 455:1 475:1 483:8 488:1 494:1 515:2 549:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:2 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:1 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1044:1 1047:1 1051:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:2 1369:1 1370:1 1382:1 1383:1 1389:1 1391:2 1398:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:2 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1635:1 1642:2 1646:1 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:1 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:1 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:2 1988:1 1993:6 1995:1 2003:2 2008:1 2021:1 2023:2 2035:1 2041:1 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:6 2180:1 2192:1 2193:1 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:1 2282:5 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:5 2341:7 2342:1 2345:1 2346:2 2347:1 2350:1 2353:1 2356:3 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:3 2398:3 2401:3 2402:6 2403:2 2404:1 2409:3 2411:3 2412:2 2414:2 2415:2 2416:1 2419:2 2421:5 2426:6 2427:2 2429:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:1 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:2 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:1 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:2 2927:4 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3020:1 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:3 3258:1 3261:1 3265:2 3274:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3381:1 3382:1 3392:4 3410:1 3418:1 3421:5 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:2 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3620:1 3636:2 3638:1 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:2 3726:2 3729:1 3752:1 3753:1 3761:1 3764:1 3768:1 3774:1 3777:1 3793:1 3800:4 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:1 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:5 3949:1 3960:1 3964:3 3968:1 3974:1 3984:3 3997:1 4016:1 4040:1 4043:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:3 4144:2 4150:3 4153:2 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:2 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4303:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:1 4427:1 4436:5 4441:2 4450:2 4451:1 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:6 4851:2 4856:3 4877:1 4888:1 4889:2 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:38 5024:3 5058:2 5128:1 5140:1 5144:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:3 5174:1 5177:4 5180:2 5181:3 5183:4 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:3 5207:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5430:1 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:4 5843:1 5855:1 5857:3 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:5 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:1 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:2 6167:1 6178:1 6182:1 6183:1 6185:6 6207:2 6215:1 6223:1 6225:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:1 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:2 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:10 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:6 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7061:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7152:2 7153:1 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:11 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:2 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:1 7580:1 7583:4 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7700:1 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:50 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:8 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8310:1 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:20 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:3 8544:1 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8622:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:1 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:3 8924:1 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9048:1 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:2 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9607:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9711:3 9729:2 9736:1 9748:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9805:1 9813:1 9818:1 9824:1 9825:3 9826:2 9840:1 9848:2 9851:1 9862:1 9866:1 9868:1 9877:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:11 9970:1 9985:3 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:1 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10142:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:3 10204:1 10209:1 10211:1 10212:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10264:1 10267:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10409:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:2 10559:1 10572:1 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:6 10702:1 10703:1 10715:1 10727:1 10729:8 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:2 10827:1 10831:1 10832:2 10841:2 10852:1 10877:2 10885:1 10887:1 10897:5 10903:1 10904:2 10905:1 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10928:1 10942:1 10968:1 10980:2 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:3 11037:1 11053:1 11056:1 11079:1 11080:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:5 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:13 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:4 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:7 11918:1 11920:1 11921:1 11926:8 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:2 12191:5 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:1 12418:1 12422:3 12440:2 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:2 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12686:1 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:2 12993:1 12998:1 13010:2 13015:1 13016:1 13023:1 13034:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13347:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:6 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:8 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:10 13569:1 13577:2 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:2 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:3 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:2 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:8 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:3 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14595:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:5 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15088:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15620:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:16 15702:2 15706:1 15723:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:3 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:14 15961:1 15962:1 15963:1 15964:3 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:3 16279:4 16295:4 16302:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:13 16414:1 16436:3 16439:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:3 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:1 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:4 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17566:2 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:2 18152:1 18154:2 18172:2 18173:8 18181:4 18188:2 18194:1 18196:1 18197:3 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18557:1 18561:2 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:3 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:7 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:1 18960:1 18963:2 18970:3 18978:1 18984:2 18991:1 18993:2 18994:2 18999:2 19004:2 19029:1 19033:3801 19052:3 19054:2 19058:2 19059:1 19062:1 19072:1 19086:1 19124:3 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19597:1 19614:3 19616:1 19632:2 19644:1 19655:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19792:1 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19969:1 19979:3 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20061:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20548:1 20550:1 20569:1 20573:3 20575:1 20586:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20713:1 20719:1 20722:2 20737:1 20748:1 20763:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:3 20897:1 20904:3 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:2 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:1 21133:1 21139:2 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:5 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21523:1 21529:9 21534:2 21535:2 21539:1 21541:2 21550:1 21553:1 21556:1 21559:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:1 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:2 21685:2 21695:1 21704:1 21709:1 21713:2 21715:4 21722:1 21735:1 21752:1 21754:1 21769:1 21783:2 21790:5 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21869:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21943:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:1 22058:1 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:3 22218:7 22224:1 22227:1 22246:1 22249:1 22260:1 22261:6 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:3 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:1 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:3 22883:1 22887:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:6 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:6 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:4 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:2 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23442:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23860:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23976:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:1 24160:1 24164:2 24180:1 24182:1 24192:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:1 24439:1 24449:1 24451:1 24457:3 24474:1 24488:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:1 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:5 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25089:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:2 25157:1 25164:1 25166:2 25189:1 25190:3 25192:1 25194:3 25197:1 25202:1 25207:1 25212:2 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:4 25414:2 25428:2 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25672:1 25695:1 25711:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:9 25831:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:4 25885:1 25888:2 25889:1 25892:1 25897:1 25941:1 25943:1 25958:1 25964:2 25967:2 25993:1 26011:1 26028:2 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26298:1 26309:1 26315:1 26329:1 26331:6 26336:1 26345:2 26349:1 26354:2 26356:2 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:2 26714:1 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26848:1 26851:8 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:2 26914:1 26917:3 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:1 27126:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:1 27268:4 27276:1 27278:4 27279:3 27280:1 27281:4 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27476:1 27478:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:5 27676:1 27680:2 27706:1 27718:1 27729:1 27741:2 27748:1 27765:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27859:2 27872:9 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:3 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:7 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:3 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28240:1 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:24 28835:3 28837:2 28839:2 28842:2 28843:4 28850:3 28852:2 28854:2 28873:11 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28971:1 28977:1 28980:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:2 29763:1 29768:1 29774:3 29776:1 29788:1 29796:6 29804:1 29806:1 29807:2 29816:3 29833:2 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29936:1 29951:2 29965:2 29974:2 29989:1 29995:3 29999:3 30013:2 30020:2 30055:3 30077:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:2 30108:1 30119:1 30127:1 30129:1 30142:1 30146:3 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30253:1 30258:3 30261:1 30262:2 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 202:1 206:1 220:1 225:6 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 323:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:5 389:1 393:2 398:2 409:2 439:2 442:1 455:1 475:1 483:9 488:1 494:1 515:2 549:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:2 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:2 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:6 1032:1 1035:1 1042:2 1044:1 1047:1 1051:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:2 1369:1 1370:1 1382:1 1383:1 1389:1 1391:2 1398:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:2 1442:1 1447:1 1448:1 1475:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1635:1 1638:1 1642:2 1646:1 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:2 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:2 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:2 1988:1 1993:6 1995:1 2003:2 2008:1 2021:1 2023:2 2035:1 2041:1 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:6 2180:1 2192:1 2193:2 2199:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:1 2282:6 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:6 2341:7 2342:1 2345:1 2346:2 2347:1 2350:1 2353:1 2356:3 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:4 2398:3 2401:3 2402:6 2403:2 2404:1 2409:3 2411:3 2412:2 2414:2 2415:2 2416:1 2419:2 2421:5 2426:7 2427:2 2429:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:1 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:1 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:3 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2816:2 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:2 2927:4 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3020:1 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:4 3258:1 3261:1 3265:2 3274:1 3283:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3381:1 3382:1 3392:4 3410:1 3418:1 3421:5 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:2 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3620:1 3636:2 3638:1 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:2 3726:2 3729:1 3752:1 3753:1 3761:1 3764:2 3768:1 3774:1 3777:1 3793:1 3800:5 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:1 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:5 3949:1 3960:1 3964:3 3968:1 3974:1 3984:3 3997:1 4016:1 4040:1 4043:1 4056:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:3 4144:2 4150:3 4153:2 4154:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:2 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4303:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:1 4427:1 4436:5 4441:2 4450:3 4451:2 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:6 4851:2 4856:3 4877:1 4888:1 4889:2 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:39 5024:3 5058:2 5128:1 5140:1 5144:1 5145:1 5146:3 5169:3 5170:7 5171:4 5172:4 5174:1 5177:4 5180:2 5181:3 5183:4 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:3 5207:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5313:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5430:1 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:5 5843:1 5855:1 5857:3 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:5 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:1 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:2 6167:1 6178:1 6182:1 6183:1 6185:6 6207:2 6215:1 6223:1 6225:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:1 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:2 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:11 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:6 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7061:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7145:1 7152:2 7153:2 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:12 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:2 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:1 7580:1 7583:4 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7692:1 7700:1 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:52 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:9 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8195:1 8200:2 8210:1 8235:1 8246:2 8278:1 8285:1 8294:1 8300:7 8306:2 8310:1 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:21 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:3 8544:1 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8622:1 8624:2 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:2 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:3 8924:1 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9048:1 9052:1 9058:1 9060:1 9064:1 9069:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9444:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:2 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9607:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9694:1 9711:3 9729:2 9736:1 9748:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9799:1 9805:1 9813:1 9818:1 9824:1 9825:3 9826:2 9840:1 9848:2 9851:1 9861:1 9862:1 9866:1 9868:1 9877:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:1 9909:1 9930:1 9931:2 9936:1 9965:12 9970:1 9982:1 9985:3 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:2 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:2 10127:4 10134:1 10142:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:4 10204:1 10209:1 10211:1 10212:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10264:1 10267:1 10269:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10409:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:4 10530:3 10551:2 10557:2 10559:1 10572:1 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:7 10702:1 10703:1 10715:1 10727:1 10729:8 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:2 10827:1 10831:1 10832:2 10841:2 10852:1 10877:2 10885:1 10887:1 10897:5 10903:1 10904:2 10905:1 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10928:1 10942:1 10968:1 10980:2 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:4 11037:1 11053:1 11056:1 11079:1 11080:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:3 11177:5 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:13 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:4 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11833:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11909:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:8 11918:1 11920:1 11921:1 11926:9 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:2 12191:5 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:2 12418:1 12422:3 12440:2 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:2 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12686:1 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:3 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:2 12993:1 12998:1 13010:2 13015:1 13016:1 13023:1 13034:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13236:1 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13347:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:6 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:8 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:10 13569:1 13577:2 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13847:1 13853:2 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:3 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:2 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:8 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:3 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14595:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:5 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14928:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15088:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15339:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15620:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:17 15702:2 15706:1 15723:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:3 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15870:1 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:14 15961:1 15962:1 15963:1 15964:3 15965:3 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:3 16279:4 16295:4 16302:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:13 16414:1 16436:3 16439:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:3 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:1 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:4 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17543:1 17566:2 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17737:1 17753:1 17756:1 17761:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:2 18152:1 18154:2 18172:2 18173:8 18181:4 18188:2 18194:1 18196:1 18197:3 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18344:1 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18557:1 18561:2 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:3 18695:2 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:8 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:1 18960:1 18963:2 18970:3 18978:1 18984:2 18991:1 18993:2 18994:2 18999:2 19004:2 19029:1 19033:3850 19052:3 19054:3 19058:2 19059:1 19062:1 19072:1 19086:1 19124:3 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19597:1 19614:3 19616:1 19632:2 19644:1 19655:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19792:1 19794:1 19805:2 19806:1 19813:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19872:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19969:1 19979:3 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20061:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20300:1 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20548:1 20550:1 20569:1 20573:3 20575:1 20586:1 20595:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20713:1 20719:1 20722:2 20737:1 20748:1 20763:1 20769:1 20771:1 20781:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:3 20897:1 20904:4 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:2 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:1 21133:1 21139:2 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:6 21275:2 21289:1 21291:1 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21509:2 21516:1 21517:1 21522:1 21523:1 21529:9 21534:2 21535:2 21539:1 21541:2 21550:1 21553:1 21556:1 21559:1 21562:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:1 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:2 21685:2 21695:1 21704:1 21709:1 21713:2 21715:4 21722:1 21735:1 21752:1 21754:1 21769:1 21783:2 21790:6 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21869:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21943:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:1 22058:2 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:4 22218:7 22224:1 22227:1 22228:1 22246:1 22249:1 22260:1 22261:6 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:3 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:1 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:3 22866:4 22868:1 22872:2 22874:1 22882:3 22883:1 22887:1 22889:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:6 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:6 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23136:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:5 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:2 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23442:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23740:1 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23860:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23976:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:2 24160:1 24164:3 24180:1 24182:1 24192:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:2 24439:1 24449:1 24451:1 24457:3 24474:1 24488:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:2 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:5 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25089:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:2 25157:1 25164:1 25166:2 25189:1 25190:3 25192:1 25194:3 25197:1 25202:1 25207:1 25212:2 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:4 25414:3 25428:2 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:2 25634:1 25652:1 25657:1 25672:1 25695:1 25711:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:9 25831:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:4 25885:1 25888:2 25889:1 25892:1 25897:1 25941:1 25943:1 25958:1 25964:2 25967:2 25993:1 26011:1 26028:2 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:3 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26298:1 26309:1 26315:1 26329:1 26331:6 26336:1 26345:2 26349:1 26354:2 26356:2 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:3 26714:1 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26848:1 26851:9 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:2 26914:1 26917:3 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:2 27126:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:2 27268:4 27276:1 27278:4 27279:3 27280:1 27281:4 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27476:1 27478:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:5 27676:1 27680:2 27706:1 27718:1 27729:1 27741:2 27748:1 27765:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27859:2 27872:9 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:3 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:7 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:1 28138:1 28139:2 28147:3 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28240:1 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:25 28835:3 28837:2 28839:2 28842:2 28843:4 28850:3 28852:2 28854:2 28873:12 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28971:1 28977:1 28980:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:1 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29476:1 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:2 29763:1 29768:1 29774:3 29776:1 29788:1 29796:6 29804:1 29806:1 29807:2 29816:3 29833:2 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29936:1 29951:2 29965:2 29974:2 29989:1 29995:3 29999:4 30013:2 30020:2 30055:3 30077:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:2 30108:1 30119:1 30127:1 30129:1 30142:1 30146:3 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30253:1 30258:3 30261:1 30262:2 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 69:1 76:1 80:1 90:1 91:1 93:1 94:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 202:1 206:1 220:1 225:6 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 323:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:5 389:1 393:2 398:2 409:2 439:2 442:1 455:1 475:1 483:9 488:1 494:1 515:2 549:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 646:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:3 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:2 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:7 1032:1 1035:1 1042:2 1044:1 1047:1 1051:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:3 1369:1 1370:1 1382:1 1383:1 1389:1 1391:2 1398:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:3 1442:1 1447:1 1448:1 1475:1 1482:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1635:1 1638:1 1642:2 1646:2 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:2 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:2 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:2 1988:1 1993:6 1995:1 2003:2 2008:1 2021:1 2023:2 2035:1 2041:2 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:6 2180:1 2192:1 2193:2 2199:1 2204:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:1 2282:6 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:6 2341:7 2342:1 2345:1 2346:2 2347:1 2350:1 2353:1 2356:3 2361:2 2362:2 2363:3 2364:3 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:4 2398:3 2401:3 2402:6 2403:2 2404:1 2409:4 2411:3 2412:2 2414:3 2415:2 2416:1 2419:2 2421:5 2426:7 2427:2 2429:1 2433:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:2 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:2 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:3 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2806:1 2816:2 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:2 2927:4 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3020:1 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:4 3258:1 3261:1 3265:2 3274:1 3283:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3381:1 3382:1 3392:4 3410:1 3418:1 3421:6 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:2 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3620:1 3636:2 3638:1 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:2 3726:2 3729:1 3752:1 3753:1 3761:1 3764:2 3768:1 3774:1 3777:1 3793:1 3800:5 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:1 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:6 3949:1 3960:1 3964:3 3968:1 3974:1 3984:3 3997:1 4016:1 4040:1 4043:1 4056:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:3 4144:2 4150:3 4153:2 4154:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:2 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4303:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:1 4427:1 4436:5 4441:2 4450:3 4451:2 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:1 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4659:1 4663:2 4672:5 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:3 4770:1 4777:1 4788:4 4789:2 4809:1 4824:3 4825:6 4851:2 4856:3 4877:1 4888:1 4889:2 4915:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:39 5024:3 5058:2 5094:1 5128:1 5140:1 5144:1 5145:1 5146:3 5169:4 5170:7 5171:4 5172:4 5174:1 5177:4 5180:2 5181:3 5183:4 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:3 5207:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5313:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5430:1 5433:1 5435:1 5437:1 5474:1 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5643:1 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:5 5843:1 5855:1 5857:3 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:5 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:1 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:2 6167:1 6178:1 6182:1 6183:2 6185:6 6207:2 6215:1 6223:1 6225:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:1 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:2 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:11 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:2 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:6 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7061:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7145:1 7152:2 7153:2 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:12 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:2 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:1 7580:1 7583:4 7598:1 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7692:1 7700:1 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:55 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8036:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:9 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8179:1 8195:1 8200:2 8210:1 8235:1 8246:2 8271:1 8278:1 8285:1 8294:1 8300:7 8306:2 8310:1 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:21 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:4 8544:1 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8614:1 8622:1 8624:3 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:2 8744:3 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:1 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:3 8924:1 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9048:1 9052:1 9058:1 9060:1 9064:1 9069:1 9078:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:2 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9274:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:1 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9444:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:2 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9607:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9694:1 9711:3 9729:2 9736:1 9748:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9799:1 9805:1 9813:1 9818:1 9824:1 9825:3 9826:2 9840:1 9848:2 9851:1 9861:1 9862:1 9866:2 9868:2 9877:1 9884:2 9893:1 9894:1 9901:1 9904:1 9908:2 9909:1 9930:1 9931:2 9936:1 9965:12 9970:1 9982:1 9985:3 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:2 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:3 10127:4 10134:1 10142:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:4 10204:1 10209:1 10211:1 10212:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10264:1 10267:1 10269:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10325:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10409:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:2 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:5 10530:3 10551:2 10557:2 10559:1 10572:1 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:7 10702:1 10703:1 10715:1 10727:1 10729:9 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10777:1 10791:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:2 10827:1 10831:1 10832:2 10841:2 10852:1 10877:2 10885:1 10887:1 10897:5 10903:1 10904:2 10905:1 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10928:1 10942:1 10968:1 10980:2 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:4 11037:1 11053:1 11056:1 11079:1 11080:1 11085:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:1 11167:1 11175:4 11177:6 11182:1 11184:1 11185:4 11186:1 11198:1 11199:2 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11363:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:13 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:4 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11786:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11833:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11909:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:8 11918:1 11920:1 11921:1 11926:9 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:3 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:2 12191:5 12194:1 12199:1 12221:1 12224:2 12227:3 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:3 12418:1 12422:3 12428:1 12440:2 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:2 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12686:1 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:4 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:2 12993:1 12998:1 13010:2 13015:2 13016:2 13023:1 13034:1 13036:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:2 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13203:1 13210:2 13236:1 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13347:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:6 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:8 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:10 13569:1 13577:2 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13655:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13831:1 13847:1 13853:2 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:3 13952:1 13953:3 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:2 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:8 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:4 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:2 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14595:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:5 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14928:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15088:1 15103:1 15110:1 15116:1 15127:1 15129:4 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15339:1 15349:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15620:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:17 15702:2 15706:1 15723:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:3 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15870:1 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:14 15961:1 15962:1 15963:1 15964:3 15965:4 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16183:1 16184:4 16186:2 16188:1 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:4 16279:4 16295:4 16302:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:3 16378:1 16389:1 16412:13 16414:1 16436:4 16439:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16510:1 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:3 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:2 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:4 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17543:1 17566:2 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:1 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17737:1 17753:1 17756:1 17761:1 17766:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:2 18152:1 18154:2 18172:2 18173:8 18181:4 18188:2 18194:1 18196:1 18197:3 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18344:1 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18557:1 18561:2 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:1 18690:3 18695:3 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:8 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:1 18960:1 18963:2 18970:3 18978:1 18984:2 18991:1 18993:2 18994:2 18999:2 19004:2 19029:1 19033:3942 19052:3 19054:3 19058:2 19059:1 19062:1 19072:1 19086:1 19124:3 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19597:1 19614:3 19616:1 19632:2 19644:1 19655:1 19656:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19792:1 19794:1 19805:2 19806:1 19813:1 19818:1 19819:1 19823:2 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19872:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19969:1 19979:3 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20061:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20300:1 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20453:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20548:1 20550:1 20569:1 20573:3 20575:1 20586:1 20595:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20713:1 20719:1 20722:2 20737:1 20748:1 20763:1 20769:1 20771:1 20781:1 20791:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:3 20897:1 20904:4 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:2 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:1 21133:1 21136:1 21139:2 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:7 21275:2 21289:1 21291:2 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21494:1 21509:2 21516:1 21517:1 21522:1 21523:1 21529:9 21534:2 21535:2 21539:1 21541:2 21550:1 21553:1 21556:1 21559:1 21562:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:1 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:2 21685:2 21695:1 21704:1 21709:1 21713:2 21715:4 21722:1 21735:1 21752:1 21754:1 21769:1 21783:2 21790:6 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21869:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21943:1 21948:1 21952:1 21954:1 21957:1 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:2 22058:2 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:1 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:4 22218:7 22224:1 22227:1 22228:1 22246:1 22249:1 22260:1 22261:6 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:4 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:1 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:1 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:4 22866:4 22868:1 22872:2 22874:1 22882:3 22883:1 22887:1 22889:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:7 23024:1 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:6 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23136:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:5 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:3 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:1 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23442:1 23468:1 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23740:1 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23860:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23976:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:2 24160:1 24164:4 24180:1 24182:1 24192:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:2 24439:1 24449:1 24451:1 24457:3 24474:1 24488:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:2 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:5 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24789:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:1 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25067:3 25079:5 25086:1 25087:1 25089:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:3 25157:1 25164:1 25166:2 25189:1 25190:3 25192:1 25194:4 25197:1 25202:1 25207:1 25212:2 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25303:1 25306:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:4 25414:3 25428:2 25431:1 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:1 25549:2 25561:1 25562:1 25571:1 25574:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:3 25634:1 25652:1 25657:1 25672:1 25677:1 25695:1 25711:1 25718:2 25730:1 25766:1 25794:1 25802:2 25828:3 25829:9 25831:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:4 25885:1 25888:2 25889:1 25892:1 25897:1 25941:1 25943:1 25947:1 25958:1 25964:2 25967:2 25993:1 26011:1 26028:2 26030:1 26045:1 26051:3 26054:1 26062:3 26067:1 26072:1 26073:5 26076:4 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26288:1 26298:1 26309:1 26315:1 26329:1 26331:6 26336:1 26345:2 26349:1 26354:2 26356:2 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26704:1 26706:2 26709:1 26712:1 26713:4 26714:1 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26848:1 26851:9 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:2 26914:1 26917:3 26931:1 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:4 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:2 27126:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:2 27268:4 27276:1 27278:4 27279:3 27280:1 27281:4 27284:1 27298:1 27309:2 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27473:1 27476:1 27478:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:5 27676:1 27680:2 27706:1 27718:1 27729:1 27741:2 27748:1 27765:1 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27859:2 27872:9 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:3 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:7 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:4 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:2 28138:1 28139:2 28147:3 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28224:2 28232:1 28239:2 28240:1 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:3 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:25 28835:3 28837:2 28839:2 28842:2 28843:4 28850:3 28852:2 28854:2 28873:12 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28971:1 28977:1 28980:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:2 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:7 29392:2 29395:3 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29476:1 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29588:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:2 29763:1 29768:1 29774:4 29776:1 29788:1 29796:6 29804:1 29806:1 29807:2 29816:3 29833:2 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29936:1 29951:2 29965:2 29974:2 29989:1 29995:3 29999:4 30013:2 30020:2 30055:3 30077:1 30078:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:2 30108:1 30119:1 30127:1 30129:1 30142:1 30146:3 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30246:1 30253:1 30258:3 30261:1 30262:2 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 68:1 69:1 76:1 80:1 90:1 91:1 93:1 94:1 96:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 202:1 206:1 220:1 225:6 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 323:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:6 389:1 393:2 398:2 409:2 437:1 439:2 442:1 455:1 475:1 483:9 488:1 494:1 515:2 549:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 646:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 799:2 804:1 826:1 858:2 860:1 870:3 875:1 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:2 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:7 1032:1 1035:1 1042:2 1044:1 1047:1 1051:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:3 1369:1 1370:1 1382:2 1383:1 1389:1 1391:2 1398:1 1400:2 1407:1 1414:1 1421:2 1436:1 1440:3 1442:1 1447:1 1448:1 1475:1 1482:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1635:1 1638:1 1642:2 1646:2 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:2 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:2 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:2 1982:2 1988:1 1993:6 1995:1 2003:2 2008:1 2021:1 2023:2 2035:1 2041:2 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:7 2180:1 2192:1 2193:2 2199:1 2204:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:1 2282:6 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:6 2341:7 2342:1 2345:1 2346:2 2347:1 2350:1 2353:1 2356:3 2361:2 2362:2 2363:3 2364:4 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:4 2398:3 2401:3 2402:7 2403:2 2404:1 2409:4 2411:3 2412:2 2414:3 2415:2 2416:1 2419:2 2421:5 2426:7 2427:2 2429:1 2433:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:2 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:2 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:3 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2806:1 2816:2 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:2 2927:4 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3020:1 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3174:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:4 3258:1 3261:1 3265:2 3274:1 3283:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3381:1 3382:1 3392:4 3410:1 3418:1 3421:7 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:2 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3620:1 3636:2 3638:1 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:2 3726:2 3729:1 3752:1 3753:1 3761:1 3764:2 3768:1 3774:1 3777:1 3793:1 3800:5 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:2 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:6 3949:1 3960:1 3964:3 3968:1 3974:1 3984:3 3997:2 4016:1 4040:1 4043:1 4056:1 4058:2 4060:2 4072:1 4077:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:4 4144:2 4150:3 4153:3 4154:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:3 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4303:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:2 4427:1 4436:5 4441:2 4450:3 4451:2 4462:1 4472:1 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:2 4569:1 4574:4 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4659:1 4663:2 4672:5 4686:1 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:4 4770:1 4777:1 4788:4 4789:3 4809:1 4824:3 4825:6 4851:3 4856:3 4877:1 4888:1 4889:2 4915:1 4927:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:39 5024:3 5058:2 5094:1 5128:1 5140:1 5144:1 5145:1 5146:3 5169:4 5170:7 5171:4 5172:4 5174:1 5177:4 5180:2 5181:3 5183:4 5184:1 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:3 5207:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:1 5313:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5430:1 5433:1 5435:1 5437:1 5474:2 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5643:2 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5680:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:5 5843:1 5855:1 5857:3 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:6 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:2 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:2 6167:1 6178:1 6182:1 6183:2 6185:6 6207:3 6215:1 6223:1 6225:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:1 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:2 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:11 6531:1 6532:1 6533:3 6535:1 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:3 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:6 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7061:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7145:1 7152:2 7153:2 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:12 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:2 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:2 7580:1 7583:4 7598:1 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7692:1 7700:2 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:1 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:56 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:2 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8036:1 8038:1 8050:1 8054:1 8057:2 8076:1 8078:2 8081:9 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8179:1 8195:1 8200:2 8210:1 8235:1 8246:2 8271:1 8278:1 8285:2 8294:1 8300:7 8306:2 8310:1 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:21 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:5 8544:1 8548:1 8551:1 8557:1 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8614:1 8622:1 8624:3 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8699:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:2 8744:4 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:2 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:3 8924:1 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9048:1 9052:1 9058:1 9060:1 9064:1 9069:1 9078:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:3 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9274:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:2 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9444:1 9445:1 9462:1 9469:1 9477:1 9485:1 9491:5 9493:2 9496:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9607:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9694:1 9711:4 9724:1 9726:1 9729:2 9736:1 9748:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9799:1 9805:1 9813:1 9818:1 9824:1 9825:3 9826:2 9840:1 9848:2 9851:1 9861:1 9862:1 9866:2 9868:2 9877:1 9884:3 9893:1 9894:1 9901:1 9904:1 9908:2 9909:1 9930:1 9931:2 9936:1 9965:12 9970:1 9982:1 9985:3 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:2 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:3 10127:4 10134:1 10142:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:4 10204:1 10209:1 10211:1 10212:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10264:1 10267:1 10269:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10325:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10409:1 10425:1 10429:1 10434:1 10451:2 10458:1 10476:2 10484:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:5 10530:3 10551:2 10557:2 10559:1 10572:1 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:7 10702:1 10703:1 10715:1 10727:1 10729:10 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10777:1 10791:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:2 10827:1 10831:1 10832:2 10841:2 10852:1 10877:2 10885:1 10887:1 10897:5 10903:1 10904:2 10905:1 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10928:1 10942:1 10951:1 10968:1 10980:2 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:4 11037:1 11053:1 11056:1 11079:1 11080:1 11085:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:2 11167:1 11175:4 11177:7 11182:1 11184:1 11185:4 11186:1 11198:1 11199:3 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11363:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:14 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:2 11722:1 11725:1 11729:1 11731:4 11732:2 11744:1 11745:1 11755:1 11762:2 11772:3 11777:1 11781:1 11785:1 11786:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11833:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11909:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:8 11918:1 11920:1 11921:1 11926:9 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11964:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:4 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:2 12191:5 12194:1 12199:1 12221:1 12224:2 12227:4 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:3 12418:1 12422:3 12428:1 12440:2 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:3 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12686:1 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:5 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:2 12993:1 12998:1 13010:2 13015:2 13016:3 13023:1 13034:1 13036:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:3 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13202:1 13203:1 13210:2 13236:1 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13347:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:6 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:9 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:10 13569:1 13577:3 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:4 13650:1 13652:1 13655:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13831:1 13847:1 13853:3 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:4 13952:1 13953:4 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:2 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:8 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:5 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14339:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:3 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14595:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:6 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14928:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15088:1 15103:1 15110:1 15116:1 15127:1 15129:4 15136:1 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15210:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15339:1 15349:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15620:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:17 15702:2 15706:1 15723:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:3 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15870:1 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:14 15961:1 15962:1 15963:1 15964:3 15965:4 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16149:1 16183:1 16184:4 16186:3 16188:1 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:4 16279:4 16295:4 16302:1 16328:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:4 16378:1 16389:1 16412:13 16414:1 16436:4 16439:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16510:1 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16682:1 16686:3 16716:1 16719:2 16728:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:4 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:2 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:5 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17430:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17483:1 17484:1 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17543:1 17566:2 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:2 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17737:1 17753:1 17756:1 17761:1 17766:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:2 18152:1 18154:2 18172:2 18173:9 18181:4 18188:2 18194:1 18196:1 18197:3 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:2 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18344:1 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18557:1 18561:2 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:2 18690:3 18695:3 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:8 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:1 18960:1 18963:2 18970:3 18978:1 18984:2 18991:1 18993:2 18994:2 18999:2 19004:2 19029:1 19033:4006 19038:1 19052:3 19054:3 19058:2 19059:1 19062:1 19072:1 19086:1 19124:3 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19355:1 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19597:1 19614:3 19616:1 19632:2 19644:1 19655:1 19656:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19792:1 19794:1 19805:2 19806:1 19813:1 19818:1 19819:1 19823:3 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19872:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19969:1 19979:3 19991:1 20000:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20061:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:1 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20243:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20300:1 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:2 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20453:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20548:1 20550:1 20555:1 20569:1 20573:3 20575:1 20586:1 20595:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20713:1 20719:1 20722:2 20737:1 20748:1 20763:1 20769:1 20771:1 20781:1 20791:1 20803:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:3 20897:1 20904:4 20911:1 20913:1 20915:1 20925:2 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21033:1 21041:2 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:2 21133:1 21136:1 21139:2 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:7 21275:2 21289:1 21291:2 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21385:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21494:1 21509:2 21516:1 21517:1 21522:1 21523:1 21529:9 21534:2 21535:2 21539:1 21541:2 21550:1 21553:1 21556:1 21559:1 21562:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:2 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:2 21685:3 21695:1 21704:1 21709:1 21713:2 21715:4 21722:1 21735:1 21752:1 21754:1 21769:1 21783:2 21790:6 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21869:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21943:1 21948:1 21952:1 21954:1 21957:2 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:2 22058:2 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:2 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:1 22170:1 22189:1 22198:1 22202:1 22203:4 22218:7 22224:1 22227:1 22228:1 22240:1 22246:1 22249:1 22260:1 22261:6 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:4 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:2 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22705:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:2 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:4 22866:5 22868:1 22872:2 22874:1 22882:3 22883:1 22887:1 22889:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:7 23024:1 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:6 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23136:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:5 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:3 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:2 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23442:1 23468:2 23474:1 23479:1 23487:1 23497:2 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:1 23671:4 23677:1 23693:1 23718:1 23724:2 23740:1 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23860:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23957:1 23960:1 23976:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:2 24160:1 24164:4 24180:1 24182:1 24192:1 24201:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:2 24439:1 24449:1 24451:1 24457:3 24474:1 24488:1 24495:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:2 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:1 24618:1 24634:5 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24789:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:2 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25034:1 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25061:1 25067:3 25079:5 25086:1 25087:1 25089:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:3 25157:1 25164:1 25166:2 25189:1 25190:3 25192:1 25194:4 25197:1 25202:1 25207:1 25212:2 25213:2 25215:2 25220:2 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25303:1 25306:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:4 25414:3 25428:2 25431:1 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:2 25549:2 25561:1 25562:1 25571:1 25574:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:3 25634:1 25652:1 25657:1 25672:1 25677:1 25695:1 25711:1 25718:2 25730:1 25760:1 25766:1 25794:1 25802:2 25828:3 25829:10 25831:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:5 25885:1 25888:2 25889:1 25892:1 25897:1 25941:1 25943:1 25947:1 25958:1 25964:2 25967:2 25993:1 26011:2 26028:2 26030:1 26045:1 26051:3 26054:2 26062:3 26067:1 26072:1 26073:5 26076:4 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26160:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26288:1 26298:1 26309:1 26315:1 26323:1 26329:1 26331:6 26336:1 26345:2 26349:1 26354:2 26356:2 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26587:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26703:1 26704:1 26706:2 26709:1 26712:1 26713:4 26714:1 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26848:1 26851:9 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:3 26914:1 26917:3 26931:1 26936:1 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27028:1 27030:5 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:2 27126:1 27149:2 27150:2 27152:1 27153:1 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:2 27268:4 27276:1 27278:4 27279:3 27280:1 27281:4 27284:1 27298:1 27309:2 27310:1 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27473:1 27476:1 27478:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:2 27633:1 27647:1 27650:1 27662:1 27668:6 27676:1 27680:2 27706:1 27718:1 27729:1 27741:2 27748:1 27765:2 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27852:1 27859:2 27872:10 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:3 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:8 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:5 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:2 28138:1 28139:2 28147:3 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28223:1 28224:2 28232:1 28239:2 28240:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:2 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:4 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28695:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:26 28835:3 28837:2 28839:2 28842:2 28843:4 28850:3 28852:2 28854:2 28873:12 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28927:1 28946:1 28951:1 28957:1 28971:1 28977:1 28980:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29039:1 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:3 29221:1 29230:1 29232:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:8 29392:2 29395:3 29401:1 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29474:1 29476:1 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29588:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:2 29763:1 29768:1 29774:5 29776:1 29787:1 29788:1 29796:6 29804:1 29806:1 29807:2 29816:3 29833:2 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29936:1 29951:2 29965:2 29974:2 29989:1 29995:3 29999:4 30013:2 30020:2 30034:1 30055:3 30077:1 30078:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:2 30108:1 30119:1 30127:1 30129:1 30142:1 30146:3 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30246:1 30253:1 30258:3 30261:1 30262:2 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:1 57:1 61:2 68:1 69:1 76:1 80:1 90:1 91:1 93:1 94:1 96:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 202:1 206:1 220:2 222:1 225:6 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 323:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:6 389:1 393:2 398:2 409:2 437:1 439:2 442:1 455:1 475:1 483:9 488:1 494:1 515:2 549:1 553:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 646:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 791:1 799:2 804:1 826:1 858:2 860:1 870:3 875:2 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 946:1 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:2 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:7 1032:1 1035:1 1042:2 1044:1 1047:1 1051:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:3 1369:1 1370:1 1382:2 1383:1 1389:1 1391:2 1398:1 1400:2 1407:2 1414:1 1421:2 1436:1 1440:3 1442:1 1447:1 1448:1 1475:1 1482:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:11 1614:11 1619:1 1623:2 1627:2 1635:1 1638:1 1642:2 1646:2 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:2 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:2 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:1 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:3 1982:2 1988:1 1993:6 1995:1 2003:2 2008:1 2021:1 2023:2 2032:1 2035:1 2041:2 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:7 2180:1 2192:1 2193:2 2199:1 2204:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:2 2282:7 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:6 2341:7 2342:1 2345:1 2346:3 2347:1 2350:2 2353:1 2356:4 2361:2 2362:2 2363:3 2364:4 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:4 2398:3 2401:3 2402:7 2403:2 2404:1 2409:4 2411:4 2412:2 2414:3 2415:2 2416:1 2419:2 2421:6 2426:7 2427:2 2429:1 2433:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:2 2533:1 2539:1 2541:1 2548:2 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:2 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:3 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2806:1 2816:2 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:2 2927:4 2932:1 2938:2 2953:1 2984:3 2989:2 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3020:1 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3174:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3244:1 3245:4 3258:1 3261:1 3265:2 3274:1 3283:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3377:1 3381:1 3382:1 3392:4 3410:1 3418:1 3421:8 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:2 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3615:1 3620:1 3636:2 3638:2 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:2 3726:2 3729:1 3752:1 3753:1 3761:1 3764:2 3768:1 3774:1 3777:1 3793:1 3800:5 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:2 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:6 3949:1 3960:1 3964:3 3968:1 3974:1 3984:3 3997:2 4016:1 4040:1 4043:1 4056:1 4058:2 4060:2 4072:1 4077:1 4084:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:4 4144:2 4150:3 4153:3 4154:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:3 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4303:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:2 4427:1 4436:5 4441:2 4450:3 4451:2 4462:1 4472:2 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:2 4569:1 4574:4 4582:1 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4659:1 4663:2 4672:5 4686:1 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:4 4770:1 4777:1 4788:4 4789:3 4798:1 4809:1 4824:3 4825:6 4851:3 4856:3 4877:1 4888:1 4889:2 4915:1 4927:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:39 5024:3 5058:2 5094:1 5128:1 5140:1 5144:1 5145:1 5146:3 5169:4 5170:7 5171:4 5172:4 5174:1 5177:4 5180:2 5181:3 5183:4 5184:1 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:4 5207:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:2 5313:1 5317:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5430:1 5433:1 5435:1 5437:1 5474:2 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5643:2 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5680:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5796:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:5 5843:1 5855:1 5857:3 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:6 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:2 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:2 6167:1 6178:1 6182:1 6183:2 6185:7 6207:3 6215:1 6223:1 6225:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:2 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:2 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:11 6531:1 6532:1 6533:3 6535:2 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:3 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:6 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7061:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7145:1 7152:2 7153:2 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:12 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:2 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:2 7580:1 7583:4 7594:1 7598:1 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7692:1 7700:2 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:2 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7873:57 7886:1 7887:1 7895:10 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:3 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8036:1 8038:1 8050:1 8054:1 8057:2 8069:1 8076:1 8078:2 8081:9 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8179:1 8195:1 8200:2 8210:1 8235:1 8246:2 8271:1 8278:1 8285:2 8294:1 8300:7 8306:2 8310:1 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:21 8366:1 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:5 8544:1 8548:1 8551:1 8557:2 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8614:1 8622:1 8624:3 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8699:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:2 8744:4 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8786:1 8794:1 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:2 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:4 8924:1 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9048:1 9052:1 9058:1 9060:1 9064:1 9069:1 9078:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:3 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9274:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:2 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9444:1 9445:1 9462:1 9469:1 9477:1 9485:2 9491:5 9493:2 9496:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9607:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9689:2 9693:1 9694:1 9711:4 9724:1 9726:1 9729:2 9736:1 9748:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9799:1 9805:1 9813:1 9818:1 9824:1 9825:3 9826:2 9840:1 9848:2 9851:1 9861:1 9862:1 9866:2 9868:2 9877:1 9884:3 9893:1 9894:1 9901:1 9904:1 9908:2 9909:1 9930:1 9931:2 9936:1 9964:1 9965:13 9969:1 9970:1 9982:1 9985:3 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:2 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:3 10127:4 10134:1 10142:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:4 10204:1 10209:1 10211:1 10212:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10264:1 10267:1 10269:1 10278:1 10283:1 10284:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10325:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10409:1 10425:1 10429:1 10434:1 10451:2 10453:1 10458:1 10476:2 10484:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:5 10530:3 10551:2 10557:2 10559:1 10572:1 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:7 10702:1 10703:1 10715:1 10727:1 10729:10 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10777:1 10791:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:2 10827:1 10831:1 10832:2 10841:2 10852:1 10877:2 10885:1 10887:1 10897:5 10903:1 10904:2 10905:1 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10928:1 10942:1 10951:1 10968:1 10980:2 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:4 11037:1 11053:1 11056:1 11079:1 11080:1 11085:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:2 11167:1 11175:4 11177:8 11182:1 11184:1 11185:4 11186:1 11198:2 11199:3 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11363:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:14 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:3 11722:1 11725:1 11729:1 11731:4 11732:2 11744:1 11745:1 11755:1 11762:3 11772:3 11777:1 11781:1 11782:1 11785:1 11786:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11833:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11909:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:8 11918:1 11920:1 11921:1 11926:9 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11964:1 11971:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12036:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:4 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:2 12191:5 12194:1 12199:1 12221:1 12224:2 12227:4 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:3 12418:1 12422:3 12428:1 12440:2 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:3 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12686:1 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:5 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:2 12993:1 12998:1 13010:2 13015:2 13016:3 13023:1 13034:1 13036:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:3 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13202:1 13203:1 13210:2 13236:1 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13347:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:6 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:9 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:10 13569:1 13577:3 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:5 13650:1 13652:1 13655:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:5 13731:1 13742:1 13748:2 13749:1 13752:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13828:1 13831:1 13847:1 13853:3 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:4 13952:1 13953:4 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:2 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:8 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14165:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:5 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14339:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:3 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14595:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:6 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14928:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15088:1 15103:1 15110:1 15116:1 15127:1 15129:4 15136:1 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15210:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15339:1 15349:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15620:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:18 15702:2 15706:1 15723:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:3 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15870:1 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:14 15961:1 15962:1 15963:1 15964:3 15965:4 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16149:1 16183:1 16184:4 16186:3 16188:1 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:4 16279:5 16295:4 16302:1 16328:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:4 16378:1 16389:1 16397:1 16412:13 16414:1 16436:4 16439:1 16444:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16510:1 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:1 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16682:1 16686:3 16716:1 16719:2 16728:1 16737:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:4 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:2 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:5 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17430:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17483:1 17484:1 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17539:1 17543:1 17566:2 17567:1 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:2 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17737:1 17753:1 17756:1 17761:1 17766:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:2 18152:1 18154:2 18172:2 18173:9 18181:4 18188:2 18194:1 18196:1 18197:3 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:2 18281:1 18282:1 18283:1 18284:2 18325:1 18326:1 18330:1 18332:1 18338:2 18344:1 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18557:1 18561:2 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:2 18690:3 18695:3 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:8 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:2 18960:1 18963:2 18970:3 18978:1 18984:2 18991:1 18993:2 18994:2 18999:2 19004:2 19029:1 19033:4064 19038:1 19052:3 19054:3 19058:2 19059:1 19062:1 19072:1 19086:1 19124:3 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19311:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19355:1 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19497:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19597:1 19614:3 19616:1 19632:2 19644:1 19655:1 19656:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19792:1 19794:1 19805:2 19806:1 19813:1 19818:1 19819:1 19823:3 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19872:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19969:1 19979:3 19991:1 20000:1 20005:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20061:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:2 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20243:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20300:1 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:3 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20453:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:2 20541:1 20548:1 20550:1 20555:1 20569:1 20573:3 20575:1 20586:1 20595:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20713:1 20719:1 20722:2 20737:1 20748:1 20763:1 20769:1 20771:1 20781:1 20791:1 20803:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:3 20897:1 20904:4 20911:1 20913:1 20915:2 20925:2 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21029:1 21033:1 21041:2 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:2 21133:1 21136:1 21139:2 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:7 21275:2 21289:1 21291:2 21296:2 21298:2 21302:2 21311:4 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21385:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21494:1 21509:2 21516:1 21517:1 21520:1 21522:1 21523:1 21529:9 21534:2 21535:2 21539:1 21541:2 21550:1 21553:1 21556:1 21559:1 21562:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:2 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:2 21685:3 21695:1 21704:1 21709:1 21713:2 21715:4 21722:1 21735:1 21752:1 21754:1 21769:1 21783:2 21790:6 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21869:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21943:1 21948:1 21952:1 21954:1 21957:2 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:3 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:2 22058:2 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:2 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:2 22170:1 22189:1 22198:1 22202:1 22203:4 22218:7 22224:1 22227:1 22228:1 22240:1 22246:1 22249:1 22260:1 22261:6 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:4 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:4 22540:1 22541:1 22545:1 22549:2 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22664:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22705:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:2 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:4 22866:5 22868:1 22872:2 22874:1 22877:1 22882:3 22883:1 22887:1 22889:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:7 23024:1 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:6 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23136:1 23146:4 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:5 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:3 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:2 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23442:1 23468:2 23474:1 23479:1 23487:1 23497:3 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:2 23671:4 23677:1 23693:1 23718:1 23724:2 23740:1 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23860:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23955:1 23957:1 23960:1 23964:1 23976:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24093:1 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:2 24160:1 24164:4 24180:1 24182:1 24192:1 24201:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:2 24439:1 24449:1 24451:1 24457:3 24474:1 24488:1 24495:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:2 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:1 24587:1 24594:1 24598:3 24610:2 24611:2 24618:1 24634:5 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24789:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:2 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25034:1 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25061:1 25067:3 25079:5 25086:1 25087:2 25089:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:3 25157:1 25164:1 25166:2 25189:1 25190:3 25192:1 25194:4 25197:1 25202:1 25207:1 25212:2 25213:2 25215:2 25220:3 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25295:1 25303:1 25306:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:4 25414:3 25428:2 25431:1 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:2 25549:2 25561:1 25562:1 25571:1 25574:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:3 25634:1 25652:1 25657:1 25672:1 25677:1 25695:1 25711:1 25718:2 25730:1 25760:1 25766:1 25794:1 25802:2 25828:3 25829:10 25831:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:5 25885:1 25888:2 25889:1 25892:2 25897:1 25919:1 25941:1 25943:1 25947:1 25958:1 25964:2 25967:2 25993:1 26011:2 26028:2 26030:1 26045:1 26051:3 26054:2 26062:3 26067:1 26072:1 26073:5 26076:4 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:1 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26160:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26288:1 26298:1 26309:1 26315:1 26323:1 26329:1 26331:6 26336:1 26345:2 26349:1 26354:2 26356:2 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26587:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26703:1 26704:1 26706:2 26709:1 26712:1 26713:4 26714:1 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26848:1 26851:9 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:3 26914:1 26917:3 26931:1 26936:1 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27027:1 27028:1 27030:6 27037:1 27049:2 27052:1 27056:1 27063:1 27092:1 27122:2 27126:1 27149:2 27150:2 27152:1 27153:2 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:2 27268:4 27276:1 27278:4 27279:3 27280:1 27281:4 27284:1 27298:1 27309:2 27310:1 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27473:1 27476:1 27478:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:3 27633:1 27647:1 27650:1 27662:1 27668:6 27676:1 27680:2 27689:1 27706:1 27718:1 27729:1 27741:2 27748:1 27765:2 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27852:1 27859:2 27872:10 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:3 27933:1 27937:1 27938:7 27960:1 27963:1 27964:2 27971:1 27978:8 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:5 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:2 28138:1 28139:2 28147:3 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28223:1 28224:2 28232:1 28239:2 28240:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:3 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:4 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28695:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28760:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:26 28835:4 28837:2 28839:2 28842:2 28843:4 28850:3 28852:2 28854:2 28873:13 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28926:1 28927:1 28946:1 28951:1 28957:1 28971:1 28977:1 28980:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29039:1 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:3 29221:1 29230:1 29232:1 29238:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:9 29392:2 29395:3 29401:1 29402:1 29409:1 29412:1 29413:1 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29474:1 29476:1 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29588:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:2 29763:1 29768:1 29774:5 29776:1 29787:1 29788:1 29796:6 29804:1 29806:1 29807:2 29816:3 29833:2 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29936:1 29951:2 29965:2 29974:2 29989:1 29995:3 29999:4 30013:2 30020:2 30034:1 30055:3 30077:1 30078:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:2 30108:1 30119:1 30127:1 30129:1 30142:1 30146:3 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30246:1 30253:1 30258:3 30261:1 30262:2 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1 11 1:1 2:1 8:1 10:1 34:1 38:1 41:1 46:2 54:2 57:1 61:2 68:1 69:1 76:1 80:1 90:1 91:1 93:1 94:1 96:1 100:1 102:1 105:2 111:1 126:1 129:1 138:1 147:1 149:3 152:1 158:1 161:1 169:1 177:1 182:2 183:1 186:2 187:1 202:1 206:1 220:2 222:1 225:6 229:1 243:1 255:1 265:1 266:2 278:3 279:2 282:1 290:1 303:1 311:1 316:1 323:1 332:1 335:1 344:1 350:2 367:1 385:1 386:1 387:6 389:1 393:2 398:2 409:2 437:1 439:2 442:1 455:1 475:1 483:9 488:1 494:1 515:2 549:1 553:1 562:2 565:3 598:1 607:1 621:2 627:1 640:1 646:1 650:1 663:1 678:4 685:2 691:7 715:2 723:4 725:1 726:1 730:1 734:2 735:1 737:1 747:1 748:1 755:2 770:1 791:1 799:2 804:1 826:1 858:2 860:1 870:3 875:2 876:1 885:2 888:1 892:1 896:1 912:1 915:2 936:3 946:1 953:2 959:1 965:1 975:2 977:1 979:7 981:1 983:1 987:1 989:1 990:1 998:1 1006:2 1010:2 1020:1 1021:1 1022:1 1026:1 1028:1 1031:7 1032:1 1035:1 1042:2 1044:1 1047:1 1051:1 1063:2 1068:1 1070:1 1073:3 1075:1 1077:3 1090:1 1098:1 1104:4 1112:1 1117:3 1119:1 1121:1 1123:1 1134:3 1137:1 1142:1 1162:1 1170:1 1173:1 1197:1 1200:1 1225:2 1229:1 1231:1 1234:1 1235:1 1250:1 1254:1 1262:2 1283:1 1284:1 1295:1 1303:1 1304:1 1313:1 1315:2 1318:1 1322:1 1330:1 1332:1 1333:1 1346:1 1352:1 1356:1 1357:1 1358:1 1362:1 1367:3 1369:1 1370:1 1382:2 1383:1 1389:1 1391:2 1398:1 1400:2 1407:2 1414:1 1421:2 1436:1 1440:3 1442:1 1447:1 1448:1 1471:1 1475:1 1482:1 1490:2 1522:1 1524:2 1528:1 1533:1 1541:1 1548:1 1555:1 1558:4 1574:2 1576:1 1579:2 1598:1 1604:7 1607:12 1614:11 1619:1 1623:2 1627:2 1635:1 1638:1 1642:2 1646:2 1668:1 1673:1 1674:1 1679:1 1700:4 1702:4 1704:1 1707:1 1723:2 1731:2 1736:8 1737:1 1744:1 1750:1 1756:2 1767:7 1788:2 1789:1 1795:1 1796:1 1803:1 1804:1 1805:1 1808:1 1811:2 1813:1 1817:1 1822:2 1824:1 1837:1 1863:2 1868:1 1876:1 1879:1 1895:1 1901:2 1903:1 1907:2 1910:1 1919:1 1933:1 1936:1 1938:1 1945:3 1947:1 1948:3 1949:2 1952:1 1970:1 1971:1 1979:1 1980:3 1982:2 1988:1 1993:6 1995:1 2003:2 2008:1 2021:1 2023:2 2032:1 2035:1 2041:2 2048:2 2053:2 2060:2 2061:1 2066:1 2067:1 2077:1 2081:2 2082:1 2103:3 2107:1 2121:3 2127:1 2128:1 2150:1 2153:1 2159:1 2166:1 2173:1 2174:7 2180:1 2192:1 2193:2 2199:1 2204:1 2211:1 2213:1 2215:1 2222:1 2230:1 2234:2 2237:1 2259:2 2282:7 2290:1 2294:3 2298:1 2300:1 2307:1 2310:2 2315:2 2316:1 2324:1 2333:1 2336:3 2337:1 2338:1 2339:6 2341:7 2342:2 2345:1 2346:3 2347:1 2350:2 2353:1 2356:4 2361:2 2362:2 2363:3 2364:4 2365:1 2367:1 2368:1 2370:1 2389:1 2395:2 2396:4 2398:3 2401:3 2402:7 2403:2 2404:1 2409:4 2411:4 2412:2 2414:3 2415:2 2416:1 2419:2 2421:6 2426:7 2427:2 2429:1 2433:1 2436:3 2439:2 2440:1 2476:1 2485:1 2500:1 2504:1 2505:1 2516:2 2528:2 2533:1 2539:1 2541:1 2548:2 2549:1 2556:3 2576:1 2584:3 2585:1 2611:1 2624:1 2628:2 2635:2 2648:1 2650:2 2656:1 2665:2 2672:2 2678:1 2686:1 2703:3 2712:1 2713:1 2715:1 2734:1 2741:1 2747:1 2764:1 2768:2 2776:1 2780:1 2785:1 2788:1 2794:1 2795:1 2803:1 2806:1 2816:2 2817:3 2819:1 2823:1 2828:4 2842:1 2843:1 2847:8 2854:2 2855:2 2863:2 2877:1 2885:1 2887:2 2891:3 2897:1 2902:2 2911:2 2918:1 2919:1 2921:2 2927:4 2932:1 2938:2 2953:1 2984:4 2989:3 2994:1 3003:1 3004:7 3011:1 3015:1 3016:12 3020:1 3023:2 3035:2 3039:2 3054:4 3063:2 3064:1 3067:13 3073:1 3079:2 3087:1 3089:1 3097:1 3098:1 3099:1 3105:1 3115:1 3123:1 3125:2 3131:2 3148:2 3171:1 3174:1 3179:1 3181:1 3189:1 3190:1 3207:1 3216:1 3223:1 3225:1 3233:1 3241:1 3244:1 3245:4 3258:1 3261:1 3265:2 3274:1 3283:1 3304:1 3324:1 3325:1 3337:1 3355:1 3359:5 3360:1 3374:3 3377:1 3381:1 3382:1 3392:4 3410:1 3418:1 3421:9 3427:1 3429:1 3434:1 3449:1 3471:1 3478:1 3479:3 3486:1 3488:1 3513:1 3516:1 3517:2 3520:1 3525:1 3535:2 3546:1 3582:2 3590:1 3593:4 3599:2 3602:1 3604:2 3608:1 3615:1 3620:1 3636:2 3638:2 3640:2 3645:1 3656:1 3658:2 3669:1 3675:1 3676:1 3684:1 3685:2 3695:1 3696:2 3700:1 3707:3 3719:2 3726:2 3729:1 3752:1 3753:1 3761:1 3764:2 3768:1 3774:1 3777:1 3793:1 3800:5 3810:1 3813:5 3816:1 3825:1 3833:3 3835:1 3843:1 3859:2 3876:2 3879:2 3884:4 3885:16 3892:1 3896:1 3901:1 3907:3 3912:2 3915:4 3916:4 3919:2 3920:1 3924:2 3927:1 3930:7 3932:2 3946:6 3949:1 3960:1 3964:3 3968:1 3974:1 3984:3 3997:2 4016:1 4040:1 4043:1 4056:1 4058:2 4060:2 4072:1 4077:1 4084:1 4085:1 4088:1 4089:1 4095:1 4108:4 4111:1 4112:1 4132:2 4136:1 4140:4 4144:2 4150:3 4153:3 4154:1 4169:1 4171:2 4175:2 4181:1 4200:1 4203:1 4216:2 4217:1 4222:1 4224:1 4251:3 4263:1 4265:2 4283:1 4293:1 4295:1 4296:1 4303:1 4306:1 4307:1 4309:1 4319:1 4337:1 4340:5 4344:8 4351:1 4361:1 4369:1 4370:4 4390:1 4392:2 4402:1 4405:2 4407:1 4414:2 4427:1 4436:5 4441:2 4450:3 4451:2 4462:1 4472:2 4477:2 4479:1 4484:1 4490:1 4491:2 4498:1 4499:1 4504:1 4521:1 4526:1 4533:1 4536:1 4542:1 4563:1 4565:2 4569:1 4574:4 4582:1 4585:2 4596:1 4603:1 4613:1 4627:1 4635:1 4659:1 4663:2 4672:5 4686:1 4687:1 4688:1 4689:1 4691:3 4699:1 4723:1 4743:1 4748:1 4750:1 4755:4 4770:1 4777:1 4788:4 4789:4 4798:1 4809:1 4824:3 4825:6 4851:3 4856:3 4877:1 4888:1 4889:2 4915:1 4927:1 4932:1 4950:1 4953:1 4968:2 4986:1 4988:1 4995:1 4997:1 5002:1 5013:1 5022:39 5024:3 5058:2 5094:1 5128:1 5140:1 5144:1 5145:1 5146:3 5169:4 5170:7 5171:4 5172:4 5174:1 5177:4 5180:2 5181:3 5183:4 5184:1 5185:2 5190:2 5194:1 5196:1 5198:1 5200:6 5202:4 5207:3 5209:1 5213:1 5214:1 5218:1 5227:1 5241:1 5256:2 5268:2 5272:1 5284:2 5287:1 5291:2 5293:1 5303:2 5313:1 5317:1 5320:1 5333:1 5343:1 5370:1 5379:3 5390:1 5426:2 5430:1 5433:1 5435:1 5437:1 5474:2 5475:1 5493:1 5512:1 5532:3 5535:3 5548:2 5552:1 5558:1 5562:3 5604:1 5614:1 5642:1 5643:2 5645:3 5646:1 5647:1 5656:1 5657:1 5660:6 5669:1 5670:3 5674:1 5676:1 5677:1 5680:1 5684:4 5690:3 5696:1 5704:1 5714:2 5719:2 5724:2 5727:1 5728:1 5731:1 5732:2 5733:1 5737:2 5739:1 5743:1 5747:2 5751:1 5757:2 5762:1 5769:1 5774:2 5776:1 5786:1 5796:1 5799:1 5803:1 5804:9 5807:1 5811:1 5812:1 5814:1 5815:1 5830:5 5843:1 5855:1 5857:3 5876:1 5878:1 5880:1 5881:1 5882:1 5885:1 5895:2 5901:1 5907:6 5908:1 5916:1 5927:1 5931:4 5933:1 5947:1 5953:1 5965:1 5977:1 5989:1 5990:2 6008:1 6050:6 6054:5 6062:1 6077:1 6106:1 6108:1 6119:1 6132:1 6136:1 6138:1 6146:1 6155:1 6158:3 6161:2 6167:1 6178:1 6182:1 6183:2 6185:8 6207:3 6215:1 6223:1 6225:1 6227:1 6229:2 6231:2 6236:4 6259:1 6270:1 6272:1 6276:1 6293:8 6308:2 6312:1 6325:2 6332:2 6340:2 6350:1 6359:1 6364:1 6366:1 6374:1 6378:2 6382:1 6402:1 6407:3 6408:3 6409:3 6411:1 6412:1 6418:2 6423:1 6425:1 6437:2 6450:2 6452:1 6466:1 6470:1 6484:1 6501:3 6504:1 6505:1 6506:1 6509:2 6510:4 6512:4 6513:1 6516:3 6518:4 6520:3 6521:1 6522:3 6523:1 6526:1 6529:11 6531:1 6532:1 6533:3 6535:2 6562:1 6564:1 6566:1 6574:1 6582:1 6605:1 6606:1 6609:1 6610:2 6662:3 6671:1 6672:1 6673:1 6679:1 6684:7 6694:2 6698:1 6713:1 6718:3 6722:2 6726:1 6745:1 6773:1 6790:1 6815:2 6821:3 6825:1 6840:1 6842:1 6849:2 6853:1 6861:1 6867:2 6874:1 6878:2 6881:2 6894:1 6901:1 6908:2 6914:3 6917:1 6929:1 6936:5 6937:1 6941:3 6943:1 6954:1 6962:6 6964:1 6970:1 6977:1 6994:1 6997:2 7000:1 7001:3 7014:1 7016:1 7021:1 7026:1 7027:1 7041:1 7042:1 7044:1 7057:1 7061:1 7063:1 7071:1 7074:1 7084:1 7089:2 7091:1 7102:1 7108:1 7122:3 7126:1 7145:1 7152:2 7153:2 7167:1 7169:2 7181:2 7184:1 7188:1 7195:1 7215:1 7224:1 7238:2 7249:1 7252:1 7259:2 7263:2 7268:1 7277:1 7280:1 7285:1 7294:1 7300:12 7310:1 7314:2 7317:1 7330:2 7343:1 7346:1 7352:1 7356:5 7364:1 7370:2 7381:1 7382:1 7399:1 7403:1 7417:1 7423:2 7426:1 7431:1 7438:1 7444:1 7445:1 7454:2 7456:1 7466:1 7475:1 7498:1 7526:3 7530:1 7533:1 7535:1 7542:1 7576:2 7580:1 7583:4 7594:1 7598:1 7603:1 7605:4 7611:1 7617:4 7623:2 7630:1 7634:1 7648:1 7651:3 7665:1 7669:1 7674:1 7676:1 7680:1 7692:1 7700:2 7726:1 7732:1 7736:1 7737:1 7739:1 7742:1 7744:1 7749:2 7752:1 7768:1 7772:1 7773:4 7776:1 7780:1 7782:1 7787:1 7791:1 7792:5 7798:3 7799:8 7801:5 7810:1 7820:1 7821:3 7825:2 7827:1 7829:1 7834:1 7849:1 7855:2 7856:1 7861:1 7873:57 7886:1 7887:1 7895:11 7897:9 7904:2 7917:1 7931:1 7942:1 7950:1 7954:2 7955:1 7956:1 7968:1 7971:3 7972:2 7974:1 7975:1 8001:1 8008:1 8011:2 8014:1 8020:2 8025:1 8030:1 8032:1 8034:1 8036:1 8038:1 8050:1 8054:1 8057:2 8069:1 8076:1 8078:2 8081:9 8099:1 8100:1 8101:1 8107:1 8126:6 8133:1 8139:1 8171:1 8174:1 8179:1 8195:1 8200:2 8210:1 8235:1 8246:2 8271:1 8278:1 8285:2 8294:1 8300:7 8306:3 8310:1 8317:1 8319:2 8321:2 8334:1 8340:3 8343:1 8349:2 8350:1 8354:1 8357:21 8366:1 8387:1 8392:1 8400:1 8403:1 8411:1 8417:1 8418:1 8419:1 8432:1 8449:1 8456:1 8457:1 8460:1 8464:1 8469:1 8479:1 8502:1 8515:5 8544:1 8548:1 8551:1 8557:2 8564:1 8586:1 8588:1 8591:1 8594:1 8603:2 8611:2 8614:1 8622:1 8624:3 8625:1 8629:1 8642:1 8650:1 8651:2 8652:1 8653:1 8655:3 8672:1 8699:1 8725:2 8729:1 8731:2 8732:1 8733:4 8735:1 8736:1 8738:2 8741:2 8743:2 8744:4 8745:2 8751:4 8756:1 8761:1 8763:1 8768:1 8774:1 8777:1 8785:3 8786:1 8794:1 8804:1 8809:1 8832:1 8834:1 8835:1 8838:1 8848:1 8853:2 8863:1 8870:1 8882:1 8883:1 8885:2 8889:1 8896:1 8900:1 8909:2 8916:4 8924:1 8932:1 8955:1 8956:1 8960:1 8961:1 8971:3 8978:1 8990:1 8993:1 8997:1 9003:2 9011:1 9023:1 9038:2 9043:1 9045:3 9048:1 9052:1 9058:1 9060:1 9064:1 9069:1 9078:1 9079:2 9085:1 9093:1 9097:3 9116:1 9151:1 9153:2 9167:1 9178:1 9181:1 9187:1 9188:1 9198:1 9204:1 9212:3 9214:3 9223:1 9224:2 9230:2 9231:1 9239:1 9266:1 9274:1 9275:2 9276:2 9295:1 9319:1 9327:1 9334:1 9336:1 9341:1 9348:1 9361:3 9382:1 9384:1 9386:2 9390:1 9391:1 9393:1 9400:8 9403:1 9404:1 9417:2 9420:1 9427:1 9428:1 9429:1 9430:2 9432:1 9442:1 9444:2 9445:1 9462:1 9469:1 9477:1 9485:2 9491:5 9493:2 9496:1 9500:1 9501:2 9505:1 9510:1 9513:1 9516:1 9522:1 9525:1 9536:1 9550:2 9555:1 9573:2 9574:1 9578:2 9583:1 9587:2 9589:1 9594:1 9604:1 9607:1 9611:1 9625:1 9626:1 9631:1 9635:1 9637:2 9638:1 9641:1 9643:1 9645:1 9648:1 9662:1 9664:1 9666:1 9667:1 9670:1 9682:1 9689:2 9693:1 9694:1 9711:5 9724:1 9726:1 9729:2 9736:1 9748:1 9749:5 9767:1 9779:1 9782:2 9786:1 9793:1 9799:1 9805:1 9813:1 9818:1 9824:1 9825:3 9826:2 9840:1 9848:2 9851:1 9861:1 9862:1 9866:2 9868:2 9877:1 9884:3 9893:1 9894:1 9901:1 9904:1 9908:2 9909:1 9930:1 9931:2 9936:1 9964:1 9965:13 9969:1 9970:1 9982:1 9985:3 9986:1 9988:1 9989:4 9999:1 10000:2 10002:1 10010:1 10012:1 10017:2 10024:1 10027:1 10028:1 10037:1 10052:1 10062:2 10065:1 10077:1 10094:2 10117:3 10127:4 10134:1 10142:1 10151:3 10156:1 10158:2 10160:1 10161:1 10165:2 10168:2 10169:1 10174:1 10178:3 10189:1 10193:1 10196:4 10201:4 10204:1 10209:1 10211:1 10212:1 10214:1 10215:2 10216:3 10218:2 10219:1 10220:2 10222:2 10239:1 10244:1 10245:2 10251:1 10254:5 10264:1 10267:1 10269:1 10278:1 10283:1 10284:1 10287:1 10295:2 10296:1 10300:1 10307:1 10309:1 10317:1 10322:1 10325:1 10330:8 10334:1 10337:2 10360:1 10372:1 10374:1 10379:1 10385:2 10388:2 10390:1 10391:1 10396:1 10402:1 10409:1 10425:1 10429:1 10434:1 10451:2 10453:1 10458:1 10476:2 10484:1 10490:1 10495:1 10497:1 10505:1 10511:1 10521:1 10524:1 10527:5 10530:3 10551:2 10557:2 10559:1 10572:1 10584:1 10590:1 10601:1 10604:3 10620:1 10627:3 10652:2 10653:2 10661:1 10663:1 10692:1 10695:1 10698:7 10702:1 10703:1 10715:1 10727:1 10729:10 10737:1 10749:1 10750:1 10753:1 10758:1 10759:1 10761:1 10762:1 10777:1 10791:1 10794:1 10798:1 10803:3 10805:1 10808:3 10825:1 10826:2 10827:1 10831:1 10832:2 10841:2 10852:1 10877:2 10885:1 10887:1 10897:5 10903:1 10904:2 10905:1 10907:1 10913:4 10916:1 10917:1 10923:1 10924:3 10928:1 10942:1 10951:1 10968:1 10980:2 10984:1 10985:1 11017:1 11021:1 11025:1 11027:2 11028:1 11032:1 11036:4 11037:1 11053:1 11056:1 11079:1 11080:1 11085:1 11117:2 11129:1 11135:1 11142:1 11161:2 11163:2 11167:1 11175:4 11177:9 11182:1 11184:1 11185:4 11186:1 11198:2 11199:3 11201:1 11208:1 11212:1 11218:1 11220:1 11221:2 11230:1 11244:1 11263:1 11272:2 11274:1 11283:1 11293:1 11300:1 11303:1 11304:1 11306:2 11310:1 11311:1 11362:1 11363:1 11368:1 11371:1 11373:1 11378:1 11388:1 11397:1 11401:1 11412:1 11423:2 11428:1 11437:4 11450:2 11460:1 11465:1 11470:1 11473:2 11490:1 11499:1 11538:1 11545:1 11548:1 11566:1 11568:1 11572:1 11578:1 11579:1 11587:1 11594:1 11597:1 11604:1 11612:3 11614:3 11620:3 11624:1 11638:1 11650:1 11664:3 11665:14 11666:1 11668:1 11676:1 11679:1 11692:1 11694:1 11699:1 11708:2 11712:1 11716:1 11721:3 11722:1 11725:1 11729:1 11731:4 11732:2 11744:1 11745:1 11755:1 11762:3 11772:3 11777:1 11781:1 11782:1 11785:1 11786:1 11787:1 11791:1 11793:1 11797:3 11806:1 11813:1 11823:3 11829:2 11832:1 11833:1 11840:1 11841:1 11852:1 11854:3 11855:8 11859:2 11862:2 11872:1 11873:1 11880:1 11890:8 11897:1 11899:1 11901:2 11906:4 11907:1 11909:1 11911:1 11912:1 11914:1 11915:1 11916:2 11917:8 11918:1 11920:1 11921:1 11926:9 11930:1 11934:1 11935:1 11936:1 11948:1 11957:1 11958:2 11963:1 11964:1 11971:1 11983:2 11993:1 11998:2 12004:1 12013:2 12034:1 12035:1 12036:1 12042:2 12045:1 12049:1 12055:1 12067:7 12078:1 12095:1 12119:1 12134:1 12138:4 12140:1 12148:2 12153:1 12156:1 12169:2 12177:1 12182:2 12191:5 12194:1 12199:1 12221:1 12224:2 12227:4 12231:1 12239:2 12257:2 12258:2 12261:1 12287:1 12289:1 12301:1 12306:2 12308:1 12315:2 12341:1 12343:2 12344:3 12350:1 12362:1 12367:1 12369:3 12370:4 12375:1 12382:2 12398:3 12412:1 12415:3 12418:1 12422:3 12428:1 12440:2 12467:1 12470:1 12479:1 12483:3 12488:1 12498:1 12517:6 12518:1 12531:2 12532:3 12537:1 12550:1 12558:1 12561:1 12563:1 12565:2 12569:1 12599:2 12627:3 12628:1 12633:1 12644:1 12652:1 12658:1 12660:1 12672:1 12678:1 12680:2 12686:1 12691:2 12709:1 12720:1 12727:2 12744:1 12748:1 12763:4 12780:2 12791:1 12799:1 12801:1 12803:2 12810:1 12827:1 12833:2 12835:1 12838:2 12848:1 12860:1 12877:1 12899:2 12900:1 12923:1 12930:10 12934:1 12939:2 12948:5 12953:3 12956:1 12960:1 12963:1 12978:1 12985:1 12986:1 12987:2 12993:1 12998:1 13010:2 13015:2 13016:3 13023:1 13034:1 13036:1 13037:1 13038:5 13045:2 13049:3 13054:2 13060:1 13063:1 13071:1 13074:2 13075:1 13094:1 13097:1 13123:1 13127:1 13134:1 13141:3 13143:1 13156:1 13165:1 13170:1 13183:1 13184:1 13192:1 13202:1 13203:1 13210:2 13236:1 13238:2 13246:1 13252:1 13257:1 13295:1 13302:1 13307:1 13325:1 13335:1 13337:5 13342:1 13344:1 13347:1 13352:2 13370:1 13377:1 13389:3 13390:1 13392:1 13393:1 13399:2 13401:2 13404:1 13407:7 13408:1 13412:6 13417:1 13420:1 13422:1 13424:1 13427:1 13434:5 13436:9 13444:1 13449:3 13467:2 13473:1 13477:2 13479:1 13484:3 13494:1 13495:2 13496:1 13497:1 13513:2 13517:1 13519:1 13531:1 13535:1 13543:1 13545:2 13554:1 13559:2 13566:10 13569:1 13577:4 13587:1 13594:1 13601:2 13606:1 13610:2 13612:2 13613:1 13620:1 13644:5 13650:1 13652:1 13655:1 13671:2 13689:1 13694:1 13706:1 13712:1 13715:1 13716:6 13731:1 13742:1 13748:2 13749:1 13752:1 13758:1 13766:1 13770:2 13780:1 13796:4 13810:1 13815:3 13823:2 13828:1 13831:1 13847:1 13853:3 13863:3 13868:1 13870:2 13875:1 13908:1 13916:1 13920:1 13938:1 13948:4 13952:1 13953:5 13957:1 13958:2 13959:2 13968:1 13975:2 13978:1 13982:2 13983:1 13986:1 13994:2 14001:1 14002:1 14012:1 14026:4 14037:1 14067:8 14069:1 14074:1 14075:2 14094:1 14111:1 14114:2 14122:2 14144:1 14154:1 14164:1 14165:1 14167:5 14171:5 14175:2 14183:2 14205:1 14211:2 14229:1 14238:2 14245:6 14264:2 14274:1 14277:1 14309:2 14314:1 14328:1 14333:2 14337:1 14339:1 14340:1 14347:1 14354:2 14358:1 14361:1 14362:2 14365:1 14375:4 14382:1 14385:1 14388:2 14389:1 14392:3 14394:1 14409:1 14416:1 14425:3 14426:1 14429:1 14432:1 14443:1 14447:1 14451:2 14455:1 14470:1 14476:4 14491:1 14496:2 14508:1 14517:1 14518:1 14526:1 14550:3 14555:1 14557:1 14558:1 14560:1 14566:2 14567:1 14569:1 14575:1 14579:1 14590:1 14591:4 14593:1 14595:1 14597:1 14598:1 14611:1 14623:1 14626:1 14629:1 14635:1 14641:1 14659:1 14666:1 14675:6 14691:2 14692:1 14700:1 14724:2 14729:2 14741:1 14745:1 14755:1 14762:2 14763:1 14771:2 14783:1 14785:1 14786:1 14794:2 14805:1 14816:4 14822:1 14836:3 14846:1 14852:1 14855:1 14871:2 14872:2 14873:5 14901:1 14909:2 14911:1 14928:1 14930:1 14934:1 14940:1 14948:3 14953:1 14967:2 14970:1 14979:5 14981:1 14982:1 14986:1 15017:2 15021:1 15035:1 15036:1 15051:1 15074:8 15078:1 15080:1 15082:1 15085:1 15088:1 15103:1 15110:1 15116:1 15127:1 15129:4 15136:1 15138:1 15142:3 15152:1 15162:2 15176:3 15189:1 15202:1 15205:1 15210:1 15217:4 15222:2 15224:1 15226:1 15230:1 15251:3 15253:3 15263:1 15265:3 15266:1 15274:1 15289:2 15296:1 15316:4 15317:1 15319:1 15325:2 15329:2 15335:1 15339:1 15344:1 15349:1 15354:1 15368:2 15372:1 15374:1 15399:1 15401:1 15425:1 15442:1 15459:1 15466:3 15475:1 15488:1 15491:1 15498:1 15519:1 15522:3 15537:1 15545:1 15558:2 15566:1 15570:1 15584:1 15588:2 15589:1 15594:2 15603:1 15620:1 15637:1 15648:1 15659:1 15671:1 15687:1 15692:19 15702:2 15706:1 15723:1 15736:1 15746:2 15750:1 15756:2 15768:1 15772:3 15783:1 15785:1 15801:3 15807:1 15811:1 15813:2 15815:1 15817:1 15828:1 15840:1 15844:1 15850:1 15857:1 15861:2 15870:1 15875:1 15877:1 15891:1 15920:1 15931:3 15942:1 15948:1 15956:14 15961:1 15962:1 15963:1 15964:3 15965:4 15975:1 15976:3 15979:1 15980:1 15984:1 15987:1 15992:5 15993:2 16000:1 16008:1 16010:1 16014:1 16027:1 16033:2 16034:1 16040:1 16041:2 16056:5 16078:1 16084:2 16106:3 16108:2 16112:1 16117:1 16124:1 16130:1 16133:1 16137:5 16149:1 16183:1 16184:4 16186:3 16188:1 16190:1 16219:1 16225:2 16237:1 16239:1 16256:1 16276:4 16279:5 16295:4 16302:1 16328:1 16334:2 16338:1 16341:1 16358:1 16362:1 16363:1 16374:4 16378:1 16389:1 16397:1 16412:13 16414:1 16436:4 16439:1 16444:1 16449:1 16450:1 16459:3 16461:1 16467:1 16470:2 16479:1 16482:1 16484:1 16485:1 16498:1 16506:2 16510:1 16512:2 16521:1 16523:1 16525:2 16530:1 16532:1 16535:4 16536:2 16537:1 16538:1 16543:1 16546:1 16548:3 16556:2 16558:2 16559:2 16560:5 16562:1 16569:1 16570:3 16585:1 16596:1 16602:1 16619:1 16628:1 16682:1 16686:3 16716:1 16719:3 16728:1 16737:1 16745:1 16763:1 16775:1 16778:1 16785:1 16786:1 16801:2 16848:1 16849:1 16859:1 16861:1 16863:1 16865:1 16870:1 16874:2 16875:1 16883:1 16887:1 16892:1 16893:4 16897:1 16915:1 16926:2 16940:1 16946:1 16952:3 16960:1 16962:2 16971:1 16988:3 17020:1 17035:2 17037:1 17047:1 17052:3 17057:5 17063:1 17067:1 17074:1 17088:1 17098:1 17106:1 17120:1 17124:1 17144:1 17150:3 17151:1 17164:1 17170:1 17171:1 17176:7 17181:5 17201:3 17213:2 17217:1 17219:1 17222:1 17229:1 17235:1 17238:5 17258:3 17265:2 17272:1 17276:1 17284:1 17299:4 17307:2 17308:1 17309:1 17311:1 17312:1 17316:3 17327:2 17338:1 17341:1 17342:2 17345:1 17354:2 17370:1 17388:1 17404:10 17412:1 17417:2 17429:1 17430:1 17431:1 17433:1 17434:1 17437:1 17440:3 17443:1 17455:1 17468:1 17470:1 17478:2 17483:1 17484:1 17493:1 17508:2 17513:1 17514:2 17518:2 17521:1 17525:2 17534:2 17539:1 17543:1 17566:2 17567:1 17573:1 17576:2 17577:1 17588:1 17591:1 17598:1 17601:2 17603:1 17629:1 17631:1 17649:1 17652:1 17679:1 17681:1 17687:1 17692:1 17696:1 17698:1 17703:1 17711:1 17714:1 17717:2 17727:3 17734:1 17737:1 17753:1 17756:1 17761:1 17766:1 17800:1 17804:3 17814:5 17816:1 17818:1 17823:2 17824:3 17825:1 17839:1 17842:1 17851:1 17861:2 17864:1 17870:2 17888:3 17896:2 17897:1 17912:1 17918:1 17931:1 17936:1 17943:2 17950:1 17962:1 17980:2 17989:1 17991:1 17992:1 18036:1 18043:2 18044:1 18046:1 18047:2 18059:2 18070:1 18072:1 18073:2 18118:1 18120:1 18123:3 18128:1 18137:1 18144:1 18148:2 18152:1 18154:2 18172:2 18173:9 18181:4 18188:2 18194:1 18196:1 18197:3 18217:1 18220:3 18226:1 18231:1 18232:1 18248:1 18249:1 18263:1 18264:1 18267:3 18272:1 18273:1 18278:2 18281:1 18282:1 18283:1 18284:2 18303:1 18325:1 18326:1 18330:1 18332:1 18338:2 18344:1 18345:2 18346:3 18348:1 18373:1 18395:1 18410:1 18429:1 18431:2 18432:1 18437:1 18444:1 18445:1 18447:2 18454:1 18455:1 18460:1 18475:1 18479:1 18492:1 18497:1 18498:1 18515:1 18525:2 18534:1 18540:1 18544:1 18547:1 18552:1 18553:1 18557:1 18561:2 18562:1 18580:1 18587:1 18599:1 18605:1 18610:1 18642:1 18648:1 18657:4 18665:1 18685:2 18690:3 18695:3 18699:2 18706:1 18710:1 18727:1 18744:3 18761:1 18762:1 18772:1 18800:8 18809:2 18810:4 18826:1 18845:1 18878:2 18879:2 18880:1 18885:2 18892:1 18912:2 18918:1 18926:2 18934:2 18938:2 18960:1 18963:2 18970:3 18978:1 18984:2 18991:1 18993:2 18994:2 18999:2 19004:2 19029:1 19033:4114 19038:1 19052:3 19054:3 19058:2 19059:1 19062:1 19072:1 19086:1 19124:3 19126:1 19133:2 19136:1 19176:1 19182:1 19187:2 19189:1 19211:1 19227:1 19228:4 19241:1 19242:1 19243:4 19245:1 19246:2 19247:1 19251:1 19262:1 19303:1 19310:1 19311:1 19312:1 19320:1 19323:1 19326:1 19329:1 19333:1 19350:1 19352:3 19355:1 19367:1 19370:1 19377:1 19394:1 19397:2 19414:2 19425:1 19427:1 19456:1 19458:1 19461:3 19463:1 19465:2 19486:1 19497:1 19498:1 19510:1 19523:1 19534:3 19536:1 19537:1 19542:1 19546:1 19584:1 19597:1 19614:3 19616:1 19632:2 19644:1 19655:1 19656:1 19659:4 19705:1 19711:2 19714:1 19715:1 19720:1 19721:1 19723:1 19726:1 19729:1 19734:2 19739:3 19744:2 19756:1 19766:2 19772:2 19774:1 19785:1 19789:3 19792:1 19794:1 19805:2 19806:1 19813:1 19818:1 19819:1 19823:3 19827:7 19840:2 19855:1 19856:8 19861:1 19862:1 19864:1 19865:2 19869:1 19871:2 19872:1 19881:1 19884:1 19895:1 19900:2 19916:3 19922:3 19926:2 19928:3 19929:1 19932:2 19933:2 19937:2 19952:1 19959:1 19967:3 19969:1 19979:3 19991:1 20000:1 20005:1 20011:1 20016:1 20028:1 20034:1 20046:3 20049:1 20053:3 20057:1 20061:1 20089:1 20100:1 20103:1 20109:1 20112:1 20116:3 20136:2 20152:2 20159:1 20166:5 20173:1 20179:1 20185:1 20193:1 20212:1 20235:1 20243:1 20246:1 20250:1 20257:1 20279:5 20284:1 20289:5 20300:1 20317:1 20320:1 20332:2 20337:1 20347:1 20348:1 20355:2 20356:1 20360:2 20370:1 20374:1 20384:3 20387:1 20399:1 20401:1 20404:3 20411:1 20418:1 20420:3 20424:1 20426:1 20427:2 20437:1 20440:1 20453:1 20456:1 20464:1 20465:1 20474:3 20490:1 20495:2 20505:1 20517:1 20529:4 20534:3 20541:1 20548:1 20550:1 20555:1 20569:1 20573:3 20575:1 20586:1 20595:1 20600:2 20604:1 20605:1 20607:1 20618:1 20620:1 20622:1 20623:1 20635:1 20646:5 20653:1 20658:1 20664:1 20665:1 20666:1 20671:1 20680:1 20685:1 20699:1 20703:7 20704:1 20709:2 20711:1 20713:1 20719:1 20722:2 20737:1 20748:1 20763:1 20769:1 20771:1 20781:1 20791:1 20803:1 20806:2 20811:1 20818:2 20829:1 20845:1 20853:1 20863:3 20897:1 20904:4 20911:1 20913:1 20915:2 20925:3 20929:1 20947:2 20955:2 20959:5 20963:1 20969:4 20971:1 20974:1 20979:1 21018:1 21029:1 21033:1 21041:2 21042:1 21057:1 21065:1 21067:1 21071:1 21073:1 21075:1 21106:1 21107:2 21133:1 21136:1 21139:2 21142:1 21145:1 21149:1 21156:1 21159:1 21165:1 21167:1 21188:2 21190:1 21193:1 21204:1 21207:1 21210:1 21217:4 21218:1 21219:2 21223:2 21228:1 21232:1 21239:1 21248:1 21264:7 21275:2 21289:1 21291:2 21296:2 21298:2 21302:2 21311:5 21320:3 21326:1 21328:2 21331:1 21340:1 21346:1 21352:1 21360:3 21364:1 21368:1 21382:1 21385:1 21399:1 21403:1 21408:1 21414:2 21438:2 21442:2 21452:1 21453:1 21457:1 21462:2 21494:1 21509:2 21516:1 21517:1 21520:1 21522:1 21523:1 21529:9 21534:2 21535:2 21539:1 21541:2 21550:1 21553:1 21556:1 21559:1 21562:1 21565:1 21568:1 21572:1 21581:1 21582:1 21585:2 21599:1 21612:1 21627:1 21628:2 21632:3 21633:1 21634:1 21635:1 21660:1 21667:1 21669:1 21680:2 21685:3 21695:1 21704:1 21709:1 21713:2 21715:4 21722:1 21735:1 21752:1 21754:1 21769:1 21783:2 21790:6 21793:1 21798:1 21804:1 21817:4 21818:1 21826:1 21834:1 21838:2 21845:1 21846:1 21850:1 21851:1 21862:2 21863:1 21869:1 21873:1 21878:1 21880:1 21881:1 21891:2 21905:2 21929:1 21931:1 21932:1 21936:1 21939:3 21940:2 21941:1 21943:1 21948:1 21952:1 21954:1 21957:2 21959:1 21960:3 21975:1 21976:1 21982:1 21987:2 21993:2 21994:4 22001:1 22004:2 22008:1 22021:1 22031:1 22046:1 22052:2 22058:2 22060:1 22061:1 22070:1 22090:1 22091:2 22099:6 22101:1 22107:2 22112:1 22115:2 22118:2 22125:2 22129:1 22131:1 22133:1 22143:1 22144:1 22151:1 22164:2 22170:1 22189:1 22198:1 22202:1 22203:4 22218:7 22224:1 22227:1 22228:1 22240:1 22246:1 22249:1 22260:1 22261:6 22266:2 22291:1 22298:1 22305:3 22339:1 22341:1 22348:2 22351:2 22353:3 22361:1 22371:1 22372:1 22376:1 22379:3 22381:1 22384:6 22386:4 22390:1 22392:1 22400:1 22405:2 22425:1 22447:2 22476:1 22491:2 22495:1 22508:5 22540:1 22541:1 22545:1 22549:2 22551:1 22552:1 22570:1 22579:1 22599:1 22600:1 22608:3 22614:1 22619:2 22627:4 22631:1 22632:1 22637:1 22646:1 22654:1 22657:1 22664:1 22665:1 22668:1 22669:1 22672:2 22674:1 22675:1 22676:1 22684:1 22686:2 22690:3 22699:1 22705:1 22707:1 22710:1 22715:2 22716:1 22722:1 22727:1 22730:1 22733:1 22739:1 22751:1 22763:1 22769:2 22772:2 22787:3 22790:2 22805:1 22806:2 22821:1 22822:1 22829:1 22830:2 22836:2 22844:1 22846:1 22855:4 22866:5 22868:1 22872:2 22874:1 22877:1 22882:3 22883:1 22887:1 22889:1 22890:1 22896:1 22919:1 22924:9 22931:3 22935:1 22942:2 22990:1 22992:1 22993:1 22998:5 23022:7 23024:1 23026:1 23027:1 23035:2 23036:1 23043:3 23044:1 23045:6 23049:1 23050:1 23064:1 23071:1 23076:1 23092:1 23094:1 23095:1 23100:1 23108:2 23110:2 23112:1 23135:1 23136:1 23146:5 23163:5 23170:1 23173:2 23175:3 23176:1 23187:2 23196:4 23199:1 23202:5 23209:1 23213:3 23218:1 23228:3 23236:1 23241:2 23244:1 23245:3 23265:1 23267:1 23275:4 23281:1 23286:1 23296:1 23302:3 23304:2 23307:1 23311:1 23312:5 23313:1 23315:5 23322:3 23326:2 23356:1 23359:1 23360:1 23368:1 23369:1 23374:1 23404:1 23434:1 23442:1 23468:3 23474:1 23479:1 23487:1 23497:3 23513:1 23514:1 23518:1 23526:1 23539:1 23540:1 23542:1 23581:1 23584:1 23616:3 23630:4 23632:1 23646:1 23647:1 23652:1 23653:1 23662:1 23663:2 23671:4 23677:1 23693:1 23718:1 23724:2 23740:1 23747:1 23763:1 23770:1 23772:1 23798:2 23813:1 23829:1 23831:1 23835:1 23851:1 23852:1 23859:1 23860:1 23862:1 23870:2 23876:2 23886:2 23887:1 23893:4 23921:1 23926:1 23929:2 23930:1 23931:1 23935:1 23951:2 23955:1 23957:1 23960:1 23964:1 23976:1 23978:1 23981:1 23986:1 23999:1 24004:1 24009:1 24011:1 24019:2 24027:1 24028:1 24030:4 24037:2 24038:2 24052:1 24057:1 24065:1 24066:1 24072:1 24074:3 24087:7 24093:1 24111:1 24115:1 24129:1 24130:1 24138:2 24144:1 24148:2 24155:1 24157:1 24158:2 24160:1 24164:4 24180:1 24182:1 24192:1 24201:1 24214:2 24232:2 24241:1 24242:1 24243:1 24245:1 24250:1 24252:1 24254:3 24264:1 24266:1 24289:1 24292:1 24318:1 24320:1 24325:1 24332:1 24334:1 24347:1 24351:1 24380:1 24390:1 24404:1 24422:2 24425:1 24430:2 24439:1 24449:1 24451:1 24457:3 24474:1 24483:1 24488:1 24495:1 24496:1 24497:1 24498:1 24499:1 24510:1 24511:2 24516:3 24527:1 24530:1 24533:1 24535:1 24549:2 24580:1 24582:2 24587:1 24594:1 24598:3 24610:2 24611:2 24618:1 24634:5 24640:1 24652:2 24658:1 24670:1 24671:1 24681:3 24696:1 24709:1 24717:1 24725:2 24726:1 24729:1 24730:1 24731:1 24743:1 24755:2 24756:2 24757:1 24759:1 24761:6 24762:1 24763:1 24774:3 24777:1 24789:1 24795:1 24797:1 24808:1 24812:1 24829:1 24833:3 24834:1 24837:2 24842:1 24859:1 24860:3 24866:1 24868:1 24872:1 24879:1 24885:1 24886:1 24894:1 24911:1 24924:1 24928:1 24949:2 24954:1 24969:2 24973:2 24997:1 25004:1 25007:4 25008:3 25016:1 25019:2 25022:2 25023:2 25025:1 25026:4 25027:1 25028:3 25030:2 25031:1 25034:1 25036:1 25038:4 25048:2 25049:1 25052:2 25058:1 25061:1 25067:3 25079:5 25086:1 25087:2 25089:1 25092:1 25099:1 25119:1 25121:2 25123:1 25138:1 25145:1 25146:2 25151:1 25154:3 25157:1 25164:1 25166:2 25189:1 25190:3 25192:1 25194:4 25197:1 25202:1 25207:1 25212:2 25213:2 25215:2 25220:3 25221:3 25223:2 25224:1 25227:1 25239:1 25244:1 25247:1 25271:1 25285:1 25295:1 25303:1 25306:1 25326:12 25327:1 25328:1 25345:1 25350:10 25361:1 25364:4 25367:2 25378:1 25380:1 25383:1 25385:1 25387:1 25392:2 25397:4 25414:3 25428:2 25431:1 25432:3 25454:1 25479:1 25485:2 25486:2 25492:1 25493:1 25508:1 25526:1 25531:1 25543:2 25549:2 25561:1 25562:1 25571:1 25574:1 25576:1 25580:1 25583:1 25595:1 25600:1 25610:1 25611:2 25614:1 25624:3 25634:1 25652:1 25657:1 25672:1 25677:1 25695:1 25711:1 25718:2 25730:1 25760:1 25766:1 25794:1 25802:2 25828:3 25829:10 25831:1 25848:1 25854:10 25855:1 25862:1 25863:1 25866:1 25869:1 25879:5 25885:1 25888:2 25889:1 25892:2 25897:1 25919:1 25941:1 25943:1 25947:1 25958:1 25964:2 25967:2 25993:1 26011:2 26028:2 26030:1 26045:1 26051:3 26054:2 26062:3 26067:1 26072:1 26073:5 26076:4 26077:1 26080:1 26083:1 26089:1 26095:1 26099:1 26106:2 26107:1 26108:1 26109:2 26116:2 26125:2 26128:1 26142:1 26147:3 26150:1 26151:1 26160:1 26173:4 26190:2 26192:1 26212:3 26218:1 26241:2 26276:1 26281:1 26288:1 26298:1 26309:1 26315:1 26323:1 26329:1 26331:6 26336:1 26345:2 26349:1 26354:2 26356:2 26373:1 26382:2 26384:4 26387:3 26395:2 26403:1 26410:1 26413:1 26418:1 26471:1 26485:1 26488:1 26500:1 26506:1 26508:2 26511:1 26524:2 26527:2 26577:1 26582:1 26587:1 26593:2 26597:1 26606:1 26622:2 26624:1 26632:1 26634:3 26637:1 26643:1 26653:2 26660:1 26666:1 26671:1 26680:1 26683:1 26684:1 26691:1 26693:1 26696:1 26698:1 26699:1 26701:1 26703:1 26704:1 26706:2 26709:1 26712:1 26713:4 26714:1 26726:1 26729:1 26734:1 26745:1 26768:1 26771:7 26782:1 26791:1 26817:1 26826:1 26827:1 26835:1 26847:1 26848:1 26851:9 26858:2 26862:3 26867:1 26869:1 26880:1 26899:1 26904:2 26907:3 26914:1 26917:3 26931:1 26936:1 26942:4 26945:1 26949:1 26959:1 26970:1 26981:3 26987:1 26992:1 27003:1 27006:4 27023:1 27027:1 27028:1 27030:6 27037:1 27049:2 27052:2 27056:1 27063:1 27092:1 27122:2 27126:1 27149:2 27150:2 27152:1 27153:2 27154:1 27158:1 27163:1 27165:1 27167:1 27169:1 27204:1 27205:1 27210:1 27222:2 27237:2 27268:4 27276:1 27278:4 27279:3 27280:1 27281:4 27284:1 27298:1 27309:2 27310:1 27318:1 27320:1 27321:1 27341:1 27344:1 27351:1 27361:1 27392:2 27395:2 27402:1 27437:1 27443:2 27451:2 27464:2 27465:1 27473:1 27476:1 27478:1 27490:1 27503:1 27509:1 27518:2 27533:6 27547:1 27549:1 27551:1 27566:1 27588:1 27598:2 27603:1 27605:1 27614:1 27625:2 27626:1 27627:3 27633:1 27647:1 27650:1 27662:1 27668:6 27676:1 27680:2 27689:1 27706:1 27718:1 27729:1 27741:2 27748:1 27765:3 27768:1 27772:4 27783:1 27791:1 27801:4 27802:3 27803:2 27806:2 27838:2 27842:2 27852:1 27859:2 27872:10 27874:3 27883:1 27886:1 27889:1 27906:1 27927:1 27932:3 27933:1 27937:2 27938:7 27960:1 27963:1 27964:2 27971:1 27978:8 27989:2 27999:1 28006:1 28035:1 28047:2 28054:6 28058:6 28063:3 28066:2 28071:3 28079:1 28088:1 28089:1 28100:4 28102:1 28110:2 28119:1 28120:1 28123:1 28124:2 28125:1 28132:2 28136:2 28138:1 28139:2 28147:3 28149:2 28163:1 28194:2 28204:2 28207:1 28214:2 28215:1 28218:2 28223:1 28224:2 28232:1 28239:2 28240:2 28245:1 28253:1 28260:1 28272:1 28285:3 28294:2 28299:1 28300:1 28310:1 28317:1 28318:1 28319:1 28329:1 28335:1 28338:2 28344:1 28356:1 28360:2 28361:1 28366:1 28376:2 28379:1 28388:3 28391:1 28405:2 28413:1 28414:2 28423:1 28427:2 28429:3 28439:1 28441:1 28447:8 28449:1 28457:1 28465:1 28505:1 28517:1 28528:1 28539:2 28545:2 28547:1 28577:2 28580:2 28589:2 28600:1 28601:4 28604:1 28608:1 28627:2 28628:1 28643:3 28648:1 28651:3 28658:1 28660:4 28671:2 28673:2 28676:2 28677:3 28685:1 28695:1 28707:1 28716:5 28722:1 28726:1 28729:1 28735:1 28736:1 28746:2 28755:3 28758:1 28759:1 28760:1 28765:1 28792:1 28795:1 28803:1 28808:1 28809:1 28811:1 28823:2 28834:26 28835:4 28837:2 28839:2 28842:2 28843:4 28850:3 28852:2 28854:2 28873:13 28882:1 28887:3 28888:1 28892:1 28895:1 28911:1 28923:3 28926:1 28927:1 28946:1 28951:1 28957:1 28961:1 28971:1 28977:1 28980:1 28985:1 28988:1 28993:2 29001:7 29010:1 29015:1 29038:8 29039:1 29055:2 29057:2 29069:1 29071:1 29080:1 29092:1 29095:2 29106:1 29108:1 29113:1 29115:1 29127:1 29129:1 29158:1 29167:1 29169:1 29187:1 29188:1 29192:1 29197:1 29202:1 29203:1 29207:1 29215:1 29219:3 29221:1 29228:1 29230:1 29232:1 29238:1 29239:1 29241:2 29244:1 29251:1 29260:1 29262:1 29272:2 29281:1 29301:3 29322:1 29331:1 29336:1 29351:1 29364:6 29367:9 29392:2 29395:3 29401:1 29402:1 29409:1 29412:1 29413:2 29419:1 29420:2 29421:1 29427:1 29442:3 29452:1 29474:1 29476:2 29509:1 29526:1 29537:1 29543:1 29545:2 29548:7 29552:1 29555:1 29557:1 29572:4 29573:1 29576:1 29588:1 29589:2 29590:1 29593:4 29601:1 29631:1 29635:1 29636:2 29649:1 29664:1 29679:1 29688:1 29690:1 29701:1 29705:1 29707:1 29708:1 29711:1 29726:1 29727:1 29729:1 29735:2 29739:1 29741:1 29756:2 29763:1 29768:1 29774:5 29776:1 29787:1 29788:1 29796:6 29804:1 29806:1 29807:2 29816:3 29833:2 29858:1 29861:1 29870:1 29875:2 29880:2 29883:1 29888:1 29901:1 29912:1 29915:1 29919:2 29936:1 29951:2 29965:2 29974:2 29989:1 29995:3 29999:4 30013:2 30020:2 30034:1 30055:3 30077:1 30078:1 30083:1 30092:1 30095:8 30105:1 30106:3 30107:2 30108:1 30119:1 30127:1 30129:1 30142:1 30146:3 30150:1 30156:1 30158:1 30165:1 30171:1 30176:1 30180:1 30183:3 30185:2 30187:1 30189:1 30190:2 30191:2 30197:10 30198:1 30205:2 30208:5 30209:1 30213:5 30224:1 30242:2 30246:1 30253:1 30258:3 30261:1 30262:2 30264:1 30270:1 30272:2 30298:2 30303:1 30305:3 30320:1
952b4f7bbbc9016266877bd11464bb848f2c62e4
449d555969bfd7befe906877abab098c6e63a0e8
/331/CH3/EX3.8/Example_3_8.sce
c6196e5a11c53f691da69101c1f100f804bdcd43
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,115
sce
Example_3_8.sce
//Caption: Median of grouped data //Example3.8 //Page45 clear; clc; X = [0,8;8,10;10,12;12,14;14,16;16,18;18,20;20,22;22,24]; f = [5,10,15,20,35,40,45,20,15,11]; cum_f = 0; for i = 1:length(f) cum_f = cum_f+f(i); sigmaf(i) = cum_f; end N = cum_f; //total number of salesman cen = N/2; for i = 1:length(f) if ((sigmaf(i)< cen) &(cen< sigmaf(i+1))) then L = X(i+1,1); Fre = f(i+1); F = sigmaf(i) C = diff(X(i+1,:)); end end disp(L,'Lower limit of the median class L =') disp(Fre,'Frequency of the Median class f =') disp(F,'Cumulative frequency of the previous class F=') disp(C,'Width of the class interval C=') Median = L+(((N/2)-F)*C/Fre); disp(Median*1000,'Median of the travelling allowance of the salesman is Rs =') //Result // // Lower limit of the median class L = // // 16. // // Frequency of the Median class f = // // 40. // // Cumulative frequency of the previous class F= // // 85. // // Width of the class interval C= // // 2. // // Median of the travelling allowance of the salesman is Rs = // // 17150.
3f5cebb9776e378e98d7dc7341b2649e59c8585a
449d555969bfd7befe906877abab098c6e63a0e8
/896/CH8/EX8.1/1.sce
a49c015a8519fdcdaf11e4f11540328b43316e25
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
476
sce
1.sce
clc //Example 8.1 //Calculate the speed of sound in water amd steel at 20 C //for steel K_steel=1.94*10^11//Pa rho_steel=7800//Kg.m^3 c_steel=(K_steel/rho_steel)^0.5/1000//Km/s printf("the speed of sound in steel at 20 C is %f km/s\n",c_steel); //for water K_water=3.14*10^5//lbf/in^2 rho_water=62.3//lbm/ft^3 //1 ft =12 in //1 lbf.s^2 = 32.2 lbm.ft c_water=(K_water/rho_water*144*32.2)^0.5//ft/s printf("the speed of sound in water at 20 C is %f ft/s",c_water);
f9804a261787509b56d115a3c5f09656507b3e96
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH4/EX4.21/21.sce
7704f51a5402e413d1c4438012369c2f27bf5794
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
278
sce
21.sce
clc Qv=90; //kJ Qp=-95; //kJ W=-18; //kJ U_l=105; //kJ W_lm=0; Q_lm=90; U_m=U_l+90; dU_mn=Qp-W; U_n=U_m+dU_mn; dQ=Qv+Qp; dW=dQ; W_nl=dW-W; disp("W_nl(in kJ)=") disp(W_nl) disp("U_l in kJ =") disp(U_l) disp("U_m in kJ =") disp(U_m) disp("U_n in kJ") disp(U_n)
145b5b008bd201d693e0fa437dce8b349fad4fa3
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH8/EX8.5.b/ex_8_5_b.sce
eda855aaf516ae9f43f2469e1de1860a65b8b2bd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
404
sce
ex_8_5_b.sce
//Example 8.5.b // copper losses clc; clear; close; V=230;// in volts I=60;// in amperes rpm=955;//turns ra=0.2;//resistance of armature in ihms rsh=0.15;//shunt field in ohms sl=604;//stray losses in watts Rm=ra+rsh;// in ohms Eb=(V-I*Rm);// back emf in volts Dp=Eb*I;//driving power in watts mi=V*I;//input power in watts Cl=mi-Dp;// copper losses in watts disp(Cl,"copper losses in watts")
1a235a13d415e10b8b050c8eb0661ae773e2fb4b
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH3/EX3.12/Ex3_12.sce
f30c7dc4c240c8ca059717a1bd78cd6adfe4795d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
735
sce
Ex3_12.sce
clear; clc; printf("\t\t\tProblem Number 3.12\n\n\n"); // Chapter 3 : The First Law Of Thermodynamics // Problem 3.12 (page no. 112) // Solution Z1=2; //Unit:m //Inlet position g=9.81 //Unit:m/s^2 //g=The local gravity V1=40; //Unit:m/s //Inlet velocity h1=3433.8; //Unit:kJ/kg //Inlet enthalpy q=1 //Unit:kJ/kg //Heat losses Z2=0; //Outlet position //unit:m V2=162; //Unit:m/s //Outlet velocity h2=2675.5; //Unit:kJ/kg //Outlet enthalpy //Energy equation is given by //((Z1*g)) + (V1^2/2) + h1 + q = ((Z2*g) + (V2^2/2) + h2 + w w= ((Z1*g)/1000) + ((V1^2/2)/1000) + h1 - q - ((Z2*g)/1000) - ((V2^2/2)/1000) - h2 ; //Unit:kJ/kg //Conersation: 1 kJ=1000 J printf("The work output per kilogram is %f kJ/kg\n",w);
85d769b23a9ca48f22f4e918cdfa222483575b67
449d555969bfd7befe906877abab098c6e63a0e8
/1397/CH6/EX6.10/6_10.sce
a03008e298295be8c87f95a5e5bcce8bdbcb551f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
286
sce
6_10.sce
//clc(); clear; //To calculate the angle at which third order reflection can occur n=3; //diffraction order lambda=0.79*10^-10; //wavelength in m d=3.04*10^-10; //spacing in m theta=asind((n*lambda)/(2*d)); printf("braggs angle in degrees is"); disp(theta);
cc6735c49b78fae3cb0dc20519681b7b99dc4df8
449d555969bfd7befe906877abab098c6e63a0e8
/548/DEPENDENCIES/6_15data.sci
3c9acf3ed4faf69c51c9350a204886f149b44378
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
195
sci
6_15data.sci
//for the jet power executive aircraft(CJ-1): b=16.25;//wingspan(meter) S=29.54;//wingarea(m^2) AR=b^2/S;//aspect ratio Cdo=0.02;//parasite drag coefficient e=0.81;//oswald efficiency factor
53e5f15f00ffd03a96c9212cbe45e61dde992a54
717ddeb7e700373742c617a95e25a2376565112c
/2474/CH8/EX8.3/Ch08Ex03.sce
f07a825e36170997031c02d669fe858d2ed470fb
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
402
sce
Ch08Ex03.sce
// Scilab code Ex8.3: Pg.321 (2008) clc; clear; k = 1.38e-23; // Boltzmann constant, J/K T = 300; // Temperature, K m = 4.68e-26; // Mass of N_2 molecule, kg v = sqrt((8*k*T)/(%pi*m)); // Average speed of N_2 molecule, m/s printf("\nThe average speed of N_2 molecule = %5.1f m/s or = %4d km/h", v, v*3.6); // Result // The average speed of N_2 molecule = 474.6 m/s or = 1708 km/h
33304280a32bebd553f103c357e4b458f305bee6
42fdf741bf64ea2e63d1546bb08356286f994505
/test_20150819_onchipTSMCadc/test_20150819_onchipTSMCadc.sce
dc905e1c80b46753aa66322c7022494cbc1cda38
[]
no_license
skim819/RASP_Workspace_sihwan
7e3cd403dc3965b8306ec203007490e3ea911e3b
0799e146586595577c8efa05c647b8cb92b962f4
refs/heads/master
2020-12-24T05:22:25.775823
2017-04-01T22:15:18
2017-04-01T22:15:18
41,511,563
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,639
sce
test_20150819_onchipTSMCadc.sce
global file_name path fname extension chip_num board_num brdtype hex_1nA hex_1na; global dac_array dac_array_map number_samples period; chip_num="16"; board_num=2; brdtype = ''; // 2: 3.0, 3: 3.0a, '':3.0 '_30a':3.0a cd("~/RASP_Workspace/test_20150819_onchipTSMCadc"); path = pwd(); file_name = path + "/test_20150819_onchipTSMCadc.xcos"; mkdir .test_20150819_onchipTSMCadc; [path,fname,extension]=fileparts(file_name); hid_dir=path+'.'+fname; fd = mopen('input_vector','wt'); mputl('0x0000 0x0000 0x03e8 0xFFFF', fd); mclose(fd); // making fake input_vector fd = mopen('output_info','wt'); mputl('0x0000', fd); mclose(fd); // making fake output_info exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1); exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce', -1); disp('tunnel , reverse tunnel done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ver05_gui.sce', -1); disp('switch_program done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/dc_setup_gui.sce', -1); disp('DC setup done'); unix_w('sudo ~/rasp30/prog_assembly/libs/sh/asm2ihex.sh onchip_adc_tsmc ~/rasp30/prog_assembly/libs/asm_code/onchip_adc_tsmc.s43 16384 16384 16384'); unix_w('sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -device /dev/ttyUSB1/ -speed 115200 onchip_adc_tsmc.elf') unix_w("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -device /dev/ttyUSB1/ -start_address 0x5300 -length 1 -output_file_name onchipADC_tsmc_value.hex");
69cc746848d80757a3e06d5a543fc5a6a28ee778
449d555969bfd7befe906877abab098c6e63a0e8
/615/CH2/EX2.23/2_23.sce
be9254ba8faa3074a4ab5837dd1424a6c8c75d37
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
367
sce
2_23.sce
//acids and bases// //example 2.23// OH=0.0025;//OH- concentration// K=1*10^-14//water ionization constant// H=K/OH; H=H/10^-12; printf("The concentration of H+ ions is %f*10^-12M",H); printf("\nThe concentration of OH- ions is %fM",OH); printf("\nAs concentration of H+ is lesser than the concentration of OH- the cleaning solution will be basic in nature");
f8da57801d022555cefc7aa9eec7ed011ba5d210
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/LT52YEG/ATWM1_Working_Memory_MEG_LT52YEG_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce
454daa82aa186323e5d43cdb5e9392387737c75d
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
49,597
sce
ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 369; width = 369; color = 42, 42, 42;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 43 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_041 gabor_020 gabor_109 gabor_177 gabor_041_alt gabor_020 gabor_109_alt gabor_177 "1_1_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_041_020_109_177_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_target_position_2_4 "1_1_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1942 2992 1992 fixation_cross gabor_024 gabor_088 gabor_056 gabor_173 gabor_024_alt gabor_088 gabor_056 gabor_173_alt "1_2_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_024_088_056_173_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_056_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_2_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_129 gabor_180 gabor_064 gabor_007 gabor_129_alt gabor_180_alt gabor_064 gabor_007 "1_3_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_129_180_064_007_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_064_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_3_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_053 gabor_031 gabor_077 gabor_136 gabor_053_alt gabor_031 gabor_077_alt gabor_136 "1_4_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_053_031_077_136_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_136_framed blank blank blank blank fixation_cross_target_position_2_4 "1_4_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_142 gabor_123 gabor_036 gabor_096 gabor_142_alt gabor_123 gabor_036 gabor_096_alt "1_5_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_142_123_036_096_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_036_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_5_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_002 gabor_128 gabor_090 gabor_073 gabor_002 gabor_128_alt gabor_090 gabor_073_alt "1_6_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_002_128_090_073_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_090_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_6_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1992 2992 2492 fixation_cross gabor_040 gabor_058 gabor_085 gabor_122 gabor_040_alt gabor_058 gabor_085_alt gabor_122 "1_7_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2500_gabor_patch_orientation_040_058_085_122_target_position_2_4_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_7_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_040_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_019 gabor_176 gabor_040 gabor_100 gabor_019_alt gabor_176_alt gabor_040 gabor_100 "1_8_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_019_176_040_100_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_100_framed blank blank blank blank fixation_cross_target_position_3_4 "1_8_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_013 gabor_066 gabor_128 gabor_083 gabor_013_alt gabor_066_alt gabor_128 gabor_083 "1_9_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_013_066_128_083_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_9_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1842 2992 1942 fixation_cross gabor_111 gabor_129 gabor_070 gabor_048 gabor_111 gabor_129 gabor_070_alt gabor_048_alt "1_10_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_111_129_070_048_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_070_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_10_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_070_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_051 gabor_118 gabor_171 gabor_031 gabor_051_alt gabor_118 gabor_171_alt gabor_031 "1_11_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_051_118_171_031_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_081_framed blank blank blank blank fixation_cross_target_position_2_4 "1_11_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_041 gabor_107 gabor_069 gabor_131 gabor_041 gabor_107_alt gabor_069_alt gabor_131 "1_12_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_041_107_069_131_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_target_position_1_4 "1_12_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2092 2992 1892 fixation_cross gabor_055 gabor_122 gabor_160 gabor_032 gabor_055 gabor_122 gabor_160_alt gabor_032_alt "1_13_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_055_122_160_032_target_position_1_2_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_13_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_176 gabor_024 gabor_148 gabor_092 gabor_176_alt gabor_024 gabor_148 gabor_092_alt "1_14_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_176_024_148_092_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_14_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2242 2992 2492 fixation_cross gabor_114 gabor_025 gabor_008 gabor_164 gabor_114_alt gabor_025 gabor_008_alt gabor_164 "1_15_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_114_025_008_164_target_position_2_4_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_15_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 2192 2992 2142 fixation_cross gabor_025 gabor_180 gabor_097 gabor_047 gabor_025_alt gabor_180_alt gabor_097 gabor_047 "1_16_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2150_gabor_patch_orientation_025_180_097_047_target_position_3_4_retrieval_position_2" gabor_circ gabor_180_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_16_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_180_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_179 gabor_124 gabor_017 gabor_154 gabor_179 gabor_124_alt gabor_017_alt gabor_154 "1_17_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_179_124_017_154_target_position_1_4_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_17_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 2292 fixation_cross gabor_179 gabor_036 gabor_120 gabor_101 gabor_179_alt gabor_036_alt gabor_120 gabor_101 "1_18_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_179_036_120_101_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_target_position_3_4 "1_18_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_011 gabor_031 gabor_118 gabor_092 gabor_011 gabor_031_alt gabor_118 gabor_092_alt "1_19_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_011_031_118_092_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_118_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_19_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_131 gabor_004 gabor_041 gabor_063 gabor_131 gabor_004 gabor_041_alt gabor_063_alt "1_20_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_131_004_041_063_target_position_1_2_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_20_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_179 gabor_058 gabor_099 gabor_117 gabor_179 gabor_058 gabor_099_alt gabor_117_alt "1_21_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_179_058_099_117_target_position_1_2_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_21_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1792 2992 2092 fixation_cross gabor_178 gabor_100 gabor_122 gabor_053 gabor_178_alt gabor_100 gabor_122 gabor_053_alt "1_22_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_178_100_122_053_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_072_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_22_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_163 gabor_076 gabor_141 gabor_097 gabor_163 gabor_076_alt gabor_141_alt gabor_097 "1_23_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_163_076_141_097_target_position_1_4_retrieval_position_2" gabor_circ gabor_026_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_23_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_026_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_118 gabor_096 gabor_156 gabor_081 gabor_118_alt gabor_096_alt gabor_156 gabor_081 "1_24_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_118_096_156_081_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_target_position_3_4 "1_24_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_040 gabor_070 gabor_124 gabor_146 gabor_040_alt gabor_070_alt gabor_124 gabor_146 "1_25_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_040_070_124_146_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_098_framed blank blank blank blank fixation_cross_target_position_3_4 "1_25_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2242 2992 2492 fixation_cross gabor_149 gabor_011 gabor_087 gabor_117 gabor_149_alt gabor_011 gabor_087_alt gabor_117 "1_26_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_149_011_087_117_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_target_position_2_4 "1_26_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_157 gabor_136 gabor_069 gabor_021 gabor_157_alt gabor_136 gabor_069 gabor_021_alt "1_27_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_157_136_069_021_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_27_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1892 2992 2392 fixation_cross gabor_160 gabor_003 gabor_036 gabor_088 gabor_160 gabor_003_alt gabor_036_alt gabor_088 "1_28_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2400_gabor_patch_orientation_160_003_036_088_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_036_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_28_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_036_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_038 gabor_069 gabor_175 gabor_099 gabor_038 gabor_069_alt gabor_175 gabor_099_alt "1_29_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_038_069_175_099_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_29_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_098 gabor_118 gabor_028 gabor_146 gabor_098_alt gabor_118 gabor_028_alt gabor_146 "1_30_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_098_118_028_146_target_position_2_4_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_30_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2242 2992 2142 fixation_cross gabor_045 gabor_091 gabor_110 gabor_131 gabor_045_alt gabor_091 gabor_110 gabor_131_alt "1_31_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_045_091_110_131_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_177_framed blank blank blank blank fixation_cross_target_position_2_3 "1_31_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_164 gabor_009 gabor_057 gabor_040 gabor_164_alt gabor_009 gabor_057_alt gabor_040 "1_32_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_164_009_057_040_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_target_position_2_4 "1_32_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2042 2992 2492 fixation_cross gabor_051 gabor_156 gabor_087 gabor_109 gabor_051_alt gabor_156_alt gabor_087 gabor_109 "1_33_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_051_156_087_109_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_33_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_175 gabor_127 gabor_051 gabor_159 gabor_175_alt gabor_127 gabor_051_alt gabor_159 "1_34_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_175_127_051_159_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_111_framed blank blank blank blank fixation_cross_target_position_2_4 "1_34_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 2092 2992 1992 fixation_cross gabor_023 gabor_008 gabor_038 gabor_097 gabor_023 gabor_008_alt gabor_038_alt gabor_097 "1_35_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_023_008_038_097_target_position_1_4_retrieval_position_2" gabor_circ gabor_008_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_35_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_008_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_153 gabor_033 gabor_005 gabor_123 gabor_153_alt gabor_033 gabor_005_alt gabor_123 "1_36_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_153_033_005_123_target_position_2_4_retrieval_position_2" gabor_circ gabor_033_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_36_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_067 gabor_106 gabor_087 gabor_022 gabor_067 gabor_106 gabor_087_alt gabor_022_alt "1_37_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_067_106_087_022_target_position_1_2_retrieval_position_2" gabor_circ gabor_151_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_37_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_048 gabor_134 gabor_165 gabor_028 gabor_048_alt gabor_134 gabor_165_alt gabor_028 "1_38_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_048_134_165_028_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_target_position_2_4 "1_38_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_082 gabor_152 gabor_016 gabor_064 gabor_082 gabor_152_alt gabor_016_alt gabor_064 "1_39_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_082_152_016_064_target_position_1_4_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_39_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_041 gabor_148 gabor_178 gabor_115 gabor_041_alt gabor_148_alt gabor_178 gabor_115 "1_40_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_041_148_178_115_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_178_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_40_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_009 gabor_055 gabor_030 gabor_164 gabor_009_alt gabor_055 gabor_030_alt gabor_164 "1_41_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_009_055_030_164_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_164_framed blank blank blank blank fixation_cross_target_position_2_4 "1_41_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_148 gabor_086 gabor_172 gabor_004 gabor_148_alt gabor_086 gabor_172 gabor_004_alt "1_42_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_148_086_172_004_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_42_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2142 2992 1992 fixation_cross gabor_154 gabor_099 gabor_079 gabor_064 gabor_154_alt gabor_099 gabor_079 gabor_064_alt "1_43_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2000_gabor_patch_orientation_154_099_079_064_target_position_2_3_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_43_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_019_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_035 gabor_014 gabor_146 gabor_179 gabor_035_alt gabor_014 gabor_146 gabor_179_alt "1_44_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_035_014_146_179_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_44_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 2092 2992 2392 fixation_cross gabor_123 gabor_091 gabor_062 gabor_042 gabor_123 gabor_091_alt gabor_062 gabor_042_alt "1_45_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2400_gabor_patch_orientation_123_091_062_042_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_042_framed blank blank blank blank fixation_cross_target_position_1_3 "1_45_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_042_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_075 gabor_130 gabor_162 gabor_105 gabor_075_alt gabor_130 gabor_162_alt gabor_105 "1_46_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_075_130_162_105_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_target_position_2_4 "1_46_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_067 gabor_009 gabor_098 gabor_115 gabor_067_alt gabor_009 gabor_098 gabor_115_alt "1_47_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_067_009_098_115_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_049_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_47_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_114 gabor_147 gabor_042 gabor_058 gabor_114 gabor_147_alt gabor_042_alt gabor_058 "1_48_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_114_147_042_058_target_position_1_4_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_48_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_171 gabor_104 gabor_020 gabor_154 gabor_171_alt gabor_104 gabor_020 gabor_154_alt "1_49_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_171_104_020_154_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_065_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_49_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_094 gabor_023 gabor_173 gabor_128 gabor_094 gabor_023 gabor_173_alt gabor_128_alt "1_50_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_094_023_173_128_target_position_1_2_retrieval_position_1" gabor_046_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_50_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_111 gabor_053 gabor_127 gabor_084 gabor_111 gabor_053 gabor_127_alt gabor_084_alt "1_51_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_111_053_127_084_target_position_1_2_retrieval_position_1" gabor_111_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_51_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_058 gabor_117 gabor_169 gabor_087 gabor_058_alt gabor_117 gabor_169_alt gabor_087 "1_52_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_058_117_169_087_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_136_framed blank blank blank blank fixation_cross_target_position_2_4 "1_52_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 1892 2992 2392 fixation_cross gabor_019 gabor_034 gabor_178 gabor_104 gabor_019 gabor_034_alt gabor_178 gabor_104_alt "1_53_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2400_gabor_patch_orientation_019_034_178_104_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_target_position_1_3 "1_53_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_056_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_039 gabor_129 gabor_105 gabor_088 gabor_039 gabor_129_alt gabor_105 gabor_088_alt "1_54_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_039_129_105_088_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_105_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_54_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1942 2992 2242 fixation_cross gabor_118 gabor_150 gabor_135 gabor_003 gabor_118 gabor_150 gabor_135_alt gabor_003_alt "1_55_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2250_gabor_patch_orientation_118_150_135_003_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_135_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_55_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_135_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_071 gabor_131 gabor_158 gabor_005 gabor_071 gabor_131_alt gabor_158 gabor_005_alt "1_56_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_071_131_158_005_target_position_1_3_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_56_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_020 gabor_174 gabor_094 gabor_037 gabor_020 gabor_174 gabor_094_alt gabor_037_alt "1_57_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_020_174_094_037_target_position_1_2_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_57_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_139 gabor_052 gabor_097 gabor_160 gabor_139 gabor_052_alt gabor_097_alt gabor_160 "1_58_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_139_052_097_160_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_160_framed blank blank blank blank fixation_cross_target_position_1_4 "1_58_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_010 gabor_099 gabor_117 gabor_145 gabor_010 gabor_099 gabor_117_alt gabor_145_alt "1_59_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_010_099_117_145_target_position_1_2_retrieval_position_1" gabor_010_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_59_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_012 gabor_035 gabor_175 gabor_154 gabor_012 gabor_035 gabor_175_alt gabor_154_alt "1_60_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_012_035_175_154_target_position_1_2_retrieval_position_2" gabor_circ gabor_035_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_60_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_122 gabor_083 gabor_172 gabor_049 gabor_122 gabor_083_alt gabor_172 gabor_049_alt "1_61_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_122_083_172_049_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_61_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_045 gabor_072 gabor_161 gabor_127 gabor_045 gabor_072 gabor_161_alt gabor_127_alt "1_62_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_045_072_161_127_target_position_1_2_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_62_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2092 2992 2442 fixation_cross gabor_046 gabor_159 gabor_024 gabor_082 gabor_046 gabor_159_alt gabor_024 gabor_082_alt "1_63_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2450_gabor_patch_orientation_046_159_024_082_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_130_framed blank blank blank blank fixation_cross_target_position_1_3 "1_63_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_130_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1992 2992 2442 fixation_cross gabor_050 gabor_161 gabor_075 gabor_028 gabor_050_alt gabor_161 gabor_075 gabor_028_alt "1_64_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_050_161_075_028_target_position_2_3_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_64_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 1942 2992 1942 fixation_cross gabor_145 gabor_040 gabor_007 gabor_057 gabor_145 gabor_040_alt gabor_007_alt gabor_057 "1_65_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_145_040_007_057_target_position_1_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_65_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_128 gabor_014 gabor_150 gabor_042 gabor_128 gabor_014_alt gabor_150 gabor_042_alt "1_66_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_128_014_150_042_target_position_1_3_retrieval_position_1" gabor_128_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_66_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_095 gabor_015 gabor_070 gabor_179 gabor_095 gabor_015 gabor_070_alt gabor_179_alt "1_67_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_095_015_070_179_target_position_1_2_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_67_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_068 gabor_045 gabor_150 gabor_009 gabor_068 gabor_045 gabor_150_alt gabor_009_alt "1_68_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_068_045_150_009_target_position_1_2_retrieval_position_2" gabor_circ gabor_045_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_68_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_078 gabor_162 gabor_055 gabor_039 gabor_078 gabor_162_alt gabor_055_alt gabor_039 "1_69_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_078_162_055_039_target_position_1_4_retrieval_position_1" gabor_124_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_69_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2042 2992 2592 fixation_cross gabor_063 gabor_095 gabor_153 gabor_024 gabor_063_alt gabor_095_alt gabor_153 gabor_024 "1_70_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2600_gabor_patch_orientation_063_095_153_024_target_position_3_4_retrieval_position_2" gabor_circ gabor_047_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_70_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
0e5e13839e75612413ee156b4362ac43389fb478
449d555969bfd7befe906877abab098c6e63a0e8
/2234/CH1/EX1.8/ex1_8.sce
c8fd8213e80077f9c84aea3cf97dca2411763679
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex1_8.sce
clc; n=12*10^6; //frequency in Hz v=3*10^8; //velocity in m/sec l=v/n; //calculating wavelength disp(l,"Wavelength in m = "); //displaying result
e0c181c7b9bca8a85705a0fa131245d4de24d125
449d555969bfd7befe906877abab098c6e63a0e8
/3682/CH4/EX4.9/Ex4_9.sce
f7d26fe774738ae3d37831ce6506cd84049e55e5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
757
sce
Ex4_9.sce
// Exa 4.9 clc; clear; // Given data // To generate a sinusoidal signal 10 sin 3t. // Solution printf('Let us first obtain a differential equation whose solution is 10 sin 3t.\n'); printf(' Let x(t) = 10 sin 3t ------eq(1)\n'); printf(' The first derivative of this i.e. dx(t) = 30 cos 3t ----eq(2)\n'); printf(' The second derivative of this i.e. d2x(t) = -90 sin 3t = -9*x(t) \n'); printf('\n Therefore, required differential equation is d2x(t)+9*x(t)=0. \n\n'); printf(' The initial condition is obtained by putting t=0 in eq(1&2), \n x(0)=0 and dx(0) = 30. \n' ); printf(' Assuming that d2x(t) is available, x(t) can be obtained by integrating x twice.\n The complete setup is shown in Fig. 4.31-Simulation of 10 sin 3t.\n');
b5826d4b5c4c43623ea3bfa73a5c24d0d680a8df
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH13/EX13.1/CKJ_1.sce
4e138a3ea159d3baadcf53a519a762d342cd2eff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
CKJ_1.sce
//sum 13-1 clc; clear; F=25*10^3; sigat=50; Ta=40; pa=80; d=sqrt((4*F)/(%pi*sigat)); d=26; t=d/4; t=7; d1=1.2*d; d1=32; pc=F/(d1*t); t=10; c=0.75*d; c=20; d2=44; tw=(d2-d1)/2; b=F/(2*t*Ta); b=34; a=0.5*d; d3=(F/(pa*t))+d1; d3=64; e=F/(Ta*(d3-d1)); d4=sqrt((F*4/(%pi*pa))+d1^2); d4=40; f=0.5*d; sigbc=3*F*d3/(t*b^2*4); // printing data in scilab o/p window printf(" d is %0.0f mm ",d); printf("\n d1 is %0.0f mm ",d1); printf("\n d2 is %0.0f mm ",d2); printf("\n d3 is %0.0f mm ",d3); printf("\n d4 is %0.0f mm ",d4); printf("\n sigbc is %0.1f MPa ",sigbc);
070a25537bccbf2f73b431694edfc9b46dd344d0
449d555969bfd7befe906877abab098c6e63a0e8
/2175/CH10/EX10.5/10_5.sce
c7959c4119246a2b716d8aefd86313515cd8ef5a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
343
sce
10_5.sce
clc; h1=2846; h2=2682; x2=0.98; vg=0.6057; v2=x2*vg; C2=[2*(h1-h2)*10^3]^0.5; m=0.1; A2=m*v2*10^6/C2; disp("mm^2",A2,"Exit area is:"); //part II p1=7; p2=3; k=1.3; v1=0.3001; vr=v1*[(p1/p2)^(1/k)]; y=1.3; Cr=[2*(y*10^5)/(y-1)*{(p1*v1)-(p2*vr)}]^0.5; A2=m*vr*10^6/Cr; disp("mm^2",A2,"Exit area in supersaurated case is:")
a5eed20f73582cc74dab83db2324e08c56af9170
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.1.1/Unix/scilab-2.1.1/macros/percent/%rfp.sci
85465b814ee6a9e5159dc806e35d8db0f5960f05
[ "MIT", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
190
sci
%rfp.sci
//[f]=%rfp(f,p) // %rfp(f,p) calcule la concatenation en ligne de la matrice de fractions //rationnelles f avec la matrice de polynomes p [f;p] //! f(3)=[f(3);ones(p)] f(2)=[f(2);p] //end
f56d8112553894141a61508daf6a18d4bb7eab9d
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set10/s_Fiber_Optics_Communication_H._Kolimbiris_2855.zip/Fiber_Optics_Communication_H._Kolimbiris_2855/CH12/EX12.17/Ex12_17.sce
1f201efd36429bf9dc768990231796212f18c837
[]
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
227
sce
Ex12_17.sce
errcatch(-1,"stop");mode(2);//Chapter 12 //page no 486 //given ; all; Ncso=50; a=3.6*10^-3; m=0.05; CSO=10*log10(Ncso*(a*m)^2); printf("\n CSO distortion for 50 channel optical system = %0.1f dB\n",CSO); exit();
f86628306bff40446b346d0c8b9522ad2d2fda2c
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH34/EX34.2/Ex34_2.sce
161b8ab7ab712e1f7458536646e3b8c257df3392
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
97
sce
Ex34_2.sce
clc; //e.g 34.2 LR=1.4*10**-6; VS=10; //LR=VL/VS; VL=LR*VS disp('microV',VL*10**6,"VL=");
af1de2046fc2e42338d3cb24989f114aa8e3ae45
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4/demos/pvm/script.sce
f10f1c4f904f4dad3caa62c9c96ba3e7e6aca3dc
[ "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
388
sce
script.sce
// Copyright INRIA while %t //Infinite loop [buf,info] = pvm_recv(pvm_parent(), -1)//get new variable or instruction if info<0 then break,end if type(buf)==10 then //an instruction if execstr(buf,'errcatch') then break,end//execute it write(%io(2),'Instruction: '+buf+' done') else //a variable %var=buf //preserve it in %var disp('Variable received') end end
7049d8a440c31d7e5195591da5fd1f9d68e49c63
449d555969bfd7befe906877abab098c6e63a0e8
/564/DEPENDENCIES/6_2data.sci
63b8d16e19001d073aa8be6940c9b26ab9bee43d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
79
sci
6_2data.sci
L=10;//in m W=1000;//FORCE ON POINT 2 M=100;//MOMENT ON POINT 2 EI=20000;
91318d988d1e70e7e638e0adcb19873dc348d4f6
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set11/s_Fundamentals_Of_Thermodynamics_B._Claus_And_R._E._Sonntag_172.zip/Fundamentals_Of_Thermodynamics_B._Claus_And_R._E._Sonntag_172/CH2/EX2.1/ex1.sce
b3b69a6ce565fbedbc97ff732eaa7f6a0e20b024
[]
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
213
sce
ex1.sce
errcatch(-1,"stop");mode(2);//example 1 //weight of a person m=1 //kg g=9.75 //acc.due to gravity in m/s^2 F=m*g //weight of 1 kg mass in N printf("\n hence,weight of person is F = %.3f N. \n",F) exit();
cbd4ce21f6036a0126343cd1261cca4b8fc669e9
449d555969bfd7befe906877abab098c6e63a0e8
/1004/CH1/EX1.13/Ch01Ex13.sci
2d8f5123b676ac1270b77092ea8fb3d8b54104d9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sci
Ch01Ex13.sci
// Scilab Code Ex1.13 Velocity of one atomic mass unit: Pg: 24 (2008) c = 1; // For convenience, speed of light is assumed to be unity, m/s m0 = 1; // For convenience, rest mass is assumed to be unity // Here 2*m0*c^2 = m*c^2 - m0*c^2 = KE which gives m = 3*m0; // Atomic mass in motion, kg // As m = m0/sqrt(1 - (v/c)^2), solving for v v = sqrt(1 - (m0/m)^2)*c; // Velocity of one atomic mass, m/s printf("\nThe velocity of one atomic mass = %5.3fc", v); // Result // The velocity of one atomic mass = 0.943c
aaaa56e65ca18a457ca3e3c75aafaf3b6a942120
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH12/EX12.3/Example_12_3.sci
da2fbedc27d4c3a56afccd29d11fccfda258dff8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
919
sci
Example_12_3.sci
clear; clc; printf("\n Example 12.3"); //as the system are dilute mole fractions are approximately equal to mole ratios. //At the bottom of the tower y1 =0.015; //mole fraction G = 1; //Gas flow rate is in kg/m^2sec //At the top of the tower y2 = 0.00015; //mole fraction x2 = 0; L = 1.6; //liquid flow rate is in kg/m^2.sec Lm = 1.6/18; //liquid flow rate is in kmol/m^2.sec Gm = 1.0/29; //gas flow rate is in kmol/m^2.sec x1 = poly([0],'x1'); x11 = roots(Gm*(y1-y2)-Lm*(x1)); printf("\n x1 = %f",x11); function[ye1]=henry_law(x) ye1 = 1.75*x; funcprot(0); endfunction bottom_driving_force = y1 - henry_law(x11); function[lm]=log_mean() lm = (bottom_driving_force-y2)/log(bottom_driving_force/y2); funcprot(0); endfunction NoG = (y1-y2)/log_mean(); NoL = NoG*1.75*(Gm/Lm); printf("\n NoL =%.2f",NoL);
90fc2d9c2a482502da64f9e9cb9f409c01273008
e806e966b06a53388fb300d89534354b222c2cad
/macros/selectStrongestBbox.sci
57c3ac45b51f3d07ad54d96983dd6e39b56aa4c4
[]
no_license
gursimarsingh/FOSSEE_Image_Processing_Toolbox
76c9d524193ade302c48efe11936fe640f4de200
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
refs/heads/master
2021-01-22T02:08:45.870957
2017-01-15T21:26:17
2017-01-15T21:26:17
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,366
sci
selectStrongestBbox.sci
function [selectedBbox,selectedScore,varargout]=selectStrongestBbox(bBox,score,varargin) // Selecting strongest bounding boxes // // Calling Sequence // [selectedBbox, selectedScore]= selectStrongestBbox(bBox,score); // [selectedBbox, selectedScore]= selectStrongestBbox(bBox,score,Name,Value); // [selectedBbox, selectedScore, selectionIndex]= selectStrongestBbox(bBox,score,Name,Value); // // Parameters // bBox: Each row represents one bounding box specified as [x y width height]; // score: Confidence Score of bounding box // varargin: optinal (Name,Value) pair arguments // Optional arguments can be // <itemizedlist> // <listitem><para>RatioType: method to compute the ratio of the intersection area between two boxes and it is specified as string, possile values are 'Union', 'Min' </para></listitem> // <listitem><para>overlapThreshold: It specifies maximum overlap ratio, if overlap ration is more than this corresponding bounding box will be removed, possible range is 0 to 1</para></listitem> // <itemizedlist> // // Description // Returns strongest bounding boxes as per the given RatioType and OverlapThreshold and additionally it returns the index of the selected boxes // // Examples // box(1)=[100 200 150 140]; // box(2)=[100 180 140 160]; // score(1)=0.03; // score(2)=0.05; // [sb ss]=selectStrongestBbox(box,score); [lhs,rhs]=argn(0) if rhs<2 then error(msprintf(" Not enough input arguments")) elseif rhs>6 then error(msprintf(" Too many input arguments to the function")) elseif lhs<2 then error(msprintf(" Not enough output arguments")) elseif lhs>3 then error(msprintf(" Too many output arguments")) end [bBoxRows bBoxCols]=size(bBox); [scoreRows scoreCols]=size(score); if ~bBoxCols==4 then error(msprintf("bounding box matrix must be M*4")) elseif ~scoreCols==1 then error(msprintf(" score matrix must be M*1")) elseif ~bBoxRows==scoreRows then error(msprintf(" The number of bounding boxes and scores should be same")) elseif ~isreal(bBox) error(msprintf(" Wrong input argument,complex matrix is not expected")) end for i=1:bBoxRows if bBox(i,3)<0 | bBox(i,4)<0 error(msprintf(" The width and height of the bounded box must be positive")) end end ratioType=1; overlapThreshold=0.5; for i=1:2:rhs-2 if strcmpi(varargin(i),"RatioType")==0 then i=i+1; if strcmpi(varargin(i),'union')== 0 then ratioType=1;//1-union elseif strcmpi(varargin(i),'min')==0 then ratioType=0;//0-min else error(msprintf(" wrong value for the ratio type,it must be union or min")) end elseif strcmpi(varargin(i),'OverlapThreshold')==0 then i=i+1; if 0<=varargin(i) & varargin(i)<=1 then overlapThreshold=varargin(i) else error(msprintf("wrong value for the overlapThreshold,it must be in between 0 and 1")) end else error(msprintf(_(" Wrong value for input argument"))); end end for i=1:bBoxRows index(i)=i; end score_temp=score(:,1); for i=1:bBoxRows for j=i+1:bBoxRows if score_temp(i,1)<score_temp(j,1) temp=score_temp(i,1); score_temp(i,1)=score_temp(j,1); score_temp(j,1)=temp; temp=index(i); index(i)=index(j); index(j)=temp; end end end bBox_temp=bBox(index,:); selection=ones(size(bBox_temp,1),1); area = bBox_temp(:,3).*bBox_temp(:,4); x1 = bBox_temp(:,1); x2 = bBox_temp(:,1)+bBox_temp(:,3); y1 = bBox_temp(:,2); y2 = bBox_temp(:,2)+bBox_temp(:,4); for i = 1:bBoxRows if selection(i) for j = (i+1):bBoxRows if selection(j) width = min(x2(i), x2(j)) - max(x1(i), x1(j)); height = min(y2(i), y2(j)) - max(y1(i), y1(j)); intersectionArea = width * height; if ratioType overlapRatio = intersectionArea/(area(i)+area(j)-intersectionArea); else overlapRatio = intersectionArea/min(area(i), area(j)); end if overlapRatio > overlapThreshold selection(j) = 0; end end end end end k=1; for i=1:bBoxRows if selection(i) selectionIndex(k)=i; indexOriginal(k)=index(i); k=k+1; end end //disp(indexOriginal); [selectedIndexRows selectedIndexRows]=size(selectionIndex) for i=1:selectedIndexRows for j=i+1:selectedIndexRows if indexOriginal(i)>indexOriginal(j) temp=indexOriginal(i); indexOriginal(i)=indexOriginal(j) indexOriginal(j)=temp; end end end //disp("original indexes"); //disp(indexOriginal); selectedBbox=bBox(indexOriginal,:); selectedScore=score(indexOriginal,:); varargout(1)=indexOriginal; endfunction
daddaf72bdadcec6d6e471c4ea0e0682171b0c06
3fb2b65e8ef9208e822aad35c618441282e08a30
/MetodeNumerik/newton_gregory_maju/newtonGregoryMaju.sci
37189f14446001dfdc3148802660ede2aca98748
[]
no_license
Lukmannudin/TugasKuliah
33031fb4f6ff0ab7a5849cda3ea15330e2527c3f
19738c858dea539f0a5569f27be68b1a56c2aa89
refs/heads/master
2020-03-07T15:49:59.414761
2018-06-09T07:41:39
2018-06-09T07:41:39
127,565,939
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,939
sci
newtonGregoryMaju.sci
function nGregoryMaju(x,fx,xtaksir,jp) //x matriks 1 x n //fx matriks 1 x n i=1;L=0;Lt=0;b=1; [n,m]=size(x); [ny,my]=size(fx); A(m,m)=0;//initialisasi matriks mt=m; j=1;xs=mt; //memasukan nilai fx ke matriks if m==my then if jp~=m-1 then disp ('Polinom berderajat '+string(jp)+' tidak sesuai dengan jumlah titik '+string(m)); else if (xtaksir>x(1,1)) & (xtaksir<x(1,m)) then for i=1:m A(i,1)=fx(1,i); end for i=2:m for j=1:mt-1 A(j,i)=A(j+1,i-1)-A(j,i-1); end, mt= mt-1; end L=0; h=abs(x(1,2)-x(1,1)); //s=(xtaksir-x(1,1))/h; s=(xtaksir-x(1,1))/h; Lt=1; for i=1:m if i<=1 then L=L+A(1,1); else s=(xtaksir-x(1,b))/h; Lt=Lt*s; L=L+(A(1,i)*Lt)/factorial(b); b=b+1; end, end disp(''); printf('Tabel Selisih Maju'); disp(A); hasil=L; disp('nilai taksiran = '+string(hasil)); else disp('x taksir = '+string(xtaksir)+' diluar dari nilai x yang dihitung'); end,// end, else disp('Jumlah data antara x dan f(x) tidak sama'); end//end cek kesesuaian jumlah data x dan f(x) endfunction
0027361f52ebb9b4b5721b9c32ef593dd4b2b7b7
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH8/EX8.9/example8_9.sce
69d5880652667cf7cda0bde91f87a4acfcfddc82
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
715
sce
example8_9.sce
//Chapter 8 //Example 8_9 //Page 177 clear;clc; ins=4; k=1/5; v1=1; v2=v1*(1+k); v3=v1*(1+3*k+k^2); v4=v1*(1+6*k+5*k^2+k^3); v=v1+v2+v3+v4; pv1=v1/v*100; pv2=v2/v*100; pv3=v3/v*100; pv4=v4/v*100; n=v/ins/v4*100; printf("\n(i) V1 = %.2f V \n", v1); printf("V2 = %.2f V \n", v2); printf("V3 = %.2f V \n", v3); printf("V4 = %.2f V \n\n", v4); printf("Voltage across the string = %.2f V \n", v); printf("The voltage across each unit expressed as a percentage becomes: \n"); printf("\t Top unit = %.2f %% \n", pv1); printf("\t Second from top = %.2f %% \n", pv2); printf("\t Third from top = %.2f %% \n", pv3); printf("\t Fourth from top = %.2f %% \n\n", pv4); printf("(ii) String efficiency = %.2f %% \n", n);
93d7b43f18147357f05296d5978884a4efb5f7de
449d555969bfd7befe906877abab098c6e63a0e8
/692/CH2/EX2.27/P2_27.sce
2594690512f08b8adec033b81dc11e66db1b9212
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
463
sce
P2_27.sce
//EXAMPLE 2.27, convolution of an exponential sequence clear; clc; n=0:.5:5 c=0.5; b=0.4; clf(); figure(0); a=gca(); a.x_location="origin"; x = c^n; subplot(2,2,1); plot2d3(n,x,2); plot(n,x,'.r'); xtitle('','n','x'); h = b^n ; subplot(2,2,2); plot2d3(n,h,2) plot(n,h,'.r') xtitle('','n','h'); N=0:.5:10; y = convol (x , h ); subplot(2,2,3); plot2d3(N,y,2) plot(N,y,'.r') xtitle('convol(x,h)' ,'n','y'); disp(y,'Convolution of the two exponential sequences is =')
10865df79aeef13574ea10f940443bceaee606af
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH2/EX2.3/2_3.sce
dcd5cfaff9059e661b3ea4261146a583ed92990b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
382
sce
2_3.sce
//ques-2.3 //Calculating HCV of fuel clc x=0.72;//Weight of fuel (in g) C=80;//Percentage of Carbon t1=27.3;//Initial temperature t2=29.1//Final temperature W=250;//Water of water in calorimeter (in g) w=150;//Water equivalent (in g) HCV=((W+w)*(t2-t1))/x;//HCV of fuel (in kcal/kg) HCV=HCV*4.2;//HCV of fuel (in kJ/kg) printf("The HCV of the fuel is %d kJ/kg.\n",HCV);
4d8ca64ba1fbb96a67d9d30e7e6e5913557b7282
5900f4bae371f44e90fa8de76d746cc470223e04
/src/in_out_functions.sci
78419b7fb0990ae7dc70600989f2c53681daeb4d
[]
no_license
olgerd27/union__gte_reducer_oil
6400148e100224e0c59c4ca807afa5de07ffcb09
be994038b218ba7cac13b59faf2391a8e2bdd861
refs/heads/master
2021-01-10T20:21:06.558271
2014-10-01T06:56:23
2014-10-01T06:56:23
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
9,203
sci
in_out_functions.sci
// Functions for performing the in-, out- operations // ======= DATA READING ======= function [reg_all, dtm_all] = importSteadyPoints(path, dirSep, fileName) //******************************************************* // //******************************************************* filePathName = path + dirSep + fileName; if ~isfile(filePathName) printf("[ERROR]: cannot read the steady mode points data from the file:\n"); printf("\t''%s''\n", filePathName); abort; end data = fscanfMat(filePathName); reg_all = data(:, 1); dtm_all = data(:, 2 : size(data, 'c')); endfunction function resData = getValidData(fileName, initData) //*************************************************************************** // Get a valid data from some archives with an invalid data. * // The problem may to be for example - breaking some sensor. * // * // The knowledge about invalid archives and diapasons of a valid * // data in it was moved from a main function to here, that make it simpler. * // * // IN: fileName - archive file name * // initData - initial data, readed from a archive file * // OUT: resData - result data * //*************************************************************************** // initialization from = 1; to = size(initData, 'r'); // checking archive data if diag_sys == 1 if fileName == 'mo_2012_11_24_8_55_21' from = 1; to = 8750; end elseif diag_sys == 2 if fileName == 'mo_2008_10_27_15_50_49' from = 1; to = 14000; elseif fileName == 'mo_2009_10_20_9_12_49' from = 1; to = 33000; elseif fileName == 'mo_2009_10_21_9_17_55' from = 1; to = 43000; elseif fileName == 'mo_2009_11_23_9_47_4' from = 1; to = 23000; elseif fileName == 'mo_2009_11_21_9_31_4' from = 9000; to = 30000; end end resData = initData(from : to, :); endfunction function resParameters = readParametersData(filePath, dirSep, fileName, fileExt, initParameters) //****************************************************************************************** // Function that reads parameters data from a archive file. * // IN: filePath - path to the archive file * // fileName - archive file name * // fileExt - extention of a archive file * // initParameters - array of initial structures of archives with information * // about parameters * // OUT: resParameters - array of result structures of archives with readed parameters data * //****************************************************************************************** filePathName = filePath + dirSep + fileName + fileExt; if ~isfile(filePathName) printf("[ERROR]: cannot read the data from the archive file:\n"); printf("\t''%s''\n", filePathName); abort; end archiveData = fscanfMat(filePathName); archiveData = getValidData(fileName, archiveData); count_params = size(initParameters, 1); resParameters = initParameters; for i = 1 : count_params resParameters(i).data = archiveData(:, initParameters(i).archIndexStart : initParameters(i).archIndexEnd); end endfunction // ======= OUT RESULTS ======= function saveSteadyPoints(path, dirPath, fileName, reg, dt) //***************************************************** // Save the steady mode points values to a text file * // IN: path - path to the file directory * // fileName - name of the file * // reg - regime parameter data for saving * // dt - 'dt' parameters data for saving * //***************************************************** Ncols = size(dt, 'c'); Nrows = size(dt, 'r'); filePathName = path + dirPath + fileName; if ~isdir(path) createdir(path); else mdelete(filePathName); // delete file with the same name as a current file end f = mopen(filePathName, 'w'); // Write values for i = 1 : Nrows mfprintf(f, "%f ", reg(i)); for j = 1 : Ncols mfprintf(f, "%f ", dt(i, j)); end mfprintf(f, "\n"); end mclose(f); // show info message printf("[INFO]: The steady mode points values was exported to the text file:\n"); printf("\t%s\n", filePathName); endfunction function saveResToGraphicFiles(path_imagesOut, dirSep, calcIdentif, ext_images) //********************************************************************************* // Save results to a graphics file. * // IN: path_imagesOut - path to the out files * // calcIdentif - information about current calculation (identification info) * // ext_images - extention for the graphics files * // OUT: --- * //********************************************************************************* // go into the common directory (dir for saving all images) if(~isdir(path_imagesOut) & ~createdir(path_imagesOut)) printf("[ERROR]: Cannot create the common dir for saving result images:\n\t%s\n", path_imagesOut); abort; end // go into the special directory (dir for current calculation) path_imagesOut = path_imagesOut + dirSep + calcIdentif; if isdir(path_imagesOut) removedir(path_imagesOut); end if(~createdir(path_imagesOut)) printf("[ERROR]: Cannot create the dir for saving result images: %s\n", path_imagesOut); abort; end // save image data printf("[INFO]: Export the results plotted images of the GTE''s oil''s characteristics to the files:\n"); figureIDs = winsid(); if (length(figureIDs) == 0) printf("[ERROR]: Cannot save plotted graphs images to files: no one graph was plotted\n"); abort; end for i = 1 : length(figureIDs) h = scf(figureIDs(i)); exportFileName = h.figure_name + '.' + ext_images; exportFileName = strsubst(exportFileName, ' ', ''); // spaces deleting filePathName = path_imagesOut + dirSep + exportFileName; xs2png(h, filePathName); printf("\t%s\n", filePathName); end endfunction function saveResToTextFile(path, dirSep, fileName, strTitle, strDateTime, powers, .. Ncols, Nrows, .. par_regim_data, par_regim_name, par_oil_data, par_oil_names) //*************************************************************************************************** // Save results to a text file. * // IN: path - path to the out file * // fileName - name of the out file * // strTitle - title string, that writes in the out file with information about current results * // powers - array of the polynomial powers * // Ncols - quantity of the columns of the oil data array (par_oil_data array) * // Nrows - quantity of the rows of the oil data array (par_oil_data array) * // par_regim_data - data of the regime parameter of the result characteristics (X-axes) * // par_regim_name - name of the regime parameter of the result characteristics (X-axes) * // par_oil_data - data of the oil parameters (Y-axes) * // par_oil_names - names of the oil parameters (Y-axes) * // OUT: --- * //*************************************************************************************************** filePathName = path + dirSep + fileName; if ~isdir(path) createdir(path); else mdelete(filePathName); // delete file with the same name as a current file end f = mopen(filePathName, 'w'); mfprintf(f, "The results information: %s\n", strTitle); mfprintf(f, "Date_time: %s\n", strDateTime); mfprintf(f, "The polynomial powers: "); for i = 1 : Ncols mfprintf(f, "%i ", powers(i)); end // Write the parameters names mfprintf(f, "\n\t\t%s ", par_regim_name); for i = 1 : Ncols mfprintf(f, "%s\t\t", par_oil_names(i)); end mfprintf(f, "\n"); // Write values for i = 1 : Nrows mfprintf(f, "%8.2f\t\t", par_regim_data(i)); for j = 1 : Ncols mfprintf(f, "%5.2f\t\t\t", par_oil_data(i, j)); end mfprintf(f, "\n"); end mclose(f); // show info message printf("[INFO]: The results points values was exported to the text file:\n"); printf("\t%s\n", filePathName); endfunction
6172f0395aecc24ef581bc0598d37f2eec8b8fed
449d555969bfd7befe906877abab098c6e63a0e8
/1823/CH2/EX2.1/SolEx2_1.sce
058104539f9106bb2897fcb49bf64d993aea7930
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
305
sce
SolEx2_1.sce
//what range of forward voltage drop vD can (2.1) be approximated //Solved Example Ex2.1 page no 48 clear clc printf("\n what range of forward voltage drop vD can (2.1) be approximated") n=1 k=1.38//x 10^-23 T=25+273 q=1.6//x 10^-19 vd=((k*T)/(1.6*(10^4))*4.6151) printf("\n vd = %0.4f V",vd)
d3c53b0c93be5c20e3ccf6e1dd755750c61a76fa
2f14b5754bf00d8f425d930813ec9fbb37443f20
/if & while.sce
e2d16ad8ef8734085f8a3a201108e1071400a926
[]
no_license
sohamkan/Sci-projects
9f14b01e4937ccf3cf59732fc19d495d566bfaae
5baf7456498ba0075760095655826b7ddcae471e
refs/heads/master
2022-11-22T04:03:53.155413
2020-07-12T04:31:34
2020-07-12T04:31:34
278,990,043
0
0
null
null
null
null
UTF-8
Scilab
false
false
130
sce
if & while.sce
s=0; for i=1:10 s=s+i end disp('s=',s) //while loop d=0; j=1 while j<=10 d=d+j; j=j+1 end disp('d=',d)
1f7051c4fc117b5b69aa5b283067a3c671c288b7
449d555969bfd7befe906877abab098c6e63a0e8
/1478/CH2/EX2.18.39/2_18_39.sce
3845af876db13baed84e2c423bae42d933306907
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
925
sce
2_18_39.sce
//water and its treatment// //example 2.18.39// clc Purity_Lime=.90 Purity_soda=1 W1=136;//amount of CaSO4 in ppm// W2=49;//amount of H2SO4 in ppm// W3=95;//amount of MgCl2 in ppm// W4=60;//amount of MgSO4 in ppm// W5=50;//amount of SiO2 in ppm// M1=100/136;//multiplication factor of CaSO4// M2=100/98;//multiplication factor of H2SO4// M3=100/95;//multiplication factor of MgCl2// M4=100/120//multiplication factor of MgSO4// P1=W1*M1;//in terms of CaCO3//S P2=W2*M2;//in terms of CaCO3//L+S P3=W3*M3;//in terms of CaCO3//S P4=W4*M4;//in terms of CaCO3//S printf ("We do not take SiO2 since it does not react with lime/soda"); V=1000000;//volume of water in litres// L=0.74*(P2)*V/Purity_Lime;//lime required in mg// L=L/10^6; printf("\nQuantity of Lime required is %.2fkg",L); S=1.06*(P1+P3+P4)*V/Purity_soda;//soda required in mg// S=S/10^6; printf("\nQuantity of Soda required is %.0fkg",S)
e4d8e4afc46fa036be5908543408a8a7c74ed477
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/cconv/cconv1.sce
9d1ad44ee8c9c72928423256f8f2aec95e23a79c
[]
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
138
sce
cconv1.sce
//check o/p when a and b are of equal length a = [2 1 2 1]; b = [1 2 3 4]; c = cconv(a,b,4); disp(c); //output //14. 16. 14. 16.
b4d087971f9b62f8cabc9f54408139b59d2bb599
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/goertzel/goertzel1.sce
042e206e545d579bc70e247936fafd2985c12cba
[]
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
160
sce
goertzel1.sce
//i/p arg data is a vector data=[1 2 3 4 6 7 9]; freq_indices = 3; dft_data = goertzel(data,freq_indices); disp(dft_data); //output //- 4.2225209 + 3.5252975i
1e02586f82908b8b69e49e9c3f771bee3cb5b6de
449d555969bfd7befe906877abab098c6e63a0e8
/3012/CH6/EX6.6/Ex6_6.sce
d38d67b96af01181552b98bd33138734faa2f67b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,475
sce
Ex6_6.sce
// Given:- P1 = 30.0 // pressure of steam entering the turbine in bar T1 = 400.0 // temperature of steam entering the turbine in degree celcius V1 = 160.0 // velocity of steam entering the turbine in m/s T2 = 100.0 // temperature of steam exiting in degree celcius V2 = 100.0 // velocity of steam exiting in m/s Wcvdot = 540.0 // work produced by turbine in kJ/kg of steam Tb = 350.0 // temperature of the boundary in kelvin // From table A-4 and table A-2 h1 = 3230.9 // specific enthalpy at entry in Kj/kg h2 = 2676.1 // specific enthalpy at exit in kj/kg // Calculations // Reduction in mass and energy balance equations results in Qcvdot = Wcvdot + (h2 - h1)+ (V2**2-V1**2)/(2*(10**3)) // heat transfer rate // From table A-2 s2 = 7.3549 // in kj/kg.k // From table A-4 s1 = 6.9212 // in kj/kg.k // From entropy and mass balance equations sigmadot = -(Qcvdot/Tb) + (s2-s1) // Results printf( 'The rate at which entropy is produced within the turbine per kg of steam flowing is %.2f kJ/kg.k',sigmadot)
dd8aa325950ff63a32cc32c8c42d5fb3860dc4bc
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH5/EX5.35/example5_35.sce
20a43daedc204aa66ae40802ae7af2b48616e4f7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
592
sce
example5_35.sce
clear; clc; // Stoichiometry // Chapter 5 // Energy Balances // Example 5.35 // Page 273 printf("Example 5.35, Page 273 \n \n"); // solution T2 = 800 T1 = 298.15 fi1 = 3614.577*(T2-T1)+305.561*10^-3*(T2^2-T2^2)/2+836.881*10^-6*(T2^3-T1^3)/3-393.707*10^-9*(T2^4-T1^4)/4 // kW T3 = 875 fi2 = 3480.737*(T3-T1)+754.347*10^-3*(T3^2-T2^2)/2+442.159*10^-6*(T3^3-T1^3)/3-278.735*10^-9*(T3^4-T1^4)/4 // kW Hr = -98910 // kJ/kmol SO2 reacted by eg 5.33 fi3 = (8.8511-.351)*Hr/3600 // kW dH = fi2/3600+fi3-fi1/3600 printf(" Net enthalpy change = "+string(dH)+" kW.")
3bd6c1020a0c107f8862168099c07c16f9f9594b
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH4/EX4.3/EX4_3.sce
f03eceb1b0db551e518dbc0101a04fa621f25bb4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
EX4_3.sce
//Finding of volume and specific gravity //given w=490.5; //In Air in Newton w1=196.2; //In Water in Newton rho=1000; g=9.81; rho1=5000; //To Find wd=w-w1; vd=wd/(rho*g); rho2=(w/g)/vd; spgr=rho1/(rho*3); disp("Volume = "+string(rho2)+" Kg/m^3"); disp("Specific Gravity is= "+string(spgr)+" No units")
50d9239f7f767f01c47aef48db3d4efa67caf70a
449d555969bfd7befe906877abab098c6e63a0e8
/2870/CH12/EX12.11/Ex12_11.sce
76e8d2e8eed4428cde5f0154427fa5fa359bda4b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
907
sce
Ex12_11.sce
clc;clear; //Example 12.11 //given data T1=220; P1=5; T2=300; P2=10; //constants used Ru=8.314;//on kJ/kmol- K //from Table A–1 Tcr=154.8; Pcr=5.08; //calculations //part - a disp('part - a'); //by assuming ideal-gas behavior //from Table A–19 h1=6404; h2=8736; s2=205.213; s1=196.171; h21i=h2-h1;//h2 - h1 ideal s21i=(s2-s1)-Ru*log(P2/P1);//s2 - s1 ideal disp(h21i,'the enthalpy change in kJ/kmol'); disp(s21i,'the entropy change in kJ/kmol-K'); //part - b disp('part - b'); //by accounting for the deviation from ideal-gas behavior TR1=T1/Tcr; Pr1=P1/Pcr; //from the generalized charts at each state Zh1=0.53; Zs1=0.25; TR2=T2/Tcr; Pr2=P2/Pcr; //from the generalized charts at each state Zh2=0.48; Zs2=0.20; h21=h21i-Ru*Tcr*(Zh2-Zh1); s21=s21i-Ru*(Zs2-Zs1); disp(h21,'the enthalpy change in kJ/kmol'); disp(s21,'the entropy change in kJ/kmol-K');
01ddcc00d5ae929cac572d729de9751805c8b29f
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH12/EX12.11/c12_11.sce
12dfd56ac6e2c91b1cc1a620c44225cbc196a45d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,051
sce
c12_11.sce
//(12.11) Moist air at 30C and 50% relative humidity enters a dehumidifier operating at steady state with a volumetric flow rate of 280 m3/min. The moist air passes over a cooling coil and water vapor condenses. Condensate exits the dehumidifier saturated at 10C. Saturated moist air exits in a separate stream at the same temperature. There is no significant loss of energy by heat transfer to the surroundings and pressure remains constant at 1.013 bar. Determine (a) the mass flow rate of the dry air, in kg/min, (b) the rate at which water is condensed, in kg per kg of dry air flowing through the control volume, and (c) the required refrigerating capacity, in tons. //solution //variable initialization T1 = 30 //in degree celcius AV1 = 280 //in m^3/min psi1 = .5 //relative humidity at the inlet T2 = 10 //in degree celcius p = 1.013 //pressure in bar //part(a) //from table A-2 pg1 = .04246 //in bar pv1 = psi1*pg1 //in bar pa1 = p-pv1 //partial pressure of the dry air in bar Rbar = 8314 //universal gas constant Ma = 28.97 //molar mass of air madot = AV1/[(Rbar/Ma)*((T1+273)/(pa1*10^5))] //common mass flow rate of the dry air in kg/min printf('the mass flow rate of the dry air in kg/min is: %f',madot) //part(b) omega1 = .622*[pv1/(p-pv1)] //from table A-2 pv2 = .01228 //in bar omega2 = .622*[pv2/(p-pv2)] mwdotbymadot = omega1-omega2 printf('\n\nthe rate at which water is condensed, in kg per kg of dry air flowing through the control volume is: %f',mwdotbymadot) //part(c) //from table A-2 and A-22 ha2 = 283.1 //in kg/kj ha1 = 303.2 //in kg/kj hg1 = 2556.3 //in kg/kj hg2 = 2519.8 //in kg/kj hf2 = 42.01 //in kg/kj Qcvdot = madot*[(ha2-ha1)-omega1*hg1+omega2*hg2+(omega1-omega2)*hf2] //in kj/min printf('\n\nthe required refrigerating capacity, in tons is: %f',Qcvdot/211)
166e71c17b41459694fb30ff1d78e4991b5662e4
449d555969bfd7befe906877abab098c6e63a0e8
/3547/CH6/EX6.2/EX6_2.sce
07e78b58cc0b8cc96ba9bb4a9e1ea9a7c700a502
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
692
sce
EX6_2.sce
// Example 6.2 // Calculation of the variance of the signal–ASE beat noise // Page no 255 clc; clear; close; //Given data a=1.3*10^-16; // PSD of an amplifier f=7*10^9; // Cut off frequency Pi=10*10^-6; // Input power R=0.8; // Responsivity G=20; // Gain of an amplifier // The variance of the signal–ASE beat noise G=10^(G/10); P=G*Pi; r=4*R^2*P*a*f; r=r*10^9; //Displaying results in the command window printf("\n The variance of the signal–ASE beat noise current is = %0.2f x 10^-9 A^2",r); // The answers vary due to round off error
edce157b26b078d9bb61fefc66c780cc05c0c807
449d555969bfd7befe906877abab098c6e63a0e8
/3763/CH9/EX9.2/Ex9_2.sce
4f653d3a7eee84d46f18e484abe0bae695a39465
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
950
sce
Ex9_2.sce
clear // // // //Variable declaration w=72.6 //atomic weight d=5400 //density(kg/m**3) Na=6.025*10**26 //avagadro number mew_e=0.4 //mobility of electron(m**2/Vs) mew_h=0.2 //mobility of holes(m**2/Vs) e=1.6*10**-19 m=9.108*10**-31 //mass(kg) ni=2.1*10**19 //number of electron hole pairs Eg=0.7 //band gap(eV) k=1.38*10**-23 //boltzmann constant h=6.625*10**-34 //plancks constant T=300 //temperature(K) //Calculation sigmab=ni*e*(mew_e+mew_h) //intrinsic conductivity(ohm-1 m-1) rhob=1/sigmab //resistivity(ohm m) n=Na*d/w //number of germanium atoms per m**3 p=n/10**5 //boron density sigma=p*e*mew_h rho=1/sigma //Result printf("\n intrinsic conductivity is %0.3f *10**4 ohm-1 m-1",sigma/10**4) printf("\n intrinsic resistivity is %0.3f *10**-4 ohm m",rho*10**4) printf("\n answer varies due to rounding off errors") printf("\n number of germanium atoms per m**3 is %0.1f *10**28",n/10**28)
fa2b45a7f2b3175090ebc0314c9a510b9af17c30
449d555969bfd7befe906877abab098c6e63a0e8
/3651/CH3/EX3.1/1.sce
aee0009f7ea64b86b78cc763aa45f073cca34b37
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
1.sce
//Variable declaration N=6.023*10**26 deltaHv=120 B=1.38*10**-23 k=6.023*10**23 //Calculations n0=0 // 0 in denominator n300=N*exp(-deltaHv*10**3/(k*B*300)) //The number of vacancies per kilomole of copper n900=N*exp(-(deltaHv*10**3)/(k*B*900)) //Results printf('at 0K, The number of vacancies per kilomole of copper is %0.3f' ,n0) printf('at 300K, The number of vacancies per kilomole of copper is %0.3f *10**5\n',(n300/10**5)) printf('at 900K, The numb ber of vacancies per kilomole of copper is %0.3f *10**19\n',(n900/10**19))
1930f48795b6c7cfe8c38255cc5084b65ebdc492
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/allpassshiftc/test_2.sce
eeb26215bd55caccffa7e6735e64595fa1f03761
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
153
sce
test_2.sce
// Test # 2 : Excess Input Arguments exec('./allpassshiftc.sci',-1); [n,d]=allpassshiftc(0.3,0.24,0.16); //!--error 58 //Wrong number of input arguments
a1eb8849b9621967d46223f499a6c7ea05161fc8
3fb2b65e8ef9208e822aad35c618441282e08a30
/MetodeNumerik/test1/pertambahan.sci
e1993b18455c0cb3e56a2e2023313f1f6172b26a
[]
no_license
Lukmannudin/TugasKuliah
33031fb4f6ff0ab7a5849cda3ea15330e2527c3f
19738c858dea539f0a5569f27be68b1a56c2aa89
refs/heads/master
2020-03-07T15:49:59.414761
2018-06-09T07:41:39
2018-06-09T07:41:39
127,565,939
0
0
null
null
null
null
UTF-8
Scilab
false
false
68
sci
pertambahan.sci
function T = pertambahan(bil1,bil2); T = bil1+bil2; endfunction
c2407fa6a1b6a8ca3826eaeeb3e269d5e188a1a0
e9d5f5cf984c905c31f197577d633705e835780a
/data_reconciliation/nonlinear/scilab/nonlin_pf88/nonlin_pf88.sce
488b27072e8c9a6288861da450de355c18fee56d
[]
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
3,632
sce
nonlin_pf88.sce
// Data Reconciliation Benchmark Problems From Lietrature Review // Author: Edson Cordeiro do Valle // Contact - edsoncv@{gmail.com}{vrtech.com.br} // Skype: edson.cv //C.C. David Pai, Gary D. Fisher //Application of Broyden's Method to Reconciliation of Nonlinearly Constrained Data // AICHE Journal 1988, V 34 No. 5 -p 873-876 // 8 Variables // 5 Measurements // 3 Unmeasured clear xm var jac nc nv nnzjac nnz_hess sparse_dg sparse_dh lower upper var_lin_type constr_lin_type constr_lhs constr_rhs flow_full flow temp_full temp coef getd('.'); getd('../functions'); // This example from Pai & Fisher is a general non-linearly constrained data reconciliation // measured data // x1 x2 x3 x4 x5 v1 v2 v3 //meas_full = [ 4.4 5.5 1.7 1.6 5 8 0.7 1.8]'; meas_full = [ 9.4 5.5 1.7 1.6 5 8 0.7 1.8]'; // information of measured, unmeasured (-1) or fixed variables // x1 x2 x3 x4 x5 v1 v2 v3 meas = [ 4.4 5.5 1.7 1.6 5 -1 -1 -1]'; xmfull =[meas_full(:)]; xm=xmfull; // the variance var = ones(length(xmfull),1); //The variable classification [At, umeas, fixed] = jac_pf88_residuals(meas_full, meas); [red, just_measured, observ, non_obs, spec_cand] = qrlinclass(At,umeas) // reconcile with all measured to reconcile with only redundant variables, uncomment the "red" assignments measured = setdiff([1:8], umeas); // to reconcile with all variables, uncomment bellow //measured = [1:30]; nmeasured = length(measured); red=measured; // to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters: //WLS = 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 = 0; exec ../functions/setup_DR.sce; // to run robust reconciliation, it is also necessary to choose the function to return the problem structure // return the problem structure (jacobian, hessian, number of non-zeros, variable type, etc) [nc, nv, nnzjac, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = pf_struct_nl(xmfull); params = init_param(); // We use the given Hessian //params = add_param(params,"hessian_constant","yes"); params = add_param(params,"hessian_approximation","exact"); // uncheck bellow to test derivatives params = add_param(params,"derivative_test","second-order"); //params = add_param(params,"derivative_test","first-order"); params = add_param(params,"tol",1e-8); params = add_param(params,"acceptable_tol",1e-8); params = add_param(params,"mu_strategy","monotone"); //params = add_param(params,"mu_strategy","adaptive"); params = add_param(params,"journal_level",5); disp('begore start ipopt') tic // if the user want to use random initial guess, uncomment 2 lines bellow and comment the 3rd line //xrand = rand(30,1); //[x_sol, f_sol, extra] = ipopt(xrand, objfun, gradf, confun, dg1, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params); [x_sol, f_sol, extra] = ipopt(xmfull, objfun, gradf, confun, dg1, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params); toc mprintf("\n\nSolution: , x\n"); for i = 1 : nv mprintf("x[%d] = %e\n", i, x_sol(i)); end mprintf("\n\nObjective value at optimal point\n"); mprintf("f(x*) = %e\n", f_sol);
82f61b36ae8ae1298f33f285455c3f8bd4d239d4
449d555969bfd7befe906877abab098c6e63a0e8
/3750/CH1/EX1.11/Ex1_11.sce
f2d0a5dc6cbc0181de4d1c20d4e3512405d73f34
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,307
sce
Ex1_11.sce
//Strength Of Material By G.H.Ryder //Chapter 1 //Example 11 // To Calculate thermal Stress in rod & tube SteelOD=2.4; //External diameter of steel tube, Unit in cm SteelID=1.8; //Internal diameter of steel tube, Unit in cm CopperDia=1.5; //Diameter of copper rod, unit in mm Es=210,000; //Young's Modulus for steel , Unit in N/mm^2 Ec=100,00; //Young's Modulus for copper , Unit in N/mm^2 alphaS=11e-6; //co-efficient of linear expansion for steel, Unit in perdegreeC alphaC=18e-6; //co-efficient of linear expansion for copper, Unit in perdegreeC AreaSteel=%pi*(SteelOD^2-SteelID^2)/4; //cross section Area of steel tube, Unit in cm^2 AreaCopper=%pi*CopperDia^2/4; //cross section Area of copper bar, Unit in cm^2 //Equillibrium Equation : SigmaC*AreaCopper=SigmaS*AreaSteel Ti=10; //Initial Temperature, Unit in perdegreeC Tf=200;//Final Temperature, Unit in perdegreeC //Compatibility Equation: //alphaC*(Tf-Ti)-SigmaC/Ec=alphaS*(Tf-Ti)-SigmaS/Es SigmaS=(alphaS+alphaC)*(Tf-Ti)/((1/Es)*AreaSteel/(AreaCopper*Ec)); //Stress in steel, Expression from compatability & Equillibrium Equation, Unit in N/mm^2 SigmaC=AreaSteel*SigmaS/AreaCopper; printf("Stress in Copper rod= %f N/mm^2\n",SigmaC) printf("Stress in Steel Tube= %f N/mm^2\n",SigmaS)
c651d1d6e88ee61055e052274b48175c01c01b70
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/RV2.prev.tst
754e257beaa4663ab0770d26b79fed83094c4a9e
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
50
tst
RV2.prev.tst
[1/2,2/3,-1/5] + [1/2,1/3,1/5,7/6] = [1,1,0,7/6]
321fef150c74d4cb68b87a655c12891a19f6977d
449d555969bfd7befe906877abab098c6e63a0e8
/617/CH12/EX12.2/Example12_2.sci
9da1311abe8d347bed262867c48f9bc26a7a5a40
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
838
sci
Example12_2.sci
clc(); clear; // To calculate the heat loss per square foot from an uninsulated 2 inch sch. pipe D=2.375/12; // Outer diameter of pipe in ft k=0.035; // Thermal conductivity in Btu/hr-ft-degF T1=400; // Temperature of pipe in degF T2=70; // Temperature of air in degF delT=T1-T2; // Temperature differnce in degF T2=120; // Assumed temperature in degF h=3.67; // As seen from the table , for delT=330. the value of hc+hr=3.67 q=h*delT; // Heat loss in Btu/hr printf("The heat loss per square foot of pipe is %d Btu/hr-ft",q);
d023c963574209b890308c874a086e4d068f4f62
9cb37875b74a713c93c09fa50ccc70ac0f71ecdb
/Achile/SCENARII/HeraklesNoGraphics.sce
734e248fcd8fb1d1e6a134148ed4995395c4d0aa
[]
no_license
jmainpri/move3d-assets
a5b621daaedaaf8784fed0da1e80d029c83f3983
939db49d17a14e052bb58324b70e6112803d3105
refs/heads/master
2021-01-16T17:48:56.669119
2016-02-16T14:04:09
2016-02-16T14:04:09
20,237,987
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,979
sce
HeraklesNoGraphics.sce
#************************************************************ # Scenario of humanTestEnv # # date : Thu Oct 16 14:15:52 2014 #************************************************************ p3d_sel_desc_name P3D_ENV humanTestEnv p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT VISBALL p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.641000 -0.176000 0.341000 -15.840000 80.172000 -18.720000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_camera_pos 0.000000 0.000000 0.210000 3.324107 5.544436 0.674375 0.000000 0.000000 1.000000 0.000000
1c203fcde6b60aea1cc86e1a564712d6bca4d74e
4441dc11c4d6f31c4af7b75bfa8d842235d74bf3
/enroll2.tst
f1983dac331744e304be6cdf17df6704f4478ead
[]
no_license
asing123/testrep
7b85edbd703daa6ca9c5c7bdcfbaf40d65297b93
0b59fba0c786a4a77b65fb14cba80063ca05d43a
refs/heads/master
2020-06-12T06:58:46.035782
2016-12-05T10:13:19
2016-12-05T10:13:19
75,599,266
0
0
null
null
null
null
UTF-8
Scilab
false
false
47
tst
enroll2.tst
enroll.txt enroll2.tst master.txt test1.txt
328e91c8f6abb2e8ed966110cc671df64f80dea4
5887829f5a0a005033807cf7dc4fb7231eb280ec
/Listing/chapter 5/Listing513.sce
908b3cc1375bf8887c6df2838dee355157210535
[]
no_license
joaolrneto/learning_scilab
78ecc0019f167b57bc35647c4ac785ece01e443e
9624c9a6736860a8a836b0f801256b6224756585
refs/heads/main
2023-03-17T22:17:51.853368
2021-03-15T20:58:34
2021-03-15T20:58:34
344,478,059
0
0
null
null
null
null
UTF-8
Scilab
false
false
53
sce
Listing513.sce
clc clear exec fat.sci; //listing 5.1.2 disp(fat(5))
425929fe3d51939c9dddc0f7b369b8f3d42dc82a
449d555969bfd7befe906877abab098c6e63a0e8
/2219/CH11/EX11.5/Ex11_5.sce
d99a4bfbc80b500f1c4794994600489ebe5fe203
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
682
sce
Ex11_5.sce
// Chapter 11 example 5 //------------------------------------------------------------------------------ clc; clear; // Given data h = 13622; // ht of circular orbit from earth's surface Re = 6378; // Radius of earth in km // Calculations R = Re+h; // Radius of circular orbit pimax = 180 - (2*acos(Re/R))*(180/%pi); // Maximum shadow angle eclipmax_time = (pimax/360)*24; // maximum daily eclipse duration // output mprintf('maximum shadow angle = %3.1f°\n Maximum daily eclipse duration = %3.2f hours',pimax,eclipmax_time); //------------------------------------------------------------------------------
68361e48b04a68cbf2799281944a11d2843d0866
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronic_Devices_T._L._Floyd_61.zip/Electronic_Devices_T._L._Floyd_61/CH6/EX6.2/ex6_2.sce
f3b377ebd0594544a34f5890970df11b0d34f306
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
120
sce
ex6_2.sce
errcatch(-1,"stop");mode(2);//ex6.2 I_E=2*10^-3; r_e=25*10^-3/I_E; disp(r_e,'ac emitter resistance in ohms') exit();
1ccbb593f13b79d6c256adfb70bc29b00710e6b5
449d555969bfd7befe906877abab098c6e63a0e8
/1332/CH16/EX16.4/16_4.sce
d880ae40c8952833b4ffddd24df33ef89fa55557
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,133
sce
16_4.sce
//Example 16.4 //Finite Difference Method //Page no. 582 clc;close;clear; x=0;h=0.25;q=-1;Y(1)=-2;Y(5)=1; printf('\n i\txi\tYi\tpi\tqi\tri\n-----------------------------------------------\n') for i=1:5 r(i)=-x^2 if i>1 & i<5 then printf(' %i\t%g\t%s\t%g\t%i\t%g\n',i-1,x,"?",x,q,r(i)) else printf(' %i\t%g\t%g\t%g\t%i\t%g\n',i-1,x,Y(i),x,q,r(i)) end x=x+h end x=0; printf('-----------------------------------------------\n') for i=1:3 x=x+h for j=1:3 if i==j then A(i,j)=2+h^2*q elseif i<j & abs(i-j)~=2 A(i,j)=-1+h*x/2 elseif i>j & abs(i-j)~=2 A(i,j)=-1-h*x/2 end end if i==3 then B(i)=-h^2*r(i+1)+(-h*x/2+1)*Y(1+2*(i-1)) else B(i)=-h^2*r(i+1)+(h*x/2+1)*Y(1+2*(i-1)) end B(i)=(-1)^(i+1)*B(i) end disp(B,"B =",A,'A = ') y=inv(A)*B for i=1:3 Y(i+1)=y(i) end x=0; disp("The Solution is :",B,"B =",A,'A = ') printf(' x :') for i=1:5 printf('\t %.2f',x) x=x+h end x=0;printf('\n y :'); for i=1:5 printf('\t%.3f',Y(i)) end
d968166b4c2bd7c65d4c39255cf7302375b025d0
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/percent/%sp_c_s.sci
5d8039ef3854b74c8dfbb222703daddf600f7850
[ "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
84
sci
%sp_c_s.sci
function a=%sp_c_s(a,b) // [a b] a sparse b full // Copyright INRIA a=[a sparse(b)]
f399132d0f5dc556c304188dad07d1b1c29cf24f
4b1558e166b13f0e90c889b11ee516e4925626ed
/aula11.sce
35b3edd9d129ecb721c50a29a8d1089e4ea010a3
[]
no_license
dalpendre/EI_matematica_discreta
a4712b5c7ea085eb5238a0e45c89733ba25a64b6
93cf0c75c41a231aadf919293089ce240695bf10
refs/heads/master
2022-08-09T18:27:37.572002
2020-05-21T13:00:22
2020-05-21T13:00:22
254,603,532
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,025
sce
aula11.sce
//Aula 11 function P=Warshall(A) //Devolve a matriz de caminhos de um grafo a partir da sua matriz de adjacências A L = size(A,1); P=A for k=1:L for i=1:L for j=1:L P(i,j)=P(i,j)|(P(i,k)&P(k,j)); end end disp('Matriz P na iterada k='+string(k)) end endfunction /*A=[0 0 0 0 0 1 0 0;0 0 0 0 1 1 0 0;0 0 0 1 0 0 1 0;0 0 0 0 0 0 0 1;0 0 1 0 0 0 0 0;0 0 0 0 0 0 1 0;0 1 0 1 0 0 0 0;0 0 0 0 0 0 1 0]*/ A=[1 1 0 0;1 0 0 1;0 1 0 0;1 0 1 0] Warshall(A) //------------------- //infinito no scilab --> %inf //Ficha 7 ex2 function [Q,M]=Warshall_MIN(W) //determinar a matriz de custo mínimo Q e também a matriz com a indicação dos caminhos de custo mínimo M a partir da matriz de pesos W L=size(W,1) Q=W; for i=1:L for j=1:L if Q(i,j) == %inf M(i,j)='-'; else M(i,j)=string(i)+string(j) end end end endfunction
17af64ffb97cb33ac280c2ba573d395aea6c1c58
a7d00bed2ef58474b2748a5ba69d7f7c1711e8b6
/test_first_class_functions.tst
8d39e82952be4e96b3cd1236856ea51ca3f28f7b
[]
no_license
andars/test-lang
be2ef3895698b10eaec056f323cf0b5c01546175
7321b307b60ad7d8289934c6cea4080aa59594ad
refs/heads/master
2016-09-06T00:40:05.683201
2015-10-15T06:55:13
2015-10-15T06:55:13
26,514,515
0
0
null
null
null
null
UTF-8
Scilab
false
false
69
tst
test_first_class_functions.tst
function high(x) function f(y) 3+y end end puts(high(3)(2))
9b1aa569233e3c5646963f39cd031e1d97003455
9733f939913e963ec556f5f89248dacb75801a8d
/scilab/sunspot_unipolarfield1.sci
9d85e14134e8b4fdf56164c375151eec8486eda0
[]
no_license
mikeg64/solar
4546c0182bb7f7cde21bc7f102e659ff7a488ad8
46ab043441a4f2523daa7cfaf5008c959f61d7d6
refs/heads/master
2023-08-22T04:29:33.974673
2023-08-19T09:19:40
2023-08-19T09:19:40
17,345,330
1
0
null
null
null
null
UTF-8
Scilab
false
false
453
sci
sunspot_unipolarfield1.sci
m=.05; //m=%pi.*a.^2.*I/c ring current I radius a len=1.0; b0=1.0; x=0:0.05:1.0; y=0.1:0.1:2.0; [X,Y]=meshgrid(x,y); bx=b0*cos(%pi*X./len).*exp(-%pi*Y./len); by=-b0*sin(%pi*X./len).*exp(-%pi*Y./len); bmag=sqrt(bx.^2+by.^2); //contour(x,y,bmag',[0.005 0.006 0.007 0.008 0.009 0.01 0.05 0.1 0.15 0.2 0.25 0.3 .35 .4 .45 2]); contour(x,y,bmag',5) //hold on //quiver(X(8:20,:),Y(8:20,:),bx(8:20,:),by(8:20,:),3); //hold off