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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3ff664199d0a68dd7be5d99ec9e345fe271de3b7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2084/CH12/EX12.18w/12_18w.sce
|
268c9d7ad86e423b455c67bbea0ecbcea9b46b30
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 645
|
sce
|
12_18w.sce
|
//developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 12.18w
//calculation of the time period of small oscillation about the point of suspension
//given data
l=1//length(in m) of the stick
d=40*10^-2//distance(in m) of the centre from point of suspension
g=10//gravitational acceleration(in m/s^2) of the earth
//calculation
//moment of inertia.....I = (m*l*l/12) + (m*d*d)
//time period...........T=2*%pi*sqrt(I/m*g*d)
//solving the above equations,we get
T=2*%pi*sqrt(((l*l/12)+(d*d))/(g*d))
printf('the time period of small oscillation about the point of suspension is %3.2f s',T)
|
f959bd3d68cf48c99232aa0f69b854650519d868
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1223/CH13/EX13.12/Ex13_12.sce
|
448cd70ce7ae9bf1a29f5c55ac5a7427a493c846
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 245
|
sce
|
Ex13_12.sce
|
clear;
clc;
//Example 13.12
Kp=0.6;
bn=200;
Va=50;
Vt=0.026;
Ic13=0.20;
Ri2=bn*Vt/Ic13;
printf('\ninput resistance to the gain stage=%.2f KOhm\n',Ri2)
Iq5=Ic13;
Ad=sqrt(2*Kp*Iq5)*Ri2;
printf('\nsmall signal voltage gain=%.2f\n',Ad)
|
5fea97b4db13cd0250ebc59ef2a1787ecab6f260
|
481f3317298608c37d4cb96f148faf5068d712bb
|
/lib/scilab/getDirectRealizationCoeffs.sci
|
a629b823452e06bddfbd07c1b0066b4b7ec86362
|
[] |
no_license
|
masilvabustos/xcos2uc
|
1f83c0710da6506cec8c8aad5a97848903f6ad32
|
531c35a53b7efc11e69e98c643ebad3df3d362f5
|
refs/heads/master
| 2020-04-05T22:41:50.570623
| 2016-11-13T18:18:22
| 2016-11-13T18:18:22
| 22,852,879
| 1
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 706
|
sci
|
getDirectRealizationCoeffs.sci
|
function [forward_coeff, feedback_coeff] = getDirectRealizationCoeffs(f)
d = coeff(f.den)
a = zeros(1, length(d))
for i=1:length(a)
a(i) = d(length(d)-i+1)
end
c = coeff(f.num)
n = length(a) - 1
m = length(c) - 1
b = zeros(1, length(a))
for k = 0:m
b(n-m+k+1) = c(m-k+1)
end
forward_coeff = zeros(1, m+1)
feedback_coeff = zeros(1, n+1)
for i = 1:length(forward_coeff)
forward_coeff(i) = b(i)/a(1)
end
feedback_coeff(1) = 1/a(1)
for i = 2:length(feedback_coeff)
feedback_coeff(i) = -a(i)/a(1)
end
disp(forward_coeff)
disp(feedback_coeff)
endfunction
|
67288205f5368f7f088723ea2518cc4b897fdad5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/575/CH3/EX3.4.2/3_4_2.sce
|
73b1f4cdde9e4d5ed4928185fa445253c0c90957
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 175
|
sce
|
3_4_2.sce
|
clc
pathname=get_absolute_file_path('3_4_2.sce')
filename=pathname+filesep()+'342.sci'
exec(filename)
Ph=P0+D*g*h
printf("Pressure at the bottom of the lake=%E N/m^2",Ph)
|
16e3ac34fc3e82eb651f63bd2be70b246e383b28
|
286a3b61feec58c992ceda8f1ce28b8e4db5caf5
|
/courbes_surfaces/tp5/scilab/util.sce
|
3b0e6d10ddcd61449cded0944f9f52ff0377f759
|
[] |
no_license
|
confiture/M2
|
970865ab3a52c5c65a84637f987dc27d6485542d
|
e95ca27c1eccd36337348ff042b8db144c08f0d5
|
refs/heads/master
| 2021-01-22T07:32:37.900029
| 2017-11-06T13:07:58
| 2017-11-06T13:07:58
| 1,020,201
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 3,262
|
sce
|
util.sce
|
//////////////////////////////////////////////////////////////////////////////
// entrée d'un ensemble de points à la souris, le nombre de points devant
// entre supérieur ou égal à nbpts_mini (par défaut 1)
// en sortie, le tableau X avec p points du plan (dimensions 2 x p)
function [L] = inputpoly()
// cr�ation d'une fenetre pour la saisie des points
f=figure(); // une nouvelle fenetre
f.background=8;
set(gca(),"auto_clear","off")
set(gca(),"data_bounds",[0,0;100,100]) // bornes des axes en x et y
set(gca(),"margins",[0.05,0.05,0.05,0.05]) // marges du repere dans la fenetre
set(gca(),"axes_visible",["on","on","on"]) // afficher les axes
set(gca(),"box","on")
set(gca(),"auto_scale","off")
// boucle de saisie des points
but = 3;
i = 0;
while but==3 | but==0 | but==10 | but==20
xinfo("Point suivant : bouton gauche - Dernier point : bouton droite");
i = i+1;
[but,v0,v1] = xclick();
X(1,i) = v0;
X(2,i) = v1;
plot(X(1,i),X(2,i),"go")
if i>=2 then
plot(X(1,i-1:i),X(2,i-1:i),"g-")
end
L(1:2,i)=X(:,i)
end;
endfunction
//////////////////////////////////////////////////////////////////////////////
// entr�e d'un
// en sortie, le tableau X avec p points du plan (dimensions 2 x p)
function [L] = inputpoly_rat()
L=[]
// cr�ation d'une fenetre pour la saisie des points
f=figure(); // une nouvelle fenetre
f.background=8;
set(gca(),"auto_clear","off")
set(gca(),"data_bounds",[0,0;100,100]) // bornes des axes en x et y
set(gca(),"margins",[0.05,0.05,0.05,0.05]) // marges du repere dans la fenetre
set(gca(),"axes_visible",["on","on","on"]) // afficher les axes
set(gca(),"box","on")
set(gca(),"auto_scale","off")
// boucle de saisie des points
but = 3;
i = 0;
while but==3 | but==0 | but==10 | but==20
xinfo("Point suivant : bouton gauche - Dernier point : bouton droite");
i = i+1;
[but,v0,v1] = xclick();
X(1,i) = v0;
X(2,i) = v1;
plot(X(1,i),X(2,i),"go")
if i>=2 then
plot(X(1,i-1:i),X(2,i-1:i),"g-")
end
L(1:2,i)=X(:,i)
end;
//les poids en
for i=1:size(L,2)
mprintf("poids points numéro %i : ",i)
L(3,i)=mscanf("%f");
end
endfunction
function ecrit_poly_rat(nom_f,L)
fid = mopen(nom_f, 'w');
mfprintf(fid,"%d\n",size(L,2))
for i=1:size(L,2)
mfprintf(fid,"%f %f %f ",L(1,i),L(2,i),L(3,i))
end
mclose(fid)
endfunction
function creer_fig_b()
f = figure();
set(f,"background",8); // fond en blanc
set(f,"axes_size",[500 500]);
a=gca();
a.isoview="on"
set(a,"auto_clear","off")
set(a,"data_bounds",[0,0;100,100]) // bornes des axes en x et y
set(a,"margins",[0.05,0.05,0.05,0.05]) // marges du repère dans la fenetre
set(a,"axes_visible",["on","on","on"]) // afficher les axes
set(a,"box","on")
set(a,"auto_scale","off")
endfunction
function creer_fig_iso()
f = figure();
set(f,"background",8); // fond en blanc
set(f,"axes_size",[500 500]);
a=gca();
a.isoview="on"
set(a,"margins",[0.05,0.05,0.05,0.05]) // marges du repère dans la fenetre
set(a,"axes_visible",["on","on","on"]) // afficher les axes
set(a,"box","on")
endfunction
|
4dc7c2d997803c433cbc17fb315b2168184e2d2a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3574/CH5/EX5.18/EX5_18.sce
|
4d5a3b81055b9d8a2a22442cfec6edf66f4da2d3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,625
|
sce
|
EX5_18.sce
|
// Example 5.18
// Computation of (a) Locked rotor torque and the expected average in rush
// current (b) Repeat part (a) assuming motor is started at reduced voltage
// with 65% tap (c) In rush line current line current when starting at reduced
// voltage
// Page No. 231
clc;
clear all;
close;
// Given data
P=125; // Rated Voltage
n=1141; // Speed of machine
hp=125; // Horsepower rating of device
Vline=460; // Line voltage
ns=1200; // Stator speed
s=0.125; // Slip
ILS=683; // Current at low side
// (a) Locked rotor torque and the expected average in rush current
Trated=P*5252/(n); // Rated torque
Tlr=1.25*Trated; // Locked rotor torque
kVA=(6.3+7.1)/2;
Ilr=(kVA*1000*hp)/(Vline*sqrt(3)); // In-rush current
// (b) Locked rotor torque and the expected average in rush current when motor
// is started at reduced voltage
V2=0.65*Vline; // Voltage impressed across the stator
I=Ilr*0.65; // Average in-rush current
T2=Tlr*(V2/Vline)^2; // Locked rotor toreque
nr=ns*(1-s);
// (c) In rush line current line current when starting at reduced voltage
a=1/0.65; // Bank ratio of autotransformer
IHS=ILS/a;
// Display result on command window
printf("\n Locked rotor torque = %0.1f lb-ft ",Tlr);
printf("\n Expected average in-rush current = %0.0f A ",Ilr);
printf("\n Locked rotor torque when motor is started at reduced voltage = %0.1f lb-ft ",T2);
printf("\n In-rush line current = %0.0f A",IHS);
|
fb4bc1027ed9be4a0ccee61099adb4c3e9d67a88
|
c87a44be475d3008f7d0fcb8dd2eac3b2fa78e94
|
/Examples/Chapter_1/Example1_7.sce
|
77cf5cc73f72d92514a184586c3d230e9c2a45e1
|
[] |
no_license
|
Echeban/icmd3e
|
6c766ffafab0137a64de46448879d8a9eed2903c
|
6ca0273e322fa390fcabc66669f3f56c9af5a563
|
refs/heads/master
| 2020-03-27T09:08:47.798549
| 2018-08-27T15:45:44
| 2018-08-27T15:45:44
| 146,316,991
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 335
|
sce
|
Example1_7.sce
|
// Example 1.7 Scilab
//[P,Q]=cdfnor("PQ",X,Mean,Std)
//X=cdfnor("X",Mean,Std,P,Q)
//Mean=cdfnor("Mean",Std,P,Q,X)
//Std=cdfnor("Std",P,Q,X,Mean)
mode(0);format(7);
Q = 0.95
muF = 65.5;//MPa
vF = 14.47;//MPa
//
COV = vF/muF
P = 1-Q
z = cdfnor("X",0,1,P,Q)
phi = 1 + z * COV
fp = phi * muF
fp = cdfnor("X",muF,vF,P,Q)
|
182344b1f50221f0ad6aca4343880ca28bf7d7db
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1535/CH15/EX15.4/Ch15Ex4.sci
|
0d2a6a57efe771ed0a6d400f23c5c91b097fb6c0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 779
|
sci
|
Ch15Ex4.sci
|
// Scilab Code Ex15.4: Page-323 (2010)
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
N = 6.02e+023; // Avogadro's number, per mol
T = 0.05; // Temperature of Cu, K
E_F = 7; // Fermi energy of Cu, eV
k = 1.38e-023; // Boltzmann constant, J/K
h = 6.626e-034; // Planck's constant, Js
theta_D = 348; // Debye temperature of Cu, K
C_e = %pi^2*N*k^2*T/(2*E_F*e); // Electronic heat capacity of Cu, J/mol/K
C_V = 12/5*%pi^4*N*k*(T/theta_D)^3; // Lattice heat capacity of Cu, J/mol/K
printf("\nThe electronic heat capacity of Cu = %4.2e J/mol/K", C_e);
printf("\nThe lattice heat capacity of Cu = %4.2e J/mol/K", C_V);
// Result
// The electronic heat capacity of Cu = 2.53e-005 J/mol/K
// The lattice heat capacity of Cu = 5.76e-009 J/mol/K
|
2143c54c60b010e009e71708d0521eb662ac04c1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/608/CH16/EX16.12/16_12.sce
|
3f5bbe10c0c0bb02a45f00957459a3ba677129fb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,399
|
sce
|
16_12.sce
|
//Problem 16.12: A motor has an output of 4.8 kW, an efficiency of 80% and a power factor of 0.625 lagging when operated from a 240 V, 50 Hz supply. It is required to improve the power factor to 0.95 lagging by connecting a capacitor in parallel with the motor. Determine (a) the current taken by the motor, (b) the supply current after power factor correction, (c) the current taken by the capacitor, (d) the capacitance of the capacitor, and (e) the kvar rating of the capacitor.
//initializing the variables:
Pout = 4800; // in Watt
eff = 0.8;// effficiency
f = 50; // in ohm
V = 240; // in Volts
pf1 = 0.625// power factor
pf2 = 0.95// power factor
//calculation:
Pin = Pout/eff
Im = Pin/(V*pf1)
phi1 = acos(pf1)
phi1d = phi1*180/%pi
//When a capacitor C is connected in parallel with the motor a current Ic flows which leads V by 90°.
phi2 = acos(pf2)
phi2d = phi2*180/%pi
Imh = Im*cos(phi1)
//Ih = I*cos(phi2)
Ih = Imh
I = Ih/cos(phi2)
Imv = Im*sin(phi1)
Iv = I*sin(phi2)
Ic = Imv - Iv
C = Ic/(2*%pi*f*V)
kvar = V*Ic/1000
printf("\n\n Result \n\n")
printf("\n (a)current taken by the motor, Im = %.0f A",Im)
printf("\n (b)supply current after p.f. correction, I = %.2f A ",I)
printf("\n (c)magnitude of the capacitor current Ic = %.0f A",Ic)
printf("\n (d)capacitance, C = %.0f μF ",(C/1E-6))
printf("\n (d)kvar rating of the capacitor = %.2f kvar ",kvar)
|
1d879e7b5d6a3623e01cc7e1b7664e51193d4b59
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2144/CH2/EX2.10/exa_2_10.sce
|
e40e44475eb5adad3c69a11ac2ec6e3287f3f5b0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 638
|
sce
|
exa_2_10.sce
|
// Example 2.10
clc;
clear;
close;
// Given data
MR= 8314.2;// in J/kg-mole-K
mass= 44;// Molecular mass of carbon dioxide in kg
R= MR/mass;// in J/kg-K
P= 11;// in MPa
P=P*10^6;// in Pa
V= 50*10^-3;// in m^3
T= 18+273;// in K
// Formula P*V= m*R*T
m= P*V/(R*T);// in kg
m=round(m);// in kg
MolecularVolume= MR*T/P;// in m^3
D= m/V;// density of the gas in kg/m^3
SpecificVolume= 1/D;// in m^3/kg
disp(m,"The mass of the gas in kg is : ")
disp(MolecularVolume,"The Molecular volume in m^3 is : ")
disp(D,"The density of the gas in kg/m^3 is : ")
disp(SpecificVolume,"The specific volume of the gas in m^3/kg is : ")
|
c819b1d4a056d4722c899d500f6271828df30275
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1844/CH4/EX4.6/4Q6.sce
|
b2beeef696c414f59c527c520a8ed4ca32527aad
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 244
|
sce
|
4Q6.sce
|
clc
B= 90 //from diagram in degrees
BC=200 // in m
CD=BC/cosd(60) // in m from triangle BCD
CE=BC/cosd(45) // in m from triangle BCE
BE=BC*tand(45) // in m
printf('CD = %f m\n',CD)
printf(' CE = %f m\n',CE)
printf(' BE = %f m',BE)
|
fc0522b3edbf8432f2e3010a4bf00a400985960e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/257/CH9/EX9.21/example_9_21.sce
|
49be780178adacecebd5ca0024fea8d656f4fce1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 111
|
sce
|
example_9_21.sce
|
//given characteristic equation s^3 + 9*s^2 +k*s + k
s=%s
sys=syslin('c',(s+1)*k/((s+9)*(s^2)))
evans(sys)
|
3f7158a4764036ba8db8ad857570c0feb5742cdb
|
297167ef7b1096bb96307c42b917aab97eb8e95e
|
/ParadigmFiles/reversal_learning.sce
|
fc39879a50273da0fa7706b5bfa77996184e69b5
|
[] |
no_license
|
ryoiwata/reversal_learning
|
c9f32b5c461a7ba2a5a0b87d2633473f41daf99e
|
d4b473466c27b0c34a7cf776a7f508086cb85a81
|
refs/heads/main
| 2023-08-22T14:25:29.856821
| 2021-09-27T22:36:09
| 2021-09-27T22:36:09
| 406,506,059
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 30,483
|
sce
|
reversal_learning.sce
|
####
# Reversal Learning Task
# v1 -- Created on August 8th, 2019 by Paul Keselman
# v2 -- Modified on September 5th, 2019 by Paul Keselman
# - Added a fixation cross between trials
# - Added the ability to change image positions between
# ver1: (upper left + lower right) & ver2: (lower left + upper right).
# the test version is recordded in the saved data file.
# - Added Instruction screens for PreTest2 and Task
# - In demo mode, each screen is now advanced with a spacebar
# v3 -- Modified on September 17th, 2019 by Paul Keselman
# - Changed wording on the PreTest1, PreTest2 and Task instructions
# - Added confirmation screen after the subject information is entered.
# The administrator is also informed if SubjectID, Visit# and Run#
# already exists.
# - Added coin drop animation for correct responses
# - Added custom logging. Depending on the task the log file will have
# the following name:
# TestPrefix_subjectIDxVisit#_Run#_TestVersion_YYYYMMDDhhmmss.txt
# where TestPrefix is either PRLpre1, PRLpre2 or PRL and TestVersion
# is either ver1 or ver2.
#
#####
### Scenario Parameters ###
no_logfile = true;
active_buttons = 3;
button_codes = 1,2,3; # Left, Right, Spacebar
response_matching = simple_matching;
default_background_color = 205,205,205;
default_text_color = 0,0,0;
default_font_size = 40;
### Progam Paramters ###
# Edit program paramteres below the line "Begin PCL"
#------------------------------ Begin SDL ------------------------------#
begin;
### Pictures and text objects shared between trial slides ###
bitmap {
filename = ""; preload = false; # Set in PCL
width = 200; height = 200;
} Image1;
bitmap {
filename = ""; preload = false; # Set in PCL
width = 200; height = 200;
} Image2;
bitmap {
filename = "Sack_1.jpg";
width = 200; height = 200;
} RewardImage;
bitmap {
filename = "Coin.png";
width = 85; height = 85;
transparent_color = 0,0,0;
} CoinImage;
bitmap {
filename = ""; preload = false;# Set in PCL
width = 100; height = 100;
transparent_color = 255,255,255;
} FeedbackImage;
text {
caption = "0";
font_size = 50;
} RewardText;
text {
caption = "";
font_size = 50;
} FeedbackText;
line_graphic {
line_color = 28,46,237;
line_width = 5;
coordinates = -110, -110, -110, 110, 110, 110, 110, -110, -110, -110;
} ResponseBox;
picture {
text {caption = " ";} PromptQuestionText;
x = 0; y = 200;
text {caption = " ";} PromptAnswerText;
x = 0; y = 0;
} PromptPic;
picture {
bitmap Image1;
x = 0; y = 0; # Set in PCL
bitmap Image2;
x = 0; y = 0; # Set in PCL
} ImagesPic;
picture {
bitmap RewardImage;
x = 0; y = 0; # Set in PCL
text RewardText;
x = 0; y = 0; # Set in PCL
} RewardPic;
### Trials ###
# Wait
trial {
trial_duration = 1;
picture {
text {
caption = "Please wait...";
};
x = 0; y = 0;
};
} Wait;
# Ready screen
trial {
trial_duration = forever;
trial_type = correct_response;
picture {
text {
caption = "Ready (press Spacebar to begin)";
};
x = 0; y = 0;
};
target_button = 3;
} ReadyScreen;
# Instruction screen
trial {
trial_duration = 1; # set in PCL
trial_type = fixed;
picture {
text {
caption = ""; # set in PCL
} InstructionsText;
x = 0; y = 0;
};
} InstructionsScreen;
# Task
trial {
trial_duration = 1; # Set in PCL
trial_type = first_response;
stimulus_event {
picture {
bitmap Image1;
x = 0; y = 0; # Set in PCL
bitmap Image2;
x = 0; y = 0; # Set in PCL
bitmap RewardImage;
x = 0; y = 0; # Set in PCL
text RewardText;
x = 0; y = 0; # Set in PCL
} TrialPic;
target_button = 1;
response_active = true;
code = "Trial";
} TrialEvent;
} Trial;
# Fixation cross
trial {
trial_duration = 1; # Set in PCL
trial_type = fixed;
picture {
text {
formatted_text = true;
caption = "<b>+</b>";
font_size = 80;
};
x = 0; y = 0; # Set in PCL
bitmap RewardImage;
x = 0; y = 0; # Set in PCL
text RewardText;
x = 0; y = 0; # Set in PCL
} FixationPic;
} Fixation;
# Response feedback
trial {
trial_duration = 1; # Set in PCL
trial_type = fixed;
picture {
bitmap Image1;
x = 0; y = 0; # Set in PCL
bitmap Image2;
x = 0; y = 0; # Set in PCL
bitmap RewardImage;
x = 0; y = 0; # Set in PCL
text RewardText;
x = 0; y = 0; # Set in PCL
line_graphic ResponseBox;
x = 0; y = 0; # Set in PCL
#text FeedbackText;
bitmap FeedbackImage;
x = 0; y = 0; # Set in PCL
} FeedbackPic;
code = "Feedback";
} Feedback;
# No responce feedback
trial {
trial_duration = 1; # Set in PCL
trial_type = fixed;
picture {
text {
caption = "Please Respond!";
font_size = 50;
} PleaseRespondText;
x = 0; y = 0;
};
code = "PleaseRespond";
} PleaseRespond;
#------------------------------ Begin PCL ------------------------------#
begin_pcl;
### Instructions for Setting Paramters ###
# Experiment Type (Demo, PreTest1, PreTest2, Task)
# Number of blocks
# Number of trials per block (each number must be 3 or greater)
# Feeedback accuracy per block
# Realistically, when the number of trials is large > 40, this number should be between 0.7 and 0.8,
# otherwise the criteria placed on the trials make it impossible to generate a "random" array in a
# reasonable amount of time. Setting the value to 1.0 (no randomness) is ok.
# Pass criteria for each block (number of correct responses in each block to advance to the next block)
# Ex. 1 - for a pass criteria of 8 out of 10, enter {8,10}
# Ex. 2 - for a pass creteria of 12 out of 12 (or 12 in a row), enter {12,12}
# Durations [ms]
# duration for instructions (Not used in Task)
# maximum duration of each trial
# duration of the ITI fixation cross
# duration of the feedback
# duration of the "Please Respond" feedback
string experiment_type = "Task";
int num_blocks = 2;
array <int> num_trials[num_blocks] = {50,50};
array <double> feedback_accuracy[num_blocks] = {0.8, 0.8};
array <int> pass_criteria[num_blocks][2] = {{8,10},{8,10}};
int instructions_duration = 2500;
int trial_duration = 2500;
int fixation_duration = 500;
int feedback_duration = 1000;
int please_respond_duration = 1000;
string version = "ver1"; # ver1 (upper left + lower right) or ver2 (lower left + upper right) image positions
### Program Start -- Do not edit below this line ###
### Initialize varables ###
string input = "";
string subj_id_str = "";
string subj_visit_str = "";
string subj_run_str = "";
# Set input and output folders
string input_images_foldername = stimulus_directory + "\\" + "Pictures";
string output_foldername = stimulus_directory + "\\" + "Data_Files";
# initialize output file and filename
output_file data_file = new output_file;
string output_filename = "";
string output_filename_prefix = "";
# Define object positions
array <int> image1_position[2] = {0, 0}; # set below according to version
array <int> image2_position[2] = {0, 0}; # set below according to version
array <int> feedback_text_position[2] = {0, 0}; # set below according to version
array <int> fixation_position[2] = {-200, 0};
array <int> reward_bag_position[2] = {400, -200};
array <int> reward_text_position[2] = {400, -220};
### Subroutines ###
# Subroutine to collect subject info
sub collect_subj_info
begin
system_keyboard.set_delimiter('\n');
system_keyboard.set_max_length(5);
# Collect Subject ID
PromptQuestionText.set_caption("Subject ID (5000 - 6000):");
PromptQuestionText.redraw();
loop until false begin
input = system_keyboard.get_input(PromptPic, PromptAnswerText);
if (int(input) >= 1 && int(input) <= 50000) then
subj_id_str = input;
break;
end;
end;
# Collect Subject Visit
PromptQuestionText.set_caption("Visit (1 - 100):");
PromptQuestionText.redraw();
loop until false begin
input = system_keyboard.get_input(PromptPic, PromptAnswerText);
if (int(input) >= 1 && int(input) <= 100) then
subj_visit_str = input;
break;
end;
end;
# Collect Subject Run
PromptQuestionText.set_caption("Run (1 - 10):");
PromptQuestionText.redraw();
loop until false begin
input = system_keyboard.get_input(PromptPic, PromptAnswerText);
if (int(input) >= 1 && int(input) <= 10) then
subj_run_str = input;
break;
end;
end;
end;
# Subroutine to check if subject already exists
sub bool check_data_files
begin
bool subj_data_accepted = true;
string entered_subj_info = output_filename_prefix + "_" + subj_id_str + "x" + subj_visit_str + "_" + subj_run_str;
string str = "";
array<string> data_files[0];
get_directory_files(output_foldername, data_files);
loop
int ii=1;
string filename;
array<string> fileparts_arr[0];
string existing_subj_info = "" ;
until ii > data_files.count()
begin
filename = data_files[ii];
filename.split("\\", fileparts_arr);
filename = fileparts_arr[fileparts_arr.count()];
filename.split("_", fileparts_arr);
# Look at (prefix)_(subjectidxvisit#)_(run#)
existing_subj_info = fileparts_arr[1] + "_" + fileparts_arr[2] + "_" + fileparts_arr[3];
if existing_subj_info == entered_subj_info then
subj_data_accepted = false;
break;
end;
ii = ii + 1;
end;
system_keyboard.set_delimiter('\n');
system_keyboard.set_max_length(1);
if !subj_data_accepted then
str = "The following subject data already exists!\n\n";
else
str = "You have entered:\n\n";
end;
str = str + " Subject ID: " + subj_id_str + "\n" +
" Visit: " + subj_visit_str + "\n" +
" Run: " + subj_run_str + "\n\n\n" +
"Press 'y' to continue or 'n' to re-enter information.";
PromptQuestionText.set_caption(str);
PromptQuestionText.set_align(PromptQuestionText.ALIGN_LEFT);
PromptPic.set_part_y(1, -30);
PromptQuestionText.redraw();
loop until false begin
input = system_keyboard.get_input(PromptPic, PromptAnswerText);
if input == "y" then
subj_data_accepted = true;
break;
elseif input == "n" then
subj_data_accepted = false;
break;
end;
end;
# Reset text position
PromptPic.set_part_y(1, 200);
return subj_data_accepted;
end;
# Subroutine to confirm subject info
# Subroutine to add all elements of an array btw the specified indicies
sub int int_sum( array<int,1>& arr, int start_idx, int end_idx ) begin
int sum = 0;
if start_idx > arr.count() then
start_idx = arr.count();
end;
if end_idx > arr.count() then
end_idx = arr.count();
end;
loop int i = start_idx; until i > end_idx
begin
sum = sum + arr[i];
i = i + 1;
end;
return sum
end;
# Subroutine to generate the feedback array (w/ accuracy defined by acc) of size n for block b.
sub array <int,1> gen_trial_feedback_array(int arr_size, double acc, int b) begin
# Initialize array
array <int> arr[0];
int n = arr_size;
# If acc = 1, arr is all 1s
if acc == 1 then
arr.resize(arr_size);
arr.fill(1, arr_size, 1, 0);
return arr;
end;
# Generate array satisfying certain conditions
loop bool pass_fail = false; until pass_fail
begin
# Reset the array and pass_fail variable
arr.resize(0);
pass_fail = true;
# Set the first 3 elements to 1
if arr_size >= 3 then
arr.add(1);
arr.add(1);
arr.add(1);
end;
n = arr_size - 3;
# Set the 4th element to 0 (Only if b = 2)
if arr_size >= 4 && b == 2 then
arr.add(0);
n = n - 1;
end;
# Generate the rest of the array of 1s (80%) and 0s (20%)
loop int i = 1; double rand; until i > n
begin
rand = random();
if rand < acc then
arr.add(1);
else
arr.add(0);
end;
i = i + 1;
end;
# Check if there are exactly 2 0s in the first 10 elements
if arr.count() >= 10 then
if int_sum(arr, 1, 10) != 8 then
pass_fail = false;
end;
end;
loop int i = 1; until !pass_fail || i > arr.count()
begin
# Check that there are no consecutive 0s
if i >= 2 then
if arr[i-1] == 0 && arr[i] == 0 then
pass_fail = false;
end;
end;
# Check that there are no more than 5 consecutive 1s
if i >= 6 then
if arr[i-5] == 1 && arr[i-4] == 1 && arr[i-3] == 1 && arr[i-2] == 1 && arr[i-1] == 1 && arr[i] == 1 then
pass_fail = false;
end;
end;
# Check if in a set of 7 elements there are no more than 2 0s
if i >= 7 then
if int_sum(arr, i-6, i) < 5 then
pass_fail = false;
end;
end;
# Check if in a set of 16 elements there are between 11 and 13 1s
if i >= 16 then
if int_sum(arr, i-15, i) < 11 || int_sum(arr, i-15, i) > 13 then
pass_fail = false;
end;
end;
i = i + 1;
end;
end;
return arr;
end;
# Subroutine to choose a random picture from a folder
sub set_random_image(string foldername) begin
array <string> image_filenames[0];
get_directory_files(foldername, image_filenames);
image_filenames.shuffle();
Image1.set_filename(image_filenames[1]);
Image2.set_filename(image_filenames[1]);
Image1.load();
Image2.load();
end;
# Subroutine to choose target_button (1 or 2)
sub int set_random_side begin
double rand = random();
int side = 0;
if rand < 0.5 then
side = 1;
else
side = 2;
end;
return side;
end;
# Subroutine to set feedback text
sub set_feedback_text(int hit_miss, int score) begin
if hit_miss == 1 then
FeedbackImage.set_filename("GreenCheckmark.png");
else
FeedbackImage.set_filename("RedX.png");
end;
FeedbackImage.load();
RewardText.set_caption(string(score));
RewardText.redraw();
end;
# Subroutine to set feedback side (1 - upper left, 2 - lower right)
sub set_feedback_side(int side) begin
if side == 1 then
FeedbackPic.set_part_x(5, image1_position[1]);
FeedbackPic.set_part_y(5, image1_position[2]);
elseif side == 2 then
FeedbackPic.set_part_x(5, image2_position[1]);
FeedbackPic.set_part_y(5, image2_position[2]);
end;
end;
# Subroutine to reverse side
sub int reverse_side(int side) begin
int new_side = 0;
if side == 1 then
new_side = 2;
elseif side == 2 then
new_side = 1;
end;
return new_side;
end;
# Subroutine to write last response to the log file
sub log_data(int trial_num, int block_num, string trial_type, int feedbk_acc, int target_pos, stimulus_data stm_data) begin
string resp_type = "";
if stm_data.type() == stimulus_hit then
resp_type = "correct";
elseif stm_data.type() == stimulus_incorrect then
resp_type = "incorrect";
elseif stm_data.type() == stimulus_miss then
resp_type = "miss";
end;
string feedbk_type = "";
if feedbk_acc == 1 then
feedbk_type = "acc";
elseif feedbk_acc == 0 then
feedbk_type = "inacc";
end;
data_file.open_append(output_filename);
# print data, subjID, Visit#, run# and test version
data_file.print(date_time("yyyymmdd") + "\t" + subj_id_str + "\t" + subj_visit_str + "\t" + subj_run_str + "\t" + version + "\t");
# print trial#, trial type, feedback given (1 or 0)
data_file.print(string(trial_num) + "\t" + trial_type + "\t" + feedbk_type + "\t");
# print target position, user response, response accuracy
data_file.print(string(target_pos) + "\t" + string(stm_data.button()) + "\t" + resp_type + "\t");
# print reaction time, test_version (image locations)
data_file.print(string(stm_data.reaction_time()) + "\n");
data_file.close();
end;
# Subroutine for coin drop feedback
sub coin_drop_feedback(int duration) begin
int tic = 0;
int toc = 0;
int start_pos_y = reward_bag_position[2] + 200;
int move_dist = 4;
tic = clock.time();
Feedback.set_duration(1);
FeedbackPic.add_part(CoinImage, reward_bag_position[1], start_pos_y);
loop int ii = 1; until ii > 25
begin
FeedbackPic.set_part_y(7, start_pos_y - ii*move_dist);
Feedback.present();
ii = ii + 1;
end;
FeedbackPic.remove_part(7);
toc = clock.time() - tic;
if duration - toc > 0 then
Feedback.set_duration(duration - toc);
else
Feedback.set_duration(forever);
end;
Feedback.present();
Feedback.set_duration(duration);
end;
# Subroutine to present the demonstration video
sub present_demo begin
# Disable buttons
response_manager.set_button_active(1, false);
response_manager.set_button_active(2, false);
# Set durations and type
InstructionsScreen.set_duration(forever);
InstructionsScreen.set_type(first_response);
Trial.set_duration(forever);
Trial.set_type(first_response);
Fixation.set_duration(forever);
Fixation.set_type(first_response);
Feedback.set_duration(forever);
Feedback.set_type(first_response);
# reset the trial parameters
int side = set_random_side();
set_feedback_side(side);
set_random_image(input_images_foldername);
set_feedback_text(1,0);
# Present 1st trial
InstructionsText.set_caption("Choose the animal in the correct location");
InstructionsText.redraw();
InstructionsScreen.present();
Trial.present();
set_feedback_text(1, 10); # correct feedback, score of +10
coin_drop_feedback(forever);
Fixation.present();
# Present 2nd trial
InstructionsText.set_caption("Continue choosing the animal in the correct location");
InstructionsText.redraw();
InstructionsScreen.present();
Trial.present();
set_feedback_text(1, 20); # correct feedback, score increases to +20
coin_drop_feedback(forever);
Fixation.present();
# Present 3rd trial
side = reverse_side(side);
set_feedback_side(side);
InstructionsScreen.present();
Trial.present();
set_feedback_text(0, 20); # incorrect feedback, score remains at +20
Feedback.present();
Fixation.present();
# Present 4th trial
side = reverse_side(side);
set_feedback_side(side);
InstructionsScreen.present();
Trial.present();
set_feedback_text(1, 30); # correct feedback, score increases to +30
coin_drop_feedback(forever);
# Re-enable buttons
response_manager.set_button_active(1, true);
response_manager.set_button_active(2, true);
end;
sub present_pretest2_demo(int side) begin
# reset buttons
response_manager.set_button_active(1, false);
response_manager.set_button_active(2, false);
response_manager.set_button_active(3, true);
# set Trial duration
InstructionsScreen.set_duration(forever);
InstructionsScreen.set_type(first_response);
Trial.set_duration(forever);
Trial.set_type(first_response);
Fixation.set_duration(forever);
Fixation.set_type(first_response);
Feedback.set_duration(forever);
Feedback.set_type(first_response);
# Present Instructions
InstructionsText.set_caption("Let's review. Please watch the following.");
InstructionsText.redraw();
InstructionsScreen.present();
# reset the score
set_feedback_text(1,0);
# Set side (passed into the subroutine)
set_feedback_side(side);
## Present Trial 1
Trial.present();
set_feedback_text(1, 10); # Correct, increment score to 10 points
coin_drop_feedback(forever);
InstructionsText.set_caption("I got points! I want to get as many points as possible.\nLet's me try that animal again.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 2
Trial.present();
set_feedback_text(1, 20); # Correct, increment score to 20 points
coin_drop_feedback(forever);
InstructionsText.set_caption("More points! Let's try that animal again.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 3
Trial.present();
set_feedback_text(0, 20); # Incorrect, score remains at 20 points
Feedback.present();
InstructionsText.set_caption("I didn’t get points this time.\nThe correct location is USUALLY correct.\nLet's try the other location.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 4
side = reverse_side(side);
set_feedback_side(side);
Trial.present();
set_feedback_text(0, 20); # Incorrect, score remains at 20 points
Feedback.present();
InstructionsText.set_caption("Still no points.\nLet's go back to the location that gave me more points.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 5
side = reverse_side(side);
set_feedback_side(side);
Trial.present();
set_feedback_text(1, 30); # Correct, increment score to 30 points
coin_drop_feedback(forever);
InstructionsText.set_caption("I got points! Let's pick this location again.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 6
Trial.present();
set_feedback_text(1, 40); # Correct, increment score to 40 points
coin_drop_feedback(forever);
InstructionsText.set_caption("I got points! Let's pick this location again.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 7
Trial.present();
set_feedback_text(1, 50); # Correct, increment score to 40 points
coin_drop_feedback(forever);
InstructionsText.set_caption("I got points! Let's pick this location again.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 8
Trial.present();
set_feedback_text(0, 50); # Incorrect, score remains at 50 points
Feedback.present();
InstructionsText.set_caption("I didn’t get points this time.\nThe correct location is USUALLY correct.\nLet's try the same location again.");
InstructionsText.redraw();
InstructionsScreen.present();
Fixation.present();
## Present Trial 9
Trial.present();
set_feedback_text(1, 60); # Correct, increment score to 60 points
coin_drop_feedback(forever);
## Present Instructions
InstructionsText.set_caption("Now you try");
InstructionsText.redraw();
InstructionsScreen.present();
# Reset Trial duration
InstructionsScreen.set_duration(instructions_duration);
InstructionsScreen.set_type(fixed);
Trial.set_duration(trial_duration);
Trial.set_type(first_response);
Fixation.set_duration(fixation_duration);
Fixation.set_type(fixed);
Feedback.set_duration(feedback_duration);
Feedback.set_type(fixed);
# Re-enable response buttons
response_manager.set_button_active(1, true);
response_manager.set_button_active(2, true);
response_manager.set_button_active(3, false);
# Reset score feedback text
set_feedback_text(1, 0);
end;
# Subroutine to present Task
sub present_task begin
# Initialize variables
int score = 0;
int trial_target_button = 0;
# Determine the feedback accuracy arrays (this migh take a few seconds)
Wait.present();
array <int> arr[0];
array <int> feedback_accuracy_array[0][0];
loop int b = 1; until b > num_blocks
begin
arr.resize(num_trials[b]);
arr = gen_trial_feedback_array(num_trials[b], feedback_accuracy[b], b);
feedback_accuracy_array.add(arr);
b = b + 1;
end;
ReadyScreen.present();
response_manager.set_button_active(3, false);
# Set slide durations
InstructionsScreen.set_duration(instructions_duration);
Fixation.set_duration(fixation_duration);
Trial.set_duration(trial_duration);
Feedback.set_duration(feedback_duration);
PleaseRespond.set_duration(please_respond_duration);
# Randomly choose a picture for the experiment
set_random_image(input_images_foldername);
# Start block loop
loop
int b = 1;
string trial_type = "";
array <int> resp_arr[0];
bool pass_criteria_reached = false;
until b > num_blocks
begin
term.print("Starting block #: ");
term.print_line(b);
# Reset pass criteria
pass_criteria_reached = false;
# Set trial_target_button. Reverse side for block 2, unless running PreTest2.
if b == 1 then
trial_target_button = set_random_side();
trial_type = "acquisition";
else
if experiment_type != "PreTest2" then
trial_target_button = reverse_side(trial_target_button);
trial_type = "reversal";
end;
end;
TrialEvent.set_target_button(trial_target_button);
# Initialize response array
resp_arr.resize(num_trials[b]);
resp_arr.fill(1, num_trials[b], 0, 0);
# Present Instructions
if b == 1 then
if experiment_type == "PreTest1" then
InstructionsText.set_caption("Choose the animal in the correct location");
elseif experiment_type == "PreTest2" then
InstructionsText.set_caption("Choose the animal USUALLY in the correct location");
elseif experiment_type == "Task" then
InstructionsText.set_caption("Choose the animal USUALLY in the correct location");
end;
InstructionsText.redraw();
InstructionsScreen.present();
end;
# Loop through the trials
loop int t = 1; until t > num_trials[b]
begin
# Present trial
Trial.present();
# Check the response
stimulus_data last = stimulus_manager.last_stimulus_data();
# Present feedback
if last.type() == stimulus_miss then
PleaseRespond.present();
else
# Highlight the picture corresponding to the response
set_feedback_side(last.button());
# record response (set to 0 initially)
if last.type() == stimulus_hit then
resp_arr[t] = 1;
end;
# Display feedback and award points
if last.type() == stimulus_hit && feedback_accuracy_array[b][t] == 1 then
score = score + 10;
set_feedback_text(1, score);
coin_drop_feedback(feedback_duration);
else
set_feedback_text(0, score);
Feedback.present();
end;
# Present Fixation cross
Fixation.present();
end;
# Log data
log_data(t, b, trial_type, feedback_accuracy_array[b][t], trial_target_button, last);
# Decide whether to end the block
if t >= pass_criteria[b][2] then
if int_sum(resp_arr, t - pass_criteria[b][2] + 1, t) >= pass_criteria[b][1] then
term.print("Pass criterial reached at trial #: ");
term.print_line(t);
t = num_trials[b];
pass_criteria_reached = true;
end;
end;
# Repeat the trial if there was no response
if last.type() == stimulus_miss then
t = t - 1;
end;
t = t + 1;
end;
# For PreTest2 decide whether to present a demonstration after block 1 and repeat
if experiment_type == "PreTest2" && b == 1 then
if !pass_criteria_reached then
present_pretest2_demo(trial_target_button);
# Reset score
score = 0;
set_feedback_text(1, score);
else
b = num_blocks;
end;
end;
b = b + 1;
end;
# Present final instructions. Pressing any response button or spacebar will exit the experiment.
response_manager.set_button_active(3, true);
InstructionsScreen.set_duration(forever);
InstructionsScreen.set_type(first_response);
InstructionsText.set_caption();
InstructionsText.redraw();
InstructionsScreen.present();
end;
### Start ###
# Set Image locations
if version == "ver1" then
image1_position = {-400, 200};
image2_position = {0, -200};
feedback_text_position = {0, 200};
elseif version == "ver2" then
image1_position = {-400, -200};
image2_position = {0, 200};
feedback_text_position = {0, -200};
else
term.print_line("Undefined Test Version. Must be ver1 or ver2.");
exit();
end;
# Set positions for Trial trial
TrialPic.set_part_x(1, image1_position[1]);
TrialPic.set_part_y(1, image1_position[2]);
TrialPic.set_part_x(2, image2_position[1]);
TrialPic.set_part_y(2, image2_position[2]);
TrialPic.set_part_x(3, reward_bag_position[1]);
TrialPic.set_part_y(3, reward_bag_position[2]);
TrialPic.set_part_x(4, reward_text_position[1]);
TrialPic.set_part_y(4, reward_text_position[2]);
# Set positions for Fixation trial
FixationPic.set_part_x(1, fixation_position[1]);
FixationPic.set_part_y(1, fixation_position[2]);
FixationPic.set_part_x(2, reward_bag_position[1]);
FixationPic.set_part_y(2, reward_bag_position[2]);
FixationPic.set_part_x(3, reward_text_position[1]);
FixationPic.set_part_y(3, reward_text_position[2]);
# Set positions for Feedback trial
FeedbackPic.set_part_x(1, image1_position[1]);
FeedbackPic.set_part_y(1, image1_position[2]);
FeedbackPic.set_part_x(2, image2_position[1]);
FeedbackPic.set_part_y(2, image2_position[2]);
FeedbackPic.set_part_x(3, reward_bag_position[1]);
FeedbackPic.set_part_y(3, reward_bag_position[2]);
FeedbackPic.set_part_x(4, reward_text_position[1]);
FeedbackPic.set_part_y(4, reward_text_position[2]);
FeedbackPic.set_part_x(6, feedback_text_position[1]);
FeedbackPic.set_part_y(6, feedback_text_position[2]);
# Set output filename
if experiment_type == "PreTest1" then
output_filename_prefix = "PRLpre1";
elseif experiment_type == "PreTest2" then
output_filename_prefix = "PRLpre2";
elseif experiment_type == "Task" then
output_filename_prefix = "PRL";
end;
# Collect Subject Info
bool subj_data_accepted = false;
string temp_prefix = "";
loop until subj_data_accepted begin
collect_subj_info();
subj_data_accepted = check_data_files();
end;
# Create a data_file
if experiment_type == "PreTest1" || experiment_type == "PreTest2" || experiment_type == "Task" then
output_filename = output_foldername + "\\" + output_filename_prefix + "_" + subj_id_str + "x" + subj_visit_str + "_";
output_filename = output_filename + subj_run_str + "_" + version + "_" + date_time("yyyymmddhhnnss") + ".txt";
data_file.open(output_filename);
data_file.print("Date" + "\t" + "SubjectID" + "\t" + "Visit#" + "\t" + "Run#" + "\t" + "TestVersion" + "\t");
data_file.print("Trial#" + "\t" + "TrialType" + "\t" + "Feedback" + "\t" + "TargetPosition" + "\t");
data_file.print("Response" + "\t" + "Correct" + "\t" + "ResponseTime" + "\n");
data_file.close();
end;
# Run Experiment
if experiment_type == "Demo" then
present_demo();
elseif experiment_type == "PreTest1" then
present_task();
elseif experiment_type == "PreTest2" then
present_task();
elseif experiment_type == "Task" then
present_task();
end;
|
31a8b901e8acb3f270526288c4c28d2757862306
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/998/CH29/EX29.108/Ex108.sce
|
f67542a150106c94ac1f9954ef053502804af948
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Ex108.sce
|
//Ex:108
clc;
clear;
close;
g_gc=10^(50/10);
a_c=4.5;// coverage angle in degree
a_b=17.34;// beam angle in degree
g_sb=g_gc*(a_b/a_c)^2;
printf("The gain of spot beam antenna=%f db", 10*log(g_sb)/log(10));
|
2e9d19e13e2c1c0da0c6ebe7c0426333f29d3dd1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2780/CH7/EX7.26/Ex7_26.sce
|
8e9c2fc23cb894f9602f27413bb44440dfd7e6cb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 607
|
sce
|
Ex7_26.sce
|
clc
//to calculate probability
x1=0.45 //x1=0.45*L
x2=0.55 //x2=0.55*L
n=1 //for ground state
//formula is P=integrate('(2/L)*sin(n*%pi*x)^2),'x',x1,x2)
P1=integrate('2*(sin(n*%pi*x)^2)','x',x1,x2)
disp("P1="+string(P1)+"unitless")
probability1=P1*100
disp("probability for the ground states is probability1 ="+string(probability1)+"%")
n=2 //for first excited state
P2=integrate('2*(sin(n*%pi*x)^2)','x',x1,x2)
disp("P2="+string(P2)+"unitless")
probability2=P2*100
disp("probability for first excited states is probability2="+string(probability2)+"%")
|
dfb042faeb660dd86eb4e39ab4c161e9ef120d5c
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set12/s_Higher_Engineering_Mathematics_B._S._Grewal_149.zip/Higher_Engineering_Mathematics_B._S._Grewal_149/CH9/EX9.1/example1.sce
|
71c9229bffbd96f287991cc20946a9ac0bb038f3
|
[] |
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
| 106
|
sce
|
example1.sce
|
errcatch(-1,"stop");mode(2);
syms n;
f=((1/n)^2-2*(1/n))/(3*(1/n)^2+(1/n))
disp(limit(f,n,0));
exit();
|
c59fdefcd3eb8de344442cc24a372893d5338ecd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1964/CH12/EX12.7/ex12_7.sce
|
6dc1715bc77ee2fa04eb11190a8f0030006a6206
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 923
|
sce
|
ex12_7.sce
|
//Chapter-12, Example 12.7, Page 346
//=============================================================================
clc
clear
//INPUT DATA
V=230;//AC supply voltage
f=50;//frequency in Hz
noofturns=4;//noofturns ratio
Rl=600;//load resistance in ohms
//CALCULATIONS
Vrms=(V/4);//rms value of secondary voltage in V
Vm=sqrt(2)*(Vrms);//max value of secondary voltage
Vdc=(2*Vm)/(%pi);//DC output voltage
Pdc=(Vdc)^2/(Rl);//DC power in W
PIV=Vm;//PIV across each diode in V
f0=2*f;//output frequency in Hz
mprintf("Thus DC output voltage,DC power,PIV and output frequency are %1.0f V,%1.3f W,%2.1f V and %d hz respectively",Vdc,Pdc,PIV,f0);
//note:in given problem,Rl is 600 ohms,but in textbook calculations Rl taken is 1000 ohms,I took Rl as 600 ohms
//=================================END OF PROGRAM======================================================================================================
|
1b965dd122a539a82adfb45c61c2c11ea0d1c1c2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/317/CH21/EX21.1/example1.sce
|
092213d47a39adbe704545bdc74de97da932517b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 557
|
sce
|
example1.sce
|
// find voltage gain ,cutoff frequency
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 21-1, page 806
clear;clc; close;
// Given data
R1=10^3;// in ohms
R2=39*10^3;// in ohms
R3=12*10^3;// in ohms
C1=680*10^-12;// capacitance in faraday
// Calculations
Av=(R2/R1)+1;// voltage gain
fc=1/(2*%pi*R3*C1);// cutoff frequency in hertz
disp(Av,"Voltage gain=")
disp("Hertz",fc,"cutoff frequency=")
// Result
// voltage gain is 40
// cutoff frequency is 19.5 KHertz
|
0ff10833071bddbc258f216a43b5f2091917f2a5
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.2/macros/scicos/IFTHEL_f.sci
|
df72c63d5b3df0bc700d0b70659c5a51926aa9ef
|
[
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 829
|
sci
|
IFTHEL_f.sci
|
function [x,y,typ]=IFTHEL_f(job,arg1,arg2)
x=[];y=[];typ=[]
select job
case 'plot' then
standard_draw(arg1)
[graphics,model]=arg1(2:3); [orig,sz,orient,label]=graphics(1:4)
xstringb(orig(1),orig(2),['If in>=0';' ';' then else'],sz(1),sz(2),'fill')
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1;
graphics=arg1(2);label=graphics(4)
model=arg1(3);z0=model(7);nin=model(2);
while %t do
[ok,label]=getvalue('Set parameters',..
['Block label'],..
list('str',1),[label])
if ~ok then break,end
graphics(4)=label;
x(2)=graphics;
break
end
case 'define' then
model=list('ifthel',1,0,1,2,[],[],[],[],'d',%f,[%t %f])
x=standard_define([3 3],model)
end
|
aad726bdad52cbfad054143239fed0de050f750b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/416/CH2/EX2.11/exp2_11c.sce
|
71996281206eb9e5ebeeb6c5ffeeca909b7b31a2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 459
|
sce
|
exp2_11c.sce
|
clc
disp("example 2.11")
p1=10;p2=6;p3=8;p4=7 //peak demands of 4 areas
df=1.5;lf=0.65;imdp=0.6;//diversity factor ;annual load factor ;ratio of maximum demand
p=p1+p2+p3+p4
md=p/df
ae=md*lf*8760
imd=imdp*md
ic=md+imd
printf(" sum of maximum=%dMW",p)
printf("\n maximum demand = sum of max.demands/diversity factor =%d/%f = %fMW",p,df,md)
printf("\n annual energy =%fMWh \n increase in maximum demand =%fMW \n installed capacity =%fMW",ae,imd,ic)
|
856797eb6cef2ac5668e3929c9a4b568a827cace
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3769/CH27/EX27.4/Ex27_4.sce
|
47d2cbc36ede8a0377b5636d6095987f40046e49
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 227
|
sce
|
Ex27_4.sce
|
clear
//Given
N=10.0
V=230 //V
//Calculation
//
Vrpm=sqrt(2)*V
Vsm=Vrpm/N
Vdc=Vsm/%pi
//Result
printf("\n (i) The output dc voltage is %0.2f V",Vdc)
printf("\n (ii) Peak inverse voltage is %0.2f V",Vsm)
|
b913f92841d5b2693311d36593419595f7256c32
|
a8592d34f144b71794ebf30f1c2a1b5faf0b053c
|
/ODE/scilab/bvp2_shoot_secant.sce
|
cdcf641680d9c97dcaf0bed46265729e5fb0d587
|
[] |
no_license
|
f-fathurrahman/ffr-MetodeNumerik
|
ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327
|
e3a9da224c0fd5b32e671708e890018a3c4104c4
|
refs/heads/master
| 2023-07-19T22:29:38.810143
| 2023-07-07T10:02:34
| 2023-07-07T10:02:34
| 107,272,110
| 2
| 2
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,376
|
sce
|
bvp2_shoot_secant.sce
|
function [t,x] = bvp2_shoot_secant(f,t0,tf,x0,xf,N,tol,kmax)
// To solve BVP2: [x1,x2]’ = f(t,x1,x2) with x1(t0) = x0, x1(tf) = xf
if ~exists("kmax","local")
kmax = 10
end
if ~exists("tol","local")
tol = 1e-8
end
if ~exists("N","local")
N = 100
end
dx0(1) = (xf - x0)/(tf - t0) // the initial guess of x'(t0)
printf("Initial guess of dx(t0) = %f\n", dx0(1))
[t,x] = ode_RK4(f,[t0 tf],[x0 dx0(1)],N)
// clf()
// plot(t,x(:,1))
// //set( gca(), "data_bounds", [0,1,0.2,0.45] )
// orig_data_bounds = get( gca(), "data_bounds" )
// //disp(orig_data_bounds)
// xs2png(gcf(),"TEMP_shoot_0.png")
e(1) = x(N+1,1) - xf
dx0(2) = dx0(1) - 0.1*sign(e(1))
for k = 2:kmax-1
[t,x] = ode_RK4(f,[t0 tf],[x0 dx0(k)],N)
//clf()
//plot(t,x(:,1))
//set(gca(), "data_bounds", orig_data_bounds)
//xs2png(gcf(),"TEMP_shoot_" + string(k) + '.png')
//difference between the resulting final value and the target one
e(k) = x(N+1,1) - xf
printf("iter = %d, error = %18.10f\n", k, e(k))
ddx = dx0(k) - dx0(k - 1)
if abs(e(k))< tol | abs(ddx) < tol
break
end
deddx = (e(k) - e(k - 1))/ddx // the gradient of mismatching error
dx0(k+1) = dx0(k) - e(k)/deddx // move by secant method
end
Nk = length(dx0)
printf("Final dx0 = %18.10f\n",dx0(Nk))
endfunction
|
49a1b97bfca948d36244bcda0f27326605b8390c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1040/CH6/EX6.1.b/Chapter6_Ex1_b.sce
|
ce57ebe0fdea84df14c0a1b4776cda1079f20f5a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,216
|
sce
|
Chapter6_Ex1_b.sce
|
//Harriot P., 2003, Chemical Reactor Design (I-Edition), Marcel Dekker, Inc., USA, pp 436.
//Chapter-6 Ex6.1.b Pg No.236
//Title:Speed of stirrer and increase in blending time
//====================================================================================================================
clear
clc
//INPUT
n=5;
P_by_V_limit=10;//Pressure per unit volume (HP/1000gal)
P_by_V1=59;//Pressure per unit volume from Ex6.1.a
n1=5;
//CALCULATION
n_limit=(P_by_V_limit/P_by_V1)^(1/3) *n1;//Pressure per unit vol propotional to n3
t_inc_factor=n1/n_limit;//t inversely propotional to n
rotational_speed=n_limit*60;//Speed in rpm
//OUTPUT
//Console Output
mprintf('\n The speed of the stirrer = %.2f sec-1 or %.0f rpm',n_limit,rotational_speed);
mprintf('\n Blending time increases by factor of %.2f ',t_inc_factor);
//File Output
fid= mopen('.\Chapter6_Ex1_b_Output.txt','w');
mfprintf(fid,'\n The speed of the stirrer = %.2f sec-1 or %.0f rpm',n_limit,rotational_speed);
mfprintf(fid,'\n Blending time increases by factor of %.2f ',t_inc_factor);
mclose(fid);
//==================================================END OF PROGRAM===================================================
|
7fd6a74de4b3864420f794a10565e29b14fecd67
|
676ffceabdfe022b6381807def2ea401302430ac
|
/solvers/CompressibleFlowSolver/Tests/Perturbation_M15_square_CBC_par.tst
|
d31cea239a884e4f5af5b1a258b2027494ea8444
|
[
"MIT"
] |
permissive
|
mathLab/ITHACA-SEM
|
3adf7a49567040398d758f4ee258276fee80065e
|
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
|
refs/heads/master
| 2022-07-06T23:42:51.869689
| 2022-06-21T13:27:18
| 2022-06-21T13:27:18
| 136,485,665
| 10
| 5
|
MIT
| 2019-05-15T08:31:40
| 2018-06-07T14:01:54
|
Makefile
|
UTF-8
|
Scilab
| false
| false
| 1,204
|
tst
|
Perturbation_M15_square_CBC_par.tst
|
<?xml version="1.0" encoding="utf-8"?>
<test>
<description>Euler, pressure perturbation to test RiemannInvariant CBC supersonic, parallel</description>
<executable>CompressibleFlowSolver</executable>
<parameters>--use-scotch Perturbation_M15_square_CBC_par.xml</parameters>
<processes>3</processes>
<files>
<file description="Session File"> Perturbation_M15_square_CBC_par.xml</file>
<file description="Restart File"> Perturbation_M15_square_CBC_par.rst</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-12">0.0910004</value>
<value variable="rhou" tolerance="1e-12">40.244</value>
<value variable="rhov" tolerance="1e-12">0.0038368</value>
<value variable="E" tolerance="1e-12">23023.8</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-12">0.364797</value>
<value variable="rhou" tolerance="1e-12">161.179</value>
<value variable="rhov" tolerance="1e-12">0.431771</value>
<value variable="E" tolerance="1e-12">92248.6</value>
</metric>
</metrics>
</test>
|
5c45891cec06cb87903fda00890c1b9d8b0ebef9
|
d465fcea94a1198464d7f8a912244e8a6dcf41f9
|
/system/kiks_patch_ball.sci
|
3d0c5249a50314dd56f0f67bd5ff7b9c83342d38
|
[] |
no_license
|
manasdas17/kiks-scilab
|
4f4064ed7619cad9e2117a6c0040a51056c938ee
|
37dc68914547c9d0f423008d44e973ba296de67b
|
refs/heads/master
| 2021-01-15T14:18:21.918789
| 2009-05-11T05:43:11
| 2009-05-11T05:43:11
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 843
|
sci
|
kiks_patch_ball.sci
|
function [ptch] = kiks_patch_ball(id)
// Ouput variables initialisation (not found in input variables)
ptch=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
global("KIKS_COLOR_BACKGROUND","KIKS_COLOR_BALL");
//col=([KIKS_COLOR_BALL KIKS_COLOR_BALL KIKS_COLOR_BALL]/255)+KIKS_COLOR_BACKGROUND;
col = [0.1,0.8,0.5];
// !! L.10: Matlab function sprintf not yet converted, original calling sequence used
// !! L.10: Matlab function patch not yet converted, original calling sequence used
ptch = patch("Selected","off","Facecolor",col,"Edgecolor",[0,0,0],"Erase","xor","tag",sprintf("@ballobj %d",id));
endfunction
|
01a2cf0ea47bca2989fb7508e67c5af7d5337573
|
fabc48f29c1a9611501fae0c34433b44d5617bd0
|
/scilab/validateConnections.sci
|
566b85f3dc5327ea84062722cc62e10cc44a5946
|
[] |
no_license
|
rubiruchi/automatic-power-optimization
|
51e7a9575619e0232595be18ed4b02e2fcd48bc8
|
575471ea5ae392d60365508bf84d58ad4d32764a
|
refs/heads/master
| 2020-04-21T06:22:14.980063
| 2018-12-26T09:51:02
| 2018-12-26T09:51:02
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 460
|
sci
|
validateConnections.sci
|
function result = validateConnections(initialNet,finalNet)
result = 0;
MIN_LEVEL = -1000000;
[row,col]=size(initialNet);
for i=1:row
for j=1:col
if initialNet(i,j)~=MIN_LEVEL then
if finalNet(i,j)== MIN_LEVEL then
result = 1;
break;
end
end
end
if result == 1 then
break;
end
end
endfunction
|
08c7bb63d4e1f0db1d0fb45c0efc682c4a9da445
|
7f3363096d9284ed8dc217615aee62dcaf58c2f1
|
/ProgramaGenera.sce
|
a7f32a9830152e5d0a4e0a962b6d90437d63ccf1
|
[] |
no_license
|
ChristianStain/SistemaRevisionGenera
|
98f4e5a37c57089a030733818c930d225cc43cba
|
b74e639474436a46a89d50c3434980c732b01730
|
refs/heads/master
| 2021-01-10T18:20:40.253018
| 2016-01-23T16:00:07
| 2016-01-23T16:00:07
| 50,244,931
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,992
|
sce
|
ProgramaGenera.sce
|
clc
clear
mat = zeros(70,1)
//disp(mat)
for i = 1:70
answer = 0
while(answer~=1 & answer~=2)
answer = input("Pregunta " + string(i) + ": ")
mat(i,1) = answer
if(answer~=1 & answer~=2)
disp("ERROR Input inválido")
end
end
end
cientificos = 0
administrativo = 0
aireLibre = 0
mecanicos = 0
artisticos = 0
relacionales = 0
sociales = 0
for i = 1:70
x = mat(i,1)
if(i==5 | i==10 | i==25 | i==31 | i==46 | i==53 | i==55 | i==56 | i==59 | i==69)
if(x==1)
cientificos=cientificos+1
end
end
if(i==8 | i==18 | i==19 | i==29 | i==43 | i==48 | i==54 | i==57 | i==62 | i==70)
if(x==1)
administrativo=administrativo+1
end
end
if(i==11 | i==13 | i==17 | i==26 | i==41 | i==51 | i==52 | i==60 | i==63 | i==65)
if(x==1)
aireLibre=aireLibre+1
end
end
if(i==1 | i==9 | i==16 | i==23 | i==36 | i==37 | i==38 | i==49 | i==64 | i==66)
if(x==1)
mecanicos=mecanicos+1
end
end
if(i==4 | i==12 | i==21 | i==22 | i==24 | i==28 | i==32 | i==35 | i==45 | i==68)
if(x==1)
artisticos=artisticos+1
end
end
if(i==3 | i==7 | i==14 | i==15 | i==27 | i==34 | i==39 | i==44 | i==58 | i==67)
if(x==1)
relacionales=relacionales+1
end
end
if(i==2 | i==6 | i==20 | i==30 | i==33 | i==40 | i==42 | i==47 | i==50 | i==61)
if(x==1)
sociales=sociales+1
end
end
end
tags = 1:7
ans = [cientificos,administrativo,aireLibre,mecanicos,artisticos,relacionales,sociales]
plot(tags, ans, style=color("blue"))
disp("Cientificos = " + string(cientificos))
disp("Administrativo = " + string(administrativo))
disp("Aire libre = " + string(aireLibre))
disp("Mecánicos = " + string(mecanicos))
disp("Artísticos = " + string(artisticos))
disp("Relacionales = " + string(relacionales))
disp("Sociales = " + string(sociales))
|
9de414eed3e90a97559f8b2c630c8bbb1fd7ce47
|
0778f91e335afef58ae45c5a33184587cee76088
|
/CN-Jacobi e Gauss-Seidel.sce
|
987dd07a478b838b5b189349d2ec12356f8bc861
|
[] |
no_license
|
LtavaresII/CN
|
b38e6f5531a3597f8705bdf163f4cec49f49d51e
|
0dcfb182692dee3ecf71d62162f986f816b3d687
|
refs/heads/master
| 2020-03-25T23:35:53.410172
| 2018-12-05T14:17:32
| 2018-12-05T14:17:32
| 144,282,768
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 215
|
sce
|
CN-Jacobi e Gauss-Seidel.sce
|
A=[8 -4 2;5 10 2;3 -1 7]
b=[-22;-44;-53]
D=A.*eye(A)
InvD=inv(D)
B=eye(A)-InvD*A
g=InvD*b
x=zeros(b)
xOld=x
x(1)=B(1,:)*x + g(1)
x(2)=B(2,:)*x + g(2)
x(3)=B(3,:)*x + g(3)
Er=max(abs(x-xOld))/max(abs(x))
|
154b59f66f806c0ef8e5c3d528de26408c7220bb
|
e0124ace5e8cdd9581e74c4e29f58b56f7f97611
|
/3899/CH15/EX15.3/Ex15_3.sce
|
a782242faabbe146cc462646827c2b6f17442400
|
[] |
no_license
|
psinalkar1988/Scilab-TBC-Uploads-1
|
159b750ddf97aad1119598b124c8ea6508966e40
|
ae4c2ff8cbc3acc5033a9904425bc362472e09a3
|
refs/heads/master
| 2021-09-25T22:44:08.781062
| 2018-10-26T06:57:45
| 2018-10-26T06:57:45
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 144
|
sce
|
Ex15_3.sce
|
//clear//
//Example 15.3:Lapalce Transform x(t) = exp(at).u(t)
syms t s;
a = 3;
y =laplace('%e^(a*t)',t,s);
disp(y)
//Result
//1/(s-a)
|
940a76fc465a0d25808cf40b50e0b56f663b11e4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1049/CH11/EX11.4/ch11_4.sce
|
9f26181a55ffe4c9516689565befa03f08515b1a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 290
|
sce
|
ch11_4.sce
|
clear;
clc;
V=200;
I=10;
R_L=V/I; printf("value of load resistance=%.0f ohm",R_L);
I_h=.005; //holding current
R2=V/I_h; printf("\nvalue of R2=%.0f kilo-ohm",R2/1000);
t_c=20*10^-6;
fos=2;//factor of safety
C=t_c*fos/(R_L*log(2)); printf("\nvalue of C=%.3f uF",C*10^6);
|
7216bce179dbefbf8fdb95d3bfcb72f6f5150525
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3769/CH21/EX21.13/Ex21_13.sce
|
d32cd7ffcdbfa12b41a95f89b768a9f0a45082f2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 165
|
sce
|
Ex21_13.sce
|
clear
//Given
l=5.0 //m
d=1 //mm
//Calculation
a=d/l
//Result
printf("\n Width of each slit is %0.3f mm", a)
|
e54869888b9dfcf9e40945984067b8a2a8316b07
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2138/CH11/EX11.10.e/ex_11_10_e.sce
|
cc9e8bddd69ceba4a9b4a4512fba40696a8be50e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 485
|
sce
|
ex_11_10_e.sce
|
//Example 11.10.e // voltage across the capacitor
clear;
close;
clc;
R=5.94;//in ohms
L=0.35;//IN HENRY
C=35;// in micro farads
V=200;//IN VOLTS it is given wrong in the book
F=50;// IN HERTS
Xc=(1/(2*%pi*F*C*10^-6));// capacitive reactance in ohms
Xl=2*%pi*F*L;// inductive reactance in ohms
Z=sqrt(R^2+(Xl-Xc)^2);// impedence in ohms
I=V/round(Z);// in amperes
pf=R/round(Z);// power factor
Vc=I*Xc;//voltage drop across the capacitor
disp(Vc,"voltage across capacitor in volts is")
|
4c2630460b4a9cca95486f48955ac3de8525f98a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2240/CH30/EX29.9/EX29_9.sce
|
4dfe42d513aea6d89054abf0ab259b4d2ed5fc3a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,101
|
sce
|
EX29_9.sce
|
// Grob's Basic Electronics 11e
// Chapter No. 29
// Example No. 29_9
clc; clear;
// Calculate the following: Ie, Vcb, r'e, Av, vout and zin.
// Given data
Rc = 1.5*10^3; // Collector resistance=1.5 kOhms
Re = 1.8*10^3; // Emitter resistance=1.8 kOhms
Rl = 1.5*10^3; // Load resistance=1.5 kOhms
Vcc = 15; // +ve Supply Voltage=15 Volts
Vee = 9; // -ve Supply Voltage=9 Volts
Vbe = 0.7; // Voltage Base-Emitter=0.7 Volts
vin = 25*10^-3; // Input Voltage=25 mVolts(p-p)
Ie = (Vee-Vbe)/Re;
disp (Ie,'The Emmiter current in Amps')
disp ('i.e 4.61 mApms')
Ic = Ie; // Ic =~ Ie
Vcb = Vcc-(Ic*Rc);
disp (Vcb,'The Collector-Base Voltage in Volts')
disp ('Appox 8.09 Volts')
a = 25*10^-3;
re = a/Ie;
disp (re,'The AC emmiter resistance in Ohms')
b = Rc*Rl;
c = Rc+Rl;
rl = b/c;
Av = rl/re;
disp (Av,'The Voltage gain is')
vout = Av*vin;
disp(vout,'The AC output voltage in Volts(p-p)')
disp ('Appox 3.46 Volts(p-p)')
d = Re*re
e = Re+re
Zin = d/e;
disp (Zin,'The Input Impedence in Ohms')
|
26336b0670ec8a73d3239e6279723f2ee611f933
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1694/CH1/EX1.24/EX1_24.sce
|
41e31395e163eb94e69b9aa573f140ee44f5e658
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 302
|
sce
|
EX1_24.sce
|
clear;
clc;
printf("\nEx1.24\n");
//page no.-34
//given
n=3;.....................//order
lambda=0.79*10^-10;......//wavelength in m
d=3.04*10^-10;..........//spacing in m
//from bragg's law
theta=asind((n*lambda)/(2*d))..........//angle in degrees
printf("\nangle is 22.942 degrees\n");
|
06827d91d41129adb3132839918e03a930527dfa
|
59f0ed81966ce386250ef0cfa33b54cc81cbedf8
|
/fonctions/Tp_note.sce
|
dc6c8f548f8de5c36b37a6a4c531a6cbc0c42dd9
|
[] |
no_license
|
ChloeMaccarinelli/traitementsImagesScilab
|
1a6ac0a229f489741050c9b853642158aaabf74a
|
f9669495951679761db4ce24877a6f95a431b20c
|
refs/heads/master
| 2020-05-01T11:13:41.281752
| 2019-03-24T16:08:40
| 2019-03-24T16:08:40
| 177,437,500
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,032
|
sce
|
Tp_note.sce
|
function I= Contour(I)
[n,m]=size (I);
I=I*255;
I=uint8(I);
for i= 1:n
for j=1:m
if I(i,j)==0 then
if I(i+1,j)==255 then
I(i+1,j)=128;
end
if I(i,j+1)==255 then
I(i,j+1)=128;
end
if I(i+1,j+1)==255 then
I(i+1,j+1)=128;
end
if I(i-1,j)==255 then
I(i-1,j)=128;
end
if I(i-1,j-1)==255 then
I(i-1,j-1)=128;
end
if I(i+1,j-1)==255 then
I(i+1,j-1)=128;
end
if I(i,j-1)==255 then
I(i,j-1)=128;
end
if I(i+1,j-1)==255 then
I(i+1,j-1)=128;
end
if I(i-1,j+1)==255 then
I(i-1,j+1)=128;
end
end
end
end
endfunction
|
ea37dcb8b7a88f88ac52d55023a2fd6148d6dddc
|
25033eda4e7cd13f945f94c5dc35f15825066b42
|
/ExactCure/cercle.sce
|
92db05c06e3036c6c72e5d742e6cc17e8e9e9217
|
[] |
no_license
|
julienguegan/Internships
|
a26cb9efa2f1715832511a7aa94d25bfc675388b
|
ad51d5845ed8fd41e29259c95e8beff80bac65cf
|
refs/heads/master
| 2020-12-20T21:54:29.099157
| 2020-01-25T19:20:10
| 2020-01-25T19:20:10
| 236,217,889
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,735
|
sce
|
cercle.sce
|
function C = cercle(x,y,r)
// trace un cercle de centre (x,y) et de rayon r
cpt1 = 1
cpt2 = 1
D = 2*r
step = D/100
for i = x-r:step:x+r
ind_i = i/step-(x-r)/step+1
C1(ind_i) = sqrt(r^2-(i-x)^2)+y
C2(ind_i) = -sqrt(r^2-(i-x)^2)+y
if imag(C1(ind_i)) == 0 then //on slct les nbr réels ! sqrt
A(cpt1) = C1(ind_i)
cpt1 = cpt1 + 1
end
if imag(C2(ind_i)) == 0 then
B(cpt2) = C2(ind_i)
cpt2 = cpt2 + 1
end
end
C = [A B]
I = [x-r:step:x+r]
plot(I',C,'b-','thickness',2)
endfunction
function E = ellipse(xC,yC,u,v,a)
// trace une ellipse de centre (xC,yC), de grand axe u et de petit axe v
//$(x-u)^2/a^2+(y-v)^2/b^2=1$
cpt1 = 1
cpt2 = 1
D = 2*u
step = D/100
for i = xC-u:step:xC+u
ind_i =i/step-(xC-u)/step+1
E1(ind_i) = sqrt(v^2*(1-(i-xC)^2/u^2))+yC
E2(ind_i) = -sqrt(v^2*(1-(i-xC)^2/u^2))+yC
if imag(E1(ind_i)) == 0 then //on slct les nbr réels ! sqrt
A(cpt1) = E1(ind_i)
cpt1 = cpt1 + 1
end
if imag(E2(ind_i)) == 0 then
B(cpt2) = E2(ind_i)
cpt2 = cpt2 + 1
end
end
I = [xC-u:step:xC+u]
E = [A B]
x1 = I'.*cos(a)-A.*sin(a)
x2 = I'.*cos(a)-B.*sin(a)
y1 = I'.*sin(a)+A.*cos(a)
y2 = I'.*sin(a)+B.*cos(a)
X = [x1 x2]
Y = [y1 y2]
plot(X,Y,'b--')
endfunction
function y = ellipse2()
x = 0//upper left x
y = 0 //upper left y
w = 1 // largeur
h = 0.5 //hauteur
a1 = 100//angle 1
a2 = 360*64 //angle2
arcs=[ x;y;w;h;a1;a2]
xarcs(arcs)
rand("normal")
for i = 1:100
disp(rand(1,1))
end
endfunction
|
4cb4302104e5dfb3ceb26321b9290b7b0214d447
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2159/CH7/EX7.10/710.sce
|
f28e0ec52f15330e3064ebfcb04eaa29fd2ba3fd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 229
|
sce
|
710.sce
|
// problem 7.10
D=2.4
d=1.5
i=1/1500
N=0.02
a=(d-(D/2))/(D/2)
z=acos(a)
z1=3.142-z
P=D*z1
A=D*D*0.25*(z1-(sin(2*z1)/2))
m=A/P
Q=(A*(m^0.6666)*(i^0.5))/N
disp(Q*1000,"the discharge through the sewer in litres/sec")
|
aa7b4b8eee88292685b365e532dd37265304c4bf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3428/CH1/EX1.1.1/Ex1_1_1.sce
|
1e506a90cd7540a1901a17028dc2ca45c864cfe3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 484
|
sce
|
Ex1_1_1.sce
|
//Section-1,Example-1,Page no.-AC.33
// To caculate number average molecular mass(Mn_bar) and weight average molecular mass(Mw_bar)
clc;
W_1=10
W_2=90
M_1=10000
M_2=100000
W=W1+W2 //weight of 2 constituents
N_1=10/10000 //no.of moles of N1
N_2=90/100000 //no.of moles of N2
Mn_bar=(W_1+W_2)/(N_1+N_2)
disp(Mn_bar,'number average molecular mass')
Mw_bar=((N_1*M_1^2)+(N_2*M_2^2))/((N_1*M_1)+(N_2*M_2))
disp(Mw_bar,'weight average molecular mass')
|
3bd767aea0e41cdab539b257c4072cfc88ee8a9c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3651/CH5/EX5.2/2.sce
|
d39d686a9f15795331a3b7a8a68546461f78fea8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 461
|
sce
|
2.sce
|
//Variable declaration
epsilon0=8.84*10**-12;
R=0.55*10**-10; //radius(m)
N=2.7*10**25; //number of atoms
//Calculation
alpha_e=4*%pi*epsilon0*R**3; //polarisability of He(farad m**2)
epsilonr=1+(N*alpha_e/epsilon0); //relative permittivity
//Result
printf('polarisability of He is %0.3f *10**-40 farad m**2\n',(alpha_e*10**40))
printf('relative permittivity is %0.3f \n',(epsilonr))
printf('answer varies due to ing off errors')
|
21cca96a8db4e02ebfa5bc16c23401ecb53896a2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1238/CH1/EX1.28.a/28_a.sce
|
6d593747732f4a17543ffa41266ce9a75c5b3f87
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 894
|
sce
|
28_a.sce
|
//constructing an even parity 7 bit hamming code//
//example 28.a//
clc
//clears the command window//
clear
//clears//
z=0100;//input//
a=0;b=0;c=0;d=0;
//taking the input//
for i=1:7
x(i)=0
if (i==5) then
x(i)=1
end
end
//establishing even parity at positions 1,3,5,7//
for i=3:7
if (x(i)==1) then
a=a+1
end
end
d=modulo(a,2)
if (d==1) then
x(1)=1
end
//establishing even parity at positions 2,3,6,7//
for i=3:7
if (i==5) then
continue
end
if (x(i)==1) then
b=b+1
end
end
d=modulo(b,2)
if (d==1) then
x(2)=1
end
//establishing even parity at positions 4,5,6,7//
for i=5:7
if (x(i)==1) then
c=c+1
end
end
d=modulo(c,2)
if (d==1) then
x(4)=1
end
//displaying the result//
disp('the required hamming code is:')
for i=1:7
printf('%d',x(i))
end
|
67b1771c862badcb96c6c8c5db5d8112369f9730
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3685/CH9/EX9.13/Ex9_13.sce
|
7f5729a6373658b521eed525f5f52f96938ca9db
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,834
|
sce
|
Ex9_13.sce
|
clc
x1 = 1 // Steam quality in first vessel
x2 = 0.8 // Steam quality in second vessel
// at 0.2MPa
vg = 0.8857 // Specific volume of gas in m^3/kg
h1 = 2706.7 // Enthalpy in first vessel in kJ/kg
v1 = vg // Specific volume of gas in first vessel in m^3/kg
hg = h1 // Enthalpy in first vessel 1 in kJ/kg
m1 = 5 // mass in first vessel in kg
V1 = m1*v1 // Volume of first vessel in m^3
// at 0.5MPa
m2 = 10 // mass in second vessel in kg
hf = 640.23 // Enthalpy in second vessel in kJ/kg
hfg = 2108.5 // Latent heat of vaporization in kJ/kg
vf = 0.001093 // Specific volume of fluid in second vessel in m^3/kg
vfg = 0.3749 // Change in specific volume in second vessel due to evaporation of gas in m^3/kg
v2 = vf+(x2*vfg) // Specific volume of gas in second vessel
V2 = m2*v2 // Volume of second vessel in m^3
//
Vm = V1+V2 // Total volume
m = m1+m2 // Total mass
vm = Vm/m // net specific volume
u1 = h1 // Internal energy
h2 = hf+(x2*hfg) // Enthalpy calculation
u2 = h2 // Internal energy calculation
m3 = m // Net mass calculation
h3 = ((m1*u1)+(m2*u2))/m3 // Resultant enthalpy calculation
u3 = h3 // Resultant internal energy calculation
v3 = vm // resultant specific volume calculation
// From Mollier diagram
x3 = 0.870 // Steam quality
p3 = 3.5 // Pressure in MPa
s3 = 6.29 // Entropy at state 3 in kJ/kgK
s1 = 7.1271 // Entropy at state 1 in kJ/kgK
sf = 1.8607 // Entropy in liquid state in kJ/kgK
sfg = 4.9606 // Entropy change due to vaporization in kJ/kgK
s2 = sf+(x2*sfg) // Entropy calculation
E = m3*s3-((m1*s1)+(m2*s2)) // Entropy change during process
printf("\n Example 9.13")
printf("\n Final pressure is %f bar",p3)
printf("\n Steam quality is %f ",x3)
printf("\n Entropy change during the process is %f kJ/K",E)
//The answers vary due to round off error
|
8d66ee230b637fbb8bf781b9ca467c910327c6a2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/635/CH2/EX2.7/Ch02Ex7.sci
|
5fe8c5b684eeeabace77362db0088bd92351b404
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,011
|
sci
|
Ch02Ex7.sci
|
// Scilab Code Ex2.7 Bond formation Energy for K+ and Cl- ion pair: Page-70 (2010)
eps_0 = 8.854D-12; // Absolute electrical permittivity of free space, coulomb sqaure per newton per metre square
e = 1.6D-19; // Electronic charge, C
IP_K = 4.1; // Ionization potential of potassium, electron-volt
EA_Cl = 3.6; // Electron affinity of chlorine, electron-volt
delta_E = IP_K - EA_Cl; // Net energy required to produce the ion-pair, electron-volt
Ec = delta_E; // Coulomb energy equals net energy required to produce the ion pair, in electron-volt
// Since Ec = -e/(4*%pi*eps_0*R), solving for R
R = -e/(4*%pi*eps_0*Ec); // Separation between K+ and Cl- ion pair, m
disp(Ec,"The bond formation energy for K+ and Cl- ion pair, in eV, is : ");
disp(R/1D-10, "The separation between K+ and Cl- ion pair, in angstrom, is : ");
//Result
// The bond formation energy for K+ and Cl- ion pair, in eV, is :
// 0.5
// The separation between K+ and Cl- ion pair, in angstrom, is :
// - 28.760776
|
3a4d2acbca6adec6433fcffcc320defaf7d6daf3
|
b26cbe6bc3e201f030705aaf9eb82da94def231f
|
/tests/plain-pnm_to_matrix-plain-pnm-002.tst
|
c80bcaf580d49a6cced276909866299a6b11e734
|
[] |
no_license
|
RP-pbm/Recurrence-plot
|
f86c5cd85460661b01a609f8f4281d2cda6b4e07
|
b5da95f9b30c1a924a002102219bf0a2ad47df2c
|
refs/heads/master
| 2022-07-24T12:11:34.163543
| 2022-07-09T19:32:43
| 2022-07-09T19:32:43
| 92,934,698
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 22
|
tst
|
plain-pnm_to_matrix-plain-pnm-002.tst
|
../inputs/wider-01.pgm
|
c7b7ded62ffb71a0e5a2a8114909bfb5ee72056c
|
b6acf6dd87e3485052668614b21fdc86583510f5
|
/BZIP2/example/testfiles/h5ex_d_bzip2.tst
|
c7303de90314b2bf96668dd22829d510ba01e3c5
|
[
"LicenseRef-scancode-warranty-disclaimer"
] |
no_license
|
nexusformat/HDF5-External-Filter-Plugins
|
4ff7e33c8d613f4cab8e6f722a8bf5bf1e933a70
|
49e3b65eca772bca77af13ba047d8b577673afba
|
refs/heads/master
| 2022-12-19T06:12:00.347123
| 2022-11-11T13:56:15
| 2022-11-11T13:56:15
| 47,253,039
| 16
| 12
| null | 2022-11-11T13:56:16
| 2015-12-02T10:10:02
|
C
|
UTF-8
|
Scilab
| false
| false
| 561
|
tst
|
h5ex_d_bzip2.tst
|
bzip2 filter is available for encoding and decoding.
....Writing bzip2 compressed data ................
....Close the file and reopen for reading ........
Filter info is available from the dataset creation property
Filter identifier is 307
Number of parameters is 1 with the value 2
To find more about the filter check HDF5 bzip2 filter; see http://www.hdfgroup.org/services/contributions.html
....Reading bzip2 compressed data ................
Maximum value in DS1 is 1890
bzip2 filter is available now since H5Dread triggered loading of the filter.
|
f045b512b48185162ad695dc6c81dc274a8659a7
|
e753aa4daf251e2117bda02080a244a9f0c3e19c
|
/env/.env.tst
|
c6756bb1ff7bc8e7fb248d8aa94ab09d2a8e5ce0
|
[
"MIT"
] |
permissive
|
halo-framework/halo-webapp
|
9d162b47720ead5a66c89978fb33be0f19e2ba21
|
279db4726124662f601e20e55e2019cd2c0a3673
|
refs/heads/master
| 2023-04-04T09:43:52.249434
| 2021-04-18T21:00:07
| 2021-04-18T21:00:07
| 311,116,709
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 681
|
tst
|
.env.tst
|
DEBUG=True
DB_VER=53
DYNAMODB_URL=http://localhost:8600
SERVER_NAME=dev.app_name.com
SITE_NAME=app_name.com
AWS_REGION=us-east-1
SERVER_LOCAL=True
SECRET_JWT_KEY=1234567890
STATIC_S3=https://s3.amazonaws.com/app_name-static/
FUNC_NAME=app_name
SQLITE_URL=sqlite:///db.sqlite3
# SQLITE_URL=sqlite:///my-local-sqlite.db
#MEMCACHE_URL=memcache://127.0.0.1:11211,127.0.0.1:11212,127.0.0.1:11213
#CACHE_URL=DummyCache:///mem
CACHE_URL=LocMemCache:///mem
REDIS_URL=rediscache://127.0.0.1:6379/1?client_class=django_redis.client.DefaultClient&password=redis-un-githubbed-password
FLASK_APP=autoapp.py
FLASK_ENV=testing
DATABASE_URL="sqlite:////tmp/dev.db"
SECRET_KEY="not-so-secret"
|
71e9e889d18cb39048c3adc2d7ebb9ae4e8984d1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3682/CH2/EX2.3/Ex2_3.sce
|
317bbd0ab84a6a3233e7fd5b09bfddc4ff38c6e1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 510
|
sce
|
Ex2_3.sce
|
// Exa 2.3
clc;
clear;
// Given data
// Single op-amp amplifier.
ACL = 5; // Required gain(positive)
// Solution
disp("Since the gain is positive, we have to make a non-inverting amplifier.");
disp("Referring Fig. 2.7(a), select R1 = 10 kΩ.");
R1 = 10*10^3; //Input resistance in Ω
// Then from eqn. (2.20), we get, ACL = 1+ (Rf/R1);
// Therefore
Rf = (ACL-1)*R1; //Feedback resistance in Ω
printf(' The calculated feedback resistance of amplifier i.e Rf = %d kΩ.\n',Rf/1000);
|
073be63d21b321889bd91500eb52739db1168964
|
a45f93853fdb67523e71e3e7fb88c4298eae1ef7
|
/Screens/Error No Fleet Selected.tst
|
21e2fd19ea66a3ae8f66e352a969267c418f295d
|
[] |
no_license
|
voarsh/Disney-Treasure-Planet-Battle-at-Procyon
|
68192cbfdf8b823bc8399e3ea1e62d4976b74aed
|
99cbbc70701ef6e8f9d95eba1052635de992910f
|
refs/heads/master
| 2020-04-16T01:44:03.761947
| 2016-06-08T10:25:05
| 2016-06-08T10:25:05
| 38,745,932
| 3
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,287
|
tst
|
Error No Fleet Selected.tst
|
ScreenName String 'Error No Fleet Selected'
ImplName String 'Dialog Screen'
ElementChunkArray Int 4
ScreenElementType Int 0
ImplName String 'Front End Dialog Screen Backdrop'
TabIndex Int 5
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 100, 167, 534, 446 ) # left,top,right,bottom
ScreenElementType Int 1
ImplName String 'Open Dialog Next Button'
TabIndex Int 4
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 349, 311, 447, 355 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_OK'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 7
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 117, 240, 692, 277 ) # left,top,right,bottom
Font String 'Univers12'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_ERROR_FLEET'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 8
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 113, 227, 692, 287 ) # left,top,right,bottom
Font String 'Univers12'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_ERROR_FLEET'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
|
9c9f952cdaf026a80c7aed36629199dffb0f7c53
|
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
|
/Jumbo&Mini 30 Targets Time Attack.sce
|
0d237b68114ebfedb40a944bca89eed889e51d51
|
[] |
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
| 146,022
|
sce
|
Jumbo&Mini 30 Targets Time Attack.sce
|
Name=Jumbo&Mini 30 Targets Time Attack
PlayerCharacters=Player
BotCharacters=Jumbo target.bot;Cube.bot;Small target.bot;Jumbo Cube.bot;target.bot;Small Cube.bot
IsChallenge=true
Timelimit=30.0
PlayerProfile=Player
AddedBots=Jumbo target.bot;Cube.bot;Small target.bot;Jumbo Cube.bot;target.bot;Small Cube.bot
PlayerMaxLives=0
BotMaxLives=5;5;5;5;5;5
PlayerTeam=1
BotTeams=2;2;2;2;2;2
MapName=AB.map
MapScale=5.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=10.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Flick, Mouse Control
WeaponHeroTag=Click
DifficultyTag=2
AuthorsTag=Lac
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=true
Description=ez^^
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Jumbo target
DodgeProfileNames=no move for blink
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=Jumbo target
SeeThroughWalls=true
NoDodging=true
NoAiming=false
[Bot Profile]
Name=Cube
DodgeProfileNames=no move for blink
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=Cube
SeeThroughWalls=true
NoDodging=true
NoAiming=false
[Bot Profile]
Name=Small target
DodgeProfileNames=no move for blink
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=Small target
SeeThroughWalls=true
NoDodging=true
NoAiming=false
[Bot Profile]
Name=Jumbo Cube
DodgeProfileNames=no move for blink
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=Jumbo Cube
SeeThroughWalls=true
NoDodging=true
NoAiming=false
[Bot Profile]
Name=target
DodgeProfileNames=no move for blink
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=target
SeeThroughWalls=true
NoDodging=true
NoAiming=false
[Bot Profile]
Name=Small Cube
DodgeProfileNames=no move for blink
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=Small Cube
SeeThroughWalls=true
NoDodging=true
NoAiming=false
[Character Profile]
Name=Player
MaxHealth=100.0
WeaponProfileNames=Click;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=100.0
MainBBRadius=50.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=2.0
ProjBBRadius=1.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Character Profile]
Name=Jumbo target
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Spheroid
MainBBHeight=600.0
MainBBRadius=300.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=128.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Character Profile]
Name=Cube
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=400.0
MainBBRadius=200.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=128.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Character Profile]
Name=Small target
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Spheroid
MainBBHeight=200.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=128.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Character Profile]
Name=Jumbo Cube
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=600.0
MainBBRadius=300.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=128.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Character Profile]
Name=target
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Spheroid
MainBBHeight=400.0
MainBBRadius=200.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=128.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Character Profile]
Name=Small Cube
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=200.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=128.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
[Dodge Profile]
Name=no move for blink
MaxTargetDistance=100000.0
MinTargetDistance=10.0
ToggleLeftRight=true
ToggleForwardBack=true
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.1
JumpFrequency=0.2
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.25
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Click
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=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=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=50.0
RecoilNegatable=false
DecalType=1
DecalSize=0.1
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=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=true
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
Float sky.timeOfDay 13.814148
Float sky.skyAngle 172.167847
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-592.000000 7776.000000 -640.000000
-592.000000 7776.000000 -1824.000000
-640.000000 7776.000000 -1824.000000
-640.000000 7776.000000 -640.000000
-592.000000 6944.000000 -640.000000
-592.000000 6944.000000 -1824.000000
-640.000000 6944.000000 -1824.000000
-640.000000 6944.000000 -640.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
-640.000000 7776.000000 -1824.000000
-560.000000 7776.000000 -1824.000000
-560.000000 7776.000000 -1856.000000
-640.000000 7776.000000 -1856.000000
-640.000000 6912.000000 -1824.000000
-560.000000 6912.000000 -1824.000000
-560.000000 6912.000000 -1856.000000
-640.000000 6912.000000 -1856.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
-640.000000 7808.000000 -640.000000
-560.000000 7808.000000 -640.000000
-560.000000 7808.000000 -1856.000000
-640.000000 7808.000000 -1856.000000
-640.000000 7776.000000 -640.000000
-560.000000 7776.000000 -640.000000
-560.000000 7776.000000 -1856.000000
-640.000000 7776.000000 -1856.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
-640.000000 7808.000000 -608.000000
-560.000000 7808.000000 -608.000000
-560.000000 7808.000000 -640.000000
-640.000000 7808.000000 -640.000000
-640.000000 6944.000000 -608.000000
-560.000000 6944.000000 -608.000000
-560.000000 6944.000000 -640.000000
-640.000000 6944.000000 -640.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
-640.000000 6944.000000 -608.000000
-560.000000 6944.000000 -608.000000
-560.000000 6944.000000 -1824.000000
-640.000000 6944.000000 -1824.000000
-640.000000 6912.000000 -608.000000
-560.000000 6912.000000 -608.000000
-560.000000 6912.000000 -1824.000000
-640.000000 6912.000000 -1824.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
-640.000000 10144.000000 -5680.000000
-656.000000 10144.000000 -5680.000000
-655.999878 10144.000000 3216.000000
-639.999878 10144.000000 3216.000000
-640.000000 4944.000000 -5680.000000
-656.000000 4944.000000 -5680.000000
-655.999878 4944.000000 3216.000000
-639.999878 4944.000000 3216.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
8240.000000 10144.000000 -5680.000000
8224.000000 10144.000000 -5680.000000
8224.000000 10144.000000 3216.000000
8240.000000 10144.000000 3216.000000
8240.000000 4944.000000 -5680.000000
8224.000000 4944.000000 -5680.000000
8224.000000 4944.000000 3216.000000
8240.000000 4944.000000 3216.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
-640.000000 10144.000000 -5680.000000
-640.000000 10144.000000 -5664.000000
8224.000000 10144.000000 -5664.000000
8224.000000 10144.000000 -5680.000000
-640.000000 4944.000000 -5680.000000
-640.000000 4944.000000 -5664.000000
8224.000000 4944.000000 -5664.000000
8224.000000 4944.000000 -5680.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
-656.000000 10160.000000 3232.000000
8240.000000 10160.000000 3232.000000
8240.000000 10160.000000 -5680.000000
-656.000000 10160.000000 -5680.000000
-656.000000 10144.000000 3232.000000
8240.000000 10144.000000 3232.000000
8240.000000 10144.000000 -5680.000000
-656.000000 10144.000000 -5680.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
-656.000000 4944.000000 3232.000000
8240.000000 4944.000000 3232.000000
8240.000000 4944.000000 -5680.000000
-656.000000 4944.000000 -5680.000000
-656.000000 4928.000000 3232.000000
8240.000000 4928.000000 3232.000000
8240.000000 4928.000000 -5680.000000
-656.000000 4928.000000 -5680.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
-656.000000 10144.000000 3216.000000
-656.000000 10144.000000 3232.000000
8240.000000 10144.000000 3232.000000
8240.000000 10144.000000 3216.000000
-656.000000 4944.000000 3216.000000
-656.000000 4944.000000 3232.000000
8240.000000 4944.000000 3232.000000
8240.000000 4944.000000 3216.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 CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 1504.000000 7312.000000 -1232.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7616.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7680.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7552.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7488.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7360.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7424.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7232.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7296.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7104.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7168.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 6976.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -576.000000 7040.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7616.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7552.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7488.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7360.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7424.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7232.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7296.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7104.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7168.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1648.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1584.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1456.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1520.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1392.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1328.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1264.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1200.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1136.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1072.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -944.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1008.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -880.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -816.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -688.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -752.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1776.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 816.000000 7040.000000 -1712.000000
Vector3 angles 450.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
1c1de6be599e0c8dde8ddf4b15d6d204930579af
|
a557f90da8513f81cafd8f65e37e2c0d66449a2f
|
/Digital_differntiator.sce
|
5510f6c55b699d7527cbdd158305657d48a864cf
|
[] |
no_license
|
Sahil966121/SCI
|
484cd77d6247e54fe87d36b4f112965c83ab5d96
|
cf2921861486a4f2e2e83c3ca813a4e7710d3508
|
refs/heads/main
| 2023-03-03T17:43:08.236192
| 2021-02-03T05:19:43
| 2021-02-03T05:19:43
| 324,413,192
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 442
|
sce
|
Digital_differntiator.sce
|
clc;clear;close;
N =21;
freq_points=1024;
windowfn =window('hm',N);
n = 0:N-1;
aph = (N-1)/2;
for n=0:N-1
if n==aph
hd(n+1)=0;
else
hd(n+1)= cos(%pi*(n-aph))./(n-aph);
end
end
n=0:N-1;
hn = hd.*windowfn';
omega=-%pi:2*%pi/(freq_points-1):%pi;
n=0:N-1;
figure;
plot2d3(n,hn);
hn=[hn' zeros(1,1024-N)];
a=fft(hn);
mag=abs(a);
magn=fftshift(mag);
figure()
plot2d(omega,magn);
xtitle('Magnitude response','w (rad)','Magnitude');
|
27da942ee66ec5ff2da044cb4ed13c6871add23a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3864/CH4/EX4.6/Ex4_6.sce
|
d6659cef740fa33a1368d3cf407ded54118d2ada
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,027
|
sce
|
Ex4_6.sce
|
clear
//
//
//Initilization of Variables
//Flanges
b1=200 //mm //Width
t1=10 //mm //Thickness
//Web
d=380 //mm //Depth
t2=8 //mm //Thickness
D=400 //mm //Overall Depth
sigma=150 //N/mm**2
//Calculations
//Area
A=b1*t1+d*t2+b1*t1 //mm**2
//Moment of Inertia
I=1*12**-1*(b1*D**3-(b1-t2)*d**3)
//Bending Moment
M=sigma*I*(D*2**-1)**-1
//Square Section
//Let 'a' be the side
a=A**0.5
//Moment of Resistance of this section
M1=1*6**-1*a*a**2*sigma
X=M*M1**-1
//Rectangular section
//Let 'a' be the side and depth be 2*a
a=(A*2**-1)**0.5
//Moment of Rectangular secction
M2=1*6**-1*a*(2*a)**2*sigma
X2=M*M2**-1
//Circular section
//A=%pi*d1**2*4**-1
d1=(A*4*%pi**-1)**0.5
//Moment of circular section
M3=%pi*32**-1*d1**3*sigma
X3=M*M3**-1
//Result
printf("\n Moment of resistance of beam section %0.2f mm",M)
printf("\n Moment of resistance of square section %0.2f mm",X)
printf("\n Moment of resistance of rectangular section %0.2f mm",X2)
printf("\n Moment of resistance of circular section %0.2f mm",X3)
|
b77392a3645f8d2ec07c987930a2ad05c2d0c200
|
8781912fe931b72e88f06cb03f2a6e1e617f37fe
|
/scilab/calc_soap/loader.sce
|
7f63bff5cc263d03d422d1ab91272bc790350670
|
[] |
no_license
|
mikeg2105/matlab-old
|
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
|
eac168097f9060b4787ee17e3a97f2099f8182c1
|
refs/heads/master
| 2021-05-01T07:58:19.274277
| 2018-02-11T22:09:18
| 2018-02-11T22:09:18
| 121,167,118
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 208
|
sce
|
loader.sce
|
// generated by builder.sce: Please do not edit this file
// ------------------------------------------------------
fooc_path=get_absolute_file_path('loader.sce');
link(fooc_path+'libfooc.dll',['fooc'],'c');
|
b9372af1c57e9e117e0767a89b5f0005e7ec3021
|
446aae2100be19be6950fe030959e4ae6ebf75d3
|
/laboratorios/laboratorio 0/laboratorio0.sce
|
150e727f4dfc13ef5e9201939723913eceec1790
|
[] |
no_license
|
jhont285/metodos-numericos
|
492dcc5893707393d066ecc53ca6c5f82faaee66
|
388248e2df5a8c73069dfba53cd439f62bb14476
|
refs/heads/master
| 2021-06-07T18:27:18.337510
| 2016-07-21T22:17:24
| 2016-07-21T22:17:24
| 62,011,812
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 563
|
sce
|
laboratorio0.sce
|
clc
printf("\t\t === Minimo de la maquina ===\n\n")
UN_epsilon;
printf("\n")
printf("\t\t === Raiz Cuadrada ===\n\n")
UN_raiz_cuadrada(2,99,1e-10,10);
printf("\n")
UN_raiz_cuadrada(2,99,1e-10,15);
printf("\n")
printf("\t\t === Metodo de horner ===\n\n")
p = UN_horner([3 7 0 -8 4],2);
disp('p = ')
disp(p)
printf("\t\t === Derivada de un polinomio ===\n\n")
dx = UN_derivada_poli([3 7 0 -8 4]);
disp('dx = ')
disp(dx)
printf("\n")
printf("\t\t === Funcion e^x ===\n\n")
UN_exp(0.5,10e-10,10);
printf("\n")
UN_exp(0.5,10e-10,15);
printf("\n")
|
0872fb8e1fe582f7be54f43ef1c24a02281a4caf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/167/CH8/EX8.11/ex11.sce
|
9ae3278902e4b28e8ce1d13933eea6f38794a8a1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
WINDOWS-1252
|
Scilab
| false
| false
| 1,369
|
sce
|
ex11.sce
|
//example 11
//exergy destruction during expansion of steam
clear
clc
P1=1 //in MPa
T1=300 //in celsius
u1=2793.7 //kJ/kg
v1=0.25799 //m3/kg
s1=7.1246 //kJ/kg-K
P2=200 //in kPa
T2=150 //in °C
u2=2577.1 //in kJ/kg
v2=0.95986 //in m3/kg
s2=7.2810 //in kJ/kg-K
P0=100 //in kPa
T0=298//in K
u0=104.83 //in kJ/kg
v0=0.00103 //in m3/kg
s0=0.3672 //in kJ/kg-K
m=0.05 //in kg
X1=m*((u1-u0)-T0*(s1-s0)+P0*(v1-v0)) //initial exergy of the system in kJ
X2=m*((u2-u0)-T0*(s2-s0)+P0*(v2-v0))//final exergy of the system in kJ
dX=X2-X1 //exergy change for the process in kJ
Qout=2 //Heat losses from the system to the surroundings in kJ
Wbout=-Qout-m*(u2-u1) //total boundary work done by the system,including the work done against the atmosphere to push the atmospheric air out of the way during the expansion process in kJ
Wu=Wbout-P0*m*(v2-v1) //useful work in kJ
Xdestroyed=X1-X2-Wu //exergy destroyed in kJ
n=Wu/(X1-X2) //second law efficiency for this process
printf("\n Hence, the exergy of the steam at the initial state is = %.1f kJ. \n",X1);
printf("\n Hence, the exergy of the steam at the final state is = %.1f kJ. \n",X2);
printf("\n Hence, the exergy change of the steam is = %.1f kJ. \n",dX);
printf("\n Hence, the exergy destroyed is = %.1f kJ. \n",Xdestroyed);
printf("\n Hence, the exergy destroyed is = %.1f percent. \n",n*100);
|
452e991baa685b649cb91b73fed92ba0d5f43d69
|
b4bf3df41ac6382824fbe37cfa37fb2d9794fc9a
|
/matlab_examples/numericalanalysis/interpol/interpol.sci
|
f1726a927cd48db53ac141d8272eb57e3c6f95dd
|
[] |
no_license
|
rcgsheffield/matlab-cic6007
|
c5334862798c2c54298f815c67d0f6312311d3d2
|
3aee6863f3475deef8014c1be712d303bb12f7c6
|
refs/heads/master
| 2022-02-23T08:48:07.738350
| 2019-12-10T09:30:25
| 2019-12-10T09:30:25
| 128,164,624
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,099
|
sci
|
interpol.sci
|
//Integration using Simpsons rule
//quadrature to higher order using lagrange interpolation
function y=testfunction (x)
y=sin(x);
endfunction
//lagrange interpolation
//xval is the value of x at which we wish to interpolate
//f is the series of values
function y=lagrange_interp(xval,f,x,i)
t1=(xval-x(i))*(xval-x(i+1))/((x(i-1)-x(i))*(x(i-1)-x(i+1)));
t2=(xval-x(i-1))*(xval-x(i+1))/((x(i)-x(i-1))*(x(i)-x(i+1)));
t3=(xval-x(i-1))*(xval-x(i))/((x(i+1)-x(i-1))*(x(i+1)-x(i)));
y=t1*f(i-1)+t2*f(i)+t3*f(i+1);
//Here is the correct working version
// t1=(xval-x(i+1))/(x(i)-x(i-1));
// t2=(xval-x(i))/(x(i+1)-x(i));
// y=t1*f(i)+t2*f(i+1);
endfunction
n=10; //size of interval
//use an odd number of elements
n=(n*2)+1;
//integration interval
a=0;
b=%pi/2;
h=(b-a)/n;
x=a:h:b;
for i=1:n+1
y(i)=testfunction(x(i));
end
sum=0;
//since we are using interpolation
//the loop performs the summation
//over every other element
for i=2:2:n-1
sum=sum+y(i-1)+4*y(i)+y(i+1);
end
result=sum*h/3;
disp('results is',result);
|
b2dd9aca7119e627e68eb828dd64ad904165b525
|
7175ebcbd0066f7623383c38f915bcd0e21e6859
|
/tp 0/ej2.sce
|
dc5ed9343229e11cb95d9eac3a9d9589a22a2454
|
[] |
no_license
|
julioalucero/mecanica-computacional
|
c1b59c1d1838c0fc488329bd875c3e72811377fc
|
253d0ccc89a30c3817a4f5bc2a9339e959ae1039
|
refs/heads/master
| 2020-05-30T17:59:55.615823
| 2012-09-04T22:47:13
| 2012-09-04T22:47:13
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 728
|
sce
|
ej2.sce
|
function T = ej2(h,Tl)
delta=h.^2;
x=0:h:1;
x_int=x(2:length(x)-1);
n=length(x_int);
fila=[-1 (2+delta) -1];
//inicializo la matriz y el vector
A=zeros(n+1);
b=(ones(n+1,1)*delta);
//primer fila de la matriz
A(1,1:2)=fila(2:3);
//condicion de borde izquierdo
b(1)=b(1)+Tl;
//armo las filas intermedias de la matriz
for i=2:n
A(i,i-1:i+1)=fila;
end
//ultima fila de la matriz
A(n+1,n:n+1)=[-2 fila(2)];
//condicion de borde derecho
b(n+1)=b(n+1)-2*h;
//resuelvo el sistema
T=A\b;
T=[Tl;T];
plot(x,T);
//solucion analitica
den=exp(1)+exp(-1);
CA=(-1-exp(-1))/den;
CB=(1-exp(1))/den;
Ta=CA*exp(x)+CB*exp(-x)+1;
plot(x,Ta,'r');
endfunction
|
395e71f314eab9d0590811508d6ee4a2f3e204d1
|
13b0f479f56e4c3f226e08a77671d750c2a59e47
|
/qr-decomp/recover_Q.sce
|
d6de3ee911b97bb7f17729b3eb44ebe7a1267ca2
|
[
"MIT"
] |
permissive
|
lsDantas/Numerical-Linear-Algebra
|
cd73df6761e9dcac5bfe8f51317c907672d41b47
|
daeec474c6647ba8578e200814565e987711d7d7
|
refs/heads/master
| 2022-11-19T17:46:53.534130
| 2020-07-21T16:20:11
| 2020-07-21T16:20:11
| 281,447,235
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 841
|
sce
|
recover_Q.sce
|
///////////////////////////////////////////////////////////
// Recover Q
//
// Description: Produces an orthogonal matrix Q
// from the U matrix produced by the Householder
// method.
///////////////////////////////////////////////////////////
// Input:
// U: a m x n matrix produced by the Householder
// algorithm
///////////////////////////////////////////////////////////
// Output:
// Q: an m x m orthogonal matrix
///////////////////////////////////////////////////////////
function [Q] = recover_Q(U)
// Determine matrix dimensions and initialize Q
[m n]=size(U);
Q = eye(m,m);
// Compute Q from U
for i=n:-1:1
// Build Householder matrix H_i
H = eye(m,m);
H(i:m,i:m) = H(i:m,i:m) - 2 * U(i:m, i) * U(i:m, i)';
// Update Q
Q = H*Q;
end
endfunction
|
0f59a206680fc23308a3e04dbf4eae10d78c645b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2078/CH7/EX7.7/Example7_7.sce
|
6923564acb5c534d0845f82f8faf4c243f6b004d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 646
|
sce
|
Example7_7.sce
|
//Exa 7.7
clc;
clear;
close;
format('v',5);
//Given data :
Pc1=53;//in kW
V1=106;//in kV
Pc2=98;//in kW
V2=110.9;//in kV
Vph1=V1/sqrt(3);//in kV
Vph2=V2/sqrt(3);//in kV
//Formula : Pc=3*244/del*(f+25)*sqrt(r/d)*(Vph-Vdo)^2*10^-5;//kW/Km
disp("Using proportionality : Pc is proportional to (Vph-Vdo)^2");
disp("We have, Pc1/Pc2 = (Vph1-Vdo)^2/(Vph2-Vdo)^2");
Vdo=(Vph1-sqrt(Pc1/Pc2)*(Vph2))/(1-sqrt(Pc1/Pc2));
V3=113;//in kV
Vph3=V3/sqrt(3);//in kV
Pc3=Pc2*(Vph3-Vdo)^2/(Vph2-Vdo)^2;//in kW
disp(Pc3,"Corona Loss at 113 kV in kW : ");
VLine=sqrt(3)*Vdo;//in kV
disp(VLine,"Disruptive critical voltage between lines(kV): ");
|
78b42a30310f320be5f4cae6c6a62cc31a730b57
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1652/CH8/EX8.2/8_2.sce
|
9d68c7a17ff94aa36ff210380f0b94c93493af3b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 179
|
sce
|
8_2.sce
|
clc
//Initialization of variables
P=1.0132*10^6 //dynes/cm^2
A=100 //cm^2
z=10 //cm
//calculations
w=P*A*z*10^-7
cal=w/4.184
//results
printf("Calories = %.3f cal",cal)
|
369ec47154dfadb4c84d66d4a8f66d4e1d69690b
|
e3cbbc5e7d85ad8e75f34314755eeb32e59f221f
|
/TEST/view.tst
|
160339e88d55ecc2056af5641e8820126ee1f282
|
[
"Apache-2.0"
] |
permissive
|
ihgazni2/neggen
|
25f624b8008728e8f60140559770b4c8bec56a62
|
9bb88606cc8c7a470b1023a5dcad2c9929cd8dfc
|
refs/heads/master
| 2021-06-13T08:11:24.919179
| 2021-04-02T14:10:14
| 2021-04-02T14:10:14
| 166,251,568
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 2,376
|
tst
|
view.tst
|
var view = require("./view")
var vw = new view.View([1,1],[3,3],6,6)
> vw
View {
_etlspt: [ 0, 0 ],
_etrspt: [ 0, 6 ],
_eblspt: [ 6, 0 ],
_ebrspt: [ 6, 6 ],
_itlspt: [ 1, 1 ],
_ibrspt: [ 3, 3 ],
_itrspt: [ 1, 3 ],
_iblspt: [ 3, 1 ],
_etseglspt: [ 0, 1 ],
_etsegrspt: [ 0, 3 ],
_elsegtspt: [ 1, 0 ],
_elsegbspt: [ 3, 0 ],
_ebseglspt: [ 6, 1 ],
_ebsegrspt: [ 6, 3 ],
_ersegtspt: [ 1, 6 ],
_ersegbspt: [ 3, 6 ] }
>
> vw.
vw.__defineGetter__ vw.__defineSetter__ vw.__lookupGetter__ vw.__lookupSetter__ vw.__proto__
vw.constructor vw.hasOwnProperty vw.isPrototypeOf vw.propertyIsEnumerable vw.toLocaleString
vw.toString vw.valueOf
vw.z vw.zebl vw.zebot vw.zebr vw.zel
vw.zer vw.zetl vw.zetop vw.zetr vw.zinner
vw._eblspt vw._ebrspt vw._ebseglspt vw._ebsegrspt vw._elsegbspt
vw._elsegtspt vw._ersegbspt vw._ersegtspt vw._etlspt vw._etrspt
vw._etseglspt vw._etsegrspt vw._iblspt vw._ibrspt vw._itlspt
vw._itrspt
> vw.z()
Zone { _tl: [ 0, 0 ], _br: [ 6, 6 ] }
> vw.zinner()
Zone { _tl: [ 1, 1 ], _br: [ 3, 3 ] }
>
> vw.zetop()
Zone { _tl: [ 0, 1 ], _br: [ 0, 3 ] }
>
>
> vw.zebl()
Zone { _tl: [ 4, 0 ], _br: [ 6, 0 ] }
>
> vw.zebot()
Zone { _tl: [ 4, 1 ], _br: [ 6, 3 ] }
> vw.zebr()
Zone { _tl: [ 4, 4 ], _br: [ 6, 6 ] }
>
> vw.zel()
Zone { _tl: [ 1, 0 ], _br: [ 3, 0 ] }
>
> vw.zer()
Zone { _tl: [ 1, 4 ], _br: [ 3, 6 ] }
>
> vw.zetl()
Zone { _tl: [ 0, 0 ], _br: [ 0, 0 ] }
> vw.zetr()
Zone { _tl: [ 0, 4 ], _br: [ 0, 6 ] }
>
> var view = require("./view")
undefined
>
> var vw = new view.View([1,1],[3,3],6,6)
undefined
>
> vw.positions()
{ zinner: { top: 1, left: 1, width: 3, height: 3 },
zetl: { top: 0, left: 0, width: 1, height: 1 },
zetop: { top: 0, left: 1, width: 3, height: 1 },
zetr: { top: 0, left: 4, width: 3, height: 1 },
zel: { top: 1, left: 0, width: 1, height: 3 },
zer: { top: 1, left: 4, width: 3, height: 3 },
zebl: { top: 4, left: 0, width: 1, height: 3 },
zebot: { top: 4, left: 1, width: 3, height: 3 },
zebr: { top: 4, left: 4, width: 3, height: 3 } }
>
|
d6d80e0d4fe3af16a517fabb969e9633464bdad7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1760/CH7/EX7.18/EX7_18.sce
|
a4561361b9a381febde3b05c4ee70dd439a84daa
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 504
|
sce
|
EX7_18.sce
|
//EXAMPLE 7-18 PG NO-477-478
Ra=7;
Rb=3;
Rc=3;
A=(Ra+Rb)/Rb;
disp(' A is = '+string(A)+'');
B=Ra+Rc+[(Ra*Rc)/Rb];
disp(' B is = '+string(B)+'');
C=1/Rb;
disp(' C is = '+string(C)+'');
D=(Rb+Rc)/Rb;
disp(' D is = '+string(D)+'');
Z11=[(A*B)/(C*D)]^0.5;
disp(' Impedance is = '+string(Z11)+'ohm');
Z12=[(B*D)/(A*C)]^0.5;
disp(' Impedance is = '+string(Z12)+'ohm');
Q=1/cosh(2.62);
Y12=-(1/17);
disp(' Admittance is = '+string(Y12)+'siemens');
|
d3f004643baac4851af1a661dd3c43948fc46ef7
|
e176c804d3e82d065a9c9635dad92da21c1483a9
|
/libs/seuillage.sci
|
abc578e8864e2a9955300ca0a5d57d94311b38af
|
[
"MIT"
] |
permissive
|
Exia-Aix-2016/ExoLife
|
38f7d5e54a1fd26333f19d99a8b63f0d64cc4c4c
|
a88d4bc3b852f8a85b6c8cc0979ced29fb28b751
|
refs/heads/master
| 2021-09-07T01:47:04.742247
| 2018-02-15T11:57:47
| 2018-02-15T11:57:47
| 120,471,380
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 333
|
sci
|
seuillage.sci
|
function [render]=seuillage(img,seuil)
xmax = size(img,1)
ymax = size(img,2)
colorMin = 0
for x=1:xmax
for y=1:ymax
if (img(x,y) < seuil) then
img(x,y) = colorMin;
else
img(x,y) = seuil;
end
end
end
render = img;
endfunction
|
379689023807231f3a0eab0213365a0f80fe49c6
|
b03f367d0c655c7776c8474c5e21a44d0890ea3d
|
/docs/candidate/images/exp_broaching2/draw_graphics.sce
|
643fa95cc35c2b5b9126f12ef55dcc480d324ba6
|
[] |
no_license
|
Jacobi20/nano-vis
|
0f94c77c5a03a5d1185f654528c69e5841571cb9
|
9c713a5f20c5b8c676e0a0847c8131e2a996d784
|
refs/heads/master
| 2021-01-20T11:31:23.350419
| 2011-08-09T13:22:57
| 2011-08-09T13:22:57
| 37,013,226
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 16,067
|
sce
|
draw_graphics.sce
|
//PATH = "D:\workspace\Engine\candidate\images\exp_broaching2\";
//PATH = "D:\SPACE_MARINES_2_0\sci_docs\candidate\images\exp_broaching2\";
PATH = "E:\SPACE_MARINES_2_0\sci_docs\candidate\images\exp_broaching2\";
class1 = [5,21,22,36,39,44,46,48,49,52,53,68,73,74,80,81,85,89,94,97,100,101,105,106,110,112,115,118,119,121,128,132,138,139,141,144,145,161,176,179,180,181,184,188,194,195];
class2 = [3,9,13,28,34,35,42,43,56,64,65,83,91,122,127,177,189,191,196,198];
class3 = [2,12,16,20,24,25,30,31,38,45,55,58,63,67,69,87,90,96,104,120,124,129,131,133,134,136,142,146,150,156,157,159,162,164,165,168,170,171,175,182,183,186,187,199];
class4 = [1,4,7,8,10,15,17,18,19,23,26,27,29,32,33,37,40,41,47,50,51,54,57,59,60,61,62,70,71,72,75,77,78,79,82,84,86,88,92,93,95,98,99,102,103,107,108,109,111,113,114,116,117,123,126,130,135,137,140,147,148,149,151,152,153,154,155,158,160,163,166,167,169,173,174,178,185,190,192,193,197,200];
class5 = [6,11,14,66,76,125,143,172];
function [result, time, yaw, pitch, roll, pos_x, pos_y, pos_z, wave, velocity, angular, wave_length_coef, vel_coef, jonswap, narrow] = ReadPos( path )
result = -1;
time = [];
yaw = [];
pitch = [];
roll = [];
pos_x = [];
pos_y = [];
pos_z = [];
wave = [];
velocity = [];
angular = [];
wave_length_coef = 0;
vel_coef = 0;
jonswap = 0;
narrow = 0;
printf("...reading : %s\n", path);
[f, err] = mopen(path, 'r');
if ( err <> 0 ) then
return;
else
result = 1;
end
num = 0;
[num_read, wave_length_coef, vel_coef, jonswap, narrow] = mfscanf(f, "%f %f %i %i");
while (%t)
num = num + 1;
[num_read, ct, cyaw, cpitch, croll, cpos_x, cpos_y, cpos_z, cwave, cvelocity, cangular] = mfscanf(f, "%f %f %f %f %f %f %f %f %f %f");
if (num_read<=0) then break end
time(num) = ct;
yaw(num) = cyaw;
pitch(num) = cpitch;
roll(num) = croll;
pos_x(num) = cpos_x;
pos_y(num) = cpos_y;
pos_z(num) = cpos_z;
wave(num) = cwave;
velocity(num) = cvelocity;
angular(num) = cangular;
end
mclose(f);
endfunction
function [T, X, Y, YAW, ROLL, WAVE_HEIGHT, ANGULAR] = ReadLogs()
T = [];
X = [];
Y = [];
YAW = [];
ROLL = [];
WAVE_HEIGHT = [];
ANGULAR = [];
num = 0;
while %t
num = num + 1;
filename = sprintf("broaching_%i", num);
[r, t, yaw, pitch, roll, pos_x, pos_y, pos_z, wave, velocity, angular, wave_length_coef, vel_coef, jonswap, narrow] = ReadPos(PATH+filename+".log");
if r < 0 then break end
for i=1:size(t, 1);
T(num, i) = t(i);
X(num, i) = pos_x(i);
Y(num, i) = pos_y(i);
YAW(num, i) = yaw(i);
ROLL(num, i) = roll(i);
WAVE_HEIGHT(num, i) = wave(i);
ANGULAR(num, i) = angular(i);
end
end
endfunction
function DrawShip(pos_x, pos_y, yaw)
l = 20;
w = 6;
value_x = [-l/2 -l/2 -l/2 l/2 l/2 -l/2];
value_y = [-w/2 w/2 w/2 0 0 -w/2];
x = value_x * cosd(yaw) - value_y * sind(yaw) + ones(value_x) * pos_x;
y = value_x * sind(yaw) + value_y * cosd(yaw) + ones(value_y) * pos_y;
xset("thickness",2);
xset("clipoff");
xarrows(x , y, 0, 5);
xset("thickness",1);
endfunction
function DrawPoint(x, y, size, classnum)
xset("color", classnum);
xfarc(x - size / 2, y - size / 2, size, size, 360*64, 360*64);
xset("color", 1);
xarc(x - size / 2, y - size / 2, size, size, 360*64, 360*64);
endfunction
function DrawAndSaveGraphics(num, image_filename, T, X, Y, YAW, ROLL, WAVE_HEIGHT, ANGULAR)
xset("wdim", 800,600)
clf();
subplot(221);
xtitle("$\Large Траектория$", "$\Large \xi, м$", "$\Large \eta, м$");
plot2d(X(num,:), Y(num,:));
a=get("current_axes");
a.tight_limits = "on";
//a.data_bounds = [0, -300; 400, 300];
a.isoview = "on";
// a.x_location = "middle";
for i=1:50:size(YAW(num,:),2) do
DrawShip(X(num,i), Y(num,i), YAW(num,i));
xstring(X(num, i),Y(num,i) + 5,sprintf("%.2fs", T(num, i)));
end
subplot(222);
xtitle("$\Large Крен\ и\ курс$", "$\Large t, с$", "$\Large \theta^{\circ}, \phi^{\circ}$");
plot2d( T(num,:), ROLL(num,:), 1);
a=gca();
a.isoview = "off";
a.tight_limits = "on";
a.children(1).children.line_style = 2;
a.data_bounds = [0, -100; 60, 100];
plot2d( T(num,:), YAW(num,:), 1);
a=gca();
a.isoview = "off";
a.tight_limits = "on";
a.children(1).children.line_style = 1;
a.data_bounds = [0, -100; 60, 100];
legend(["$\Large \theta$" "$\Large \phi$"], 2);
subplot(223);
xtitle("$\Large Высота\ волны$", "$\Large t, с$", "$\Large h,м$");
plot2d(T(num,:), WAVE_HEIGHT(num,:), 1);
a=gca();
a.tight_limits = "on";
a.data_bounds = [0, -1.0; 60, 1.0];
subplot(224);
xtitle("$\Large Угловая\ скорость$", "$\Large t, с$", "$\Large \dot\phi,рад/c$");
plot2d(T(num,:), ANGULAR(num,:), 1);
a=gca();
a.tight_limits = "on";
a.data_bounds = [0, -0.25; 60, 0.25];
xs2pdf(gcf(), PATH+image_filename);
endfunction
function DrawTrajecoriesForClass(class, id, X, Y)
for num = class
clsid = ["I", "II", "III", "IV", "V"];
xtitle("$\Large Класс\ траекторий\ "+clsid(id)+"$", "$\Large \xi, м$", "$\Large \eta, м$");
pos_y = [];
if Y(num, size(Y(num,:),2)) > 0 then
pos_y = Y(num,:);
else
pos_y = -Y(num,:);
end
plot2d(X(num,:), pos_y, 1);
a=get("current_axes");
a.tight_limits = "on";
a.data_bounds = [0, -50; 400, 250];
a.isoview = "on";
a.x_location = "origin";
end
endfunction
// Hardcode for class5
function DrawTrajecoriesForClass5(X, Y)
for num = class5
xtitle("$\Large Класс\ траекторий\ V$", "$\Large \xi, м$", "$\Large \eta, м$");
pos_y = [];
if Y(num, size(Y(num,:),2)) - Y(num, size(Y(num,:),2) - 1) > 0 then
pos_y = -Y(num,:);
else
pos_y = Y(num,:);
end
plot2d(X(num,:), pos_y);
a=get("current_axes");
a.tight_limits = "on";
a.data_bounds = [0, -50; 400, 250];
a.isoview = "on";
a.x_location = "origin";
end
endfunction
function [ANGLE_SUM, DISTANCE, MAXROLL] = CalcParamsForClass(Y, YAW, ROLL, class)
ANGLE_SUM = [];
DISTANCE = [];
MAXROLL = [];
num = 0;
for i=class
num = num + 1;
DISTANCE(num) = abs(max(Y(i,:)) - min(Y(i,:)));
ANGLE_SUM(num) = 0;
for j = 2:size(Y,2)
ANGLE_SUM(num) = ANGLE_SUM(num) + abs(YAW(i,j) - YAW(i,j - 1));
end
MAXROLL(num) = max(abs(ROLL(i,:)));
end
endfunction
function DrawPointsRoll (ANGLE_SUM, DISTANCE, MAXROLL, classnum)
for i = 1:size(ANGLE_SUM,1)
DrawPoint(ANGLE_SUM(i), DISTANCE(i), MAXROLL(i) / 90 * 30, classnum);
end
endfunction
function DrawPointsEnergy (ANGLE_SUM, DISTANCE, MAXROLL, classnum)
for i = 1:size(ANGLE_SUM,1)
DrawPoint(ANGLE_SUM(i), DISTANCE(i), (ANGLE_SUM(i) + MAXROLL(i)) / 250 * 15, classnum);
end
endfunction
function DrawAngleShiftFromRoll(ANGLE_SUM, DISTANCE, MAXROLL)
plot2d([0 0 45 45], [-250 250 250 -250], 1);
xpoly([0 45],[0 0]);
width = 0.02;
for i = 1:size(ANGLE_SUM,1)
xset("color", 2);
xfpoly([MAXROLL(i)-width/2 MAXROLL(i)+width/2 MAXROLL(i)+width/2 MAXROLL(i)-width/2], [ANGLE_SUM(i) ANGLE_SUM(i) 0 0], 0);
xset("color", 5);
xfpoly([MAXROLL(i)-width/2 MAXROLL(i)+width/2 MAXROLL(i)+width/2 MAXROLL(i)-width/2], [0 0 -DISTANCE(i) -DISTANCE(i)], 0);
xset("color", 1);
end
endfunction
function [major_x, major_y] = CalcTrajectoryVectors (class, T, X, Y)
major_x = [];
major_y = [];
timestamps = [0 9 11 19 21 29 31 39 41 49 51 59];//18 22 38 42 60];
indices = [];
num = 0;
for i = timestamps
num = num + 1;
indices(num) = find(abs(T(1,:) - i) < 0.2, 1)
end
for k = 1:size(indices, 1)
major_x(k) = mean(X(class,indices(k)));
major_y(k) = 0;
for j = class
if Y(j, size(Y(j,:),2)) > 0 then
major_y(k) = major_y(k) + Y(j,indices(k));
else
major_y(k) = major_y(k) - Y(j,indices(k));
end
end
major_y(k) = major_y(k) / size(class, 2);
end
endfunction
//Hardcode for class5
function [major_x, major_y] = CalcTrajectoryVectors5 (T, X, Y)
major_x = [];
major_y = [];
timestamps = [0 9 11 19 21 29 31 39 41 49 51 59];//18 22 38 42 60];
indices = [];
num = 0;
for i = timestamps
num = num + 1;
indices(num) = find(abs(T(1,:) - i) < 0.2, 1)
end
for k = 1:size(indices, 1)
major_x(k) = mean(X(class5,indices(k)));
major_y(k) = 0;
for j = class5
if Y(j, size(Y(j,:),2)) - Y(j, size(Y(j,:),2) - 1) > 0 then
major_y(k) = major_y(k) - Y(j,indices(k));
else
major_y(k) = major_y(k) + Y(j,indices(k));
end
end
major_y(k) = major_y(k) / size(class5, 2);
end
endfunction
function DrawArrow(x,y)
th = 0.2;
arrow_x = [-0.5 -0.5 0.1 0.1 0.5 0.1 0.1];
arrow_y = [-th/2 th/2 th/2 1.1*th 0 -1.1*th -th/2];
angle = atan(y(2) - y(1), x(2) - x(1));
c = [x(1) + (x(2)-x(1))/2, y(1) + (y(2)-y(1))/2];
l = sqrt((x(2)-x(1))*(x(2)-x(1))+(y(2)-y(1))*(y(2)-y(1)));
arrow_x = arrow_x * l;
arrow_y = arrow_y * l;
actual_x = arrow_y * sin(angle) + arrow_x * cos(angle) + c(1);
actual_y = -arrow_y * cos(angle) + arrow_x * sin(angle) + c(2);
xset("color", color(255,255,255));
xfpoly(actual_x,actual_y);
xset("color", 1);
xpoly(actual_x,actual_y, "lines", 1);
endfunction
function DrawArrows(x,y)
num = 1;
while num <= size(x,1)
DrawArrow([x(num), x(num + 1)],[y(num), y(num + 1)]);
num = num + 2;
end
endfunction
function [correlation] = CorForVectors(v1, v2)
m1 = mean(v1);
m2 = mean(v2);
msum = 0;
sqsumx = 0;
sqsumy = 0;
for i=1:size(v1,2)
msum = msum + (test1(i) - m1)*(test2(i) - m2);
sqsumx = sqsumx + (test1(i) - m1)*(test1(i) - m1);
sqsumy = sqsumy + (test2(i) - m2)*(test2(i) - m2);
end
correlation = msum / sqrt(sqsumx*sqsumy);
endfunction
clc();
[T, X, Y, YAW, ROLL, WAVE_HEIGHT, ANGULAR] = ReadLogs();
// Draw set of trajectories for each class
// Ugly stuff but scilab seems to work in peculiar way in case of vector of vectors with different dimensions
if ~%t then
xset("wdim", 800,600)
clf();
subplot(2,3,1);
DrawTrajecoriesForClass(class1, 1, X, Y);
[major_x major_y] = CalcTrajectoryVectors(class1, T, X, Y);
DrawArrows(major_x, major_y);
// xset("thickness",3);
// xarrows(major_x, major_y, -1, 7);//color(255,255,255));
// xset("thickness",1);
xs2pdf(gcf(), PATH+"\class_traj_1");
subplot(2,3,2);
DrawTrajecoriesForClass(class2, 2, X, Y);
[major_x major_y] = CalcTrajectoryVectors(class2, T, X, Y);
DrawArrows(major_x, major_y);
// xset("thickness",3);
// xarrows(major_x, major_y, -1, 5);
// xset("thickness",1);
xs2pdf(gcf(), PATH+"\class_traj_2");
subplot(2,3,3);
DrawTrajecoriesForClass(class3, 3, X, Y);
[major_x major_y] = CalcTrajectoryVectors(class3, T, X, Y);
DrawArrows(major_x, major_y);
// xset("thickness",3);
// xarrows(major_x, major_y, -1, 5);
// xset("thickness",1);
xs2pdf(gcf(), PATH+"\class_traj_3");
subplot(2,3,4);
DrawTrajecoriesForClass(class4, 4, X, Y);
[major_x major_y] = CalcTrajectoryVectors(class4, T, X, Y);
DrawArrows(major_x, major_y);
// xset("thickness",3);
// xarrows(major_x, major_y, -1, 5);
// xset("thickness",1);
xs2pdf(gcf(), PATH+"\class_traj_4");
subplot(2,3,5);
DrawTrajecoriesForClass5(X, Y);
[major_x major_y] = CalcTrajectoryVectors5(T, X, Y);
DrawArrows(major_x, major_y);
// xset("thickness",3);
// xarrows(major_x, major_y, -1, 5);
// xset("thickness",1);
xs2pdf(gcf(), PATH+"\class_traj_5");
end
/////////////////////
// Draw all graphics for typical cases
////////
if %t then
typical = [36, 189, 96, 32, 14];
i = 0;
for num = typical
i = i + 1;
DrawAndSaveGraphics(num, sprintf("class_typical_%i", i), T, X, Y, YAW, ROLL, WAVE_HEIGHT, ANGULAR);
end
end
//Draw Sum angle-Shift chart where point size depends on max roll angle
if ~%t then
clf();
xtitle("", "Angle sum", "Shift");
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class1);
plot2d([0 250 250 0], [250 250 0 0], 1);
DrawPointsRoll(ang, dist, maxroll,1);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class2);
plot2d([0 250 250 0], [250 250 0 0], 2);
DrawPointsRoll(ang, dist, maxroll,2);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class3);
plot2d([0 250 250 0], [250 250 0 0], 3);
DrawPointsRoll(ang, dist, maxroll, 3);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class4);
plot2d([0 250 250 0], [250 250 0 0], 4);
DrawPointsRoll(ang, dist, maxroll,4);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class5);
plot2d([0 250 250 0], [250 250 0 0], 5);
DrawPointsRoll(ang, dist, maxroll,5);
legend(["1" "2" "3" "4" "5"]);
plot2d([0 250 250 0], [250 250 0 0], 1);
a=get("current_axes");
a.isoview = "on";
xs2pdf(gcf(), PATH+"\angle_shift_rollsized");
end
//Draw Sum angle-Shift chart where point size depends on "energy"
if ~%t then
clf();
xtitle("", "Angle sum", "Shift");
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class1);
plot2d([0 250 250 0], [250 250 0 0], 1);
DrawPointsEnergy(ang, dist, maxroll,1);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class2);
plot2d([0 250 250 0], [250 250 0 0], 2);
DrawPointsEnergy(ang, dist, maxroll,2);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class3);
plot2d([0 250 250 0], [250 250 0 0], 3);
DrawPointsEnergy(ang, dist, maxroll, 3);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class4);
plot2d([0 250 250 0], [250 250 0 0], 4);
DrawPointsEnergy(ang, dist, maxroll,4);
[ang, dist, maxroll] = CalcParamsForClass(Y, YAW, ROLL, class5);
plot2d([0 250 250 0], [250 250 0 0], 5);
DrawPointsEnergy(ang, dist, maxroll,5);
legend(["1" "2" "3" "4" "5"]);
plot2d([0 250 250 0], [250 250 0 0], 1);
a=get("current_axes");
a.isoview = "on";
xs2pdf(gcf(), PATH+"\angle_shift_energysized");
end
//clf();
////[cov, Mean] = corr(ANGULAR, ROLL, 1);
////
//co = [];
//for j = 1:200
// co(j) = CorForVectors(YAW(j,:), ROLL(j,:));
//end
//plot2d(1:200,co, 2);
//xtitle("Yaw-roll correlation", "Experiment number", "yaw-roll correlation");
//xs2png(gcf(), PATH+"\yaw_roll_corellation");
//
//clf();
//co = [];
//for j = 1:200
// co(j) = CorForVectors(ANGULAR(j,:), ROLL(j,:));
//end
//plot2d(1:200,co, 2);
//xtitle("Angular-roll correlation", "Experiment number", "angular-roll correlation");
//xs2png(gcf(), PATH+"\angular_roll_corellation");
//
//clf();
//co = [];
//for j = 1:200
// co(j) = CorForVectors(ANGULAR(j,:), YAW(j,:));
//end
//plot2d(1:200,co, 2);
//xtitle("Angular-yaw correlation", "Experiment number", "angular-yaw correlation");
//xs2png(gcf(), PATH+"\angular_yaw_corellation");
//
//clf();
//co = [];
//for j = 1:200
// co(j) = CorForVectors(ROLL(j,:), Y(j,:));
//end
//plot2d(1:200,co, 2);
//xtitle("Roll-Y correlation", "Experiment number", "roll-y correlation");
//xs2png(gcf(), PATH+"\roll_y_corellation");
|
b5db59e5748db2dd2a988ec6080cae481aff55ea
|
6afc7fb4c7404da6523ba7b016531b1fc4ea53d6
|
/Scilab/Scilab/Задача №3/prog3.sci
|
f7a6132c6cce3a0a3677a91a16c2ce967c52cee2
|
[] |
no_license
|
GarageInc/old-university-projects
|
8867bb29e0229f56c4996a6e7241648d8db7ec19
|
fb50c5273b58898ecde0a351e694929a8fa1ad81
|
refs/heads/master
| 2021-06-04T21:09:51.305920
| 2016-09-26T15:51:19
| 2016-09-26T15:51:19
| 50,765,728
| 5
| 6
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 444
|
sci
|
prog3.sci
|
function [imax] = prog3(A)
n = 4;
mmax = -1;
imax = 0;
for i = 1:n
summ = 0;
kol = 0;
for j = 1:n
if A(i, j) > 0 then
summ = summ + A(i, j);
kol = kol + 1;
end
end
med = 0
if kol <> 0 then med = summ / kol;
end
if med > mmax then
mmax = med;
imax = i;
end
end
endfunction
|
555b182f29f81826c946e48ae467c3a19ec6e969
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3440/CH8/EX8.1/Ex8_1.sce
|
efa6edbed6bf0f67a208d34b9b96ccb8bfcb567e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 455
|
sce
|
Ex8_1.sce
|
clc
T=300 //K
k=8.617*10^-5 //eV/K
q=1.6*10**-19 //C
epsilonx=8.85*10^-14 //F/cm
epsilonm=3.3*10^5 //V/cm
ni=9.65*10^9//cm^-3
ND=2*10^18//cm^-3
b=1*10^-4//cm
W=6*10^-4//cm
Q=2*10^12//charges/cm^2
xA=1*10^-4//cm
vx=10^7//Hz
Vb=(epsilonm*b)+[epsilonm-((q*Q)/(epsilonx*11.9))]*(W-b)
disp(Vb,"Vb in V is= ")
d=([epsilonm-((q*Q)/(epsilonx*11.9))]*(W-b))/(W-b)
disp(d,"drift region in V/cm is= ")
f=vx/[2*(W-xA)]
disp(f,"f in Hz is= ")
|
83447303d66946c2e681d19018366be7f7e42808
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/215/CH15/EX15.6/ex15_6.sce
|
039494c524b3177bb05a771afcdfc05ab2c5b006
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 322
|
sce
|
ex15_6.sce
|
clc
//Example 15.6
//Install Symbolic toolbox
//Calculate the voltage
//Performing source transformatiom on the s-domain circuit
//Solving for V(s)
syms s
s=%s
V=(180*s^4)/((s^2+9)*(90*s^3+18*s^2+40*s+4))
Vp=pfss (V)
Vp1=ilaplace(Vp(1))
Vp2=ilaplace(Vp(2))
Vp3=ilaplace(Vp(3))
v=Vp1+Vp2+Vp3
disp(v,'v(t)=')
|
484fdcdb6a6c8c88f48b0f18d0607df6f08c56f9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2594/CH1/EX1.17/Ex1_17.sce
|
327acc94179d246270bf27d343a3bb547889c4e0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 372
|
sce
|
Ex1_17.sce
|
clc
a=5*10^-8
disp("a= "+string(a)+"cm") //initializing value of lattice constant.
N=2
disp("N= "+string(N)) //initializing value of no.of atoms in unit cell.
V=a^3
disp("V=a^3 = "+string(V)+"cm^3") //initializing value of total Volume of the unit cell.
na =(N/(V))
disp("na=(no.of atoms in unit cell/Volume of the unit cell) =(N/(V))= "+string(na))//calculation
|
d0d4d674b9ae307da157d27a338712464a645e45
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1430/CH3/EX3.3/exa3_3.sce
|
4f5b5ece29f904b53cab5f56a151f1e9f5597dee
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 557
|
sce
|
exa3_3.sce
|
// Example 3.3
// Calculating Power Transfer and Efficiency
v_s=120; // Open Circuit Voltage
R_s=0.2+4.8;// Source resistance
R_L=5; // From Maximum Power transfer theorem
P_max=(120)^2/(4*5); // Maximum Power Transfered
P_hp=P_max/746;// Maximum Power in Horsepower
i=120/(5+4.8+0.2);// Current in circuit
P_s=(i)^2*5;// Power dissipated in Source
Eff=P_max/(P_max+P_s); // Power Transfer Efficiency
disp(P_max,"Maximum Power Transfered(in Watt)=")
disp(P_hp,"Maximum Power Transfered(in Horsepower)=")
disp(Eff,"Power Transfer Efficiency =")
|
956c231acb9f6632eecb8a1be60fdd7affdb63b7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1997/CH11/EX11.20/example20.sce
|
40d025643bc6f6b5f79894e66ed07fed5d28014b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 845
|
sce
|
example20.sce
|
//Chapter-11 example 20
//=============================================================================
clc;
clear;
//input data
Pp = 1*10^6;//peak power in watts
PW = 1*10^-6;//pulse width in sec
NPd = 20;//pulses in one dwell period
PRF = 1000;//pulse repetitive frequency
//calculations
PE = Pp*PW;//pulse energy in joule
PED = NPd*PE;//pulse energy in one dwell period
D = PW*PRF;//Duty cycle
Pav = Pp*D;//average power in watts
//output
mprintf('Average Power is %g watts\n Duty Cycle is %e\n Pulse Energy is %g Joules\n Pulse Energy in one Dwell Period is %g Joules\n',Pav,D,PE,PED);
mprintf(' Note: In textbook Values of PRF and pulses in one dwell period are varied from given values in question while solving ' );
;
//================end of the program============================================
|
3658fe5660ad3fb41ea6c601f747ada81bb3d42e
|
b34461c9ddff1ba130b67023d6e568ada42830dc
|
/workspace/mission N2.sce
|
a0dd594cfd96fa4db800d8a341ea3f358f612cb7
|
[] |
no_license
|
AdrienKegler/Projet-Exolife
|
f72287fdc41a07b88f03b8346dafab93b4539b07
|
249f0861dc4ba3f2a7639ea60b7d12b45e717933
|
refs/heads/master
| 2020-05-25T14:05:45.213740
| 2017-03-17T09:16:20
| 2017-03-17T09:16:20
| 84,937,694
| 0
| 0
| null | 2017-03-15T10:15:55
| 2017-03-14T10:45:25
|
Scilab
|
UTF-8
|
Scilab
| false
| false
| 800
|
sce
|
mission N2.sce
|
// Etape 1
// Convertion de l'image en matrice
path_name = 'D:\Users\ADRIEN KEGLER\Documents\Visual Studio 2015\Projects\Exolife\Projet-Exolife\images\Formes.pbm';
img_in = readpbm (path_name);
// Etape 2
// Affichage de l'image de base
display_gray(img_in);
// Etape 3
// Creation de l'element structurant
structurant = zeros(3,3);
structurant = [0,0,0;255,255,255;0,0,0];
// Etape 4
// Erosion de l'image
image_1 = erosion(img_in,structurant,2,2);
// Etape 5
// Dilation de l'image
image_out = dilatation(image_1,structurant,2,2);
// Etape 6
// Affichage de l'image finale
figure;
display_gray (image_out);
//Etape 7
// Enregistrer la matrice sous forme d'image
writepbm (image_out,"D:\Users\ADRIEN KEGLER\Documents\Visual Studio 2015\Projects\Exolife\Projet-Exolife\images\mission_N2.pbm");
|
3b833aec003b2a9414ca490d8b38cd8431f81939
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/percent/%lss_c_r.sci
|
39990c36686e4ad6b6f3a5aec05fe657532baf0b
|
[
"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
| 119
|
sci
|
%lss_c_r.sci
|
function [s]=%lss_c_r(s1,s2)
//s=%lss_c_r(s1,s2) iff s=[s1,s2]
// Copyright INRIA
[s1,s2]=sysconv(s1,s2);s=[s1,s2];
|
bb85176072762a254127be6f033e93a3b5cf293e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2087/CH4/EX4.35/example4_35.sce
|
af3ef05314ad2dcc9473bf3b5991a4c5b9cbf369
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 588
|
sce
|
example4_35.sce
|
//example 4.35
//calculate 200 year flood for stream using gumbel's method
clc;funcprot(0);
//given
sigma=1.1413; //standard deviation
yn=0.5436;
T=50;
y50=-2.303*log10(2.303*log10(T/(T-1)));
K50=(y50-yn)/sigma;
T=100;
y100=-2.303*log10(2.303*log10(T/(T-1)));
K100=(y100-yn)/sigma;
x50=878; x100=970; //given peak flood
A=[K50 1;K100 1];
B=[x50;x100];
C=A\B;
xavg=C(2);
sigmad=C(1);
T=200;
y200=-2.303*log10(2.303*log10(T/(T-1)));
K200=(y200-yn)/sigma;
x200=xavg+K200*sigmad;
x200=round(x200);
mprintf("200 year flood for stream=%f cumecs.",x200);
|
946f713ff0c27f45cef0a928a2bbc8faa8c965f6
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/ngram/5.2_7.tst
|
9aa82dd14170ebca0fcd58a67a2eb7e562345747
|
[] |
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
| 735,343
|
tst
|
5.2_7.tst
|
2 114:1 117:1 168:1 420:1 440:1 626:1 684:1 744:1 1075:1 1084:1 1335:1 1361:1 1430:1 1462:1 1632:1 1681:1 1756:1 1764:1 1766:1 1848:1 1993:1 2109:1 2113:1 2263:1 2538:1 2573:1 2579:1 2708:1 2788:1 3035:1 3053:1 3059:1 3315:1 3756:1 4065:1 4074:1 4411:1 4417:1 4458:1 4465:1 4679:1 4929:1 5044:1 5122:1 5451:1 5459:1 5518:1 5562:2 5783:1 6144:1 6235:1 6646:1 6768:1 7161:1 7297:1 7371:1 7889:1 8100:1 8446:1 8547:1 8774:3 8808:1 9022:1 9254:1 9320:1 9456:1 9475:1 9624:1 9661:1 9687:1 9765:1 9845:1 10354:1 10444:1 10499:1 10501:1 10642:1 10770:1 11053:2 11070:1 11210:1 11220:1 12013:1 12025:1 12442:1 12460:1 12485:1 12893:1 12903:1 13243:1 13292:1 13297:1 13303:1 13329:1 13334:1 13625:1 14281:1 14433:1 14549:1 14741:1 14928:1 14955:1 15349:1 15509:1 15591:1 15683:1 15714:1 15832:1 15908:1 16011:1 16505:1 16511:1 16553:1 16606:1 16692:1 16968:1 17001:1 17062:1 17502:1 17755:1 17762:1 18250:1 18326:1 18733:1 19054:1 19192:1 19222:1 19245:1 19515:1 19772:1 19784:1 19914:1 20079:1 20192:1 20975:59 21102:1 21553:1 21834:1 21836:1 21991:1 22062:1 22246:1 22316:1 23109:1 23392:1 23869:1 23906:1 24038:1 24202:1 24249:1 24333:1 24443:1 24786:1 25023:1 25154:1 25230:1 25240:1 25463:1 25591:1 25724:1 25778:1 25792:1 26115:1 26222:1 26306:1 26395:1 26804:1 26947:1 27019:1 27688:1 27831:1 28053:1 28069:1 28111:1 28399:1 28417:1 28477:1 28646:1 28671:1 28682:1 28720:1 28819:1 28887:1 29039:1 29259:1 29373:1 29607:1 29676:1 29689:1 29828:1 30385:1 30473:1 30570:1 30624:1 30804:1 30821:1 30863:1 30874:1 30978:1 30982:1 31266:1 31291:1 31346:1 31587:1 31631:2 32056:1 32092:1 32159:1 32365:1 32615:1 32713:1 32804:1 32849:1 32943:1
2 114:1 117:2 168:1 420:1 440:1 538:1 626:1 684:1 744:2 859:1 915:1 965:1 1034:1 1065:1 1075:1 1084:1 1193:1 1335:1 1361:2 1430:1 1462:2 1466:1 1510:1 1632:2 1674:1 1681:1 1756:1 1764:1 1766:1 1768:1 1848:1 1993:1 2097:1 2109:1 2113:1 2263:1 2538:1 2562:1 2573:1 2579:1 2667:1 2708:1 2788:2 3035:2 3053:2 3059:1 3122:1 3315:2 3319:1 3731:1 3756:1 3774:1 3936:1 3970:1 4065:1 4074:1 4362:1 4411:1 4417:1 4458:1 4465:2 4679:1 4798:1 4929:2 5044:1 5105:1 5122:1 5315:1 5447:1 5451:1 5459:1 5515:1 5518:1 5562:2 5714:1 5716:1 5783:1 6144:1 6198:1 6235:1 6371:1 6610:1 6646:1 6660:1 6768:1 7139:1 7161:1 7297:1 7349:1 7371:2 7528:1 7718:1 7854:1 7889:2 8100:1 8446:1 8503:1 8547:1 8708:1 8726:1 8774:3 8784:1 8808:1 8832:1 8853:1 8898:1 8953:1 8989:1 9022:1 9079:1 9254:1 9306:1 9320:2 9352:1 9456:2 9475:1 9624:1 9661:1 9675:1 9687:1 9692:1 9765:2 9845:1 10354:1 10413:1 10428:1 10444:1 10499:1 10501:2 10642:1 10769:1 10770:1 10818:1 11053:2 11070:1 11188:1 11210:2 11220:1 11380:1 11529:1 11633:1 11983:1 12013:1 12025:1 12180:1 12442:1 12460:1 12485:1 12499:1 12506:1 12575:1 12761:1 12893:1 12903:1 13040:1 13243:1 13292:1 13297:1 13303:1 13329:1 13334:1 13462:1 13625:1 13770:1 14201:1 14221:1 14281:1 14433:2 14549:1 14741:1 14758:1 14928:1 14935:1 14955:1 15171:1 15181:1 15204:1 15285:1 15349:1 15435:1 15509:1 15591:1 15595:1 15683:1 15714:1 15732:1 15787:1 15821:1 15832:1 15908:1 16011:2 16115:1 16241:1 16243:1 16260:1 16338:1 16410:1 16505:2 16511:1 16553:1 16606:1 16692:1 16725:1 16737:1 16858:1 16968:2 17001:1 17062:1 17116:1 17502:1 17755:1 17762:1 17779:1 17907:1 18072:1 18200:1 18250:1 18326:1 18497:1 18554:1 18626:1 18733:1 19054:2 19110:1 19192:1 19222:1 19245:2 19515:1 19607:1 19772:1 19784:1 19914:1 20079:1 20192:1 20724:1 20975:161 21027:1 21102:1 21110:1 21502:1 21553:1 21653:1 21730:1 21824:1 21834:1 21836:2 21991:1 21998:1 22062:2 22068:1 22246:1 22286:1 22316:1 22536:1 22855:1 23086:1 23109:1 23143:1 23284:1 23307:1 23392:1 23787:1 23869:1 23906:1 23929:1 23977:1 23980:1 24038:1 24202:2 24249:1 24333:1 24443:1 24584:1 24786:1 25009:1 25023:1 25092:1 25154:1 25230:1 25240:1 25273:1 25463:1 25557:1 25591:2 25666:1 25724:1 25778:1 25792:1 26115:2 26222:1 26306:1 26395:1 26598:1 26696:1 26804:1 26942:1 26947:1 27019:1 27119:1 27121:1 27141:1 27471:1 27596:1 27688:1 27714:1 27831:1 27952:1 28053:2 28069:2 28111:1 28399:2 28417:1 28477:1 28646:1 28664:1 28671:1 28682:1 28720:1 28769:1 28819:1 28824:1 28887:1 29024:1 29036:1 29039:1 29107:1 29236:1 29259:1 29316:1 29373:2 29388:1 29391:2 29506:1 29607:1 29676:1 29689:1 29828:2 30048:1 30197:1 30255:1 30385:1 30428:1 30473:1 30570:1 30624:1 30804:1 30821:2 30863:2 30874:1 30978:1 30982:2 31250:1 31266:2 31291:1 31340:1 31346:1 31587:2 31631:2 31709:1 32056:2 32092:1 32155:1 32159:2 32171:1 32365:1 32539:1 32611:1 32615:2 32713:1 32777:1 32804:2 32849:2 32943:1
2 17:1 41:1 100:1 114:1 117:2 118:1 168:1 211:1 335:1 420:1 440:1 538:1 579:1 626:1 684:1 744:3 752:2 859:1 908:1 915:1 965:1 1034:1 1065:1 1075:1 1084:1 1090:1 1173:1 1193:1 1335:1 1361:3 1378:2 1405:1 1430:1 1462:2 1466:1 1510:1 1632:2 1674:1 1681:2 1756:1 1764:1 1766:1 1768:1 1781:1 1848:1 1993:1 2047:1 2077:1 2097:1 2109:1 2113:1 2245:1 2263:1 2538:1 2562:1 2573:2 2579:1 2585:1 2627:1 2653:1 2667:1 2708:1 2714:1 2760:1 2788:2 3035:2 3053:2 3059:1 3122:1 3313:1 3315:3 3319:1 3384:1 3451:1 3731:1 3756:1 3774:1 3909:1 3936:1 3970:1 4065:1 4074:1 4362:1 4407:1 4411:1 4417:1 4458:1 4465:3 4531:1 4592:1 4604:1 4668:1 4679:1 4798:1 4929:3 5044:1 5105:1 5122:1 5315:1 5447:1 5451:1 5459:1 5515:1 5518:1 5562:2 5563:1 5714:1 5716:1 5783:1 6092:1 6136:1 6144:1 6198:1 6235:1 6371:1 6448:1 6593:1 6610:1 6646:1 6660:1 6768:1 6786:1 6936:1 7035:1 7139:1 7161:1 7261:1 7297:2 7313:1 7349:1 7371:2 7466:1 7528:1 7703:1 7718:1 7738:1 7854:1 7889:2 8100:1 8297:1 8446:1 8503:1 8547:1 8708:1 8726:1 8774:5 8784:1 8794:1 8798:1 8800:1 8808:1 8832:1 8853:1 8898:1 8953:1 8989:1 9022:1 9079:1 9254:1 9306:1 9320:3 9352:1 9438:1 9456:3 9475:1 9624:1 9661:1 9675:1 9687:1 9692:1 9765:2 9845:1 10082:1 10133:1 10263:1 10343:1 10354:1 10413:1 10428:1 10444:1 10499:1 10501:2 10642:1 10769:1 10770:1 10818:1 11053:2 11070:1 11188:1 11210:3 11220:1 11297:1 11380:1 11420:1 11474:1 11493:1 11529:1 11633:1 11983:1 12013:1 12025:1 12067:1 12180:1 12442:1 12460:1 12485:1 12499:1 12506:1 12575:1 12610:1 12761:1 12893:1 12903:1 13040:1 13243:1 13292:1 13297:1 13303:1 13329:1 13334:1 13340:1 13462:1 13594:1 13625:1 13747:1 13770:1 13865:1 13975:1 13998:1 14019:1 14201:1 14221:1 14281:1 14288:1 14402:1 14433:3 14549:1 14741:1 14758:1 14916:1 14928:1 14935:1 14955:1 15171:1 15181:1 15204:1 15285:1 15349:1 15435:1 15509:2 15584:1 15591:1 15595:1 15661:1 15683:1 15714:1 15732:1 15787:1 15821:1 15832:1 15908:1 16011:2 16115:2 16241:1 16243:1 16260:1 16338:1 16410:1 16505:3 16511:1 16542:1 16553:1 16606:1 16692:1 16725:1 16737:1 16858:1 16968:2 17001:1 17062:1 17116:1 17365:1 17502:1 17755:1 17762:1 17779:1 17780:1 17792:1 17907:1 17956:1 18065:1 18072:1 18200:1 18250:1 18326:1 18474:1 18489:1 18497:1 18554:1 18626:1 18733:1 18878:1 18915:1 19038:1 19054:5 19110:1 19192:1 19222:1 19245:2 19331:1 19404:1 19515:1 19607:1 19666:1 19772:2 19784:1 19914:1 20079:1 20192:2 20287:1 20304:1 20416:1 20488:1 20724:1 20744:1 20975:230 21027:1 21051:1 21102:1 21110:1 21152:1 21502:1 21553:1 21653:1 21730:1 21824:1 21834:2 21836:2 21881:1 21942:1 21991:1 21998:1 22062:2 22068:1 22081:1 22162:1 22246:1 22286:1 22316:1 22536:1 22826:1 22855:1 22973:1 23086:1 23092:1 23109:1 23143:1 23284:1 23307:1 23381:1 23392:1 23418:1 23429:1 23489:1 23787:1 23869:1 23906:1 23929:1 23952:1 23977:1 23980:1 24034:1 24038:1 24202:2 24230:1 24249:1 24333:2 24414:1 24443:1 24584:2 24600:1 24786:1 25009:1 25023:1 25092:1 25103:1 25154:1 25230:1 25240:2 25273:1 25353:1 25463:1 25517:1 25530:1 25557:1 25591:3 25659:1 25666:1 25724:1 25778:1 25792:1 25794:1 26061:1 26115:3 26222:1 26306:1 26395:1 26511:1 26598:1 26696:1 26774:1 26804:1 26942:1 26947:1 27002:1 27019:1 27119:1 27121:1 27141:1 27197:1 27370:1 27471:1 27596:1 27603:1 27646:1 27688:1 27714:1 27831:1 27952:1 27987:1 27988:1 28050:1 28053:2 28069:2 28111:1 28399:2 28417:1 28477:1 28605:1 28646:1 28664:1 28671:1 28678:1 28682:1 28687:1 28720:1 28758:1 28769:1 28807:1 28819:1 28824:1 28887:1 29024:1 29036:1 29039:1 29052:1 29107:1 29236:1 29259:1 29316:1 29319:1 29362:1 29373:2 29388:1 29391:3 29430:1 29506:1 29607:1 29676:1 29689:1 29828:2 30048:1 30071:1 30197:1 30210:1 30255:1 30385:1 30407:1 30428:1 30473:1 30570:1 30619:1 30624:1 30714:1 30762:1 30804:2 30821:2 30863:2 30874:1 30978:1 30979:1 30982:2 31096:1 31250:2 31266:2 31291:1 31340:1 31346:1 31405:1 31514:1 31526:1 31587:2 31631:2 31709:1 31779:1 31947:1 32056:3 32079:1 32092:1 32155:1 32159:3 32171:1 32365:1 32383:1 32517:1 32539:1 32603:1 32611:1 32615:2 32713:1 32733:1 32777:1 32799:1 32804:2 32818:1 32839:1 32849:3 32943:1
2 14:1 17:1 41:1 100:1 114:1 117:2 118:1 168:1 190:1 211:1 253:1 331:1 335:1 420:1 440:1 538:1 579:1 626:1 684:2 744:4 752:2 859:1 908:1 915:1 965:1 1015:1 1034:1 1065:1 1075:1 1084:1 1090:1 1166:1 1173:1 1193:1 1335:1 1361:4 1378:2 1405:1 1430:1 1462:2 1466:1 1510:1 1599:1 1632:2 1674:1 1681:2 1756:1 1764:1 1766:1 1768:1 1781:1 1848:1 1993:1 2047:1 2077:1 2097:1 2109:1 2113:1 2245:1 2263:1 2316:1 2538:1 2562:1 2570:1 2573:2 2579:1 2585:1 2627:1 2653:1 2667:1 2708:1 2714:1 2732:1 2760:1 2788:2 3035:2 3053:2 3059:1 3122:1 3130:1 3313:1 3315:4 3318:1 3319:1 3384:1 3451:1 3731:1 3756:1 3774:1 3811:1 3909:1 3936:1 3970:1 4065:1 4074:1 4078:1 4362:1 4407:1 4411:1 4417:1 4458:1 4465:4 4531:1 4546:1 4588:1 4592:1 4604:1 4644:1 4668:1 4679:1 4798:1 4929:4 4946:1 5044:1 5105:1 5120:1 5122:1 5315:1 5349:1 5447:1 5451:1 5459:1 5515:1 5518:1 5562:2 5563:1 5714:1 5716:1 5754:1 5774:1 5783:1 6092:1 6136:1 6144:1 6198:1 6235:1 6263:1 6371:1 6448:1 6593:2 6605:1 6610:1 6646:1 6660:1 6768:1 6786:1 6843:1 6936:1 7035:1 7139:1 7161:1 7261:1 7273:1 7297:2 7313:3 7349:1 7371:2 7466:1 7528:1 7703:1 7718:1 7738:1 7774:1 7854:1 7889:2 8042:1 8100:1 8224:1 8297:1 8446:1 8503:1 8547:1 8700:1 8708:1 8726:1 8774:6 8784:1 8794:1 8798:1 8800:1 8808:1 8832:1 8853:1 8898:1 8953:1 8989:1 9022:1 9079:1 9254:1 9306:1 9320:4 9350:1 9352:1 9438:1 9456:4 9475:1 9624:1 9661:1 9675:1 9687:1 9692:1 9765:2 9845:1 9895:1 9998:1 10082:1 10084:1 10133:1 10136:1 10263:1 10343:2 10354:1 10413:1 10428:1 10444:1 10499:1 10501:2 10552:1 10642:1 10758:1 10769:1 10770:1 10805:1 10818:1 11053:2 11070:1 11188:1 11210:4 11220:1 11297:1 11364:1 11380:1 11420:1 11474:1 11493:1 11529:1 11596:1 11633:1 11871:1 11983:1 12013:1 12025:1 12067:2 12118:1 12180:1 12442:1 12460:1 12485:1 12499:1 12506:1 12572:1 12575:1 12610:1 12640:1 12761:1 12858:1 12893:1 12902:1 12903:1 13040:1 13243:1 13292:1 13297:1 13303:1 13329:1 13334:1 13340:2 13462:1 13594:1 13625:1 13661:1 13747:1 13770:1 13865:1 13975:1 13998:1 14019:1 14201:1 14221:1 14281:1 14288:1 14402:1 14430:1 14433:4 14444:1 14549:1 14741:1 14758:1 14916:1 14928:1 14935:1 14955:1 15171:1 15181:2 15204:1 15285:1 15349:1 15354:1 15435:1 15509:2 15584:1 15591:1 15595:1 15661:1 15683:1 15714:1 15732:1 15787:1 15821:1 15832:1 15908:1 15915:1 16011:2 16115:3 16241:1 16243:1 16260:1 16338:1 16355:1 16410:1 16451:1 16505:4 16511:1 16524:1 16542:1 16553:1 16604:1 16606:1 16669:1 16692:1 16725:1 16737:1 16851:1 16858:1 16929:1 16968:2 17001:1 17062:1 17116:1 17148:1 17190:1 17365:1 17502:1 17722:1 17755:1 17762:1 17779:1 17780:1 17792:1 17907:2 17956:1 18065:1 18072:2 18174:1 18200:1 18250:1 18326:1 18350:1 18360:1 18459:1 18474:1 18489:1 18497:1 18554:1 18626:1 18733:1 18878:1 18915:1 19038:1 19054:6 19110:1 19192:1 19222:1 19245:2 19331:1 19404:1 19515:1 19607:1 19666:1 19772:2 19784:1 19914:1 20079:1 20192:2 20287:1 20304:1 20402:1 20416:1 20488:1 20651:1 20724:1 20744:1 20890:1 20967:1 20975:254 21027:1 21051:1 21102:1 21110:1 21152:1 21201:1 21502:1 21553:1 21653:1 21730:1 21824:1 21834:2 21836:2 21881:1 21942:1 21991:1 21998:1 22027:1 22062:2 22068:1 22069:1 22081:1 22162:1 22246:1 22286:1 22316:1 22462:1 22536:1 22826:1 22855:1 22861:1 22973:1 23086:1 23092:1 23109:1 23143:1 23284:1 23307:1 23318:1 23381:1 23392:1 23418:1 23429:1 23489:1 23507:1 23671:1 23787:1 23869:1 23906:1 23929:1 23952:1 23977:1 23980:1 24034:1 24038:1 24152:1 24202:2 24230:1 24249:1 24333:2 24414:1 24417:1 24427:1 24443:1 24453:1 24584:3 24600:1 24786:1 24903:1 24928:1 25009:1 25023:2 25092:1 25103:1 25154:1 25159:1 25184:1 25230:1 25240:2 25256:1 25273:1 25353:1 25382:1 25463:1 25517:1 25530:1 25557:1 25591:4 25609:1 25659:1 25666:1 25724:1 25778:1 25792:1 25794:1 26061:1 26115:4 26222:1 26270:1 26286:1 26300:1 26306:1 26395:1 26511:2 26598:1 26696:1 26774:1 26804:1 26891:1 26942:1 26947:1 27002:1 27019:1 27119:1 27121:1 27141:1 27197:1 27238:1 27283:1 27370:1 27471:1 27596:1 27603:1 27646:1 27688:1 27714:1 27831:1 27952:1 27987:1 27988:1 28050:1 28053:2 28069:2 28111:1 28399:2 28417:1 28477:1 28605:2 28646:1 28664:1 28671:1 28678:1 28682:1 28687:1 28720:1 28758:1 28769:1 28807:1 28819:1 28824:1 28887:2 29024:1 29036:1 29039:1 29052:1 29107:1 29236:1 29259:1 29316:1 29319:1 29362:1 29373:2 29388:1 29391:3 29430:1 29506:1 29607:1 29676:1 29689:1 29828:2 30048:1 30071:1 30155:1 30186:1 30197:1 30210:1 30255:1 30385:1 30407:1 30428:1 30473:1 30570:1 30619:1 30624:1 30714:1 30762:1 30804:2 30821:2 30863:2 30874:1 30978:1 30979:1 30982:2 31085:1 31096:1 31250:2 31266:2 31291:1 31333:1 31340:1 31346:1 31405:2 31514:1 31526:1 31587:2 31631:2 31709:1 31747:1 31779:1 31947:1 32056:4 32079:1 32092:1 32155:1 32159:3 32171:1 32365:1 32383:1 32416:1 32517:1 32539:1 32556:1 32603:1 32611:1 32615:2 32713:1 32733:1 32777:1 32799:1 32804:2 32818:1 32839:1 32849:4 32887:1 32943:1
2 14:1 17:1 40:1 41:1 100:1 114:2 117:2 118:1 168:1 190:1 211:1 233:1 253:1 314:1 331:1 335:1 420:1 440:1 466:1 538:1 579:1 618:1 626:1 684:2 744:5 752:2 859:1 891:1 908:1 915:1 965:1 1015:1 1034:1 1065:1 1075:1 1084:1 1090:1 1166:1 1173:1 1193:1 1335:1 1361:5 1378:2 1405:1 1430:1 1462:2 1466:1 1510:1 1599:1 1632:2 1674:1 1681:2 1756:1 1764:1 1766:1 1768:1 1781:1 1848:1 1993:1 2047:1 2077:1 2097:1 2109:1 2113:1 2174:1 2245:1 2263:1 2316:1 2538:1 2562:1 2570:1 2573:2 2576:1 2579:1 2585:1 2627:1 2653:1 2667:1 2708:1 2714:1 2732:1 2760:1 2788:2 3035:2 3053:2 3059:1 3119:1 3122:1 3130:1 3313:1 3315:5 3318:1 3319:1 3384:2 3451:1 3731:1 3756:1 3774:1 3811:1 3909:1 3936:1 3970:1 4065:1 4074:1 4078:1 4362:1 4407:1 4411:1 4417:1 4458:1 4465:5 4531:1 4546:1 4584:1 4588:1 4592:1 4604:1 4644:1 4668:1 4679:1 4798:1 4929:5 4946:1 4978:1 5044:1 5105:2 5120:1 5122:1 5197:1 5315:1 5349:1 5447:1 5451:1 5459:1 5515:1 5518:1 5562:2 5563:1 5714:1 5716:1 5754:1 5774:2 5783:1 6029:1 6092:1 6136:1 6144:1 6198:1 6235:1 6263:1 6371:1 6448:1 6593:2 6605:1 6610:1 6646:1 6660:1 6717:1 6768:1 6786:1 6812:1 6843:1 6936:2 7035:1 7064:1 7139:1 7161:1 7245:1 7261:1 7273:1 7283:2 7297:2 7313:3 7349:1 7371:2 7466:1 7528:1 7569:1 7703:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 8007:1 8042:1 8100:1 8224:1 8297:1 8446:1 8503:1 8547:1 8700:1 8708:1 8726:1 8774:6 8780:1 8784:1 8794:1 8798:2 8800:1 8808:1 8832:1 8853:1 8898:1 8953:1 8989:1 9022:1 9079:1 9254:1 9306:1 9318:1 9320:5 9350:1 9352:1 9438:1 9456:5 9475:1 9624:1 9661:1 9675:1 9679:1 9682:1 9687:1 9692:1 9754:1 9765:2 9768:1 9845:1 9895:1 9938:1 9998:1 10023:1 10082:1 10084:1 10133:1 10136:1 10263:1 10343:2 10354:1 10413:1 10418:1 10428:1 10430:1 10444:1 10499:1 10501:2 10552:1 10561:1 10642:1 10758:1 10769:1 10770:1 10805:1 10816:1 10818:2 11053:2 11070:1 11188:1 11210:5 11220:1 11225:1 11297:1 11364:1 11380:2 11420:1 11462:1 11474:1 11493:1 11529:1 11596:1 11633:2 11871:1 11983:1 12013:1 12025:1 12067:2 12118:1 12180:1 12442:1 12460:1 12471:1 12485:1 12499:1 12506:1 12546:1 12572:1 12575:1 12610:1 12640:1 12650:1 12744:1 12761:1 12858:1 12893:1 12902:1 12903:1 12934:1 13040:1 13243:1 13282:1 13292:1 13297:1 13303:1 13329:1 13334:1 13340:2 13462:1 13594:1 13625:1 13661:1 13747:1 13770:1 13865:1 13975:1 13998:1 14019:2 14201:2 14221:1 14281:1 14288:1 14402:1 14430:1 14433:5 14444:1 14549:1 14646:1 14741:1 14758:1 14862:1 14916:1 14928:1 14935:2 14955:1 14998:1 15096:1 15171:1 15181:2 15204:1 15285:1 15349:1 15354:1 15435:1 15509:2 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15683:1 15714:1 15732:1 15787:1 15821:1 15832:1 15908:1 15915:1 15934:2 16009:1 16011:2 16115:3 16241:1 16243:2 16260:1 16338:1 16355:1 16402:1 16410:1 16451:1 16505:5 16511:2 16524:1 16542:1 16553:1 16604:1 16606:1 16669:1 16692:1 16725:1 16737:1 16851:1 16858:1 16929:1 16947:1 16968:2 17001:1 17062:1 17116:1 17148:1 17190:1 17365:1 17502:1 17543:1 17722:1 17740:1 17755:1 17762:2 17779:1 17780:1 17792:1 17907:2 17956:1 18065:1 18072:2 18174:1 18200:1 18250:1 18326:1 18350:1 18360:1 18459:1 18474:1 18489:1 18497:1 18554:1 18577:1 18626:1 18733:1 18878:1 18915:1 19038:1 19054:7 19110:1 19192:1 19222:1 19245:2 19315:1 19326:1 19331:1 19404:1 19515:1 19607:1 19666:1 19772:2 19784:1 19914:1 20079:1 20192:2 20287:1 20304:1 20402:1 20416:1 20488:1 20651:1 20724:1 20744:1 20890:1 20967:1 20975:299 21027:1 21051:1 21102:1 21110:1 21152:1 21201:1 21502:1 21553:2 21624:2 21653:1 21730:1 21782:1 21824:1 21834:2 21836:2 21881:1 21942:1 21969:2 21991:1 21998:1 22027:1 22062:2 22068:1 22069:1 22081:1 22162:1 22246:1 22286:1 22316:1 22418:1 22462:1 22497:1 22536:2 22659:1 22826:2 22855:1 22861:1 22902:1 22973:1 23086:1 23092:1 23109:1 23143:1 23284:1 23307:1 23318:1 23332:1 23381:1 23392:1 23418:1 23429:1 23489:2 23507:1 23628:1 23660:1 23671:1 23694:1 23787:1 23869:1 23906:1 23929:1 23952:1 23977:1 23980:1 24032:1 24034:1 24038:1 24152:2 24202:2 24230:1 24249:1 24333:2 24364:1 24414:1 24417:1 24427:1 24443:1 24453:1 24499:1 24584:3 24600:1 24786:1 24790:2 24809:1 24903:2 24928:1 25009:1 25023:2 25092:1 25100:1 25103:1 25154:1 25159:1 25184:1 25230:1 25240:2 25256:1 25273:1 25301:1 25353:1 25382:1 25463:1 25517:1 25530:1 25557:1 25591:5 25609:1 25659:1 25666:1 25724:1 25778:1 25792:1 25794:1 26061:1 26115:5 26222:1 26270:1 26286:1 26300:1 26306:1 26395:1 26511:2 26598:1 26696:1 26774:1 26804:2 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27119:1 27121:1 27139:1 27141:1 27144:1 27197:1 27238:1 27283:1 27370:1 27471:1 27596:1 27603:1 27646:2 27688:1 27714:1 27831:1 27952:1 27987:1 27988:1 28050:1 28053:2 28058:1 28069:2 28111:1 28399:2 28417:1 28477:1 28605:2 28646:1 28664:1 28671:1 28678:1 28682:1 28687:1 28720:1 28758:1 28769:1 28807:1 28819:1 28824:1 28887:2 29024:1 29036:1 29039:1 29052:1 29107:1 29122:1 29183:1 29236:1 29259:1 29306:1 29316:1 29319:1 29362:1 29373:2 29388:1 29391:3 29430:1 29453:1 29506:1 29607:1 29676:1 29689:1 29813:1 29828:2 30048:1 30071:1 30121:2 30155:1 30186:1 30197:1 30210:1 30255:1 30258:1 30385:1 30407:1 30428:1 30429:1 30473:1 30570:1 30619:1 30624:1 30714:1 30762:1 30804:2 30821:2 30863:2 30874:1 30895:1 30978:1 30979:1 30982:2 31004:1 31085:1 31096:1 31250:2 31266:2 31291:1 31333:1 31340:1 31346:1 31405:2 31427:1 31514:1 31526:1 31587:4 31631:2 31709:1 31747:1 31779:1 31947:1 32056:5 32079:2 32092:1 32155:1 32159:3 32171:1 32365:1 32383:1 32416:1 32517:1 32533:1 32539:1 32556:1 32603:1 32611:1 32615:2 32713:1 32733:1 32777:1 32799:1 32804:2 32818:1 32839:1 32849:5 32887:1 32943:1
2 14:1 17:1 40:1 41:1 100:1 114:2 117:2 118:1 168:1 190:1 211:1 233:1 253:1 314:1 331:1 335:1 420:1 440:1 466:1 538:1 579:1 618:1 626:1 638:1 684:2 723:1 744:6 752:2 756:1 859:1 891:1 908:1 915:1 918:1 965:1 1015:4 1020:1 1034:1 1065:1 1075:1 1084:1 1090:1 1166:1 1173:1 1193:2 1335:1 1361:6 1378:2 1405:1 1406:1 1430:1 1462:2 1466:1 1510:2 1599:1 1632:2 1674:1 1681:3 1740:1 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1815:1 1848:1 1912:1 1993:1 2047:1 2077:1 2097:1 2109:1 2113:1 2174:1 2245:1 2263:1 2316:1 2401:1 2443:1 2538:1 2562:1 2570:1 2573:2 2576:1 2579:1 2585:1 2627:1 2653:1 2667:1 2708:1 2714:1 2732:1 2760:1 2788:2 2802:1 2820:1 2836:1 3035:2 3053:2 3059:1 3119:1 3122:1 3130:1 3206:1 3313:1 3315:6 3318:1 3319:1 3335:1 3384:2 3451:1 3731:1 3756:1 3774:1 3811:1 3909:1 3936:1 3970:1 4065:1 4074:1 4078:1 4184:1 4204:1 4349:1 4362:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:6 4531:1 4534:1 4546:1 4571:1 4584:1 4588:1 4592:2 4604:1 4644:1 4668:1 4679:2 4685:1 4731:1 4798:1 4848:1 4929:6 4938:1 4946:1 4978:1 5044:3 5105:2 5120:1 5122:1 5137:1 5168:1 5197:1 5315:1 5349:1 5447:1 5451:1 5452:1 5459:1 5515:1 5518:1 5542:1 5562:3 5563:1 5616:1 5714:2 5716:1 5737:1 5738:1 5745:1 5754:2 5772:1 5774:2 5783:1 6029:1 6045:1 6092:1 6136:1 6144:1 6198:1 6235:1 6263:1 6371:1 6448:1 6593:2 6605:1 6610:1 6646:1 6660:1 6717:1 6768:1 6786:1 6812:1 6843:1 6936:2 7035:1 7046:1 7064:1 7139:1 7151:1 7161:1 7245:1 7260:1 7261:1 7273:1 7283:2 7297:2 7307:1 7309:1 7313:4 7349:1 7371:2 7466:1 7528:1 7569:1 7590:1 7703:1 7715:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 7936:1 8000:1 8005:1 8007:1 8042:1 8100:1 8224:1 8272:1 8297:1 8446:1 8466:1 8503:1 8547:1 8700:3 8708:1 8726:1 8774:6 8780:1 8784:2 8794:1 8798:2 8800:1 8808:1 8832:1 8853:1 8898:1 8953:1 8989:1 9022:1 9079:1 9241:1 9254:1 9306:1 9318:1 9320:6 9350:1 9352:2 9438:1 9456:6 9475:1 9624:1 9661:1 9675:1 9679:1 9682:1 9687:1 9692:2 9754:1 9765:2 9767:1 9768:1 9774:1 9826:1 9845:1 9895:1 9938:1 9968:1 9998:1 10023:1 10082:1 10084:1 10085:1 10133:1 10136:1 10159:1 10213:1 10263:1 10343:2 10354:1 10372:1 10413:2 10418:1 10428:1 10430:1 10444:1 10499:1 10501:2 10552:1 10561:1 10618:1 10642:1 10758:1 10769:2 10770:1 10805:1 10816:1 10818:2 10898:1 11053:2 11064:1 11070:1 11188:1 11210:6 11220:1 11225:1 11295:1 11297:1 11357:1 11364:1 11380:2 11420:2 11462:1 11474:1 11493:2 11529:2 11549:1 11596:1 11602:1 11615:1 11633:2 11871:1 11983:1 12013:1 12025:1 12067:2 12118:1 12151:1 12180:1 12195:1 12240:1 12442:1 12458:1 12460:1 12471:1 12485:1 12499:1 12506:1 12518:1 12546:1 12571:1 12572:2 12575:2 12576:1 12610:1 12640:1 12650:1 12661:1 12744:1 12761:1 12858:1 12893:1 12902:1 12903:1 12934:1 13040:1 13048:1 13056:1 13068:1 13216:1 13243:1 13257:1 13282:1 13292:1 13297:1 13303:1 13329:1 13334:1 13340:2 13462:1 13577:1 13594:1 13625:1 13661:1 13747:1 13770:2 13864:1 13865:1 13866:1 13975:1 13998:1 14019:2 14092:1 14201:2 14221:1 14281:1 14288:1 14402:1 14430:1 14433:6 14444:1 14447:1 14491:1 14549:1 14646:1 14731:1 14741:1 14758:1 14773:1 14862:1 14916:1 14928:1 14935:2 14955:1 14998:1 15096:1 15171:1 15181:3 15204:1 15285:1 15349:1 15354:1 15359:1 15388:1 15435:1 15454:1 15509:2 15536:1 15539:1 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15712:1 15714:1 15732:1 15777:1 15787:1 15821:1 15832:1 15908:2 15915:1 15934:2 16009:1 16011:2 16115:3 16235:1 16241:2 16243:2 16260:1 16338:1 16355:1 16375:1 16402:1 16410:1 16425:1 16449:1 16451:1 16505:6 16511:2 16524:1 16542:1 16553:1 16604:1 16606:1 16669:1 16692:1 16725:1 16737:1 16851:1 16858:1 16929:1 16947:1 16968:2 17001:2 17062:1 17116:1 17148:1 17190:1 17365:1 17475:1 17502:1 17543:1 17552:1 17667:1 17694:1 17722:1 17740:1 17755:1 17762:2 17779:1 17780:1 17792:1 17805:1 17869:1 17882:1 17907:3 17956:1 18065:1 18072:3 18174:1 18200:1 18250:1 18298:1 18326:1 18350:1 18360:1 18459:1 18474:1 18489:1 18497:1 18554:1 18577:1 18626:1 18733:1 18878:1 18915:1 19038:1 19054:8 19068:1 19110:2 19182:1 19192:1 19222:1 19245:2 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19478:1 19515:1 19607:1 19666:1 19679:1 19691:1 19724:1 19772:2 19784:1 19914:1 19947:1 20032:1 20079:2 20108:1 20192:2 20287:1 20304:1 20402:1 20416:1 20488:1 20651:1 20724:2 20744:1 20826:1 20890:1 20967:1 20975:387 21027:1 21029:1 21051:1 21102:1 21110:1 21116:1 21117:1 21152:1 21181:1 21201:1 21502:1 21553:2 21621:1 21624:2 21653:2 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21881:2 21942:3 21969:2 21991:1 21998:1 22027:2 22051:1 22062:2 22068:2 22069:1 22081:1 22162:1 22246:1 22286:1 22316:1 22418:1 22429:1 22462:1 22497:1 22535:1 22536:2 22659:1 22717:1 22826:2 22855:1 22861:1 22902:1 22973:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23284:1 23307:1 23318:2 23325:1 23332:1 23377:1 23381:1 23392:2 23403:1 23418:1 23429:1 23443:1 23489:2 23507:2 23521:1 23628:1 23660:1 23671:1 23694:1 23749:1 23787:1 23862:1 23869:1 23906:1 23929:1 23952:1 23977:1 23980:1 24032:1 24034:1 24038:1 24140:1 24152:2 24202:2 24230:1 24249:1 24333:2 24364:1 24414:2 24417:1 24427:1 24443:1 24453:1 24469:2 24499:1 24584:3 24586:1 24600:1 24623:1 24644:1 24770:1 24786:1 24790:2 24809:1 24867:1 24871:1 24903:2 24928:2 25009:1 25017:1 25023:2 25092:1 25100:1 25103:1 25154:2 25159:1 25184:1 25230:1 25240:4 25256:1 25273:1 25301:1 25316:1 25353:1 25382:1 25463:1 25517:1 25530:1 25557:1 25591:6 25609:1 25659:1 25666:1 25679:1 25724:1 25778:1 25792:1 25794:1 25823:1 25925:1 26043:1 26061:1 26115:6 26175:1 26208:1 26219:1 26222:3 26270:1 26286:1 26300:2 26306:1 26395:1 26511:2 26594:1 26598:1 26685:1 26696:1 26774:1 26804:2 26866:1 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27119:1 27121:1 27139:1 27141:1 27144:1 27197:1 27238:2 27273:1 27276:1 27283:1 27370:1 27471:1 27596:1 27603:1 27646:2 27688:1 27714:1 27798:1 27831:1 27952:1 27987:1 27988:1 28050:1 28053:2 28058:1 28069:2 28111:1 28185:1 28240:1 28285:1 28399:2 28417:1 28477:1 28605:2 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28720:1 28740:1 28758:1 28769:2 28770:1 28807:1 28819:1 28824:1 28887:2 29024:1 29036:1 29039:1 29042:1 29052:1 29078:1 29107:1 29122:1 29183:1 29236:1 29259:1 29306:1 29316:1 29319:1 29362:1 29373:2 29388:1 29391:4 29430:1 29453:1 29506:1 29607:1 29672:1 29676:1 29689:1 29736:1 29790:1 29813:1 29828:2 29893:1 30048:1 30071:1 30121:2 30155:1 30186:1 30197:1 30198:1 30200:1 30210:1 30243:1 30255:1 30258:1 30385:1 30407:1 30428:1 30429:1 30441:1 30473:2 30570:1 30619:1 30624:1 30656:1 30683:1 30714:1 30725:1 30762:1 30804:2 30808:1 30821:2 30863:2 30874:1 30895:1 30919:1 30978:1 30979:1 30982:2 30998:1 31004:1 31085:1 31096:1 31250:2 31266:2 31291:1 31333:1 31340:1 31346:1 31405:2 31427:1 31514:1 31526:1 31530:1 31570:1 31587:6 31631:2 31709:1 31747:2 31754:1 31765:1 31779:1 31856:1 31947:1 32056:6 32079:2 32092:1 32155:1 32159:3 32171:1 32365:1 32383:1 32416:1 32517:1 32533:1 32539:1 32556:1 32603:1 32611:1 32615:2 32713:1 32717:1 32733:1 32777:1 32799:1 32804:2 32818:2 32839:1 32849:6 32887:1 32943:1
2 14:1 17:1 40:2 41:1 100:1 114:2 117:2 118:1 168:1 190:1 211:1 233:1 253:1 314:1 331:1 335:1 420:2 440:1 466:1 538:1 579:1 618:1 626:1 638:1 684:2 723:1 744:7 752:2 756:1 793:1 822:1 859:1 891:1 908:1 910:1 915:1 918:1 965:1 1015:4 1020:1 1034:1 1065:1 1075:1 1084:1 1090:1 1166:1 1173:1 1193:2 1335:1 1361:7 1373:1 1378:2 1405:1 1406:1 1417:1 1430:1 1462:2 1466:1 1510:2 1599:1 1615:1 1632:2 1674:1 1681:3 1740:1 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1815:1 1848:1 1912:2 1993:1 2029:1 2047:1 2077:1 2097:1 2109:1 2113:1 2160:1 2174:1 2245:1 2263:1 2316:1 2401:1 2443:1 2522:1 2538:1 2562:1 2570:1 2573:2 2576:2 2579:1 2585:1 2601:1 2612:1 2627:1 2653:1 2667:1 2708:1 2714:1 2732:1 2760:1 2788:2 2802:1 2820:1 2836:1 3035:2 3053:2 3059:1 3119:1 3122:1 3130:1 3203:1 3206:1 3313:2 3315:7 3318:1 3319:1 3335:1 3338:1 3384:2 3451:1 3680:1 3731:1 3756:1 3774:1 3811:1 3909:1 3936:1 3970:1 4065:1 4074:1 4078:1 4184:1 4204:1 4342:1 4349:1 4362:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:7 4531:1 4534:1 4546:1 4571:2 4584:1 4588:1 4592:2 4604:1 4644:1 4668:1 4679:2 4685:1 4731:1 4798:1 4848:1 4929:7 4938:1 4946:2 4978:1 5044:3 5062:1 5105:2 5120:1 5122:1 5137:1 5168:1 5197:1 5315:1 5337:1 5342:1 5349:1 5447:1 5451:1 5452:1 5459:1 5515:1 5518:1 5542:1 5562:3 5563:1 5616:1 5714:2 5716:1 5737:1 5738:1 5745:1 5754:2 5772:2 5774:2 5775:1 5783:1 6029:1 6045:1 6092:1 6136:1 6144:1 6198:1 6235:1 6263:1 6371:1 6448:1 6593:2 6605:1 6610:1 6646:1 6660:1 6717:1 6768:1 6786:1 6812:1 6843:1 6936:2 7035:1 7046:1 7064:1 7139:1 7151:1 7161:2 7245:1 7260:1 7261:1 7273:1 7283:2 7297:2 7307:1 7309:1 7313:4 7349:1 7371:2 7466:1 7528:1 7566:1 7569:1 7590:1 7703:1 7715:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 7936:1 8000:1 8005:1 8007:1 8042:1 8100:1 8181:1 8224:1 8272:1 8297:1 8345:1 8446:1 8466:1 8503:1 8547:1 8700:3 8708:1 8726:1 8774:8 8780:1 8784:2 8794:2 8798:2 8800:1 8805:1 8808:1 8832:1 8853:1 8898:1 8953:1 8989:1 9022:1 9079:1 9241:1 9254:1 9306:1 9318:1 9320:7 9350:2 9352:2 9403:1 9438:1 9456:7 9475:1 9624:1 9645:1 9661:1 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9754:1 9765:2 9767:1 9768:1 9774:1 9826:1 9845:1 9895:1 9938:1 9968:1 9998:1 10023:1 10082:1 10084:1 10085:1 10133:1 10136:1 10159:1 10160:1 10213:1 10263:1 10343:2 10354:1 10372:1 10413:2 10418:2 10428:1 10430:1 10432:1 10444:1 10499:1 10501:2 10505:1 10552:1 10561:1 10618:1 10642:1 10758:1 10769:2 10770:1 10805:1 10816:1 10818:2 10898:1 11053:2 11064:1 11070:1 11188:1 11210:7 11220:1 11225:1 11295:1 11297:1 11357:1 11364:1 11380:2 11389:1 11420:2 11462:1 11474:1 11493:2 11529:2 11549:1 11596:1 11602:1 11615:1 11633:2 11822:1 11871:1 11983:1 12006:1 12013:1 12025:1 12067:2 12118:1 12151:1 12180:1 12195:1 12240:1 12317:1 12367:1 12442:1 12458:2 12460:1 12471:1 12485:1 12499:1 12506:1 12518:1 12546:1 12556:1 12571:1 12572:2 12575:2 12576:1 12610:1 12640:1 12650:1 12661:1 12744:1 12761:1 12858:1 12893:1 12902:2 12903:1 12934:2 13040:1 13048:1 13056:1 13068:1 13162:1 13216:1 13243:1 13257:1 13282:1 13292:1 13297:1 13303:1 13329:1 13334:1 13340:2 13462:1 13577:1 13594:1 13625:1 13661:1 13747:1 13770:2 13864:1 13865:1 13866:1 13975:1 13998:1 14019:2 14092:1 14201:2 14221:1 14281:1 14288:1 14402:1 14430:1 14433:7 14444:1 14447:3 14491:1 14516:1 14549:1 14646:2 14731:1 14741:1 14758:1 14773:1 14862:1 14885:1 14916:1 14928:1 14935:2 14955:1 14964:1 14998:1 15096:2 15171:1 15181:4 15204:1 15285:1 15334:1 15349:1 15354:1 15359:1 15388:1 15421:1 15435:1 15454:1 15509:2 15536:1 15539:1 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15712:1 15714:1 15732:1 15777:2 15787:1 15821:1 15832:1 15908:2 15915:1 15934:2 15986:1 16009:1 16011:2 16115:3 16235:1 16241:2 16243:2 16260:1 16338:1 16355:1 16375:1 16402:1 16410:1 16425:1 16449:1 16451:1 16505:7 16511:2 16524:1 16542:1 16553:1 16604:1 16606:1 16651:1 16669:1 16692:1 16725:1 16737:1 16851:1 16858:1 16929:1 16947:1 16968:2 17001:2 17057:1 17062:1 17086:1 17116:1 17148:1 17190:1 17365:1 17475:1 17502:1 17543:3 17552:2 17667:1 17694:1 17722:1 17740:1 17755:1 17762:2 17779:1 17780:1 17792:1 17805:1 17869:1 17882:1 17907:3 17956:1 18065:1 18072:4 18174:1 18200:3 18250:1 18298:1 18326:1 18350:1 18360:2 18459:1 18474:1 18489:1 18497:1 18554:1 18577:1 18618:1 18626:1 18733:1 18746:1 18789:1 18878:1 18915:1 19038:1 19054:9 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19222:1 19245:2 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19478:1 19515:1 19607:1 19612:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19914:1 19947:2 20032:1 20079:2 20108:1 20138:1 20192:2 20287:1 20304:1 20402:2 20416:1 20488:1 20651:1 20724:2 20744:1 20826:1 20890:1 20967:1 20975:438 21027:1 21029:1 21051:1 21102:1 21110:1 21116:1 21117:1 21152:1 21181:1 21201:1 21418:1 21502:1 21508:1 21553:2 21621:1 21624:2 21653:2 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21881:2 21942:3 21969:2 21991:1 21998:1 22027:2 22039:1 22051:1 22062:2 22068:2 22069:1 22081:1 22162:1 22246:1 22286:1 22316:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:2 22659:1 22717:1 22726:1 22769:1 22826:2 22855:1 22861:1 22902:1 22973:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23284:1 23307:1 23318:2 23325:1 23332:1 23377:1 23381:1 23392:2 23403:1 23418:1 23429:1 23443:1 23489:2 23507:2 23521:1 23536:1 23614:1 23628:1 23660:1 23661:1 23671:1 23694:1 23722:1 23749:1 23787:1 23843:1 23862:1 23869:1 23906:1 23929:1 23952:1 23977:1 23980:1 24032:1 24034:1 24038:1 24140:1 24152:2 24202:2 24230:1 24249:1 24333:2 24364:1 24414:2 24417:1 24427:1 24443:1 24453:1 24469:2 24499:1 24584:3 24586:1 24600:1 24623:1 24630:1 24644:1 24770:1 24786:1 24790:2 24809:2 24863:1 24867:1 24871:1 24903:2 24928:2 25009:1 25017:1 25023:2 25092:3 25100:1 25103:1 25154:2 25155:1 25159:1 25184:1 25230:1 25240:4 25256:1 25273:1 25301:1 25316:1 25353:1 25382:1 25463:1 25517:1 25530:1 25557:1 25591:7 25609:1 25659:1 25666:1 25679:1 25724:1 25778:1 25792:1 25794:1 25823:1 25925:1 26043:1 26045:2 26053:1 26061:1 26115:7 26175:1 26208:1 26219:1 26222:3 26270:1 26286:1 26300:2 26306:1 26355:1 26395:1 26511:2 26594:1 26598:1 26685:1 26696:1 26774:1 26804:2 26866:1 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27119:1 27121:1 27139:1 27141:1 27144:1 27197:2 27238:2 27273:1 27276:1 27283:1 27370:1 27468:1 27471:1 27596:1 27603:1 27646:2 27688:1 27714:1 27750:1 27798:1 27831:1 27952:1 27987:1 27988:1 28050:1 28053:2 28058:1 28069:2 28111:1 28185:1 28240:1 28285:1 28313:1 28317:1 28399:2 28417:1 28451:1 28477:1 28605:2 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28720:1 28740:1 28758:1 28769:2 28770:1 28807:1 28819:1 28824:2 28885:1 28887:2 29024:1 29036:1 29039:1 29042:1 29052:1 29078:1 29107:1 29122:1 29183:1 29205:1 29223:1 29236:1 29259:1 29306:1 29316:1 29319:1 29362:2 29373:2 29388:1 29391:4 29430:1 29453:1 29506:1 29517:1 29607:1 29672:1 29676:1 29689:1 29736:1 29790:1 29813:1 29828:2 29835:1 29893:1 30048:1 30071:1 30121:2 30155:2 30186:1 30197:1 30198:1 30200:2 30210:1 30243:1 30255:1 30258:1 30271:1 30348:1 30385:1 30407:1 30428:1 30429:1 30441:2 30473:2 30570:1 30619:1 30624:1 30656:1 30683:1 30714:1 30725:1 30741:1 30762:1 30779:1 30804:2 30808:1 30821:2 30863:2 30874:1 30895:1 30919:1 30978:1 30979:1 30982:2 30998:1 31004:1 31085:1 31096:1 31250:2 31251:1 31266:2 31268:1 31291:1 31333:1 31340:1 31346:1 31405:2 31427:1 31514:1 31526:1 31530:1 31570:1 31587:6 31631:2 31682:1 31709:1 31747:2 31754:1 31765:1 31779:1 31856:1 31947:1 31958:1 32056:7 32079:2 32092:1 32155:2 32159:4 32171:1 32204:1 32350:1 32365:1 32383:1 32403:2 32416:1 32517:1 32533:1 32539:1 32556:1 32603:1 32611:1 32615:2 32713:1 32717:1 32733:1 32777:1 32799:1 32804:2 32818:2 32839:1 32849:7 32887:1 32943:1 32944:2
2 14:1 17:1 40:2 41:1 100:1 114:2 117:2 118:1 168:2 190:1 211:1 233:1 253:1 308:1 313:1 314:1 330:1 331:1 335:1 420:2 440:1 466:1 506:1 538:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:1 744:8 752:2 756:1 793:1 822:1 859:1 891:1 908:1 910:1 912:1 915:1 918:1 965:2 1015:4 1020:1 1034:2 1065:1 1075:1 1084:1 1090:1 1094:1 1109:1 1133:1 1166:1 1173:1 1193:2 1305:1 1335:1 1361:7 1373:1 1378:2 1405:1 1406:1 1417:1 1428:1 1430:1 1462:2 1466:1 1510:2 1528:1 1599:1 1615:1 1632:2 1646:1 1674:1 1681:3 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1815:1 1848:1 1862:1 1912:2 1915:1 1954:1 1993:1 2029:1 2047:1 2050:1 2077:1 2097:1 2109:1 2113:2 2160:1 2174:1 2245:1 2263:1 2282:1 2316:1 2401:1 2443:1 2522:1 2538:1 2562:1 2570:1 2573:2 2576:2 2579:1 2585:1 2589:1 2595:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2681:1 2708:1 2714:1 2732:1 2749:1 2760:1 2779:1 2788:2 2802:1 2820:2 2836:1 2978:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:1 3122:1 3128:1 3130:1 3196:2 3203:1 3206:1 3310:1 3313:3 3315:8 3316:1 3318:1 3319:1 3335:2 3338:1 3365:1 3384:2 3451:1 3495:1 3680:1 3731:1 3756:1 3774:1 3811:1 3909:1 3936:1 3970:1 3980:1 4065:1 4074:1 4078:1 4184:1 4204:1 4220:1 4224:1 4292:1 4342:1 4349:1 4362:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:7 4466:1 4531:1 4534:1 4546:1 4556:1 4558:1 4571:2 4584:1 4588:1 4592:3 4604:1 4644:1 4668:1 4679:2 4685:1 4731:1 4748:1 4792:1 4793:1 4798:1 4803:1 4848:1 4929:7 4938:1 4946:2 4978:1 5044:4 5062:1 5105:2 5120:1 5122:1 5136:1 5137:1 5168:1 5197:1 5315:1 5337:1 5342:1 5349:1 5447:1 5451:1 5452:1 5459:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:3 5563:2 5616:1 5714:2 5716:1 5737:2 5738:1 5745:1 5754:2 5762:1 5772:2 5774:2 5775:1 5783:1 6029:1 6045:1 6092:1 6136:1 6144:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:1 6371:1 6448:1 6454:1 6593:2 6605:1 6610:1 6646:1 6660:1 6717:1 6768:1 6786:1 6812:1 6843:1 6932:1 6936:2 7035:1 7046:1 7052:1 7063:1 7064:1 7139:1 7151:1 7161:2 7183:1 7245:1 7260:1 7261:1 7273:1 7283:2 7297:2 7302:1 7307:1 7309:1 7313:4 7349:1 7371:2 7399:1 7461:1 7466:1 7528:1 7566:1 7569:1 7590:1 7703:1 7715:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 7923:1 7936:1 8000:1 8005:1 8007:1 8042:2 8100:1 8138:1 8181:1 8224:1 8258:1 8272:1 8297:1 8345:1 8446:1 8466:1 8503:2 8505:1 8547:1 8603:1 8624:1 8699:1 8700:3 8708:1 8724:1 8726:2 8764:1 8774:11 8780:1 8784:2 8794:3 8798:2 8800:1 8805:1 8808:1 8832:1 8853:1 8898:2 8953:2 8966:1 8989:1 9022:1 9079:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:8 9350:3 9352:2 9403:1 9438:1 9456:9 9475:1 9624:1 9645:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9714:1 9754:1 9765:2 9767:1 9768:1 9774:1 9826:1 9845:1 9872:1 9895:1 9938:1 9968:1 9998:1 10023:1 10082:1 10084:1 10085:1 10133:1 10136:1 10151:1 10159:1 10160:1 10213:1 10263:1 10343:2 10354:1 10372:1 10413:2 10418:2 10428:1 10430:1 10432:1 10444:1 10486:1 10499:1 10501:2 10505:1 10545:1 10552:1 10561:1 10618:1 10640:1 10642:2 10758:1 10769:2 10770:2 10805:1 10816:1 10818:2 10898:1 11053:2 11064:1 11070:1 11084:1 11188:1 11210:7 11220:1 11225:1 11269:1 11295:1 11297:1 11357:1 11361:1 11364:1 11369:1 11380:2 11389:1 11420:2 11462:1 11474:1 11493:2 11529:2 11549:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:2 11822:1 11871:1 11967:1 11983:1 12006:1 12013:1 12025:1 12028:2 12067:2 12118:1 12151:1 12161:1 12171:1 12180:1 12195:1 12240:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12546:1 12556:1 12571:1 12572:2 12575:2 12576:1 12610:1 12640:2 12645:1 12650:1 12651:1 12661:1 12721:1 12744:1 12761:1 12858:1 12893:1 12902:2 12903:1 12934:2 13040:1 13048:1 13056:1 13068:1 13162:1 13216:1 13243:1 13257:1 13274:1 13282:1 13292:1 13297:1 13303:1 13329:1 13334:1 13340:2 13362:1 13370:1 13462:1 13468:1 13478:1 13577:1 13594:1 13625:1 13661:1 13747:1 13770:2 13802:1 13864:1 13865:1 13866:1 13975:1 13998:1 14019:2 14035:1 14092:1 14201:2 14221:1 14222:1 14270:1 14281:1 14288:1 14402:1 14430:1 14433:8 14444:1 14447:3 14491:3 14512:1 14516:1 14549:1 14623:1 14646:2 14718:1 14731:1 14741:1 14758:1 14767:1 14773:1 14862:1 14885:1 14916:1 14928:1 14935:2 14955:1 14964:1 14998:1 15096:2 15099:1 15171:1 15181:5 15204:1 15285:1 15296:1 15334:1 15349:1 15354:1 15359:1 15388:1 15416:1 15421:1 15435:1 15439:1 15454:1 15459:1 15509:3 15536:1 15539:1 15545:1 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15712:1 15714:1 15732:1 15777:2 15787:2 15821:1 15832:2 15908:2 15915:1 15934:2 15986:1 16009:1 16011:2 16115:3 16235:1 16241:2 16243:2 16260:1 16338:1 16355:1 16375:1 16402:1 16410:1 16425:1 16449:1 16451:1 16457:1 16505:8 16511:2 16524:1 16542:1 16553:1 16604:1 16606:1 16609:1 16651:1 16669:1 16692:1 16725:1 16737:1 16851:1 16858:1 16929:1 16947:1 16965:1 16968:2 17001:2 17057:2 17062:1 17086:1 17116:1 17126:1 17148:1 17190:1 17365:1 17475:1 17502:1 17543:3 17552:2 17667:1 17679:1 17694:1 17722:2 17740:1 17755:1 17762:2 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:3 17956:1 18065:1 18072:5 18165:1 18174:1 18200:4 18250:2 18298:1 18326:1 18350:2 18360:2 18361:1 18459:1 18474:1 18489:1 18497:1 18554:1 18577:1 18618:1 18626:1 18717:1 18733:2 18746:1 18789:1 18878:1 18915:1 19038:1 19054:11 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19222:1 19245:2 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19796:1 19914:1 19947:2 20032:1 20067:1 20079:2 20108:1 20138:1 20192:2 20267:1 20287:1 20304:1 20307:1 20402:2 20407:1 20416:1 20488:1 20651:1 20724:3 20744:1 20826:1 20873:1 20890:1 20895:1 20967:1 20975:507 20997:1 21007:1 21027:1 21029:1 21051:1 21102:1 21110:1 21116:1 21117:1 21152:1 21181:1 21201:1 21418:1 21502:1 21508:1 21553:2 21621:1 21624:2 21653:2 21656:1 21663:1 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21881:2 21942:4 21969:2 21991:2 21998:1 22027:3 22039:1 22051:1 22062:2 22068:2 22069:1 22081:1 22162:1 22246:1 22286:1 22316:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:2 22644:1 22659:1 22669:1 22717:1 22726:1 22769:1 22826:2 22855:1 22861:1 22902:1 22973:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:1 23355:1 23377:1 23381:1 23392:2 23403:1 23418:1 23419:1 23429:1 23443:1 23489:2 23501:1 23507:2 23521:1 23536:1 23614:1 23617:1 23628:1 23660:1 23661:1 23671:1 23690:1 23694:1 23722:1 23749:1 23787:1 23843:1 23862:1 23869:2 23906:1 23929:1 23952:1 23977:1 23978:1 23980:1 24032:1 24034:1 24038:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24279:1 24287:1 24333:2 24364:1 24414:2 24417:1 24427:1 24443:1 24453:1 24469:2 24499:1 24584:3 24586:1 24600:1 24611:1 24623:1 24630:1 24631:1 24644:1 24662:1 24770:1 24783:1 24786:1 24790:2 24809:2 24863:1 24867:1 24871:1 24903:2 24928:2 25009:1 25017:1 25023:2 25092:4 25100:1 25103:1 25154:2 25155:1 25159:1 25184:1 25230:1 25240:5 25256:1 25273:1 25301:1 25316:1 25353:1 25382:1 25463:2 25517:1 25530:1 25557:1 25591:7 25609:1 25616:1 25659:1 25666:1 25679:1 25724:1 25778:1 25792:1 25794:1 25823:1 25925:1 26028:1 26043:1 26045:2 26053:1 26061:1 26115:8 26175:1 26208:1 26219:1 26222:4 26270:1 26286:1 26300:2 26306:1 26355:1 26364:1 26395:1 26511:2 26594:1 26598:1 26685:1 26696:1 26774:1 26804:2 26866:1 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27060:1 27119:1 27121:1 27139:1 27141:1 27144:1 27197:2 27238:2 27273:1 27276:1 27283:1 27370:1 27468:1 27471:1 27596:1 27603:1 27646:2 27688:1 27694:1 27714:1 27750:1 27798:1 27831:1 27926:1 27952:1 27987:1 27988:1 28050:1 28053:2 28058:1 28069:2 28111:1 28185:1 28240:1 28285:1 28313:1 28317:1 28399:2 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28720:1 28740:1 28758:1 28769:2 28770:1 28807:1 28819:1 28824:2 28854:2 28885:1 28887:2 28950:1 29024:1 29036:1 29039:1 29042:1 29052:1 29073:1 29078:1 29107:1 29122:1 29183:1 29205:1 29223:1 29236:1 29259:1 29280:1 29306:1 29316:1 29319:1 29362:2 29373:2 29386:1 29388:1 29391:5 29392:1 29430:1 29453:1 29474:1 29506:1 29517:1 29607:1 29654:1 29672:1 29676:1 29689:1 29736:1 29790:1 29813:1 29828:2 29835:1 29893:1 30048:1 30069:1 30071:2 30096:1 30110:1 30121:2 30155:2 30186:1 30197:2 30198:1 30200:2 30210:1 30226:1 30232:1 30243:1 30255:1 30258:1 30271:1 30348:1 30385:1 30407:1 30413:1 30421:1 30428:1 30429:1 30441:2 30473:2 30570:1 30619:1 30624:2 30656:1 30683:1 30714:1 30725:1 30741:1 30762:1 30779:1 30798:1 30800:1 30804:2 30808:2 30821:2 30828:1 30861:1 30863:2 30874:1 30895:1 30919:1 30936:1 30978:1 30979:1 30982:2 30998:1 31004:1 31029:1 31085:1 31096:1 31250:2 31251:1 31266:2 31268:2 31291:1 31328:1 31333:1 31340:1 31346:1 31405:2 31427:1 31514:1 31526:1 31530:1 31569:1 31570:1 31587:6 31631:2 31682:1 31709:1 31723:1 31747:2 31754:1 31765:1 31779:1 31794:1 31854:1 31856:1 31947:1 31958:1 32056:9 32079:2 32091:1 32092:1 32155:2 32159:4 32171:1 32204:1 32244:1 32316:1 32350:1 32365:1 32383:1 32403:2 32416:1 32517:1 32533:1 32539:1 32556:1 32603:1 32611:1 32615:2 32636:1 32645:1 32713:1 32717:1 32733:1 32777:1 32799:1 32804:2 32818:4 32839:1 32849:8 32887:1 32935:1 32943:1 32944:2
2 14:1 17:1 40:2 41:1 78:1 100:1 114:2 117:2 118:1 168:2 190:1 211:1 233:1 253:1 270:1 308:1 313:2 314:1 330:1 331:1 335:1 369:1 420:2 440:1 447:1 450:1 466:1 506:1 538:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:9 752:2 756:1 793:1 822:1 838:1 842:1 859:1 891:1 908:1 910:1 912:1 915:1 918:1 965:2 1015:5 1020:1 1034:2 1065:1 1075:1 1084:2 1090:1 1094:1 1101:1 1109:1 1133:1 1166:1 1173:1 1193:2 1260:1 1305:1 1335:1 1361:8 1372:2 1373:1 1378:2 1405:1 1406:1 1417:1 1428:1 1430:1 1462:2 1466:1 1510:2 1528:1 1543:1 1556:2 1599:1 1615:1 1632:2 1646:1 1674:2 1681:3 1704:1 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1815:1 1848:1 1862:1 1912:2 1915:2 1954:1 1993:1 2029:1 2047:1 2050:1 2056:1 2077:1 2097:2 2109:1 2113:2 2121:1 2160:1 2174:1 2245:1 2263:1 2282:1 2316:1 2367:1 2401:2 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:2 2576:2 2579:1 2580:1 2585:2 2589:1 2595:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2681:1 2708:1 2714:1 2732:1 2749:1 2760:1 2779:1 2788:2 2802:1 2820:2 2836:1 2978:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:1 3122:1 3128:1 3130:1 3196:2 3203:1 3206:1 3310:1 3313:3 3315:9 3316:1 3318:1 3319:1 3335:2 3338:1 3365:1 3384:3 3451:1 3495:1 3680:1 3731:1 3756:1 3770:1 3774:1 3811:1 3909:1 3936:1 3970:1 3979:1 3980:1 4065:1 4074:1 4078:1 4184:1 4204:1 4220:1 4224:1 4292:1 4342:1 4349:1 4362:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:8 4466:2 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4731:1 4748:1 4792:2 4793:1 4798:2 4803:1 4848:1 4929:8 4938:1 4946:2 4978:1 5044:5 5062:1 5105:2 5120:1 5122:2 5136:1 5137:1 5168:1 5197:1 5315:1 5337:1 5342:1 5349:1 5447:1 5451:1 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:6 5563:2 5616:1 5714:2 5716:1 5737:2 5738:1 5739:1 5745:1 5754:2 5762:1 5770:1 5772:2 5774:2 5775:1 5783:1 6029:1 6045:1 6092:1 6136:1 6144:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:1 6371:1 6448:1 6454:1 6593:2 6605:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6786:1 6812:1 6843:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7052:1 7063:1 7064:2 7139:1 7151:1 7161:2 7183:1 7245:1 7260:1 7261:1 7273:1 7283:3 7297:2 7302:1 7307:1 7309:1 7313:4 7349:1 7371:2 7399:1 7461:1 7466:1 7528:1 7566:1 7569:1 7590:1 7703:1 7712:1 7715:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 7923:1 7936:1 8000:1 8005:1 8007:1 8030:1 8042:3 8100:1 8138:1 8181:1 8224:1 8258:1 8272:1 8297:1 8345:1 8446:1 8466:1 8503:2 8505:1 8547:2 8603:1 8624:1 8664:1 8699:1 8700:3 8708:1 8724:1 8726:2 8759:2 8764:1 8774:14 8780:1 8784:2 8794:3 8798:2 8800:1 8805:1 8808:1 8832:1 8853:1 8898:2 8909:1 8953:2 8966:1 8989:1 8990:1 9019:1 9022:2 9079:1 9082:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:9 9350:4 9352:2 9395:1 9403:2 9438:1 9456:11 9475:1 9624:1 9645:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9714:1 9754:1 9765:2 9767:1 9768:1 9774:1 9786:1 9826:1 9829:1 9841:1 9845:1 9872:1 9895:1 9938:1 9968:1 9998:1 10023:1 10082:1 10084:1 10085:1 10117:1 10133:1 10136:1 10151:1 10159:1 10160:1 10213:1 10254:1 10263:1 10343:2 10354:1 10372:1 10413:2 10418:2 10428:1 10430:1 10432:1 10444:1 10476:1 10486:1 10499:1 10501:2 10505:1 10513:1 10533:2 10545:2 10552:1 10561:1 10618:1 10640:1 10642:2 10758:1 10769:2 10770:4 10805:1 10816:1 10818:2 10846:1 10898:1 10903:1 10932:1 10934:1 10996:1 11053:3 11064:1 11070:1 11084:1 11188:1 11210:8 11220:1 11225:1 11269:1 11295:1 11297:1 11357:1 11358:1 11361:1 11364:1 11369:1 11380:2 11389:1 11420:2 11435:1 11462:1 11474:1 11493:2 11529:2 11549:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11747:1 11822:1 11871:1 11967:1 11983:1 12006:1 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12151:1 12161:2 12171:1 12180:1 12195:1 12240:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12540:1 12546:1 12556:1 12571:1 12572:2 12575:2 12576:1 12610:1 12629:1 12640:3 12645:1 12650:1 12651:1 12661:1 12721:1 12744:1 12761:1 12858:1 12864:1 12893:1 12902:2 12903:1 12934:2 12978:2 13040:1 13048:1 13056:1 13068:1 13162:1 13188:2 13216:1 13243:1 13257:1 13274:1 13277:1 13282:1 13292:2 13297:2 13303:2 13329:1 13334:1 13340:2 13362:1 13370:1 13397:1 13446:1 13462:1 13468:1 13478:1 13484:1 13527:2 13577:1 13594:1 13625:1 13661:1 13747:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13975:1 13998:1 14019:2 14035:1 14092:1 14096:1 14193:1 14201:2 14221:1 14222:1 14270:1 14281:1 14288:1 14402:1 14405:1 14430:1 14433:9 14444:1 14447:3 14455:1 14491:3 14512:1 14516:1 14545:1 14549:1 14623:1 14646:2 14718:1 14731:1 14741:1 14758:1 14767:1 14773:1 14862:1 14885:1 14916:1 14928:1 14935:3 14955:1 14964:1 14998:1 15096:2 15099:1 15116:1 15170:1 15171:1 15181:5 15204:1 15285:1 15296:1 15334:1 15349:2 15354:2 15359:1 15388:1 15416:1 15421:1 15435:1 15439:1 15454:1 15459:1 15496:1 15498:1 15509:5 15536:1 15539:1 15545:1 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15712:1 15714:1 15732:1 15777:2 15787:2 15821:1 15832:4 15908:2 15915:1 15934:3 15986:1 16009:1 16011:2 16115:3 16235:2 16241:2 16243:2 16260:1 16338:1 16355:1 16375:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16449:1 16451:1 16457:1 16505:9 16511:2 16515:1 16518:1 16524:1 16542:1 16553:1 16604:1 16606:1 16609:2 16619:1 16629:1 16651:1 16669:2 16692:1 16725:1 16737:1 16851:1 16858:1 16929:2 16947:1 16965:1 16968:2 17001:2 17027:1 17057:2 17062:1 17086:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:1 17360:1 17365:1 17473:1 17475:1 17502:1 17543:3 17552:2 17667:1 17679:1 17694:1 17722:2 17740:1 17755:1 17762:2 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17956:1 18065:1 18072:5 18165:1 18174:1 18200:5 18250:2 18298:1 18326:1 18350:3 18360:2 18361:1 18459:1 18474:1 18489:1 18497:1 18554:1 18577:1 18618:1 18626:1 18717:1 18733:2 18746:1 18789:1 18878:1 18887:1 18915:1 18919:1 18932:1 19038:1 19054:13 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19427:1 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19796:1 19914:1 19947:2 20032:1 20067:1 20079:2 20108:1 20138:1 20192:2 20267:1 20287:1 20292:1 20304:1 20307:1 20402:2 20407:1 20416:1 20451:1 20488:1 20628:1 20651:1 20724:3 20744:1 20826:1 20873:1 20890:1 20895:1 20957:1 20967:1 20975:567 20997:1 21007:1 21027:1 21029:1 21051:1 21102:1 21110:1 21116:1 21117:1 21152:1 21181:1 21188:1 21201:1 21418:1 21502:1 21508:1 21553:2 21554:1 21572:1 21621:1 21624:2 21653:2 21656:1 21663:1 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21877:1 21881:2 21907:1 21942:5 21969:2 21991:2 21998:1 22027:3 22039:1 22051:1 22062:2 22068:2 22069:1 22081:1 22143:1 22162:1 22167:1 22194:1 22246:1 22286:1 22316:1 22414:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22644:1 22659:1 22669:2 22717:1 22726:1 22743:1 22757:1 22769:1 22826:2 22855:1 22861:1 22902:1 22973:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23355:1 23377:1 23381:1 23392:2 23397:1 23403:1 23418:1 23419:1 23429:1 23443:1 23489:2 23501:1 23507:2 23521:1 23536:1 23614:1 23617:2 23628:1 23660:1 23661:1 23671:1 23690:1 23694:1 23722:1 23741:1 23749:1 23787:1 23843:1 23862:1 23869:2 23906:1 23929:1 23940:1 23952:1 23977:1 23978:1 23980:1 24032:1 24034:1 24038:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24279:1 24287:1 24333:2 24364:1 24399:1 24414:2 24417:1 24427:1 24443:1 24453:1 24469:2 24484:1 24499:1 24584:3 24586:1 24600:1 24611:1 24623:1 24630:1 24631:1 24644:1 24662:1 24770:1 24783:1 24786:1 24790:3 24809:2 24832:1 24863:1 24867:1 24871:1 24903:2 24928:2 25009:1 25017:1 25023:2 25092:5 25094:1 25100:1 25103:1 25154:3 25155:1 25159:1 25184:1 25230:1 25240:6 25256:1 25273:1 25301:1 25316:1 25353:1 25382:1 25463:2 25517:1 25530:1 25557:1 25591:8 25609:1 25614:1 25616:1 25659:1 25666:1 25679:1 25680:1 25716:1 25721:1 25724:1 25778:1 25792:1 25794:1 25823:1 25925:1 26028:1 26043:1 26045:2 26053:1 26061:1 26115:9 26142:1 26175:1 26208:1 26219:1 26222:5 26270:1 26286:1 26300:2 26306:1 26311:1 26355:1 26363:1 26364:1 26395:1 26511:2 26540:1 26594:1 26598:1 26685:1 26696:1 26774:1 26804:2 26866:1 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27036:1 27060:2 27076:1 27117:1 27119:1 27121:1 27139:1 27141:1 27144:1 27161:1 27197:2 27238:2 27273:1 27276:1 27277:1 27283:1 27299:1 27370:1 27468:1 27471:1 27538:1 27596:1 27603:1 27610:1 27646:2 27688:1 27694:1 27714:1 27750:1 27798:1 27831:1 27926:1 27952:1 27987:1 27988:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28185:1 28240:1 28285:1 28313:1 28317:1 28399:2 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28720:1 28740:1 28758:1 28769:2 28770:1 28807:1 28819:1 28824:2 28854:2 28885:1 28887:2 28950:1 29024:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29183:1 29205:1 29211:1 29223:1 29236:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29353:1 29362:2 29373:2 29386:1 29388:1 29391:5 29392:1 29430:1 29453:1 29474:2 29506:1 29517:1 29607:1 29654:1 29672:1 29676:1 29686:1 29689:1 29736:1 29790:1 29813:1 29828:2 29835:1 29848:1 29893:1 29922:1 30048:1 30069:1 30071:2 30096:1 30110:1 30121:3 30155:2 30186:1 30197:2 30198:1 30200:2 30210:1 30226:1 30232:1 30243:1 30249:1 30255:1 30258:1 30271:1 30348:1 30385:1 30407:1 30413:2 30421:2 30428:1 30429:1 30441:2 30473:2 30570:1 30619:1 30624:2 30655:1 30656:1 30683:1 30714:1 30725:1 30741:1 30762:1 30778:1 30779:1 30798:1 30800:1 30804:2 30808:2 30821:2 30828:1 30861:1 30863:2 30874:1 30882:1 30895:1 30919:2 30936:1 30978:1 30979:1 30982:2 30998:1 31004:1 31029:1 31052:1 31085:1 31086:1 31096:1 31250:2 31251:1 31266:2 31268:2 31291:1 31328:1 31333:1 31340:1 31346:1 31405:2 31427:1 31485:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:7 31631:3 31682:1 31709:2 31723:1 31747:2 31754:1 31765:1 31779:1 31794:1 31803:1 31854:1 31856:1 31886:1 31896:2 31947:1 31958:1 32056:11 32079:2 32091:2 32092:1 32155:2 32159:4 32171:1 32204:1 32244:1 32316:1 32334:1 32350:1 32365:1 32383:1 32403:2 32416:1 32517:1 32522:2 32533:1 32539:1 32556:1 32603:1 32611:1 32615:2 32636:1 32645:1 32713:1 32717:1 32733:1 32774:1 32777:1 32799:1 32804:2 32818:4 32839:1 32849:9 32887:1 32935:1 32943:1 32944:2
2 14:1 17:1 40:2 41:1 78:1 100:1 114:2 117:2 118:1 168:2 190:1 211:1 233:1 253:1 270:1 308:1 313:2 314:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 506:1 538:1 565:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:10 752:2 756:1 793:1 822:1 838:1 842:1 859:1 891:1 908:1 910:1 912:1 915:1 918:1 965:2 1015:5 1020:1 1034:4 1065:1 1075:1 1084:2 1090:1 1094:1 1101:1 1109:1 1133:1 1166:1 1173:1 1193:2 1260:1 1303:1 1305:1 1335:1 1361:9 1372:2 1373:1 1378:2 1405:1 1406:1 1417:1 1428:1 1430:1 1462:2 1466:1 1510:2 1528:1 1543:1 1556:2 1599:1 1615:1 1632:2 1646:1 1674:2 1681:3 1704:1 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1802:1 1815:1 1848:1 1858:1 1862:1 1912:2 1915:2 1954:1 1993:1 2029:1 2047:1 2050:1 2056:1 2077:1 2097:2 2109:1 2113:2 2121:1 2160:1 2174:1 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2367:1 2372:1 2401:2 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:1 2585:2 2589:1 2595:2 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2681:1 2708:1 2714:1 2732:1 2749:1 2760:1 2779:1 2788:2 2802:1 2820:2 2836:1 2978:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:1 3122:1 3128:1 3130:1 3196:2 3203:1 3206:1 3310:1 3313:3 3315:10 3316:1 3318:2 3319:1 3335:2 3338:1 3356:1 3365:1 3373:1 3384:3 3408:1 3451:1 3495:1 3680:1 3731:1 3756:1 3770:1 3774:1 3811:1 3909:1 3936:1 3970:1 3979:1 3980:1 4065:1 4074:1 4078:1 4184:1 4204:1 4220:1 4224:1 4292:1 4336:1 4342:1 4349:1 4362:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:9 4466:2 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4748:1 4792:2 4793:1 4798:2 4803:1 4848:1 4929:9 4938:1 4946:2 4978:1 5044:6 5062:1 5105:2 5120:1 5122:2 5128:1 5136:1 5137:1 5168:1 5197:1 5315:1 5337:1 5342:1 5349:1 5447:1 5451:1 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:6 5563:2 5616:1 5714:2 5716:1 5737:2 5738:1 5739:1 5745:1 5754:2 5762:1 5770:1 5772:2 5774:2 5775:1 5783:1 5857:1 6029:1 6045:1 6046:1 6092:1 6136:1 6144:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:1 6371:1 6448:1 6454:1 6497:1 6593:2 6605:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6786:1 6812:1 6843:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7063:1 7064:2 7100:1 7139:1 7151:1 7161:3 7183:1 7240:1 7245:1 7260:1 7261:1 7273:1 7283:3 7297:2 7302:1 7307:1 7309:1 7313:4 7349:1 7371:2 7399:1 7452:1 7461:1 7466:1 7528:1 7559:1 7566:1 7569:1 7590:1 7703:1 7712:1 7715:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 7923:1 7936:1 8000:1 8005:1 8007:1 8030:1 8042:3 8100:1 8138:1 8181:1 8224:1 8258:1 8272:1 8297:1 8345:1 8363:1 8446:1 8466:1 8503:3 8505:1 8547:2 8603:1 8624:1 8664:1 8699:1 8700:4 8708:1 8724:1 8726:4 8759:2 8764:1 8774:16 8780:1 8784:2 8794:3 8798:2 8800:1 8805:1 8808:1 8832:1 8853:1 8898:2 8909:1 8953:2 8966:1 8989:1 8990:1 9019:1 9022:2 9079:1 9082:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:10 9337:1 9350:4 9352:2 9395:1 9403:2 9438:1 9456:12 9475:1 9580:1 9587:1 9624:1 9645:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9714:1 9754:1 9765:2 9767:1 9768:1 9774:1 9786:1 9826:1 9829:1 9841:1 9845:1 9872:1 9895:1 9938:1 9968:1 9998:1 10023:1 10082:1 10084:1 10085:1 10114:1 10117:1 10133:1 10136:1 10151:1 10159:1 10160:1 10213:1 10254:1 10263:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:1 10432:1 10444:1 10476:1 10486:1 10499:1 10501:2 10505:1 10513:1 10533:2 10545:2 10552:1 10561:1 10618:1 10640:1 10642:2 10660:1 10758:1 10769:2 10770:4 10805:1 10816:1 10818:2 10846:1 10898:1 10903:1 10932:1 10934:1 10996:1 11053:3 11064:1 11070:1 11073:2 11084:1 11188:1 11210:9 11220:1 11225:1 11256:1 11269:1 11295:1 11297:1 11357:1 11358:1 11361:1 11364:1 11369:1 11380:2 11389:1 11420:2 11435:1 11442:1 11462:1 11474:1 11493:2 11495:1 11529:2 11549:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11737:1 11747:1 11796:1 11822:1 11871:1 11967:1 11983:1 12006:1 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12151:2 12161:2 12171:1 12180:1 12195:1 12240:1 12262:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12540:1 12546:1 12556:1 12571:1 12572:2 12575:2 12576:1 12610:1 12629:1 12640:3 12645:1 12650:1 12651:1 12661:1 12672:2 12721:1 12744:1 12761:1 12858:1 12864:1 12893:1 12902:2 12903:1 12908:1 12934:2 12978:2 13036:1 13040:1 13048:1 13056:2 13068:1 13069:1 13162:1 13188:2 13216:1 13243:1 13257:1 13274:1 13277:1 13282:1 13292:2 13297:2 13303:2 13329:1 13334:1 13340:2 13362:1 13370:1 13397:1 13446:1 13462:1 13468:1 13478:1 13484:1 13527:2 13577:1 13594:1 13625:1 13661:1 13747:2 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13975:1 13998:1 14019:2 14035:1 14092:1 14096:1 14193:1 14201:2 14221:1 14222:1 14255:1 14270:1 14281:1 14288:1 14402:1 14405:1 14430:2 14433:10 14444:1 14447:3 14455:1 14491:3 14512:1 14516:1 14545:1 14549:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:1 14773:1 14862:1 14885:1 14907:1 14916:1 14928:1 14935:3 14955:1 14964:1 14998:1 15082:1 15085:1 15096:2 15099:1 15116:1 15170:1 15171:1 15181:5 15204:1 15284:1 15285:1 15296:1 15334:1 15349:2 15354:2 15359:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15496:1 15498:1 15509:5 15536:1 15539:1 15545:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15712:1 15714:1 15725:1 15732:1 15777:2 15787:2 15821:1 15832:5 15908:2 15915:1 15934:3 15986:1 16009:1 16011:2 16115:3 16224:1 16235:2 16241:2 16243:2 16259:1 16260:1 16338:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16449:1 16451:1 16457:1 16505:10 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:2 16619:1 16629:1 16651:1 16669:2 16692:1 16725:1 16737:1 16851:1 16858:1 16929:2 16947:1 16965:1 16968:2 17001:3 17027:1 17057:2 17062:1 17086:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:1 17261:1 17342:1 17360:1 17365:1 17473:1 17475:1 17502:1 17543:3 17552:2 17667:1 17679:1 17694:1 17722:2 17740:1 17755:1 17762:2 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17956:1 18065:1 18072:5 18165:1 18174:1 18200:6 18250:2 18298:1 18326:1 18350:3 18360:2 18361:1 18459:1 18474:1 18489:1 18494:1 18497:1 18554:1 18577:1 18618:1 18626:1 18717:1 18733:2 18746:1 18789:1 18803:1 18878:1 18887:1 18915:1 18919:1 18930:1 18932:1 19038:1 19054:14 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19427:1 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19796:1 19813:1 19914:1 19947:2 20032:1 20067:1 20079:2 20108:1 20138:1 20192:2 20201:1 20267:1 20287:1 20292:1 20298:1 20304:1 20307:1 20402:2 20407:1 20416:1 20451:1 20488:1 20628:1 20651:1 20724:3 20744:1 20826:2 20873:1 20890:1 20895:1 20957:1 20967:1 20975:653 20997:1 21007:1 21027:1 21029:1 21051:1 21102:1 21110:1 21116:1 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21418:1 21472:1 21502:1 21508:1 21553:2 21554:1 21572:1 21621:1 21624:2 21653:2 21656:1 21663:1 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21877:1 21881:2 21907:1 21942:6 21969:2 21991:2 21998:1 22027:3 22039:1 22051:1 22062:2 22068:2 22069:1 22081:1 22143:1 22162:1 22167:1 22194:1 22246:1 22286:1 22316:1 22414:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22571:1 22644:1 22659:1 22669:2 22706:1 22717:1 22726:1 22743:1 22757:1 22769:1 22826:2 22855:1 22861:1 22902:1 22973:1 22977:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23355:1 23377:1 23381:1 23384:1 23392:2 23397:1 23403:2 23418:1 23419:1 23429:1 23443:1 23489:2 23501:1 23507:2 23521:1 23536:1 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23671:1 23690:1 23694:1 23722:1 23741:1 23749:1 23787:1 23843:1 23862:1 23864:1 23869:2 23906:1 23929:1 23940:1 23952:1 23977:1 23978:1 23980:1 24032:1 24034:1 24038:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24279:1 24287:1 24333:2 24364:1 24399:1 24414:2 24417:1 24427:1 24443:1 24453:1 24469:3 24484:1 24499:1 24584:3 24586:1 24600:1 24611:1 24623:1 24630:1 24631:1 24644:1 24662:1 24709:1 24770:1 24783:1 24786:1 24790:3 24809:2 24832:1 24863:1 24867:1 24871:1 24903:2 24928:2 24990:1 25009:1 25017:1 25023:2 25092:6 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:1 25301:1 25304:1 25316:1 25353:1 25382:1 25463:2 25517:1 25530:1 25557:1 25591:9 25609:1 25614:1 25616:1 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25716:1 25721:1 25724:1 25778:1 25792:1 25794:1 25823:1 25925:1 26028:1 26043:1 26045:2 26053:1 26056:1 26061:1 26115:10 26142:1 26175:1 26207:1 26208:1 26219:1 26222:6 26270:1 26286:1 26300:2 26306:1 26311:1 26355:1 26363:1 26364:1 26395:1 26511:2 26540:1 26594:1 26598:1 26631:1 26662:1 26685:1 26696:1 26774:1 26804:2 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27036:1 27060:2 27076:1 27117:1 27119:1 27121:1 27139:1 27141:1 27144:1 27161:1 27197:2 27238:3 27273:1 27276:1 27277:1 27283:1 27299:1 27370:1 27468:1 27471:1 27538:1 27584:1 27596:1 27603:1 27610:1 27646:2 27688:1 27694:1 27714:1 27750:1 27764:2 27790:1 27798:1 27806:1 27831:1 27926:1 27952:1 27987:1 27988:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28185:1 28240:1 28285:1 28313:1 28317:1 28399:2 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28720:1 28740:1 28758:1 28769:2 28770:1 28793:1 28807:1 28819:1 28824:2 28854:2 28885:1 28887:2 28899:1 28950:1 29024:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29183:1 29205:1 29211:1 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29353:1 29362:3 29373:2 29386:1 29388:1 29391:5 29392:1 29430:1 29453:1 29474:2 29506:1 29517:1 29607:1 29654:1 29672:1 29676:1 29686:1 29689:1 29736:1 29790:1 29813:1 29828:2 29835:1 29848:1 29893:1 29922:1 30048:1 30061:1 30069:1 30071:2 30096:1 30110:1 30121:3 30155:2 30186:1 30197:2 30198:1 30200:2 30210:1 30226:1 30232:1 30243:2 30249:1 30255:1 30258:1 30271:1 30348:1 30385:1 30407:1 30413:3 30421:2 30428:1 30429:1 30441:2 30473:2 30570:1 30582:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30714:1 30725:1 30741:1 30762:1 30778:1 30779:1 30798:1 30800:1 30804:2 30808:2 30821:2 30828:1 30861:1 30863:2 30874:1 30882:1 30895:1 30919:2 30936:1 30978:1 30979:1 30982:2 30998:1 30999:1 31004:1 31029:1 31052:1 31085:1 31086:1 31096:1 31250:2 31251:1 31266:2 31268:2 31291:1 31307:1 31328:1 31333:1 31340:1 31346:1 31405:2 31427:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:7 31631:3 31682:1 31709:2 31723:1 31747:3 31754:1 31765:1 31779:1 31780:1 31794:1 31803:1 31854:1 31856:1 31886:1 31896:2 31947:1 31958:1 32056:12 32079:2 32091:2 32092:1 32124:1 32155:2 32159:4 32171:1 32204:1 32244:1 32316:1 32334:1 32350:1 32365:1 32383:1 32403:2 32416:1 32517:1 32522:2 32533:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:1 32645:1 32713:1 32717:1 32733:1 32774:1 32777:1 32799:1 32804:2 32818:4 32839:1 32849:10 32887:1 32935:1 32943:1 32944:2 32978:1
2 14:1 17:1 40:2 41:1 78:1 100:1 114:2 117:2 118:1 146:1 168:2 190:1 211:1 233:1 253:1 270:1 291:1 308:1 313:2 314:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 506:1 538:1 565:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:11 752:2 756:1 793:1 822:1 838:1 842:1 859:1 891:1 908:1 910:1 912:2 915:1 918:1 965:2 1015:5 1020:1 1034:4 1065:1 1075:2 1084:2 1090:1 1094:1 1101:1 1109:2 1133:1 1166:1 1173:1 1193:2 1260:1 1303:1 1305:2 1335:1 1361:10 1372:2 1373:1 1378:2 1405:1 1406:1 1417:1 1428:1 1430:1 1462:2 1466:1 1510:2 1528:1 1543:1 1549:1 1556:2 1599:1 1615:1 1632:2 1646:1 1674:2 1681:3 1704:1 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1802:1 1815:1 1848:1 1858:1 1862:1 1912:2 1915:2 1954:1 1993:1 2005:1 2029:1 2047:1 2050:1 2056:1 2077:1 2097:2 2109:1 2113:2 2121:1 2160:1 2174:1 2206:1 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2367:1 2372:1 2401:2 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:1 2585:2 2589:2 2595:2 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:1 2681:1 2708:1 2714:1 2732:1 2749:1 2760:1 2779:1 2788:2 2802:1 2820:2 2836:1 2978:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:2 3122:1 3128:2 3130:1 3196:2 3203:1 3206:1 3223:1 3310:1 3313:4 3315:11 3316:1 3318:2 3319:1 3335:2 3338:1 3356:1 3365:2 3373:1 3384:3 3408:1 3451:1 3495:2 3680:1 3731:1 3756:1 3770:1 3774:1 3811:1 3909:1 3936:1 3970:1 3979:1 3980:1 4065:1 4074:1 4078:1 4135:1 4143:1 4184:1 4204:1 4220:1 4224:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:10 4466:2 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4733:1 4748:1 4792:2 4793:1 4798:2 4803:1 4817:1 4848:1 4929:10 4938:1 4946:2 4978:1 5044:6 5062:1 5105:2 5120:1 5122:2 5128:1 5136:1 5137:1 5168:1 5197:2 5303:1 5315:1 5337:1 5342:1 5349:1 5447:1 5451:1 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:7 5563:2 5616:1 5626:1 5714:2 5716:1 5737:2 5738:1 5739:1 5745:2 5754:2 5762:1 5770:1 5772:2 5774:2 5775:1 5783:1 5814:1 5857:1 6029:1 6041:1 6045:1 6046:1 6092:1 6136:1 6144:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:2 6371:1 6442:1 6448:1 6454:1 6497:1 6593:2 6605:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6784:1 6786:1 6812:1 6843:1 6875:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7063:1 7064:2 7100:1 7139:1 7151:1 7161:3 7183:1 7240:1 7245:1 7260:1 7261:1 7273:1 7283:3 7297:3 7302:1 7307:1 7309:1 7312:1 7313:4 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:2 7528:1 7559:1 7566:1 7569:1 7590:1 7645:1 7703:1 7712:1 7715:1 7718:2 7738:1 7774:1 7854:1 7889:2 7903:1 7923:1 7936:1 8000:1 8005:1 8007:1 8030:1 8042:3 8100:1 8138:1 8181:1 8224:1 8258:1 8272:1 8297:1 8345:1 8363:1 8446:1 8466:2 8503:3 8505:1 8547:2 8603:1 8624:2 8664:1 8670:1 8699:2 8700:4 8708:1 8724:1 8726:4 8759:2 8764:1 8774:17 8780:1 8781:1 8784:2 8794:4 8798:2 8800:1 8805:1 8808:1 8832:1 8853:1 8898:2 8909:1 8953:2 8966:2 8985:1 8989:1 8990:1 9019:1 9022:3 9079:1 9082:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:11 9330:1 9337:1 9350:4 9352:2 9376:1 9395:1 9403:2 9430:1 9438:1 9456:13 9475:1 9580:1 9587:1 9624:1 9645:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9693:1 9714:1 9754:1 9765:2 9767:1 9768:1 9774:1 9786:1 9826:1 9829:1 9841:1 9845:1 9872:2 9895:1 9938:1 9968:1 9998:1 10023:1 10082:1 10084:1 10085:1 10114:1 10117:2 10133:1 10136:1 10151:1 10159:1 10160:1 10213:1 10250:1 10254:1 10263:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:2 10432:1 10444:1 10476:1 10486:1 10499:1 10501:2 10505:1 10513:1 10533:2 10545:2 10552:2 10561:1 10618:1 10638:1 10640:1 10642:2 10660:1 10707:1 10758:1 10769:2 10770:4 10799:1 10805:1 10816:1 10818:2 10846:1 10898:1 10903:1 10932:1 10933:1 10934:1 10995:1 10996:1 10998:1 11053:3 11064:1 11070:1 11073:2 11084:1 11188:1 11210:10 11220:1 11225:1 11256:1 11269:1 11295:1 11297:1 11312:1 11357:1 11358:1 11361:1 11364:1 11369:1 11380:2 11389:1 11420:2 11435:1 11441:1 11442:1 11462:1 11474:1 11493:2 11495:1 11529:2 11549:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11737:1 11747:1 11796:1 11822:1 11871:1 11872:1 11967:1 11983:1 12006:1 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12151:3 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12240:2 12262:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:2 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12540:1 12546:2 12556:1 12571:1 12572:2 12575:2 12576:1 12610:1 12629:1 12640:3 12645:1 12650:1 12651:1 12661:1 12672:2 12682:1 12721:1 12744:1 12761:1 12858:1 12864:1 12893:1 12902:2 12903:1 12908:1 12931:1 12934:2 12978:2 13036:1 13040:1 13048:1 13056:3 13068:1 13069:1 13162:1 13188:2 13216:1 13243:1 13257:1 13274:1 13277:1 13282:1 13292:3 13297:2 13303:3 13329:1 13334:1 13340:2 13362:1 13370:1 13397:1 13446:1 13462:1 13468:1 13478:2 13484:1 13527:2 13577:1 13594:1 13625:1 13661:1 13747:2 13755:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13975:1 13998:1 14019:2 14035:1 14092:1 14096:1 14193:1 14201:2 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14402:1 14405:1 14430:2 14433:11 14439:1 14444:1 14447:3 14455:1 14491:3 14502:1 14512:1 14516:1 14545:1 14549:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14862:1 14885:1 14907:1 14916:1 14928:1 14935:4 14955:1 14964:1 14973:1 14998:1 15082:1 15085:1 15096:2 15099:1 15106:1 15116:1 15170:1 15171:1 15181:5 15185:1 15204:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:2 15354:2 15359:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15496:1 15498:1 15509:5 15536:1 15539:1 15545:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15712:1 15714:1 15725:1 15732:1 15741:1 15777:2 15787:2 15821:1 15832:5 15835:1 15908:2 15915:1 15934:3 15986:1 16009:1 16011:2 16115:3 16224:1 16235:2 16241:2 16243:2 16259:1 16260:1 16338:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16449:1 16451:1 16457:1 16505:11 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16629:1 16651:1 16669:2 16674:1 16692:1 16725:1 16737:1 16851:1 16858:1 16887:1 16914:1 16929:2 16947:1 16965:1 16968:2 17001:3 17027:1 17057:2 17062:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:1 17261:1 17337:2 17342:1 17360:1 17365:1 17473:1 17475:1 17502:1 17543:3 17552:2 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:1 17762:2 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17956:1 18065:1 18072:5 18121:1 18130:1 18165:1 18174:1 18200:6 18250:2 18298:1 18326:1 18350:3 18360:2 18361:1 18459:1 18474:1 18489:1 18494:1 18497:1 18554:1 18577:1 18618:1 18626:1 18717:1 18733:2 18746:1 18789:1 18803:1 18865:1 18878:1 18883:1 18887:1 18915:1 18919:1 18930:1 18932:1 19038:1 19054:15 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19425:1 19427:1 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19883:1 19890:1 19914:1 19935:1 19947:2 20032:1 20067:2 20079:2 20108:1 20138:1 20192:2 20201:1 20267:1 20287:1 20292:1 20298:1 20304:1 20307:1 20402:2 20407:1 20416:1 20451:1 20488:1 20545:1 20628:1 20640:1 20651:1 20724:3 20744:1 20763:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:689 20997:1 21007:1 21027:1 21029:1 21051:1 21102:1 21110:1 21116:1 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21371:1 21372:1 21418:1 21472:1 21502:1 21508:1 21553:2 21554:1 21572:1 21621:1 21624:2 21653:2 21656:1 21663:1 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21877:1 21881:2 21907:2 21942:6 21969:2 21991:2 21998:1 22027:3 22039:1 22051:1 22062:2 22068:2 22069:1 22081:1 22137:1 22143:1 22162:2 22167:1 22194:1 22246:1 22286:1 22316:1 22414:1 22417:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22571:1 22611:1 22644:1 22659:1 22669:3 22706:1 22717:1 22726:1 22743:1 22757:1 22769:1 22826:2 22834:1 22855:1 22861:1 22902:1 22973:1 22977:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23397:1 23403:3 23418:1 23419:1 23429:1 23440:1 23443:1 23489:2 23501:1 23507:2 23521:1 23536:1 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23671:1 23690:1 23694:1 23722:1 23741:1 23749:1 23787:1 23843:1 23862:1 23864:1 23869:2 23906:1 23929:1 23940:2 23952:1 23977:1 23978:1 23980:1 24022:1 24032:1 24034:1 24038:2 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:1 24279:1 24287:1 24333:2 24364:1 24399:1 24405:1 24410:1 24414:2 24417:1 24427:1 24443:1 24453:1 24469:4 24484:1 24499:1 24581:1 24584:3 24586:1 24599:1 24600:1 24611:1 24623:1 24630:1 24631:1 24644:1 24662:1 24709:1 24770:1 24783:2 24786:1 24790:3 24809:2 24832:1 24863:1 24867:1 24871:1 24903:2 24928:2 24990:1 25009:1 25017:1 25023:2 25049:1 25092:6 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:1 25301:1 25304:1 25316:1 25353:1 25382:1 25399:1 25463:2 25517:1 25530:1 25557:1 25591:10 25609:1 25614:1 25616:2 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25716:1 25721:1 25724:1 25754:1 25768:1 25778:1 25792:1 25794:1 25823:1 25925:1 26028:1 26043:1 26045:2 26053:1 26056:1 26061:1 26115:11 26142:1 26175:1 26207:1 26208:1 26219:1 26222:6 26270:1 26286:1 26300:2 26306:1 26311:1 26355:1 26363:1 26364:1 26395:1 26511:2 26540:1 26594:1 26598:1 26631:1 26662:1 26675:1 26685:1 26696:1 26774:1 26804:2 26808:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 27002:1 27019:1 27036:1 27060:2 27076:1 27117:1 27119:1 27121:1 27128:1 27139:1 27141:1 27144:2 27150:1 27161:1 27197:2 27238:3 27273:1 27276:1 27277:1 27283:1 27299:1 27370:1 27468:1 27471:1 27538:1 27584:1 27585:1 27596:1 27603:2 27610:1 27646:2 27688:1 27694:2 27714:1 27750:1 27764:2 27790:1 27798:1 27806:1 27831:1 27926:1 27952:1 27979:1 27987:1 27988:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28185:1 28240:1 28285:1 28313:1 28317:1 28322:1 28399:2 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28589:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28720:1 28740:1 28758:1 28769:2 28770:1 28793:1 28807:1 28819:1 28824:2 28854:2 28885:1 28887:2 28899:1 28950:1 29024:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29166:1 29183:1 29205:1 29211:1 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29353:1 29362:3 29373:2 29386:1 29388:1 29391:5 29392:1 29430:1 29453:1 29474:3 29479:1 29506:1 29517:1 29607:1 29654:1 29672:1 29676:1 29686:1 29689:1 29736:1 29790:1 29813:1 29828:2 29835:1 29837:1 29848:1 29893:1 29922:1 30048:1 30061:1 30069:1 30071:4 30096:2 30110:1 30121:3 30155:2 30186:1 30197:2 30198:1 30200:2 30210:1 30226:1 30232:1 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30385:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30441:2 30473:2 30570:1 30582:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30714:1 30725:1 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:1 30804:2 30808:2 30821:2 30828:2 30861:1 30863:2 30874:1 30882:1 30895:1 30919:2 30936:2 30978:1 30979:1 30982:2 30998:1 30999:1 31004:1 31029:1 31052:1 31085:1 31086:1 31096:1 31133:1 31250:2 31251:1 31266:2 31268:3 31291:1 31307:1 31328:1 31333:1 31340:1 31346:1 31405:2 31427:2 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:7 31631:3 31682:1 31709:2 31723:1 31747:3 31754:1 31765:1 31779:1 31780:1 31794:2 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:1 32056:13 32079:2 32084:1 32091:3 32092:1 32124:1 32155:2 32159:4 32171:1 32204:1 32244:1 32316:1 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32517:1 32522:2 32533:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:1 32645:1 32713:1 32717:1 32733:1 32774:1 32777:1 32799:1 32804:2 32818:4 32839:2 32849:11 32887:1 32935:1 32943:1 32944:2 32978:1
2 14:1 17:1 40:2 41:1 78:1 100:1 114:2 117:2 118:1 146:1 168:2 177:1 190:1 211:1 233:1 253:1 270:1 291:1 308:1 313:2 314:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 506:1 510:1 538:1 565:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:12 752:2 756:1 781:1 793:1 822:1 838:1 842:1 859:1 891:1 908:1 910:1 912:2 915:1 918:1 965:2 1015:6 1020:1 1034:4 1065:1 1075:2 1084:2 1089:1 1090:1 1094:1 1101:1 1109:2 1133:1 1166:1 1168:1 1173:1 1193:2 1248:1 1260:1 1303:1 1305:2 1335:1 1361:11 1372:2 1373:1 1378:2 1405:1 1406:1 1417:1 1428:1 1430:1 1462:2 1466:1 1510:2 1528:1 1543:1 1549:1 1556:2 1599:1 1615:2 1632:2 1646:1 1674:2 1681:3 1704:1 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1802:1 1815:1 1848:1 1858:1 1862:1 1912:2 1915:3 1954:1 1993:1 2005:1 2020:1 2029:1 2047:1 2050:1 2056:1 2072:1 2077:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:2 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2367:1 2372:1 2401:3 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:2 2595:3 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2681:2 2708:1 2714:1 2732:1 2749:1 2760:1 2776:1 2779:1 2788:2 2802:1 2808:1 2820:2 2836:1 2931:2 2978:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:2 3122:1 3128:2 3130:1 3196:2 3203:1 3206:1 3223:1 3310:1 3313:7 3315:12 3316:1 3318:2 3319:1 3335:2 3338:1 3356:1 3365:2 3370:1 3373:1 3384:3 3408:1 3451:1 3495:2 3680:1 3731:1 3756:1 3770:1 3774:2 3811:1 3909:1 3931:1 3936:1 3970:1 3979:1 3980:1 4065:1 4074:1 4078:1 4135:1 4143:1 4184:1 4204:1 4220:1 4224:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:11 4466:2 4490:1 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4733:1 4748:1 4792:2 4793:1 4798:2 4803:1 4817:1 4848:1 4929:11 4938:1 4946:3 4961:1 4978:1 5044:6 5062:1 5105:2 5120:1 5122:2 5128:1 5136:1 5137:1 5168:1 5197:3 5303:1 5315:1 5337:1 5342:3 5349:1 5437:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:7 5563:2 5616:1 5626:2 5714:2 5716:1 5737:2 5738:1 5739:1 5745:3 5753:1 5754:2 5762:1 5770:2 5772:2 5774:2 5775:1 5783:1 5814:1 5857:1 6029:1 6041:1 6045:1 6046:2 6092:1 6136:1 6144:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:2 6360:1 6371:1 6395:1 6442:1 6448:1 6454:1 6497:1 6593:2 6605:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6784:1 6786:1 6812:1 6843:1 6875:1 6925:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7063:1 7064:2 7100:1 7139:1 7151:1 7161:3 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:3 7289:1 7297:3 7302:1 7307:1 7309:1 7312:1 7313:5 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:2 7528:1 7559:1 7566:1 7569:1 7590:1 7592:1 7617:1 7627:1 7645:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7854:1 7889:2 7903:1 7923:1 7936:1 8000:1 8005:1 8007:1 8030:1 8042:3 8100:1 8125:2 8138:1 8181:1 8224:2 8258:1 8272:1 8297:1 8345:1 8363:1 8364:1 8446:1 8466:2 8503:4 8505:1 8547:2 8603:1 8624:2 8664:1 8670:1 8699:3 8700:5 8708:1 8724:1 8726:4 8759:2 8764:1 8774:19 8780:1 8781:1 8784:2 8788:1 8794:7 8798:2 8800:1 8805:1 8808:1 8832:1 8842:1 8853:1 8898:2 8909:1 8953:2 8966:2 8985:1 8989:1 8990:1 9019:1 9022:3 9079:1 9082:1 9120:1 9188:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:12 9330:1 9337:1 9350:5 9352:2 9376:1 9395:1 9403:2 9430:1 9438:1 9456:14 9475:1 9580:1 9587:1 9624:1 9645:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9693:1 9709:1 9714:1 9754:1 9765:2 9767:1 9768:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9895:1 9938:1 9946:1 9968:1 9998:2 10023:1 10082:1 10084:1 10085:1 10114:1 10117:2 10133:1 10136:1 10151:1 10159:1 10160:1 10213:1 10250:1 10254:2 10263:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:2 10432:1 10444:1 10449:1 10476:1 10486:1 10499:1 10501:2 10505:1 10513:1 10533:2 10545:2 10552:2 10561:1 10618:1 10638:1 10640:1 10642:2 10660:1 10702:1 10707:1 10714:1 10737:1 10758:1 10769:2 10770:4 10799:2 10805:1 10816:1 10818:2 10846:1 10898:1 10903:1 10932:1 10933:1 10934:1 10995:1 10996:1 10998:1 11053:4 11064:1 11070:1 11073:2 11084:1 11188:1 11210:11 11220:1 11225:1 11256:1 11269:1 11295:1 11297:1 11312:1 11357:1 11358:1 11361:1 11364:2 11369:1 11380:2 11389:1 11409:1 11420:2 11435:1 11441:1 11442:1 11462:1 11474:1 11478:1 11493:2 11495:1 11529:2 11549:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11737:1 11747:1 11796:1 11822:1 11848:1 11871:1 11872:2 11891:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12151:3 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12231:1 12240:3 12262:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:3 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12540:1 12546:3 12556:1 12559:1 12571:1 12572:2 12575:2 12576:1 12610:1 12629:1 12640:3 12645:1 12650:1 12651:1 12661:1 12672:2 12682:1 12721:1 12744:1 12761:1 12768:1 12791:1 12858:1 12864:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13036:1 13040:1 13048:1 13056:4 13068:1 13069:1 13121:1 13162:1 13188:2 13216:1 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:1 13370:1 13397:1 13446:1 13462:1 13468:1 13478:2 13484:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13747:3 13755:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13975:1 13998:1 14016:1 14019:2 14035:1 14092:1 14096:2 14108:1 14193:1 14201:2 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14402:1 14405:1 14430:2 14433:12 14439:1 14444:1 14447:4 14455:1 14491:3 14502:1 14512:1 14516:1 14545:1 14549:1 14585:1 14586:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14862:1 14885:1 14907:1 14916:1 14928:1 14935:4 14955:1 14964:1 14973:1 14998:1 15082:1 15085:1 15089:1 15096:2 15099:1 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15496:1 15498:1 15509:5 15536:1 15539:1 15545:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15683:3 15692:1 15712:1 15714:1 15725:1 15732:1 15741:1 15777:2 15787:2 15817:1 15821:1 15832:5 15835:2 15908:2 15915:1 15934:3 15986:1 16009:1 16011:2 16066:1 16115:4 16224:1 16235:2 16241:2 16243:2 16259:1 16260:1 16338:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:12 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16629:1 16651:1 16669:2 16674:1 16692:1 16725:1 16737:1 16846:1 16851:1 16858:1 16887:1 16914:1 16929:2 16947:1 16965:1 16968:2 17001:3 17027:1 17057:2 17062:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17261:1 17337:2 17342:1 17360:1 17365:1 17472:1 17473:1 17475:1 17502:1 17543:3 17552:2 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:1 17762:2 17767:1 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17956:1 18049:1 18065:1 18072:6 18077:1 18121:1 18130:1 18165:1 18174:1 18200:6 18250:2 18298:1 18326:1 18338:1 18350:4 18360:3 18361:1 18374:1 18428:1 18459:1 18474:1 18489:1 18494:1 18497:1 18554:1 18577:1 18618:1 18626:1 18717:1 18733:2 18746:1 18789:1 18803:1 18865:1 18878:1 18883:2 18887:1 18915:1 18919:1 18930:1 18932:2 18950:1 19038:1 19054:16 19062:1 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19398:1 19404:1 19425:1 19427:2 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19883:2 19890:2 19914:1 19935:1 19947:2 20027:1 20032:1 20067:2 20079:2 20108:1 20134:1 20138:1 20192:2 20201:1 20267:1 20287:1 20292:1 20298:1 20304:1 20307:1 20402:3 20407:1 20416:1 20451:1 20488:1 20496:1 20545:1 20628:1 20640:1 20651:1 20724:3 20744:1 20763:1 20821:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:755 20997:1 21007:1 21027:1 21029:1 21051:1 21102:1 21110:1 21111:1 21116:1 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21371:1 21372:1 21418:1 21472:1 21502:1 21508:2 21522:1 21553:2 21554:1 21572:1 21621:1 21624:2 21653:2 21656:1 21663:1 21730:1 21782:1 21815:1 21824:1 21834:2 21836:2 21877:1 21881:2 21907:2 21942:6 21951:1 21969:2 21991:2 21998:1 22027:3 22039:2 22051:1 22062:2 22068:2 22069:1 22081:1 22137:1 22143:1 22162:2 22167:1 22194:1 22246:1 22286:1 22316:1 22414:1 22417:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22542:1 22571:1 22598:1 22606:1 22611:1 22644:1 22645:2 22659:1 22669:3 22706:1 22717:1 22726:1 22733:1 22743:1 22757:1 22769:1 22774:1 22815:1 22826:2 22834:1 22854:1 22855:1 22861:1 22902:1 22973:1 22977:1 23046:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23220:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23397:1 23403:3 23418:1 23419:1 23429:1 23440:1 23443:1 23489:2 23501:1 23507:2 23521:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23671:1 23690:1 23694:1 23722:1 23741:1 23749:1 23787:1 23843:1 23862:1 23864:1 23869:2 23906:1 23929:1 23940:2 23951:1 23952:1 23977:1 23978:1 23980:1 24022:1 24032:1 24034:1 24038:2 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:2 24279:1 24284:1 24287:1 24333:2 24364:1 24399:1 24405:2 24410:1 24414:2 24417:1 24427:2 24443:1 24453:1 24469:5 24484:1 24499:1 24546:1 24581:1 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24623:1 24629:1 24630:1 24631:2 24644:1 24662:1 24709:1 24714:1 24770:1 24783:2 24786:1 24790:3 24809:2 24832:1 24854:1 24863:1 24867:1 24871:1 24903:2 24928:2 24983:1 24990:1 25009:1 25017:1 25023:4 25049:2 25092:6 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:1 25301:1 25304:1 25316:1 25353:1 25382:1 25399:2 25463:2 25517:1 25530:1 25557:1 25591:11 25609:1 25614:1 25616:2 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25716:1 25721:1 25724:1 25754:1 25768:2 25778:1 25792:2 25794:1 25823:1 25925:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26115:12 26142:1 26175:1 26207:1 26208:1 26219:1 26222:6 26270:1 26286:1 26300:2 26306:1 26311:1 26340:1 26355:1 26363:2 26364:1 26395:1 26511:2 26522:1 26540:1 26594:1 26598:1 26625:1 26631:1 26662:2 26675:1 26685:1 26696:1 26774:1 26804:2 26808:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:1 27036:1 27060:2 27076:2 27117:1 27119:1 27121:1 27128:1 27139:1 27141:2 27144:2 27150:1 27161:1 27197:2 27238:4 27273:1 27276:1 27277:1 27283:1 27299:1 27370:1 27415:1 27468:1 27471:1 27475:2 27507:1 27538:1 27581:1 27584:1 27585:1 27596:1 27603:2 27610:1 27646:2 27688:1 27694:2 27714:1 27750:1 27755:1 27764:2 27790:1 27798:1 27806:1 27831:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28185:1 28240:1 28284:1 28285:1 28313:1 28317:2 28322:1 28399:2 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28556:1 28589:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28720:1 28740:1 28758:1 28769:2 28770:1 28793:1 28807:1 28819:1 28824:2 28854:2 28885:1 28887:4 28899:2 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29166:1 29183:1 29194:1 29205:1 29211:1 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29353:1 29362:3 29373:2 29386:1 29388:1 29391:5 29392:1 29430:1 29453:1 29474:3 29479:1 29503:1 29506:1 29517:1 29607:1 29654:2 29672:1 29676:1 29686:1 29689:1 29736:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 30020:1 30048:1 30061:1 30069:1 30071:4 30096:2 30110:1 30121:3 30155:2 30186:1 30197:2 30198:1 30200:2 30210:1 30226:1 30232:1 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30385:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30441:2 30473:2 30570:1 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30714:1 30725:1 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:2 30804:2 30808:2 30821:2 30828:2 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:3 30936:2 30978:1 30979:1 30982:2 30998:1 30999:1 31004:1 31029:1 31052:1 31085:1 31086:1 31096:1 31133:1 31250:2 31251:2 31266:2 31268:3 31291:1 31307:1 31328:1 31333:1 31340:1 31346:1 31405:2 31427:2 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:11 31631:4 31682:1 31709:2 31723:1 31747:4 31754:2 31765:1 31779:1 31780:1 31794:3 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:1 32056:14 32079:2 32084:1 32091:3 32092:1 32124:1 32155:2 32159:4 32171:1 32204:1 32241:1 32244:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:1 32645:1 32713:1 32717:1 32733:1 32774:1 32777:1 32799:1 32804:2 32818:4 32839:2 32849:12 32887:1 32935:1 32943:2 32944:2 32978:1
2 14:1 17:1 40:2 41:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 211:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 506:1 510:1 529:1 538:1 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:13 752:3 756:1 781:1 793:1 822:1 838:1 842:1 859:1 891:1 908:1 910:1 912:2 915:1 918:1 965:2 1015:6 1020:1 1034:4 1057:1 1065:1 1075:2 1084:2 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1133:1 1166:1 1168:1 1173:1 1193:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:12 1372:2 1373:1 1378:3 1405:1 1406:1 1417:1 1428:1 1430:1 1447:1 1462:2 1466:1 1491:1 1510:2 1528:1 1543:1 1549:1 1556:2 1599:1 1615:2 1632:2 1646:1 1674:2 1681:3 1704:1 1712:1 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1802:1 1815:1 1848:1 1858:1 1862:1 1912:2 1915:3 1954:1 1993:1 2005:1 2020:1 2029:1 2047:1 2050:1 2056:1 2072:1 2077:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:2 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2367:1 2372:1 2401:3 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:3 2595:3 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2681:2 2708:1 2714:1 2732:1 2749:1 2760:1 2776:1 2779:1 2788:2 2802:1 2808:1 2820:2 2836:1 2931:2 2978:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:2 3122:1 3125:1 3128:2 3130:1 3143:1 3196:2 3203:1 3206:1 3223:1 3310:1 3313:8 3315:13 3316:1 3318:2 3319:1 3335:2 3338:1 3356:1 3365:2 3370:1 3373:1 3384:3 3408:1 3411:1 3451:1 3495:2 3542:1 3655:1 3680:1 3731:1 3756:1 3770:1 3774:2 3811:1 3909:1 3912:1 3931:1 3936:1 3970:1 3979:1 3980:1 4029:1 4065:1 4074:1 4078:1 4101:1 4135:1 4143:1 4184:1 4204:1 4219:1 4220:1 4224:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:1 4458:1 4465:12 4466:2 4490:1 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4733:1 4736:1 4748:1 4792:2 4793:1 4798:2 4803:1 4817:1 4848:1 4929:12 4938:1 4946:3 4961:1 4964:1 4978:1 4983:1 5044:6 5062:1 5105:2 5120:1 5122:2 5128:1 5136:1 5137:1 5168:1 5197:3 5303:1 5315:1 5337:1 5342:3 5349:1 5437:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:7 5563:2 5616:1 5626:2 5714:2 5716:1 5737:2 5738:1 5739:1 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5857:1 5957:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:2 6275:1 6360:1 6371:1 6393:1 6395:1 6436:1 6442:1 6448:1 6454:1 6497:1 6593:2 6605:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6875:1 6925:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7063:1 7064:2 7100:1 7139:1 7151:1 7161:3 7167:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:3 7302:1 7307:1 7309:1 7312:1 7313:5 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:2 7528:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:1 7617:1 7627:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 8000:1 8005:1 8007:1 8030:1 8042:4 8100:1 8125:2 8138:2 8181:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8446:1 8466:3 8503:4 8505:1 8545:1 8547:2 8603:1 8624:2 8664:1 8670:1 8699:3 8700:5 8708:1 8724:1 8726:4 8759:2 8764:1 8774:20 8780:1 8781:1 8784:2 8788:1 8794:8 8798:2 8800:1 8805:1 8808:1 8832:1 8842:1 8853:1 8898:2 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:1 8990:1 9001:1 9019:1 9022:3 9052:1 9079:1 9082:1 9120:1 9188:1 9231:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:13 9330:1 9337:1 9350:5 9352:2 9376:1 9395:1 9398:1 9403:2 9430:1 9438:1 9456:16 9475:1 9580:1 9587:1 9624:1 9645:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9693:1 9709:1 9714:1 9754:1 9765:2 9767:1 9768:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10023:2 10082:1 10084:1 10085:1 10114:1 10117:2 10133:1 10136:1 10151:1 10159:1 10160:1 10204:1 10213:1 10250:1 10254:2 10263:1 10270:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:2 10432:1 10434:1 10444:1 10449:1 10476:1 10486:1 10499:1 10501:2 10505:1 10513:1 10533:2 10545:3 10552:2 10561:1 10618:1 10638:1 10640:1 10642:2 10660:1 10702:1 10707:1 10714:1 10737:1 10758:1 10769:2 10770:4 10799:2 10805:1 10816:1 10818:2 10846:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10995:1 10996:1 10998:1 11027:1 11053:5 11064:1 11070:1 11073:2 11084:1 11188:1 11210:12 11220:1 11225:1 11256:1 11269:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11380:2 11389:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:1 11493:2 11495:1 11529:2 11549:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11650:1 11737:1 11747:1 11768:1 11796:1 11822:1 11848:1 11871:1 11872:2 11891:1 11922:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12151:3 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:3 12262:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:3 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12540:1 12546:3 12556:1 12559:1 12571:1 12572:2 12575:2 12576:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12672:2 12682:1 12721:1 12744:1 12761:1 12768:1 12791:2 12858:1 12864:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13036:1 13040:1 13048:1 13056:5 13068:1 13069:1 13089:1 13096:1 13121:1 13131:1 13162:1 13188:2 13216:1 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:1 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:2 13484:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13747:3 13752:1 13755:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13975:1 13998:1 14016:1 14019:2 14035:1 14092:1 14096:2 14108:1 14193:1 14201:2 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14357:1 14402:1 14405:1 14430:2 14433:13 14439:1 14444:1 14447:4 14455:1 14491:3 14502:1 14512:1 14516:1 14545:1 14549:1 14585:1 14586:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14862:1 14885:1 14907:1 14915:1 14916:1 14928:1 14935:5 14955:1 14964:1 14973:1 14998:1 15082:1 15085:1 15089:1 15093:1 15096:2 15099:1 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15384:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15496:1 15498:1 15509:5 15536:1 15539:1 15545:2 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15661:1 15666:1 15673:1 15683:4 15692:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15787:2 15817:2 15821:1 15832:5 15835:2 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16066:1 16115:4 16221:1 16224:1 16235:2 16241:2 16243:2 16259:1 16260:1 16316:1 16338:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:13 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16629:1 16651:1 16669:3 16674:1 16692:1 16725:1 16737:1 16771:1 16846:1 16851:1 16854:1 16858:1 16887:1 16914:1 16928:1 16929:2 16947:1 16962:1 16965:1 16968:2 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17261:1 17311:1 17337:2 17342:1 17360:1 17365:1 17456:1 17472:1 17473:1 17475:1 17502:1 17543:3 17552:2 17596:1 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:1 17762:2 17767:1 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17921:1 17956:1 18049:1 18065:1 18070:1 18072:6 18077:1 18121:1 18124:1 18130:1 18165:1 18174:1 18177:1 18200:7 18232:1 18250:2 18298:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18374:1 18428:1 18459:1 18474:1 18489:1 18494:1 18497:1 18554:1 18577:1 18618:1 18620:1 18626:1 18717:1 18733:2 18746:1 18752:1 18789:1 18795:1 18803:1 18865:1 18878:1 18883:2 18887:1 18915:1 18919:1 18930:1 18932:2 18950:1 19015:1 19025:1 19038:1 19054:19 19062:1 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19377:1 19398:1 19404:1 19425:1 19427:2 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19883:2 19890:2 19914:1 19935:1 19947:2 20027:1 20032:1 20067:2 20079:2 20108:1 20134:1 20138:1 20192:3 20197:1 20201:1 20267:1 20287:1 20292:1 20298:1 20304:1 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20496:1 20545:1 20607:1 20628:1 20640:1 20651:1 20724:3 20744:1 20763:1 20821:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:867 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:1 21110:1 21111:1 21116:1 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21371:1 21372:1 21418:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:1 21568:1 21572:1 21621:1 21624:3 21653:2 21656:1 21663:1 21724:1 21730:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:3 21836:2 21877:1 21881:2 21907:2 21942:6 21951:1 21969:2 21991:2 21998:1 22027:3 22039:2 22051:1 22062:2 22068:2 22069:1 22081:1 22137:1 22143:1 22162:2 22167:1 22194:1 22246:1 22286:1 22289:1 22316:1 22385:1 22414:1 22417:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22542:1 22571:1 22598:1 22606:1 22611:1 22644:1 22645:2 22648:1 22658:1 22659:1 22669:3 22706:1 22717:1 22726:1 22733:1 22743:1 22757:1 22769:1 22774:1 22800:1 22815:1 22826:2 22834:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23220:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:1 23397:1 23403:3 23418:1 23419:1 23429:1 23440:1 23443:1 23479:1 23481:1 23487:1 23489:2 23501:1 23507:2 23521:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:1 23671:1 23690:1 23694:1 23704:1 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23843:1 23862:1 23864:1 23869:2 23906:1 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:1 24022:1 24032:1 24034:1 24038:2 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:2 24279:1 24284:1 24287:1 24333:3 24364:1 24399:1 24405:2 24410:1 24414:2 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24546:1 24581:1 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24629:1 24630:1 24631:2 24644:1 24662:1 24709:1 24714:1 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:4 25049:2 25092:7 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25301:1 25304:1 25316:1 25353:1 25375:1 25382:1 25399:2 25463:3 25517:1 25530:1 25557:1 25591:12 25609:1 25614:1 25616:2 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25721:1 25724:1 25754:1 25768:2 25778:1 25792:3 25794:1 25797:1 25823:1 25909:1 25925:2 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26115:13 26142:2 26175:1 26207:2 26208:1 26219:1 26222:6 26270:1 26286:1 26300:2 26306:1 26311:1 26340:1 26355:1 26363:2 26364:1 26395:1 26484:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26625:1 26631:1 26653:1 26662:2 26675:1 26685:1 26696:1 26774:1 26782:1 26804:2 26808:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:1 27036:1 27060:2 27076:2 27117:1 27119:1 27121:1 27128:1 27139:1 27141:2 27144:2 27150:1 27161:1 27197:2 27238:4 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27370:1 27415:1 27458:1 27468:1 27471:1 27475:2 27507:1 27538:1 27581:2 27584:1 27585:2 27596:1 27603:2 27610:1 27646:2 27688:1 27693:1 27694:2 27714:1 27750:1 27755:1 27764:2 27790:1 27798:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28185:1 28240:1 28284:1 28285:1 28313:1 28317:2 28322:1 28399:2 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28556:1 28589:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28720:1 28740:1 28758:2 28769:2 28770:1 28793:1 28807:2 28819:1 28824:2 28854:2 28885:1 28887:4 28899:2 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29166:1 29183:1 29194:1 29205:1 29211:1 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29353:1 29362:3 29373:2 29386:1 29388:1 29391:5 29392:1 29430:1 29439:1 29453:1 29474:3 29479:1 29503:1 29506:1 29517:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29953:1 30020:1 30048:1 30061:1 30069:1 30071:4 30096:2 30110:1 30121:4 30155:2 30186:1 30197:2 30198:1 30200:2 30210:1 30226:1 30232:1 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30385:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30441:2 30473:2 30561:1 30570:1 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30712:1 30714:1 30725:1 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:2 30804:2 30808:2 30817:2 30821:2 30828:2 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:3 30936:2 30978:1 30979:1 30982:2 30998:1 30999:1 31004:1 31029:1 31052:1 31085:1 31086:1 31096:1 31133:1 31204:1 31250:2 31251:2 31266:2 31268:3 31291:1 31307:1 31328:1 31333:1 31340:1 31346:1 31365:1 31405:2 31427:2 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:11 31631:5 31682:1 31709:2 31723:1 31747:4 31754:2 31765:1 31779:1 31780:1 31794:3 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32056:16 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:2 32159:5 32171:1 32204:1 32241:1 32244:2 32277:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:1 32645:1 32713:1 32717:1 32733:1 32774:1 32777:1 32799:1 32804:2 32818:4 32838:1 32839:2 32849:13 32887:1 32932:1 32935:1 32943:2 32944:2 32978:1
2 14:1 17:1 40:2 41:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 203:1 211:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 506:1 510:1 529:1 538:1 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:14 752:3 756:1 781:1 793:1 822:1 838:2 842:1 859:1 891:1 908:2 910:1 912:2 915:1 918:1 965:2 1015:6 1020:1 1034:4 1057:2 1065:1 1075:2 1084:3 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1133:1 1166:1 1168:1 1173:1 1193:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:13 1369:1 1372:2 1373:1 1378:3 1405:1 1406:1 1417:1 1428:1 1430:1 1447:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1599:1 1615:2 1632:2 1646:1 1671:1 1674:2 1681:3 1704:1 1712:1 1740:2 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1798:1 1802:1 1815:1 1848:1 1858:1 1860:1 1862:1 1912:2 1915:3 1954:1 1967:1 1993:1 2005:1 2020:1 2029:1 2047:1 2050:1 2056:1 2072:1 2074:1 2077:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:2 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2336:1 2367:1 2372:1 2401:3 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:3 2595:3 2598:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:2 2708:1 2714:1 2732:1 2749:1 2750:1 2760:1 2776:1 2779:1 2788:2 2802:1 2808:1 2820:2 2836:1 2931:2 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:2 3122:1 3125:1 3128:2 3130:1 3143:1 3187:1 3196:2 3203:1 3206:1 3223:1 3310:1 3313:9 3315:14 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:2 3370:1 3373:1 3384:3 3408:2 3411:1 3451:1 3495:2 3542:1 3655:1 3680:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3811:1 3909:1 3912:1 3931:1 3936:1 3965:1 3970:1 3979:1 3980:1 4029:1 4065:1 4074:1 4078:1 4101:1 4135:1 4143:1 4184:1 4204:1 4219:1 4220:1 4224:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:2 4458:1 4465:13 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4733:1 4736:1 4748:1 4792:2 4793:1 4798:2 4803:1 4817:1 4848:1 4929:13 4938:1 4946:3 4961:1 4964:1 4978:1 4983:1 5044:6 5062:1 5105:2 5120:1 5122:2 5128:1 5136:1 5137:1 5168:1 5197:3 5206:1 5230:1 5303:1 5315:1 5337:1 5342:3 5349:1 5437:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:7 5563:2 5581:1 5616:1 5626:2 5714:2 5716:1 5737:2 5738:1 5739:1 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5857:1 5957:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6157:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:2 6275:1 6334:1 6360:1 6371:1 6393:1 6395:1 6436:1 6442:1 6448:1 6454:1 6497:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6901:1 6925:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7063:1 7064:2 7100:1 7139:1 7151:1 7161:3 7167:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:3 7302:1 7307:1 7309:1 7312:1 7313:5 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:2 7528:1 7538:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:1 7617:1 7627:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8030:1 8042:4 8100:1 8123:1 8125:2 8138:2 8181:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8446:1 8466:3 8503:4 8505:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:2 8625:1 8664:1 8670:1 8685:1 8699:3 8700:5 8708:1 8724:1 8726:4 8759:3 8764:1 8774:20 8780:1 8781:1 8784:2 8788:1 8794:9 8798:2 8800:1 8805:1 8808:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:1 8990:1 9001:1 9019:1 9022:3 9052:1 9079:1 9082:1 9120:1 9180:1 9188:1 9231:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:14 9330:1 9337:1 9350:6 9352:2 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:17 9475:1 9580:1 9587:1 9624:1 9645:1 9654:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9693:1 9709:1 9714:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10114:1 10117:2 10133:1 10134:1 10136:1 10141:1 10151:1 10159:1 10160:1 10204:1 10213:1 10250:1 10254:2 10263:1 10270:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:2 10432:1 10434:1 10444:1 10449:1 10476:1 10486:1 10496:1 10499:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:3 10552:2 10561:1 10618:1 10638:1 10640:1 10642:2 10660:1 10702:1 10707:1 10714:1 10737:1 10758:1 10769:2 10770:4 10799:2 10805:1 10816:1 10818:2 10828:1 10846:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10995:1 10996:1 10998:1 11027:1 11053:5 11064:1 11070:2 11073:3 11084:1 11140:1 11188:1 11210:13 11220:1 11225:1 11256:1 11269:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:1 11380:2 11389:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:1 11493:2 11495:1 11529:2 11549:1 11551:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11650:1 11737:1 11747:1 11768:1 11796:1 11822:1 11848:1 11871:1 11872:2 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12149:1 12151:3 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:3 12262:1 12277:1 12317:1 12367:1 12442:1 12458:2 12460:3 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12540:1 12546:4 12556:1 12559:1 12571:1 12572:2 12575:2 12576:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12672:2 12682:1 12721:1 12744:1 12756:1 12761:1 12768:1 12791:2 12800:1 12858:1 12864:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13036:1 13040:1 13048:1 13056:5 13068:1 13069:1 13089:1 13096:1 13121:1 13131:1 13162:1 13188:2 13213:1 13216:2 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:1 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:2 13484:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13747:3 13752:1 13755:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13975:1 13998:1 14016:1 14019:2 14035:1 14092:1 14096:2 14108:1 14193:1 14201:2 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14357:1 14402:1 14405:1 14430:2 14433:14 14439:1 14444:1 14447:4 14455:1 14491:3 14502:1 14512:1 14516:1 14545:1 14549:1 14585:1 14586:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14862:1 14885:1 14907:1 14915:1 14916:1 14928:1 14935:5 14955:1 14964:1 14973:1 14998:1 15082:1 15085:1 15089:1 15093:1 15096:2 15099:1 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15384:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15496:1 15498:1 15509:5 15536:1 15539:1 15545:2 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15642:1 15661:1 15666:1 15673:1 15683:4 15692:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15787:2 15805:1 15817:2 15821:1 15832:5 15835:2 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16066:1 16115:4 16191:1 16221:1 16224:1 16235:2 16241:2 16243:2 16259:1 16260:1 16316:1 16338:1 16354:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:14 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16629:1 16651:1 16669:3 16674:1 16692:1 16725:1 16737:1 16771:1 16846:1 16851:1 16854:1 16858:1 16887:1 16914:1 16928:1 16929:2 16947:1 16962:1 16965:1 16968:3 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17261:1 17311:1 17337:2 17342:1 17360:1 17365:1 17456:1 17472:1 17473:1 17475:1 17502:1 17543:3 17552:2 17596:1 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:1 17762:2 17767:1 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17921:1 17945:1 17956:1 18049:1 18065:1 18070:1 18072:7 18077:1 18121:1 18124:1 18130:1 18165:1 18174:1 18177:1 18200:7 18232:1 18250:2 18298:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18374:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18497:1 18554:1 18577:1 18606:1 18618:1 18620:1 18626:1 18703:1 18717:1 18733:2 18746:1 18752:1 18789:1 18795:1 18803:1 18865:1 18878:1 18883:2 18887:1 18915:1 18919:1 18930:1 18932:2 18950:1 19015:1 19025:1 19038:1 19054:20 19061:1 19062:1 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19377:1 19398:1 19404:1 19425:1 19427:2 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19666:1 19677:1 19679:1 19691:2 19696:1 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19883:2 19890:2 19914:1 19935:1 19947:2 20005:1 20027:1 20032:1 20067:2 20079:2 20108:1 20134:1 20138:1 20192:3 20197:1 20201:1 20267:1 20287:1 20288:1 20292:1 20298:1 20304:1 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20496:1 20545:1 20607:1 20610:1 20628:1 20640:1 20651:1 20724:3 20737:1 20744:1 20763:1 20821:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:995 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:2 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21371:1 21372:1 21418:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:1 21568:1 21572:1 21621:1 21624:3 21653:2 21656:1 21663:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:3 21836:2 21877:1 21881:2 21907:2 21942:6 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22039:2 22051:1 22062:2 22068:2 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:1 22196:1 22246:1 22286:1 22289:1 22316:1 22385:1 22414:1 22417:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22542:1 22571:1 22598:1 22606:1 22611:1 22644:1 22645:2 22648:1 22658:1 22659:1 22669:3 22706:1 22717:1 22726:1 22733:1 22743:1 22757:1 22769:1 22774:1 22800:1 22815:1 22826:2 22834:1 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23220:1 23225:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:1 23397:1 23403:3 23418:1 23419:1 23429:1 23440:1 23443:1 23471:1 23479:1 23481:1 23487:1 23489:2 23501:1 23507:2 23521:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:2 23671:1 23690:1 23694:1 23704:1 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23843:1 23862:1 23864:1 23869:2 23906:2 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:1 24022:1 24032:1 24034:1 24038:2 24119:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:2 24279:1 24284:1 24287:1 24333:3 24364:1 24399:1 24405:2 24410:1 24414:2 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24546:1 24548:1 24581:1 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:1 24630:1 24631:2 24644:1 24648:1 24662:1 24709:1 24714:1 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:4 25049:2 25092:7 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25301:1 25304:1 25316:1 25353:1 25375:1 25382:1 25399:2 25463:3 25517:1 25530:1 25557:1 25591:13 25609:1 25614:1 25616:2 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25754:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25925:2 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26115:14 26142:2 26143:1 26175:1 26207:2 26208:1 26219:1 26222:6 26270:1 26286:1 26300:2 26306:1 26311:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26625:1 26631:1 26653:1 26662:2 26675:1 26685:1 26696:1 26774:1 26782:1 26804:2 26808:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:2 27036:1 27060:2 27076:2 27117:1 27119:1 27121:1 27128:1 27139:1 27141:2 27144:2 27150:1 27161:1 27197:2 27238:4 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27370:1 27415:1 27458:1 27468:1 27471:1 27475:2 27507:1 27538:1 27581:2 27584:1 27585:2 27596:1 27603:3 27610:1 27646:2 27688:1 27693:1 27694:2 27714:1 27750:1 27755:1 27764:3 27790:1 27798:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28185:1 28240:1 28284:1 28285:2 28313:1 28317:2 28322:1 28349:1 28399:2 28406:1 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28522:1 28556:1 28589:1 28605:2 28630:1 28646:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28720:1 28740:1 28758:2 28769:2 28770:1 28793:1 28807:2 28819:1 28824:2 28854:2 28885:1 28887:4 28899:2 28918:1 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29166:1 29183:1 29194:1 29205:1 29211:1 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29325:1 29353:1 29362:3 29373:2 29386:1 29388:1 29391:5 29392:1 29416:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29517:1 29542:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29940:1 29953:1 30020:1 30038:1 30048:1 30061:1 30069:1 30071:4 30096:2 30110:1 30121:4 30155:2 30186:1 30197:3 30198:1 30200:2 30210:1 30226:1 30232:1 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30354:1 30385:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30441:2 30473:2 30503:1 30561:1 30570:2 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30712:1 30714:1 30725:1 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:2 30804:2 30808:2 30817:2 30821:2 30828:2 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:3 30936:2 30968:1 30978:1 30979:1 30982:2 30998:1 30999:1 31004:1 31029:1 31052:1 31085:1 31086:1 31096:1 31133:1 31204:1 31250:2 31251:2 31266:2 31268:3 31291:1 31307:1 31328:1 31333:1 31340:1 31346:1 31365:1 31405:2 31427:2 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31631:5 31682:1 31709:2 31723:1 31747:4 31754:2 31765:1 31779:1 31780:1 31794:3 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32035:1 32056:17 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:2 32159:5 32171:1 32204:1 32241:1 32244:2 32277:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:1 32645:1 32658:1 32713:1 32717:1 32733:1 32774:1 32777:2 32799:1 32804:2 32818:4 32835:1 32838:1 32839:2 32849:14 32887:1 32932:1 32935:1 32943:2 32944:2 32978:1
2 14:1 17:1 40:2 41:1 42:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 316:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 487:1 506:1 510:1 529:1 538:2 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:15 752:3 756:1 774:1 781:1 793:1 822:1 838:2 842:1 859:1 891:1 908:2 910:1 912:2 915:1 918:1 965:2 1014:1 1015:6 1020:1 1034:5 1057:2 1065:1 1075:2 1084:3 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1133:1 1166:1 1168:1 1173:1 1193:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:14 1369:1 1372:2 1373:1 1378:3 1405:1 1406:1 1417:1 1428:1 1430:1 1447:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1557:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1681:3 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1764:1 1766:1 1768:1 1781:1 1798:1 1802:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1912:2 1915:3 1954:1 1967:1 1993:1 2005:1 2020:1 2029:1 2047:1 2050:1 2056:1 2072:1 2074:1 2077:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2336:1 2367:1 2372:1 2401:3 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:3 2595:3 2598:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2732:1 2749:1 2750:2 2760:1 2776:1 2779:1 2788:2 2802:1 2808:1 2820:2 2836:1 2888:1 2931:2 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:2 3122:1 3125:1 3128:2 3130:1 3143:1 3187:1 3196:2 3203:1 3206:1 3223:1 3310:1 3313:9 3315:15 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:2 3370:1 3373:1 3384:4 3408:2 3411:1 3451:1 3459:1 3495:2 3542:1 3655:1 3680:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3811:1 3909:1 3912:1 3931:1 3936:1 3965:1 3970:1 3979:1 3980:1 4029:1 4065:1 4074:1 4078:1 4101:1 4135:1 4143:1 4184:1 4204:1 4219:1 4220:1 4224:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:2 4458:1 4465:14 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:1 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4733:1 4736:1 4748:1 4792:2 4793:1 4798:2 4803:1 4817:1 4848:1 4929:14 4938:1 4946:3 4961:1 4964:1 4978:1 4983:1 5044:6 5062:1 5105:2 5120:1 5122:2 5128:1 5136:1 5137:1 5168:1 5197:3 5206:1 5230:1 5303:1 5315:1 5337:1 5342:3 5349:1 5437:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:7 5563:2 5581:1 5616:1 5626:2 5659:1 5714:2 5716:1 5737:2 5738:2 5739:1 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6157:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:2 6275:1 6334:1 6360:1 6371:1 6393:1 6395:1 6436:1 6438:1 6442:1 6448:1 6454:1 6497:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6925:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7053:1 7063:1 7064:2 7100:1 7139:1 7151:1 7161:3 7167:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:3 7301:1 7302:1 7307:1 7309:1 7312:1 7313:5 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:2 7528:1 7538:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:1 7617:1 7627:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8030:1 8042:4 8100:1 8102:1 8123:1 8125:2 8138:2 8181:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8446:1 8466:3 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:2 8625:1 8664:1 8670:1 8685:1 8699:5 8700:5 8708:1 8724:1 8726:5 8759:3 8764:1 8774:20 8780:1 8781:1 8784:2 8788:1 8794:9 8798:2 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:1 8990:1 9001:1 9019:1 9022:3 9052:1 9079:1 9082:1 9120:1 9180:1 9188:1 9231:1 9241:1 9254:1 9293:1 9306:1 9318:1 9320:15 9330:1 9337:1 9350:6 9352:2 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:19 9475:1 9580:1 9587:1 9624:1 9645:1 9654:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9693:1 9709:1 9714:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10114:1 10117:3 10133:1 10134:1 10136:1 10141:1 10151:1 10159:1 10160:1 10204:1 10213:1 10250:1 10254:2 10263:1 10270:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:2 10432:1 10434:1 10444:1 10449:1 10459:1 10476:1 10486:1 10496:1 10499:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:1 10592:1 10618:1 10638:1 10640:1 10642:2 10660:1 10702:1 10707:1 10714:1 10737:1 10758:1 10759:1 10769:2 10770:4 10799:2 10805:1 10816:1 10818:2 10828:1 10846:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11064:1 11070:2 11073:3 11084:1 11140:1 11188:1 11210:14 11220:1 11225:1 11256:1 11269:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:1 11380:2 11389:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:2 11493:2 11495:1 11529:2 11549:1 11551:1 11563:1 11593:1 11596:2 11602:1 11615:1 11633:3 11650:1 11737:1 11747:1 11768:2 11796:1 11822:1 11848:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:4 12262:1 12277:1 12317:1 12367:1 12402:1 12442:1 12458:2 12460:3 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12540:1 12546:4 12556:1 12559:1 12571:1 12572:2 12575:2 12576:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12791:2 12800:1 12858:1 12864:1 12883:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:1 13069:1 13089:1 13096:1 13121:1 13131:1 13162:1 13188:2 13213:1 13216:2 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:1 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:2 13484:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13747:3 13752:1 13755:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13975:1 13998:1 14016:1 14019:3 14035:1 14092:1 14096:2 14108:1 14193:1 14201:2 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14357:1 14402:1 14405:1 14430:2 14433:15 14439:1 14444:1 14447:4 14455:1 14491:3 14502:1 14512:1 14516:1 14545:1 14549:1 14585:1 14586:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14862:1 14885:1 14907:1 14915:1 14916:1 14928:1 14935:5 14955:1 14964:1 14973:1 14998:1 15082:1 15085:1 15089:1 15093:1 15096:2 15099:1 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15384:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15492:1 15496:1 15498:1 15501:1 15509:5 15536:1 15539:1 15545:3 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:5 15692:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15787:2 15805:1 15817:2 15821:1 15832:5 15835:3 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16066:1 16115:4 16191:1 16221:1 16224:1 16235:2 16241:2 16243:2 16259:1 16260:1 16316:1 16338:1 16352:1 16354:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:15 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16629:1 16651:1 16669:3 16674:1 16684:1 16692:1 16725:1 16737:1 16771:1 16846:1 16851:1 16854:1 16858:1 16887:1 16914:1 16928:1 16929:2 16947:1 16962:1 16965:1 16968:3 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17261:1 17311:1 17337:2 17342:1 17360:1 17365:1 17456:1 17472:1 17473:1 17475:1 17502:1 17543:3 17552:2 17596:1 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:2 17762:2 17767:1 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17921:1 17945:1 17956:2 18049:1 18065:1 18070:1 18072:7 18077:1 18121:1 18124:2 18130:1 18165:1 18174:1 18177:2 18200:7 18220:1 18232:1 18250:2 18298:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18374:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18497:1 18554:1 18577:1 18606:1 18618:1 18620:1 18626:1 18703:1 18717:1 18733:2 18746:1 18749:1 18752:1 18789:1 18795:1 18803:1 18865:1 18878:1 18883:2 18887:1 18915:1 18919:1 18930:1 18932:2 18950:1 19015:1 19025:1 19038:1 19054:22 19061:1 19062:1 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19377:1 19398:1 19404:1 19425:1 19427:2 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19654:1 19666:1 19677:1 19679:1 19687:1 19691:2 19696:1 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19883:2 19890:2 19914:1 19935:1 19947:2 20005:1 20027:1 20032:1 20067:2 20079:2 20108:1 20134:1 20138:1 20192:3 20197:1 20201:1 20267:1 20287:1 20288:1 20292:1 20298:1 20304:1 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20545:1 20607:2 20610:1 20628:1 20640:1 20651:1 20724:3 20737:1 20744:1 20763:1 20821:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:1044 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:2 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21371:1 21372:1 21418:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:1 21568:1 21572:1 21621:1 21624:3 21653:2 21656:1 21663:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:3 21836:2 21877:1 21881:2 21907:2 21942:7 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22039:2 22051:1 22062:2 22068:2 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:1 22196:1 22246:1 22286:1 22289:1 22316:1 22385:1 22414:1 22417:1 22418:1 22429:1 22462:1 22497:1 22509:1 22535:1 22536:3 22542:1 22571:1 22598:1 22606:1 22611:1 22619:1 22644:1 22645:2 22648:1 22658:1 22659:1 22669:4 22706:1 22717:1 22726:1 22733:1 22743:1 22757:1 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:1 23056:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23220:1 23225:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:1 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:2 23501:1 23507:2 23521:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:2 23671:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23843:1 23862:1 23864:1 23869:2 23906:2 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:1 24022:1 24032:1 24034:1 24038:2 24072:1 24119:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:2 24269:1 24279:1 24284:1 24287:1 24333:3 24364:1 24399:1 24405:3 24410:1 24414:2 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24546:1 24548:1 24581:1 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:1 24630:1 24631:2 24644:1 24648:1 24662:1 24709:1 24714:1 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:5 25049:2 25092:7 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25301:1 25304:1 25316:1 25353:1 25375:1 25382:1 25399:3 25463:3 25517:1 25530:1 25557:1 25591:14 25609:1 25614:1 25616:2 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25754:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25925:2 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26062:1 26115:15 26142:2 26143:1 26175:1 26207:2 26208:1 26219:1 26222:6 26263:1 26270:1 26286:1 26300:2 26306:1 26311:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26625:1 26631:1 26653:1 26662:2 26675:1 26685:1 26696:1 26774:1 26782:1 26804:2 26808:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:2 27036:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:1 27128:1 27139:1 27141:2 27144:2 27150:1 27161:1 27197:2 27238:4 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27370:1 27415:1 27458:1 27468:1 27471:1 27475:2 27507:1 27538:1 27581:2 27584:1 27585:2 27596:1 27603:3 27610:1 27646:2 27669:1 27688:1 27693:2 27694:2 27714:1 27750:1 27755:1 27764:3 27790:1 27798:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28185:1 28240:1 28284:1 28285:2 28313:1 28317:2 28322:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28513:1 28522:1 28549:1 28556:1 28559:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28720:1 28740:1 28758:2 28769:2 28770:1 28793:1 28807:2 28819:1 28824:3 28854:2 28885:1 28887:5 28899:2 28918:1 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29166:1 29183:1 29194:1 29205:1 29211:1 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29325:1 29353:1 29362:3 29373:2 29386:1 29388:1 29391:5 29392:1 29416:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29517:1 29542:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29940:1 29953:1 30020:1 30038:1 30048:1 30061:1 30069:1 30071:4 30096:2 30110:1 30121:4 30155:2 30186:1 30197:3 30198:1 30200:2 30210:1 30226:1 30232:1 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30354:1 30385:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30441:2 30473:2 30503:1 30561:1 30570:2 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30712:1 30714:1 30725:1 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30817:2 30821:2 30828:2 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:3 30936:2 30968:1 30978:1 30979:1 30982:2 30998:1 30999:1 31004:1 31014:1 31029:1 31052:1 31085:1 31086:1 31096:1 31133:1 31204:1 31250:3 31251:2 31266:2 31268:3 31291:1 31307:1 31328:1 31333:1 31340:1 31346:1 31358:1 31365:1 31405:2 31427:2 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31631:5 31682:1 31709:2 31723:1 31747:4 31754:2 31765:1 31779:1 31780:1 31794:5 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32035:1 32056:19 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:6 32171:1 32204:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32713:1 32717:1 32733:1 32774:1 32777:2 32799:1 32804:2 32818:4 32835:1 32838:2 32839:2 32849:15 32887:1 32932:1 32935:1 32943:2 32944:2 32978:1 33018:1
2 14:1 17:1 40:2 41:1 42:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 316:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:1 481:1 487:1 506:1 510:1 529:1 538:2 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:16 752:3 756:1 774:1 781:1 793:1 822:1 838:2 842:1 859:1 891:1 908:2 910:1 912:2 915:2 918:1 920:1 965:2 1014:1 1015:6 1020:1 1034:5 1057:2 1065:1 1075:2 1084:3 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1133:1 1166:1 1168:1 1173:1 1193:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:15 1369:1 1372:2 1373:1 1378:3 1405:1 1406:1 1417:1 1428:1 1429:1 1430:1 1447:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1557:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1681:4 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1912:2 1915:3 1947:1 1954:1 1967:1 1993:1 2005:1 2020:1 2029:1 2044:1 2047:1 2050:1 2056:1 2072:1 2074:1 2077:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2336:1 2367:1 2372:1 2401:4 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:3 2595:3 2598:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2732:1 2749:1 2750:2 2760:1 2776:1 2779:1 2788:2 2802:1 2808:1 2820:2 2836:1 2888:1 2931:2 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3119:2 3122:1 3125:1 3128:2 3130:1 3143:1 3187:1 3196:2 3203:1 3206:1 3223:2 3282:1 3287:1 3310:1 3313:9 3315:16 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:3 3370:1 3373:1 3384:4 3408:2 3411:1 3451:1 3459:1 3495:2 3542:1 3655:1 3680:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3811:1 3821:1 3909:1 3912:1 3931:1 3936:1 3965:1 3970:1 3979:1 3980:1 4029:1 4030:1 4033:1 4065:1 4074:1 4078:1 4101:1 4135:1 4143:1 4184:1 4204:1 4218:1 4219:1 4220:1 4224:1 4228:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:2 4434:1 4458:1 4465:15 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:1 4556:1 4558:2 4571:2 4584:1 4588:1 4592:4 4604:2 4644:1 4668:1 4679:2 4685:1 4730:1 4731:1 4733:1 4736:1 4737:1 4748:1 4792:2 4793:1 4798:2 4803:1 4817:1 4848:1 4929:15 4938:1 4942:1 4946:3 4961:1 4964:1 4978:1 4983:1 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:1 5146:1 5168:1 5197:3 5206:1 5230:1 5303:1 5315:1 5337:1 5342:3 5349:1 5437:1 5443:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:1 5515:1 5518:1 5542:1 5545:1 5562:7 5563:2 5581:1 5616:1 5626:2 5659:1 5660:1 5714:2 5716:1 5737:2 5738:2 5739:1 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6157:1 6198:1 6199:1 6200:1 6204:1 6235:1 6263:1 6272:2 6275:1 6334:1 6360:1 6371:1 6393:1 6395:1 6436:1 6438:1 6442:1 6448:1 6454:1 6497:1 6531:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6660:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6925:1 6932:1 6936:2 6941:1 6987:1 7035:1 7046:1 7050:1 7052:1 7053:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7161:3 7167:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:3 7301:1 7302:1 7307:1 7309:1 7312:1 7313:6 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:3 7528:1 7538:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:1 7617:1 7627:1 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8100:1 8102:1 8123:1 8125:2 8138:2 8181:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8435:1 8446:1 8466:3 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:5 8700:6 8708:1 8724:1 8726:5 8759:3 8764:1 8774:20 8780:1 8781:1 8784:2 8788:1 8794:9 8798:2 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:1 8990:1 9001:1 9019:1 9022:3 9052:1 9079:1 9082:1 9120:1 9180:1 9188:1 9231:1 9241:1 9254:2 9293:1 9306:1 9318:1 9320:16 9330:1 9337:1 9341:1 9350:7 9352:2 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:20 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:2 9693:1 9709:1 9714:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10114:1 10117:3 10133:1 10134:1 10136:1 10141:1 10151:1 10159:1 10160:1 10204:1 10213:1 10250:1 10254:2 10263:1 10270:1 10343:2 10354:1 10372:1 10413:2 10418:2 10419:1 10428:1 10430:2 10432:1 10434:1 10438:1 10444:1 10449:1 10459:1 10476:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:1 10571:1 10592:1 10618:1 10638:1 10640:1 10642:2 10660:1 10701:1 10702:1 10707:1 10714:1 10737:1 10758:1 10759:1 10769:2 10770:4 10799:2 10805:1 10816:1 10818:3 10828:1 10846:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11064:1 11070:2 11073:3 11084:1 11140:1 11188:1 11210:15 11220:1 11225:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:3 11493:2 11495:1 11529:2 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11615:1 11633:3 11650:1 11737:1 11747:1 11768:2 11796:1 11822:1 11848:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:2 12047:1 12067:2 12118:1 12121:1 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:4 12258:1 12262:1 12277:1 12317:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12540:1 12546:4 12556:1 12559:1 12571:1 12572:2 12575:2 12576:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12791:3 12800:1 12858:1 12864:1 12876:1 12878:1 12883:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:2 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:1 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:3 13484:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13747:3 13752:1 13755:1 13770:2 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13918:1 13975:1 13998:1 14016:2 14019:3 14035:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14357:1 14402:1 14405:1 14430:2 14433:16 14439:1 14444:1 14447:4 14455:1 14491:3 14502:1 14512:1 14516:1 14545:1 14549:1 14558:1 14585:1 14586:1 14623:1 14646:2 14654:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14862:1 14885:1 14907:1 14915:1 14916:1 14928:1 14935:6 14940:1 14955:1 14964:1 14973:1 14998:1 15082:1 15085:1 15089:1 15093:1 15096:2 15099:1 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15384:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15492:1 15496:1 15498:1 15501:1 15509:5 15536:1 15539:1 15540:1 15545:3 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:5 15692:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:2 15805:1 15817:3 15821:1 15832:5 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16066:1 16115:4 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16316:1 16338:1 16352:1 16354:1 16355:1 16375:1 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:16 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:1 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16718:1 16725:1 16737:1 16771:1 16846:1 16851:1 16854:1 16858:1 16887:1 16914:1 16928:1 16929:2 16947:1 16962:1 16965:1 16968:5 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17253:1 17261:1 17311:1 17337:2 17342:1 17360:1 17365:1 17456:1 17472:1 17473:1 17475:1 17502:1 17543:3 17546:1 17552:2 17596:1 17622:1 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:2 17762:2 17767:1 17779:1 17780:2 17792:1 17805:1 17869:1 17872:1 17882:1 17907:4 17921:1 17945:1 17956:2 18049:1 18065:1 18070:1 18072:7 18077:2 18121:1 18124:2 18126:1 18130:1 18165:1 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18371:1 18374:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18497:1 18528:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:1 18626:1 18703:1 18717:1 18733:2 18746:1 18749:1 18752:1 18789:1 18795:1 18803:1 18865:1 18878:1 18883:2 18887:1 18915:1 18919:1 18930:1 18932:2 18950:1 19015:1 19025:1 19038:1 19054:23 19061:1 19062:1 19068:1 19086:1 19090:1 19110:2 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19326:1 19329:1 19331:1 19358:1 19377:1 19398:1 19404:1 19425:1 19427:2 19478:1 19515:1 19602:1 19607:1 19612:1 19613:1 19654:1 19666:1 19677:1 19679:1 19687:1 19691:2 19696:1 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19846:1 19883:2 19890:2 19914:1 19935:1 19947:2 20005:1 20027:1 20032:1 20067:3 20079:2 20108:1 20134:1 20138:1 20192:3 20197:1 20201:1 20267:1 20287:1 20288:1 20292:1 20298:1 20304:1 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20545:2 20607:2 20610:1 20628:1 20640:1 20651:1 20724:3 20737:1 20744:1 20763:1 20821:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:1114 20985:1 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:2 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21371:1 21372:1 21412:1 21418:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:1 21568:1 21572:1 21621:1 21624:3 21653:2 21656:1 21663:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:3 21836:2 21877:1 21881:2 21907:2 21942:7 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22039:2 22051:1 22062:2 22068:2 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:1 22196:1 22246:1 22286:1 22289:1 22316:1 22385:1 22409:1 22414:1 22417:1 22418:1 22429:1 22453:1 22462:1 22480:1 22497:1 22509:1 22535:1 22536:3 22542:1 22563:1 22571:1 22598:1 22606:1 22611:1 22619:1 22644:1 22645:2 22648:1 22658:1 22659:1 22669:4 22706:1 22717:1 22726:1 22733:1 22743:1 22757:1 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:2 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23206:1 23220:1 23225:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:2 23501:1 23507:2 23521:1 23530:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:2 23671:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23800:1 23843:1 23862:1 23864:1 23869:2 23906:2 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:1 24022:1 24032:1 24034:1 24038:2 24072:1 24119:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:2 24269:1 24279:1 24284:1 24287:1 24333:3 24364:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24546:1 24548:1 24581:2 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:1 24630:1 24631:2 24644:1 24648:1 24662:1 24709:1 24714:1 24743:1 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:6 25049:2 25092:8 25094:1 25100:1 25103:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25301:1 25304:1 25316:1 25353:1 25375:1 25382:1 25399:3 25415:1 25463:3 25517:1 25530:1 25557:1 25581:1 25591:15 25609:1 25614:1 25616:2 25626:1 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25730:1 25754:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:2 25949:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26062:1 26115:16 26142:2 26143:1 26163:1 26175:1 26195:1 26207:2 26208:1 26219:1 26222:6 26263:1 26270:1 26286:1 26300:2 26306:1 26311:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26625:1 26631:1 26653:1 26662:2 26675:1 26685:1 26696:1 26774:1 26782:1 26804:2 26808:1 26828:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:2 27036:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:1 27141:2 27144:2 27150:1 27161:1 27197:2 27238:5 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27370:1 27415:1 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27581:3 27584:1 27585:2 27596:1 27603:3 27610:1 27646:2 27669:1 27688:1 27693:2 27694:2 27714:1 27750:1 27755:1 27764:3 27790:1 27798:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28178:1 28185:1 28240:1 28284:1 28285:2 28313:1 28317:2 28322:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28451:1 28458:1 28471:1 28477:1 28513:1 28522:1 28549:1 28553:1 28556:1 28559:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28705:1 28720:1 28740:1 28758:2 28769:2 28770:1 28793:1 28807:2 28819:1 28824:3 28854:2 28885:1 28887:6 28899:2 28918:1 28936:1 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:1 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29259:1 29280:1 29292:1 29306:1 29316:1 29319:1 29325:1 29353:1 29362:3 29364:1 29373:2 29386:1 29388:1 29391:5 29392:1 29416:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29756:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29940:1 29953:1 30020:1 30038:2 30048:1 30061:1 30069:1 30071:5 30096:2 30110:1 30121:4 30155:2 30186:1 30197:3 30198:1 30200:2 30210:1 30220:1 30226:1 30232:1 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30354:1 30357:1 30362:1 30368:1 30379:1 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30561:1 30570:2 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30712:1 30714:1 30725:1 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30817:2 30821:2 30828:2 30843:1 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:3 30936:3 30968:1 30978:1 30979:1 30982:2 30988:1 30998:1 30999:1 31004:1 31014:1 31029:1 31049:1 31052:1 31085:1 31086:1 31096:1 31116:1 31133:1 31204:1 31250:3 31251:2 31266:2 31268:3 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31620:1 31631:5 31682:1 31709:2 31723:1 31739:1 31747:5 31754:2 31765:1 31779:1 31780:1 31794:5 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32035:1 32056:20 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:6 32171:1 32187:1 32204:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32713:1 32717:1 32733:1 32771:1 32774:1 32777:2 32799:1 32804:2 32818:4 32835:1 32838:2 32839:2 32849:16 32887:1 32932:1 32935:1 32943:2 32944:2 32978:1 33018:1
2 14:1 17:1 40:2 41:1 42:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 316:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 529:1 538:2 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:17 752:3 756:1 774:1 781:1 793:1 822:1 838:2 842:1 859:1 891:2 908:2 910:1 912:2 915:2 918:1 920:1 965:2 1014:2 1015:6 1020:1 1034:5 1057:2 1065:1 1075:2 1084:3 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1130:1 1133:1 1166:1 1168:1 1173:1 1193:3 1247:1 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:16 1369:1 1372:2 1373:1 1378:3 1381:1 1405:1 1406:2 1417:1 1428:1 1429:1 1430:1 1447:1 1453:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1557:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1681:4 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1901:1 1912:2 1915:3 1947:1 1954:1 1967:1 1993:1 2005:1 2020:1 2029:1 2044:1 2047:1 2050:1 2056:1 2072:1 2074:1 2077:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2336:1 2367:1 2372:1 2401:4 2443:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:3 2595:3 2598:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:1 2779:3 2788:2 2802:1 2808:1 2820:2 2836:1 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3090:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:2 3130:1 3143:1 3187:1 3196:3 3203:1 3206:1 3223:2 3282:1 3287:1 3310:1 3313:10 3315:17 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:3 3366:1 3370:1 3373:1 3384:4 3408:2 3411:1 3451:1 3459:1 3460:1 3495:2 3542:1 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3787:1 3811:1 3821:1 3840:1 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 4029:1 4030:1 4033:1 4065:1 4074:1 4078:1 4101:1 4135:1 4143:1 4184:1 4204:1 4218:1 4219:1 4220:1 4224:1 4228:1 4292:2 4293:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:2 4434:1 4458:1 4465:16 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:1 4556:2 4558:2 4571:2 4584:1 4588:1 4592:4 4593:1 4604:2 4644:1 4668:1 4679:2 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4748:1 4788:1 4792:2 4793:1 4798:2 4803:2 4817:1 4848:1 4890:1 4920:1 4929:16 4938:1 4942:1 4946:3 4961:1 4964:1 4978:1 4983:1 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:1 5146:1 5168:1 5181:1 5197:6 5206:1 5230:1 5303:1 5315:1 5337:1 5342:3 5349:1 5387:1 5437:1 5443:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:2 5515:1 5518:1 5542:1 5545:1 5562:8 5563:2 5581:1 5616:1 5626:2 5659:1 5660:1 5714:3 5716:1 5737:2 5738:2 5739:1 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6263:1 6272:2 6275:1 6334:1 6359:1 6360:1 6371:1 6393:1 6395:1 6436:1 6438:1 6442:1 6448:1 6454:1 6483:1 6497:1 6504:1 6531:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6660:1 6706:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:1 6925:1 6932:1 6936:2 6941:1 6987:1 7032:1 7033:1 7035:1 7046:1 7047:1 7050:1 7052:1 7053:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:3 7301:1 7302:1 7307:1 7309:1 7312:1 7313:6 7324:1 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:3 7513:1 7528:1 7538:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:1 7617:1 7627:1 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8435:1 8446:1 8453:1 8466:3 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:6 8700:6 8708:1 8724:1 8726:5 8759:3 8764:1 8774:20 8780:1 8781:1 8784:2 8788:1 8794:10 8798:2 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:2 8990:1 9001:1 9019:1 9022:3 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9231:1 9241:1 9254:2 9274:1 9293:1 9306:1 9318:1 9320:17 9330:1 9337:1 9341:1 9350:7 9352:3 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:21 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:3 9693:1 9709:1 9714:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10094:1 10114:1 10117:3 10133:1 10134:1 10136:1 10141:1 10151:2 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:3 10263:1 10270:1 10343:2 10354:1 10372:1 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:1 10449:1 10459:1 10476:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10592:1 10618:1 10638:1 10640:1 10642:2 10660:1 10698:1 10701:1 10702:1 10707:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:4 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11064:1 11070:2 11073:3 11084:1 11140:1 11188:1 11210:16 11220:1 11225:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:3 11493:2 11495:1 11529:3 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11615:1 11633:3 11650:1 11737:1 11747:1 11768:2 11796:1 11822:1 11848:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:3 12047:1 12067:2 12095:1 12118:1 12121:1 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:4 12258:1 12262:1 12277:1 12317:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12540:1 12546:7 12556:1 12559:1 12571:1 12572:2 12575:3 12576:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12791:3 12800:1 12858:1 12864:1 12876:1 12878:1 12883:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:2 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13294:1 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:2 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:3 13484:1 13523:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13864:1 13865:1 13866:1 13898:1 13918:1 13975:1 13998:1 14016:2 14019:3 14035:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14357:1 14402:1 14405:1 14430:2 14433:17 14439:1 14444:1 14447:4 14455:1 14491:4 14502:1 14512:2 14516:1 14545:1 14549:1 14558:1 14585:1 14586:1 14599:1 14623:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14862:1 14885:1 14907:1 14915:1 14916:1 14928:1 14935:7 14940:1 14955:1 14964:1 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:2 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15384:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15492:1 15496:1 15498:1 15501:1 15507:1 15509:5 15510:1 15536:1 15539:1 15540:1 15545:3 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:7 15692:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:3 15805:1 15817:3 15821:1 15832:5 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16066:1 16115:4 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16316:1 16331:1 16338:1 16352:1 16354:1 16355:1 16375:2 16386:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:17 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:1 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16718:1 16725:1 16737:1 16739:1 16771:1 16846:1 16851:1 16854:2 16858:1 16887:1 16914:1 16928:1 16929:2 16947:1 16962:1 16965:1 16968:6 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17253:1 17261:1 17311:1 17337:2 17342:1 17360:1 17365:1 17375:1 17456:1 17472:1 17473:2 17475:1 17502:1 17543:3 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17869:1 17872:1 17882:1 17907:4 17921:1 17945:1 17956:2 18036:1 18049:1 18065:1 18070:1 18072:7 18077:2 18084:1 18121:1 18124:2 18126:1 18130:1 18165:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18497:1 18528:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:1 18626:1 18703:1 18717:1 18733:2 18746:1 18749:1 18752:1 18789:1 18795:1 18803:1 18865:1 18878:1 18883:3 18887:1 18915:1 18919:1 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:24 19061:1 19062:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:1 19377:1 19398:1 19404:1 19425:1 19427:2 19478:1 19484:1 19515:1 19556:1 19602:1 19607:1 19612:1 19613:1 19654:1 19666:1 19677:1 19679:1 19680:1 19687:1 19691:2 19696:1 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19846:1 19883:3 19890:2 19893:1 19914:1 19935:1 19947:2 20005:2 20027:1 20032:1 20067:3 20079:2 20108:1 20134:1 20138:1 20192:4 20197:1 20201:1 20267:1 20287:1 20288:1 20292:1 20298:1 20304:1 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20539:1 20545:2 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:3 20737:1 20744:1 20763:1 20821:1 20826:2 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:1200 20985:1 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:2 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21418:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:3 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:4 21836:2 21877:1 21881:4 21907:2 21942:9 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22039:2 22051:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:1 22196:1 22246:1 22286:1 22289:1 22297:1 22316:1 22326:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:1 22480:1 22497:1 22509:1 22535:1 22536:3 22542:1 22563:1 22571:1 22598:1 22606:1 22611:1 22619:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22706:1 22717:1 22726:1 22733:2 22743:1 22757:1 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:2 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23206:1 23207:1 23220:1 23225:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:2 23501:1 23507:2 23521:1 23530:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:2 23671:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23800:1 23816:1 23843:1 23850:1 23862:1 23864:1 23869:2 23906:2 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:2 24022:2 24028:1 24032:1 24034:1 24038:2 24072:1 24119:1 24140:1 24152:2 24202:2 24230:1 24249:1 24260:1 24264:3 24269:1 24279:2 24284:1 24287:1 24322:1 24333:4 24364:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:2 24644:1 24648:1 24662:1 24682:1 24709:1 24714:1 24743:1 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:6 25049:2 25092:8 25094:1 25100:1 25103:1 25152:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25301:1 25304:1 25316:1 25353:1 25375:1 25382:1 25399:3 25415:1 25463:3 25517:1 25530:1 25557:1 25581:1 25591:16 25609:1 25614:1 25616:2 25626:1 25659:1 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25730:1 25754:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:2 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26062:1 26115:17 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26207:2 26208:1 26219:1 26222:6 26263:1 26270:1 26286:1 26294:1 26300:2 26306:1 26311:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26625:1 26631:1 26653:2 26662:2 26675:1 26685:1 26696:1 26774:1 26782:1 26804:2 26808:1 26828:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:2 27036:1 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:1 27141:2 27144:3 27150:1 27161:1 27197:3 27238:5 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27363:1 27370:1 27415:1 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27581:3 27584:1 27585:2 27595:1 27596:1 27603:3 27610:1 27646:2 27669:2 27688:1 27693:2 27694:2 27714:1 27750:1 27755:1 27764:3 27790:1 27798:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28178:1 28185:1 28240:1 28284:2 28285:2 28313:1 28317:2 28322:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28451:1 28458:1 28471:2 28477:1 28494:1 28513:1 28522:1 28549:1 28553:1 28556:1 28559:1 28584:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:1 28780:1 28793:2 28807:2 28819:1 28824:3 28854:3 28861:1 28885:1 28887:6 28899:2 28911:1 28918:1 28936:1 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29259:1 29280:2 29292:1 29306:1 29316:1 29319:1 29325:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:5 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29756:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29940:1 29953:1 30020:1 30038:2 30048:1 30061:1 30069:1 30071:5 30096:2 30110:1 30121:4 30155:2 30186:1 30197:4 30198:1 30200:2 30210:1 30220:1 30226:1 30232:2 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30561:1 30570:2 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30690:1 30712:1 30714:1 30725:3 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30816:1 30817:2 30821:2 30828:2 30843:1 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:4 30936:3 30968:1 30978:1 30979:1 30982:2 30988:1 30998:1 30999:1 31004:1 31014:1 31029:1 31049:1 31052:1 31085:1 31086:1 31096:1 31116:1 31133:1 31135:1 31204:1 31250:3 31251:2 31262:1 31266:2 31268:3 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31620:1 31631:5 31682:1 31709:2 31723:1 31739:1 31747:5 31754:2 31765:1 31779:1 31780:1 31794:6 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32056:21 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:7 32171:1 32187:1 32204:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32693:1 32699:1 32713:1 32717:1 32733:1 32771:1 32774:1 32777:2 32799:1 32804:2 32818:4 32835:1 32838:2 32839:2 32849:17 32887:1 32932:1 32935:1 32943:2 32944:2 32978:1 33018:1
2 14:1 17:1 40:2 41:1 42:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 316:1 330:1 331:1 335:1 369:1 420:3 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 529:1 538:2 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:2 697:1 701:1 723:2 744:18 752:3 756:1 774:1 781:1 793:1 822:1 838:2 842:1 859:1 891:2 908:2 910:1 912:2 915:2 918:1 920:1 965:3 1014:2 1015:6 1020:1 1034:5 1057:2 1065:1 1075:2 1084:3 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1130:1 1133:1 1166:1 1168:1 1173:1 1177:1 1193:3 1247:1 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:17 1369:1 1372:2 1373:1 1378:3 1381:1 1405:1 1406:2 1417:1 1428:1 1429:1 1430:1 1447:1 1453:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1557:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1681:4 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1806:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1879:1 1901:1 1912:2 1915:3 1947:1 1954:1 1967:1 1993:1 2005:1 2020:1 2029:1 2044:1 2047:1 2050:1 2056:1 2072:1 2074:1 2077:1 2093:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2336:1 2367:1 2372:1 2401:4 2443:1 2479:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:2 2589:3 2595:3 2598:1 2601:1 2603:1 2607:1 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:1 2779:3 2788:2 2802:1 2808:1 2820:2 2836:1 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3089:1 3090:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:2 3130:1 3143:1 3187:1 3196:3 3203:1 3206:1 3223:2 3282:1 3287:1 3310:1 3313:10 3315:18 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:3 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:1 3459:1 3460:1 3495:2 3542:1 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3787:1 3811:1 3818:1 3821:1 3840:1 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 4029:1 4030:1 4033:1 4065:1 4074:1 4078:1 4101:1 4135:1 4143:1 4184:1 4204:1 4218:2 4219:1 4220:1 4224:1 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:17 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:1 4556:2 4558:2 4571:2 4584:1 4588:1 4592:4 4593:1 4604:2 4644:1 4668:1 4679:2 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4788:1 4792:2 4793:1 4798:2 4803:2 4817:1 4848:1 4866:1 4890:2 4897:1 4920:1 4929:17 4938:1 4942:1 4946:3 4961:1 4964:1 4976:1 4978:1 4983:1 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:1 5315:1 5337:1 5342:3 5349:1 5387:1 5403:1 5437:1 5443:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:2 5515:1 5518:1 5542:1 5545:1 5562:8 5563:2 5581:1 5585:1 5616:1 5626:2 5659:1 5660:1 5714:3 5716:1 5737:2 5738:2 5739:2 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6263:1 6272:2 6275:1 6334:1 6359:1 6360:1 6371:1 6393:1 6395:1 6436:1 6438:1 6442:1 6448:1 6453:1 6454:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6660:1 6706:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:1 6925:1 6932:1 6936:2 6941:1 6987:1 6994:1 7032:1 7033:1 7035:1 7046:1 7047:1 7050:1 7052:1 7053:1 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:4 7301:1 7302:1 7307:1 7309:1 7312:2 7313:6 7324:1 7349:1 7371:2 7399:1 7443:1 7452:1 7461:2 7466:3 7513:1 7528:1 7538:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7617:1 7627:1 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8435:1 8446:1 8453:1 8466:3 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:6 8700:6 8708:1 8724:1 8726:5 8759:3 8764:1 8774:20 8780:1 8781:1 8784:2 8788:1 8794:10 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:2 8990:1 9001:1 9019:1 9022:3 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:1 9293:1 9306:1 9318:1 9320:18 9330:1 9337:1 9341:1 9350:7 9352:3 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:22 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:3 9693:1 9709:1 9714:1 9747:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:2 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:3 10263:1 10270:1 10343:2 10354:1 10372:1 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:1 10449:1 10459:1 10476:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10660:1 10698:1 10701:1 10702:1 10707:1 10710:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:4 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11063:1 11064:1 11070:3 11073:4 11084:1 11140:1 11188:1 11210:17 11220:1 11225:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:3 11493:2 11495:1 11529:3 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11615:1 11633:3 11650:1 11737:1 11747:1 11768:2 11781:1 11796:1 11822:1 11848:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:3 12047:1 12067:2 12095:1 12118:1 12121:1 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:4 12247:1 12258:1 12262:1 12277:1 12317:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12791:3 12800:1 12858:1 12864:1 12876:1 12878:1 12883:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:2 13243:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13294:1 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:2 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:3 13484:1 13523:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13864:1 13865:1 13866:1 13898:1 13918:1 13955:1 13975:1 13998:1 14016:2 14019:3 14035:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14357:1 14402:1 14405:1 14430:2 14433:18 14439:1 14444:1 14447:4 14455:1 14491:4 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14558:1 14585:1 14586:1 14599:1 14623:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14822:1 14862:1 14885:1 14907:1 14915:1 14916:1 14928:1 14935:7 14940:1 14955:1 14964:1 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:2 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:2 15359:1 15384:1 15388:1 15416:1 15421:1 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15492:1 15496:1 15498:1 15501:1 15507:1 15509:5 15510:1 15536:1 15539:1 15540:1 15545:3 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:7 15692:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:3 15805:1 15817:3 15821:1 15832:5 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16066:1 16115:4 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16272:1 16316:1 16331:1 16338:1 16352:1 16354:1 16355:1 16375:2 16386:1 16396:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:18 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:1 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16718:1 16725:1 16737:1 16739:1 16771:1 16823:1 16846:1 16851:1 16854:2 16858:1 16887:1 16914:1 16928:1 16929:2 16930:1 16947:1 16962:1 16965:1 16968:6 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17190:1 17208:2 17253:1 17261:1 17311:1 17330:1 17337:2 17342:1 17360:1 17365:1 17375:1 17456:1 17472:1 17473:2 17475:1 17502:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:1 17722:2 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17869:1 17872:1 17882:1 17907:4 17921:1 17945:1 17956:2 18036:1 18049:1 18065:1 18070:1 18072:7 18077:2 18084:1 18121:1 18124:2 18126:1 18130:1 18165:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18497:1 18528:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:1 18626:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18795:1 18803:1 18865:1 18878:1 18883:3 18887:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:25 19061:1 19062:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:1 19377:1 19379:1 19398:1 19404:1 19425:1 19427:2 19478:1 19484:1 19515:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19654:1 19666:1 19677:1 19679:1 19680:1 19687:1 19691:2 19696:1 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19846:1 19883:4 19890:2 19893:1 19914:1 19935:1 19947:2 20005:2 20027:1 20032:1 20067:3 20079:2 20108:1 20134:1 20138:1 20192:4 20197:1 20201:1 20236:1 20267:1 20287:1 20288:1 20292:1 20298:1 20304:1 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20539:1 20545:2 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:4 20737:1 20744:1 20763:1 20821:1 20826:2 20846:1 20873:1 20890:1 20895:1 20910:1 20957:1 20967:1 20975:1236 20985:1 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21418:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:3 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:4 21836:3 21877:1 21881:4 21907:2 21942:10 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22039:2 22051:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:2 22196:1 22246:1 22286:1 22289:1 22297:1 22316:1 22326:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:1 22536:3 22542:1 22563:1 22571:1 22598:1 22606:1 22611:1 22617:1 22619:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22706:1 22717:1 22726:1 22733:2 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:2 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23206:1 23207:1 23220:1 23225:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23507:3 23521:1 23530:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:2 23671:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23800:1 23816:1 23843:1 23850:1 23862:1 23864:1 23869:2 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:2 24022:2 24028:1 24032:1 24034:2 24038:2 24072:1 24119:1 24140:1 24152:2 24202:3 24230:1 24249:1 24260:1 24264:3 24269:1 24279:2 24284:1 24287:1 24322:1 24333:4 24364:1 24397:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:1 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:2 24644:1 24648:1 24662:1 24682:1 24709:1 24714:1 24743:1 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:6 25049:2 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:1 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25301:1 25304:1 25316:1 25353:1 25375:1 25382:1 25399:3 25415:1 25463:3 25517:1 25530:1 25557:1 25567:1 25581:1 25591:17 25609:1 25614:2 25616:2 25626:1 25659:2 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25730:1 25754:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:2 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26062:1 26115:18 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26207:2 26208:1 26219:1 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:1 26311:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:1 26631:1 26653:2 26662:2 26675:1 26685:1 26696:1 26774:1 26782:1 26804:2 26808:1 26828:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:3 27036:1 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:1 27141:2 27144:3 27150:1 27161:1 27197:3 27238:5 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27363:1 27370:1 27415:2 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27581:3 27584:1 27585:2 27595:1 27596:1 27603:3 27610:1 27634:1 27646:2 27669:2 27688:1 27693:2 27694:2 27714:1 27750:1 27755:1 27764:4 27767:1 27790:1 27798:1 27801:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28178:1 28185:1 28240:1 28284:2 28285:2 28313:1 28317:2 28322:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28451:1 28458:1 28471:2 28477:1 28490:1 28494:1 28513:1 28522:1 28549:1 28553:1 28556:1 28559:1 28584:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:1 28780:1 28793:2 28807:2 28819:1 28824:3 28854:3 28861:1 28885:1 28887:6 28899:2 28911:1 28918:1 28936:1 28950:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29259:1 29280:2 29292:1 29306:2 29316:1 29319:1 29325:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:6 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29756:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29940:1 29953:1 30020:1 30038:2 30048:1 30061:1 30069:1 30071:5 30096:2 30110:1 30121:4 30155:2 30186:1 30197:4 30198:1 30200:2 30210:1 30220:1 30226:1 30232:2 30243:3 30249:1 30255:1 30258:1 30271:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:1 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30561:1 30570:3 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30690:1 30712:1 30714:1 30725:3 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30816:1 30817:2 30821:2 30828:2 30843:1 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:4 30936:3 30968:1 30978:1 30979:1 30982:2 30988:1 30998:1 30999:1 31004:1 31014:1 31028:1 31029:1 31049:1 31052:1 31085:1 31086:1 31096:1 31116:1 31133:1 31135:1 31204:1 31250:3 31251:2 31262:1 31266:2 31268:3 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31594:1 31620:1 31631:5 31682:1 31709:2 31723:1 31739:1 31747:5 31754:2 31765:1 31779:1 31780:1 31794:6 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32056:22 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:7 32171:1 32187:1 32204:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32485:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32693:1 32699:1 32713:1 32717:1 32733:1 32771:1 32774:1 32777:2 32799:1 32804:2 32818:4 32835:1 32838:2 32839:2 32849:18 32887:1 32932:1 32935:1 32943:2 32944:2 32978:1 33018:1
2 14:1 17:1 40:2 41:1 42:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:1 313:3 314:1 316:1 330:1 331:1 335:1 369:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 529:1 538:2 565:1 569:1 573:1 579:1 618:1 626:1 638:1 684:3 688:1 697:1 701:1 723:2 744:19 752:3 756:1 774:1 781:1 793:1 822:1 838:2 842:2 859:1 891:2 908:2 910:1 912:2 915:2 918:1 920:1 965:3 1014:2 1015:6 1020:1 1034:5 1057:2 1065:1 1075:2 1081:1 1084:3 1089:1 1090:1 1094:1 1101:1 1109:2 1127:1 1130:1 1133:1 1166:1 1168:1 1173:1 1177:1 1193:3 1247:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:18 1369:1 1372:2 1373:1 1378:3 1381:1 1405:1 1406:2 1417:1 1421:1 1428:1 1429:1 1430:1 1447:1 1453:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1557:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1681:4 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1806:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1879:1 1901:1 1912:2 1915:3 1947:1 1954:1 1967:1 1993:1 2005:1 2020:1 2029:1 2044:1 2047:2 2050:1 2056:1 2072:1 2074:1 2077:1 2093:1 2097:2 2109:1 2113:2 2121:2 2129:1 2160:1 2174:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2316:1 2336:1 2352:1 2367:1 2372:1 2401:5 2443:1 2479:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:3 2589:3 2595:3 2598:1 2601:1 2603:1 2607:2 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:1 2777:1 2779:3 2788:2 2802:1 2808:1 2820:2 2836:1 2844:1 2879:1 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3089:2 3090:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:2 3130:1 3143:1 3150:1 3187:1 3196:3 3203:1 3206:1 3223:2 3282:1 3287:1 3310:1 3313:10 3315:19 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:3 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:2 3459:1 3460:1 3495:2 3542:1 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3787:1 3811:1 3818:1 3821:1 3840:1 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 4029:1 4030:1 4033:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4184:1 4204:1 4218:2 4219:1 4220:1 4224:1 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:18 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:2 4558:2 4571:2 4584:1 4588:1 4592:4 4593:1 4604:2 4644:1 4668:1 4679:2 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:2 4817:1 4848:1 4866:2 4890:2 4897:1 4920:1 4929:18 4938:1 4942:1 4946:4 4961:1 4964:1 4976:1 4978:1 4983:1 5034:1 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:1 5315:1 5337:1 5342:3 5349:1 5387:1 5403:1 5437:1 5443:1 5447:1 5451:2 5452:1 5459:1 5462:1 5484:1 5485:2 5515:1 5518:1 5542:1 5545:1 5562:8 5563:2 5581:1 5585:1 5616:1 5626:2 5659:1 5660:1 5714:3 5716:1 5737:3 5738:3 5739:2 5745:3 5753:1 5754:3 5762:1 5770:2 5772:3 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6091:1 6092:1 6106:1 6136:1 6144:1 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6263:1 6272:2 6275:1 6334:1 6359:1 6360:1 6371:1 6393:1 6395:1 6414:1 6436:1 6438:1 6442:1 6448:1 6453:1 6454:1 6460:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:1 6660:1 6706:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:1 6925:1 6932:1 6936:2 6941:1 6987:1 6994:1 7032:1 7033:1 7035:1 7046:1 7047:1 7050:1 7052:1 7053:2 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:4 7289:1 7297:4 7301:1 7302:1 7307:1 7309:1 7312:2 7313:6 7324:1 7349:1 7371:2 7390:1 7399:1 7411:1 7443:1 7452:1 7461:2 7466:3 7513:1 7528:1 7538:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7617:1 7627:1 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8435:1 8446:1 8453:1 8466:4 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:7 8700:6 8708:1 8724:1 8726:5 8759:3 8764:1 8774:22 8780:1 8781:1 8784:2 8788:1 8794:10 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:2 8990:1 9001:1 9019:1 9022:3 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:1 9293:1 9306:1 9318:1 9320:19 9330:1 9337:1 9341:1 9350:8 9352:3 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:23 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:3 9693:1 9709:1 9714:1 9747:2 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:2 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:3 10263:1 10270:1 10343:2 10354:1 10372:1 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:1 10449:1 10459:1 10476:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:1 10710:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:4 10778:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11063:1 11064:1 11070:3 11073:4 11084:1 11140:1 11188:1 11210:18 11220:1 11225:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:1 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:3 11493:2 11495:1 11508:1 11529:3 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11615:1 11633:4 11650:1 11689:1 11737:1 11747:1 11768:2 11781:1 11796:1 11822:1 11848:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:3 12047:1 12067:2 12095:1 12118:1 12121:2 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:4 12247:1 12258:1 12262:1 12277:1 12317:1 12336:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12791:3 12800:1 12858:1 12864:1 12876:1 12878:2 12883:1 12889:1 12893:1 12902:3 12903:1 12904:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:2 13239:1 13243:1 13246:1 13257:1 13274:1 13277:1 13282:1 13289:1 13292:3 13294:1 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:2 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:3 13484:1 13523:1 13527:2 13574:1 13577:1 13594:1 13625:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13864:1 13865:1 13866:1 13898:1 13918:1 13955:1 13975:1 13998:1 14016:2 14019:3 14035:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14356:1 14357:1 14402:1 14405:1 14430:2 14433:19 14439:1 14444:1 14447:4 14455:1 14491:4 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14558:1 14585:1 14586:1 14599:1 14623:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14822:1 14862:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:7 14940:1 14955:1 14964:1 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:2 15106:1 15116:1 15170:1 15171:1 15181:6 15185:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:3 15359:1 15384:1 15388:1 15416:1 15421:2 15435:1 15439:1 15440:1 15454:1 15459:1 15469:1 15492:1 15496:1 15498:1 15501:1 15507:1 15509:5 15510:1 15511:1 15536:1 15539:1 15540:1 15545:3 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:8 15692:1 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:3 15805:1 15817:3 15821:1 15832:5 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16026:1 16066:1 16115:4 16188:1 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16272:1 16316:1 16331:1 16338:1 16352:1 16354:1 16355:1 16375:2 16386:1 16394:1 16396:1 16402:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16487:1 16505:19 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16693:1 16718:1 16725:1 16737:1 16739:1 16771:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16928:1 16929:2 16930:1 16947:1 16962:1 16965:1 16968:6 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17253:1 17261:1 17284:1 17311:1 17330:1 17337:2 17342:1 17360:1 17365:1 17375:1 17456:1 17472:1 17473:2 17475:1 17502:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:1 17722:3 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17869:1 17872:1 17882:1 17907:4 17921:1 17945:1 17955:1 17956:2 18036:1 18049:1 18065:1 18070:1 18072:7 18077:2 18084:1 18121:2 18124:2 18126:1 18130:1 18165:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:1 18626:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18865:1 18878:1 18883:3 18887:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:26 19061:1 19062:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:1 19377:1 19379:1 19397:1 19398:1 19404:1 19425:1 19427:2 19478:1 19484:1 19515:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19654:1 19666:1 19677:1 19679:1 19680:1 19687:1 19691:2 19696:1 19724:1 19772:2 19784:2 19790:1 19796:1 19813:1 19819:1 19846:1 19883:4 19890:2 19893:1 19914:1 19935:1 19947:2 20005:2 20027:1 20032:1 20067:3 20079:2 20108:1 20134:1 20138:1 20192:4 20197:1 20201:1 20236:2 20267:1 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20539:1 20545:3 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20821:1 20826:2 20846:1 20873:1 20890:1 20895:1 20899:1 20910:1 20957:1 20967:1 20975:1311 20985:1 20997:1 21007:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:3 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:4 21836:3 21877:1 21881:4 21907:2 21942:11 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22039:2 22051:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:2 22196:1 22208:1 22246:1 22286:1 22289:1 22297:1 22316:1 22326:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:1 22536:4 22542:1 22563:1 22571:1 22598:1 22606:1 22611:1 22617:2 22619:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22706:1 22717:1 22726:1 22733:2 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 23046:3 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:2 23143:1 23158:1 23206:1 23207:1 23220:1 23225:1 23251:1 23284:1 23291:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23507:3 23521:1 23530:1 23536:2 23614:1 23617:3 23623:1 23628:1 23660:1 23661:1 23666:2 23671:2 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23800:1 23816:1 23843:1 23850:1 23862:1 23864:1 23869:2 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:2 24022:2 24028:1 24032:1 24034:2 24038:2 24072:1 24119:1 24140:1 24152:2 24202:3 24230:1 24249:1 24260:1 24264:3 24269:1 24279:2 24284:1 24287:1 24301:1 24322:1 24333:4 24364:1 24397:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24599:1 24600:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:3 24644:1 24648:1 24662:1 24682:1 24709:1 24714:1 24743:2 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:7 25049:2 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25297:1 25301:1 25304:1 25316:1 25353:1 25375:1 25380:1 25382:1 25399:3 25415:2 25463:3 25517:1 25530:1 25557:1 25567:1 25581:1 25591:18 25609:1 25614:2 25616:2 25626:1 25659:2 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:2 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:1 26061:1 26062:1 26115:19 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26199:1 26207:2 26208:1 26219:1 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:1 26631:1 26653:2 26662:2 26675:1 26685:1 26696:1 26774:2 26782:1 26804:2 26808:1 26828:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:3 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:1 27141:2 27144:3 27150:1 27161:1 27197:3 27238:5 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27363:1 27370:1 27415:2 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27581:3 27584:1 27585:2 27595:1 27596:1 27603:3 27610:1 27634:1 27646:2 27669:2 27688:1 27693:2 27694:2 27714:1 27750:1 27755:1 27764:4 27767:1 27790:1 27798:1 27801:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28178:1 28185:1 28240:1 28284:2 28285:3 28304:1 28313:1 28317:2 28322:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28451:1 28458:1 28471:2 28477:1 28490:1 28494:1 28513:1 28522:1 28547:1 28549:1 28553:2 28556:1 28559:1 28584:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:1 28780:1 28793:2 28807:2 28819:1 28824:3 28854:3 28861:1 28885:1 28887:7 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29259:1 29280:2 29292:1 29306:2 29316:1 29319:1 29325:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29595:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:1 29756:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29922:1 29940:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:5 30096:2 30110:1 30121:4 30155:3 30186:1 30197:4 30198:1 30200:2 30210:1 30220:1 30226:1 30232:2 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:2 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30561:1 30570:3 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30690:1 30712:1 30714:1 30725:3 30732:1 30741:1 30762:1 30767:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30816:1 30817:2 30821:2 30828:2 30843:1 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:4 30936:3 30968:1 30978:1 30979:1 30982:2 30988:1 30998:1 30999:1 31004:1 31014:1 31028:1 31029:1 31049:1 31052:1 31085:1 31086:1 31096:1 31116:1 31133:1 31135:1 31204:1 31250:3 31251:2 31262:2 31266:2 31268:3 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31594:1 31620:1 31631:5 31682:1 31709:2 31723:1 31739:1 31747:5 31754:2 31765:1 31768:1 31779:1 31780:1 31794:7 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32056:23 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:7 32171:1 32183:1 32187:1 32204:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32485:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32693:1 32699:1 32713:1 32717:1 32733:1 32771:1 32774:1 32777:2 32799:1 32804:2 32818:4 32835:2 32837:1 32838:2 32839:2 32849:19 32887:1 32932:1 32935:1 32937:1 32943:2 32944:2 32978:1 32987:1 33018:1
2 14:1 17:1 40:2 41:1 42:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:2 313:3 314:1 316:1 330:1 331:1 335:1 369:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 529:1 538:2 565:2 569:1 573:1 579:1 618:1 626:1 638:1 684:3 688:1 697:1 701:1 723:2 744:20 752:3 756:1 774:1 781:1 793:1 798:1 822:1 838:2 842:2 859:1 891:2 908:2 910:1 912:2 915:2 918:1 920:1 965:3 1014:3 1015:6 1020:1 1034:5 1057:2 1065:1 1075:2 1081:3 1084:4 1089:1 1090:1 1094:1 1101:1 1106:1 1109:2 1127:2 1130:1 1133:1 1166:1 1168:1 1173:1 1177:1 1193:3 1247:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:19 1369:1 1372:2 1373:1 1375:1 1378:3 1381:1 1405:1 1406:2 1417:1 1421:1 1428:1 1429:1 1430:1 1447:1 1453:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1543:1 1549:1 1556:2 1557:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1681:5 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1806:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1879:1 1893:1 1901:1 1912:2 1915:3 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2056:1 2072:1 2074:1 2077:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2129:1 2152:1 2160:1 2174:1 2186:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2310:1 2316:1 2336:1 2352:1 2356:1 2367:1 2372:1 2401:5 2443:1 2479:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:3 2587:1 2589:3 2595:3 2598:1 2601:1 2603:1 2607:2 2612:1 2617:1 2627:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:1 2777:1 2779:4 2788:2 2802:1 2808:1 2820:2 2836:1 2844:1 2869:1 2879:1 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3089:2 3090:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:2 3130:1 3143:1 3150:1 3187:1 3194:1 3196:3 3203:1 3206:1 3223:2 3228:1 3265:1 3282:1 3287:1 3310:1 3313:10 3315:20 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3365:3 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:2 3459:1 3460:1 3495:2 3542:2 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3787:1 3811:1 3818:1 3821:1 3840:1 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 3992:1 4029:1 4030:1 4033:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4184:1 4204:1 4218:2 4219:1 4220:1 4224:1 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:1 4362:1 4373:1 4376:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:19 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:3 4558:2 4571:2 4584:1 4588:1 4592:5 4593:2 4604:2 4644:1 4668:1 4679:2 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:2 4890:2 4897:1 4920:1 4929:19 4938:1 4942:1 4946:4 4961:1 4964:1 4976:1 4978:1 4983:1 5034:1 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:2 5315:1 5337:1 5342:3 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:1 5484:1 5485:2 5497:1 5515:1 5518:1 5542:1 5545:1 5562:9 5563:2 5581:1 5585:1 5616:2 5626:2 5659:1 5660:1 5714:3 5716:1 5737:3 5738:4 5739:2 5745:3 5753:1 5754:3 5762:1 5770:2 5772:4 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6091:1 6092:1 6106:1 6136:1 6144:2 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6262:1 6263:1 6272:2 6275:1 6334:1 6359:1 6360:1 6371:1 6393:1 6395:1 6414:1 6436:1 6438:1 6442:1 6448:1 6453:1 6454:1 6460:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:2 6660:1 6706:1 6717:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:2 6919:1 6925:1 6932:1 6936:2 6941:1 6963:1 6987:1 6994:1 7032:1 7033:1 7035:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7297:4 7301:1 7302:1 7307:1 7309:1 7312:2 7313:6 7324:1 7349:1 7371:2 7390:1 7399:1 7411:1 7443:1 7452:1 7461:2 7466:3 7513:1 7528:1 7538:1 7543:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7617:1 7627:1 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8258:1 8272:1 8286:1 8290:1 8297:1 8345:1 8363:1 8364:1 8380:1 8435:1 8446:1 8453:1 8462:1 8466:5 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:7 8700:8 8708:1 8724:1 8726:5 8759:3 8764:1 8774:23 8780:1 8781:1 8784:2 8788:1 8794:10 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:2 8990:1 8994:1 9001:1 9019:1 9022:3 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:1 9293:1 9306:1 9318:1 9320:20 9330:1 9337:1 9341:1 9350:8 9352:3 9374:1 9376:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:24 9473:1 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:3 9693:1 9709:1 9714:1 9747:2 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:1 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:3 10263:1 10270:1 10272:1 10343:2 10354:1 10372:1 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:1 10449:1 10459:1 10476:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:4 10778:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11063:1 11064:1 11070:3 11073:4 11084:1 11140:1 11188:1 11189:1 11210:19 11220:1 11225:1 11238:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11435:1 11441:1 11442:2 11462:1 11474:1 11478:4 11493:2 11495:1 11508:1 11529:3 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11615:1 11633:5 11650:1 11689:1 11737:1 11747:1 11768:3 11781:1 11796:1 11815:1 11822:1 11848:1 11853:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:3 12047:1 12067:2 12095:2 12118:1 12121:2 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:4 12247:1 12258:1 12262:1 12277:1 12317:1 12336:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:2 12499:1 12506:1 12514:1 12518:1 12520:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12791:3 12800:1 12858:1 12864:1 12876:1 12878:2 12883:1 12889:1 12893:1 12902:3 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:3 13239:1 13243:1 13246:1 13257:1 13274:1 13277:1 13278:1 13282:1 13289:1 13292:3 13294:1 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13362:1 13365:2 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13468:1 13478:3 13484:1 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13660:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13864:1 13865:1 13866:1 13875:1 13898:1 13916:1 13918:1 13955:1 13975:1 13998:1 14016:2 14019:3 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:20 14439:1 14444:1 14447:4 14455:1 14491:4 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14585:1 14586:1 14599:1 14623:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14822:1 14862:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:7 14940:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:2 15106:2 15116:1 15170:1 15171:1 15181:7 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:3 15359:1 15384:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:1 15498:1 15499:1 15501:1 15507:1 15509:5 15510:1 15511:1 15536:1 15539:1 15540:1 15545:4 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:8 15685:1 15692:1 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:3 15805:1 15817:3 15821:1 15832:5 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16026:1 16030:1 16066:1 16115:4 16188:1 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16272:1 16316:1 16331:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16425:1 16445:1 16449:1 16451:1 16457:1 16464:1 16487:1 16505:20 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16693:1 16718:1 16725:1 16737:1 16739:1 16771:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16962:1 16965:1 16968:6 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17456:1 17472:1 17473:2 17475:1 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:2 17722:3 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17869:1 17872:1 17882:1 17907:4 17911:1 17921:1 17945:1 17955:1 17956:3 18036:1 18049:1 18065:1 18070:1 18072:8 18077:2 18084:1 18121:2 18124:3 18126:1 18130:1 18161:1 18165:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18324:1 18326:1 18338:1 18350:4 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18409:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:2 18626:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18865:1 18878:1 18883:3 18887:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:27 19061:1 19062:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:1 19377:1 19379:1 19397:1 19398:1 19404:1 19425:1 19427:2 19478:1 19484:1 19515:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19654:1 19666:1 19677:1 19679:1 19680:1 19687:1 19691:2 19696:1 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19883:4 19890:2 19893:1 19914:1 19935:1 19947:2 19984:1 20005:2 20027:1 20032:1 20067:3 20079:4 20108:1 20134:1 20138:1 20173:1 20192:4 20197:1 20201:1 20236:2 20267:2 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20539:1 20545:3 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20770:1 20821:1 20826:2 20846:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20957:1 20967:1 20975:1454 20985:1 20997:2 21007:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:4 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:4 21836:3 21877:1 21881:4 21907:2 21942:12 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22031:1 22039:2 22051:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:2 22196:1 22208:1 22242:1 22246:1 22286:1 22289:1 22297:1 22316:1 22326:1 22364:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:5 22542:1 22549:1 22563:1 22571:1 22598:1 22606:1 22611:1 22617:2 22619:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22689:1 22706:1 22717:1 22726:1 22733:2 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 22995:1 23046:3 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23206:1 23207:1 23220:1 23225:1 23245:1 23251:1 23284:1 23291:1 23294:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23507:3 23521:1 23530:1 23536:2 23614:1 23617:3 23620:1 23623:1 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23800:1 23816:1 23843:1 23850:1 23862:1 23864:1 23869:2 23882:1 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:2 24022:2 24028:1 24032:1 24034:2 24038:2 24072:1 24119:1 24140:1 24152:2 24202:3 24230:1 24249:1 24260:1 24264:3 24269:1 24279:3 24284:1 24287:1 24301:1 24322:1 24333:4 24364:1 24397:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:1 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:3 24644:1 24648:1 24662:1 24682:1 24709:1 24714:1 24743:2 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:2 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:8 25049:2 25057:1 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25297:1 25301:1 25304:1 25316:1 25319:1 25353:1 25373:1 25375:1 25380:1 25382:1 25399:3 25415:2 25463:3 25517:1 25530:1 25557:1 25567:1 25581:1 25591:19 25609:1 25614:2 25616:2 25626:1 25659:2 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:2 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:2 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:2 26061:1 26062:1 26115:20 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:1 26631:1 26652:1 26653:2 26662:2 26675:1 26685:1 26696:1 26774:2 26778:1 26782:1 26804:2 26808:1 26828:1 26830:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:3 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:1 27141:2 27144:3 27150:1 27161:1 27197:3 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27299:1 27352:1 27354:1 27363:1 27370:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27581:3 27584:1 27585:2 27595:1 27596:1 27603:3 27610:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:2 27714:1 27739:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27798:1 27801:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28035:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28178:1 28185:1 28240:1 28283:1 28284:2 28285:3 28304:1 28313:1 28317:2 28322:1 28347:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28451:2 28458:1 28471:3 28477:1 28490:1 28494:1 28513:1 28522:1 28547:1 28549:1 28553:2 28556:1 28559:1 28584:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:1 28780:1 28793:2 28807:2 28819:1 28824:3 28854:3 28861:1 28885:1 28887:8 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:1 29042:2 29052:1 29073:1 29078:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29259:1 29280:3 29292:1 29306:2 29316:1 29319:1 29325:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29595:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:2 29756:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29916:1 29922:1 29940:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:5 30096:2 30106:1 30110:1 30121:4 30155:3 30167:1 30186:1 30197:4 30198:1 30200:2 30210:1 30220:1 30226:1 30232:2 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30281:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:2 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30561:1 30563:1 30570:3 30582:2 30606:1 30619:1 30624:2 30655:1 30656:1 30675:1 30683:1 30690:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30809:1 30816:1 30817:2 30820:1 30821:2 30828:2 30843:1 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:5 30936:3 30968:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31014:1 31028:1 31029:1 31049:1 31052:1 31085:1 31086:1 31096:1 31116:1 31133:1 31135:1 31204:1 31250:3 31251:2 31262:3 31266:2 31268:3 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:12 31594:1 31620:1 31631:5 31682:1 31709:2 31723:1 31739:1 31742:1 31747:7 31754:2 31765:1 31768:1 31779:1 31780:1 31794:7 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32056:24 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:7 32171:1 32183:1 32187:1 32204:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32485:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32596:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32693:1 32699:1 32713:1 32717:1 32733:1 32771:2 32774:1 32777:2 32799:1 32804:2 32818:5 32835:2 32837:1 32838:2 32839:2 32849:20 32887:1 32932:1 32935:1 32937:1 32943:2 32944:2 32978:1 32987:1 33018:1 33021:1
2 14:1 17:1 40:2 41:1 42:1 51:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:2 313:3 314:1 316:1 330:1 331:1 335:1 369:1 376:1 418:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 518:1 529:1 538:2 565:2 569:1 573:1 579:1 618:1 626:1 638:1 684:3 688:1 697:1 701:1 723:2 744:21 752:3 756:1 774:1 781:1 793:1 798:2 822:1 838:2 842:2 859:1 891:2 908:2 910:1 912:2 915:2 918:1 920:1 965:3 1014:3 1015:6 1020:1 1034:5 1049:1 1057:3 1065:1 1075:2 1081:3 1084:4 1089:1 1090:1 1094:1 1101:1 1106:2 1109:2 1127:2 1130:1 1133:1 1166:1 1168:1 1173:1 1177:1 1193:3 1247:2 1248:1 1260:1 1303:1 1305:2 1335:1 1358:1 1361:20 1369:1 1372:2 1373:1 1375:1 1378:3 1381:1 1405:1 1406:2 1408:1 1417:1 1421:1 1428:1 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1540:1 1543:1 1549:1 1556:2 1557:1 1583:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1678:1 1681:6 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1803:1 1806:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:1 1879:1 1893:1 1901:1 1912:2 1915:3 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2056:1 2072:1 2074:1 2077:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2129:1 2152:1 2160:1 2174:1 2186:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2310:1 2316:1 2336:1 2352:1 2356:1 2367:1 2372:1 2401:6 2443:1 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2569:1 2570:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:3 2587:1 2589:3 2595:3 2598:1 2601:1 2603:1 2607:2 2612:1 2617:1 2618:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:1 2777:1 2779:4 2788:2 2799:1 2802:1 2808:1 2820:2 2836:1 2844:1 2869:1 2879:1 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3089:3 3090:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:2 3130:1 3143:1 3150:1 3153:1 3187:1 3194:1 3196:3 3203:1 3206:1 3223:2 3228:1 3265:2 3282:1 3287:1 3310:1 3313:10 3315:21 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:3 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:2 3459:1 3460:1 3489:1 3495:2 3506:1 3542:2 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3787:1 3811:1 3818:1 3821:1 3840:1 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4184:1 4204:1 4218:2 4219:1 4220:1 4224:1 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:1 4362:1 4367:1 4373:1 4376:1 4382:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:20 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:2 4592:5 4593:2 4604:2 4644:1 4668:1 4679:2 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:3 4890:2 4897:1 4920:1 4929:20 4938:1 4942:1 4946:4 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:2 5315:1 5337:1 5342:3 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:1 5484:1 5485:2 5497:1 5515:1 5518:1 5542:1 5545:1 5562:9 5563:2 5581:1 5585:1 5616:2 5626:2 5637:1 5659:1 5660:1 5714:3 5716:1 5719:1 5737:3 5738:4 5739:2 5745:3 5753:1 5754:3 5762:1 5770:2 5772:5 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6091:1 6092:1 6106:1 6136:1 6144:2 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6262:1 6263:1 6272:2 6275:1 6334:1 6359:1 6360:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:1 6436:1 6438:1 6442:1 6448:1 6453:1 6454:1 6460:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:2 6660:1 6706:1 6717:1 6764:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:2 6919:1 6925:1 6928:1 6932:1 6936:2 6941:1 6963:1 6987:1 6994:1 7032:1 7033:2 7035:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7297:4 7301:1 7302:1 7303:1 7306:1 7307:1 7309:1 7312:2 7313:6 7324:1 7328:1 7349:1 7371:2 7390:1 7399:1 7411:1 7443:1 7452:1 7461:2 7466:3 7513:1 7528:1 7538:1 7543:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8090:1 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8258:1 8272:1 8281:1 8286:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:1 8380:1 8418:1 8435:1 8446:1 8453:1 8462:1 8466:5 8503:4 8505:1 8508:1 8545:1 8547:2 8589:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:7 8700:9 8708:1 8724:1 8726:5 8759:3 8764:1 8774:24 8780:1 8781:1 8784:2 8788:1 8794:10 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:1 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:2 8990:1 8994:1 9001:1 9019:1 9022:3 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:1 9293:1 9306:1 9318:1 9320:21 9330:1 9337:1 9341:1 9350:9 9352:3 9374:1 9376:2 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:25 9473:1 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9679:1 9682:1 9687:1 9692:3 9693:1 9709:1 9714:1 9720:1 9747:3 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:2 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:1 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:4 10263:1 10270:1 10272:1 10319:1 10343:3 10354:1 10372:1 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:1 10449:1 10459:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:5 10778:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11140:1 11188:1 11189:1 11210:20 11220:1 11225:1 11238:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11462:1 11474:1 11478:4 11493:2 11495:1 11508:1 11529:3 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11633:5 11650:1 11689:1 11737:1 11747:1 11768:3 11781:1 11796:1 11815:1 11822:1 11848:1 11853:1 11871:1 11872:3 11891:1 11922:1 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:3 12047:1 12067:2 12095:2 12118:1 12121:2 12149:1 12151:4 12158:1 12161:2 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:5 12247:1 12258:1 12262:1 12277:1 12317:1 12336:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:3 12499:1 12506:1 12514:1 12518:1 12520:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:1 12876:1 12878:2 12883:1 12889:1 12893:1 12902:3 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:4 13239:1 13243:1 13246:1 13257:1 13274:1 13277:1 13278:1 13282:1 13289:1 13292:3 13294:1 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13358:1 13362:1 13365:2 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13467:1 13468:1 13478:3 13484:1 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13857:1 13864:1 13865:1 13866:1 13875:1 13898:1 13916:1 13918:1 13955:1 13975:1 13998:1 14016:2 14019:3 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:21 14439:1 14444:1 14447:4 14455:1 14491:4 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14822:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:7 14940:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:2 15106:2 15116:1 15170:1 15171:1 15181:7 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:3 15359:1 15384:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:2 15498:1 15499:1 15501:1 15507:1 15509:6 15510:1 15511:1 15513:1 15536:1 15539:1 15540:1 15545:4 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:8 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:3 15805:1 15812:1 15817:3 15821:1 15832:6 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16025:1 16026:1 16030:1 16066:1 16115:4 16188:1 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16272:1 16275:1 16316:1 16331:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16487:1 16505:21 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16693:1 16718:1 16725:1 16737:1 16739:1 16771:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16962:1 16965:1 16968:6 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17456:1 17472:1 17473:2 17475:1 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:2 17722:3 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17815:1 17869:1 17872:1 17882:1 17907:4 17911:1 17921:1 17945:1 17955:1 17956:3 18036:1 18049:1 18065:1 18070:1 18072:8 18077:2 18084:1 18121:2 18124:3 18126:1 18130:1 18161:1 18165:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18324:1 18326:1 18338:1 18350:4 18351:1 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18409:1 18428:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:2 18626:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:28 19061:1 19062:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:1 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:1 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19883:4 19890:2 19893:1 19914:1 19935:1 19947:2 19984:1 20005:2 20027:1 20032:1 20067:3 20079:4 20108:1 20134:1 20138:1 20173:1 20192:4 20197:1 20201:1 20236:3 20267:2 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20770:2 20821:1 20826:2 20846:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20957:1 20967:1 20975:1520 20985:1 20997:2 21007:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:4 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21804:1 21815:1 21824:1 21834:4 21836:3 21877:1 21881:4 21907:2 21942:13 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22031:1 22039:2 22051:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:2 22196:1 22208:1 22242:1 22246:1 22280:1 22286:1 22289:1 22297:1 22316:1 22326:1 22364:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:1 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:5 22542:1 22549:1 22563:1 22571:1 22598:1 22606:1 22611:2 22617:3 22619:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22689:1 22706:1 22717:1 22726:1 22733:2 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 22995:1 23046:4 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23206:1 23207:1 23219:1 23220:1 23225:1 23245:1 23251:2 23284:1 23291:1 23294:1 23307:1 23318:2 23325:1 23332:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23502:1 23507:3 23521:1 23530:1 23536:2 23597:1 23614:1 23617:3 23620:1 23623:1 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23800:1 23816:1 23843:1 23850:1 23862:1 23864:1 23869:3 23882:1 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:2 24022:2 24028:1 24032:1 24034:2 24038:2 24071:1 24072:1 24089:1 24119:1 24140:1 24152:2 24181:1 24202:3 24212:1 24230:1 24249:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:4 24364:1 24397:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:3 24644:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24903:2 24923:1 24928:2 24983:1 24990:1 25009:1 25017:1 25023:8 25049:2 25057:1 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:1 25399:3 25415:2 25463:3 25517:1 25530:1 25557:1 25567:1 25581:1 25591:20 25609:1 25614:2 25616:2 25626:1 25634:1 25659:2 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:2 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:3 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:2 26061:1 26062:1 26115:21 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:1 26631:1 26652:1 26653:2 26662:2 26675:1 26685:1 26696:1 26774:2 26778:1 26782:1 26804:2 26808:1 26828:1 26830:1 26854:1 26866:1 26891:1 26942:1 26944:1 26947:1 26976:1 27002:1 27019:3 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:1 27141:2 27144:3 27150:1 27161:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27581:3 27584:1 27585:2 27595:1 27596:1 27603:3 27610:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:2 27714:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27798:1 27799:1 27801:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27952:1 27979:1 27987:1 27988:1 28001:1 28035:1 28050:1 28052:1 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28283:1 28284:2 28285:4 28304:1 28313:1 28317:2 28322:1 28347:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28435:1 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28513:1 28522:1 28547:1 28549:1 28553:2 28556:1 28559:1 28584:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:1 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:1 28780:1 28793:2 28807:2 28819:1 28824:3 28854:3 28861:1 28885:1 28887:8 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:1 29042:3 29052:1 29073:1 29078:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29306:2 29316:1 29319:1 29325:1 29352:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29595:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:2 29756:1 29790:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:5 30096:2 30106:2 30110:1 30121:4 30134:1 30155:3 30167:1 30186:1 30197:4 30198:1 30200:2 30209:1 30210:1 30220:1 30226:1 30232:2 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30281:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30619:1 30624:3 30655:1 30656:1 30675:1 30683:1 30690:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:2 30809:1 30816:1 30817:2 30820:1 30821:2 30828:2 30843:1 30860:1 30861:1 30863:2 30874:1 30882:1 30886:1 30895:1 30919:6 30936:3 30968:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31014:1 31028:1 31029:1 31049:1 31052:1 31085:1 31086:1 31096:1 31116:1 31133:1 31135:1 31204:1 31250:3 31251:2 31262:4 31266:2 31268:3 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:1 31587:13 31594:1 31620:1 31631:5 31682:1 31705:1 31709:2 31723:1 31739:1 31742:1 31747:8 31754:2 31765:1 31768:1 31779:1 31780:1 31794:7 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32056:25 32057:1 32077:1 32079:3 32084:1 32091:3 32092:1 32124:1 32155:3 32159:7 32160:1 32171:1 32183:1 32187:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:1 32403:2 32416:1 32428:1 32485:1 32517:1 32522:2 32533:1 32537:1 32539:1 32556:1 32596:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32693:1 32699:1 32713:1 32717:1 32733:1 32771:2 32774:1 32777:2 32799:1 32804:2 32818:5 32835:2 32837:1 32838:2 32839:2 32849:21 32887:1 32932:1 32935:1 32937:2 32943:2 32944:2 32978:1 32987:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:1 211:1 215:1 233:1 245:1 253:1 265:1 270:1 291:1 308:2 313:3 314:1 316:1 330:1 331:1 335:1 336:1 369:1 376:1 418:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 518:1 529:1 538:2 565:2 569:1 573:1 579:1 618:1 626:1 638:1 684:3 688:1 697:1 701:1 723:3 744:22 752:3 756:1 760:1 774:1 781:1 793:1 798:2 822:1 838:2 842:2 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 965:3 982:1 1014:3 1015:6 1020:1 1034:5 1049:1 1057:3 1065:1 1075:2 1081:3 1084:5 1089:1 1090:1 1094:1 1101:1 1106:2 1109:2 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1193:3 1195:1 1247:2 1248:1 1260:1 1303:1 1305:3 1335:1 1358:1 1361:21 1369:1 1372:2 1373:1 1375:1 1378:3 1381:1 1405:1 1406:2 1408:1 1413:1 1417:1 1421:1 1428:1 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1491:1 1508:1 1510:2 1528:1 1540:1 1543:1 1549:1 1556:2 1557:1 1572:1 1583:1 1599:1 1615:2 1632:2 1646:1 1671:1 1672:1 1674:2 1678:1 1681:6 1704:1 1712:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1803:1 1806:1 1815:1 1848:1 1850:1 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2056:1 2072:1 2074:1 2077:3 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2129:1 2152:1 2160:1 2174:1 2186:1 2206:3 2228:1 2243:1 2245:1 2263:1 2282:1 2310:1 2316:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:6 2443:1 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:1 2573:3 2576:2 2577:1 2579:1 2580:3 2585:3 2587:3 2589:4 2595:3 2598:1 2601:1 2603:1 2607:2 2612:1 2617:1 2618:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:2 2777:1 2779:4 2788:2 2799:1 2802:1 2808:1 2820:3 2836:1 2844:1 2869:1 2879:1 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:1 3077:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:1 3194:1 3196:3 3203:1 3206:1 3223:2 3228:1 3265:2 3282:1 3287:1 3310:1 3313:11 3315:22 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:3 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:2 3455:1 3459:1 3460:1 3489:1 3495:2 3506:1 3542:2 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:2 3781:1 3787:1 3811:1 3818:1 3821:2 3840:2 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:1 4220:1 4224:2 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:2 4362:1 4367:1 4373:1 4376:1 4382:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:21 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:2 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:2 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:3 4890:2 4897:1 4920:1 4927:2 4929:21 4938:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:1 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:2 5315:1 5337:1 5342:3 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:2 5484:1 5485:2 5497:1 5515:1 5518:1 5542:1 5545:1 5562:9 5563:2 5581:1 5585:1 5616:2 5626:2 5637:1 5659:1 5660:1 5697:1 5714:3 5716:1 5719:1 5737:3 5738:4 5739:2 5745:4 5752:1 5753:1 5754:3 5762:1 5770:2 5772:5 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6091:1 6092:1 6106:1 6136:1 6144:2 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6262:1 6263:1 6272:3 6275:1 6334:1 6359:1 6360:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:1 6436:1 6438:1 6442:1 6448:1 6453:1 6454:1 6460:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:2 6660:1 6706:1 6717:1 6764:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:2 6919:1 6925:1 6928:1 6932:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7297:4 7301:1 7302:1 7303:1 7306:1 7307:1 7309:1 7312:2 7313:6 7324:1 7328:1 7349:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:1 7452:1 7461:3 7466:3 7513:1 7528:1 7538:1 7543:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:1 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:1 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8090:1 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8229:1 8258:1 8272:1 8281:1 8286:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8418:1 8435:1 8446:1 8453:1 8462:1 8466:5 8503:5 8505:1 8508:1 8545:1 8547:2 8589:1 8597:1 8600:1 8603:1 8624:3 8625:1 8664:1 8670:1 8685:1 8699:7 8700:9 8708:1 8724:1 8726:5 8759:3 8764:1 8774:28 8780:1 8781:1 8784:2 8788:1 8794:11 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:2 8853:1 8898:3 8909:1 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:2 8990:1 8994:1 9001:1 9019:1 9022:3 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:1 9293:1 9306:1 9318:1 9320:22 9330:1 9337:1 9341:1 9346:1 9350:10 9352:3 9374:1 9376:2 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:26 9473:1 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:1 9679:1 9682:1 9687:1 9692:3 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9946:1 9968:1 9998:2 10000:1 10023:2 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:4 10263:2 10270:1 10272:1 10319:1 10343:3 10354:1 10372:1 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:1 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:5 10778:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11140:1 11155:1 11188:1 11189:1 11210:21 11220:1 11225:1 11238:1 11256:1 11269:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11357:2 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11462:1 11474:2 11478:5 11493:2 11495:1 11497:1 11508:1 11529:3 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11633:5 11650:1 11689:1 11737:1 11747:1 11768:3 11781:1 11796:1 11812:1 11815:1 11822:1 11848:1 11853:1 11871:1 11872:3 11891:1 11922:3 11942:1 11967:1 11983:1 12006:2 12013:1 12025:1 12028:3 12047:1 12067:2 12095:2 12118:1 12121:2 12149:1 12151:4 12158:1 12161:3 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:5 12247:1 12258:1 12262:1 12276:1 12277:1 12317:1 12336:1 12367:1 12402:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:3 12499:1 12506:1 12514:1 12518:1 12520:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12630:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:1 12876:1 12878:2 12883:1 12885:1 12889:1 12893:1 12902:3 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:1 13188:2 13213:1 13216:4 13239:1 13243:1 13246:1 13257:1 13274:1 13277:1 13278:1 13282:1 13289:1 13292:3 13294:1 13297:2 13303:3 13329:1 13334:1 13340:2 13352:1 13358:1 13362:1 13365:4 13370:1 13397:1 13402:1 13414:1 13446:1 13462:1 13467:1 13468:1 13478:4 13484:1 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13857:1 13864:1 13865:1 13866:2 13875:1 13898:1 13916:1 13918:1 13955:1 13975:1 13998:1 14016:2 14019:3 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:22 14437:1 14439:1 14444:1 14447:4 14455:1 14491:4 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14816:1 14822:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:7 14940:1 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:2 15106:2 15116:1 15170:1 15171:1 15181:7 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:1 15296:1 15334:1 15349:3 15354:3 15359:1 15384:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:2 15498:1 15499:1 15501:1 15507:1 15509:6 15510:1 15511:1 15513:1 15536:1 15539:1 15540:1 15545:4 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:8 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:3 15805:1 15812:1 15817:3 15821:1 15832:6 15835:3 15864:1 15908:2 15915:1 15934:4 15986:1 16009:1 16011:2 16025:1 16026:1 16030:1 16066:1 16115:4 16188:1 16191:1 16221:1 16224:1 16235:2 16241:2 16243:3 16259:1 16260:1 16272:1 16275:1 16316:1 16317:1 16331:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16487:1 16505:22 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:3 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16674:1 16684:1 16692:1 16693:1 16718:1 16725:1 16737:1 16739:1 16771:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16962:1 16965:1 16968:7 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:1 17116:1 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17438:1 17456:1 17472:1 17473:2 17475:2 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:2 17722:3 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17815:1 17869:1 17872:1 17882:1 17907:4 17911:1 17921:1 17945:1 17955:1 17956:3 18036:1 18049:1 18065:1 18070:1 18072:8 18077:2 18084:1 18121:2 18124:3 18126:1 18130:1 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:2 18298:1 18314:1 18318:1 18324:1 18326:1 18338:1 18350:4 18351:2 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:2 18626:1 18675:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18827:1 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:29 19061:1 19062:1 19063:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:1 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19978:1 19984:1 20005:2 20027:1 20032:1 20067:3 20079:4 20108:2 20134:1 20138:1 20173:1 20192:4 20197:1 20201:1 20236:3 20267:2 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20401:1 20402:3 20407:1 20416:1 20451:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20605:1 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20770:2 20821:1 20826:2 20846:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20957:1 20967:1 20975:1578 20985:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:4 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21782:1 21793:1 21804:1 21815:1 21824:1 21834:4 21836:3 21877:1 21881:4 21907:2 21942:13 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22027:3 22031:1 22039:2 22051:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:2 22196:1 22208:1 22224:1 22242:1 22246:1 22280:1 22286:1 22289:1 22297:1 22301:1 22316:1 22326:2 22364:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:5 22542:1 22549:1 22563:1 22571:1 22598:1 22606:1 22611:2 22617:3 22619:2 22637:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22689:2 22706:1 22717:2 22726:1 22733:2 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 22995:1 23046:4 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23206:1 23207:1 23219:1 23220:1 23225:1 23245:1 23251:2 23284:1 23291:1 23294:1 23307:1 23318:2 23325:1 23332:2 23337:1 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23502:1 23507:3 23521:2 23530:1 23536:2 23597:1 23614:1 23617:3 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23797:1 23800:1 23816:1 23843:1 23850:1 23862:1 23864:1 23869:3 23882:1 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:2 24011:1 24022:2 24028:1 24032:1 24034:2 24038:2 24071:1 24072:1 24084:1 24089:1 24119:1 24140:1 24152:2 24181:1 24202:3 24212:1 24230:1 24249:1 24250:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:4 24364:1 24397:1 24399:1 24405:3 24410:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:3 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24903:2 24923:1 24928:2 24957:1 24983:1 24990:1 25009:1 25017:1 25023:9 25047:1 25049:2 25057:1 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:1 25399:3 25415:2 25463:3 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:21 25609:1 25614:2 25616:3 25623:1 25626:1 25634:1 25659:2 25665:1 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:2 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:3 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:1 26115:22 26126:1 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:1 26685:1 26696:1 26710:1 26774:2 26778:1 26782:1 26804:2 26808:1 26828:1 26830:1 26854:1 26866:1 26883:1 26891:1 26942:1 26944:1 26947:1 26976:2 27002:1 27019:3 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:2 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:3 27607:1 27610:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27798:1 27799:1 27801:1 27806:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:1 27988:1 28001:1 28035:1 28050:2 28052:2 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28283:1 28284:2 28285:4 28304:1 28313:1 28317:3 28322:1 28347:1 28349:1 28352:1 28399:2 28406:1 28416:1 28417:1 28435:1 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28513:1 28522:1 28547:1 28549:1 28553:2 28556:1 28559:1 28584:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:1 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:1 28780:1 28793:2 28807:2 28819:1 28824:3 28854:3 28861:1 28885:1 28887:9 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:1 29042:3 29052:1 29073:1 29078:1 29101:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29306:2 29316:1 29319:1 29325:1 29352:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:3 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29542:1 29595:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:2 29756:1 29790:1 29793:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30106:2 30110:1 30121:4 30134:1 30155:3 30167:1 30169:1 30186:1 30197:4 30198:1 30200:2 30209:1 30210:1 30220:2 30226:1 30232:2 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30281:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30473:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30619:1 30624:3 30655:1 30656:1 30675:1 30683:1 30690:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:1 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:6 30936:3 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31204:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:3 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:1 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31526:1 31530:1 31565:1 31569:1 31570:2 31587:13 31588:1 31594:1 31620:1 31631:5 31682:1 31705:1 31709:2 31723:1 31739:1 31742:1 31747:8 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:7 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32056:26 32057:1 32077:1 32079:4 32084:1 32091:3 32092:2 32124:1 32155:3 32159:7 32160:1 32171:1 32183:1 32187:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:2 32403:2 32416:1 32428:1 32485:1 32517:1 32522:2 32533:1 32537:2 32539:1 32556:1 32596:1 32599:2 32603:1 32611:1 32615:2 32636:2 32645:1 32658:1 32693:1 32699:1 32713:1 32717:1 32733:1 32770:1 32771:2 32774:1 32777:2 32799:1 32804:2 32818:6 32835:2 32837:1 32838:2 32839:2 32849:22 32887:1 32932:1 32935:1 32937:2 32943:2 32944:2 32978:1 32987:1 32991:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:1 211:1 215:1 233:1 245:1 253:2 265:1 270:1 291:1 308:2 313:3 314:1 316:1 330:1 331:1 335:1 336:1 369:1 376:1 418:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 518:1 529:1 538:2 565:2 569:1 573:1 579:1 610:1 618:1 626:1 638:1 684:3 688:2 697:1 701:1 723:3 744:23 752:3 756:1 760:1 774:1 781:1 793:1 798:2 822:1 838:2 842:2 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 965:3 982:1 1014:3 1015:6 1020:1 1034:5 1049:1 1057:3 1064:1 1065:1 1075:2 1081:3 1084:5 1089:1 1090:1 1094:1 1101:2 1106:2 1109:2 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:3 1195:1 1247:2 1248:1 1260:1 1303:1 1305:3 1335:1 1358:1 1361:22 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:1 1540:1 1543:1 1549:1 1556:2 1557:1 1572:1 1583:1 1599:1 1615:2 1632:2 1646:1 1653:1 1671:1 1672:1 1674:2 1678:1 1681:6 1700:1 1704:1 1706:1 1712:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1798:1 1802:1 1803:1 1806:1 1815:1 1838:1 1848:1 1850:1 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2056:1 2072:1 2074:1 2077:3 2080:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2129:1 2152:1 2160:1 2174:1 2186:1 2206:3 2228:1 2243:2 2245:1 2263:1 2282:1 2310:1 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:6 2443:1 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2576:2 2577:1 2579:1 2580:3 2585:4 2587:3 2589:4 2595:3 2598:1 2601:1 2603:1 2607:4 2612:1 2617:1 2618:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:2 2760:1 2776:2 2777:2 2779:4 2788:3 2799:1 2802:1 2808:1 2820:3 2836:1 2844:1 2869:1 2879:2 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:1 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:2 3194:1 3196:4 3203:1 3206:1 3223:2 3228:1 3265:2 3282:1 3287:2 3310:1 3313:11 3315:23 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:2 3455:1 3459:1 3460:1 3489:1 3495:2 3501:1 3506:1 3542:2 3570:1 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:3 3781:1 3787:1 3811:1 3818:1 3821:2 3840:2 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:1 4220:1 4224:2 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:2 4362:1 4367:1 4373:1 4376:1 4382:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:22 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:2 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:3 4890:2 4897:1 4920:1 4927:2 4929:22 4930:1 4938:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5105:3 5120:1 5122:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:3 5315:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:2 5484:1 5485:3 5497:1 5515:1 5518:1 5542:1 5545:1 5562:11 5563:2 5581:1 5585:1 5616:2 5626:2 5637:1 5659:1 5660:1 5697:1 5714:3 5716:1 5719:1 5737:3 5738:4 5739:2 5745:4 5752:1 5753:1 5754:3 5762:1 5770:2 5772:5 5774:2 5775:1 5783:1 5814:1 5851:1 5857:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6106:1 6107:1 6136:1 6144:2 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6262:1 6263:1 6272:3 6275:1 6334:1 6359:1 6360:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6436:2 6438:1 6442:1 6448:1 6453:1 6454:1 6460:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:3 6660:1 6706:1 6717:1 6764:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:2 6919:1 6925:1 6928:1 6932:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7297:4 7299:1 7301:1 7302:1 7303:1 7306:1 7307:1 7309:1 7312:2 7313:6 7324:1 7328:1 7349:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:1 7452:1 7461:3 7466:3 7513:1 7528:1 7538:1 7543:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:1 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:4 8090:1 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8181:1 8196:1 8224:2 8229:1 8258:1 8272:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8418:1 8435:1 8446:1 8453:1 8462:1 8466:5 8503:6 8505:1 8508:1 8545:1 8547:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:2 8699:8 8700:9 8708:1 8724:1 8726:5 8759:3 8764:1 8774:33 8780:1 8781:1 8784:2 8788:1 8794:11 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:2 8853:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:4 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9293:1 9306:1 9318:1 9320:23 9330:1 9337:1 9341:1 9346:1 9350:10 9352:3 9374:1 9376:2 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:27 9473:1 9475:1 9513:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:1 9679:1 9682:1 9687:1 9691:1 9692:3 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:1 9968:1 9998:3 10000:1 10023:2 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10213:1 10250:1 10254:4 10263:2 10270:1 10272:1 10319:1 10343:4 10354:1 10372:2 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10589:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10737:1 10758:1 10759:1 10769:2 10770:5 10778:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:2 10977:1 10995:1 10996:1 10998:1 11027:1 11053:5 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:22 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11357:3 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11462:1 11474:2 11478:5 11493:2 11495:1 11497:1 11508:1 11529:3 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:5 11650:1 11689:1 11737:2 11747:1 11768:3 11781:1 11796:2 11812:1 11815:1 11822:1 11848:1 11853:1 11871:1 11872:3 11891:1 11922:3 11942:1 11967:1 11983:1 12006:3 12013:1 12025:1 12028:4 12047:1 12067:2 12095:2 12118:1 12121:2 12149:1 12151:4 12158:1 12161:3 12171:1 12180:1 12195:1 12208:1 12212:1 12231:1 12240:5 12247:1 12258:1 12262:1 12276:1 12277:1 12317:1 12336:1 12367:1 12402:1 12403:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12485:3 12499:1 12506:1 12514:1 12518:1 12520:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12630:1 12640:4 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:1 12876:1 12878:2 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:2 13027:1 13036:1 13040:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:4 13239:1 13243:1 13246:1 13257:2 13274:1 13277:1 13278:1 13282:1 13289:1 13292:4 13294:1 13297:2 13303:4 13329:1 13334:1 13340:2 13352:1 13358:1 13362:1 13365:4 13370:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13857:1 13864:1 13865:1 13866:2 13875:1 13898:1 13910:1 13916:1 13918:1 13955:1 13975:1 13998:1 14016:2 14019:3 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:23 14437:1 14439:1 14444:1 14447:4 14455:1 14491:5 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14822:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:7 14940:1 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:3 15106:3 15116:1 15170:1 15171:1 15181:8 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:3 15359:1 15379:1 15384:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:2 15498:1 15499:1 15501:1 15507:1 15509:6 15510:1 15511:1 15513:1 15534:1 15536:1 15537:1 15539:1 15540:1 15545:4 15551:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:9 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:7 15835:3 15864:1 15908:2 15915:1 15934:4 15935:1 15986:1 16009:1 16011:2 16025:1 16026:1 16030:1 16057:1 16066:1 16115:4 16188:1 16191:1 16195:1 16221:1 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:1 16316:1 16317:1 16331:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16487:1 16505:23 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:4 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16771:1 16773:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16962:1 16965:1 16968:7 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:2 17116:3 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17438:1 17456:1 17472:1 17473:2 17475:2 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:2 17712:1 17722:3 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:2 17784:1 17792:1 17805:3 17815:1 17869:1 17872:1 17882:1 17907:4 17911:1 17921:1 17945:1 17955:1 17956:3 17969:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:9 18077:2 18084:1 18121:2 18124:3 18126:1 18130:1 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:3 18298:1 18314:1 18318:1 18324:1 18326:1 18338:1 18350:4 18351:2 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:2 18626:1 18675:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18827:1 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:30 19061:1 19062:1 19063:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19635:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19965:1 19978:1 19984:1 20005:2 20027:2 20032:1 20067:4 20079:4 20108:2 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20401:1 20402:4 20407:1 20416:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20605:1 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20770:2 20821:1 20826:3 20846:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20928:1 20957:1 20967:1 20975:1652 20985:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21174:1 21181:1 21188:1 21201:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:4 21653:3 21656:1 21663:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21774:1 21782:1 21793:1 21804:1 21815:1 21824:1 21834:5 21836:3 21877:1 21881:4 21907:2 21942:13 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:3 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22162:2 22167:1 22194:2 22196:1 22208:1 22224:1 22242:1 22246:1 22280:1 22286:1 22289:1 22297:1 22301:1 22316:1 22326:2 22364:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:5 22542:1 22549:1 22563:1 22571:1 22598:1 22606:1 22611:2 22617:3 22619:2 22637:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22689:2 22706:1 22717:2 22726:1 22733:2 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 22995:1 23046:4 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23206:1 23207:1 23219:1 23220:1 23225:1 23245:1 23251:2 23284:1 23291:1 23294:1 23307:1 23318:2 23325:1 23332:2 23336:1 23337:1 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23502:1 23507:3 23509:1 23521:2 23530:1 23536:3 23597:1 23614:1 23617:3 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23797:1 23800:1 23816:1 23830:1 23843:1 23850:1 23862:1 23864:1 23869:3 23882:1 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23977:1 23978:1 23980:3 24011:1 24022:2 24028:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24140:1 24152:2 24180:1 24181:1 24202:3 24212:1 24230:1 24249:1 24250:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:5 24364:1 24397:1 24399:1 24405:3 24410:1 24413:1 24414:3 24417:1 24427:2 24443:1 24453:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:1 24619:1 24623:1 24625:1 24629:2 24630:1 24631:3 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24891:1 24903:2 24923:1 24928:2 24957:1 24983:1 24990:2 25009:1 25017:1 25023:11 25047:1 25049:2 25057:1 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25184:1 25230:1 25240:7 25256:1 25273:2 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:3 25415:2 25444:1 25463:3 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:22 25609:1 25614:2 25616:3 25623:1 25626:1 25634:1 25659:2 25665:2 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:3 25755:1 25768:2 25778:1 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:1 26115:23 26126:1 26142:2 26143:1 26163:1 26175:1 26177:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:1 26685:1 26696:1 26710:1 26774:2 26778:1 26782:1 26804:2 26808:1 26828:1 26830:1 26854:1 26866:1 26883:1 26891:1 26922:1 26942:1 26944:1 26947:1 26976:2 27002:1 27019:3 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:2 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27479:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:3 27607:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:1 27988:1 28001:1 28035:1 28050:2 28052:2 28053:2 28058:1 28069:2 28111:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28282:1 28283:1 28284:2 28285:4 28304:1 28313:3 28317:3 28322:1 28347:1 28349:1 28352:1 28399:2 28406:2 28416:1 28417:1 28435:1 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28547:3 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:2 28780:1 28793:2 28807:2 28819:1 28824:3 28854:4 28861:1 28885:1 28887:11 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:1 29042:3 29052:1 29073:1 29078:1 29101:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29306:2 29316:1 29319:1 29325:1 29352:1 29353:1 29361:1 29362:3 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:1 29429:1 29430:1 29439:1 29453:1 29474:4 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29532:1 29542:1 29595:1 29607:2 29654:2 29672:1 29676:1 29683:1 29686:1 29689:1 29736:2 29756:1 29790:1 29793:1 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30106:2 30110:1 30121:4 30134:1 30155:3 30167:1 30169:1 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30220:2 30226:1 30232:3 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30281:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30470:1 30473:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:3 30655:1 30656:1 30675:1 30683:1 30690:1 30707:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:1 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:1 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:6 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31204:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:4 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31515:1 31526:1 31530:1 31565:1 31569:1 31570:2 31587:13 31588:1 31594:1 31620:2 31631:5 31682:1 31705:1 31709:2 31723:1 31739:1 31742:1 31747:8 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:9 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32051:1 32056:27 32057:1 32077:1 32079:4 32084:1 32091:4 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:2 32403:2 32416:1 32428:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32556:1 32596:1 32599:2 32603:1 32611:1 32615:2 32636:2 32644:1 32645:1 32658:1 32681:1 32693:1 32699:1 32710:1 32713:1 32717:1 32733:1 32770:1 32771:2 32774:1 32777:2 32799:1 32804:2 32818:6 32835:2 32837:1 32838:2 32839:2 32849:23 32859:1 32887:1 32932:1 32935:1 32937:2 32943:2 32944:4 32978:1 32987:1 32991:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:2 211:1 215:1 233:1 245:1 253:2 265:1 270:1 291:1 308:2 313:3 314:1 316:1 330:1 331:1 335:1 336:1 369:1 376:1 418:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 518:1 529:1 538:2 565:2 569:1 573:1 579:1 610:1 618:1 626:1 638:1 684:3 688:2 697:1 701:1 723:3 744:24 752:3 756:1 760:1 774:1 781:1 793:1 798:2 822:1 838:2 842:2 855:1 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:1 965:3 982:1 1014:3 1015:6 1019:1 1020:1 1034:5 1049:1 1057:3 1064:1 1065:1 1075:2 1081:3 1084:5 1089:1 1090:2 1094:1 1101:2 1106:2 1109:2 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:3 1195:1 1247:2 1248:1 1260:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:23 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:1 1540:1 1543:1 1549:1 1556:2 1557:1 1572:1 1583:1 1599:1 1615:2 1632:2 1646:1 1653:1 1671:1 1672:1 1674:2 1678:1 1681:6 1698:1 1700:1 1704:1 1706:1 1712:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1782:1 1798:1 1802:1 1803:1 1806:1 1815:1 1838:1 1844:1 1848:1 1850:1 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2056:1 2072:1 2074:1 2077:3 2080:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2128:1 2129:1 2152:1 2160:1 2174:1 2186:1 2206:3 2228:1 2243:2 2245:1 2263:1 2282:1 2310:1 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:7 2443:1 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2576:2 2577:1 2579:1 2580:4 2585:4 2587:3 2589:5 2595:3 2598:1 2601:1 2603:1 2607:4 2612:1 2617:1 2618:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2749:1 2750:3 2760:1 2776:2 2777:2 2779:4 2788:3 2799:1 2802:1 2808:1 2820:3 2836:1 2844:1 2869:1 2879:2 2888:1 2931:2 2952:1 2966:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:2 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:2 3194:1 3196:4 3203:1 3206:1 3223:2 3228:1 3265:2 3282:1 3287:2 3310:1 3313:12 3315:24 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:5 3408:2 3411:1 3451:2 3455:1 3459:1 3460:1 3489:1 3495:2 3501:1 3506:1 3542:2 3570:1 3655:1 3680:1 3707:1 3713:1 3731:1 3756:1 3770:1 3774:3 3781:1 3787:1 3811:1 3818:1 3821:2 3840:2 3909:1 3912:1 3931:1 3936:1 3957:1 3965:1 3970:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:1 4220:1 4224:2 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:2 4362:1 4367:1 4373:1 4376:1 4382:2 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:23 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:2 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:23 4930:1 4938:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5072:1 5105:3 5120:1 5122:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:3 5315:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:2 5484:1 5485:3 5497:1 5515:1 5518:1 5542:1 5545:1 5562:11 5563:2 5581:1 5585:1 5616:2 5626:2 5637:1 5659:1 5660:1 5697:1 5714:3 5716:1 5719:1 5737:3 5738:4 5739:2 5745:4 5752:1 5753:2 5754:3 5762:1 5770:2 5772:5 5774:2 5775:1 5783:1 5814:1 5851:1 5857:2 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6106:1 6107:1 6136:1 6144:2 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6262:1 6263:1 6272:3 6275:1 6334:1 6359:1 6360:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6436:2 6438:1 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:3 6660:1 6706:1 6717:1 6764:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6915:2 6919:1 6925:1 6928:1 6932:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7297:4 7299:1 7301:1 7302:1 7303:1 7306:1 7307:1 7309:1 7312:2 7313:6 7324:1 7328:1 7349:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:1 7452:1 7461:3 7466:3 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:5 8090:1 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8161:1 8181:1 8196:1 8224:2 8229:1 8258:1 8272:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8418:1 8435:1 8446:1 8453:1 8462:1 8466:5 8503:6 8505:1 8508:1 8545:1 8547:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:2 8699:8 8700:9 8708:1 8724:1 8725:1 8726:5 8759:3 8764:1 8774:35 8780:1 8781:1 8784:2 8788:1 8794:12 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:2 8853:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:2 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:4 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9293:1 9306:1 9318:1 9320:24 9330:1 9337:1 9341:1 9346:1 9350:10 9352:3 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:28 9473:1 9475:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:2 9679:1 9682:1 9687:1 9691:1 9692:3 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:1 9968:1 9998:3 10000:1 10023:2 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10213:1 10215:1 10250:1 10254:5 10263:2 10270:1 10272:1 10319:1 10343:4 10354:1 10372:2 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10589:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10735:1 10737:1 10758:1 10759:1 10769:2 10770:6 10778:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:2 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:23 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11357:3 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11462:1 11474:2 11478:5 11493:2 11495:1 11497:1 11508:1 11529:3 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:5 11650:1 11689:1 11737:2 11747:1 11768:3 11781:1 11796:2 11812:1 11815:1 11822:1 11839:1 11848:1 11853:1 11871:1 11872:3 11891:1 11922:3 11942:1 11967:1 11983:1 12006:3 12013:1 12025:1 12028:4 12047:1 12067:2 12095:2 12118:1 12121:2 12149:1 12151:4 12158:1 12161:3 12171:1 12180:1 12195:1 12208:1 12212:1 12221:1 12231:1 12240:5 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12317:1 12336:1 12367:1 12402:1 12403:1 12425:1 12442:2 12458:2 12460:3 12464:1 12471:1 12475:1 12485:3 12499:1 12506:1 12514:1 12518:1 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12630:1 12640:5 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:1 12876:1 12878:2 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:2 13004:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:5 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:5 13239:1 13243:1 13246:1 13257:2 13274:1 13277:1 13278:1 13282:1 13289:1 13292:4 13294:1 13297:2 13301:1 13303:4 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:5 13370:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13857:1 13864:1 13865:1 13866:2 13875:1 13898:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:3 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:24 14437:1 14439:1 14444:1 14447:4 14455:1 14491:5 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14718:1 14731:1 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14822:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:7 14940:1 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:3 15106:3 15116:1 15170:1 15171:1 15181:9 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:3 15359:1 15379:1 15384:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:2 15498:1 15499:1 15501:1 15507:1 15509:7 15510:1 15511:1 15513:1 15534:1 15536:1 15537:1 15539:1 15540:1 15545:4 15551:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:9 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:8 15835:3 15864:1 15908:2 15915:1 15934:4 15935:1 15986:1 16009:1 16011:2 16025:1 16026:1 16030:1 16057:1 16066:1 16115:4 16188:1 16191:1 16195:1 16221:1 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:1 16316:1 16317:1 16331:1 16337:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16487:1 16505:24 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:4 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16771:1 16773:1 16774:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:2 17116:3 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17425:1 17438:1 17456:1 17472:1 17473:2 17475:2 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:2 17712:1 17722:3 17736:1 17740:1 17744:1 17755:3 17762:2 17767:1 17779:1 17780:3 17784:1 17792:1 17805:3 17815:1 17869:1 17872:1 17882:1 17907:4 17911:1 17921:1 17933:1 17945:1 17955:1 17956:3 17969:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:10 18077:2 18084:1 18121:2 18124:3 18126:1 18130:1 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:8 18220:1 18232:1 18250:3 18298:1 18314:1 18318:1 18324:1 18326:1 18338:1 18350:4 18351:2 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18577:1 18584:1 18606:1 18618:1 18620:2 18626:1 18675:1 18703:1 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18827:1 18833:1 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19015:1 19025:1 19026:1 19038:1 19054:31 19061:1 19062:1 19063:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19635:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19965:1 19978:1 19984:1 20005:2 20027:2 20032:1 20067:4 20079:4 20108:2 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20318:1 20368:1 20401:1 20402:4 20407:1 20408:1 20416:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20605:1 20607:2 20610:1 20628:1 20640:1 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:3 20846:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:1724 20985:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21174:1 21181:1 21188:1 21201:1 21260:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:4 21653:3 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21774:1 21782:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:3 21877:1 21881:4 21907:2 21926:1 21942:14 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:3 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22162:2 22167:1 22187:1 22194:2 22196:1 22208:1 22224:1 22242:1 22246:1 22280:1 22286:1 22289:1 22297:1 22301:1 22316:1 22326:2 22335:1 22364:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:5 22542:1 22549:1 22563:1 22571:1 22598:1 22606:1 22611:2 22617:3 22619:3 22637:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22689:2 22706:2 22717:2 22726:1 22733:3 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:3 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:1 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:1 23225:1 23245:1 23251:2 23284:1 23291:1 23294:1 23307:1 23318:2 23325:1 23332:2 23336:1 23337:1 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23502:1 23507:3 23509:1 23521:2 23530:1 23536:3 23597:1 23614:1 23617:3 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23797:1 23800:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:3 23882:2 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23955:1 23972:1 23977:1 23978:1 23980:3 24011:1 24022:2 24028:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24140:1 24152:2 24161:1 24180:1 24181:1 24202:3 24212:1 24230:1 24249:1 24250:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:5 24364:1 24397:1 24399:1 24405:3 24410:1 24413:1 24414:3 24417:1 24427:2 24443:1 24453:1 24468:1 24469:6 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:1 24619:1 24623:1 24625:1 24629:4 24630:1 24631:3 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:1 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24891:1 24903:2 24914:1 24923:1 24928:2 24957:1 24983:1 24990:2 25009:1 25017:1 25023:11 25047:1 25049:2 25057:1 25092:8 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25182:2 25184:1 25230:1 25240:7 25256:1 25273:3 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:3 25415:2 25444:1 25463:3 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:23 25609:1 25614:2 25616:3 25623:1 25626:1 25634:1 25659:2 25665:2 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:3 25755:1 25768:2 25778:2 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:1 26115:24 26126:1 26142:2 26143:1 26163:1 26175:1 26177:1 26183:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:1 26685:1 26696:1 26710:1 26774:2 26778:1 26782:1 26804:2 26808:1 26828:1 26830:1 26854:1 26866:1 26876:1 26883:1 26891:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:2 27403:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27479:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:3 27607:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:2 27988:1 28001:1 28035:1 28050:2 28052:2 28053:2 28058:1 28069:2 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28282:1 28283:1 28284:2 28285:5 28304:1 28313:3 28317:3 28322:1 28347:2 28349:1 28352:1 28399:2 28406:2 28416:1 28417:1 28435:1 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28547:3 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:2 28780:1 28793:2 28807:2 28819:2 28824:3 28854:4 28861:1 28878:1 28885:1 28887:11 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29052:1 29073:1 29078:1 29101:1 29107:1 29122:2 29166:1 29183:1 29194:1 29205:1 29211:2 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29306:2 29316:1 29319:1 29325:1 29352:1 29353:1 29361:1 29362:4 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29474:4 29479:1 29496:1 29503:1 29506:1 29512:1 29517:1 29532:1 29542:1 29595:1 29607:2 29654:3 29672:1 29676:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29790:1 29793:2 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29874:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30106:2 30110:1 30121:4 30134:1 30155:3 30167:1 30169:2 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30281:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:3 30421:2 30428:1 30429:1 30430:1 30441:2 30470:1 30473:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:3 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30707:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:2 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:2 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:4 31269:1 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31515:1 31526:1 31530:1 31562:1 31565:1 31569:1 31570:2 31587:13 31588:1 31590:1 31594:1 31620:2 31631:6 31682:1 31705:1 31709:2 31723:1 31739:1 31742:1 31747:8 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:9 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32051:1 32056:28 32057:1 32077:1 32079:4 32084:1 32091:4 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:2 32403:2 32416:1 32428:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32556:1 32596:1 32599:2 32603:1 32611:1 32615:2 32636:2 32644:1 32645:1 32658:1 32681:1 32693:1 32699:1 32710:1 32713:1 32717:1 32733:1 32770:1 32771:2 32774:1 32777:2 32799:1 32804:2 32818:6 32835:2 32837:1 32838:2 32839:2 32849:24 32859:1 32887:1 32911:1 32932:1 32935:1 32937:2 32943:2 32944:4 32978:1 32987:2 32991:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 71:1 76:1 78:1 100:1 114:2 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:1 203:2 211:1 215:1 233:1 245:1 253:2 265:1 270:1 291:2 308:2 313:3 314:1 316:1 330:1 331:1 335:1 336:1 369:1 376:1 418:1 420:3 432:1 440:1 447:1 450:1 466:2 481:1 487:1 506:1 510:1 518:1 529:1 538:2 565:2 569:1 573:1 579:1 610:1 618:1 626:1 638:1 684:3 688:2 697:1 701:1 723:3 744:25 752:3 756:1 760:1 774:1 781:1 793:1 798:2 822:1 838:2 842:2 855:1 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:2 965:3 982:1 1014:3 1015:6 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:5 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:3 1195:1 1247:2 1248:1 1260:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:24 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:2 1540:1 1543:1 1549:1 1556:2 1557:1 1572:1 1583:1 1599:1 1615:2 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:2 1678:1 1681:6 1698:1 1700:1 1704:1 1706:1 1712:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1782:1 1798:1 1802:1 1803:1 1806:1 1815:2 1838:1 1844:1 1848:1 1850:1 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2128:1 2129:1 2152:1 2160:1 2174:1 2186:1 2206:4 2228:1 2243:2 2245:1 2263:1 2282:1 2310:1 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2576:2 2577:1 2579:1 2580:4 2585:6 2587:3 2589:5 2595:3 2598:1 2601:1 2603:1 2607:4 2612:2 2617:1 2618:1 2626:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2708:2 2714:1 2731:1 2732:1 2747:1 2749:2 2750:3 2760:2 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2835:1 2836:1 2844:1 2869:1 2879:2 2880:1 2888:1 2931:2 2952:1 2966:1 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:1 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:2 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:2 3194:1 3196:4 3203:1 3206:2 3223:2 3228:1 3265:2 3282:1 3287:2 3310:1 3313:12 3315:25 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:6 3408:2 3411:1 3427:1 3451:2 3455:1 3459:1 3460:1 3489:1 3495:3 3501:1 3506:1 3542:2 3570:1 3595:1 3655:1 3680:1 3707:1 3713:1 3731:1 3753:1 3756:1 3770:1 3774:3 3781:1 3787:1 3811:1 3818:1 3821:2 3840:2 3909:1 3912:1 3931:1 3936:1 3953:1 3957:1 3965:1 3970:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:1 4220:1 4224:2 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:2 4362:1 4367:1 4373:1 4376:1 4382:2 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:24 4466:2 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:2 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:24 4930:1 4938:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5072:1 5105:3 5120:1 5122:2 5127:1 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:3 5315:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:2 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:1 5562:12 5563:2 5581:1 5585:1 5616:3 5626:2 5637:1 5659:1 5660:1 5697:1 5714:3 5716:1 5719:2 5737:4 5738:4 5739:2 5745:5 5752:1 5753:2 5754:3 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5857:2 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6106:1 6107:1 6136:1 6144:3 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:1 6262:1 6263:1 6272:3 6275:1 6334:1 6359:1 6360:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6436:2 6438:1 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:1 6646:1 6653:3 6660:1 6706:1 6717:1 6764:1 6768:1 6773:1 6784:1 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6907:1 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:1 7306:1 7307:1 7309:1 7312:3 7313:6 7324:1 7328:1 7349:1 7366:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:1 7452:1 7461:3 7466:3 7486:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:5 8090:1 8100:1 8102:1 8113:1 8123:1 8125:2 8138:2 8161:1 8181:1 8196:1 8224:2 8229:1 8258:1 8272:1 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8418:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:6 8505:1 8508:1 8545:1 8547:2 8573:1 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:2 8699:9 8700:9 8708:1 8724:1 8725:1 8726:5 8759:3 8764:2 8769:1 8774:38 8780:1 8781:1 8784:2 8788:1 8794:12 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8842:2 8853:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:25 9330:1 9337:1 9341:1 9346:1 9350:10 9352:3 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:29 9473:1 9475:1 9504:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:2 9679:1 9682:1 9687:1 9691:1 9692:3 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:1 9968:1 9998:3 10000:1 10023:2 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10210:2 10213:1 10215:1 10220:1 10250:1 10254:5 10263:3 10270:1 10272:1 10319:1 10343:4 10354:1 10372:2 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10533:2 10545:4 10552:2 10561:2 10571:1 10575:1 10589:1 10592:1 10603:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10735:1 10737:1 10758:1 10759:1 10769:2 10770:7 10778:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:2 10935:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:24 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11357:3 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11451:1 11462:1 11474:3 11478:5 11493:2 11495:1 11497:1 11508:1 11529:3 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:5 11650:1 11689:1 11737:2 11742:1 11747:1 11768:4 11781:1 11796:2 11812:1 11815:1 11822:1 11839:1 11848:1 11853:1 11871:1 11872:4 11891:1 11922:3 11942:1 11967:1 11983:1 12006:3 12013:1 12025:1 12028:4 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:1 12161:3 12171:1 12180:1 12195:1 12208:1 12212:1 12221:1 12231:1 12240:5 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12317:1 12336:1 12367:1 12402:1 12403:1 12425:1 12442:2 12444:1 12458:2 12460:3 12464:1 12471:1 12475:1 12485:3 12499:1 12506:1 12514:1 12518:1 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12630:1 12640:5 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:2 12875:1 12876:1 12878:2 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:2 13004:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:6 13068:2 13069:1 13089:1 13096:1 13121:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:5 13239:1 13243:1 13246:1 13257:2 13274:1 13277:1 13278:1 13282:1 13289:1 13292:5 13294:1 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:5 13370:1 13371:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:1 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:1 13683:1 13723:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13857:1 13864:1 13865:1 13866:2 13875:1 13898:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:4 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:25 14437:1 14439:1 14444:1 14447:4 14455:1 14491:5 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14822:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:8 14940:1 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:3 15106:3 15116:1 15170:1 15171:1 15181:10 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:3 15359:2 15379:1 15384:1 15387:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:2 15498:2 15499:1 15501:1 15507:1 15509:8 15510:1 15511:1 15513:2 15534:1 15536:1 15537:1 15539:1 15540:1 15545:5 15551:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15741:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:9 15835:4 15864:1 15908:2 15915:1 15934:4 15935:1 15986:1 16009:1 16011:2 16025:1 16026:1 16030:1 16057:2 16066:1 16115:4 16188:1 16191:1 16195:1 16221:1 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:1 16316:1 16317:1 16331:1 16337:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16487:1 16505:25 16511:2 16515:1 16518:1 16524:1 16535:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16771:1 16773:1 16774:1 16823:1 16846:1 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16961:1 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17113:2 17116:3 17125:1 17126:1 17148:1 17179:1 17190:1 17208:2 17252:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17394:1 17425:1 17438:1 17456:1 17472:1 17473:2 17475:2 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17694:2 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:2 17767:1 17779:1 17780:3 17784:1 17792:1 17805:3 17815:1 17869:1 17872:1 17880:2 17882:1 17907:4 17911:1 17921:1 17933:1 17945:1 17955:1 17956:3 17969:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:11 18077:2 18084:1 18121:2 18124:3 18126:1 18130:2 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:9 18220:1 18232:1 18250:3 18298:1 18314:1 18318:1 18324:1 18326:1 18338:1 18350:4 18351:2 18360:3 18361:1 18369:1 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:1 18577:1 18584:1 18606:1 18618:1 18620:2 18626:1 18675:1 18703:2 18716:1 18717:1 18733:2 18746:1 18749:1 18750:1 18752:1 18789:1 18793:1 18795:1 18803:1 18827:1 18833:1 18835:1 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19054:32 19061:1 19062:1 19063:1 19068:1 19086:1 19090:1 19110:3 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19284:1 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19602:1 19607:1 19612:1 19613:1 19625:1 19627:1 19635:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19965:1 19978:1 19984:1 20005:2 20027:2 20032:2 20067:4 20079:4 20108:2 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:1 20298:1 20304:2 20307:1 20318:1 20368:1 20401:1 20402:4 20407:1 20408:1 20416:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20685:1 20724:5 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:1783 20985:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:1 21331:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21522:1 21553:2 21554:2 21568:1 21572:1 21621:1 21624:4 21653:3 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:3 21877:1 21881:4 21907:2 21926:1 21942:14 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22162:2 22167:1 22187:1 22194:2 22196:1 22208:1 22224:1 22242:1 22246:1 22280:1 22286:1 22289:1 22297:1 22301:1 22316:1 22326:4 22335:1 22364:1 22385:1 22409:1 22414:1 22415:1 22417:1 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:5 22542:1 22549:1 22563:1 22571:1 22581:1 22598:1 22606:1 22611:2 22617:3 22619:3 22637:1 22644:2 22645:3 22648:1 22658:1 22659:1 22669:4 22689:2 22706:2 22712:1 22717:2 22726:1 22733:3 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:4 22834:2 22848:1 22854:1 22855:1 22861:1 22902:1 22926:1 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23284:1 23291:1 23294:1 23307:1 23318:2 23319:1 23325:1 23332:2 23336:1 23337:1 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:1 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:1 23502:1 23507:3 23509:2 23521:2 23530:1 23536:3 23597:1 23614:1 23617:4 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:1 23741:1 23749:1 23779:1 23787:1 23797:1 23800:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:3 23882:2 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23955:1 23972:1 23977:1 23978:1 23980:3 24002:1 24011:1 24022:2 24028:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24140:1 24152:3 24161:1 24180:1 24181:1 24202:3 24212:1 24230:1 24249:1 24250:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:5 24364:1 24395:1 24397:1 24399:1 24405:4 24410:1 24413:1 24414:3 24417:1 24427:2 24443:1 24453:1 24468:1 24469:7 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:1 24619:1 24623:1 24625:1 24629:4 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24891:1 24903:3 24914:1 24923:1 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:11 25047:1 25049:2 25057:1 25092:9 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25182:2 25184:1 25230:1 25240:7 25256:1 25273:3 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:4 25415:2 25444:1 25463:3 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:24 25609:1 25614:2 25616:3 25623:1 25626:1 25634:1 25659:2 25665:2 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:3 25755:1 25768:2 25778:2 25792:4 25794:1 25797:1 25823:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:1 26115:25 26126:1 26142:2 26143:1 26163:1 26175:1 26177:1 26183:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26509:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:2 26774:2 26778:1 26782:1 26804:2 26808:1 26828:1 26830:1 26854:1 26863:1 26866:1 26876:1 26883:1 26891:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:3 27403:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27479:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:3 27607:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 28001:1 28035:1 28050:3 28052:2 28053:2 28058:1 28069:2 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:5 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28399:2 28406:2 28416:1 28417:1 28435:1 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:3 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28720:1 28740:1 28758:2 28769:3 28770:2 28780:1 28793:2 28807:2 28819:2 28824:3 28854:4 28861:1 28878:1 28885:1 28887:11 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29052:1 29071:1 29073:1 29078:1 29101:1 29107:1 29122:2 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29211:2 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29306:2 29316:1 29319:1 29325:1 29327:1 29352:1 29353:1 29361:1 29362:4 29364:1 29373:2 29386:2 29388:1 29391:7 29392:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:1 29512:1 29516:1 29517:1 29532:1 29542:1 29595:1 29607:2 29635:1 29654:3 29672:1 29676:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29790:1 29793:2 29813:1 29814:1 29828:2 29835:1 29837:1 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:1 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:1 30357:1 30362:1 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:4 30421:2 30428:1 30429:1 30430:1 30441:2 30470:1 30473:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:5 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30707:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:2 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:2 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:4 31269:1 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31515:1 31526:1 31530:1 31547:1 31562:1 31565:1 31569:1 31570:2 31587:13 31588:1 31590:1 31594:1 31620:2 31631:6 31655:1 31682:1 31705:1 31709:2 31723:1 31739:1 31742:1 31743:1 31747:8 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:10 31803:1 31847:1 31854:1 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32051:1 32056:29 32057:1 32077:1 32079:4 32084:1 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:3 32403:2 32416:1 32428:1 32479:2 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32556:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32644:1 32645:1 32658:1 32681:1 32693:1 32699:1 32710:1 32713:1 32717:1 32733:1 32756:1 32770:1 32771:2 32774:1 32777:3 32799:1 32804:2 32818:6 32835:3 32837:1 32838:2 32839:2 32849:25 32859:1 32887:1 32911:1 32932:1 32935:1 32937:2 32943:2 32944:4 32976:1 32978:1 32987:2 32991:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 71:1 76:1 78:1 100:1 114:3 117:2 118:1 130:1 146:1 168:2 177:1 190:1 196:2 203:2 211:1 215:1 233:1 245:1 253:2 265:1 270:1 291:2 308:2 313:3 314:1 316:1 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:3 432:1 440:1 444:1 447:1 450:1 466:2 481:2 487:1 501:1 506:1 510:1 518:1 527:1 529:1 538:2 565:2 569:1 573:1 579:1 603:1 610:1 618:1 626:1 638:1 684:3 688:2 697:1 701:1 723:4 744:26 752:3 756:1 760:1 774:1 781:1 793:1 798:2 822:1 832:1 838:2 842:2 855:1 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:2 965:3 982:2 1014:3 1015:6 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:6 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:3 1195:1 1247:2 1248:1 1260:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:25 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:2 1540:1 1543:1 1549:1 1556:2 1557:3 1572:1 1583:1 1599:1 1615:2 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:2 1678:1 1681:6 1698:1 1700:1 1704:1 1706:1 1712:1 1714:1 1716:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:2 1781:1 1782:1 1798:1 1802:1 1803:1 1806:1 1815:2 1838:1 1844:1 1848:1 1850:3 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2174:1 2186:1 2206:4 2228:1 2236:1 2243:2 2245:1 2263:1 2273:1 2282:1 2310:2 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:1 2576:2 2577:1 2579:1 2580:5 2585:6 2587:3 2589:5 2595:3 2598:1 2601:1 2603:1 2607:4 2612:2 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2747:1 2749:2 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2931:2 2952:1 2966:1 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:1 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:2 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:2 3194:1 3196:5 3203:1 3206:2 3223:2 3228:1 3265:2 3282:1 3287:2 3310:1 3313:12 3315:26 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:6 3408:2 3411:1 3427:1 3451:2 3455:1 3459:1 3460:1 3489:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3680:1 3707:1 3713:1 3731:1 3753:1 3756:1 3770:1 3774:3 3775:1 3781:1 3787:1 3811:1 3818:1 3821:2 3840:2 3909:1 3912:1 3931:1 3936:1 3953:1 3957:1 3965:1 3970:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:1 4292:2 4293:1 4330:1 4336:1 4342:1 4349:3 4362:1 4367:1 4373:1 4376:2 4382:2 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:25 4466:2 4473:1 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:2 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:2 4803:3 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:25 4930:1 4938:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5105:3 5120:1 5122:2 5127:1 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:1 5303:5 5315:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:2 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:1 5562:12 5563:2 5581:2 5585:1 5616:3 5626:2 5637:1 5659:2 5660:1 5697:1 5714:3 5716:1 5719:2 5737:4 5738:4 5739:2 5745:5 5752:1 5753:2 5754:3 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5857:2 5872:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6106:1 6107:1 6136:1 6144:3 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:1 6262:1 6263:1 6272:3 6275:1 6334:1 6359:1 6360:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6436:2 6438:3 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:1 6623:2 6646:1 6653:3 6660:1 6706:1 6717:1 6764:1 6768:1 6773:1 6784:2 6786:1 6807:1 6812:1 6843:1 6870:1 6875:1 6878:1 6901:1 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7044:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:1 7064:2 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:1 7306:2 7307:1 7309:1 7312:3 7313:6 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:1 7452:1 7461:3 7466:3 7486:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8138:2 8161:1 8181:1 8196:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8418:1 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:6 8505:1 8508:1 8545:1 8547:2 8573:1 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:2 8699:10 8700:9 8708:1 8724:1 8725:1 8726:5 8759:3 8764:2 8769:1 8774:40 8780:1 8781:1 8784:2 8788:1 8794:12 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8836:1 8842:2 8853:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:26 9330:1 9337:1 9341:1 9346:1 9350:11 9352:3 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9403:2 9419:1 9430:1 9438:1 9456:30 9473:1 9475:1 9504:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:2 9679:1 9682:1 9687:1 9691:1 9692:4 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:1 9968:1 9998:3 10000:1 10002:1 10023:2 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:1 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10210:2 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10319:1 10343:4 10354:1 10372:2 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10531:1 10533:2 10545:4 10552:2 10561:2 10571:1 10575:1 10589:1 10592:1 10603:1 10616:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10735:1 10737:1 10758:1 10759:3 10769:2 10770:7 10778:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:2 10935:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:25 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11329:1 11357:3 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11451:1 11456:2 11462:1 11474:4 11478:5 11493:2 11495:1 11497:1 11508:1 11529:4 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:6 11650:1 11689:1 11737:2 11742:1 11747:1 11768:4 11781:1 11796:2 11812:1 11815:1 11822:1 11839:1 11848:1 11853:1 11871:1 11872:4 11891:1 11922:3 11942:1 11967:1 11983:1 12006:3 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:1 12161:4 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12231:1 12240:6 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12317:1 12336:1 12367:1 12402:3 12403:1 12425:1 12442:2 12444:1 12458:2 12460:3 12464:1 12471:1 12475:1 12485:3 12499:1 12506:1 12514:1 12518:1 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:1 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:2 12875:1 12876:1 12878:2 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:3 13004:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:6 13068:2 13069:2 13089:1 13096:1 13121:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:6 13239:1 13243:1 13246:1 13257:2 13274:1 13277:1 13278:1 13282:1 13289:1 13292:5 13294:1 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:5 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:1 13683:1 13698:1 13723:1 13740:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13839:1 13857:1 13864:1 13865:1 13866:2 13875:1 13898:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:4 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:26 14437:1 14439:1 14444:1 14447:4 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14660:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:11 14940:2 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:3 15106:5 15116:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:3 15359:2 15379:1 15384:1 15387:1 15388:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15492:1 15496:2 15498:2 15499:1 15501:1 15507:1 15509:8 15510:1 15511:1 15513:2 15534:1 15536:1 15537:1 15539:1 15540:1 15545:5 15551:1 15557:2 15584:1 15591:1 15592:1 15595:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:9 15835:4 15864:1 15908:2 15915:1 15934:4 15935:1 15958:1 15986:1 16009:1 16011:2 16025:1 16026:1 16030:1 16057:2 16066:1 16115:4 16158:1 16188:1 16191:1 16195:1 16221:1 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:1 16281:2 16290:1 16316:1 16317:1 16331:1 16337:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16479:1 16487:1 16505:26 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:1 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17148:1 17179:1 17183:1 17190:1 17208:2 17252:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17394:1 17425:1 17438:1 17456:1 17472:1 17473:2 17475:3 17502:1 17515:1 17543:4 17546:1 17552:2 17574:1 17596:1 17622:1 17667:1 17679:1 17688:1 17694:2 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:3 17784:1 17792:1 17805:3 17815:1 17869:1 17872:1 17880:3 17882:1 17907:4 17911:1 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18084:1 18121:2 18124:3 18126:1 18130:2 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:9 18220:1 18232:1 18250:3 18298:1 18314:1 18316:1 18318:1 18324:1 18326:1 18338:1 18350:4 18351:2 18360:3 18361:1 18369:2 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:1 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18703:2 18716:1 18717:1 18733:2 18746:1 18749:3 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:1 18827:1 18833:1 18835:2 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19054:33 19061:1 19062:1 19063:1 19068:1 19086:1 19090:1 19108:1 19110:3 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:1 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19583:1 19602:1 19607:1 19612:1 19613:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19772:2 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19978:1 19984:1 20005:2 20027:2 20032:2 20067:4 20079:4 20108:2 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20407:1 20408:1 20416:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20685:1 20724:6 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20871:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:1889 20985:1 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:1 21291:1 21331:1 21346:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21553:3 21554:2 21568:1 21572:1 21621:1 21624:4 21653:4 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:3 21877:1 21881:4 21907:2 21926:1 21942:16 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22162:3 22167:1 22187:1 22194:2 22196:1 22208:1 22224:1 22242:2 22246:1 22280:1 22286:1 22289:1 22297:1 22299:1 22301:1 22316:1 22326:4 22335:1 22364:1 22385:1 22409:1 22414:1 22415:1 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:6 22542:1 22545:1 22549:1 22563:1 22571:1 22581:1 22598:1 22606:1 22611:2 22617:3 22619:4 22622:1 22637:1 22644:2 22645:3 22646:1 22648:1 22658:1 22659:1 22669:4 22689:2 22706:2 22712:1 22717:2 22726:1 22733:3 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:4 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22902:1 22926:1 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:1 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23332:2 23336:1 23337:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:2 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:3 23597:1 23614:1 23617:4 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:2 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:2 23741:1 23749:1 23779:1 23787:1 23797:1 23800:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:3 23882:2 23906:3 23929:1 23940:2 23943:1 23951:1 23952:1 23955:1 23972:1 23977:1 23978:1 23980:3 24002:1 24011:1 24022:2 24028:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24130:1 24140:1 24152:3 24158:1 24161:1 24180:1 24181:1 24202:3 24212:1 24230:1 24238:1 24249:1 24250:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:5 24364:1 24395:1 24397:1 24399:1 24405:4 24409:1 24410:1 24413:1 24414:3 24417:1 24427:2 24443:1 24453:1 24468:1 24469:7 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:2 24619:1 24623:1 24625:1 24629:4 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24891:1 24903:3 24914:1 24923:1 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:11 25047:1 25049:2 25057:1 25092:9 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25182:2 25184:1 25230:1 25240:7 25256:1 25273:3 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:5 25415:2 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:25 25609:1 25614:2 25616:3 25623:1 25626:1 25634:1 25659:2 25665:3 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25822:1 25823:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:1 26115:26 26126:1 26142:3 26143:1 26163:1 26175:1 26177:1 26183:1 26195:1 26199:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26509:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26774:2 26778:1 26782:1 26804:3 26808:1 26828:2 26830:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:2 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:4 27403:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27479:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:4 27607:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28399:2 28406:2 28416:1 28417:1 28435:2 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28720:1 28740:2 28758:2 28769:3 28770:2 28780:1 28793:4 28807:2 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:11 28899:2 28911:1 28918:1 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29052:1 29071:1 29073:1 29078:1 29101:1 29107:1 29122:2 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29211:2 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29325:1 29327:1 29352:1 29353:1 29361:1 29362:4 29364:1 29373:2 29386:2 29388:1 29391:8 29392:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29542:1 29595:1 29607:2 29635:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29790:1 29793:2 29813:1 29814:2 29828:2 29835:1 29837:1 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:1 30357:1 30362:2 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:4 30421:2 30428:1 30429:1 30430:1 30441:2 30470:1 30473:2 30499:1 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:5 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:2 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:2 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31006:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:5 31269:1 31271:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31515:1 31526:1 31530:1 31547:1 31562:1 31565:1 31569:1 31570:2 31587:13 31588:1 31590:1 31594:1 31612:1 31620:2 31631:6 31655:1 31682:1 31705:1 31709:3 31723:1 31739:1 31742:1 31743:1 31747:8 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:11 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 32017:1 32035:1 32051:1 32056:30 32057:1 32077:1 32079:4 32084:1 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:1 32316:2 32334:1 32338:1 32350:1 32365:1 32383:4 32403:2 32416:1 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32644:1 32645:1 32658:1 32681:1 32693:1 32699:1 32710:1 32713:1 32717:1 32733:1 32756:1 32770:1 32771:3 32774:2 32777:3 32799:1 32804:2 32818:6 32835:3 32837:1 32838:2 32839:2 32845:1 32849:26 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32943:2 32944:4 32976:1 32978:1 32987:2 32991:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 58:1 71:1 75:1 76:1 78:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 190:1 196:2 203:2 211:1 215:1 225:1 233:1 245:1 253:2 265:1 269:1 270:1 291:2 308:2 313:4 314:1 316:1 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:3 431:1 432:1 440:1 444:1 447:1 450:1 466:2 481:2 487:1 501:1 506:2 510:1 518:1 527:1 529:1 538:2 565:2 569:1 573:1 579:1 603:1 610:1 618:1 625:1 626:1 638:1 684:3 688:2 697:1 701:1 723:6 744:27 752:3 756:1 759:1 760:1 774:1 781:1 793:1 798:2 822:1 832:1 838:2 842:2 855:1 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:2 942:1 965:3 982:2 1003:1 1014:3 1015:6 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:6 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:3 1195:1 1247:2 1248:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:26 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:3 1540:1 1543:1 1549:1 1556:2 1557:4 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:3 1678:1 1681:7 1688:1 1698:1 1700:1 1704:1 1706:1 1712:1 1714:1 1716:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:3 1781:1 1782:1 1798:1 1802:1 1803:1 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:4 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:5 2228:1 2236:1 2240:1 2243:2 2245:1 2263:1 2273:1 2282:1 2310:2 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:1 2576:2 2577:1 2579:1 2580:5 2585:6 2587:3 2589:5 2595:3 2598:1 2601:1 2603:1 2607:4 2612:2 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2653:1 2667:1 2668:2 2669:1 2681:3 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2747:1 2749:3 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2931:2 2952:1 2966:1 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:1 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:2 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:2 3194:1 3196:5 3203:1 3206:2 3223:2 3228:1 3265:2 3271:1 3282:1 3287:2 3310:1 3313:12 3315:27 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:6 3408:2 3411:1 3427:1 3451:2 3455:1 3459:1 3460:1 3489:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:2 3680:1 3707:1 3713:1 3731:1 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:2 3811:1 3818:1 3820:1 3821:2 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3953:1 3957:1 3965:1 3970:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:1 4292:2 4293:1 4328:1 4330:1 4336:1 4342:1 4349:3 4362:1 4367:1 4373:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:26 4466:2 4473:1 4490:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:3 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:3 4803:3 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:26 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5105:3 5120:1 5122:2 5127:1 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:1 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:2 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:1 5562:13 5563:2 5581:2 5585:1 5616:4 5626:2 5637:1 5659:2 5660:1 5697:1 5714:3 5716:1 5719:2 5737:4 5738:4 5739:2 5745:5 5752:1 5753:2 5754:3 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5857:2 5872:1 5911:1 5934:1 5957:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6106:1 6107:1 6136:1 6143:1 6144:3 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:1 6262:1 6263:1 6272:3 6275:1 6334:1 6357:1 6359:1 6360:1 6370:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6436:2 6438:4 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6706:1 6717:1 6727:1 6740:1 6764:1 6768:1 6773:1 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:1 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7044:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7063:2 7064:2 7065:1 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:1 7306:2 7307:2 7309:1 7310:1 7312:3 7313:6 7314:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:1 7452:1 7461:3 7466:3 7486:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7864:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8138:2 8161:1 8181:1 8195:1 8196:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:1 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:6 8505:1 8508:1 8545:1 8547:2 8573:1 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:2 8699:10 8700:9 8708:1 8724:1 8725:1 8726:5 8755:1 8759:3 8764:3 8769:1 8774:40 8780:1 8781:1 8784:2 8788:1 8794:12 8798:3 8800:1 8805:1 8808:1 8831:1 8832:1 8836:1 8842:2 8853:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:27 9330:1 9337:1 9341:1 9346:1 9350:12 9352:3 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:33 9473:1 9475:1 9504:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:2 9679:1 9682:1 9687:1 9691:1 9692:4 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:2 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10210:2 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10319:1 10343:4 10354:1 10372:3 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10531:1 10533:3 10545:6 10552:2 10561:2 10571:1 10575:1 10589:1 10592:1 10603:1 10616:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:4 10769:2 10770:8 10778:1 10787:1 10793:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:2 10935:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:26 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11329:1 11357:3 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11451:1 11456:2 11462:1 11474:4 11478:5 11493:2 11495:1 11497:1 11508:1 11529:4 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:6 11650:1 11689:1 11737:2 11742:1 11747:1 11768:4 11781:1 11796:2 11812:1 11815:1 11822:1 11839:1 11848:1 11853:1 11871:1 11872:5 11891:1 11922:3 11942:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:1 12161:4 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12231:1 12240:6 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12317:1 12336:1 12367:1 12402:4 12403:1 12425:1 12442:2 12444:1 12458:2 12460:3 12464:2 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:1 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12649:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:2 12875:1 12876:1 12878:2 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:4 13004:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:6 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:6 13239:1 13243:1 13246:1 13257:3 13274:1 13277:1 13278:1 13282:1 13289:1 13292:5 13294:1 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:5 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:2 13874:1 13875:1 13898:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:4 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:27 14437:1 14439:1 14444:1 14447:4 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:2 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:3 15106:5 15116:1 15141:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:2 15499:1 15501:1 15507:1 15509:9 15510:1 15511:1 15513:2 15534:1 15536:1 15537:1 15539:1 15540:1 15545:5 15551:1 15557:2 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:1 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:10 15835:5 15864:1 15908:2 15915:1 15934:4 15935:1 15958:1 15986:1 16009:1 16011:2 16025:1 16026:2 16030:1 16057:2 16066:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16221:1 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:1 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16479:1 16487:1 16505:27 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17054:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17179:1 17183:1 17190:1 17208:2 17252:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:1 17374:1 17375:1 17394:1 17425:1 17438:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:4 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17679:1 17688:1 17694:2 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:3 17882:1 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18084:1 18121:2 18124:3 18126:1 18130:2 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:9 18220:1 18232:1 18250:3 18298:1 18314:1 18316:1 18318:1 18324:1 18326:1 18338:2 18350:4 18351:2 18360:3 18361:1 18369:3 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:1 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:4 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:1 18827:1 18833:1 18835:2 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19054:36 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:3 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:1 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19583:1 19602:1 19607:1 19612:1 19613:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19978:1 19984:1 20005:2 20027:2 20032:2 20067:4 20079:4 20108:2 20109:1 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20407:2 20408:1 20416:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:3 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20685:1 20724:6 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20855:1 20871:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:1968 20985:1 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:1 21269:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21552:1 21553:3 21554:2 21568:1 21572:1 21621:1 21624:4 21653:4 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:3 21877:1 21881:4 21907:2 21913:1 21926:1 21942:18 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22224:1 22242:2 22246:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22364:1 22385:1 22409:1 22414:1 22415:2 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:6 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:1 22598:1 22606:1 22611:2 22617:3 22619:4 22622:1 22637:1 22644:2 22645:4 22646:1 22648:1 22658:1 22659:1 22669:4 22689:2 22706:2 22712:1 22717:2 22726:1 22733:3 22742:1 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:4 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22902:1 22926:1 22953:1 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:1 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23332:2 23336:1 23337:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:1 23443:2 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23597:1 23614:1 23617:4 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:2 23741:1 23749:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:4 23882:2 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23972:1 23977:1 23978:1 23980:3 23985:1 24002:1 24011:1 24022:2 24028:1 24030:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24130:1 24140:2 24152:3 24158:1 24161:1 24164:1 24180:1 24181:1 24200:1 24202:3 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24284:1 24287:1 24301:1 24322:1 24333:5 24364:1 24395:1 24397:1 24399:1 24405:5 24409:1 24410:1 24413:1 24414:3 24417:1 24427:2 24443:1 24445:1 24453:1 24468:1 24469:7 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:1 24612:2 24619:1 24623:1 24625:1 24629:4 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24891:1 24903:3 24914:1 24923:1 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:11 25047:1 25049:2 25057:1 25092:9 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25182:2 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:6 25415:2 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:26 25609:1 25614:2 25616:3 25623:1 25624:1 25626:1 25634:1 25659:2 25665:3 25666:1 25669:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25822:1 25823:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:1 26115:27 26126:1 26142:3 26143:1 26163:1 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26509:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26774:2 26778:1 26782:1 26804:3 26808:1 26828:2 26830:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:3 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:7 27247:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27479:1 27482:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28435:2 28442:1 28451:2 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:2 28769:3 28770:2 28780:1 28786:1 28793:4 28807:2 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:11 28899:2 28911:1 28918:2 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29052:1 29071:1 29073:1 29078:1 29101:1 29107:1 29122:2 29161:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29211:2 29221:1 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29325:1 29327:1 29352:1 29353:1 29361:1 29362:4 29364:1 29373:2 29386:2 29388:1 29391:8 29392:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29542:1 29595:1 29607:2 29635:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:1 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:4 30421:2 30428:2 30429:1 30430:1 30441:2 30470:1 30473:2 30499:1 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:6 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30767:1 30771:2 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:2 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31006:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:6 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31384:1 31405:2 31427:2 31449:1 31476:1 31485:1 31493:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:1 31562:1 31565:1 31569:1 31570:2 31587:13 31588:1 31590:1 31594:1 31612:1 31620:2 31631:6 31655:1 31682:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:1 31747:8 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:11 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32017:1 32035:1 32051:1 32056:33 32057:1 32077:1 32079:4 32082:1 32084:1 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:1 32338:1 32350:1 32365:1 32383:4 32403:2 32416:1 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32644:1 32645:1 32658:1 32681:1 32693:1 32699:1 32710:1 32713:1 32717:1 32733:1 32756:1 32770:1 32771:3 32772:1 32774:2 32777:3 32799:1 32804:2 32818:6 32835:3 32837:1 32838:2 32839:2 32845:1 32849:27 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32943:2 32944:4 32975:1 32976:1 32978:1 32987:2 32991:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 58:1 71:1 75:1 76:1 78:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 190:1 196:2 203:2 211:1 215:1 225:1 233:1 245:1 253:2 265:1 269:1 270:1 291:2 308:2 313:4 314:1 316:1 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:3 431:1 432:1 440:1 444:1 447:1 450:1 466:2 481:2 487:1 501:1 506:2 510:1 518:1 527:1 529:1 538:2 565:2 569:1 573:1 579:1 603:1 610:1 618:1 625:1 626:1 638:1 684:3 688:2 694:1 697:1 701:1 723:6 744:28 752:3 756:1 759:1 760:1 774:1 781:1 793:1 798:3 822:1 832:1 838:2 842:2 855:1 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:2 942:1 965:3 975:1 982:2 1003:1 1014:3 1015:6 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:6 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:3 1195:1 1247:2 1248:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:27 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:3 1540:1 1543:1 1546:1 1549:1 1556:2 1557:5 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:3 1678:1 1681:8 1688:1 1698:1 1700:1 1704:1 1706:1 1712:1 1714:1 1716:1 1740:2 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:3 1781:1 1782:1 1798:1 1802:1 1803:1 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:5 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:1 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:5 2228:1 2236:1 2240:1 2243:2 2245:1 2263:1 2273:1 2282:1 2310:2 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:1 2576:2 2577:2 2579:1 2580:5 2585:6 2587:3 2589:5 2595:3 2598:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2667:1 2668:2 2669:1 2681:3 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:3 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2931:2 2952:1 2966:1 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:2 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:2 3194:1 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3265:2 3271:1 3282:1 3287:2 3310:1 3313:13 3315:28 3316:1 3318:2 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:7 3408:2 3411:1 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:2 3680:1 3707:1 3713:1 3731:1 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3811:1 3818:1 3820:1 3821:2 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3953:1 3957:1 3965:1 3970:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4101:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:1 4292:2 4293:1 4322:1 4328:1 4330:1 4336:1 4342:1 4349:3 4362:1 4367:1 4373:2 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:27 4466:2 4473:1 4490:1 4497:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:3 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:1 4736:1 4737:1 4742:1 4748:1 4772:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:27 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:1 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:1 5562:13 5563:2 5581:2 5585:1 5616:4 5626:2 5637:1 5659:2 5660:1 5697:1 5714:3 5716:1 5719:2 5737:4 5738:4 5739:2 5745:5 5752:1 5753:2 5754:3 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5857:2 5872:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:1 6262:1 6263:1 6272:3 6275:1 6334:1 6357:1 6359:1 6360:1 6370:1 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6436:2 6438:5 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:1 6483:1 6497:1 6504:1 6531:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6706:1 6717:1 6727:1 6740:1 6764:1 6768:1 6773:1 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:1 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7044:1 7046:1 7047:1 7050:1 7052:1 7053:3 7059:1 7061:1 7063:2 7064:2 7065:1 7069:1 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7192:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:2 7307:2 7309:1 7310:1 7312:3 7313:6 7314:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7864:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:1 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:6 8505:1 8508:1 8545:1 8547:2 8573:1 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:2 8699:10 8700:10 8708:1 8724:1 8725:1 8726:5 8755:1 8759:3 8764:3 8769:1 8774:42 8780:1 8781:1 8784:2 8788:1 8794:13 8798:4 8800:1 8805:1 8808:1 8831:1 8832:1 8836:1 8842:2 8853:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:28 9330:1 9337:1 9341:1 9346:1 9350:12 9352:3 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:34 9473:1 9475:1 9504:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:2 9679:1 9682:1 9687:1 9691:1 9692:4 9693:1 9709:1 9714:1 9720:1 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:1 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10094:1 10114:1 10117:3 10130:1 10133:1 10134:1 10136:2 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10210:2 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10319:1 10343:4 10354:1 10372:3 10413:3 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10505:1 10513:1 10527:1 10531:1 10533:3 10545:6 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10616:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:1 10714:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:5 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10926:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:27 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11329:1 11357:3 11358:1 11361:1 11364:2 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:1 11435:1 11441:1 11442:2 11451:1 11456:2 11462:1 11474:4 11478:5 11493:2 11495:1 11497:1 11508:1 11529:4 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:6 11650:1 11689:1 11737:2 11742:1 11747:1 11768:4 11781:1 11796:2 11812:1 11815:1 11822:1 11839:1 11848:1 11853:1 11871:1 11872:5 11891:1 11922:3 11942:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:2 12161:5 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12231:1 12236:1 12240:6 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12317:1 12336:1 12367:1 12402:5 12403:1 12424:1 12425:1 12442:2 12444:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:1 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:3 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12649:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12858:1 12864:2 12866:1 12875:1 12876:1 12878:3 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:2 12978:4 13004:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:7 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:6 13239:1 13243:1 13246:1 13257:3 13274:1 13277:1 13278:1 13282:1 13289:1 13292:5 13294:1 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:5 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:2 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:3 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:2 13874:1 13875:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:2 14433:28 14437:1 14439:1 14444:1 14447:4 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:2 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:4 15106:5 15116:1 15141:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:2 15499:1 15501:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:1 15537:1 15539:1 15540:1 15545:5 15551:1 15557:2 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:11 15835:5 15864:1 15908:2 15915:2 15934:4 15935:1 15958:1 15986:1 16009:1 16011:2 16025:1 16026:2 16030:1 16057:2 16066:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16221:2 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:1 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:1 16352:1 16354:1 16355:1 16373:1 16375:2 16386:1 16391:1 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16479:1 16487:1 16505:28 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17054:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17179:1 17183:1 17190:1 17208:2 17252:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:4 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17679:1 17688:1 17694:2 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:4 17882:1 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:2 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18084:1 18121:3 18124:3 18126:1 18130:2 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:9 18220:1 18232:1 18250:3 18298:1 18314:1 18316:1 18318:1 18324:1 18326:1 18338:2 18350:4 18351:2 18360:3 18361:1 18369:3 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:1 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:5 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:1 18827:1 18833:1 18834:1 18835:2 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19054:37 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:3 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:2 19249:2 19261:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:1 19433:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19583:1 19602:1 19607:1 19612:1 19613:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19978:1 19984:1 20005:2 20027:2 20032:2 20067:4 20079:4 20108:2 20109:1 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:1 20407:2 20408:1 20416:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:4 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20685:1 20724:6 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20855:1 20871:1 20873:1 20883:1 20890:1 20895:1 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2023 20985:1 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:2 21117:1 21152:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21552:1 21553:3 21554:2 21568:1 21572:1 21621:1 21624:4 21653:4 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:3 21877:1 21881:4 21907:2 21913:1 21926:1 21942:19 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22224:1 22242:2 22246:1 22267:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22385:1 22409:1 22414:1 22415:2 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:6 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:1 22598:1 22606:1 22611:2 22617:3 22619:5 22622:1 22637:1 22644:2 22645:4 22646:1 22648:1 22658:1 22659:1 22669:4 22689:2 22706:2 22712:1 22717:2 22726:1 22733:3 22742:1 22743:1 22757:2 22769:1 22774:1 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22902:1 22926:1 22953:2 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:1 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23332:2 23336:1 23337:2 23351:1 23355:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23583:1 23597:1 23614:1 23617:4 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:4 23882:2 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23972:1 23977:1 23978:1 23980:3 23985:1 24002:1 24011:1 24022:2 24028:1 24030:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24130:1 24140:2 24152:3 24158:1 24161:1 24164:1 24180:1 24181:1 24200:1 24202:3 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24333:5 24364:1 24395:1 24397:1 24399:1 24405:5 24409:1 24410:1 24413:1 24414:3 24417:1 24427:2 24443:1 24445:1 24453:1 24468:1 24469:8 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:4 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24891:1 24903:3 24914:1 24923:1 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:12 25047:1 25049:2 25057:1 25092:9 25094:2 25100:1 25103:1 25152:1 25154:4 25155:2 25159:1 25182:2 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:6 25415:2 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25557:1 25567:1 25581:1 25591:27 25609:1 25614:2 25616:3 25623:1 25624:1 25626:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:2 26053:1 26056:3 26061:1 26062:2 26093:1 26115:28 26126:1 26142:3 26143:1 26163:1 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26454:1 26484:1 26507:1 26509:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26774:2 26778:1 26782:1 26804:3 26808:1 26828:2 26830:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27117:1 27119:1 27121:3 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:8 27247:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27451:1 27458:1 27468:1 27471:1 27475:2 27479:1 27482:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28435:2 28442:1 28451:2 28454:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:2 28769:3 28770:2 28780:1 28786:1 28793:4 28807:2 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:12 28899:2 28911:1 28918:2 28936:1 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29052:1 29071:1 29073:1 29078:1 29101:1 29107:1 29122:2 29161:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29211:2 29221:1 29223:1 29236:1 29240:1 29247:1 29259:1 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29325:1 29327:1 29352:1 29353:1 29361:1 29362:4 29364:1 29373:2 29386:2 29388:1 29391:8 29392:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29542:1 29595:1 29607:2 29635:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:1 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:4 30421:2 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:1 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:7 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:1 30767:1 30770:1 30771:2 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:1 30860:2 30861:1 30863:2 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:2 30988:1 30991:1 30998:1 30999:1 31004:1 31006:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:1 31262:4 31266:2 31268:6 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31449:1 31472:1 31476:1 31485:1 31493:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:1 31562:1 31565:1 31569:1 31570:2 31587:13 31588:1 31590:1 31594:1 31612:1 31620:2 31631:6 31655:1 31682:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:1 31747:9 31754:2 31761:1 31765:1 31768:1 31779:1 31780:1 31794:11 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32035:1 32051:1 32056:34 32057:1 32077:1 32079:4 32082:1 32084:1 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:1 32338:1 32350:1 32365:1 32383:4 32403:2 32416:2 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32644:1 32645:1 32658:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32756:1 32770:1 32771:3 32772:1 32774:2 32777:3 32799:1 32804:2 32818:6 32835:3 32837:1 32838:2 32839:2 32845:1 32849:28 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32943:2 32944:4 32975:1 32976:1 32978:1 32987:2 32991:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 190:1 196:2 203:2 211:1 215:1 225:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:2 313:5 314:1 316:1 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:3 431:1 432:1 434:1 440:1 444:1 447:1 450:1 466:2 481:2 487:1 501:1 506:2 510:1 518:1 527:1 529:1 538:2 565:3 569:1 573:1 579:1 603:1 610:1 618:1 625:1 626:1 638:1 684:3 688:2 694:1 697:1 701:1 723:6 744:29 752:3 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:1 822:2 832:1 838:2 842:2 855:1 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:3 942:1 965:3 975:1 982:2 1003:1 1014:3 1015:6 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:6 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1247:2 1248:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:28 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:3 1540:1 1543:1 1546:1 1549:1 1556:2 1557:6 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:3 1678:1 1681:9 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1740:3 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:3 1781:1 1782:1 1798:1 1802:1 1803:1 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:6 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:5 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2310:2 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:1 2576:2 2577:2 2579:1 2580:5 2585:7 2587:3 2589:5 2595:3 2598:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2667:1 2668:2 2669:1 2681:3 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:3 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2931:2 2952:1 2966:1 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3097:1 3112:1 3116:1 3119:3 3122:2 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:1 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3282:1 3287:2 3310:1 3313:13 3315:29 3316:1 3318:3 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:7 3408:2 3411:1 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:3 3680:1 3707:1 3713:1 3731:1 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3818:1 3820:1 3821:2 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:1 3953:1 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4081:1 4101:1 4112:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4292:2 4293:1 4322:1 4328:1 4330:1 4336:1 4342:1 4349:3 4362:1 4367:1 4373:2 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4434:1 4458:1 4465:28 4466:2 4473:1 4490:1 4497:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:5 4592:5 4593:2 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:28 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:1 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:2 5562:14 5563:2 5581:2 5585:1 5616:5 5626:2 5637:2 5659:2 5660:1 5697:1 5714:4 5716:1 5719:3 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:3 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5857:2 5872:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:1 6262:1 6263:1 6272:3 6275:1 6334:1 6345:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6430:1 6436:2 6438:6 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:1 6483:2 6497:1 6504:1 6531:1 6539:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6706:1 6717:1 6727:1 6740:1 6764:1 6768:1 6773:1 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:1 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:1 7061:1 7063:2 7064:2 7065:1 7069:1 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7192:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:5 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:2 7309:1 7310:1 7312:3 7313:7 7314:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:1 7510:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7854:1 7864:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:6 8505:1 8508:1 8545:1 8547:2 8573:1 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:10 8700:10 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:3 8769:1 8774:43 8780:1 8781:1 8784:2 8788:1 8794:13 8798:4 8800:1 8805:1 8808:1 8831:1 8832:1 8836:2 8842:2 8853:1 8861:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:29 9329:1 9330:1 9337:1 9341:1 9346:1 9350:12 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:36 9473:1 9475:1 9504:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:1 9692:5 9693:1 9709:1 9714:1 9720:2 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10091:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10204:1 10210:2 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10319:1 10343:4 10354:1 10372:3 10411:1 10413:4 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:7 10551:1 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10615:1 10616:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10698:1 10701:1 10702:1 10707:2 10710:2 10714:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:6 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10919:1 10926:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11070:3 11073:4 11076:1 11084:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:28 11220:1 11225:1 11238:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11329:1 11357:4 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11441:1 11442:2 11451:1 11456:2 11462:1 11474:4 11478:5 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:1 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:6 11650:1 11689:1 11737:2 11742:1 11747:1 11768:4 11781:1 11796:2 11812:1 11815:1 11822:1 11839:1 11848:1 11853:1 11871:1 11872:5 11891:1 11922:3 11942:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12303:1 12317:1 12336:1 12367:1 12402:6 12403:1 12424:1 12425:1 12432:1 12442:2 12444:1 12454:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12649:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:1 12857:1 12858:1 12864:2 12866:1 12875:1 12876:1 12878:3 12880:1 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12978:5 13004:1 13022:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:7 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13162:2 13188:2 13213:1 13216:6 13239:1 13243:1 13246:1 13251:1 13257:3 13274:1 13277:1 13278:1 13282:1 13289:1 13292:5 13294:2 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:5 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:3 13874:2 13875:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:1 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:3 14433:29 14437:1 14439:1 14444:1 14447:4 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:1 14599:1 14623:1 14642:1 14646:2 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:2 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:4 15106:5 15116:1 15141:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:2 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15539:1 15540:1 15545:5 15549:1 15551:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:11 15835:5 15864:1 15908:2 15915:2 15934:4 15935:1 15958:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16208:1 16221:2 16224:1 16226:1 16235:2 16241:2 16243:3 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:1 16352:1 16354:1 16355:1 16357:1 16373:1 16375:2 16386:1 16391:2 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16479:1 16487:1 16505:29 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16742:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17054:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17179:1 17183:1 17190:1 17208:2 17252:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:4 17882:1 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:2 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18084:1 18121:3 18124:3 18126:1 18130:2 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:10 18220:1 18232:1 18250:3 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18338:2 18350:4 18351:2 18360:3 18361:1 18369:3 18370:1 18371:1 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:6 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18833:1 18834:1 18835:2 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19054:39 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19579:1 19583:1 19598:1 19602:1 19607:1 19612:1 19613:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:1 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19978:1 19984:1 20005:2 20012:1 20027:2 20032:2 20067:4 20079:4 20108:3 20109:1 20124:1 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:1 20407:2 20408:1 20416:1 20426:1 20449:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:4 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:8 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20855:1 20871:1 20873:1 20883:1 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2116 20985:1 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21162:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:2 21269:1 21272:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:1 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:4 21653:5 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:4 21877:1 21881:4 21907:2 21913:1 21926:1 21942:21 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22220:1 22224:1 22242:2 22246:1 22267:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22385:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:1 22490:1 22496:1 22497:1 22509:1 22535:2 22536:6 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:1 22598:1 22606:1 22611:2 22617:3 22619:5 22622:1 22637:1 22644:2 22645:5 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22733:3 22742:1 22743:1 22757:2 22764:1 22769:1 22774:1 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22902:1 22926:1 22953:2 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:1 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23332:2 23336:1 23337:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23583:1 23597:1 23614:1 23617:4 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:4 23882:2 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23972:1 23977:1 23978:1 23980:3 23985:1 24002:1 24011:1 24022:2 24028:1 24030:1 24032:1 24034:2 24038:2 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24130:2 24140:2 24152:3 24158:1 24161:1 24164:1 24165:1 24180:1 24181:2 24200:1 24202:4 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:5 24364:1 24395:1 24397:1 24399:1 24405:5 24409:1 24410:1 24413:1 24414:3 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:8 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:4 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:3 24914:1 24923:1 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:12 25047:1 25049:2 25057:1 25092:10 25094:2 25100:1 25103:1 25118:1 25152:1 25154:4 25155:2 25159:1 25182:2 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:6 25415:2 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25557:1 25567:1 25578:1 25581:1 25591:28 25609:1 25614:2 25616:3 25618:1 25623:1 25624:2 25626:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:1 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26053:1 26056:3 26061:1 26062:2 26093:1 26115:29 26126:1 26142:3 26143:1 26152:1 26163:1 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26332:1 26340:1 26355:1 26363:2 26364:2 26395:1 26402:1 26454:1 26484:1 26507:1 26509:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26774:2 26778:1 26782:1 26802:1 26804:3 26808:1 26828:2 26830:1 26833:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:3 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:8 27247:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27424:1 27451:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28435:2 28442:1 28451:2 28454:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:2 28769:4 28770:2 28780:1 28786:1 28793:4 28807:2 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:12 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29071:1 29073:1 29078:1 29101:1 29107:1 29122:2 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29211:2 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:1 29352:1 29353:1 29361:1 29362:4 29364:1 29373:2 29386:2 29388:1 29391:10 29392:1 29395:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29542:1 29595:1 29607:2 29635:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:1 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:4 30421:2 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:7 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:1 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:3 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:2 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30988:1 30991:1 30998:1 30999:1 31004:1 31006:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:1 31262:4 31266:3 31268:6 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:1 31472:1 31476:1 31485:1 31493:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:13 31588:1 31590:1 31594:1 31612:1 31620:2 31631:6 31655:1 31682:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:1 31747:9 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:11 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32035:1 32051:1 32056:36 32057:1 32077:1 32079:4 32082:1 32084:1 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:1 32338:1 32350:1 32365:1 32383:4 32403:2 32416:2 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32643:1 32644:1 32645:1 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32756:1 32770:1 32771:4 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32835:3 32837:1 32838:2 32839:2 32845:1 32849:29 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32943:2 32944:4 32975:1 32976:1 32978:1 32987:2 32991:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 190:1 196:2 203:2 211:1 215:1 225:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:2 313:5 314:1 316:1 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:3 431:1 432:1 434:1 440:1 444:1 447:1 450:1 466:2 481:2 487:1 501:1 506:2 510:1 518:1 527:1 529:2 538:2 550:1 565:3 569:1 573:1 579:1 603:1 610:1 618:1 625:1 626:1 638:1 684:3 688:2 694:2 697:1 701:1 723:6 744:30 752:3 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:1 822:2 832:1 838:2 842:2 855:2 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:3 942:1 965:3 975:1 982:2 987:1 1003:1 1014:3 1015:6 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:6 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1247:2 1248:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:29 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:3 1540:1 1543:1 1546:1 1549:1 1556:2 1557:7 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:3 1678:2 1681:9 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1740:3 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:3 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:7 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:5 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2310:2 2316:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:1 2576:2 2577:2 2579:1 2580:5 2585:7 2587:3 2589:6 2595:3 2598:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2667:1 2668:2 2669:1 2681:4 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:3 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2931:2 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:1 3097:1 3112:1 3116:1 3119:3 3122:3 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:2 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3282:1 3287:2 3310:1 3313:14 3315:30 3316:1 3318:3 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:7 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:3 3680:1 3707:1 3713:1 3731:1 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:1 3953:1 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:1 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4292:2 4293:1 4322:1 4328:1 4330:1 4336:1 4342:1 4349:3 4362:1 4367:1 4373:2 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:29 4466:2 4473:1 4490:1 4497:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:5 4592:5 4593:2 4603:1 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4906:1 4920:1 4927:2 4929:29 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:1 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:1 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:2 5562:15 5563:2 5581:2 5585:1 5616:5 5626:2 5637:2 5659:2 5660:1 5697:1 5714:4 5716:1 5719:3 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:3 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5857:2 5872:1 5889:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:1 6262:1 6263:1 6272:3 6275:1 6334:1 6345:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6430:1 6436:2 6438:7 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:1 6483:2 6497:1 6504:1 6531:2 6539:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6706:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:1 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:1 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6953:1 6956:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:1 7061:1 7063:2 7064:2 7065:1 7069:1 7100:1 7136:1 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7192:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:6 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:2 7309:1 7310:1 7312:3 7313:7 7314:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:1 7510:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:1 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7847:1 7854:1 7864:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:1 8030:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:7 8505:1 8508:1 8545:1 8547:2 8573:1 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:10 8700:10 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:3 8769:1 8774:44 8780:1 8781:1 8784:2 8788:1 8794:14 8798:4 8800:1 8805:1 8808:1 8831:1 8832:1 8836:2 8842:2 8853:1 8861:1 8898:4 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:3 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:30 9329:1 9330:1 9337:1 9341:1 9346:1 9350:15 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:37 9473:1 9475:1 9504:1 9513:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:1 9692:5 9693:1 9709:1 9714:1 9720:2 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10091:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:2 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10280:1 10319:1 10343:4 10354:1 10372:3 10411:1 10413:4 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:7 10551:1 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10615:1 10616:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10682:1 10698:1 10701:1 10702:1 10707:2 10710:2 10714:1 10717:1 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:7 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10898:1 10903:1 10919:1 10926:1 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11084:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:29 11220:1 11225:1 11238:1 11249:1 11256:1 11269:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11329:1 11357:4 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11441:1 11442:2 11451:1 11456:2 11462:1 11474:4 11478:5 11486:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:6 11650:1 11689:1 11737:2 11742:1 11747:1 11768:4 11781:1 11796:2 11812:1 11815:1 11822:1 11838:1 11839:1 11848:1 11853:1 11871:1 11872:5 11891:1 11922:3 11942:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12303:1 12317:1 12336:1 12367:1 12402:7 12403:1 12424:1 12425:1 12432:1 12442:2 12444:1 12454:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12649:1 12650:1 12651:1 12661:1 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:1 12864:2 12866:1 12875:1 12876:1 12878:3 12880:1 12883:1 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12978:5 13004:1 13022:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:8 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13274:1 13277:1 13278:1 13282:1 13289:1 13292:5 13294:3 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:6 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:3 13874:2 13875:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:3 14433:30 14437:1 14439:1 14444:1 14447:4 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:1 14586:1 14588:2 14599:1 14623:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:4 15106:5 15116:1 15141:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15539:1 15540:1 15545:5 15549:1 15551:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:4 15805:1 15812:1 15817:3 15821:1 15832:11 15835:5 15864:1 15908:2 15915:2 15934:4 15935:1 15958:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16208:1 16221:2 16224:1 16226:1 16235:2 16239:1 16241:2 16243:3 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:1 16341:1 16352:1 16354:2 16355:1 16357:1 16373:1 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16479:1 16487:1 16505:30 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:2 16725:1 16737:1 16739:1 16742:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17054:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17179:1 17183:1 17190:1 17208:2 17252:2 17253:1 17261:1 17270:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:4 17882:1 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:2 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18084:1 18121:3 18124:3 18126:1 18130:2 18161:1 18165:2 18173:2 18174:1 18176:1 18177:2 18200:10 18220:1 18232:1 18250:3 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18338:2 18350:4 18351:2 18353:1 18360:3 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:7 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18833:1 18834:1 18835:2 18865:1 18878:1 18883:3 18887:1 18896:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19046:1 19054:40 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19579:1 19583:1 19598:1 19602:1 19607:1 19612:1 19613:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:1 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:2 20032:2 20067:4 20079:4 20108:3 20109:1 20124:1 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:1 20407:2 20408:1 20416:1 20426:1 20449:1 20451:1 20464:1 20488:1 20494:1 20496:1 20521:1 20539:1 20545:4 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:8 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20855:1 20871:1 20873:1 20883:1 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2171 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21162:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:2 21269:1 21272:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:5 21653:5 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21926:1 21942:21 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22159:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22220:1 22224:1 22242:2 22246:1 22267:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:6 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:1 22598:1 22606:1 22611:2 22617:3 22619:5 22622:1 22637:1 22644:2 22645:5 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22733:4 22742:1 22743:1 22757:2 22764:1 22769:1 22774:1 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22902:1 22926:1 22953:2 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:1 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23332:2 23336:1 23337:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:1 23481:2 23487:1 23489:3 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23583:1 23597:1 23614:1 23617:4 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:1 23864:1 23869:4 23882:2 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:3 23985:1 24002:1 24011:1 24022:2 24028:1 24030:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24130:2 24140:2 24152:3 24158:1 24161:1 24164:1 24165:1 24180:1 24181:2 24200:1 24202:4 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:5 24364:1 24395:1 24397:1 24399:1 24405:5 24409:1 24410:1 24413:1 24414:3 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:9 24484:1 24499:1 24542:1 24546:1 24548:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:5 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:2 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:3 24914:1 24923:1 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:12 25047:1 25049:2 25057:1 25092:10 25094:2 25100:1 25103:1 25118:1 25152:1 25154:4 25155:2 25159:1 25182:3 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:6 25415:2 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25557:1 25567:1 25578:1 25581:1 25591:29 25609:1 25614:2 25616:3 25618:1 25623:1 25624:2 25626:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26053:1 26056:3 26061:1 26062:2 26093:1 26115:30 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26395:1 26402:1 26454:1 26460:1 26484:1 26487:1 26507:1 26509:1 26511:2 26522:1 26538:1 26540:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26774:2 26778:1 26782:1 26802:1 26804:3 26808:1 26828:4 26830:1 26833:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:3 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:8 27247:1 27262:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27424:1 27451:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28435:2 28441:1 28442:1 28451:2 28454:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:2 28769:4 28770:2 28780:1 28786:1 28793:4 28807:2 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:12 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29071:1 29073:1 29078:1 29101:2 29107:1 29122:2 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29211:2 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:1 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:10 29392:1 29395:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29542:1 29595:1 29607:2 29635:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:1 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30194:1 30197:5 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:4 30421:2 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:2 30503:1 30549:1 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:7 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:1 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:4 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:2 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31262:4 31266:3 31268:6 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:1 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:13 31588:1 31590:1 31594:1 31612:1 31620:2 31631:6 31655:1 31682:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:1 31747:9 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:11 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32035:1 32051:1 32056:37 32057:1 32077:1 32079:4 32082:1 32084:2 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:1 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:1 32338:1 32350:1 32365:1 32383:4 32403:2 32416:2 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32643:1 32644:1 32645:1 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32756:1 32770:1 32771:6 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32835:3 32837:1 32838:2 32839:2 32845:1 32849:30 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32941:1 32943:2 32944:4 32975:1 32976:1 32978:1 32987:2 32991:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:1 196:2 203:2 211:1 215:1 225:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:2 313:5 314:1 316:2 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:3 431:1 432:1 434:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 527:1 529:2 538:2 550:1 565:3 569:1 573:1 579:1 584:1 603:1 610:1 618:1 625:1 626:1 638:1 684:3 688:2 694:2 697:1 701:1 723:6 744:31 752:3 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:2 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:3 942:1 965:3 975:1 982:2 987:1 1003:1 1014:3 1015:7 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:6 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:30 1363:1 1369:1 1372:2 1373:2 1375:1 1378:3 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:3 1540:1 1543:1 1546:1 1549:1 1556:2 1557:7 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:3 1678:2 1681:10 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1740:3 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:3 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:7 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:6 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:1 2576:2 2577:2 2579:1 2580:5 2585:8 2587:3 2589:7 2595:3 2598:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2667:1 2668:2 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:3 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2931:2 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:1 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:2 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3282:2 3287:2 3310:1 3313:14 3315:31 3316:1 3318:3 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:7 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:1 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:1 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4292:3 4293:1 4322:1 4328:1 4330:1 4336:1 4342:1 4349:3 4362:1 4367:1 4373:2 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:30 4466:2 4473:1 4490:1 4497:1 4527:1 4531:1 4534:1 4546:1 4552:2 4556:4 4558:2 4571:2 4577:1 4584:1 4588:5 4592:5 4593:2 4603:1 4604:2 4644:1 4656:1 4668:1 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:1 4920:1 4927:2 4929:30 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:1 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5437:1 5443:2 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:2 5562:16 5563:2 5581:2 5585:1 5616:5 5626:2 5637:2 5659:2 5660:1 5679:1 5697:1 5714:4 5716:1 5719:3 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5856:1 5857:2 5872:1 5889:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6430:1 6436:2 6438:7 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:1 6504:1 6531:2 6539:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6692:1 6706:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:1 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:2 6941:1 6943:1 6953:1 6956:1 6958:1 6963:1 6987:1 6994:1 7012:1 7032:1 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:1 7061:1 7063:2 7064:2 7065:1 7069:1 7100:1 7136:2 7139:1 7151:1 7155:1 7161:3 7167:2 7170:1 7183:2 7192:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:6 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:2 7309:1 7310:1 7312:4 7313:7 7314:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:1 7510:1 7513:1 7528:1 7538:1 7543:1 7549:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:2 7774:2 7776:1 7783:1 7790:1 7805:1 7815:1 7847:1 7854:1 7864:1 7884:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:2 8030:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:10 8700:10 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:3 8769:1 8774:46 8780:1 8781:1 8784:2 8788:1 8794:15 8798:4 8800:1 8805:1 8808:1 8831:1 8832:1 8836:2 8842:2 8853:1 8861:1 8898:5 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:5 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9274:2 9292:1 9293:1 9306:1 9318:1 9320:31 9329:1 9330:1 9337:1 9341:1 9346:1 9350:15 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:39 9473:1 9475:1 9504:2 9513:1 9540:1 9546:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:1 9692:5 9693:1 9709:1 9714:1 9720:2 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:1 9931:1 9938:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10091:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10280:1 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:1 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:1 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10615:1 10616:1 10618:1 10638:1 10640:1 10642:2 10649:1 10660:1 10682:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:1 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:7 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10888:1 10898:1 10903:1 10919:1 10926:1 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11084:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:30 11220:1 11225:1 11238:1 11249:1 11256:1 11269:1 11270:1 11271:1 11284:1 11286:1 11295:1 11297:1 11307:2 11312:1 11316:1 11329:1 11351:1 11357:4 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:4 11478:5 11486:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:6 11650:1 11689:1 11737:2 11742:1 11747:1 11768:5 11781:1 11796:2 11812:1 11815:1 11822:1 11838:1 11839:1 11848:1 11853:1 11871:1 11872:6 11891:1 11922:3 11942:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12303:1 12317:1 12336:1 12367:1 12402:7 12403:1 12424:1 12425:1 12432:1 12442:2 12444:1 12454:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:1 12864:2 12866:1 12875:1 12876:1 12878:3 12880:1 12883:2 12885:1 12889:1 12893:1 12901:1 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12978:5 13004:1 13022:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:8 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13182:1 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13274:1 13277:2 13278:1 13282:1 13289:1 13292:5 13294:3 13297:2 13301:1 13303:4 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:6 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:3 13874:2 13875:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:3 14433:31 14437:1 14439:1 14444:1 14447:4 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:5 15106:5 15116:1 15141:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15539:1 15540:1 15545:6 15549:1 15551:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:11 15835:6 15864:1 15908:2 15915:2 15923:1 15934:4 15935:1 15958:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16208:1 16221:2 16224:1 16226:1 16235:2 16239:1 16241:2 16243:3 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:1 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16408:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:1 16451:1 16457:1 16464:2 16479:1 16487:1 16505:31 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:3 16725:1 16737:1 16739:1 16742:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17054:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17179:1 17183:1 17190:1 17208:2 17252:3 17253:1 17261:1 17270:1 17281:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:1 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:2 17988:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18079:1 18084:1 18121:3 18124:3 18126:1 18130:2 18161:1 18165:2 18171:1 18173:2 18174:1 18176:1 18177:2 18200:11 18220:1 18227:1 18232:1 18239:1 18250:3 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18338:2 18350:4 18351:2 18353:1 18360:3 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:7 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18833:1 18834:1 18835:2 18865:1 18876:1 18878:1 18883:3 18887:1 18896:1 18913:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19046:1 19054:42 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19579:1 19583:1 19598:1 19602:1 19607:1 19612:1 19613:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:1 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:2 20032:2 20067:4 20069:1 20079:4 20108:4 20109:1 20124:1 20134:1 20138:1 20173:1 20192:5 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:1 20407:2 20408:1 20416:1 20426:1 20449:1 20451:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:4 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:8 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20855:1 20871:1 20873:1 20883:1 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2217 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21162:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:2 21269:1 21272:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:5 21653:5 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:5 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21924:1 21926:1 21942:21 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22159:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22220:1 22224:1 22242:2 22246:1 22267:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:6 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:5 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22733:4 22742:1 22743:1 22757:2 22764:1 22769:1 22774:2 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22902:1 22926:1 22953:2 22973:1 22977:1 22988:1 22995:1 23046:5 23056:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:1 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23332:2 23336:1 23337:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:4 23882:2 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 24002:1 24011:1 24022:2 24028:1 24030:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24084:1 24089:1 24119:1 24130:2 24140:2 24152:3 24158:1 24161:1 24164:1 24165:1 24180:1 24181:2 24200:1 24202:4 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:5 24364:1 24395:2 24397:1 24399:1 24405:6 24409:2 24410:1 24413:1 24414:3 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:9 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:5 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:3 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:13 25047:1 25049:2 25057:1 25092:11 25094:2 25100:1 25103:1 25118:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:8 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:30 25609:1 25614:2 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26053:1 26056:3 26058:1 26061:1 26062:2 26093:1 26115:31 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:1 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26395:1 26402:1 26454:1 26460:1 26484:1 26487:1 26507:2 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26774:2 26778:1 26782:1 26802:1 26804:3 26808:1 26828:4 26830:1 26833:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:3 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27238:8 27247:1 27262:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27424:1 27451:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28435:2 28441:1 28442:1 28451:2 28454:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:2 28769:4 28770:2 28780:1 28786:1 28793:4 28807:2 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:12 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29071:2 29073:1 29078:1 29101:2 29107:1 29122:2 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:10 29392:1 29395:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29542:1 29595:1 29607:2 29635:2 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:2 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30194:1 30197:6 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:2 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:2 30503:1 30512:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30610:1 30619:1 30624:8 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:1 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:2 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:4 31266:3 31268:6 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:2 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:13 31588:1 31590:1 31594:1 31602:1 31612:1 31620:3 31631:6 31655:1 31682:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:9 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:11 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32035:1 32051:1 32056:39 32057:1 32077:1 32079:4 32082:1 32084:2 32090:1 32091:5 32092:2 32124:1 32155:3 32159:8 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:1 32338:1 32350:1 32365:1 32383:4 32403:2 32416:2 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32643:1 32644:1 32645:1 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32753:1 32756:1 32770:1 32771:6 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32835:4 32837:1 32838:2 32839:2 32845:1 32849:31 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32941:1 32943:2 32944:4 32975:1 32976:2 32978:1 32987:2 32991:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:1 196:2 203:2 211:1 215:1 225:1 227:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:2 313:5 314:1 316:2 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:4 431:1 432:2 434:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 527:1 529:2 538:2 550:1 565:3 569:1 573:1 579:1 584:1 603:1 610:1 618:1 625:1 626:1 638:1 646:1 684:3 688:2 694:2 697:1 701:1 723:6 744:32 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:2 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:3 942:1 965:3 975:1 982:2 987:1 1003:1 1014:3 1015:7 1019:2 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:7 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:31 1363:1 1369:1 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:2 1429:1 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:8 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1671:1 1672:1 1674:3 1678:2 1681:11 1684:1 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1740:3 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:3 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:8 1858:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:7 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:2 2576:2 2577:2 2579:1 2580:5 2585:8 2587:3 2589:7 2595:3 2598:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2667:1 2668:2 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:4 2750:3 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:3 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2901:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:1 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:3 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3282:2 3287:2 3310:1 3313:14 3315:32 3316:1 3318:3 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:7 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:1 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:1 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4292:3 4293:1 4322:1 4328:1 4330:1 4336:2 4342:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:31 4466:2 4473:1 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4552:2 4556:4 4558:3 4571:2 4577:1 4584:1 4588:5 4592:5 4593:2 4603:1 4604:2 4619:1 4644:1 4656:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:1 4920:1 4927:2 4929:31 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:2 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:1 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5423:1 5437:1 5443:2 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5515:1 5518:1 5542:2 5545:2 5562:17 5563:2 5581:2 5585:1 5616:6 5626:2 5637:2 5659:2 5660:1 5679:1 5697:1 5714:4 5716:1 5719:3 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5856:1 5857:2 5872:1 5889:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6430:1 6436:2 6438:8 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6692:1 6706:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:3 6941:1 6943:1 6953:1 6956:1 6958:1 6963:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:1 7063:2 7064:2 7065:1 7069:1 7100:1 7136:2 7139:1 7151:1 7155:1 7161:4 7167:2 7170:1 7183:2 7192:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:7 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:2 7309:1 7310:1 7312:4 7313:8 7314:1 7317:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:1 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:2 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:1 7847:1 7854:1 7864:1 7884:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:2 8030:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:11 8700:11 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:4 8769:1 8774:47 8780:1 8781:1 8784:2 8788:1 8794:15 8798:4 8800:1 8805:1 8808:1 8831:1 8832:1 8836:2 8842:2 8853:1 8861:1 8898:5 8909:2 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9052:1 9079:1 9082:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9259:1 9274:2 9292:1 9293:1 9306:1 9318:1 9320:32 9329:1 9330:1 9337:1 9341:1 9346:1 9350:15 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:40 9473:1 9475:1 9504:2 9513:1 9540:1 9546:1 9557:1 9580:1 9587:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:1 9931:1 9938:1 9940:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10091:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10280:1 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:2 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:1 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:2 10642:2 10649:1 10660:1 10682:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:1 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:8 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10888:1 10898:1 10903:1 10919:1 10926:1 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11084:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:31 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:1 11307:2 11312:1 11316:1 11329:1 11351:1 11357:4 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:4 11478:5 11486:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11737:2 11742:1 11747:1 11768:5 11781:1 11796:2 11812:1 11815:1 11822:1 11838:1 11839:1 11848:1 11853:1 11871:1 11872:7 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12303:1 12317:1 12336:1 12367:1 12402:8 12403:1 12424:1 12425:1 12432:1 12442:2 12444:1 12454:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:1 12864:2 12866:1 12875:1 12876:1 12878:3 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12974:1 12978:5 13004:1 13022:1 13027:1 13036:1 13040:1 13047:1 13048:1 13056:8 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13182:1 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:3 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:6 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:3 13874:3 13875:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:3 14433:32 14437:1 14439:1 14444:1 14447:4 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14954:1 14955:1 14964:2 14973:1 14978:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:5 15106:5 15116:1 15141:1 15170:1 15171:1 15181:11 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15539:1 15540:1 15545:6 15549:1 15551:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:11 15835:7 15864:1 15908:2 15915:3 15923:1 15934:4 15935:1 15958:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16208:1 16221:2 16224:1 16226:1 16235:2 16239:1 16241:2 16243:3 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:1 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16479:1 16487:1 16505:32 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:3 16725:1 16737:1 16739:1 16742:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:1 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17054:1 17057:2 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17179:1 17183:1 17190:2 17208:2 17252:3 17253:1 17261:1 17270:1 17281:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:2 17988:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:12 18077:2 18079:1 18084:1 18121:3 18124:3 18126:1 18130:2 18161:1 18165:2 18171:1 18173:2 18174:1 18176:1 18177:2 18200:12 18220:1 18227:1 18232:1 18239:1 18250:3 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18338:2 18350:4 18351:2 18353:1 18360:3 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:8 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18833:1 18834:1 18835:2 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19046:1 19054:44 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19478:1 19484:1 19515:1 19551:1 19556:1 19579:1 19583:1 19598:1 19602:1 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:1 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:1 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:2 20032:2 20067:4 20069:1 20079:4 20108:4 20109:1 20124:1 20134:1 20138:1 20173:1 20192:6 20197:1 20201:2 20236:3 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20449:1 20451:1 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:4 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:9 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20855:1 20871:1 20873:1 20883:1 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2264 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21060:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21162:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:2 21269:1 21272:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:6 21653:5 21656:1 21663:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:6 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21924:1 21926:1 21942:22 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 22023:1 22027:4 22028:1 22031:1 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22159:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22220:1 22224:1 22242:2 22246:1 22267:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:7 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:5 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22733:4 22742:1 22743:1 22757:2 22764:1 22769:1 22774:2 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22885:1 22902:1 22926:1 22953:2 22973:1 22977:1 22988:1 22995:1 23007:1 23046:5 23056:1 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23273:1 23284:2 23291:1 23294:1 23300:1 23307:1 23318:2 23319:2 23325:1 23330:1 23332:2 23336:1 23337:2 23349:1 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:4 23882:2 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 24002:1 24011:1 24022:2 24023:1 24028:1 24030:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24083:1 24084:1 24089:1 24119:1 24130:2 24132:1 24140:2 24152:3 24158:1 24161:1 24164:1 24165:1 24180:1 24181:2 24200:1 24202:4 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:6 24352:1 24364:1 24395:2 24397:1 24399:1 24405:7 24409:2 24410:1 24413:1 24414:4 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:9 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:5 24630:1 24631:4 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:3 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:13 25047:1 25049:2 25057:1 25092:12 25094:2 25100:1 25103:1 25118:1 25121:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:9 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:31 25609:1 25614:2 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26053:1 26056:3 26058:1 26061:1 26062:2 26093:1 26115:32 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:1 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26395:2 26402:1 26454:1 26460:1 26484:1 26487:1 26507:2 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26774:2 26778:1 26782:1 26802:1 26804:3 26808:1 26823:1 26828:4 26830:1 26833:1 26854:1 26863:2 26866:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26971:1 26976:2 26996:1 27002:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:3 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:8 27247:1 27262:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27424:1 27451:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27739:2 27744:1 27750:1 27755:1 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27833:1 27846:1 27863:1 27872:1 27926:1 27934:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:1 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:4 28769:4 28770:2 28780:1 28786:1 28793:4 28807:4 28819:2 28824:3 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:12 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29071:2 29073:1 29078:1 29101:2 29107:1 29122:2 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:11 29392:1 29395:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29534:1 29542:1 29595:1 29607:2 29635:2 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29736:2 29755:1 29756:2 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30194:1 30197:6 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:3 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:2 30503:1 30512:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:8 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:1 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:2 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:4 31266:3 31268:6 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:2 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:13 31588:1 31590:1 31594:1 31602:1 31612:1 31620:3 31631:6 31655:1 31682:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:10 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:12 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32021:1 32035:1 32051:1 32056:40 32057:1 32077:1 32079:4 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:3 32159:9 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:2 32338:1 32350:1 32365:1 32383:4 32403:2 32416:3 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32643:1 32644:1 32645:2 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32753:1 32756:1 32770:1 32771:7 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32835:4 32837:1 32838:2 32839:2 32845:1 32849:32 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32941:1 32943:2 32944:4 32975:1 32976:2 32978:1 32987:2 32991:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:1 196:2 203:2 205:1 211:1 215:1 225:1 227:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:3 313:5 314:1 316:2 330:2 331:1 335:1 336:1 369:1 376:1 418:1 420:4 431:1 432:2 434:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 565:3 569:1 573:1 579:1 584:1 603:1 610:1 618:1 625:1 626:1 638:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 723:6 744:33 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:2 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:3 942:1 965:3 975:1 982:3 987:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:8 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:32 1363:1 1369:1 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:3 1429:1 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:9 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:3 1678:2 1681:11 1684:1 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1740:3 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:4 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:9 1858:1 1859:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2160:1 2173:1 2174:1 2186:1 2206:7 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:1 2353:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:8 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:1 2571:2 2573:4 2574:2 2576:2 2577:3 2579:1 2580:5 2585:8 2587:4 2589:7 2595:4 2598:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:2 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:4 2750:4 2760:3 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2901:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:3 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:4 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3282:2 3287:2 3310:1 3313:17 3315:33 3316:1 3318:3 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:7 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4292:3 4293:1 4322:1 4328:1 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:32 4466:2 4473:1 4484:1 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4552:2 4556:4 4558:3 4571:2 4577:1 4584:1 4588:5 4592:5 4593:2 4603:1 4604:2 4619:1 4644:1 4656:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4862:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:1 4920:1 4927:2 4929:32 4930:1 4938:1 4941:1 4942:1 4946:4 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:3 5321:1 5337:1 5342:5 5349:1 5387:1 5403:1 5423:1 5437:1 5443:2 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5518:1 5542:2 5545:2 5562:18 5563:2 5581:2 5585:1 5616:6 5626:2 5637:2 5659:2 5660:1 5679:1 5697:1 5714:4 5716:1 5719:3 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:3 5775:1 5783:1 5814:1 5851:1 5856:1 5857:2 5872:1 5889:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:1 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:9 6442:1 6448:1 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6692:1 6706:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:1 6936:3 6941:1 6943:1 6953:1 6956:1 6958:1 6963:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:1 7063:2 7064:2 7065:1 7069:1 7100:2 7136:2 7139:1 7151:1 7155:1 7161:4 7167:2 7170:1 7183:3 7192:1 7193:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7273:1 7283:7 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:2 7309:1 7310:1 7312:4 7313:8 7314:1 7317:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:2 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:2 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:2 7847:1 7854:1 7864:1 7884:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8005:1 8007:1 8014:2 8030:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:2 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:11 8700:12 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:4 8769:1 8774:49 8780:1 8781:1 8784:2 8788:1 8794:18 8798:4 8800:1 8805:1 8808:1 8831:1 8832:3 8836:2 8842:2 8853:1 8861:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9052:1 9079:1 9082:2 9097:1 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9259:1 9274:2 9292:1 9293:1 9306:1 9318:1 9320:33 9329:1 9330:1 9337:1 9341:1 9346:1 9350:16 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:41 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:1 9931:1 9938:1 9940:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:1 10220:2 10250:1 10254:5 10263:4 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:4 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:1 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:2 10642:2 10649:1 10660:1 10682:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:1 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:9 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10888:1 10898:1 10903:1 10919:1 10926:1 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11084:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:32 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:1 11307:2 11312:1 11316:1 11329:1 11351:1 11357:4 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:4 11478:5 11486:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11737:2 11742:1 11747:1 11768:5 11781:1 11796:2 11812:1 11815:1 11822:1 11838:1 11839:1 11848:1 11853:1 11871:1 11872:7 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:4 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12303:1 12317:1 12336:1 12367:1 12402:9 12403:1 12424:1 12425:1 12432:1 12442:2 12444:1 12454:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:1 12864:2 12866:1 12875:1 12876:1 12878:3 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:4 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12974:1 12978:5 13004:1 13022:1 13027:2 13036:1 13040:1 13047:1 13048:1 13056:8 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:1 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:4 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:8 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13857:1 13864:1 13865:1 13866:3 13874:4 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:3 14433:33 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14943:2 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:5 15106:5 15116:1 15141:1 15144:1 15170:1 15171:1 15181:13 15185:1 15193:1 15204:1 15214:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15539:1 15540:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:11 15835:7 15864:1 15908:2 15915:4 15923:1 15934:4 15935:1 15958:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16188:1 16191:1 16195:1 16208:2 16221:2 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:1 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16479:1 16487:1 16505:33 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:3 16725:1 16737:1 16739:1 16742:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:1 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:3 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:1 17173:1 17179:1 17183:1 17190:2 17208:2 17252:3 17253:1 17261:1 17270:1 17281:1 17284:2 17308:1 17311:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:3 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17754:1 17755:5 17762:3 17767:1 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:2 17988:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:14 18077:2 18079:1 18084:1 18121:3 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:2 18174:1 18176:1 18177:2 18200:12 18220:1 18227:1 18232:1 18239:1 18250:3 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:2 18350:4 18351:2 18353:1 18360:4 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:9 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18829:1 18833:1 18834:1 18835:2 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:1 18919:2 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19046:1 19054:45 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19478:1 19484:1 19515:1 19551:1 19556:1 19579:1 19583:1 19598:1 19602:1 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:2 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:4 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:1 20192:6 20197:1 20201:2 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20449:1 20451:1 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:4 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:9 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2352 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21051:1 21053:1 21060:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:1 21201:1 21240:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:6 21653:5 21656:1 21663:1 21668:1 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:6 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21924:1 21926:1 21942:22 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:1 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22159:1 22162:4 22167:1 22187:1 22194:2 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:8 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:2 22764:1 22769:1 22774:2 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22973:1 22977:1 22988:1 22995:1 23007:1 23046:5 23050:1 23056:1 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23267:1 23273:1 23284:2 23291:1 23294:1 23300:1 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:1 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:4 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 24002:1 24011:1 24022:2 24023:1 24028:1 24030:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24083:1 24084:1 24089:1 24119:1 24130:2 24132:1 24140:2 24152:3 24158:1 24161:1 24164:1 24165:1 24180:1 24181:2 24200:1 24202:4 24212:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:6 24352:1 24364:1 24395:2 24397:1 24399:1 24405:7 24409:2 24410:1 24413:1 24414:4 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:9 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:2 24783:2 24786:1 24790:4 24809:2 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:3 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:13 25047:1 25049:2 25057:1 25092:12 25094:2 25100:1 25103:1 25118:1 25121:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:9 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:32 25609:1 25614:2 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:2 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26053:1 26056:3 26058:1 26061:1 26062:2 26093:1 26115:33 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26273:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:1 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26395:2 26402:1 26454:1 26460:1 26484:1 26487:1 26507:2 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26774:2 26778:1 26782:1 26802:1 26804:3 26808:1 26823:1 26828:6 26830:1 26833:1 26854:1 26863:2 26866:1 26875:1 26876:1 26883:1 26891:1 26903:1 26922:1 26942:1 26944:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:5 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:9 27247:1 27262:1 27273:1 27276:1 27277:1 27283:1 27288:1 27299:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:4 27384:1 27403:1 27415:2 27424:1 27451:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27629:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:1 27951:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:4 28052:2 28053:2 28058:1 28069:2 28070:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:5 28317:3 28322:1 28347:2 28349:2 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:1 28584:1 28587:1 28589:1 28592:1 28605:2 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28758:4 28769:4 28770:2 28780:1 28786:1 28793:4 28807:4 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:12 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29071:2 29073:1 29078:1 29101:2 29107:1 29122:2 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:11 29392:1 29395:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29534:1 29542:1 29595:1 29607:2 29635:2 29637:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:2 29755:1 29756:2 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:3 30167:1 30169:2 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:3 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:2 30501:1 30503:1 30512:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:8 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:7 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:1 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:4 31266:3 31268:7 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:2 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:13 31588:1 31590:1 31594:1 31602:1 31612:1 31620:3 31631:6 31655:1 31682:1 31702:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:11 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:12 31803:1 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32021:1 32025:1 32035:1 32051:1 32056:41 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:11 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:4 32403:2 32416:4 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32643:1 32644:1 32645:2 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:9 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32835:4 32837:1 32838:2 32839:2 32845:1 32849:33 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32941:1 32943:2 32944:4 32975:1 32976:2 32978:1 32987:2 32991:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:2 196:2 203:2 205:1 211:1 215:1 225:1 227:1 232:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:3 313:5 314:1 316:2 330:2 331:1 335:1 336:1 369:2 376:1 418:1 420:4 431:1 432:2 434:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 565:3 569:1 573:1 579:1 584:1 603:1 610:1 618:1 625:1 626:1 638:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 723:6 744:34 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:2 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:1 921:3 942:1 965:3 975:1 982:3 987:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:5 1049:1 1057:4 1064:1 1065:1 1075:2 1081:3 1084:9 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1335:1 1358:1 1361:33 1363:1 1369:1 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:1 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:3 1429:2 1430:1 1436:1 1438:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:10 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:3 1678:2 1681:11 1684:1 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1740:3 1746:1 1755:1 1756:1 1763:1 1764:1 1766:1 1768:4 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:10 1858:1 1859:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:2 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2153:1 2160:1 2173:1 2174:1 2186:1 2206:7 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:1 2353:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:9 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:2 2576:2 2577:3 2579:1 2580:5 2585:8 2587:4 2589:7 2595:4 2598:1 2599:1 2601:1 2603:1 2607:4 2612:3 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:2 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:3 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3053:2 3059:2 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:34 3316:1 3318:3 3319:1 3335:2 3338:1 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:1 3595:1 3597:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:33 4466:2 4473:1 4484:1 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4552:2 4556:4 4558:4 4571:2 4577:1 4584:1 4588:5 4592:5 4593:2 4603:1 4604:2 4619:1 4644:1 4656:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4862:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:1 4920:1 4927:2 4929:33 4930:1 4938:1 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:4 5321:1 5337:1 5342:6 5349:1 5387:1 5403:1 5423:1 5437:1 5443:2 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5518:1 5542:2 5545:2 5562:19 5563:2 5581:2 5585:1 5616:6 5626:2 5637:2 5659:2 5660:1 5679:1 5697:1 5714:4 5716:1 5719:3 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5872:1 5889:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:2 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:10 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:2 6919:1 6925:1 6928:1 6932:1 6935:2 6936:3 6941:1 6943:1 6953:1 6956:1 6958:1 6963:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:2 7065:1 7069:1 7100:2 7136:2 7139:1 7151:1 7155:1 7161:4 7167:2 7170:1 7183:3 7192:1 7193:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7270:1 7273:1 7283:7 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:2 7309:1 7310:1 7312:4 7313:8 7314:1 7317:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:2 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:3 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:2 7847:1 7854:1 7864:1 7884:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:2 8030:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:12 8700:13 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:4 8769:1 8774:51 8780:1 8781:1 8784:2 8788:1 8794:19 8798:5 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9052:1 9079:1 9082:2 9097:1 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9254:2 9259:1 9274:2 9292:1 9293:1 9306:1 9318:1 9320:34 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:16 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9419:1 9430:1 9438:1 9456:42 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9747:3 9748:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:1 10447:2 10449:2 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:1 10552:2 10561:2 10571:1 10575:1 10589:2 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:2 10642:2 10649:1 10660:1 10682:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:1 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:10 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:1 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:33 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:1 11307:2 11312:1 11316:1 11329:1 11351:1 11357:4 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11593:1 11596:2 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11737:2 11742:1 11747:1 11768:5 11781:1 11796:2 11812:1 11815:1 11822:1 11838:1 11839:1 11848:1 11853:1 11871:1 11872:7 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:2 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:10 12403:1 12424:1 12425:1 12432:1 12442:2 12444:1 12454:1 12458:2 12460:3 12464:3 12471:1 12475:1 12485:4 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:2 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:5 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:9 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:1 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:4 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:8 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13856:1 13857:1 13864:1 13865:1 13866:3 13874:5 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:2 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14379:1 14402:1 14405:1 14430:3 14433:34 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14529:1 14540:1 14545:1 14549:1 14555:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:5 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15539:1 15540:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:11 15835:7 15864:1 15908:2 15915:5 15923:1 15934:4 15935:1 15958:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16166:1 16188:1 16191:1 16195:1 16208:2 16221:2 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:1 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16479:1 16487:1 16505:34 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:3 16725:1 16737:1 16739:1 16742:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:1 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:3 17059:1 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17173:1 17179:1 17183:1 17190:2 17208:2 17252:3 17253:1 17261:1 17270:1 17281:1 17284:2 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17754:1 17755:5 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:3 17988:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:2 18174:1 18176:1 18177:2 18200:12 18220:1 18227:1 18232:1 18239:1 18250:4 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:2 18350:4 18351:2 18353:1 18360:4 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:1 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:10 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18829:1 18833:1 18834:1 18835:2 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:2 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19046:1 19049:1 19054:46 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19478:1 19484:1 19515:1 19551:1 19556:1 19579:1 19583:1 19598:1 19602:1 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:2 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19846:1 19867:1 19869:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:4 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:1 20192:7 20197:1 20201:2 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20449:1 20451:1 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:5 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:9 20737:1 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2400 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:1 21240:1 21243:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:6 21653:5 21656:1 21663:1 21668:2 21674:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:7 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21924:1 21926:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22137:1 22143:1 22150:1 22151:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:8 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:1 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23267:1 23273:1 23284:2 23291:1 23294:1 23300:1 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:4 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:1 24011:1 24022:2 24023:1 24028:1 24030:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24083:1 24084:1 24089:1 24119:1 24130:2 24132:1 24140:2 24152:4 24158:1 24161:1 24164:1 24165:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:1 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:7 24352:1 24364:1 24395:2 24397:1 24399:1 24405:7 24409:2 24410:1 24413:1 24414:4 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:10 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:2 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:15 25047:1 25049:2 25057:1 25079:1 25092:12 25094:2 25100:1 25103:1 25118:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:9 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:33 25609:1 25614:3 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26093:1 26115:34 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26273:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26395:2 26402:1 26454:1 26460:1 26484:1 26487:1 26507:2 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26802:1 26804:3 26808:1 26823:1 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:1 26883:1 26891:1 26903:1 26922:1 26926:1 26942:1 26944:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:5 27128:2 27139:2 27141:2 27144:3 27150:1 27161:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:10 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27629:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:1 27951:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28069:2 28070:1 28109:1 28111:1 28123:1 28126:2 28147:1 28176:1 28178:1 28185:1 28240:1 28275:1 28280:1 28282:1 28283:1 28284:2 28285:6 28304:1 28313:6 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:2 28584:1 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28807:4 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:14 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:2 29107:1 29122:2 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:11 29392:1 29395:1 29405:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29534:1 29542:1 29595:1 29607:2 29635:2 29637:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:2 29755:1 29756:2 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30167:1 30169:2 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:4 30428:2 30429:1 30430:2 30441:2 30470:1 30473:2 30499:2 30501:1 30503:1 30512:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:8 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31153:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:4 31266:3 31268:7 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:2 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:13 31588:2 31590:1 31594:1 31602:1 31612:1 31620:3 31631:6 31655:1 31682:1 31702:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:12 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:13 31803:2 31847:1 31854:2 31856:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32021:1 32025:1 32035:1 32051:1 32056:42 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:12 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:2 32643:1 32644:1 32645:2 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:10 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32835:4 32837:1 32838:2 32839:2 32845:1 32849:34 32859:2 32887:1 32911:1 32932:1 32935:1 32937:2 32941:2 32943:2 32944:5 32975:1 32976:2 32978:1 32987:2 32991:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:2 196:2 203:2 205:1 211:1 215:1 225:1 227:1 232:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:3 313:5 314:1 316:2 330:2 331:1 335:1 336:1 369:2 376:1 418:1 420:4 431:1 432:2 434:1 439:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 565:3 569:1 573:1 579:1 584:1 603:1 610:1 618:1 625:1 626:1 638:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 723:6 744:35 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:3 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:2 921:3 942:1 965:3 975:1 982:3 987:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:5 1049:1 1057:5 1064:1 1065:1 1075:2 1081:4 1084:10 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1314:1 1335:1 1358:1 1361:34 1363:1 1369:1 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:2 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:3 1429:2 1430:1 1436:1 1438:1 1439:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1511:1 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:10 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:3 1678:2 1681:12 1684:1 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1738:1 1740:3 1746:2 1755:1 1756:1 1763:1 1764:1 1766:1 1768:5 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:10 1858:1 1859:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2069:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:3 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2152:1 2153:1 2160:1 2173:1 2174:1 2186:1 2206:8 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:1 2353:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:9 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:2 2576:2 2577:3 2579:1 2580:5 2581:1 2585:8 2587:4 2589:7 2595:4 2598:1 2599:1 2601:1 2603:1 2607:4 2612:4 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:2 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:4 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3044:1 3053:2 3059:3 3068:1 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3281:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:35 3316:1 3318:3 3319:1 3335:2 3338:2 3353:1 3356:1 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:2 3595:1 3597:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:1 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4329:1 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:34 4466:2 4473:1 4484:1 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4551:1 4552:2 4556:4 4558:4 4571:2 4577:1 4584:1 4588:5 4592:6 4593:2 4603:1 4604:2 4619:1 4644:1 4656:1 4665:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4862:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:1 4920:1 4927:2 4929:34 4930:1 4938:1 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:7 5206:1 5230:2 5303:5 5315:4 5321:1 5337:1 5342:6 5349:1 5365:1 5387:1 5403:1 5423:1 5437:1 5443:2 5447:2 5451:2 5452:1 5459:1 5462:3 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5518:1 5542:2 5545:2 5562:19 5563:2 5581:2 5585:1 5616:7 5626:2 5637:2 5645:1 5659:2 5660:1 5665:1 5679:1 5697:1 5714:4 5716:1 5719:4 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5872:1 5889:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:1 6106:2 6107:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6351:1 6357:1 6359:1 6360:1 6370:2 6371:1 6379:2 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:10 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:1 6565:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:3 6919:1 6925:1 6928:1 6932:1 6935:2 6936:3 6941:1 6943:1 6953:1 6956:1 6958:1 6959:1 6963:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:2 7065:1 7069:1 7100:2 7136:2 7139:1 7151:1 7155:1 7161:4 7167:2 7170:1 7183:3 7192:1 7193:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7270:1 7273:1 7283:7 7289:1 7295:1 7297:4 7299:1 7301:1 7302:1 7303:2 7306:4 7307:3 7309:1 7310:1 7312:4 7313:9 7314:1 7317:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:2 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:3 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:2 7847:1 7854:1 7864:1 7884:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:2 8030:1 8032:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8128:1 8133:1 8138:2 8161:1 8181:1 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:13 8700:13 8708:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:4 8769:1 8774:53 8780:1 8781:1 8784:2 8788:1 8794:19 8798:5 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9052:1 9079:1 9082:2 9097:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9247:1 9254:3 9259:1 9274:2 9292:1 9293:1 9306:1 9318:1 9320:35 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:16 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9415:1 9419:1 9430:1 9438:1 9456:43 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9739:1 9747:3 9748:1 9753:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:3 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10037:1 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:3 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:2 10447:2 10449:2 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:2 10552:2 10561:2 10571:1 10575:1 10589:3 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:2 10642:2 10649:1 10660:1 10682:1 10686:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:2 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:10 10769:2 10770:9 10778:1 10787:1 10793:1 10797:1 10799:2 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:2 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:34 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:2 11307:2 11312:1 11316:1 11329:1 11351:1 11357:5 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11581:1 11593:1 11596:3 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11737:2 11742:1 11747:1 11768:5 11781:1 11796:2 11812:1 11815:1 11822:1 11838:1 11839:1 11848:1 11853:1 11871:2 11872:7 11881:1 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:3 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:6 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12285:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:10 12403:1 12424:1 12425:1 12432:1 12442:3 12444:1 12454:1 12458:3 12460:3 12464:3 12471:1 12475:1 12485:4 12494:1 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:8 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:3 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:5 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:9 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:4 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:8 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13750:1 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13856:1 13857:1 13864:1 13865:1 13866:3 13874:5 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:3 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14372:1 14379:1 14402:1 14405:1 14430:3 14433:35 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14520:1 14529:1 14540:1 14545:1 14549:1 14555:1 14557:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:5 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15234:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:10 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15538:1 15539:1 15540:1 15543:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:11 15835:8 15864:1 15874:1 15908:2 15915:5 15923:2 15934:4 15935:1 15958:1 15983:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16166:1 16188:1 16191:1 16195:1 16208:2 16221:2 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16245:1 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:2 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:1 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16479:1 16487:1 16505:35 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16610:1 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:3 16725:1 16737:1 16739:1 16742:1 16756:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:1 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:3 17059:1 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17173:1 17179:1 17183:1 17190:2 17208:2 17211:1 17252:3 17253:1 17261:1 17270:1 17281:1 17284:3 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:1 17543:5 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17751:1 17754:1 17755:5 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:3 17988:1 18028:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:2 18174:2 18176:1 18177:2 18200:12 18220:1 18227:1 18232:1 18239:1 18250:4 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:2 18350:4 18351:2 18353:1 18360:4 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:1 18428:2 18449:1 18450:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:2 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:10 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18829:1 18833:1 18834:1 18835:2 18862:1 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:2 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:1 19046:1 19049:1 19054:47 19061:1 19062:2 19063:1 19068:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19478:1 19484:1 19515:1 19551:1 19556:1 19566:1 19579:1 19583:1 19588:1 19598:1 19602:1 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:2 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19834:1 19846:1 19867:1 19869:1 19882:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:5 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:2 20192:8 20197:1 20201:2 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20449:2 20451:2 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:5 20552:1 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:9 20737:2 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20928:1 20957:1 20963:1 20967:1 20975:2477 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:1 21240:1 21243:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:6 21653:5 21656:1 21663:1 21668:2 21674:2 21721:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:8 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21924:1 21926:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22093:1 22137:1 22143:1 22150:2 22151:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:8 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:1 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23123:1 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23267:1 23273:1 23284:2 23291:1 23294:1 23300:1 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23791:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:4 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:1 24011:1 24022:2 24023:1 24028:1 24030:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24083:1 24084:1 24089:1 24094:1 24119:1 24130:2 24132:1 24140:2 24152:4 24158:1 24161:1 24164:1 24165:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24236:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:2 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:8 24352:1 24364:1 24395:2 24397:1 24399:1 24405:8 24409:2 24410:1 24413:1 24414:5 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:10 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:1 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:2 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:15 25047:1 25049:2 25057:1 25079:1 25092:12 25094:2 25100:1 25103:1 25118:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:2 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:10 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:34 25609:1 25614:3 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:5 25755:1 25768:2 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26067:1 26093:1 26115:35 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26273:1 26285:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26395:2 26402:1 26423:1 26454:1 26460:1 26484:1 26487:1 26507:2 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26783:1 26802:1 26804:3 26808:1 26823:1 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:1 26883:1 26891:1 26903:1 26922:1 26926:1 26942:1 26944:1 26946:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:6 27128:2 27139:2 27141:2 27144:3 27150:1 27158:1 27161:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:10 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27310:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27452:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27629:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27820:1 27821:1 27828:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:1 27951:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28069:2 28070:1 28109:1 28111:1 28123:1 28126:2 28147:2 28176:1 28178:1 28185:1 28240:1 28243:1 28275:1 28280:2 28282:1 28283:1 28284:2 28285:6 28304:1 28313:6 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:2 28584:2 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28807:4 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:14 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:3 29107:1 29122:3 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:11 29392:1 29395:1 29405:1 29410:1 29416:2 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:1 29534:1 29542:1 29595:1 29607:2 29635:2 29637:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:2 29755:1 29756:2 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29907:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30164:1 30167:1 30169:2 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:4 30428:2 30429:2 30430:2 30441:2 30470:1 30473:2 30477:1 30499:2 30501:1 30503:1 30512:1 30520:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:8 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:1 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31153:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:5 31266:3 31268:7 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31362:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:2 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:14 31588:2 31590:1 31594:1 31602:1 31612:1 31620:3 31630:1 31631:6 31655:1 31682:1 31702:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:12 31754:3 31761:1 31765:1 31768:1 31779:1 31780:1 31791:1 31794:14 31803:2 31847:1 31854:2 31856:1 31864:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:1 32001:1 32017:1 32021:1 32025:1 32035:1 32051:1 32056:43 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:13 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:3 32643:1 32644:1 32645:2 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:10 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32824:1 32835:4 32837:1 32838:2 32839:2 32845:1 32849:35 32859:2 32887:2 32911:1 32913:1 32932:1 32935:1 32937:2 32941:2 32943:2 32944:5 32975:1 32976:2 32978:1 32987:2 32991:1 32999:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:2 196:2 203:2 205:1 211:1 215:1 225:1 227:1 232:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:3 313:5 314:1 316:2 330:2 331:1 335:1 336:1 369:2 376:1 418:1 420:4 431:1 432:2 434:1 439:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 565:4 569:1 573:1 579:1 584:1 603:2 610:1 618:1 625:1 626:1 638:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 723:6 744:36 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:3 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:2 921:3 942:1 965:3 975:1 982:3 987:1 992:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:5 1049:1 1057:5 1064:1 1065:1 1075:2 1081:4 1084:10 1089:1 1090:2 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:2 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1314:1 1335:1 1358:1 1361:35 1363:1 1369:1 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:2 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:3 1429:2 1430:1 1436:1 1438:1 1439:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:1 1491:1 1508:1 1510:2 1511:1 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:10 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:3 1678:2 1681:13 1684:1 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1738:1 1740:3 1746:2 1755:1 1756:1 1763:1 1764:1 1766:1 1768:6 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:2 1822:1 1838:1 1844:1 1848:1 1850:10 1858:1 1859:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1957:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:2 2050:2 2055:1 2056:1 2069:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:3 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2149:1 2152:1 2153:1 2160:1 2173:1 2174:1 2186:1 2206:8 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2298:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:2 2353:1 2354:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:9 2443:2 2447:1 2479:1 2483:1 2522:1 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:3 2576:2 2577:3 2579:1 2580:5 2581:1 2585:8 2587:4 2589:7 2595:4 2598:1 2599:2 2601:1 2603:1 2607:4 2612:4 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:3 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2737:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:4 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3044:1 3053:2 3059:3 3068:1 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:2 3223:2 3228:1 3238:1 3265:2 3271:1 3281:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:36 3316:1 3318:3 3319:1 3335:2 3338:2 3349:1 3353:1 3356:2 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:2 3595:1 3597:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:1 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:2 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4329:1 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:35 4466:2 4473:1 4484:1 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4551:1 4552:2 4556:4 4558:4 4571:2 4574:1 4577:1 4584:1 4588:6 4592:7 4593:2 4603:1 4604:2 4619:1 4642:1 4644:1 4656:1 4665:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4757:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4862:1 4864:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:1 4920:1 4927:2 4929:35 4930:1 4938:1 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:8 5206:2 5230:2 5303:6 5315:4 5321:1 5337:1 5342:6 5349:1 5365:1 5387:1 5403:1 5411:1 5423:1 5437:1 5443:3 5447:2 5451:2 5452:1 5459:1 5462:4 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5518:1 5542:2 5545:2 5562:19 5563:2 5581:2 5585:1 5616:7 5626:2 5637:2 5645:1 5659:2 5660:1 5665:1 5679:1 5697:1 5714:4 5716:1 5719:4 5737:4 5738:4 5739:2 5742:1 5745:5 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5863:1 5872:1 5889:1 5903:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:2 6106:2 6107:1 6134:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6351:1 6357:1 6359:1 6360:1 6370:2 6371:1 6373:1 6379:2 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:10 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:2 6565:1 6571:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6708:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:3 6919:1 6925:1 6928:1 6932:1 6935:2 6936:3 6941:1 6943:1 6953:1 6956:1 6958:1 6959:1 6963:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:2 7065:1 7069:1 7100:2 7136:3 7139:1 7151:1 7155:1 7161:4 7167:2 7170:1 7183:3 7192:1 7193:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7270:1 7273:1 7283:7 7289:1 7295:1 7297:5 7299:1 7301:1 7302:1 7303:2 7304:1 7306:4 7307:3 7309:1 7310:1 7312:4 7313:9 7314:1 7317:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:2 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:3 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:2 7847:1 7854:1 7864:1 7884:1 7889:2 7903:1 7923:1 7927:1 7936:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:3 8030:1 8032:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8128:1 8133:1 8138:2 8161:1 8181:2 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8391:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8664:1 8670:1 8685:3 8699:13 8700:13 8708:1 8723:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:4 8769:1 8774:54 8780:1 8781:1 8784:2 8788:1 8794:19 8798:5 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9052:1 9079:1 9082:2 9097:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9247:1 9254:3 9259:1 9274:2 9292:1 9293:1 9306:1 9318:1 9320:36 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:16 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9415:1 9419:1 9430:1 9438:1 9456:44 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9739:1 9747:3 9748:1 9753:1 9754:1 9765:2 9767:1 9768:1 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:4 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10037:1 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:4 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:2 10447:2 10449:2 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:2 10552:2 10561:2 10571:1 10575:1 10589:3 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:2 10642:2 10649:1 10660:1 10682:1 10686:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:2 10725:1 10731:1 10735:1 10737:1 10750:1 10756:1 10758:1 10759:10 10769:2 10770:10 10778:1 10787:1 10793:1 10797:1 10799:3 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:2 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:1 11172:1 11188:1 11189:1 11210:35 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:2 11307:2 11312:1 11316:1 11329:1 11351:1 11357:5 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:1 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11581:1 11593:1 11596:3 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11737:2 11742:1 11747:1 11748:1 11768:5 11781:1 11796:2 11812:1 11815:2 11822:1 11838:1 11839:1 11848:1 11853:1 11871:2 11872:7 11881:1 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:3 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:7 12171:1 12180:1 12195:1 12208:1 12212:2 12221:1 12230:1 12231:1 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12285:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:10 12403:1 12424:1 12425:1 12429:1 12432:1 12442:3 12444:1 12454:1 12458:3 12460:3 12464:3 12471:1 12475:1 12485:4 12494:1 12499:1 12506:1 12514:1 12518:2 12520:1 12521:1 12536:1 12540:1 12546:9 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:3 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:5 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:9 13068:2 13069:2 13089:1 13096:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:4 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:8 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13750:1 13752:1 13755:1 13770:4 13797:1 13802:1 13809:1 13839:1 13848:1 13856:1 13857:1 13860:1 13864:2 13865:1 13866:3 13874:5 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:3 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14372:1 14379:1 14402:1 14405:1 14430:3 14433:36 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14520:1 14529:1 14540:1 14545:1 14549:1 14555:1 14557:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:2 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:6 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15234:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:2 15379:1 15384:1 15387:1 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:2 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:11 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15538:1 15539:1 15540:1 15543:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:12 15835:8 15864:1 15874:1 15908:2 15915:5 15923:2 15934:4 15935:1 15958:1 15983:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16166:1 16188:1 16191:1 16195:1 16208:2 16221:2 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16245:1 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:2 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:2 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16465:1 16479:1 16487:1 16505:36 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16610:1 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:4 16725:1 16737:1 16739:1 16742:1 16756:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:1 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:3 17059:1 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17173:1 17179:1 17183:1 17190:2 17208:2 17211:1 17252:3 17253:1 17261:1 17270:1 17281:1 17284:3 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17369:1 17374:1 17375:1 17394:1 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:2 17543:6 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17672:1 17679:1 17688:1 17694:2 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17751:1 17754:1 17755:5 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:4 17988:1 18028:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:2 18174:2 18176:1 18177:2 18200:12 18220:1 18227:1 18231:1 18232:1 18239:1 18250:4 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:2 18350:4 18351:2 18353:1 18360:4 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:2 18428:2 18449:1 18450:1 18455:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:2 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:3 18738:1 18746:1 18749:10 18750:1 18752:1 18760:1 18789:1 18793:1 18795:1 18803:1 18825:2 18827:1 18829:1 18833:1 18834:1 18835:2 18862:1 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:2 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:2 19046:1 19049:1 19054:48 19061:1 19062:2 19063:1 19068:1 19077:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19478:1 19484:1 19515:1 19551:1 19556:1 19566:1 19579:1 19583:1 19588:1 19598:1 19602:1 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:1 19674:2 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19834:1 19846:1 19864:1 19867:1 19869:1 19882:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:5 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:2 20192:8 20197:1 20201:2 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20449:2 20451:2 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:5 20552:1 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20685:1 20724:9 20737:2 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20837:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20928:1 20943:1 20957:1 20963:1 20967:1 20975:2612 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:2 21240:1 21243:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21585:1 21621:1 21624:6 21653:5 21656:1 21663:1 21668:2 21674:2 21721:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:1 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:8 21836:4 21877:1 21881:4 21896:1 21907:2 21913:1 21924:1 21926:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22093:1 22137:1 22143:1 22150:2 22151:1 22154:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:2 22536:8 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:2 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22823:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:1 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23123:1 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:2 23225:1 23245:1 23251:2 23267:1 23273:1 23284:2 23291:1 23294:1 23300:1 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23791:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:4 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:1 24011:1 24022:2 24023:1 24028:1 24030:1 24031:1 24032:1 24034:2 24038:2 24043:1 24054:1 24071:1 24072:1 24083:1 24084:1 24089:1 24094:1 24119:1 24130:2 24132:1 24140:2 24152:4 24158:1 24161:1 24164:1 24165:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24236:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:2 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:8 24340:1 24352:1 24364:1 24395:2 24397:1 24399:1 24405:8 24409:2 24410:1 24413:1 24414:5 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:11 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:2 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:2 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:15 25047:1 25049:2 25057:1 25079:1 25092:12 25094:2 25100:1 25103:1 25118:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:2 25266:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:10 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:35 25609:1 25614:3 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:6 25755:1 25768:3 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26067:1 26093:1 26115:36 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26182:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26246:1 26257:1 26263:1 26270:1 26273:1 26285:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26370:1 26395:2 26402:1 26423:1 26454:1 26460:1 26484:1 26487:1 26507:3 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26783:1 26802:1 26804:3 26808:1 26823:1 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:1 26883:1 26891:1 26903:1 26922:1 26926:1 26942:1 26944:1 26946:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27012:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:7 27128:2 27139:2 27141:2 27144:3 27150:1 27158:1 27161:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:10 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27310:1 27324:1 27342:1 27352:1 27354:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27452:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:2 27603:5 27607:1 27608:1 27610:2 27629:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27737:1 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27808:1 27820:1 27821:1 27828:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:1 27951:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28069:2 28070:1 28109:1 28111:1 28123:1 28126:2 28147:2 28176:1 28178:1 28185:1 28240:1 28243:1 28275:1 28280:2 28282:1 28283:1 28284:2 28285:6 28304:1 28313:6 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28484:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:2 28584:2 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28807:4 28808:1 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:14 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:3 29107:1 29122:3 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:11 29392:1 29395:1 29405:1 29410:1 29416:3 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:2 29534:1 29542:1 29595:1 29607:2 29635:2 29637:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:2 29755:1 29756:2 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29874:1 29879:1 29893:1 29906:1 29907:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30001:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30164:1 30167:1 30169:2 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30364:1 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:4 30428:2 30429:2 30430:2 30441:2 30470:1 30473:2 30477:1 30499:2 30501:1 30503:1 30512:1 30520:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:8 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:2 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31153:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:5 31266:3 31268:7 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31362:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:3 31472:1 31476:1 31485:1 31493:2 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:14 31588:2 31590:1 31594:1 31602:1 31612:1 31620:4 31630:1 31631:6 31655:1 31682:1 31702:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:12 31754:3 31761:1 31765:1 31768:1 31779:2 31780:1 31791:1 31794:14 31803:2 31847:1 31854:2 31856:1 31864:1 31875:1 31886:1 31896:2 31947:1 31958:2 31993:2 32001:1 32017:1 32021:1 32025:1 32035:1 32051:1 32056:44 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:13 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32277:1 32291:1 32308:2 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:3 32643:1 32644:1 32645:2 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:10 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32824:1 32835:4 32837:1 32838:2 32839:2 32845:1 32849:36 32859:2 32887:2 32911:1 32913:1 32932:1 32935:1 32937:2 32941:2 32943:2 32944:5 32969:1 32975:1 32976:2 32978:1 32987:2 32991:1 32999:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:2 196:2 203:2 205:1 211:1 215:1 225:1 227:1 232:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:3 313:5 314:1 316:2 330:2 331:1 335:1 336:2 369:2 376:1 418:1 420:4 431:1 432:2 434:1 439:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 565:4 569:1 573:1 579:1 584:1 603:2 610:2 618:1 625:1 626:1 638:1 639:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 716:1 723:6 744:37 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:3 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:2 921:3 942:1 965:3 975:1 982:3 987:1 992:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:5 1049:1 1057:5 1064:1 1065:1 1075:2 1081:4 1084:10 1089:1 1090:3 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:3 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1247:2 1248:1 1250:1 1260:1 1282:1 1291:1 1303:1 1305:3 1314:1 1335:1 1358:1 1361:36 1363:1 1369:1 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:2 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:3 1429:2 1430:1 1436:1 1438:1 1439:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:2 1491:1 1508:1 1510:2 1511:1 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:11 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:3 1678:2 1681:16 1684:1 1688:1 1698:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1738:1 1740:3 1746:2 1755:1 1756:1 1763:1 1764:1 1766:1 1768:6 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:3 1822:1 1838:1 1844:1 1848:1 1850:11 1858:1 1859:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1957:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:3 2050:2 2055:1 2056:1 2069:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:3 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2149:1 2152:1 2153:1 2157:1 2160:1 2164:1 2167:1 2173:1 2174:1 2186:1 2206:8 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:1 2298:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:2 2353:1 2354:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:10 2443:3 2447:1 2479:1 2483:2 2522:1 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:3 2576:2 2577:3 2579:1 2580:5 2581:1 2585:9 2587:4 2589:7 2595:4 2598:1 2599:3 2601:1 2603:1 2607:4 2612:4 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:3 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:1 2732:1 2737:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:4 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2834:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2921:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3044:1 3053:2 3059:3 3068:1 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:4 3223:2 3228:1 3238:1 3265:2 3271:1 3281:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:37 3316:1 3318:3 3319:1 3335:2 3338:2 3339:1 3349:1 3353:1 3356:2 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3414:1 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:2 3595:1 3597:1 3648:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:2 3756:1 3757:1 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:2 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4329:2 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:1 4409:1 4411:1 4417:3 4431:1 4434:1 4458:1 4465:36 4466:2 4473:1 4484:2 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4551:1 4552:2 4556:4 4558:5 4571:2 4574:1 4577:2 4584:1 4588:6 4592:7 4593:2 4603:1 4604:2 4605:1 4619:1 4642:1 4644:1 4656:1 4665:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:1 4733:2 4736:1 4737:1 4742:1 4748:1 4757:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:3 4803:3 4809:1 4817:1 4848:1 4862:1 4864:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:2 4920:1 4927:2 4929:36 4930:1 4938:2 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:8 5206:2 5230:2 5269:1 5303:6 5315:4 5321:1 5337:1 5342:6 5349:1 5365:1 5387:1 5403:1 5405:1 5411:1 5423:1 5437:1 5443:5 5447:2 5451:2 5452:1 5456:1 5459:1 5462:4 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5518:1 5542:3 5545:2 5562:19 5563:2 5581:2 5585:1 5616:7 5626:2 5637:2 5645:1 5659:2 5660:1 5665:1 5679:1 5697:1 5714:4 5716:1 5719:5 5737:4 5738:4 5739:2 5742:1 5745:6 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5863:1 5872:1 5889:1 5903:1 5911:1 5934:1 5957:1 5994:1 6009:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:2 6106:2 6107:1 6134:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6351:1 6357:1 6359:1 6360:1 6370:2 6371:1 6373:1 6379:2 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:11 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:2 6565:1 6571:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6708:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:3 6919:1 6925:1 6928:1 6932:1 6935:2 6936:4 6941:1 6943:1 6953:1 6956:1 6958:1 6959:1 6963:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:3 7065:1 7069:1 7100:2 7136:5 7139:1 7151:1 7155:1 7161:4 7167:2 7170:1 7183:3 7192:1 7193:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7270:1 7273:1 7283:8 7288:1 7289:1 7295:2 7297:5 7299:2 7301:1 7302:1 7303:2 7304:1 7306:5 7307:3 7309:1 7310:1 7312:4 7313:9 7314:1 7317:1 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:2 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:3 7758:1 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:2 7847:1 7854:1 7864:1 7884:1 7889:2 7903:2 7923:1 7927:1 7936:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:5 8030:1 8032:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8128:1 8133:1 8138:2 8161:1 8181:2 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8391:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8634:1 8664:1 8670:1 8685:3 8699:13 8700:13 8708:1 8723:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:3 8764:4 8769:1 8774:56 8780:1 8781:1 8784:2 8788:1 8794:19 8798:6 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:2 8966:3 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9052:1 9079:1 9082:2 9097:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9247:1 9254:3 9259:1 9274:2 9292:2 9293:1 9294:1 9306:1 9318:1 9320:36 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:16 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9415:1 9419:1 9430:1 9438:1 9456:45 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9739:1 9747:3 9748:1 9753:1 9754:1 9765:2 9767:1 9768:2 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:4 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:2 9968:1 9998:3 10000:1 10002:1 10023:2 10037:1 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:4 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:2 10447:2 10449:2 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:2 10552:2 10561:2 10571:1 10575:1 10589:3 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:3 10642:2 10649:1 10660:1 10682:1 10686:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:2 10725:1 10731:1 10735:1 10737:1 10747:1 10750:1 10756:1 10758:1 10759:11 10769:2 10770:11 10778:1 10787:1 10793:1 10797:1 10799:3 10802:1 10805:1 10813:1 10816:1 10818:3 10821:1 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:2 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10946:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:2 11172:1 11188:1 11189:1 11210:36 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:2 11307:2 11312:1 11316:1 11329:1 11351:1 11357:5 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:2 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11581:1 11593:1 11596:3 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11737:2 11742:1 11747:1 11748:1 11768:5 11781:1 11796:2 11812:1 11815:2 11822:1 11838:1 11839:1 11848:1 11853:1 11871:2 11872:8 11881:1 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:4 12013:1 12025:1 12028:5 12047:1 12067:2 12095:3 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:8 12171:1 12180:1 12195:1 12201:1 12208:1 12212:2 12221:1 12230:1 12231:2 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12285:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:11 12403:1 12424:1 12425:1 12429:1 12432:1 12442:3 12444:1 12454:1 12458:3 12460:3 12464:3 12471:1 12475:1 12485:5 12494:1 12499:1 12506:1 12514:2 12518:2 12520:1 12521:1 12536:1 12540:1 12546:9 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:1 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:3 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:5 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12938:1 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:10 13068:2 13069:2 13089:1 13096:1 13120:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:4 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:9 13370:1 13371:1 13396:1 13397:1 13402:2 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13568:1 13574:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13750:1 13752:1 13755:1 13770:4 13786:1 13797:1 13802:1 13809:1 13839:1 13848:1 13856:1 13857:1 13860:1 13864:2 13865:1 13866:3 13874:6 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:3 14019:5 14035:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14372:1 14379:1 14402:1 14405:1 14430:3 14433:37 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14520:1 14529:1 14540:1 14545:1 14549:1 14555:1 14557:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:3 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:12 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:6 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15234:1 15284:1 15285:1 15286:2 15296:1 15334:1 15349:3 15354:4 15359:3 15379:1 15384:1 15387:2 15388:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:3 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:12 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15538:1 15539:1 15540:1 15543:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:13 15835:8 15864:1 15874:1 15908:2 15914:1 15915:5 15923:2 15934:4 15935:1 15958:1 15983:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16166:1 16188:1 16191:1 16195:1 16208:2 16221:2 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16245:1 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:2 16375:2 16386:1 16390:1 16391:2 16394:1 16396:1 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:2 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16465:1 16479:1 16487:1 16505:37 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:1 16604:1 16606:1 16609:5 16610:1 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16692:1 16693:1 16718:6 16725:1 16737:1 16739:1 16742:1 16756:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:2 16858:1 16870:1 16887:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:3 17059:1 17062:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17173:1 17179:1 17183:1 17190:2 17208:2 17211:1 17252:3 17253:1 17261:1 17270:1 17281:1 17284:3 17306:1 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17369:1 17374:1 17375:1 17394:2 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:2 17543:6 17546:1 17552:2 17559:1 17574:1 17596:1 17622:1 17667:1 17671:1 17672:1 17679:1 17688:1 17692:1 17694:3 17709:1 17712:1 17722:4 17736:1 17740:1 17744:1 17751:1 17754:1 17755:5 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:5 17988:1 18028:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:3 18174:2 18176:1 18177:2 18200:12 18220:1 18227:1 18231:1 18232:1 18239:1 18250:4 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:2 18350:4 18351:2 18353:1 18360:4 18361:1 18368:1 18369:3 18370:1 18371:2 18374:1 18396:1 18409:2 18428:2 18449:1 18450:1 18455:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:2 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:4 18738:1 18746:1 18749:11 18750:1 18752:1 18760:1 18789:1 18790:1 18793:1 18795:1 18803:1 18825:2 18827:3 18829:1 18833:1 18834:1 18835:2 18862:1 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:2 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:2 19046:1 19049:1 19054:49 19061:1 19062:2 19063:1 19068:1 19077:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19362:1 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19478:1 19484:1 19515:1 19551:1 19556:1 19566:1 19579:1 19583:1 19588:1 19598:1 19602:1 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:1 19666:1 19669:2 19674:2 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19834:1 19846:1 19851:1 19864:1 19867:1 19869:1 19882:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:5 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:2 20192:8 20197:1 20201:2 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20449:2 20451:2 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:5 20552:1 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20678:1 20685:1 20724:9 20737:2 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20837:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20928:1 20943:1 20957:1 20963:1 20967:1 20975:2640 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:2 21212:1 21240:1 21243:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21578:1 21585:1 21621:1 21624:6 21653:5 21656:1 21663:1 21668:2 21674:2 21721:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:2 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:8 21836:4 21877:1 21881:5 21896:1 21907:2 21913:1 21924:1 21926:1 21941:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22093:1 22137:1 22143:1 22150:2 22151:1 22154:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22275:1 22280:1 22286:1 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:3 22536:8 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:3 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22823:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:1 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23123:1 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:3 23225:1 23245:1 23251:2 23267:1 23273:1 23284:2 23291:2 23294:1 23300:1 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:4 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23791:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:5 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:2 24011:1 24022:2 24023:1 24028:1 24030:1 24031:1 24032:1 24034:2 24038:2 24043:1 24054:2 24071:1 24072:1 24083:1 24084:1 24089:2 24094:1 24119:1 24130:2 24132:1 24140:2 24152:4 24158:1 24161:1 24164:1 24165:1 24166:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24236:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:2 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:8 24340:1 24352:1 24364:1 24395:2 24397:1 24399:1 24405:8 24409:2 24410:1 24413:1 24414:5 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:12 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:2 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:3 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:15 25047:2 25049:2 25057:1 25079:1 25092:12 25094:2 25100:1 25103:1 25113:1 25118:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:2 25266:1 25273:3 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:10 25415:3 25444:1 25463:3 25497:1 25517:1 25530:1 25543:1 25553:1 25557:1 25567:1 25578:1 25581:1 25591:36 25609:1 25614:3 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:6 25755:1 25768:3 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25863:1 25909:1 25911:3 25925:3 25936:1 25949:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26067:1 26093:1 26115:37 26126:1 26142:3 26143:1 26152:1 26163:2 26175:1 26177:1 26182:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26225:1 26246:1 26257:1 26263:1 26270:1 26273:1 26285:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:2 26370:1 26395:2 26402:1 26423:1 26454:1 26460:1 26484:1 26487:1 26507:5 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26783:1 26802:1 26804:3 26808:1 26823:1 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:1 26883:1 26891:1 26903:1 26922:1 26926:1 26942:1 26944:1 26946:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27012:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:7 27128:2 27139:2 27141:2 27144:3 27150:1 27158:1 27161:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:10 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27300:1 27310:2 27324:1 27342:1 27352:1 27354:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27452:1 27458:1 27468:1 27471:1 27475:3 27479:1 27482:1 27500:1 27507:1 27519:2 27529:1 27538:1 27545:1 27581:3 27584:1 27585:2 27595:1 27596:1 27599:3 27603:5 27607:1 27608:1 27610:2 27629:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27737:1 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27808:1 27820:1 27821:1 27828:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:3 27951:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28069:2 28070:1 28109:1 28111:1 28123:1 28126:2 28147:2 28176:1 28178:1 28185:1 28240:1 28243:1 28275:1 28280:2 28282:1 28283:1 28284:2 28285:6 28304:1 28313:6 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28484:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:2 28584:2 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28801:1 28807:4 28808:1 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:14 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 28969:1 29016:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:3 29107:1 29122:3 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:2 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:11 29392:1 29395:1 29405:1 29410:1 29416:3 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:2 29534:1 29542:1 29595:1 29607:2 29616:1 29635:2 29637:1 29654:3 29672:1 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:3 29755:1 29756:4 29769:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29865:1 29874:1 29879:1 29893:1 29906:1 29907:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30001:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30164:1 30167:1 30169:2 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30269:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30364:1 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:5 30428:2 30429:2 30430:2 30441:2 30470:1 30473:2 30477:1 30499:2 30501:1 30503:1 30512:1 30520:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:9 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:3 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30813:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30936:4 30968:1 30971:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31153:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:5 31266:3 31268:7 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31362:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:5 31472:1 31476:1 31485:1 31493:2 31503:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:2 31562:1 31565:1 31569:1 31570:3 31581:1 31587:15 31588:2 31590:1 31594:1 31602:1 31612:1 31620:6 31630:1 31631:6 31655:1 31682:1 31702:1 31705:1 31709:4 31723:1 31739:1 31742:1 31743:2 31747:12 31754:3 31761:1 31765:1 31768:1 31779:2 31780:1 31791:1 31794:14 31803:2 31847:1 31854:2 31856:2 31864:1 31875:1 31886:1 31887:1 31896:2 31947:1 31958:2 31993:2 32001:1 32017:1 32021:1 32025:1 32035:1 32051:1 32056:45 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:13 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32253:1 32277:1 32291:1 32308:2 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:3 32643:1 32644:1 32645:3 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:10 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32824:1 32835:4 32837:1 32838:2 32839:2 32845:2 32849:37 32859:2 32887:2 32906:1 32911:1 32913:1 32932:1 32935:1 32937:2 32941:2 32943:2 32944:5 32946:1 32969:1 32975:1 32976:2 32978:1 32987:2 32991:2 32999:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:1 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:2 196:2 203:2 205:1 211:1 215:1 225:1 227:1 232:1 233:1 245:1 253:2 265:1 269:1 270:1 284:1 291:2 308:3 313:5 314:1 316:2 330:2 331:1 335:1 336:2 369:2 376:1 418:1 420:4 431:1 432:2 434:1 439:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 564:1 565:4 569:1 573:1 579:1 584:1 603:2 610:2 618:1 625:1 626:1 638:1 639:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 716:1 723:6 744:38 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:3 822:2 832:1 838:2 842:2 855:3 859:1 891:2 908:2 910:1 912:3 915:2 918:1 920:2 921:3 942:1 965:3 975:1 982:3 987:1 992:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:5 1049:1 1057:5 1064:1 1065:1 1075:2 1081:4 1084:10 1089:1 1090:3 1094:1 1101:2 1106:2 1109:3 1127:2 1130:1 1133:2 1166:1 1168:3 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1247:2 1248:1 1250:1 1256:1 1260:1 1282:1 1291:1 1303:1 1305:3 1314:1 1332:1 1335:1 1358:1 1361:37 1363:1 1369:2 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:2 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:4 1429:2 1430:1 1436:1 1438:1 1439:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:2 1491:2 1508:2 1510:2 1511:1 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:11 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:4 1678:2 1681:17 1684:1 1688:1 1698:1 1699:1 1700:1 1704:1 1706:1 1712:2 1714:1 1716:1 1738:1 1740:3 1746:2 1755:1 1756:1 1763:1 1764:1 1766:1 1768:6 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:3 1822:1 1838:1 1844:1 1848:1 1850:11 1858:1 1859:1 1860:1 1862:2 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1957:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:3 2050:2 2055:1 2056:1 2069:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:3 2104:1 2109:1 2113:2 2121:2 2128:2 2129:1 2149:1 2152:1 2153:1 2157:1 2160:1 2164:1 2167:1 2173:1 2174:2 2177:1 2186:1 2194:1 2206:8 2228:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:2 2298:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:2 2353:1 2354:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:10 2443:3 2447:1 2479:1 2483:2 2522:1 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:3 2576:2 2577:3 2579:1 2580:5 2581:1 2585:9 2587:5 2589:7 2595:5 2598:1 2599:3 2601:1 2603:1 2607:4 2612:4 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:3 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:2 2732:1 2737:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:4 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2834:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2921:1 2926:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3029:1 3034:1 3035:2 3044:1 3053:2 3059:3 3068:1 3069:2 3076:1 3077:1 3080:1 3089:3 3090:1 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:4 3223:2 3228:1 3238:1 3265:2 3271:1 3281:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:38 3316:1 3318:3 3319:1 3335:2 3338:2 3339:1 3349:1 3353:1 3356:2 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3414:1 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3483:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:2 3595:1 3597:1 3648:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:2 3756:1 3757:2 3770:1 3774:3 3775:1 3781:1 3787:3 3798:1 3805:2 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3979:1 3980:1 3984:2 3992:1 3995:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4204:1 4218:3 4219:2 4220:1 4224:2 4228:2 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4329:2 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:2 4409:1 4411:1 4417:3 4431:1 4434:1 4439:1 4458:1 4465:37 4466:2 4473:1 4484:2 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4551:1 4552:2 4556:4 4558:6 4571:2 4574:1 4577:2 4584:1 4588:6 4592:7 4593:2 4603:1 4604:2 4605:1 4619:1 4642:1 4644:1 4656:1 4665:1 4667:1 4668:2 4679:3 4685:1 4695:1 4699:1 4728:1 4730:1 4731:2 4733:2 4736:1 4737:1 4742:1 4748:1 4757:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:4 4803:3 4809:1 4817:1 4848:1 4862:1 4864:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:2 4920:1 4927:2 4929:37 4930:1 4938:2 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 5001:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:8 5206:2 5230:2 5269:1 5303:6 5315:4 5321:1 5337:1 5342:6 5349:1 5365:1 5387:1 5403:1 5405:1 5411:1 5423:1 5437:1 5443:5 5447:2 5451:2 5452:1 5456:1 5459:1 5462:4 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5518:1 5542:3 5545:2 5562:20 5563:2 5581:2 5585:1 5616:8 5626:2 5637:2 5645:1 5659:2 5660:1 5665:1 5679:1 5697:1 5714:4 5716:1 5719:5 5737:4 5738:5 5739:2 5742:1 5745:6 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5773:1 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5863:1 5872:1 5889:1 5903:1 5911:1 5934:1 5957:1 5994:1 6009:1 6011:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:2 6106:2 6107:1 6134:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6351:1 6357:1 6359:1 6360:1 6370:2 6371:1 6373:1 6379:2 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:11 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:2 6565:1 6571:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6708:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:3 6919:1 6925:1 6928:1 6932:1 6935:2 6936:5 6941:1 6943:1 6953:1 6956:1 6958:1 6959:1 6963:1 6982:1 6987:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:3 7065:1 7069:1 7100:2 7136:5 7139:2 7151:1 7155:1 7161:4 7167:2 7170:1 7183:3 7192:1 7193:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7270:1 7273:1 7283:9 7288:1 7289:1 7295:2 7297:5 7299:2 7301:1 7302:1 7303:2 7304:1 7306:5 7307:4 7309:1 7310:1 7312:4 7313:9 7314:1 7317:2 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:3 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:2 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7738:3 7758:1 7774:2 7776:1 7783:1 7790:1 7805:1 7809:1 7815:2 7847:1 7854:1 7864:1 7884:1 7889:2 7903:2 7923:1 7927:1 7936:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:5 8030:1 8032:1 8041:1 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8128:1 8133:1 8138:2 8161:1 8181:2 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8391:1 8396:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8634:1 8664:1 8670:1 8685:3 8699:13 8700:13 8708:1 8723:1 8724:1 8725:1 8726:5 8728:1 8755:1 8759:4 8764:4 8769:1 8774:57 8780:1 8781:1 8784:2 8788:1 8794:19 8798:6 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8880:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:2 8966:3 8977:1 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9035:1 9041:1 9052:1 9079:1 9082:2 9097:2 9120:1 9180:1 9188:1 9226:1 9231:1 9241:1 9247:1 9254:3 9259:1 9274:2 9292:2 9293:1 9294:1 9306:1 9318:1 9320:37 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:18 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9415:1 9419:1 9430:1 9438:1 9456:46 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:2 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9739:1 9747:3 9748:1 9753:1 9754:1 9765:2 9767:1 9768:2 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:4 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:3 9968:1 9998:3 10000:1 10002:1 10023:2 10037:1 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:1 10134:1 10136:4 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:2 10447:2 10449:2 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10498:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:8 10551:2 10552:2 10561:2 10571:1 10575:1 10589:3 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:3 10642:2 10649:1 10660:1 10682:1 10686:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:2 10725:1 10731:1 10735:1 10737:1 10747:1 10750:1 10756:2 10758:1 10759:11 10769:2 10770:12 10778:1 10787:1 10793:1 10797:1 10799:3 10802:1 10805:1 10813:1 10816:1 10818:3 10819:1 10821:1 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:2 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10946:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11085:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:2 11172:1 11188:1 11189:1 11210:37 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:2 11307:2 11312:1 11316:1 11329:1 11351:1 11357:5 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:2 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11547:1 11549:1 11551:2 11563:1 11573:1 11581:1 11593:1 11596:3 11602:1 11606:1 11615:1 11616:1 11633:7 11650:1 11689:1 11718:1 11737:2 11742:1 11747:1 11748:1 11768:5 11781:1 11796:2 11812:1 11815:2 11822:1 11838:1 11839:1 11848:1 11853:1 11871:2 11872:8 11881:1 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:5 12013:1 12025:1 12028:5 12029:1 12047:1 12067:2 12095:3 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:8 12171:1 12180:1 12195:1 12201:1 12208:1 12212:2 12221:1 12230:1 12231:2 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:2 12277:1 12285:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:11 12403:1 12424:1 12425:1 12429:1 12432:1 12442:3 12444:1 12454:1 12458:3 12460:3 12464:3 12471:1 12475:1 12485:5 12494:1 12499:1 12506:1 12514:2 12518:2 12520:1 12521:1 12536:1 12540:1 12546:9 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:2 12595:2 12600:1 12610:1 12629:1 12630:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12661:2 12670:1 12672:2 12682:1 12707:1 12721:3 12722:1 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12867:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:5 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12938:1 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:10 13068:2 13069:2 13089:1 13096:1 13120:1 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:5 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:9 13370:1 13371:1 13396:1 13397:1 13402:2 13408:1 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:3 13529:1 13539:1 13568:1 13574:1 13575:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13750:1 13752:1 13755:1 13770:4 13786:1 13790:1 13797:1 13802:1 13809:2 13839:1 13848:1 13856:1 13857:1 13860:2 13864:2 13865:1 13866:3 13874:6 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:3 14019:5 14035:1 14044:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:1 14222:1 14246:1 14255:1 14267:1 14270:1 14281:1 14288:1 14293:1 14356:1 14357:1 14366:1 14372:1 14379:1 14402:1 14405:1 14430:3 14433:38 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14520:1 14529:1 14540:1 14545:1 14549:1 14555:1 14557:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14718:1 14731:3 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:1 14885:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:13 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:6 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15234:1 15261:1 15284:1 15285:1 15286:2 15296:1 15334:1 15338:1 15349:3 15354:4 15359:3 15379:1 15384:1 15387:2 15388:1 15389:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:3 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:13 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15538:1 15539:1 15540:1 15543:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:1 15615:1 15634:1 15638:1 15642:1 15661:1 15664:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:14 15835:8 15864:1 15874:1 15908:2 15914:1 15915:5 15923:2 15934:4 15935:1 15958:1 15983:1 15986:1 16009:1 16011:3 16025:1 16026:2 16030:1 16044:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16158:1 16166:1 16188:1 16191:1 16195:1 16208:3 16221:2 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16245:1 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:2 16375:2 16386:1 16390:1 16391:2 16394:1 16396:2 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:2 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16465:1 16479:1 16487:1 16505:38 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:2 16567:1 16604:1 16606:1 16609:5 16610:1 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16691:1 16692:1 16693:1 16718:6 16725:1 16737:1 16739:1 16742:1 16756:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:2 16858:1 16870:1 16887:1 16897:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:7 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:4 17059:1 17062:1 17071:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17173:1 17179:1 17183:1 17190:2 17208:2 17211:1 17252:3 17253:1 17261:1 17270:1 17281:1 17284:3 17306:1 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17369:1 17374:1 17375:1 17394:2 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:2 17543:7 17546:1 17552:2 17559:2 17574:1 17596:1 17622:1 17641:1 17667:1 17671:1 17672:1 17679:1 17688:1 17692:1 17694:4 17698:1 17709:1 17712:1 17722:4 17736:1 17740:1 17743:1 17744:1 17751:1 17754:1 17755:5 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:1 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:5 17988:1 18028:1 18036:1 18039:1 18049:1 18065:1 18070:1 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:3 18174:2 18176:1 18177:2 18200:12 18220:1 18227:1 18231:1 18232:1 18239:1 18250:4 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:3 18350:4 18351:2 18353:1 18360:4 18361:2 18368:1 18369:4 18370:1 18371:2 18374:1 18396:1 18409:2 18428:2 18449:1 18450:1 18455:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:2 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:4 18738:1 18746:2 18749:11 18750:1 18752:1 18760:1 18789:1 18790:1 18793:1 18795:1 18803:1 18825:2 18827:3 18829:1 18833:1 18834:1 18835:2 18862:1 18865:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:2 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:2 19043:1 19046:1 19049:1 19054:50 19061:1 19062:3 19063:1 19068:1 19077:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:1 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19362:1 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19478:1 19484:1 19515:1 19551:1 19556:1 19566:1 19579:1 19583:1 19588:1 19598:1 19602:2 19607:1 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:2 19666:1 19669:2 19674:2 19675:1 19677:1 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19750:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19820:1 19834:1 19846:1 19851:1 19864:1 19867:1 19869:1 19882:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:5 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:2 20192:8 20197:1 20201:2 20213:1 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20437:1 20449:2 20451:2 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:5 20552:1 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20678:1 20685:1 20724:10 20737:2 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20837:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20928:1 20943:1 20957:1 20963:1 20967:1 20975:2721 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21087:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:2 21212:1 21240:1 21243:1 21257:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21362:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21536:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21578:1 21585:1 21596:1 21621:1 21624:6 21653:5 21656:1 21663:1 21668:2 21674:2 21721:1 21722:1 21724:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:2 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:8 21836:4 21877:1 21881:5 21896:1 21907:2 21913:1 21924:1 21926:1 21941:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22081:1 22093:1 22137:1 22143:1 22150:2 22151:1 22154:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22275:1 22280:1 22286:2 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:1 22497:1 22509:1 22535:4 22536:8 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22642:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:3 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22823:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22867:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:2 23057:1 23073:1 23074:2 23086:1 23091:2 23092:1 23109:3 23123:1 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:3 23225:1 23245:1 23251:2 23267:1 23273:1 23284:3 23291:2 23294:1 23300:1 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:5 23546:1 23583:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:1 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23791:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:5 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:2 24011:1 24022:2 24023:1 24028:1 24030:1 24031:1 24032:1 24034:2 24038:2 24043:1 24054:2 24071:1 24072:1 24083:1 24084:1 24089:2 24094:1 24119:1 24130:2 24132:1 24140:3 24152:4 24158:1 24161:1 24164:1 24165:1 24166:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24236:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:2 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:8 24340:1 24352:1 24355:1 24364:1 24395:2 24397:1 24399:1 24405:8 24409:2 24410:1 24413:1 24414:5 24417:1 24427:3 24443:1 24445:1 24453:1 24468:1 24469:12 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:2 24590:1 24599:2 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24640:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:3 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24829:1 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 25009:1 25017:2 25023:16 25047:2 25049:2 25057:1 25079:1 25092:13 25094:2 25100:1 25103:1 25113:1 25118:1 25119:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25230:1 25240:7 25249:1 25256:2 25266:1 25273:4 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25353:1 25373:1 25375:1 25380:1 25382:2 25399:10 25415:3 25444:1 25463:3 25497:1 25517:1 25522:1 25530:1 25543:1 25553:1 25557:1 25567:2 25578:1 25581:1 25591:37 25609:1 25614:3 25616:3 25618:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:6 25755:1 25768:3 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25863:1 25909:1 25911:3 25925:3 25936:1 25949:1 25973:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26067:1 26093:1 26115:38 26126:1 26142:3 26143:2 26152:1 26163:2 26175:1 26177:1 26182:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26225:1 26246:1 26257:1 26263:1 26270:1 26273:1 26277:1 26285:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:3 26370:1 26395:2 26402:1 26423:1 26454:1 26460:1 26484:1 26487:2 26507:5 26509:1 26511:2 26522:1 26538:1 26540:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26783:1 26802:1 26804:3 26808:1 26823:1 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:1 26883:1 26891:1 26903:1 26922:1 26926:1 26942:1 26944:1 26946:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27012:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27117:1 27119:1 27121:7 27128:2 27139:2 27141:2 27144:3 27150:1 27158:1 27161:1 27179:1 27191:1 27197:3 27199:1 27204:1 27228:1 27238:10 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27300:1 27310:2 27324:1 27342:1 27352:1 27354:1 27362:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27452:1 27458:1 27460:1 27468:1 27471:2 27475:4 27479:1 27482:1 27500:1 27507:1 27519:2 27529:1 27538:1 27545:1 27576:1 27581:3 27584:1 27585:2 27594:1 27595:1 27596:1 27599:3 27603:5 27607:1 27608:1 27610:2 27629:1 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27737:1 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27808:1 27820:1 27821:1 27828:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:3 27951:1 27952:1 27979:1 27987:3 27988:1 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28069:2 28070:1 28109:1 28111:1 28123:1 28126:2 28147:2 28176:1 28178:1 28185:1 28240:1 28243:1 28275:1 28280:2 28282:1 28283:1 28284:2 28285:6 28304:1 28313:6 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28405:1 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28484:1 28490:1 28494:1 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:2 28556:1 28559:2 28577:1 28584:2 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28801:1 28807:4 28808:1 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:15 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 28969:1 29016:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:3 29107:1 29122:3 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:3 29316:1 29319:1 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:12 29392:1 29395:1 29400:1 29405:1 29410:1 29416:3 29429:1 29430:1 29439:1 29442:1 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:2 29534:1 29542:1 29551:1 29595:1 29607:2 29616:1 29635:2 29637:1 29654:3 29672:2 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:4 29753:1 29755:1 29756:4 29769:1 29771:1 29776:1 29790:1 29793:2 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29865:1 29874:1 29879:1 29893:1 29894:1 29906:1 29907:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30001:1 30009:1 30020:1 30038:2 30048:1 30061:1 30069:2 30071:6 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30164:1 30167:1 30169:2 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:1 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30269:1 30271:1 30281:1 30296:1 30321:1 30348:1 30354:2 30357:1 30362:2 30364:1 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:6 30428:2 30429:2 30430:2 30441:2 30470:1 30473:2 30477:1 30499:2 30501:1 30503:1 30512:1 30520:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:10 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:3 30712:1 30714:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30813:1 30816:1 30817:2 30820:1 30821:2 30828:3 30843:2 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30931:1 30936:4 30968:1 30971:1 30973:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31153:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:5 31266:3 31268:8 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31346:1 31353:1 31358:1 31362:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:5 31472:1 31476:1 31485:1 31493:2 31503:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:3 31562:1 31565:1 31569:1 31570:3 31581:1 31587:15 31588:2 31590:1 31594:1 31602:1 31612:1 31620:6 31630:1 31631:6 31655:1 31682:1 31702:1 31705:1 31709:5 31723:1 31724:1 31739:1 31742:1 31743:2 31747:12 31754:3 31761:1 31765:1 31768:1 31779:2 31780:1 31791:1 31794:14 31803:2 31847:1 31854:2 31856:2 31864:1 31875:1 31886:1 31887:1 31890:1 31894:1 31896:2 31947:1 31958:2 31993:2 32001:1 32015:1 32017:1 32021:1 32025:1 32035:1 32051:1 32056:46 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:13 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32253:1 32277:1 32291:1 32308:3 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32629:1 32636:3 32643:1 32644:1 32645:3 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:10 32772:1 32774:2 32777:3 32799:1 32804:3 32818:6 32824:1 32831:1 32835:4 32837:1 32838:2 32839:2 32845:2 32849:38 32859:2 32887:2 32906:1 32911:1 32913:1 32932:1 32935:1 32936:1 32937:2 32941:2 32943:2 32944:5 32946:1 32969:1 32975:1 32976:2 32978:1 32987:2 32991:3 32999:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:2 58:1 71:1 75:1 76:1 78:1 80:1 89:1 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 190:2 196:2 203:2 205:1 211:1 215:1 225:1 227:1 232:1 233:1 239:1 245:1 253:3 265:1 269:1 270:1 284:1 291:2 294:1 308:4 313:6 314:1 316:2 330:2 331:1 335:1 336:2 369:2 376:1 418:1 420:4 431:1 432:2 434:1 439:1 440:1 444:1 447:1 450:1 466:2 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 564:1 565:4 569:1 573:1 579:1 584:1 603:2 610:2 618:1 625:1 626:1 638:1 639:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 716:1 723:6 735:1 744:38 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:3 822:2 831:1 832:1 838:2 842:2 855:3 859:1 862:1 891:2 908:2 910:1 912:3 915:2 918:1 920:2 921:3 942:1 965:4 975:1 982:3 987:1 992:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:6 1040:1 1049:1 1057:5 1064:1 1065:1 1075:2 1081:4 1084:12 1089:1 1090:3 1094:1 1101:2 1105:1 1106:2 1109:3 1127:2 1130:1 1133:3 1166:1 1168:3 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1247:2 1248:1 1250:1 1256:1 1260:1 1282:1 1291:1 1303:1 1305:4 1314:1 1332:1 1335:1 1358:1 1361:37 1363:1 1369:2 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:2 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:4 1429:2 1430:1 1436:1 1438:1 1439:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:4 1491:3 1508:2 1510:2 1511:1 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:11 1558:1 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:4 1678:2 1681:17 1684:1 1688:1 1698:1 1699:1 1700:1 1704:1 1706:1 1712:2 1714:2 1716:1 1738:1 1740:3 1746:2 1755:1 1756:1 1763:1 1764:1 1766:1 1768:6 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:3 1822:1 1838:1 1844:1 1848:1 1850:11 1858:1 1859:1 1860:1 1862:3 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1957:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:3 2050:2 2055:1 2056:1 2069:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:3 2104:1 2109:1 2113:2 2121:2 2128:3 2129:1 2149:1 2152:1 2153:1 2157:1 2160:1 2164:1 2167:1 2173:1 2174:2 2177:1 2186:1 2194:1 2206:8 2228:1 2231:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2273:1 2282:2 2298:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:2 2353:1 2354:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:11 2443:3 2447:1 2479:1 2483:2 2522:2 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:3 2576:2 2577:3 2579:1 2580:6 2581:1 2585:9 2587:5 2589:7 2595:5 2598:1 2599:3 2601:1 2603:1 2607:4 2612:4 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:3 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:2 2732:1 2733:1 2737:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:4 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2834:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2921:1 2926:1 2931:2 2948:1 2952:1 2966:2 2977:1 2978:1 3019:1 3027:1 3029:1 3034:1 3035:2 3044:1 3053:2 3059:3 3068:1 3069:2 3076:1 3077:1 3080:1 3089:3 3090:2 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:4 3223:2 3228:1 3238:1 3265:2 3271:1 3281:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:38 3316:1 3318:3 3319:1 3335:2 3338:2 3339:1 3349:1 3353:1 3356:2 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3414:1 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3483:1 3489:2 3493:1 3495:3 3501:1 3506:1 3542:3 3570:2 3595:1 3597:1 3648:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:2 3756:1 3757:2 3770:1 3774:3 3775:1 3781:1 3785:1 3787:4 3798:1 3803:1 3805:2 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3855:1 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3977:1 3979:1 3980:1 3984:2 3992:1 3995:1 4007:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4201:1 4204:1 4218:3 4219:2 4220:1 4224:3 4228:2 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4329:2 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:2 4409:1 4411:1 4417:3 4431:1 4434:1 4439:1 4458:1 4465:37 4466:2 4473:1 4484:2 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4551:1 4552:2 4556:4 4558:6 4571:2 4574:1 4577:2 4584:1 4588:6 4592:7 4593:2 4603:1 4604:2 4605:1 4619:1 4642:1 4644:1 4656:1 4665:1 4667:1 4668:2 4679:3 4682:1 4685:1 4695:1 4699:1 4728:1 4730:1 4731:2 4733:2 4736:1 4737:1 4742:1 4748:1 4757:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:4 4803:3 4809:1 4817:1 4848:1 4862:1 4864:1 4866:3 4890:2 4894:1 4897:1 4902:1 4906:2 4920:1 4927:2 4929:37 4930:1 4938:2 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:1 4983:1 4999:1 5001:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:8 5206:2 5230:2 5269:1 5303:6 5315:4 5321:1 5337:1 5342:6 5349:1 5365:1 5387:1 5403:1 5405:1 5411:1 5423:1 5437:1 5443:5 5447:2 5451:2 5452:1 5456:1 5459:1 5462:4 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5516:1 5518:1 5542:3 5545:2 5562:20 5563:2 5581:2 5585:1 5616:8 5626:2 5637:2 5645:1 5659:2 5660:1 5665:1 5679:1 5697:1 5714:4 5716:2 5719:5 5737:4 5738:6 5739:2 5742:1 5745:6 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:5 5773:1 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5863:1 5872:1 5889:1 5903:1 5911:1 5934:1 5957:1 5994:1 6009:1 6011:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:2 6106:2 6107:1 6134:1 6136:1 6143:1 6144:3 6157:1 6165:2 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6334:1 6344:1 6345:1 6351:1 6357:1 6359:1 6360:1 6370:2 6371:1 6373:2 6379:2 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:11 6439:1 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:2 6565:1 6571:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6628:1 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6708:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:1 6843:1 6847:1 6870:1 6875:1 6878:2 6901:2 6907:2 6915:3 6919:1 6925:1 6928:1 6932:1 6935:2 6936:5 6941:1 6943:1 6953:1 6956:1 6958:1 6959:1 6961:1 6963:1 6982:1 6987:1 6988:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:3 7065:1 7069:1 7100:2 7136:5 7139:2 7151:1 7155:1 7161:4 7167:2 7170:1 7183:4 7190:1 7192:1 7193:1 7201:1 7204:1 7212:1 7240:2 7245:1 7260:1 7261:1 7270:1 7273:1 7283:10 7288:1 7289:1 7295:2 7297:5 7299:2 7301:1 7302:1 7303:2 7304:1 7306:5 7307:4 7309:1 7310:1 7312:4 7313:9 7314:1 7317:2 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:3 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:3 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7703:1 7712:1 7715:1 7718:3 7720:1 7721:1 7738:3 7758:1 7774:3 7776:1 7783:1 7790:1 7805:1 7809:2 7815:3 7847:1 7854:1 7864:1 7884:1 7889:2 7903:2 7923:1 7927:1 7936:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:5 8030:1 8032:1 8041:2 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8128:1 8133:1 8138:2 8161:1 8181:2 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8273:1 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8391:1 8396:1 8402:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8634:1 8664:1 8670:1 8685:3 8699:13 8700:13 8708:1 8718:1 8723:1 8724:2 8725:1 8726:6 8728:1 8755:1 8759:4 8764:4 8769:1 8774:58 8780:1 8781:1 8784:2 8788:1 8794:19 8798:6 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8880:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:3 8966:3 8977:1 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:6 9032:1 9035:1 9041:1 9052:1 9079:1 9082:2 9097:2 9120:1 9180:1 9188:1 9226:2 9231:1 9241:1 9247:1 9254:3 9259:1 9274:2 9292:2 9293:1 9294:1 9306:1 9318:1 9320:37 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:20 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9415:1 9419:1 9430:1 9438:1 9456:47 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9645:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:3 9679:1 9681:1 9682:1 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9739:1 9747:3 9748:1 9753:1 9754:1 9765:2 9767:1 9768:2 9771:1 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:1 9863:2 9872:4 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:3 9968:1 9998:3 10000:1 10002:1 10023:2 10037:1 10045:1 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:2 10134:1 10136:4 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10261:1 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10370:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:2 10447:2 10449:2 10451:1 10459:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10498:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:9 10551:2 10552:2 10561:2 10571:1 10575:1 10589:3 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:3 10642:2 10649:1 10660:1 10682:1 10686:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:2 10725:1 10731:1 10735:1 10737:1 10747:1 10750:1 10756:2 10758:1 10759:11 10769:2 10770:12 10778:1 10787:1 10793:1 10797:1 10799:3 10802:1 10805:1 10813:1 10816:1 10818:3 10819:1 10821:1 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:2 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10946:1 10953:1 10977:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11085:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:2 11172:1 11188:1 11189:1 11210:37 11214:1 11218:1 11220:1 11225:1 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:2 11307:2 11312:1 11316:1 11329:1 11351:1 11357:5 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:2 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11535:1 11547:1 11549:1 11551:2 11563:1 11573:1 11581:1 11593:2 11596:3 11602:1 11606:1 11615:1 11616:1 11633:8 11650:2 11689:1 11718:1 11737:2 11742:1 11747:1 11748:1 11768:5 11781:1 11796:2 11812:1 11815:2 11822:1 11838:1 11839:1 11848:1 11853:1 11871:2 11872:8 11881:1 11891:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:5 12013:1 12025:1 12028:5 12029:1 12047:1 12067:2 12089:1 12095:3 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:8 12171:1 12180:1 12195:1 12201:1 12208:1 12212:2 12221:1 12230:1 12231:2 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:3 12277:1 12285:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:11 12403:1 12424:1 12425:1 12429:1 12432:1 12442:3 12444:1 12454:1 12458:3 12460:3 12464:3 12471:1 12475:1 12485:5 12494:1 12499:1 12506:1 12514:2 12518:2 12520:1 12521:1 12536:1 12540:1 12546:9 12556:1 12559:1 12571:1 12572:3 12575:4 12576:1 12589:4 12595:2 12600:1 12610:1 12622:1 12629:1 12630:1 12631:1 12640:6 12645:1 12648:1 12649:1 12650:1 12651:1 12657:1 12661:2 12670:1 12672:2 12675:1 12682:1 12707:1 12721:3 12722:1 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12867:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:5 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12938:1 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:10 13068:2 13069:2 13089:1 13096:1 13102:1 13120:2 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:1 13289:1 13292:6 13294:5 13297:2 13301:1 13303:5 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:9 13370:1 13371:1 13396:1 13397:1 13402:2 13408:1 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:4 13529:1 13539:1 13554:1 13568:1 13574:1 13575:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13750:1 13752:1 13755:1 13770:4 13786:1 13790:1 13797:1 13802:1 13808:1 13809:2 13839:1 13848:1 13856:1 13857:1 13860:2 13864:2 13865:1 13866:3 13874:6 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:3 14019:5 14035:1 14044:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:2 14222:1 14246:1 14255:1 14267:1 14270:2 14281:1 14288:1 14293:1 14356:1 14357:1 14366:1 14372:1 14379:1 14402:1 14405:1 14430:3 14433:38 14437:1 14439:1 14444:1 14447:5 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14520:1 14529:1 14540:1 14545:1 14549:1 14555:1 14557:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14679:1 14718:2 14731:3 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:2 14885:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:13 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:1 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:6 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15234:1 15261:1 15284:1 15285:1 15286:2 15296:1 15334:1 15338:1 15349:3 15354:4 15359:3 15379:1 15384:1 15387:2 15388:1 15389:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:3 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:13 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15538:1 15539:1 15540:1 15542:1 15543:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:2 15615:1 15634:1 15638:1 15642:1 15661:1 15664:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:14 15835:8 15864:1 15874:1 15894:1 15908:2 15914:1 15915:5 15923:2 15934:4 15935:1 15958:1 15983:1 15986:1 15999:1 16009:1 16011:3 16025:1 16026:2 16030:1 16044:1 16052:1 16057:2 16066:1 16080:1 16085:1 16115:4 16129:1 16158:1 16166:1 16188:1 16191:1 16195:1 16208:3 16221:2 16223:1 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16245:1 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:2 16375:2 16386:1 16390:1 16391:2 16394:1 16396:2 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:2 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16465:1 16479:1 16487:1 16505:38 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:2 16567:1 16604:1 16606:1 16609:5 16610:1 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16691:1 16692:1 16693:1 16718:6 16725:1 16737:1 16739:1 16742:1 16756:1 16771:1 16773:1 16774:1 16823:1 16846:2 16851:1 16854:2 16855:2 16858:1 16870:1 16887:1 16897:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:9 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:4 17059:1 17062:1 17071:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17173:1 17179:2 17183:1 17190:2 17208:2 17211:1 17252:3 17253:1 17261:1 17270:1 17281:1 17284:3 17306:1 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17369:1 17374:1 17375:1 17394:2 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:2 17543:9 17546:1 17552:2 17559:2 17566:1 17574:1 17596:1 17622:1 17641:1 17667:1 17671:1 17672:1 17679:1 17688:1 17692:1 17694:4 17698:2 17709:1 17712:1 17722:4 17736:1 17740:1 17743:1 17744:1 17751:1 17754:1 17755:5 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:2 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:5 17988:1 18028:1 18036:1 18039:1 18049:1 18065:1 18070:2 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:2 18143:1 18161:1 18165:2 18171:1 18173:3 18174:2 18176:1 18177:2 18200:13 18220:1 18227:1 18231:1 18232:1 18239:1 18250:4 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:3 18344:1 18350:4 18351:2 18353:1 18360:4 18361:2 18367:1 18368:1 18369:4 18370:1 18371:2 18374:1 18396:1 18409:2 18428:2 18449:1 18450:1 18455:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:2 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:4 18738:1 18746:2 18749:11 18750:1 18752:1 18760:1 18789:1 18790:1 18793:1 18795:1 18803:1 18825:2 18827:4 18829:1 18833:1 18834:1 18835:2 18862:1 18865:1 18874:1 18876:1 18878:1 18883:3 18887:1 18896:2 18913:1 18915:2 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:2 19043:1 19045:1 19046:1 19049:1 19054:51 19061:1 19062:3 19063:1 19068:1 19077:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19204:2 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19362:1 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19463:1 19478:1 19484:1 19515:1 19551:1 19556:1 19566:1 19579:2 19583:1 19588:1 19590:1 19598:1 19601:1 19602:2 19607:2 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:2 19666:1 19669:2 19674:2 19675:1 19677:2 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19750:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19820:1 19834:1 19846:1 19851:1 19864:1 19867:1 19869:1 19882:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19972:1 19978:1 19984:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:5 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:2 20192:8 20197:1 20201:2 20213:1 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:4 20406:2 20407:2 20408:1 20416:1 20426:1 20437:1 20449:2 20451:2 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20539:1 20545:5 20552:1 20605:1 20607:2 20610:1 20628:1 20640:2 20651:1 20668:1 20678:1 20685:1 20724:13 20734:1 20737:2 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20837:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20916:1 20928:1 20943:1 20957:1 20963:1 20967:1 20975:2808 20985:2 20989:1 20997:2 21007:1 21010:1 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21087:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:2 21212:1 21240:1 21243:1 21257:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21362:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21438:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21536:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21578:1 21585:1 21596:1 21621:1 21624:7 21653:5 21656:1 21663:1 21668:2 21674:2 21721:1 21722:1 21724:1 21727:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:2 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:8 21836:4 21877:1 21881:5 21896:1 21907:2 21913:1 21924:1 21926:1 21941:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22075:1 22081:1 22093:1 22137:1 22143:1 22150:2 22151:1 22154:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22275:1 22280:1 22286:2 22289:1 22297:1 22299:2 22301:1 22316:1 22326:4 22335:1 22351:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:2 22497:1 22509:1 22535:4 22536:9 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22577:1 22578:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22642:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:3 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22823:1 22826:5 22834:2 22848:1 22854:1 22855:1 22861:1 22867:1 22876:1 22880:1 22885:1 22902:1 22926:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:2 23057:1 23073:1 23074:2 23086:2 23091:2 23092:1 23109:3 23123:1 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:3 23225:1 23245:1 23251:2 23267:1 23273:1 23284:3 23291:2 23294:1 23300:2 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23438:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:5 23546:1 23583:1 23588:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:2 23722:1 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23789:1 23791:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:5 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:2 24011:1 24022:2 24023:1 24028:1 24030:1 24031:1 24032:1 24034:2 24038:2 24043:1 24054:2 24071:1 24072:1 24083:1 24084:1 24089:2 24094:1 24101:1 24119:1 24130:2 24132:1 24140:3 24152:4 24158:1 24161:1 24164:1 24165:1 24166:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24236:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24269:1 24279:4 24283:2 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:8 24340:1 24352:1 24355:1 24364:1 24395:2 24397:1 24399:1 24405:8 24409:2 24410:1 24413:1 24414:5 24417:1 24427:3 24443:1 24445:1 24453:1 24468:2 24469:12 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:4 24586:3 24590:1 24599:2 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24640:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:3 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24829:1 24832:1 24854:1 24863:1 24867:3 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24949:1 24957:1 24983:1 24990:2 24996:1 25009:1 25017:2 25023:16 25047:2 25049:2 25057:1 25079:1 25092:14 25094:2 25100:1 25103:1 25113:1 25118:1 25119:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25182:4 25184:2 25196:1 25230:1 25240:7 25249:1 25256:2 25266:1 25273:5 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25345:1 25353:2 25373:1 25375:1 25380:1 25382:2 25399:10 25415:3 25444:1 25463:3 25497:1 25498:1 25517:1 25522:1 25530:1 25543:2 25553:1 25557:1 25567:2 25578:1 25581:1 25591:37 25597:1 25609:1 25614:3 25616:3 25618:1 25619:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:6 25755:1 25768:3 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25863:1 25909:1 25911:3 25925:3 25936:1 25937:1 25949:1 25973:1 26010:1 26027:1 26028:1 26033:1 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26067:1 26093:1 26115:38 26126:1 26142:3 26143:2 26152:1 26163:2 26175:1 26177:1 26182:1 26183:1 26195:1 26199:1 26205:1 26207:2 26208:1 26219:2 26222:6 26225:1 26246:1 26257:1 26263:2 26270:1 26273:1 26277:1 26285:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:3 26370:1 26395:2 26402:1 26414:1 26423:1 26454:1 26460:1 26484:1 26487:3 26507:5 26509:1 26511:2 26522:1 26538:1 26540:1 26575:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:2 26685:1 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26783:1 26802:1 26804:3 26808:1 26823:2 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:2 26883:1 26891:1 26903:1 26922:1 26926:1 26938:1 26942:1 26944:1 26946:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27012:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27110:1 27117:1 27119:1 27121:7 27128:2 27139:2 27141:2 27144:3 27150:1 27158:1 27161:1 27179:1 27185:1 27191:1 27197:3 27199:1 27204:1 27228:1 27232:1 27238:10 27239:2 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27300:1 27310:2 27324:1 27342:1 27352:1 27354:1 27362:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27452:1 27458:1 27460:1 27468:1 27471:2 27475:4 27479:1 27482:1 27500:1 27507:1 27519:2 27529:1 27538:1 27545:1 27576:1 27581:4 27584:1 27585:2 27594:1 27595:1 27596:1 27599:3 27603:5 27607:1 27608:1 27610:2 27629:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27737:2 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27808:1 27820:1 27821:1 27828:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:4 27951:1 27952:1 27979:1 27987:3 27988:2 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28069:2 28070:1 28109:1 28111:1 28123:1 28126:2 28147:2 28176:1 28178:1 28185:1 28240:1 28243:1 28275:1 28280:2 28282:1 28283:1 28284:2 28285:6 28304:1 28313:6 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28405:1 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28484:2 28490:1 28494:2 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:3 28556:1 28559:2 28577:1 28584:2 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28801:1 28807:4 28808:1 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:15 28899:2 28911:1 28918:2 28936:2 28950:1 28961:1 28969:1 29016:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:3 29107:1 29122:3 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29246:1 29247:1 29259:2 29280:3 29292:1 29296:1 29306:3 29316:2 29319:2 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:15 29392:1 29395:1 29400:1 29405:1 29410:1 29416:3 29429:1 29430:1 29439:1 29442:2 29453:1 29469:1 29474:5 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:2 29534:1 29542:1 29551:1 29595:1 29607:2 29616:1 29635:2 29637:1 29654:3 29672:2 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:4 29753:1 29755:1 29756:4 29769:1 29771:1 29776:1 29790:1 29793:3 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29865:1 29874:1 29879:1 29893:1 29894:1 29906:1 29907:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30001:1 30009:1 30020:1 30038:2 30048:1 30055:1 30061:1 30069:2 30071:6 30073:1 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30164:1 30167:1 30169:3 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:2 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30269:1 30271:1 30281:1 30296:1 30309:1 30321:1 30348:1 30354:2 30357:1 30362:2 30364:1 30368:2 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:6 30428:2 30429:2 30430:2 30441:2 30470:1 30473:2 30477:1 30499:2 30501:1 30503:1 30512:1 30520:1 30531:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:10 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:3 30712:1 30714:1 30719:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30813:1 30816:1 30817:2 30820:1 30821:2 30828:4 30843:2 30855:1 30860:3 30861:1 30863:3 30864:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30931:1 30936:4 30963:1 30968:1 30971:1 30973:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31149:1 31153:1 31188:1 31197:1 31204:1 31242:1 31250:3 31251:2 31255:2 31256:1 31262:5 31266:3 31268:8 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31345:1 31346:1 31353:1 31358:1 31362:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:5 31472:1 31476:2 31485:1 31493:2 31503:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:3 31562:1 31565:1 31569:1 31570:3 31581:1 31587:15 31588:2 31590:1 31594:1 31602:1 31612:1 31620:6 31630:1 31631:6 31655:1 31669:1 31682:1 31702:1 31705:1 31709:5 31723:1 31724:1 31731:1 31739:1 31742:1 31743:2 31745:1 31747:12 31754:3 31761:1 31765:1 31768:1 31779:2 31780:1 31791:1 31794:14 31803:2 31847:1 31854:2 31856:2 31864:1 31875:1 31886:1 31887:1 31890:1 31894:1 31896:2 31947:1 31958:2 31993:3 32001:1 32015:1 32017:1 32021:2 32025:1 32035:1 32051:1 32056:47 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:5 32092:2 32094:1 32099:1 32124:1 32155:4 32159:13 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32253:1 32277:1 32291:1 32308:3 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32616:1 32629:1 32636:3 32643:1 32644:1 32645:3 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32741:1 32753:1 32756:1 32770:1 32771:11 32772:1 32774:2 32777:4 32799:1 32804:3 32818:7 32824:1 32831:1 32835:4 32837:1 32838:2 32839:2 32845:2 32849:38 32859:2 32887:2 32906:1 32911:1 32913:1 32932:2 32935:1 32936:1 32937:2 32941:2 32943:2 32944:5 32946:1 32969:1 32975:1 32976:2 32978:1 32987:2 32991:3 32999:1 33008:1 33014:1 33018:1 33021:2 33032:1
2 14:1 17:1 40:2 41:1 42:1 51:1 53:2 58:1 71:1 75:1 76:1 78:1 80:1 89:2 100:1 114:3 117:2 118:1 130:1 138:1 146:1 168:2 177:1 183:1 188:1 190:2 196:2 203:2 205:1 211:1 215:1 222:1 225:1 227:1 232:1 233:1 239:1 245:1 253:3 265:1 269:1 270:1 284:1 291:3 294:1 308:4 313:6 314:2 316:2 320:1 330:2 331:1 335:1 336:2 369:2 376:1 412:1 418:1 420:4 431:1 432:2 434:1 439:1 440:1 444:1 447:1 450:1 466:2 477:1 481:2 487:2 501:1 506:2 510:1 518:1 520:1 527:1 529:2 538:2 550:2 564:1 565:5 569:1 573:1 579:1 584:1 603:2 610:2 618:1 625:1 626:1 638:1 639:1 646:1 684:3 688:2 694:2 697:1 701:1 712:1 716:1 723:6 735:1 744:39 748:1 752:4 756:1 759:1 760:1 774:1 781:1 793:1 798:3 801:3 822:2 831:1 832:1 838:2 842:2 855:3 859:1 862:1 891:2 908:2 910:1 912:3 915:2 918:1 920:2 921:3 942:1 965:4 975:1 982:3 987:1 992:1 1003:1 1014:3 1015:7 1019:3 1020:1 1034:6 1040:1 1049:1 1057:5 1064:1 1065:1 1075:2 1081:4 1084:13 1089:1 1090:3 1094:1 1101:2 1105:1 1106:2 1109:4 1127:2 1130:1 1133:4 1166:1 1168:3 1173:1 1177:1 1189:1 1193:4 1195:1 1198:1 1240:1 1241:1 1247:2 1248:1 1250:1 1256:1 1260:1 1282:1 1291:1 1303:1 1305:4 1314:1 1332:1 1335:2 1358:1 1361:38 1363:1 1369:3 1372:2 1373:2 1375:1 1378:4 1381:1 1395:1 1405:3 1406:2 1408:2 1413:1 1417:1 1421:1 1426:1 1428:4 1429:2 1430:1 1436:1 1438:1 1439:1 1443:1 1447:1 1453:1 1462:2 1466:1 1467:4 1491:3 1508:2 1510:2 1511:1 1528:4 1540:1 1543:1 1546:1 1549:1 1556:2 1557:11 1558:1 1572:1 1583:1 1599:1 1615:3 1630:1 1632:2 1646:1 1653:1 1662:1 1671:1 1672:1 1674:4 1678:2 1681:18 1684:1 1688:1 1698:1 1699:2 1700:1 1704:1 1706:1 1712:2 1714:2 1716:1 1738:1 1740:3 1746:2 1755:1 1756:1 1763:1 1764:1 1766:1 1768:6 1781:1 1782:1 1798:1 1802:1 1803:2 1806:1 1815:3 1822:1 1838:1 1844:1 1848:1 1850:11 1858:1 1859:1 1860:1 1862:3 1879:1 1893:1 1901:1 1912:2 1915:3 1927:1 1930:1 1932:1 1947:1 1951:1 1952:1 1954:1 1957:1 1967:1 1993:1 2005:1 2009:1 2015:1 2018:1 2020:1 2029:1 2044:1 2047:3 2050:2 2055:2 2056:1 2069:1 2072:1 2074:1 2077:3 2080:1 2086:1 2090:1 2093:2 2097:3 2104:1 2109:1 2113:2 2121:2 2128:3 2129:1 2149:1 2152:1 2153:1 2157:1 2160:1 2164:1 2167:1 2173:1 2174:2 2177:1 2186:1 2194:1 2206:8 2228:1 2231:1 2236:1 2240:1 2243:2 2245:1 2262:1 2263:1 2265:1 2273:1 2282:2 2298:1 2307:1 2309:1 2310:2 2316:1 2318:1 2332:1 2336:1 2352:2 2353:1 2354:1 2356:1 2367:1 2372:1 2381:1 2389:1 2401:12 2443:3 2447:1 2479:1 2483:2 2522:2 2524:1 2538:1 2562:1 2565:1 2569:1 2570:2 2571:2 2573:4 2574:3 2576:2 2577:3 2579:1 2580:6 2581:1 2585:10 2587:5 2589:7 2595:5 2598:1 2599:3 2601:1 2603:1 2607:4 2612:4 2617:1 2618:1 2623:1 2626:1 2627:1 2628:1 2652:1 2653:1 2659:1 2667:1 2668:3 2669:1 2681:5 2683:1 2689:1 2708:2 2714:1 2731:2 2732:1 2733:1 2737:1 2738:1 2747:1 2749:4 2750:4 2755:1 2760:4 2776:2 2777:2 2779:4 2788:4 2789:1 2799:1 2802:1 2808:1 2820:4 2833:1 2834:1 2835:1 2836:1 2844:1 2869:1 2879:2 2880:2 2888:1 2895:1 2901:1 2921:1 2926:1 2931:3 2941:1 2948:1 2952:1 2966:2 2977:1 2978:1 3007:1 3019:1 3027:1 3029:1 3034:1 3035:2 3044:1 3053:2 3059:3 3068:1 3069:2 3076:1 3077:1 3080:1 3089:3 3090:2 3096:4 3097:1 3112:1 3116:1 3119:3 3122:4 3125:1 3128:3 3130:1 3143:1 3150:1 3153:1 3187:3 3194:5 3196:5 3199:1 3203:1 3206:4 3223:2 3228:1 3238:1 3265:2 3271:1 3281:1 3282:2 3285:1 3287:2 3294:1 3310:1 3313:17 3315:39 3316:1 3318:3 3319:1 3335:2 3338:2 3339:1 3349:1 3353:1 3356:2 3358:1 3365:4 3366:1 3370:1 3373:1 3384:8 3408:4 3411:2 3414:1 3422:1 3427:1 3451:2 3455:1 3458:1 3459:1 3460:1 3483:1 3489:2 3493:1 3495:4 3501:1 3506:1 3542:3 3570:2 3595:1 3597:1 3648:1 3655:1 3674:4 3680:1 3701:1 3707:1 3713:1 3731:2 3753:2 3756:1 3757:2 3770:1 3774:3 3775:1 3781:1 3785:1 3787:4 3798:1 3803:1 3805:2 3811:1 3817:1 3818:1 3820:1 3821:4 3840:2 3855:1 3870:1 3909:1 3912:1 3931:1 3936:1 3938:2 3953:2 3957:1 3965:1 3970:1 3971:1 3977:1 3979:1 3980:1 3984:2 3992:1 3995:1 4007:1 4029:1 4030:1 4033:1 4035:1 4041:1 4060:1 4061:1 4065:1 4074:1 4078:1 4081:1 4101:2 4112:1 4120:1 4122:1 4135:1 4143:1 4156:1 4184:1 4201:1 4204:1 4218:3 4219:2 4220:1 4224:3 4228:3 4249:1 4281:1 4292:3 4293:1 4322:1 4328:1 4329:2 4330:1 4336:2 4342:1 4348:1 4349:3 4362:1 4367:1 4373:2 4375:1 4376:2 4382:2 4406:1 4407:2 4409:1 4411:1 4417:3 4431:1 4434:1 4439:1 4458:1 4465:38 4466:3 4473:1 4484:2 4490:1 4497:1 4527:1 4531:1 4532:1 4534:1 4546:1 4549:1 4551:1 4552:2 4556:4 4558:6 4571:2 4574:1 4577:2 4584:1 4588:6 4592:7 4593:2 4603:1 4604:2 4605:1 4619:1 4642:1 4644:1 4656:1 4665:1 4667:1 4668:3 4679:3 4682:1 4685:1 4695:1 4699:1 4728:1 4730:1 4731:2 4733:2 4736:1 4737:1 4742:1 4748:1 4757:1 4772:1 4785:1 4788:1 4792:2 4793:1 4798:4 4803:3 4809:1 4817:1 4848:1 4862:1 4864:1 4866:3 4881:1 4890:2 4894:1 4897:1 4901:1 4902:1 4906:2 4920:1 4927:2 4929:38 4930:1 4938:2 4941:1 4942:1 4946:5 4956:1 4961:1 4964:1 4976:1 4978:2 4983:1 4999:1 5001:1 5034:2 5044:6 5062:1 5063:1 5072:1 5097:1 5105:3 5120:1 5122:2 5127:3 5128:1 5136:2 5137:2 5139:1 5143:1 5146:1 5168:1 5181:1 5197:9 5206:2 5230:2 5269:1 5303:6 5315:4 5321:1 5337:1 5342:6 5349:1 5365:1 5387:1 5403:1 5405:1 5411:1 5423:1 5437:1 5443:5 5447:2 5451:2 5452:1 5456:1 5459:1 5462:4 5474:1 5484:1 5485:3 5497:1 5514:1 5515:1 5516:1 5518:1 5542:3 5545:2 5562:21 5563:2 5581:2 5585:1 5616:9 5626:2 5637:2 5644:1 5645:1 5659:2 5660:1 5665:1 5679:1 5697:1 5714:4 5716:2 5719:5 5737:4 5738:6 5739:2 5742:1 5745:6 5752:1 5753:2 5754:4 5755:1 5762:1 5770:2 5772:6 5773:1 5774:4 5775:1 5783:1 5791:1 5814:1 5851:1 5856:1 5857:2 5863:1 5872:1 5889:1 5903:1 5911:1 5916:1 5934:1 5957:1 5994:1 6009:1 6011:1 6029:1 6041:1 6045:1 6046:2 6047:1 6067:1 6087:1 6091:1 6092:1 6105:2 6106:2 6107:1 6134:1 6136:1 6143:1 6144:4 6157:1 6164:1 6165:2 6190:1 6198:1 6199:2 6200:1 6204:1 6235:1 6240:1 6247:2 6262:1 6263:1 6272:3 6275:1 6306:1 6334:1 6344:1 6345:1 6351:1 6357:1 6359:1 6360:1 6370:2 6371:1 6373:2 6379:2 6392:1 6393:1 6395:1 6396:1 6414:2 6424:1 6427:1 6430:1 6436:2 6438:11 6439:1 6442:1 6448:2 6449:1 6453:1 6454:1 6460:1 6462:2 6483:2 6497:2 6504:1 6531:2 6539:2 6544:1 6565:1 6571:1 6573:1 6580:1 6593:2 6605:1 6608:1 6610:2 6623:2 6628:1 6646:1 6653:3 6660:1 6679:1 6692:1 6706:1 6708:1 6717:1 6727:1 6738:1 6740:1 6764:1 6768:1 6773:2 6784:3 6786:1 6807:1 6812:2 6843:1 6847:1 6870:1 6875:1 6878:2 6890:1 6901:2 6907:2 6915:3 6919:1 6925:1 6928:1 6932:1 6935:3 6936:5 6937:1 6941:1 6943:1 6953:1 6956:1 6958:1 6959:1 6961:1 6963:1 6982:1 6987:1 6988:1 6994:1 7012:1 7032:2 7033:2 7035:1 7040:1 7041:1 7044:1 7046:2 7047:1 7050:1 7052:1 7053:3 7059:2 7061:2 7063:2 7064:3 7065:1 7069:1 7100:2 7136:5 7139:2 7151:1 7155:1 7161:4 7167:2 7170:1 7183:4 7190:1 7192:2 7193:1 7201:1 7204:1 7212:1 7240:2 7245:2 7260:1 7261:1 7270:1 7273:1 7283:10 7288:1 7289:1 7295:2 7297:5 7299:2 7301:1 7302:1 7303:2 7304:1 7306:5 7307:4 7309:1 7310:1 7312:4 7313:9 7314:1 7317:3 7324:1 7328:1 7349:1 7366:1 7370:1 7371:2 7373:1 7390:1 7399:1 7411:1 7416:1 7443:1 7451:2 7452:1 7461:3 7466:3 7486:1 7497:3 7510:1 7513:1 7528:1 7538:1 7541:1 7543:1 7549:1 7558:1 7559:1 7566:1 7569:1 7574:1 7590:1 7592:2 7593:1 7604:1 7608:3 7617:1 7627:2 7640:1 7645:1 7661:1 7667:1 7694:1 7695:1 7703:1 7712:1 7715:1 7718:3 7720:1 7721:1 7738:3 7746:1 7758:1 7774:3 7776:1 7783:1 7790:1 7805:1 7809:2 7815:3 7847:1 7854:1 7864:1 7884:1 7889:2 7903:2 7923:1 7927:1 7936:1 7940:1 7950:1 8000:1 8001:1 8005:1 8007:1 8014:5 8030:1 8032:1 8041:2 8042:6 8090:1 8100:1 8102:1 8113:1 8118:1 8123:1 8125:2 8128:1 8133:1 8138:2 8156:1 8161:1 8181:2 8195:1 8196:1 8203:1 8224:3 8229:1 8258:1 8272:2 8273:1 8275:1 8281:1 8286:1 8288:1 8290:1 8297:1 8303:1 8334:1 8337:1 8345:1 8363:1 8364:2 8380:1 8391:1 8396:1 8402:1 8413:1 8418:2 8434:1 8435:1 8446:1 8453:1 8462:1 8466:6 8503:9 8505:1 8508:1 8545:1 8547:2 8554:1 8573:2 8589:1 8597:1 8600:1 8603:1 8624:4 8625:1 8634:1 8664:1 8666:1 8670:1 8685:3 8699:13 8700:13 8708:1 8718:1 8723:1 8724:3 8725:1 8726:6 8728:1 8755:1 8759:5 8764:4 8769:1 8774:60 8780:1 8781:1 8784:2 8788:1 8794:19 8798:6 8800:1 8804:1 8805:1 8808:1 8831:1 8832:4 8836:2 8842:2 8853:1 8861:1 8880:1 8898:6 8909:2 8914:1 8924:1 8950:1 8953:3 8966:4 8977:1 8978:1 8985:1 8989:4 8990:1 8994:1 9001:1 9019:1 9022:7 9032:1 9035:1 9041:1 9052:1 9064:1 9079:1 9082:2 9097:2 9120:1 9180:1 9188:1 9226:2 9231:1 9241:1 9247:1 9248:1 9254:3 9259:1 9274:2 9292:2 9293:1 9294:1 9306:1 9318:2 9320:38 9329:1 9330:1 9337:1 9339:1 9341:1 9346:1 9350:21 9352:4 9372:1 9374:1 9376:2 9392:1 9395:1 9398:1 9400:1 9403:2 9415:1 9419:1 9430:1 9438:1 9456:48 9473:1 9475:1 9504:2 9510:1 9513:1 9540:1 9546:1 9557:1 9580:2 9587:1 9589:1 9600:1 9624:1 9628:1 9645:1 9653:1 9654:1 9660:1 9661:2 9673:1 9674:1 9675:1 9678:3 9679:1 9681:1 9682:2 9687:1 9691:2 9692:5 9693:1 9709:1 9714:1 9720:2 9739:1 9747:3 9748:1 9753:1 9754:1 9765:2 9767:1 9768:2 9771:2 9774:1 9779:1 9780:2 9781:2 9785:1 9786:1 9795:1 9800:1 9812:1 9813:1 9815:1 9826:1 9829:1 9841:1 9845:2 9863:2 9872:4 9873:1 9895:2 9931:1 9938:1 9940:1 9942:1 9946:3 9968:1 9998:3 10000:1 10002:1 10023:2 10037:1 10045:1 10055:1 10082:2 10084:1 10085:1 10088:1 10091:1 10092:1 10094:2 10114:1 10117:4 10130:1 10133:2 10134:1 10136:4 10141:1 10151:3 10159:1 10160:1 10161:1 10191:1 10204:1 10210:3 10213:1 10215:2 10220:2 10250:1 10254:6 10261:1 10263:5 10270:1 10272:1 10280:2 10319:1 10343:4 10354:1 10370:1 10372:3 10373:1 10411:1 10413:4 10418:2 10419:1 10428:5 10430:3 10432:1 10434:1 10438:1 10444:2 10447:2 10449:2 10451:1 10459:1 10461:1 10467:1 10475:1 10476:1 10480:1 10486:1 10496:1 10498:1 10499:1 10500:1 10501:2 10503:1 10505:1 10513:1 10527:1 10531:1 10533:3 10545:9 10551:2 10552:2 10561:2 10571:1 10575:1 10589:3 10592:1 10603:1 10615:1 10616:1 10618:2 10638:1 10640:3 10642:2 10649:1 10660:1 10682:1 10686:1 10691:1 10698:1 10701:1 10702:2 10707:2 10710:2 10714:1 10717:1 10718:2 10719:1 10725:1 10731:1 10735:1 10737:1 10747:1 10750:1 10756:2 10758:1 10759:11 10769:2 10770:12 10778:1 10787:1 10793:1 10797:1 10799:3 10802:1 10805:1 10813:1 10816:1 10818:3 10819:1 10821:2 10823:1 10828:1 10846:1 10861:1 10875:1 10888:1 10898:1 10903:1 10919:1 10926:2 10928:1 10932:1 10933:1 10934:2 10935:1 10943:1 10946:1 10953:1 10977:1 10978:1 10995:1 10996:1 10998:1 11027:1 11053:6 11062:1 11063:1 11064:1 11069:1 11070:3 11073:4 11076:1 11082:1 11084:1 11085:1 11093:1 11109:1 11110:1 11124:1 11140:1 11155:2 11172:1 11188:1 11189:1 11210:38 11214:1 11218:1 11220:1 11225:2 11238:1 11249:1 11256:2 11269:1 11270:1 11271:1 11284:1 11286:1 11295:2 11297:2 11307:2 11312:1 11316:1 11329:1 11351:1 11357:5 11358:1 11361:1 11364:3 11369:1 11374:2 11380:2 11389:1 11399:1 11409:1 11420:2 11421:2 11435:2 11437:1 11441:1 11442:2 11451:2 11456:2 11462:1 11474:5 11478:5 11486:1 11492:1 11493:3 11495:1 11497:1 11508:1 11529:5 11535:1 11547:1 11549:1 11551:2 11563:1 11573:1 11581:1 11593:2 11596:3 11597:1 11602:1 11606:1 11615:1 11616:1 11633:8 11650:2 11689:1 11718:1 11737:2 11742:1 11747:1 11748:1 11768:5 11781:1 11796:2 11812:1 11815:2 11822:1 11838:1 11839:1 11848:1 11853:1 11871:2 11872:8 11881:1 11891:1 11910:1 11922:3 11942:1 11966:1 11967:1 11983:1 12006:5 12013:1 12025:1 12028:5 12029:2 12047:1 12067:2 12089:1 12095:3 12111:1 12118:1 12121:2 12149:1 12151:5 12158:2 12161:8 12171:1 12180:1 12195:1 12201:1 12208:1 12212:2 12221:1 12230:1 12231:2 12236:1 12240:7 12247:1 12258:1 12262:1 12264:1 12276:3 12277:1 12285:1 12303:1 12317:1 12335:1 12336:1 12367:1 12402:11 12403:1 12424:1 12425:1 12429:1 12432:1 12442:3 12444:1 12454:1 12458:3 12460:3 12464:3 12471:2 12475:1 12485:5 12494:1 12499:1 12506:1 12514:2 12518:2 12520:1 12521:1 12536:1 12540:1 12546:10 12556:1 12559:1 12564:1 12571:1 12572:3 12575:4 12576:1 12589:4 12595:2 12600:1 12610:1 12622:1 12629:1 12630:1 12631:1 12640:6 12645:1 12648:1 12649:1 12650:2 12651:1 12657:1 12661:2 12670:1 12672:2 12675:1 12682:1 12707:1 12721:3 12722:1 12744:1 12746:1 12756:1 12761:1 12765:1 12768:1 12788:1 12791:3 12800:1 12841:2 12857:1 12858:2 12864:2 12866:1 12867:1 12875:1 12876:1 12878:4 12880:1 12883:2 12885:1 12889:1 12893:1 12901:2 12902:6 12903:1 12904:1 12906:1 12908:1 12912:1 12931:1 12934:3 12938:1 12974:1 12978:5 13004:1 13022:1 13027:2 13033:1 13036:1 13040:1 13047:1 13048:1 13056:10 13068:2 13069:2 13089:1 13096:1 13102:1 13120:2 13121:1 13126:1 13131:1 13148:1 13149:1 13162:2 13179:1 13182:2 13188:2 13204:1 13213:1 13216:6 13239:1 13241:1 13243:1 13246:1 13251:1 13257:3 13273:1 13274:1 13277:2 13278:1 13282:2 13289:1 13292:7 13294:5 13297:2 13301:1 13303:6 13307:1 13329:1 13334:1 13340:2 13352:1 13358:2 13362:1 13365:9 13370:1 13371:1 13396:1 13397:1 13402:2 13408:1 13414:1 13446:1 13462:3 13467:1 13468:1 13478:4 13484:1 13491:2 13523:1 13527:4 13529:1 13539:1 13554:1 13568:1 13574:2 13575:1 13577:1 13594:1 13595:1 13625:1 13636:1 13638:1 13660:1 13661:2 13683:1 13698:1 13723:1 13725:1 13740:1 13747:3 13750:1 13752:1 13755:1 13770:4 13786:1 13790:1 13797:1 13802:1 13808:1 13809:2 13839:1 13848:1 13856:1 13857:1 13860:3 13864:2 13865:1 13866:3 13868:1 13874:6 13875:1 13879:1 13886:1 13898:1 13906:1 13910:1 13916:1 13918:1 13955:1 13975:1 13983:1 13998:1 14016:3 14019:5 14035:1 14044:1 14056:1 14092:1 14096:2 14108:1 14127:2 14158:1 14167:1 14180:1 14193:1 14201:3 14216:1 14221:2 14222:1 14246:1 14255:1 14267:1 14270:2 14281:1 14288:1 14293:1 14356:1 14357:1 14366:1 14372:1 14379:1 14402:1 14405:1 14430:3 14433:39 14437:1 14439:1 14444:1 14447:6 14449:1 14455:1 14491:6 14502:1 14512:2 14516:1 14520:1 14529:1 14540:1 14545:1 14549:1 14555:1 14557:1 14558:1 14560:1 14585:2 14586:1 14588:2 14599:1 14623:1 14632:1 14642:1 14646:2 14649:1 14654:1 14658:1 14660:1 14669:1 14679:1 14718:2 14731:3 14741:1 14758:1 14767:2 14773:1 14794:1 14808:1 14816:1 14818:1 14822:1 14837:1 14862:1 14875:1 14884:2 14885:1 14892:1 14901:1 14903:1 14907:1 14913:1 14915:1 14916:1 14928:1 14935:13 14940:4 14942:1 14943:3 14954:1 14955:1 14964:2 14973:1 14978:1 14997:1 14998:1 15051:1 15055:2 15066:1 15082:1 15085:1 15089:1 15093:2 15096:2 15099:6 15106:6 15116:1 15141:1 15144:1 15170:1 15171:1 15181:14 15185:1 15193:1 15204:1 15214:1 15222:1 15234:1 15261:1 15284:1 15285:1 15286:2 15296:1 15334:1 15338:1 15349:3 15354:4 15359:3 15379:1 15384:1 15387:2 15388:1 15389:1 15394:1 15407:1 15416:2 15421:2 15428:1 15435:1 15439:1 15440:1 15454:3 15459:1 15469:2 15487:1 15492:1 15496:2 15498:3 15499:1 15501:1 15503:1 15507:1 15509:13 15510:1 15511:1 15513:2 15534:1 15536:2 15537:1 15538:1 15539:1 15540:1 15542:1 15543:1 15545:6 15549:1 15551:1 15555:1 15557:2 15576:1 15584:1 15591:1 15592:1 15595:2 15615:1 15634:1 15638:1 15642:1 15661:1 15664:1 15666:1 15669:1 15673:2 15683:10 15685:1 15692:2 15700:1 15712:1 15714:1 15723:1 15725:1 15732:1 15734:1 15741:1 15746:1 15775:1 15777:2 15779:1 15787:5 15805:1 15812:1 15817:3 15821:1 15832:14 15835:8 15864:1 15874:1 15894:1 15908:2 15914:1 15915:5 15923:2 15934:4 15935:1 15958:1 15983:1 15986:1 15999:1 16009:1 16011:3 16025:1 16026:2 16030:1 16044:1 16052:1 16054:1 16057:2 16066:1 16080:1 16085:1 16115:5 16129:1 16158:1 16166:1 16188:1 16191:1 16195:1 16208:3 16221:2 16223:1 16224:1 16226:1 16235:2 16239:2 16241:2 16243:3 16245:1 16247:1 16253:1 16259:2 16260:1 16272:1 16275:2 16281:2 16290:1 16316:1 16317:1 16331:1 16333:1 16337:1 16338:2 16341:1 16352:1 16354:2 16355:1 16357:1 16373:2 16375:2 16386:1 16390:1 16391:2 16394:1 16396:2 16402:1 16404:1 16405:1 16408:1 16409:1 16410:1 16411:1 16417:1 16420:1 16423:1 16425:2 16441:1 16445:1 16449:2 16451:1 16457:1 16464:2 16465:1 16479:1 16487:1 16505:39 16506:1 16511:3 16515:1 16518:1 16524:1 16535:1 16541:1 16542:1 16553:2 16567:1 16604:1 16606:1 16609:6 16610:1 16619:1 16620:1 16629:2 16651:1 16656:1 16669:3 16673:1 16674:1 16675:1 16684:1 16691:1 16692:1 16693:1 16710:1 16718:6 16725:1 16737:1 16739:1 16742:1 16756:1 16765:1 16771:1 16773:1 16774:1 16823:1 16846:2 16848:1 16851:1 16854:2 16855:2 16858:1 16870:1 16887:1 16897:1 16914:1 16921:1 16928:1 16929:2 16930:2 16939:1 16947:1 16957:1 16961:2 16962:1 16965:1 16968:9 16973:1 17001:3 17027:1 17030:1 17031:1 17054:1 17057:4 17059:1 17062:1 17071:1 17075:1 17086:1 17089:1 17103:2 17105:1 17113:2 17116:3 17125:1 17126:1 17139:1 17148:2 17166:1 17173:1 17179:2 17183:1 17190:2 17208:2 17211:1 17222:1 17252:3 17253:1 17261:1 17270:1 17281:1 17284:3 17306:1 17308:1 17311:1 17326:1 17330:1 17335:1 17337:2 17342:1 17360:1 17365:2 17369:2 17374:1 17375:1 17394:2 17425:1 17438:1 17451:1 17456:1 17472:1 17473:3 17475:4 17484:1 17502:1 17505:1 17515:2 17543:9 17546:1 17552:2 17559:2 17566:1 17574:1 17596:1 17622:1 17641:2 17667:1 17671:1 17672:1 17679:1 17688:1 17692:1 17694:4 17698:2 17709:1 17712:1 17722:4 17736:1 17740:1 17743:1 17744:1 17751:1 17754:1 17755:6 17762:3 17767:2 17779:1 17780:4 17781:1 17784:1 17792:1 17793:2 17798:1 17805:3 17815:1 17869:1 17872:1 17880:5 17882:2 17907:4 17911:2 17921:1 17933:1 17936:1 17945:1 17955:1 17956:3 17969:1 17972:5 17988:1 18028:1 18036:1 18039:1 18049:1 18065:1 18070:2 18072:15 18077:2 18079:1 18084:1 18121:4 18124:3 18126:1 18130:3 18143:1 18161:1 18165:2 18171:1 18173:3 18174:2 18176:1 18177:2 18200:13 18220:1 18227:1 18231:1 18232:1 18239:1 18250:4 18284:1 18298:2 18314:1 18316:1 18318:1 18324:1 18326:1 18337:1 18338:3 18344:1 18350:4 18351:3 18353:1 18360:4 18361:2 18367:1 18368:1 18369:5 18370:1 18371:2 18374:1 18396:1 18409:2 18428:2 18449:1 18450:1 18455:1 18459:1 18463:1 18474:1 18489:1 18494:1 18496:1 18497:1 18528:1 18550:1 18554:1 18565:2 18577:1 18584:2 18606:1 18618:1 18619:1 18620:2 18626:1 18675:1 18689:2 18703:2 18716:1 18717:1 18733:4 18738:1 18746:2 18749:11 18750:1 18752:1 18760:1 18789:1 18790:1 18793:1 18795:1 18803:1 18815:1 18825:2 18827:4 18829:1 18833:1 18834:1 18835:2 18862:1 18865:1 18874:1 18876:1 18878:1 18883:3 18887:1 18896:2 18905:1 18913:1 18915:2 18916:1 18919:3 18930:1 18932:2 18950:1 19010:1 19015:1 19025:1 19026:1 19038:1 19039:2 19043:1 19045:1 19046:1 19049:1 19054:52 19061:1 19062:3 19063:1 19068:1 19077:1 19086:1 19090:1 19108:1 19110:4 19150:1 19182:1 19192:1 19193:1 19196:1 19204:2 19211:1 19222:1 19237:1 19245:3 19249:2 19261:1 19266:1 19279:1 19284:2 19315:1 19320:1 19326:1 19329:1 19331:1 19353:1 19358:2 19362:1 19377:1 19379:1 19390:1 19397:1 19398:1 19404:1 19425:1 19427:2 19432:2 19433:1 19434:1 19445:1 19462:1 19463:1 19478:1 19484:1 19515:1 19551:1 19556:1 19566:1 19579:2 19583:1 19588:1 19590:1 19598:2 19601:1 19602:2 19607:2 19612:1 19613:1 19619:1 19625:2 19627:1 19635:1 19654:2 19666:1 19669:2 19674:2 19675:1 19677:2 19679:1 19680:1 19685:1 19687:1 19691:2 19696:2 19724:1 19730:1 19750:1 19772:2 19775:1 19780:1 19784:2 19790:2 19796:1 19813:1 19819:1 19820:2 19834:1 19846:1 19851:1 19864:1 19867:1 19869:1 19882:1 19883:4 19890:2 19893:1 19914:1 19935:1 19938:1 19947:2 19950:2 19965:1 19968:1 19972:1 19978:1 19984:1 19999:1 20005:2 20012:1 20027:3 20032:2 20067:4 20069:1 20079:5 20091:1 20108:4 20109:1 20117:1 20124:1 20134:1 20138:1 20173:2 20192:8 20197:1 20201:2 20213:1 20236:3 20249:1 20267:2 20287:1 20288:1 20292:2 20298:1 20304:2 20307:1 20318:1 20368:1 20373:2 20401:1 20402:5 20406:2 20407:2 20408:1 20416:1 20426:1 20437:1 20446:1 20449:2 20451:2 20463:1 20464:1 20488:1 20494:1 20496:2 20501:1 20521:1 20529:1 20539:1 20545:5 20552:1 20605:1 20607:2 20610:1 20628:1 20640:3 20651:1 20668:1 20678:1 20685:1 20724:14 20734:1 20737:2 20744:1 20763:1 20770:2 20816:1 20821:1 20826:4 20833:1 20837:1 20846:1 20853:1 20855:1 20871:1 20873:1 20883:2 20890:1 20895:2 20899:1 20910:1 20916:1 20928:1 20943:1 20957:1 20963:1 20967:1 20975:2839 20985:2 20989:1 20997:2 21007:1 21008:1 21010:2 21027:1 21029:1 21048:1 21051:1 21053:1 21060:1 21062:1 21081:1 21087:1 21102:3 21110:1 21111:1 21116:3 21117:1 21152:1 21155:1 21162:1 21174:1 21181:1 21188:2 21201:2 21212:1 21240:1 21243:1 21257:1 21260:1 21264:2 21266:1 21269:1 21272:1 21291:1 21331:1 21337:1 21346:2 21362:1 21363:1 21371:1 21372:1 21412:2 21417:1 21418:1 21438:1 21452:1 21454:1 21472:1 21475:1 21488:1 21502:1 21508:2 21511:1 21514:1 21522:1 21536:1 21541:1 21552:1 21553:3 21554:2 21568:1 21572:1 21578:1 21585:1 21596:1 21621:1 21624:7 21653:5 21656:1 21663:1 21668:2 21674:2 21721:1 21722:1 21724:1 21727:1 21730:1 21736:1 21740:1 21746:1 21768:1 21774:1 21782:2 21789:1 21793:1 21804:1 21811:1 21815:1 21824:1 21834:8 21836:4 21877:1 21881:5 21896:1 21907:2 21913:1 21924:1 21926:1 21941:1 21942:23 21951:1 21969:2 21991:2 21992:1 21997:1 21998:1 21999:2 22023:1 22027:4 22028:1 22030:1 22031:2 22039:2 22051:1 22059:1 22062:2 22068:3 22069:1 22075:1 22081:1 22093:1 22137:1 22143:1 22150:2 22151:1 22154:1 22159:1 22162:4 22167:2 22187:1 22194:3 22196:1 22208:1 22220:1 22224:1 22228:1 22242:2 22246:1 22267:2 22275:1 22280:1 22286:2 22289:1 22297:1 22299:2 22301:1 22316:1 22326:5 22335:1 22351:1 22363:1 22364:1 22382:1 22385:1 22388:1 22409:1 22414:1 22415:3 22417:2 22418:1 22429:1 22453:1 22462:2 22476:1 22480:2 22490:1 22496:2 22497:1 22509:1 22535:4 22536:9 22542:1 22545:1 22549:1 22551:1 22563:1 22571:1 22577:1 22578:1 22581:2 22598:1 22606:2 22611:2 22617:3 22619:7 22622:1 22637:1 22642:1 22644:2 22645:6 22646:1 22648:1 22658:1 22659:1 22669:5 22689:3 22706:2 22712:1 22717:3 22726:1 22731:1 22733:6 22742:1 22743:1 22757:3 22764:1 22769:1 22774:2 22800:1 22815:1 22823:1 22826:5 22834:2 22848:1 22854:1 22855:2 22861:1 22867:1 22876:1 22880:1 22885:1 22902:1 22926:1 22937:1 22953:2 22964:1 22973:1 22977:1 22988:1 22995:1 23007:1 23046:6 23050:1 23056:2 23057:1 23073:1 23074:2 23086:2 23091:2 23092:1 23109:3 23123:1 23143:1 23158:1 23187:1 23206:1 23207:1 23219:1 23220:3 23225:1 23245:1 23251:2 23267:1 23273:1 23284:3 23291:2 23294:1 23300:2 23307:1 23318:2 23319:3 23325:1 23330:1 23332:2 23336:1 23337:2 23349:2 23351:1 23355:1 23366:1 23377:1 23381:1 23384:1 23392:2 23394:2 23397:1 23403:3 23417:1 23418:1 23419:1 23429:1 23431:1 23433:1 23438:1 23440:2 23443:2 23465:1 23471:1 23479:2 23481:2 23487:1 23489:4 23501:2 23502:1 23507:3 23509:2 23521:2 23530:1 23536:5 23546:1 23583:1 23588:1 23597:1 23614:1 23617:5 23620:1 23623:2 23628:1 23660:1 23661:1 23666:2 23671:3 23687:1 23690:1 23694:1 23704:2 23718:2 23722:2 23724:1 23736:2 23741:1 23749:1 23751:1 23775:1 23779:1 23787:1 23789:1 23791:1 23797:1 23800:1 23809:1 23816:1 23830:1 23843:1 23850:1 23856:1 23862:2 23864:1 23869:5 23882:2 23892:1 23906:3 23929:1 23936:1 23940:2 23943:1 23951:1 23952:1 23955:1 23971:1 23972:1 23977:1 23978:1 23980:4 23985:1 23998:1 24002:2 24011:1 24016:1 24022:2 24023:1 24028:1 24030:1 24031:1 24032:1 24034:2 24038:2 24043:1 24054:2 24071:1 24072:1 24083:1 24084:1 24089:2 24094:1 24101:1 24119:1 24130:2 24132:1 24140:3 24152:4 24158:1 24159:1 24161:1 24164:1 24165:1 24166:1 24180:2 24181:2 24200:1 24202:4 24212:1 24215:1 24230:1 24236:1 24238:1 24249:1 24250:1 24252:1 24260:1 24264:3 24266:1 24269:1 24279:4 24283:2 24284:1 24287:1 24300:1 24301:1 24322:1 24329:1 24333:8 24340:1 24352:1 24355:2 24364:1 24395:2 24397:1 24399:1 24405:8 24409:2 24410:1 24413:1 24414:5 24417:1 24427:3 24443:1 24445:1 24453:1 24468:2 24469:12 24484:1 24499:1 24542:1 24546:1 24548:1 24579:1 24581:2 24584:5 24586:3 24590:1 24599:2 24600:1 24601:1 24602:2 24611:2 24612:2 24619:1 24623:1 24625:1 24629:7 24630:1 24631:4 24636:1 24640:1 24644:1 24645:1 24648:1 24662:1 24682:1 24709:1 24714:1 24733:1 24743:3 24770:3 24783:2 24786:1 24790:4 24794:1 24809:2 24818:1 24829:1 24832:2 24854:1 24863:1 24867:4 24871:1 24878:1 24881:1 24891:1 24903:4 24914:1 24923:2 24928:2 24941:1 24949:1 24957:1 24983:1 24990:2 24996:1 25009:1 25017:2 25023:17 25047:2 25049:2 25057:1 25079:1 25092:14 25094:2 25100:1 25103:1 25113:1 25118:1 25119:1 25121:1 25128:1 25152:1 25154:4 25155:2 25159:1 25174:1 25182:4 25184:2 25196:1 25230:2 25240:7 25249:1 25256:2 25266:1 25273:5 25275:1 25281:1 25297:1 25301:1 25304:1 25316:1 25319:2 25345:1 25353:2 25373:1 25375:1 25380:1 25382:2 25399:10 25415:3 25444:1 25463:3 25497:1 25498:1 25517:1 25522:1 25530:1 25543:2 25553:1 25557:1 25567:2 25578:1 25581:1 25591:38 25597:1 25609:1 25614:3 25616:3 25618:1 25619:1 25623:1 25624:2 25626:1 25628:1 25634:1 25659:2 25665:3 25666:1 25669:1 25671:1 25677:3 25679:1 25680:1 25682:1 25689:1 25716:1 25718:1 25721:1 25724:1 25730:1 25748:1 25754:6 25755:1 25768:3 25778:2 25786:1 25792:4 25794:1 25797:1 25809:1 25822:1 25823:1 25848:1 25863:1 25909:1 25911:3 25925:4 25936:1 25937:1 25949:1 25973:1 26010:1 26027:1 26028:1 26033:2 26043:1 26045:3 26049:1 26053:1 26056:3 26058:1 26061:1 26062:2 26067:1 26093:1 26115:39 26126:1 26142:3 26143:2 26152:1 26163:2 26175:1 26177:1 26182:1 26183:1 26195:1 26199:1 26201:1 26205:1 26207:2 26208:1 26213:1 26219:2 26222:6 26225:1 26246:1 26257:1 26263:2 26270:1 26273:1 26277:1 26285:1 26286:1 26294:1 26300:3 26306:2 26311:1 26318:1 26330:2 26332:1 26339:1 26340:1 26355:1 26363:2 26364:3 26370:1 26395:2 26402:1 26414:1 26423:1 26454:1 26460:1 26484:1 26487:3 26507:5 26509:1 26511:2 26522:1 26527:1 26538:1 26540:1 26575:1 26586:1 26594:1 26598:1 26614:1 26625:2 26631:1 26639:1 26652:1 26653:2 26662:2 26675:3 26685:2 26696:1 26710:1 26715:3 26769:1 26770:1 26774:2 26778:1 26782:1 26783:1 26802:1 26804:3 26808:1 26823:2 26828:7 26830:1 26833:1 26854:1 26861:1 26863:2 26866:1 26875:1 26876:2 26883:1 26891:1 26903:1 26922:1 26926:1 26938:1 26942:1 26944:1 26946:1 26947:1 26971:1 26976:2 26996:1 27002:1 27008:1 27012:1 27019:3 27032:1 27036:2 27052:1 27060:2 27063:1 27076:2 27087:1 27110:1 27117:1 27119:1 27121:7 27128:2 27139:2 27141:2 27144:3 27150:1 27158:1 27161:1 27179:1 27185:1 27191:1 27197:3 27199:1 27204:1 27207:1 27228:1 27232:1 27238:10 27239:2 27247:1 27262:1 27273:1 27276:1 27277:1 27283:2 27288:1 27299:1 27300:1 27304:1 27310:2 27324:1 27342:1 27352:1 27354:1 27362:1 27363:1 27370:5 27384:1 27403:1 27415:2 27424:1 27451:1 27452:1 27458:1 27460:1 27468:1 27471:2 27475:4 27479:1 27482:1 27500:1 27507:1 27519:2 27529:1 27538:1 27545:1 27576:1 27581:4 27584:1 27585:2 27594:1 27595:1 27596:1 27599:3 27603:5 27607:1 27608:1 27610:2 27629:2 27634:1 27646:2 27669:3 27688:1 27693:2 27694:3 27714:1 27715:1 27718:1 27737:2 27739:2 27744:1 27750:1 27755:2 27764:4 27767:1 27785:1 27789:1 27790:1 27792:1 27794:1 27798:1 27799:1 27801:1 27806:1 27808:1 27820:1 27821:1 27828:1 27831:1 27832:1 27833:1 27846:1 27861:1 27863:1 27872:1 27926:1 27934:4 27951:1 27952:1 27979:1 27987:3 27988:2 27998:1 28001:1 28035:1 28050:5 28052:2 28053:2 28058:1 28064:1 28069:2 28070:1 28108:1 28109:1 28111:1 28123:1 28126:2 28147:2 28176:1 28178:1 28185:1 28240:1 28243:1 28275:1 28280:2 28282:1 28283:1 28284:2 28285:6 28304:1 28313:7 28317:3 28322:1 28345:1 28347:2 28349:2 28352:1 28396:1 28399:2 28405:1 28406:2 28416:1 28417:1 28426:1 28435:2 28441:1 28442:1 28451:2 28454:1 28457:1 28458:1 28471:4 28477:1 28484:2 28490:1 28494:2 28506:1 28513:1 28522:1 28542:1 28543:1 28547:4 28549:1 28552:1 28553:3 28556:1 28559:2 28577:1 28584:2 28587:1 28589:1 28592:1 28605:2 28618:1 28630:1 28646:1 28650:1 28652:1 28664:3 28671:1 28672:1 28678:1 28682:1 28687:2 28698:1 28705:1 28717:1 28720:1 28740:2 28757:1 28758:4 28769:4 28770:2 28780:1 28786:1 28793:5 28801:1 28807:4 28808:1 28819:2 28824:4 28853:1 28854:5 28861:1 28862:1 28878:1 28885:1 28887:16 28899:2 28904:1 28911:1 28918:2 28936:2 28950:1 28961:1 28969:1 29016:1 29024:1 29035:1 29036:1 29039:2 29042:3 29044:1 29052:1 29067:1 29071:2 29073:1 29078:1 29101:3 29107:1 29122:3 29161:1 29164:1 29166:1 29173:1 29183:1 29194:1 29205:1 29209:1 29210:1 29211:2 29213:1 29221:1 29223:1 29236:1 29239:1 29240:1 29246:1 29247:1 29259:2 29280:3 29291:1 29292:1 29296:1 29306:3 29316:2 29319:2 29324:1 29325:1 29327:2 29352:1 29353:1 29361:1 29362:4 29364:2 29373:2 29386:2 29388:1 29391:16 29392:1 29395:1 29400:1 29405:1 29410:1 29416:3 29429:1 29430:1 29439:1 29442:2 29453:1 29469:1 29474:6 29479:1 29489:1 29496:1 29503:1 29506:1 29509:2 29512:1 29516:1 29517:1 29532:1 29533:2 29534:1 29542:1 29551:1 29595:1 29607:2 29616:1 29635:2 29637:1 29654:3 29672:2 29676:1 29682:1 29683:1 29686:1 29689:1 29694:1 29736:4 29753:1 29755:1 29756:4 29769:1 29771:1 29776:1 29790:1 29793:3 29813:1 29814:2 29824:1 29828:2 29835:1 29837:2 29848:1 29865:1 29874:1 29879:1 29893:1 29894:2 29906:1 29907:1 29916:1 29922:1 29940:1 29949:1 29953:1 29996:1 30001:1 30009:1 30020:2 30038:2 30048:1 30055:1 30061:1 30069:2 30071:6 30073:1 30096:3 30101:1 30106:2 30110:1 30121:4 30134:1 30141:1 30155:4 30164:1 30167:1 30169:3 30186:1 30194:2 30197:7 30198:1 30200:2 30209:1 30210:2 30213:1 30220:2 30226:1 30232:3 30243:3 30249:2 30255:1 30258:1 30266:1 30267:1 30269:1 30271:1 30281:1 30296:1 30309:1 30321:1 30348:1 30354:2 30357:1 30362:2 30364:1 30368:2 30371:1 30373:1 30379:1 30383:3 30385:1 30387:1 30400:1 30407:1 30413:5 30421:6 30428:2 30429:2 30430:2 30441:2 30470:1 30473:2 30477:1 30499:2 30501:1 30503:1 30512:1 30520:1 30531:1 30549:2 30561:1 30563:1 30570:3 30582:2 30606:1 30608:1 30610:1 30619:1 30624:10 30655:1 30656:1 30675:1 30683:1 30690:1 30691:1 30698:2 30706:1 30707:1 30711:3 30712:1 30714:1 30719:1 30720:1 30725:3 30732:1 30741:1 30762:1 30766:2 30767:1 30770:1 30771:3 30778:1 30779:1 30798:1 30800:5 30801:1 30804:2 30808:3 30809:1 30813:1 30816:1 30817:2 30820:1 30821:2 30828:4 30843:3 30855:1 30860:3 30861:1 30863:3 30864:1 30869:1 30874:1 30882:1 30886:1 30895:1 30919:8 30924:1 30931:1 30936:4 30963:1 30968:1 30971:1 30973:1 30978:1 30979:1 30982:3 30985:1 30988:3 30991:1 30998:1 30999:1 31004:1 31006:1 31007:1 31014:1 31028:2 31029:2 31049:1 31052:1 31085:1 31086:1 31096:2 31116:1 31126:1 31133:1 31135:1 31149:1 31153:1 31188:1 31197:1 31204:1 31222:1 31242:1 31250:3 31251:2 31255:2 31256:1 31257:1 31262:5 31266:3 31268:8 31269:1 31271:1 31274:1 31291:1 31307:1 31322:1 31328:1 31333:1 31340:3 31345:1 31346:1 31353:1 31358:1 31362:1 31365:1 31381:1 31384:1 31405:2 31427:2 31430:1 31449:5 31468:1 31469:1 31472:1 31476:2 31485:1 31493:2 31503:1 31514:1 31515:1 31525:1 31526:1 31530:1 31547:4 31562:1 31565:2 31569:1 31570:3 31581:1 31587:16 31588:2 31590:1 31594:1 31602:1 31612:1 31620:6 31630:1 31631:6 31655:1 31669:1 31682:1 31702:1 31705:1 31709:5 31723:1 31724:1 31731:1 31739:1 31742:1 31743:2 31745:1 31747:12 31754:3 31761:1 31765:1 31768:1 31779:2 31780:1 31791:1 31794:14 31803:2 31847:1 31854:2 31856:2 31864:1 31875:1 31886:1 31887:1 31890:1 31894:1 31896:2 31947:1 31958:2 31993:3 32001:1 32015:1 32017:1 32021:2 32025:1 32035:1 32051:1 32056:48 32057:1 32077:1 32079:5 32082:1 32084:2 32090:2 32091:6 32092:2 32094:1 32099:1 32124:1 32155:4 32159:13 32160:1 32171:1 32183:1 32187:2 32193:1 32204:1 32214:1 32241:1 32244:2 32253:1 32277:1 32291:1 32308:3 32313:1 32316:2 32334:2 32338:1 32350:1 32365:1 32374:1 32383:5 32403:2 32416:5 32428:1 32479:3 32483:1 32485:1 32504:1 32517:1 32522:2 32533:1 32537:2 32539:1 32543:2 32544:1 32556:1 32595:1 32596:1 32599:2 32603:1 32611:1 32615:2 32616:1 32629:1 32636:3 32643:1 32644:1 32645:3 32658:1 32675:1 32678:1 32681:1 32693:1 32699:2 32710:1 32713:1 32717:1 32733:1 32738:1 32741:1 32753:1 32756:2 32770:1 32771:11 32772:1 32774:2 32777:4 32799:1 32804:3 32818:7 32824:1 32831:2 32835:4 32837:1 32838:2 32839:2 32845:2 32849:39 32859:2 32887:2 32906:1 32911:1 32913:1 32932:2 32935:1 32936:1 32937:2 32941:2 32943:2 32944:5 32946:1 32969:1 32975:1 32976:2 32978:1 32984:1 32987:2 32991:3 32999:1 33008:1 33013:1 33014:1 33018:1 33021:2 33032:1
|
d44636681acaa7a238b466a187e2662b3154ee59
|
36e294af022143c4ad0adaf1a40183c8114cb39a
|
/Scripts/Plot_Bar_Chart.sce
|
135b2172f44be63d01d60154794a282bdc9178d2
|
[] |
no_license
|
pflynn/Spectrum_analysis
|
d6388a46f686912a4d4a543f18b2a49063374506
|
eb31f3349fdf4f16227b25782d40937b126b297e
|
refs/heads/master
| 2016-09-05T17:10:44.896865
| 2011-06-27T15:01:20
| 2011-06-27T15:01:20
| 1,960,672
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 3,262
|
sce
|
Plot_Bar_Chart.sce
|
//clear window
clf();
// gets handel on current graphics window
a = gcf();
// sets the size of the graphics window to its maximum
a.figure_size = [1280,1024]
A (1,1)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 30MHz to 54MHz.csv'));
A (1,2)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 54MHz to 88MHz.csv'));
//A (1,3)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 108MHz to 138MHz.csv'));
//A (1,4)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 138MHz to 174MHz.csv'));
A (1,5)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 174MHz to 216MHz.csv'));
//A (1,6)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 216MHz to 225MHz.csv'));
//A (1,7)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 225MHz to 406MHz.csv'));
//A (1,8)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 406MHz to 470MHz.csv'));
//A (1,9)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 470MHz to 512MHz.csv'));
A (1,10)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 512MHz to 608MHz.csv'));
//A (1,11)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 608MHz to 698MHz.csv'));
//A (1,12)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 698MHz to 806MHz.csv'));
A (1,13)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 806MHz to 902MHz.csv'));
//A (1,14)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 902MHz to 928MHz.csv'));
A (1,15)= evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files'+'/SO 928MHz to 1000MHz.csv'));
barh(A)
a = gca();
a.y_ticks.labels = ["30MHz to 54MHz";"54MHz to 88MHz";"108MHz to 138MHz";"138MHz to 174MHz";"174MHz to 216MHz";"216MHz to 225MHz";"225MHz to 406MHz";"406MHz to 470MHz";"470MHz to 512MHz";"512MHz to 608MHz";"608MHz to 698MHz";"698MHz to 806MHz";"806MHz to 902MHz";"902MHz to 928MHz";"928MHz to 1000MHz"]
a.data_bounds = [0,0;100,15.5]
//a.x_ticks.locations = [0;12.5;25;37.5;50;62.5;75;87.5;100]
a.x_ticks.labels = ["0%";"10%";"20%";"30%";"40%";"50%";"60%";"70%";"80%";"90%";"100%"]
xset("font size", 3) // sets font size for axis values
xtitle("Measured Spectrum Occupancy - TSSG Rooftop - March to August 2011",'Percentage Occupancy (Over Time and Frequency)');
a.title.font_size = 5 // sets title fontsize to 5
a.x_label.font_size = 3 // sets x lable font size to 4
a.y_label.font_size = 3 // sets y lable font size to 4
a.x_label.font_style = 2; // sets font style for graph label
a.title.font_style = 4; // sets font style for graph title
// change directory to the desired location to save the plot files
cd('C:\Documents and Settings\pflynn\Desktop\Spectrum Occupancy Files');
// exporting the image to jpg file
xs2jpg(0,'Spectrum Occupancy.jpg');
xs2jpg(gcf(),'Spectrum Occupancy.jpg')
|
0c228f0ee4d9e253bd76daf735b132ded4f82455
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2240/CH29/EX28.12/EX28_12.sce
|
3fc70bf9b9a31d689c3ae79c86e9db480bd462d1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,071
|
sce
|
EX28_12.sce
|
// Grob's Basic Electronics 11e
// Chapter No. 28
// Example No. 28_12
clc; clear;
// Solve for Ib, Ic, Vce. Also, Construct a dc load line showing the valuse of Ic(sat), Vce(off), Icq, Vceq.
// Given data
Vcc = 12; // Supply voltage=12 Volts
Vbe = 0.7; // Base-Emitter Voltage=0.7 Volts
Rb = 390*10^3; // Base Resistor=390K Ohms
Rc = 1.5*10^3; // Collector Resistor=1.5K Ohms
B = 150; // Beta(dc)=150
Ib = (Vcc-Vbe)/Rb;
disp (Ib,'The Base Current in Amps.')
disp ('Appox 28.97 mAmps')
Icq = B*Ib;
disp (Icq,'The Collector Current in Amps');
disp ('Appox 4.35 mAmps')
Vceq = Vcc-(Icq*Rc);
disp (Vceq, 'The Voltage Collector-Emitter in Volts')
// For DC load line
Icsat = (Vcc/Rc);
Vceoff = Vcc;
Vce1=[Vceoff Vceq 0]
Ic1=[0 Icq Icsat]
//To plot DC load line
printf("Q(%f,%f)\n",Vceq,Icq)
plot2d(Vce1, Ic1)
plot(Vceq,Icq,".r")
plot(0,Icq,".r")
plot(Vceq,0,".r")
plot(0,Icsat,".b")
plot(Vceoff,0,".b")
xlabel("Vce in volt")
ylabel("Ic in Ampere")
xtitle("DC Load-line for Base-Biased Transistor Circuit")
|
34aec78745e5bcf5cc4ccf3ded9d07a0b5453e89
|
e463a1b5938cb65a6a9470c4c93a3fb10b05812d
|
/Codigo controle adptativo(1).sce
|
d3a2d89ee7b69d5c7d0fba4d4e4ec1e98c0b1b07
|
[] |
no_license
|
HilkenM/Sistemas-de-Controle
|
a7158daf2c700dfd5f580514a2b2a68154bc4dfa
|
29958758dcff56b53ec27ea6bf8a4031d9594cc1
|
refs/heads/main
| 2023-05-20T08:50:13.741512
| 2021-06-13T18:57:32
| 2021-06-13T18:57:32
| 312,902,288
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 878
|
sce
|
Codigo controle adptativo(1).sce
|
clc
clear
k1 = 1.5
k2 = 1.5
Kp =2
ap =1
//Definição das condições iniciais
e = zeros(1,100000);
p = zeros(1,100000);
i = zeros(1,100000);
u = zeros(1,100000);
r = ones(1,100000);
y = zeros(1,100000);
//Passo
//Cada 10000 amostras correspondem a 1 segundo
h=0.0001;
//condições iniciais do sistema
y(1,1)=0.5
u(1,1) = p(1,1) + i(1,1)
//número de amostras
n = 100000;
//laço rodando toda a planta
k=2;
for k=2:n;
z = k -1
y(1,k) = Kp*u(1,z)*h - ap*y(1,z)*h + y(1,z);
e(1,k)=r(1,k)-y(1,k);
p(1,k) = k1*e(1,k);
i(1,k) = i(1,z) + k2*h*e(1,z);
u(1,k)=p(1,k)+i(1,k);
end
subplot(2,2,1), title("Saída")
plot(y)
subplot(2,2,2), title("Sinal de controle")
plot(u)
subplot(2,2,3), title("Sinal de referência")
plot(r)
subplot(2,2,4), title("Erro")
plot(e)
|
d18fa993b8b86c8c0c725739c5a6f1b40768de97
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/821/CH4/EX4.28/4_28.sce
|
a7c4bff4198585cfb600634cbde8bdf0602d6ed4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 542
|
sce
|
4_28.sce
|
d=13.56;//density of mercury in gr per cm^3//
V=1/d;//Volume of mercury in cm^3//
D=0.07*10^-4;//Diameter of the globule in cm//
r=D/2;//radius of globule in cm//
printf('One globule of mercury occpies a volume of 1.33*3.14*r^3cm^3\nSurface area of one globule=4*3.14*r^2');
Vg=1.33*3.14*r^3;//volume of one globule in cm^3//
y=0.0738/Vg;//No of globules in 0.0738 volume//
printf('\nNo. of globules in 0.0738cm^3=y=%f',y);
SA=y*4*3.14*r^2;//Surface area of y globules in cm^2//
printf('\nSurface area of y globules=SA=%fcm^2',SA);
|
065d95073571fd56fff75c0e994522805b8a2ac1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1730/CH3/EX3.14/Exa3_14.sce
|
b17f98d1a98610419f7b428466c54c8f855430ec
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 232
|
sce
|
Exa3_14.sce
|
//Exa3.14
clc;
clear;
close;
// given data
Resistivity=9;// in milli-ohm-m
Resistivity=9*10^-3;// in ohm-m
miu=0.03;// in m^2/V-s
sigma=1/Resistivity;
R_H=miu/sigma;
disp("Half coefficient is : "+string(R_H)+" m^3/C");
|
339f0c1bc101211d773f29fb19ce07813200b12d
|
b29e9715ab76b6f89609c32edd36f81a0dcf6a39
|
/ketpicscifiles6/Shade.sci
|
ec4fa716ac314fda5de941d792ddddb4eb831b0a
|
[] |
no_license
|
ketpic/ketcindy-scilab-support
|
e1646488aa840f86c198818ea518c24a66b71f81
|
3df21192d25809ce980cd036a5ef9f97b53aa918
|
refs/heads/master
| 2021-05-11T11:40:49.725978
| 2018-01-16T14:02:21
| 2018-01-16T14:02:21
| 117,643,554
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,919
|
sci
|
Shade.sci
|
//
// 08.05.22
// 09.12.25
// 17.01.09 (available colorname or colorcode as 2nd arg)
function Shade(varargin)
global Wfile FID MilliIn;
Nargs=length(varargin);
Iroflg=0;
Kosa=1;
if Nargs>1
Iro=varargin(Nargs);
if type(Iro)==10
Iroflg=1;
if length(strchr(Iro,"{"))>0
Str="{\color"+Iro;
else
Str="{\color{"+Iro+"}";
end;
else
if length(Iro)==1
Kosa=Iro;
else
Iroflg=1;
if length(Iro)==4
Str='{\color[cmyk]{';
else
if length(Iro)==3
Str='{\color[rgb]{';
end;
end;
for J=1:length(Iro)
Str=Str+string(Iro(J));
if J<length(Iro)
Str=Str+',';
end
end
Str=Str+'}';
end;
end;
if Iroflg==1
if Wfile=='default'
mprintf('%s\n',Str+'%');
else
mfprintf(FID,'%s\n',Str+'%');
end;
end;
end;
Tmp=varargin(1);
Data=Kyoukai(Tmp);
for I=1:length(Data)
PL=Op(I,Data);
Mojisu=0;
for J=1:size(PL,1)
P=Doscaling(PL(J,:));
X=string(round(MilliIn*P(1)));
Y=string(-round(MilliIn*P(2)));
Str='\special{pa '+X+' '+Y+'}';
if Wfile=='default'
mprintf('%s',Str);
else
mfprintf(FID,'%s',Str);
end
Mojisu=Mojisu+length(Str);
if Mojisu>80
if Wfile=='default'
mprintf('%s\n','%');
else
mfprintf(FID,'%s\n','%');
end
Mojisu=0;
end
end
Str1='\special{sh '+string(Kosa)+'}';
Str2='\special{ip}%';
if Wfile=='default'
mprintf('%s',Str1);
mprintf('%s\n',Str2);
else
mfprintf(FID,'%s',Str1);
mfprintf(FID,'%s\n',Str2);
end
end
if Iroflg==1
Str='}%';
Fmt='%s\n';
if Wfile=='default'
mprintf(Fmt,Str);
else
mfprintf(FID,Fmt,Str);
end;
end;
endfunction
|
e4d9c08c6380d38a06c8bf22855828dbdfde82f5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/278/CH27/EX27.3/ex_27_3.sce
|
31bde74160c2f5569829b7942bc703eb253ac0ce
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 491
|
sce
|
ex_27_3.sce
|
//find
clc
//solution
//given
Wr=4000//N
Wa=5000//N
N=1600//rpm
Lh=5*300*10//hrs//bearing life in hours
L=60*N*Lh//rev
//W=XVWr + YWa
//from tale 27.4,..we get
X=0.56
Y=1
V=1
W=0.56*1*Wr +1*Wa//N
C=W*(L/10^6)^(1/3)
printf("dynamic load rating is,%f kN\n",C)
//from table 27.6, bearing numbr 315.
Co=72000//N
C1=90000//N
//Wa/Co=0.07,..
//from table 27.4
X1=0.56
Y1=1.6
W=0.56*1*Wr + 1.6*Wa//N
Cb=W*(L/10^6)^(1/3)
printf("basic dynamic load rating is,%f kN\n",Cb)
|
6c7c3457e24d1c64b34c6737fe48ab1b5756c010
|
717ddeb7e700373742c617a95e25a2376565112c
|
/1592/CH9/EX9.5/example_9_5.sce
|
4e148ec35995050da9c842dd867b1bd64177d344
|
[] |
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
| 494
|
sce
|
example_9_5.sce
|
//Scilab Code for Example 9.5 of Signals and systems by
//P.Ramakrishna Rao
clc;
clear;
clear z x y t T;
n=1;
for t=-10:0.01:10;
x(n)=exp(-t)*u(t);
n=n+1;
end
t=-10:0.01:10;
plot(t,x);
title('x(t)');
n=1;
for T=-10:0.1:0;
z(n)=integrate('exp(-t)*exp(T-t)','t',0,1000);
n=n+1;
end
n=1;
for T=0.1:0.1:10;
z(n+101)=integrate('exp(-t)*exp(T-t)','t',T,1000);
n=n+1;
end
figure(1);
T=-10:0.1:10;
plot(T,z);
title('Rxx(T)');
xlabel('t in seconds');
|
7a5a19a140c4dad9a5c9b9d47c06daabbc8cceba
|
e770dc26235168913bdcd5b2332f3a38a95a8bc7
|
/Toolbox Test/ac2poly/ac2poly2.sce
|
295e803fb5f5ea963273d335998b8b77971dc900
|
[] |
no_license
|
deecube/majorTom
|
f00eca4e2effff2c5eba746878f2c0842fe14680
|
84365fc032fc0ca44abac8330ec4ac6d85a85b3f
|
refs/heads/master
| 2021-01-21T14:04:23.323717
| 2016-05-23T06:05:31
| 2016-05-23T06:05:31
| 51,731,222
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 111
|
sce
|
ac2poly2.sce
|
//ac2poly
r = [5.0000 ;-1.5450 ;-3.9547];
[a,efinal] = ac2poly(r);
disp(a);
disp(efinal);
//Output
//
|
736832c568a1903847a10452794e02431b1a815f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3701/CH8/EX8.4/Ex8_4.sce
|
7d1ce900ecd032b094b3c2d8bec6b43597b5a446
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 485
|
sce
|
Ex8_4.sce
|
////Given
E=9 //Kinetic energy of a particle in ev
v0=10 //ev
E1=5 //ev
E2=15
E3=10 //ev
//calculation
//
R=((sqrt(E2)-(sqrt(E2-v0)))/(sqrt(E2)+(sqrt(E2-v0))))**2
T=1-R
//Result
printf("\n (a) E1 < vo, therefore R=1, T=0")
printf("\n (b) reflection coefficient R= %0.3f \n transmission coefficient T= %0.3f ",R,T)
printf("\n (c) E3=v0, therefore R=1 , T=0")
|
7bf23435526d4408e0cd805844f0b844cc06b681
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/593/CH5/EX5.3/ex5_3.sce
|
259144bd2eb6f4bc231676ea52391ef41e7e3897
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,015
|
sce
|
ex5_3.sce
|
clear;
//clc();
// Example 5.3
// Page: 91
printf("Example-5.3 Page no.-91\n\n");
//***Data***//
T_3=1155.2;//[R]
T_2=652.9;//[R]
T_1=787.5;//[R]
p_2=10;//[psia]
p_1=100;//[psia]
//******//
//Here we can write Eq. 5.9 as reported in the book in the form most often seen.
// log(p)=A-B/T
//Where A and B are constants to be determined from the pair of T and p values above.
//we simply write
//log(10)=A-B/652.9;
//log(100)=A-B/787.5;
// We have to solve the above two simultaneous equations having two vaiables A and B.
M=[1 -1/652.9;1 -1/787.5];
C=[log(10);log(100)];
X=inv(M)*C;
A=X(1);
B=X(2);
// By straightforward algebra we find the values of A and B. Thus, for 1155.2 R we have
p_3=exp(A-B/T_3);
printf("Vapuor pressure of water at given temperature is %f psia\n\n",p_3);
// p_3=3499 psia.
printf("It has been reported in the book that from table 5.1 we see that the correct value is 3000 psia. Thus, there is an error of 16%% in the predicted pressure.");
|
153a9dafbc01334def08fb2a21e9bef8de530e94
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2240/CH28/EX27.1/EX27_1.sce
|
434e0abff883511e3ab6f269f1206a839ec56834
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 563
|
sce
|
EX27_1.sce
|
// Grob's Basic Electronics 11e
// Chapter No. 27
// Example No. 27_1
clc; clear;
// For the diode curve, calculate the dc resistance, RF, at points A and B.
// Given data
Vf1 = 0.65; // Forward votage 1=0.65 Volts
If1 = 11*10^-3 // Forward current 1=11 mAmps
Vf2 = 0.7; // Forward votage 2=0.7 Volts
If2 = 22.5*10^-3 // Forward current 2=22.5 mAmps
Rf1 = Vf1/If1;
disp (Rf1,'The Forward Resistance at Point A in Ohms')
disp ('Appox 59.1 Ohms')
Rf2 = Vf2/If2;
disp (Rf2,'The Forward Resistance at Point B in Ohms')
|
51c515c3ae4a8cdd86cc57b13dadce1a639583a6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1223/CH8/EX8.7/Ex8_7.sce
|
1a1b986e011322e9343b1b2aa308a0894875c9e6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 359
|
sce
|
Ex8_7.sce
|
clear;
clc;
//Example 8.7
Vdd=10;
Rl=20;
K=0.2;
Vt=1;
vo=5;
iL=vo/20;
printf('\niL=%.2f A\n',iL)
Idq=0.05;
//Idq=K*(Vbb/2-Vt)
Vbb=(sqrt(Idq/K)+1)*2;
printf('\nVbb=%.2f V\n',Vbb)
iD=iL;
Vgsn=sqrt(iD/K)+Vt;
printf('\nVgsn=%.2f V\n',Vgsn)
Vsgp=Vbb-Vgsn;
printf('\nVsgp=%.2f V\n',Vsgp)
vi=vo+Vgsn-Vbb/2;
printf('\ninput voltage=%.2f V\n',vi)
|
beb5feda0a098b8690348de9f37bea42e9889ff4
|
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
|
/Trustworthy Wingman & R99 Apex Legends.sce
|
eaae3e7dae00ccfa13b0d4829b2a6fae4065343f
|
[] |
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
| 75,783
|
sce
|
Trustworthy Wingman & R99 Apex Legends.sce
|
Name=Trustworthy Wingman & R99 Apex Legends
PlayerCharacters=Legend
BotCharacters=Purple Bang.bot;Blue Path.bot;Purple Gibby.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Legend
AddedBots=Purple Bang.bot;Purple Gibby.bot;Blue Path.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=boxer.map
MapScale=4.1
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=50.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=Apex Legends
WeaponHeroTag=Wingman, R99
DifficultyTag=2
AuthorsTag=KovaaK
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Pretty accurate Wingman & R99 recoil patterns (with purple barrel & no spread applied). Face 3 types of enemies with different healths/armors. Settings: Color > Enemy Override = No; Weapons > R99/Wingman > Zoom FOV = (Your FOV x0.85) (< 1x HCOG FOV Equivalent)
GameVersion=2.0.0.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[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
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Purple Bang
DodgeProfileNames=MidStrafes Apex
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Blue Path
DodgeProfileNames=Short Strafes Apex
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=1
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Purple Gibby
DodgeProfileNames=Long Strafes Apex
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
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=true
CharacterProfile=3
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Legend
MaxHealth=300.0
WeaponProfileNames=Wingman;R99;Wingman Infinite;R99 Infinite;R99 No Recoil;R99 Infinite No Recoil;Wingman Infinite Auto;R99 No Barrel
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=720.0
MaxCrouchSpeed=500.0
Acceleration=12000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.050 Y=0.065 Z=0.604
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=50.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Launch.abilmelee;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=2
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.7
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=700.0
MaxCrouchSpeed=430.0
Acceleration=4000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.366 Y=0.067 Z=0.371
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=250.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=250.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=1
MaxHealth=165.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.7
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=650.0
MaxCrouchSpeed=400.0
Acceleration=4000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.050 Y=0.065 Z=0.604
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=290.0
MainBBRadius=50.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=290.0
ProjBBRadius=50.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=3
MaxHealth=235.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.7
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=750.0
MaxCrouchSpeed=460.0
Acceleration=4000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.366 Y=0.067 Z=0.371
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=290.0
MainBBRadius=82.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=290.0
ProjBBRadius=82.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=MidStrafes Apex
MaxTargetDistance=1450.0
MinTargetDistance=1100.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.45
MaxLRTimeChange=0.45
MinFBTimeChange=0.4
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.15
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.2
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.1
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=0.8
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Dodge Profile]
Name=Short Strafes Apex
MaxTargetDistance=700.0
MinTargetDistance=600.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=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.3
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Dodge Profile]
Name=Long Strafes Apex
MaxTargetDistance=5000.0
MinTargetDistance=1200.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.1
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
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Weapon Profile]
Name=Wingman
Type=Projectile
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.0
TimeBetweenShots=0.384615
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=60000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=60000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.5
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=1.6
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.15
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=20.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
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=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=8
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Law Bringer
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=Fission Dealer
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=3.0
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,2.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,2.0,-1.0,0.0
SpreadSSH=1.0,2.0,-1.0,0.0
SpreadSCH=1.0,2.0,-1.0,0.0
SpreadMSH=1.0,2.0,-1.0,0.0
SpreadMCH=1.0,2.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=10.0
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
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=10.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=2
PSRViewRecoilTracking=0.8
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.25
PSRResetDegreesPerSec=20.0
PSR0=3.2,1.5
PSR1=2.2,0.9
PSR2=2.2,0.75
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R99
Type=Hitscan
ShotsPerClick=1
DamagePerShot=11.0
KnockbackFactor=0.0
TimeBetweenShots=0.05556
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=1.5
MagazineMax=27
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=11.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=10.0
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=0.86
ADSStartDelay=0.0
ShootSoundCooldown=0.0001
HitSoundCooldown=0.0001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=10.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=27
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Machine Pistol
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Surge Pistols
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
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=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=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=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.17
PSRResetDegreesPerSec=38.0
PSR0=0.3655,0.1275
PSR1=0.3655,-0.0085
PSR2=0.3145,-0.1785
PSR3=0.51,0.136
PSR4=0.714,0.2125
PSR5=0.5865,0.2125
PSR6=0.527,-0.2125
PSR7=0.4845,0.1955
PSR8=0.493,-0.017
PSR9=0.442,-0.221
PSR10=0.4165,-0.3485
PSR11=0.3655,-0.068
PSR12=0.4675,-0.1275
PSR13=0.2295,0.085
PSR14=0.051,0.374
PSR15=0.1105,0.187
PSR16=0.0595,0.3485
PSR17=0.2125,-0.3485
PSR18=0.0,-0.391
PSR19=0.1105,-0.4165
PSR20=0.102,-0.289
PSR21=0.1275,-0.374
PSR22=0.051,0.2805
PSR23=0.0085,0.5015
PSR24=-0.0085,0.4165
PSR25=-0.0085,0.2295
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Wingman Infinite
Type=Projectile
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.0
TimeBetweenShots=0.384615
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=60000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=60000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.5
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=1.6
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.15
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=20.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
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=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=8
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Law Bringer
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=Fission Dealer
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=3.0
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,2.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,2.0,-1.0,0.0
SpreadSSH=1.0,2.0,-1.0,0.0
SpreadSCH=1.0,2.0,-1.0,0.0
SpreadMSH=1.0,2.0,-1.0,0.0
SpreadMCH=1.0,2.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=10.0
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
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=10.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=2
PSRViewRecoilTracking=0.8
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.25
PSRResetDegreesPerSec=20.0
PSR0=3.2,1.5
PSR1=2.2,0.9
PSR2=2.2,0.75
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R99 Infinite
Type=Hitscan
ShotsPerClick=1
DamagePerShot=11.0
KnockbackFactor=0.0
TimeBetweenShots=0.05556
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=1.5
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=11.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=10.0
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=0.86
ADSStartDelay=0.0
ShootSoundCooldown=0.0001
HitSoundCooldown=0.0001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=10.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=27
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Machine Pistol
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Surge Pistols
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
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=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=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=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.17
PSRResetDegreesPerSec=38.0
PSR0=0.3655,0.1275
PSR1=0.3655,-0.0085
PSR2=0.3145,-0.1785
PSR3=0.51,0.136
PSR4=0.714,0.2125
PSR5=0.5865,0.2125
PSR6=0.527,-0.2125
PSR7=0.4845,0.1955
PSR8=0.493,-0.017
PSR9=0.442,-0.221
PSR10=0.4165,-0.3485
PSR11=0.3655,-0.068
PSR12=0.4675,-0.1275
PSR13=0.2295,0.085
PSR14=0.051,0.374
PSR15=0.1105,0.187
PSR16=0.0595,0.3485
PSR17=0.2125,-0.3485
PSR18=0.0,-0.391
PSR19=0.1105,-0.4165
PSR20=0.102,-0.289
PSR21=0.1275,-0.374
PSR22=0.051,0.2805
PSR23=0.0085,0.5015
PSR24=-0.0085,0.4165
PSR25=-0.0085,0.2295
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R99 No Recoil
Type=Hitscan
ShotsPerClick=1
DamagePerShot=11.0
KnockbackFactor=0.0
TimeBetweenShots=0.05556
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=1.5
MagazineMax=27
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=11.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=10.0
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=0.079215
ADSMoveFactor=0.86
ADSStartDelay=0.0
ShootSoundCooldown=0.0001
HitSoundCooldown=0.0001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=10.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=27
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Machine Pistol
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Surge Pistols
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
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=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=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=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.17
PSRResetDegreesPerSec=38.0
PSR0=0.75,0.05
PSR1=0.75,0.05
PSR2=0.15,-0.15
PSR3=0.75,0.2
PSR4=0.75,0.2
PSR5=0.75,0.25
PSR6=0.6,0.35
PSR7=0.45,0.35
PSR8=0.75,-0.1
PSR9=0.6,-0.2
PSR10=0.46,-0.3
PSR11=0.5,0.0
PSR12=0.65,0.0
PSR13=0.15,0.45
PSR14=0.05,0.45
PSR15=0.05,0.45
PSR16=0.05,0.45
PSR17=0.1,-0.75
PSR18=0.1,-0.45
PSR19=0.15,-0.25
PSR20=0.35,-0.45
PSR21=0.15,-0.05
PSR22=0.3,0.35
PSR23=0.15,0.25
PSR24=0.0,0.25
PSR25=-0.05,0.25
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R99 Infinite No Recoil
Type=Hitscan
ShotsPerClick=1
DamagePerShot=11.0
KnockbackFactor=0.0
TimeBetweenShots=0.05556
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=1.5
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=11.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=10.0
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=0.86
ADSStartDelay=0.0
ShootSoundCooldown=0.0001
HitSoundCooldown=0.0001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=10.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=27
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Machine Pistol
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Surge Pistols
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
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=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=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=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.17
PSRResetDegreesPerSec=38.0
PSR0=0.725,0.025
PSR1=0.725,0.025
PSR2=0.125,-0.125
PSR3=0.725,0.175
PSR4=0.725,0.175
PSR5=0.725,0.225
PSR6=0.575,0.325
PSR7=0.425,0.325
PSR8=0.725,-0.075
PSR9=0.575,-0.175
PSR10=0.435,-0.225
PSR11=0.475,0.0
PSR12=0.625,0.0
PSR13=0.125,0.25
PSR14=0.025,0.25
PSR15=0.025,0.25
PSR16=0.025,0.25
PSR17=0.075,-0.45
PSR18=0.075,-0.25
PSR19=0.125,-0.25
PSR20=0.325,-0.25
PSR21=0.125,-0.025
PSR22=0.15,0.25
PSR23=0.075,0.2
PSR24=0.0,0.2
PSR25=-0.025,0.2
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Wingman Infinite Auto
Type=Projectile
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.0
TimeBetweenShots=0.384615
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=60000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=60000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.5
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=1.6
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.15
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=20.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
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=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=8
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Law Bringer
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=Fission Dealer
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=3.0
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,2.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,2.0,-1.0,0.0
SpreadSSH=1.0,2.0,-1.0,0.0
SpreadSCH=1.0,2.0,-1.0,0.0
SpreadMSH=1.0,2.0,-1.0,0.0
SpreadMCH=1.0,2.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=10.0
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
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=10.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=2
PSRViewRecoilTracking=0.8
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.25
PSRResetDegreesPerSec=20.0
PSR0=3.2,1.5
PSR1=2.2,0.9
PSR2=2.2,0.75
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R99 No Barrel
Type=Hitscan
ShotsPerClick=1
DamagePerShot=11.0
KnockbackFactor=0.0
TimeBetweenShots=0.05556
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=1.5
MagazineMax=27
AmmoPerShot=1
ReloadTimeFromEmpty=0.6
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=11.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=10.0
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=1.0
ADSMoveFactor=0.86
ADSStartDelay=0.0
ShootSoundCooldown=0.0001
HitSoundCooldown=0.0001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=10.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=27
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=102.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Machine Pistol
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Surge Pistols
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
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=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=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=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.17
PSRResetDegreesPerSec=38.0
PSR0=0.43,0.15
PSR1=0.43,-0.01
PSR2=0.37,-0.21
PSR3=0.6,0.16
PSR4=0.84,0.25
PSR5=0.69,0.35
PSR6=0.62,-0.25
PSR7=0.57,0.23
PSR8=0.58,-0.02
PSR9=0.52,-0.26
PSR10=0.49,-0.41
PSR11=0.43,-0.08
PSR12=0.55,-0.15
PSR13=0.27,0.1
PSR14=0.06,0.44
PSR15=0.13,0.22
PSR16=0.07,0.41
PSR17=0.25,-0.41
PSR18=0.0,-0.46
PSR19=0.13,-0.49
PSR20=0.12,-0.34
PSR21=0.15,-0.44
PSR22=0.06,0.33
PSR23=0.01,0.59
PSR24=-0.1,0.49
PSR25=-0.01,0.27
UsePerBulletSpread=false
PBS0=0.0,0.0
[Melee Ability Profile]
Name=Launch
MaxCharges=1.0
ChargeTimer=1.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.15
HurtboxRadius=2000.0
HurtboxDamage=0.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=500.0
FlatKnockbackVertical=2500.0
FlatKnockbackHorizontalMin=-1500.0
FlatKnockbackVerticalMin=1500.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=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
[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
-128.000000 16.000000 -320.000000
0.000000 16.000000 -320.000000
0.000000 16.000000 -336.000000
-128.000000 16.000000 -336.000000
-128.000000 0.000000 -320.000000
0.000000 0.000000 -320.000000
0.000000 0.000000 -336.000000
-128.000000 0.000000 -336.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
0.000000 16.000000 -192.000000
16.000000 16.000000 -192.000000
16.000000 16.000000 -320.000000
0.000000 16.000000 -320.000000
0.000000 0.000000 -192.000000
16.000000 0.000000 -192.000000
16.000000 0.000000 -320.000000
0.000000 0.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-128.000000 16.000000 -320.000000
-144.000000 16.000000 -320.000000
-144.000000 0.000000 -192.000000
-128.000000 0.000000 -192.000000
-128.000000 0.000000 -320.000000
-144.000000 0.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 16.000000 -176.000000
0.000000 16.000000 -176.000000
0.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-128.000000 0.000000 -176.000000
0.000000 0.000000 -176.000000
0.000000 0.000000 -192.000000
-128.000000 0.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
0.000000 16.000000 -176.000000
0.000000 0.000000 -192.000000
16.000000 16.000000 -192.000000
0.000000 0.000000 -176.000000
16.000000 0.000000 -192.000000
0.000000 16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-128.000000 0.000000 -176.000000
-128.000000 16.000000 -176.000000
-128.000000 16.000000 -192.000000
-144.000000 0.000000 -192.000000
-128.000000 0.000000 -192.000000
-144.000000 16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
-144.000000 16.000000 -320.000000
-128.000000 16.000000 -320.000000
-128.000000 16.000000 -336.000000
-144.000000 0.000000 -320.000000
-128.000000 0.000000 -336.000000
-128.000000 0.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000
brush
vertices
0.000000 16.000000 -320.000000
16.000000 16.000000 -320.000000
0.000000 0.000000 -336.000000
0.000000 0.000000 -320.000000
16.000000 0.000000 -320.000000
0.000000 16.000000 -336.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000
brush
vertices
0.000000 704.000000 -192.000000
16.000000 704.000000 -192.000000
16.000000 704.000000 -320.000000
0.000000 704.000000 -320.000000
0.000000 16.000000 -192.000000
16.000000 16.000000 -192.000000
16.000000 16.000000 -320.000000
0.000000 16.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-144.000000 704.000000 -192.000000
-128.000000 704.000000 -192.000000
-128.000000 704.000000 -320.000000
-144.000000 704.000000 -320.000000
-144.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-128.000000 16.000000 -320.000000
-144.000000 16.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-128.000000 704.000000 -320.000000
0.000000 704.000000 -320.000000
0.000000 704.000000 -336.000000
-128.000000 704.000000 -336.000000
-128.000000 16.000000 -320.000000
0.000000 16.000000 -320.000000
0.000000 16.000000 -336.000000
-128.000000 16.000000 -336.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-128.000000 704.000000 -176.000000
0.000000 704.000000 -176.000000
0.000000 704.000000 -192.000000
-128.000000 704.000000 -192.000000
-128.000000 16.000000 -176.000000
0.000000 16.000000 -176.000000
0.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
0.000000 704.000000 -176.000000
0.000000 16.000000 -192.000000
16.000000 704.000000 -192.000000
0.000000 16.000000 -176.000000
16.000000 16.000000 -192.000000
0.000000 704.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-128.000000 16.000000 -176.000000
-128.000000 704.000000 -176.000000
-128.000000 704.000000 -192.000000
-144.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-144.000000 704.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-144.000000 704.000000 -320.000000
-128.000000 704.000000 -320.000000
-128.000000 704.000000 -336.000000
-144.000000 16.000000 -320.000000
-128.000000 16.000000 -336.000000
-128.000000 16.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
0.000000 704.000000 -320.000000
16.000000 704.000000 -320.000000
0.000000 16.000000 -336.000000
0.000000 16.000000 -320.000000
16.000000 16.000000 -320.000000
0.000000 704.000000 -336.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0xff8f7d6a internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -736.000000
Bool8 teamA 0
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 352.000000 256.000000 224.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
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -544.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
|
83bd58136eb54293c67de51e460e316bb55c640d
|
b667735486117d0c7bb30d616ee6ed37032e947d
|
/online/labca3_7/documentation/xmlhelp/en_US/lcaDelay.sci
|
7ae5096c7b8eb0d35c73ca76e644ab98586c883d
|
[
"EPICS",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
KIT-IBPT/MML
|
6b8093aec421162c56ada56daa2d43a1b6977e62
|
4ad8cbb61a36a8b145cc6b17e0b5a3a6b4213c26
|
refs/heads/master
| 2021-08-28T07:39:45.693497
| 2021-08-04T13:14:01
| 2021-08-04T13:14:01
| 226,303,582
| 0
| 0
| null | 2019-12-06T10:28:11
| 2019-12-06T10:28:11
| null |
UTF-8
|
Scilab
| false
| false
| 1,070
|
sci
|
lcaDelay.sci
|
function lcaDelay
// Delay execution of scilab or matlab for the specified time to handle channel access activity (monitors).
//
// Calling Sequence
//
//lcaDelay(timeout)
//
// Description
//
// Delay execution of scilab or matlab for the specified time to handle
// channel access activity (monitors). Using this call is not needed under
// EPICS-3.14 since monitors are transparently handled by separate
// threads. These ``worker threads'' receive data from CA on monitored
// channels ``in the background'' while scilab/matlab are processing
// arbitrary calculations. You only need to either poll the library for
// the data being ready using the [1]lcaNewMonitorValue()) routine or
// block for data becoming available using [2]lcaNewMonitorWait.
//
// Parameters
//
// timeout
// A timeout value in seconds.
// __________________________________________________________________
//
//
// till 2018-02-28
//
//See also
//
// lcaNewMonitorValue 1. lcaNewMonitorValue
// lcaNewMonitorWait 2. lcaNewMonitorWait
endfunction
|
159f41eb65e9fccf0483d6f90c720e882ae42d86
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.3/Unix-Windows/scilab-2.3/macros/scicos/c_pass2.sci
|
45a0d02863fbee58e36e9cf8a1ade5a12d74d0a9
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 25,246
|
sci
|
c_pass2.sci
|
function cpr=c_pass2(bllst,connectmat,clkconnect,cor,corinv)
// cor ; correspondance table with initial block ordering
//
// bllst: list with nblk elts where nblk denotes number of blocks.
// Each element must be a list with 12 elements:
// 1- function name (in string form if fortran routine)
// 2- vector of number of inputs
// 3- vector of number of ouputs
// 4- vector of number of clock inputs
// 5- vector of number of clock outputs
// 6- vector (column) of continuous initial condition
// 7- vector (column) of discrete initial condition
// 8- vector (column) of real parameters
// 9- vector (column) of integer parameters
// 10- string: 'z' if zero-crossing, 'c' if continuous,
// 'd' discrete, 'l' logical
// 11- vector of size <number of clock outputs> including
// preprogrammed event firing times (<0 if no firing)
// or [for backward compatibility]
// boolean vector: i-th entry %t if initially output is fired
// 12- boolean vector (1x2): 1st entry for dependence on u, 2nd on t
//
// connectmat: nx4 matrix. Each row contains, in order, the block
// number and the port number of an outgoing scicopath,
// and the block number and the port number of the target
// ingoing scicopath.
//
// clkconnect: same as connectmat but for clock scicopaths.
//
// define some constants
//timer()
if bllst==list() then
message(['No block can be activated'])
cpr=list()
ok=%f;
return
end
done=%f
clkptr=1,cliptr=1,typl=[],dep_ut=[],ddep_ut=[]
nblk=size(bllst)
while ~done
//replace all logical blocks recursively
[clkptr,cliptr,typl,dep_ut,ddep_ut]=make_ptr(bllst,clkptr,cliptr,typl,..
dep_ut,ddep_ut)
[ok,done,bllst,connectmat,clkconnect,typl,corinv]=paksazi(bllst,..
connectmat,clkconnect,..
corinv,clkptr,cliptr,typl,dep_ut,ddep_ut)
if ~ok then
cpr=list()
return
end
end
//
//sort blocks by their types
// 1- blocks with continuous states
// 2- blocks with no states
// 3- logical blocks
// 4- blocks with discrete states
// 5- zero crossing blocks
[ind,nxblk,ncxblk,ndblk,ndcblk]=find_order_blocks(bllst)
if nxblk==0 & ndcblk<>0 then
message(['For using treshold, you need to have'
'a continuous system with state in your diagram.';
'You can include DUMMY CLSS block (linear palette)'
'in your diagram.']);
cpr=list()
ok=%f;
return
end
ncblk=nxblk+ncxblk;
nb=ncblk+ndblk;
nblk=nb+ndcblk;
[bllst,connectmat,clkconnect,cor,corinv]=..
re_order_blocks(bllst,connectmat,clkconnect,cor,corinv,ind)
//extract various info from bllst
[lnkptr,inplnk,outlnk,clkptr,cliptr,inpptr,outptr,..
xptr,zptr,rpptr,ipptr,xc0,xd0,rpar,ipar,dep_ut,ddep_ut,..
typl,typ_r,typ_c,funs,funtyp,initexe,labels,ok]=extract_info(bllst,..
connectmat,clkconnect)
if ~ok then
cpr=list()
return,
end
//form a matrix which gives destinations of each block
[outoin,outoinptr]=conn_mat(inpptr,outptr,inplnk,outlnk)
//
// discard duplicate calls to the same block port
// and group calls to different ports of the same block
// to compute execution table and its pointer.
[ordptr1,execlk]=discard(clkptr,cliptr,clkconnect)
// Set execution scheduling tables
[ordptr,ordclk,cord,iord,oord,zord,critev,ok]=scheduler(inpptr,..
outptr,clkptr,execlk,ordptr1,outoin,outoinptr);
if ~ok then
cpr=list()
return,
end
//form scicos arguments
izptr=ones(nblk+1,1)
simtp=['scs','funs','xptr','zptr','izptr','inpptr','outptr','inplnk',..
'outlnk','lnkptr','rpar','rpptr',..
'ipar','ipptr','clkptr','ordptr','execlk','ordclk','cord','oord',..
'zord','critev','ncblk','nxblk','ndblk','ndcblk','subscr','funtyp',..
'iord','labels']
subscr=[]
sim=tlist(simtp,funs,xptr,zptr,izptr,..
inpptr,outptr,inplnk,outlnk,..
lnkptr,rpar,rpptr,ipar,ipptr,clkptr,..
ordptr,execlk,ordclk,cord(:),oord(:),zord(:),..
critev(:),ncblk,nxblk,ndblk,ndcblk,subscr,funtyp,iord(:),labels);
//initialize agenda
[tevts,evtspt,pointi]=init_agenda(initexe,clkptr)
statetp=['xcs','x','z','iz','tevts','evtspt','pointi','outtb']
outtb=0*ones(lnkptr($)-1,1)
iz0=[]
state=tlist(statetp,xc0,xd0,iz0,tevts,evtspt,pointi,outtb);
cpr=list(state,sim,cor,corinv)
function [ordptr,ordclk,cord,iord,oord,zord,critev,ok]=..
scheduler(inpptr,outptr,clkptr,execlk,ordptr1,outoin,outoinptr);
//
t_var_blk=find(dep_ut(:,2));
//
//compute cord
vec=-ones(1,nblk)
vec(1:nxblk)=0*ones(1,nxblk) // continuous system with state
vec(t_var_blk)=0*t_var_blk // time varying blocks
[cord,ok]=tree2(vec,outoin,outoinptr,dep_ut)
//discard blocks with no outputs and insensitive to t and u.
cord=cord(:,1)
if cord<>[] then
cord(outptr(cord+1)-outptr(cord)==0)=[]
end
//
if cord<>[] then
cord(funtyp(cord)>99)=[]
end
//
//compute iord
vec=-ones(1,nblk)
vec(1:nxblk)=0*ones(1,nxblk) // continuous system with state
vec(t_var_blk)=0*t_var_blk // time varying blocks
no_tu_dep=find((~dep_ut(:,1))&(~dep_ut(:,2)));
vec(no_tu_dep)=0*no_tu_dep
[iord,ok]=tree2(vec,outoin,outoinptr,dep_ut)
//discard blocks with no outputs
iord=iord(:,1)
if iord<>[] then
iord(outptr(iord+1)-outptr(iord)==0)=[]
end
if iord<>[] then
iord(funtyp(iord)>99)=[]
end
//
if ~ok then
message('Algebraic loop detected; cannot be compiled.');
ordptr=[],ordclk=[],cord=[],iord=[],oord=[],zord=[],critev=[]
return,
end
ordclk=[]
ordptr2=ordptr1
for o=1:clkptr(nblk+1)-1
p_ut=dep_ut
p_ut(execlk(ordptr1(o):ordptr1(o+1)-1,1),:)=..
ddep_ut(execlk(ordptr1(o):ordptr1(o+1)-1,1),:)
t_varb=find(p_ut(:,2))
//
vec=-ones(1,nblk);
wec=zeros(1,nblk);
vec(execlk(ordptr1(o):ordptr1(o+1)-1,1)')=..
zeros(execlk(ordptr1(o):ordptr1(o+1)-1,1))';
wec(execlk(ordptr1(o):ordptr1(o+1)-1,1)')=..
execlk(ordptr1(o):ordptr1(o+1)-1,2)';
vec(t_varb)=0*t_varb
[r,ok]=tree2(vec,outoin,outoinptr,p_ut)
if ~ok then
message('Algebraic loop detected; cannot be compiled.');
ordptr=[],ordclk=[],cord=[],iord=[],oord=[],zord=[],critev=[]
return,
end
tt=find(wec(r(:,1))<>0)
r(tt,2)=wec(r(tt,1))'
if r<>[] then
r(outptr(r(:,1)+1)-outptr(r(:,1))==0,:)=[]
end
if r<>[] then
r((funtyp(r(:,1))>99),:)=[]
end
//
ordptr2(1+o)=size(r,1)+ordptr2(o)
ordclk=[ordclk;r]
end
ordptr=[ordptr1,ordptr2];
zord=cord
oord=cord
n=size(cord,1)
for iii=n:-1:1
i=cord(iii)
fl=%f
fz=%f
for ii=outoin(outoinptr(i):outoinptr(i+1)-1,1)'
//ii est un block affecte par changement de sortie du
//i-eme block de oord
// if ii<=nxblk | ii>nb then fz=%t;end
if ii>nb then fz=%t;end
if ii<=nxblk then fl=%t;end
if fl&fz then break,end
//si ii est un block integre (continu avec etat)
//il faut garder i
for l=iii+1:n
//si ii est un block qu'on a decide de garder
//il faut garder i
if ii==zord(l) then fz=%t; end
if ii==oord(l) then fl=%t; end
if fl&fz then break,end
end
if fl&fz then break; end
end
//mettre a zero si block doit etre supprimer
if ~fl then oord(iii)=0; end
if ~fz then zord(iii)=0; end
end
//supprimer les blocks a supprimer
oord=oord(oord<>zeros(oord))
zord=zord(zord<>zeros(zord))
//critev: vecteur indiquant si evenement est important pour tcrit
//ordclk_fut et ordptr3 sont l'analogue de ordclk et ordptr2 sauf
//pour le fait que la dependance en temps n'est pas pris en compte.
//Donc les blocks indiques sont des blocks susceptibles de produire
//des discontinuites quand l'evenement se produit
ordclk_fut=[]
ordptr3=ordptr1
for o=1:clkptr(nblk+1)-1
p_ut=dep_ut
p_ut(execlk(ordptr1(o):ordptr1(o+1)-1,1),:)=..
ddep_ut(execlk(ordptr1(o):ordptr1(o+1)-1,1),:)
vec=-ones(1,nblk);
vec(execlk(ordptr1(o):ordptr1(o+1)-1,1)')=..
zeros(execlk(ordptr1(o):ordptr1(o+1)-1,1))';
[r,ok]=tree2(vec,outoin,outoinptr,p_ut)
r=r(:,1)
if ~ok then
message('Algebraic loop detected; cannot be compiled.');
ordptr=[],ordclk=[],cord=[],iord=[],oord=[],zord=[],critev=[]
return,
end
ordptr3(1+o)=size(r,1)+ordptr3(o)
ordclk_fut=[ordclk_fut;r]
end
// 1: important; 0:non
n=clkptr(nblk+1)-1 //nb d'evenement
//a priori tous les evenemets sont non-importants
critev=zeros(n,1)
for i=1:n
fl=%f
for jj= ordclk_fut(ordptr3(i):ordptr3(i+1)-1)' //block excite par evenement i
for ii=outoin(outoinptr(jj):outoinptr(jj+1)-1,1)'//block excite par block excite par evenement i
//si il est integre, i est important
if ii<>[] & (ii <= nxblk | ii>nb) then fl=%t;break; end
// if ii <= nxblk then fl=%t;break; end
end
if fl then break;end
end
if fl then critev(i,1)=1; end
end
function [ord,ok]=ctree(vec,in,depu)
//sctree(nb,vec,in,depu,outptr,cmat,ord,nord,ok,kk)
jj=find(depu);dd=zeros(depu);dd(jj)=ones(jj)';depu=dd;
nb=prod(size(vec));kk=zeros(vec);
[ord,ok]=sctree(vec,in,depu,outptr,cmatp);
ok=ok==1;
ord=ord';
function [ord,ok]=tree3(vec,dep_ut,typl)
//compute blocks execution tree
ok=%t
nb=size(vec,'*')
for j=1:nb+2
fini=%t
for i=1:nb
if vec(i)==j-1 then
if j==nb+2 then
message('algebraic loop detected');ok=%f;ord=[];return;
end
if typl(i)==%t then
fini=%f;
kk=bexe(boptr(i):boptr(i+1)-1)';
else
kk=[];
for ii=blnk(blptr(i):blptr(i+1)-1)'
if dep_ut(ii,1)|(typl(ii)&vec(ii)>-1) then
fini=%f;
kk=[kk ii];
end
end
end
vec(kk)=j*ones(kk) ; //disp(vec)
end
end
if fini then break;end
end
[k,ord]=sort(-vec);
ord(find(k==1))=[];
function [okk,done,bllst,connectmat,clkconnect,typl,corinv]=..
paksazi(bllst,connectmat,clkconnect,corinv,clkptr,cliptr,..
typl,dep_ut,ddep_ut)
okk=%t
nblk=length(bllst)
nblkorg=nblk
if ~or(typl) then
done=%t;
return
end
change=%f
for lb=find(typl)
indx=find(clkconnect(:,3)==lb)
nn=size(indx,'*')
if nn>=2 then
indxo=find(clkconnect(:,1)==lb)
indy=find(connectmat(:,3)==lb)
if size(indy,'*')>1 then
disp('logical unit cannot have more than 1 input')
end
for k=2:nn
clkconnect(indx(k),3)=nblk+1;
bllst(nblk+1)=bllst(lb);
corinv(nblk+1)=corinv(lb);
tmp=clkconnect(indxo,:);
yek=ones(tmp(:,1))
clkconnect=[clkconnect;[yek*(nblk+1),tmp(:,[2 3 4])]]
nblk=nblk+1
end
connectmat=[connectmat;..
[connectmat(indy,[1 2]),[nblkorg+1:nblk]',ones(nn-1,1)]]
change=%t
nblkorg=nblk
end
end
if change then done=%f;return; end
//
con=clkptr(clkconnect(:,1))+clkconnect(:,2)-1
[junk,ind]=sort(-con);con=-junk
clkconnect=clkconnect(ind,:)
//
bclkconnect=clkconnect(:,[1 3])
boptr=1
bexe=[]
for i=1:nblk
r=bclkconnect(find(bclkconnect(:,1)==i),2)
bexe=[bexe;r]
boptr=[boptr;boptr($)+size(r,1)]
end
//
bconnectmat=connectmat(:,[1 3])
blptr=1
blnk=[]
for i=1:nblk
r=bconnectmat(find(bconnectmat(:,1)==i),2)
blnk=[blnk;r]
blptr=[blptr;blptr($)+size(r,1)]
end
//
tclkconnect=clkconnect(~typl(clkconnect(:,1)),:)
tcon=clkptr(tclkconnect(:,1))+tclkconnect(:,2)-1
texeclk=tclkconnect(:,[3 4]);
ordptr1=1
for i=1:clkptr($)-1
tmp=find(tcon<=i)
if tmp==[] then
ordptr1(i+1)=ordptr1(i)
else
ordptr1(i+1)=max(tmp)+1
end
end
//
pointer=[]
ordclk=[]
ordptr2=ordptr1
for o=1:clkptr($)-1
p_ut=dep_ut
texeclki=texeclk(ordptr1(o):ordptr1(o+1)-1,1)
if texeclki<>[] then
p_ut=dep_ut
p_ut(texeclki,:)=ddep_ut(texeclki,:)
vec=-ones(1,nblk);
vec(texeclki')=zeros(texeclki)';
[r,ok]=tree3(vec,p_ut,typl)
if ~ok then
message('Algebraic loop detected; cannot be compiled.');
ordptr=[],ordclk=[],cord=[],iord=[],oord=[],zord=[],critev=[]
okk=%f;done=%t;return,
end
pointer=find(con==o)
for bl=r
if typl(bl) then
mod=bllst(bl);mod(10)=%f,bllst(bl)=mod,typl(bl)=%f
pointer=pointer(find(clkconnect(pointer,3)<>bl));
yek=ones(pointer');
clkconnect(pointer,:)=..
[yek*bl,yek,clkconnect(pointer,[3 4])];
//connect all the event outputs of the logical block to ....
for bl_out=2:clkptr(bl+1)-clkptr(bl)
clkconnect=[clkconnect;[yek*bl,bl_out*yek,clkconnect(pointer,[3 4])]];
end
//
ok=%f,return
else
pointer=pointer(find(clkconnect(pointer,3)<>bl))
end
end
end
if pointer<>[] then warning('problem1');pause;end
end;
//
if or(typl) then warning('problem2');pause;end
//
okk=%t;done=%t;
function [ind,nxblk,ncxblk,ndblk,ndcblk]=find_order_blocks(bllst)
status=[];
nxblk=0;ncxblk=0;ndblk=0;ndcblk=0;
for i=1:length(bllst)
// Compile if the block is defined by an uncompiled Scilab function
ll=bllst(i)
if ll(6)<>[] then
if ll(10)=='z' then
disp('zero crossing blocks cannot have states');
pause
end
//continuous block with state
nxblk=1+nxblk;status=[status;1];
elseif ll(7)==[]&ll(10)<>'l'&ll(10)<>'z' then
// block without state
ncxblk=ncxblk+1;status=[status;2];
elseif ll(10)=='l' then
// block without state
ncxblk=ncxblk+1;status=[status;3];
elseif ll(7)<>[] then
//discrete state block
status=[status;4];ndblk=ndblk+1
elseif ll(10)=='z' then
//zero crossing block
ndcblk=ndcblk+1;status=[status;5];
end
end
[junk,ind]=sort(-status)
function [bllst,connectmat,clkconnect,cor,corinv]=..
re_order_blocks(bllst,connectmat,clkconnect,cor,corinv,ind)
bltmp=list()
for i=1:length(bllst)
bltmp(i)=bllst(ind(i))
k1=corinv(ind(i))
select size(k1,'*')
case 0 then
case 1 then
cor(k1)=i
else
cor=change_tree_elt(cor,k1,i)
end
end
corinv_s=corinv;
corinv=list()
for i=1:size(corinv_s)
corinv(i)=corinv_s(ind(i));
end
// corinv=[]
bllst=bltmp;bltmp=null()
[junk,indinv]=sort(-ind)
connectmat(:,1)=indinv(connectmat(:,1))
connectmat(:,3)=indinv(connectmat(:,3))
clkconnect(:,1)=indinv(clkconnect(:,1))
clkconnect(:,3)=indinv(clkconnect(:,3))
function [ordptr1,execlk]=discard(clkptr,cliptr,clkconnect)
con=clkptr(clkconnect(:,1))+clkconnect(:,2)-1
[junk,ind]=sort(-con);con=-junk
clkconnect=clkconnect(ind,:)
//
ordptr1=1
for i=1:clkptr($)-1
tmp=find(con<=i)
if tmp==[] then
ordptr1(i+1)=ordptr1(i)
else
ordptr1(i+1)=max(tmp)+1
end
end
new_execlk=[]
new_ordptr1=1
for j=1:clkptr($)-1
if ordptr1(j)<>ordptr1(j+1) then
clkconnectj=[clkconnect(ordptr1(j):ordptr1(j+1)-..
ones(ordptr1(j+1)),3),clkconnect(ordptr1(j):ordptr1(j+1)-1,4)]
con=cliptr(clkconnectj(:,1))+clkconnectj(:,2)-ones(clkconnectj(:,2))
[junk,ind]=sort(-con);con=-junk
clkconnectj=clkconnectj(ind,:)
// discard duplicate calls to the same block port
if size(con,'*')>=2 then
clkconnectj(find(con(2:$)-con(1:$-1)==0),:)=[]
end
// group calls to different ports of the same block.
clkconnectj=[clkconnectj(:,1),2^(clkconnectj(:,2)-..
ones(clkconnectj(:,2)))]
con=clkconnectj(:,1)
clkconnectjj=[]
if size(con,'*')>=2 then
iini=[find(con(2:$)-con(1:$-1)<>0),size(clkconnectj,1)]
else
iini=1
end
for ii=iini
clkconnectjj=[clkconnectjj;[clkconnectj(ii,1),..
mysum(clkconnectj(find(clkconnectj(:,1)==clkconnectj(ii,1)),2))]]
end
else
clkconnectjj=[]
end
wec=zeros(1,nblk);
wec(clkconnectjj(:,1)')=clkconnectjj(:,2)';
[r,ok]=tree1(wec,outoin,outoinptr,typ_r,typ_c)
if ~ok then
message('Algebraic loop detected; cannot be compiled.');
ordptr=[],ordclk=[],cord=[],iord=[],oord=[],zord=[],critev=[]
return,
end
tt=find(wec(r(:,1))>0)
r(tt,2)=wec(r(tt,1))'
new_execlk=[new_execlk;r]
new_ordptr1=[new_ordptr1;new_ordptr1($)+size(r,1)]
end
execlk=new_execlk
ordptr1=new_ordptr1
function a=mysum(b)
if b<>[] then a=sum(b), else a=[], end
function [lnkptr,inplnk,outlnk,clkptr,cliptr,inpptr,outptr,..
xptr,zptr,rpptr,ipptr,xc0,xd0,rpar,ipar,dep_ut,ddep_ut,..
typl,typ_r,typ_c,funs,funtyp,initexe,labels,ok]=extract_info(bllst,..
connectmat,clkconnect)
ok=%t
clkptr=1;cliptr=1;
inpptr=1;outptr=1;
xptr=1;zptr=1;rpptr=1;ipptr=1;
//
xc0=[];xd0=[];rpar=[];ipar=[];
dep_ut=[];ddep_ut=[];typl=[];typ_r=[];typ_c=[]
initexe=[];
funs=list();
funtyp=[];
labels=[]
//
//
for i=1:length(bllst)
ll=bllst(i)
if type(ll(1))==15 then
funs(i)=ll(1)(1)
funtyp(i,1)=ll(1)(2)
else
funs(i)=ll(1);
funtyp(i,1)=0;
end
inpnum=ll(2);outnum=ll(3);cinpnum=ll(4);coutnum=ll(5);
//
if cinpnum<>[] & find(clkconnect(:,3)==i)==[] then
typ_r(i)=%t
else
typ_r(i)=%f
end
//
inpptr=[inpptr;inpptr($)+size(inpnum,'*')]
outptr=[outptr;outptr($)+size(outnum,'*')]
cliptr=[cliptr;cliptr($)+size(cinpnum,'*')]
clkptr=[clkptr;clkptr($)+size(coutnum,'*')]
//
xc0=[xc0;ll(6)(:)]
xptr=[xptr;xptr($)+size(ll(6),'*')]
xd0=[xd0;ll(7)(:)]
zptr=[zptr;zptr($)+size(ll(7),'*')]
//
if funtyp(i,1)==3 then //sciblocks
rpark=var2vec(ll(8))
else
rpark=ll(8)(:)
end
rpar=[rpar;rpark]
rpptr=[rpptr;rpptr($)+size(rpark,'*')]
if type(ll(9))==1 then
ipar=[ipar;ll(9)(:)]
ipptr=[ipptr;ipptr($)+size(ll(9),'*')]
else
ipptr=[ipptr;ipptr($)]
end
//
typl=[typl;ll(10)=='l']
ddep_ut=[ddep_ut;(ll(12)(:))'];
dep_ut=[dep_ut;ll(12)&(ll(10)=='c')];
//
if ll(10)=='c' then
typ_c(i)=%t
else
typ_c(i)=%f
end
//
if ll(5)<>[] then
ll11=ll(11)
prt=find(ll11>=zeros(ll11))
nprt=prod(size(prt))
initexe=[initexe;..
[i*ones(nprt,1),matrix(prt,nprt,1),matrix(ll11(prt),nprt,1)]];
end
if size(ll)>=13 then
if type(ll(13))==10 then
labels=[labels;ll(13)(1)]
else
labels=[labels;' ']
end
else
labels=[labels;' ']
end
end
[ok,bllst]=adjust_inout(bllst,connectmat)
nlnk=size(connectmat,1)
inplnk=zeros(inpptr($)-1,1);outlnk=zeros(outptr($)-1,1);ptlnk=1;
lnkbsz=[]
for jj=1:nlnk
ko=outlnk(outptr(connectmat(jj,1))+connectmat(jj,2)-1)
ki=inplnk(inpptr(connectmat(jj,3))+connectmat(jj,4)-1)
if ko<>0 & ki<>0 then
if ko>ki then
outlnk(outlnk>ko)=outlnk(outlnk>ko)-1
outlnk(outlnk==ko)=ki
inplnk(inplnk>ko)=inplnk(inplnk>ko)-1
inplnk(inplnk==ko)=ki
ptlnk=-1+ptlnk
lnkbsz(ko)=[]
elseif ki>ko
outlnk(outlnk>ki)=outlnk(outlnk>ki)-1
outlnk(outlnk==ki)=ko
inplnk(inplnk>ki)=inplnk(inplnk>ki)-1
inplnk(inplnk==ki)=ko
ptlnk=-1+ptlnk
lnkbsz(ki)=[]
end
elseif ko<>0 then
inplnk(inpptr(connectmat(jj,3))+connectmat(jj,4)-1)=ko
elseif ki<>0 then
outlnk(outptr(connectmat(jj,1))+connectmat(jj,2)-1)=ki
else
outlnk(outptr(connectmat(jj,1))+connectmat(jj,2)-1)=ptlnk
inplnk(inpptr(connectmat(jj,3))+connectmat(jj,4)-1)=ptlnk
lnkbsz=[lnkbsz;bllst(connectmat(jj,1))(3)(connectmat(jj,2))]
ptlnk=1+ptlnk
end
end
lnkptr=cumsum([1;lnkbsz])
//store unconnected outputs, if any, at the end of outtb
unco=find(outlnk==0);
if unco==[] then return;end
siz_unco=0
for j=unco
m=maxi(find(outptr<=j))
n=j-outptr(m)+1
siz_unco=maxi(siz_unco,bllst(m)(3)(n))
end
lnkptr=[lnkptr;lnkptr($)+siz_unco]
outlnk(unco)=maxi(outlnk)+1
function [outoin,outoinptr]=conn_mat(inpptr,outptr,inplnk,outlnk)
outoin=[];outoinptr=1
for i=1:nblk
k=outptr(i):outptr(i+1)-1
ii=[]
for j=outlnk(k)
ii=[ii;find(inplnk==j)]
end
outoini=[];jj=0
for j=ii
m=maxi(find(inpptr<=j))
n=j-inpptr(m)+1
outoini=[outoini;[m,n]]
jj=jj+1
end
outoinptr=[outoinptr;outoinptr($)+jj]
outoin=[outoin;outoini]
end
function [clkptr,cliptr,typl,dep_ut,ddep_ut]=make_ptr(bllst,clkptr,cliptr,typl,dep_ut,ddep_ut)
nblk0=size(clkptr,'*')
for i=nblk0:size(bllst)
ll=bllst(i)
cliptr=[cliptr;cliptr($)+sum(ll(4))]
clkptr=[clkptr;clkptr($)+sum(ll(5))]
typl=[typl;ll(10)=='l']
ddep_ut=[ddep_ut;ll(12)];
dep_ut=[dep_ut;ll(12)&(ll(10)=='c')];
end
function [ord,ok]=tree2(vec,outoin,outoinptr,dep_ut)
//compute blocks execution tree
ok=%t
wec=zeros(vec)
nb=size(wec,'*')
for j=1:nb+2
fini=%t
for i=1:nb
if vec(i)==j-1 then
if j==nb+2 then
message('algebraic loop detected');ok=%f;ord=[];return;
end
// kk=[];
for k=outoinptr(i):outoinptr(i+1)-1
ii=outoin(k,1);
if dep_ut(ii,1) then
fini=%f;
// kk=[kk ii];
vec(ii)=j;
wec(ii)=wec(ii)-2^(outoin(k,2)-1)
end
end
// vec(kk)=j*ones(kk) ;
end
end
if fini then break;end
end
[k,ord]=sort(-vec);
ord(find(k==1))=[];
//disp('tree2');
ord=[ord',wec(ord)']
function [ok,bllst]=adjust_inout(bllst,connectmat)
nlnk=size(connectmat,1)
for hhjj=1:length(bllst)
for hh=1:length(bllst)
ok=%t
for jj=1:nlnk
nout=bllst(connectmat(jj,1))(3)(connectmat(jj,2))
nin=bllst(connectmat(jj,3))(2)(connectmat(jj,4))
if (nout>0&nin>0) then
if nin<>nout then
bad_connection(corinv(connectmat(jj,1)),connectmat(jj,2),nout,..
corinv(connectmat(jj,3)),connectmat(jj,4),nin)
ok=%f;return
end
elseif (nout>0&nin<0) then
ww=find(bllst(connectmat(jj,3))(2)==nin)
bllst(connectmat(jj,3))(2)(ww)=nout
ww=find(bllst(connectmat(jj,3))(3)==nin)
bllst(connectmat(jj,3))(3)(ww)=nout
elseif (nin>0&nout<0) then
ww=find(bllst(connectmat(jj,1))(3)==nout)
bllst(connectmat(jj,1))(3)(ww)=nin
ww=find(bllst(connectmat(jj,1))(2)==nout)
bllst(connectmat(jj,1))(2)(ww)=nin
elseif (nin==0) then
ww=bllst(connectmat(jj,3))(3)(:)
if mini(ww)>0 then
if nout>0 then
if sum(ww)==nout then
bllst(connectmat(jj,3))(2)(connectmat(jj,4))=nout
else
bad_connection(corinv(connectmat(jj,3)))
ok=%f;return
end
else
bllst(connectmat(jj,3))(2)(connectmat(jj,4))=sum(ww)
ok=%f
end
else
nww=ww(find(ww<0))
if norm(nww-nww(1),1)==0 & nout>0 then
bllst(connectmat(jj,3))(2)(connectmat(jj,4))=nout
k=(nout-sum(ww(find(ww>0))))/size(nww,'*')
if k==int(k) then
bllst(connectmat(jj,3))(3)(find(ww<0))=k
else
bad_connection(corinv(connectmat(jj,3)))
ok=%f;return
end
else
ok=%f
end
end
elseif (nout==0) then
ww=bllst(connectmat(jj,1))(2)(:)
if mini(ww)>0 then
if nin>0 then
if sum(ww)==nin then
bllst(connectmat(jj,1))(3)(connectmat(jj,2))=nin
else
bad_connection(corinv(connectmat(jj,1)))
ok=%f;return
end
else
bllst(connectmat(jj,1))(3)(connectmat(jj,2))=sum(ww)
ok=%f
end
else
nww=ww(find(ww<0))
if norm(nww-nww(1),1)==0 & nin>0 then
bllst(connectmat(jj,1))(3)(connectmat(jj,2))=nin
k=(nout-sum(ww(find(ww>0))))/size(nww,'*')
if k==int(k) then
bllst(connectmat(jj,1))(2)(find(ww<0))=k
else
bad_connection(corinv(connectmat(jj,1)))
ok=%f;return
end
else
ok=%f
end
end
else
//case where both are negative
ok=%f
end
end
if ok then return, end
end
message('Not enough information to determine port sizes');
for jj=1:nlnk
nout=bllst(connectmat(jj,1))(3)(connectmat(jj,2))
nin=bllst(connectmat(jj,3))(2)(connectmat(jj,4))
if nout<=0&nin<=0 then
ninnout=under_connection(corinv(connectmat(jj,1)),connectmat(jj,2),nout,..
corinv(connectmat(jj,3)),connectmat(jj,4),nin)
if ninnout==[] then ok=%f;return;end
if ninnout<=0 then ok=%f;return;end
bllst(connectmat(jj,1))(3)(connectmat(jj,2))=ninnout
bllst(connectmat(jj,3))(2)(connectmat(jj,4))=ninnout
end
end
end
function ninnout=under_connection(path_out,prt_out,nout,path_in,prt_in,nin)
// alert for badly connected blocks
// path_out : Path of the "from block" in scs_m
// path_in : Path of the "to block" in scs_m
//!
lp=mini(size(path_out,'*'),size(path_in,'*'))
k=find(path_out(1:lp)<>path_in(1:lp))
path=path_out(1:k(1)-1) // common superbloc path
path_out=path_out(k(1)) // "from" block number
path_in=path_in(k(1)) // "to" block number
if path==[] then
hilite_obj(scs_m(path_out))
if or(path_in<>path_out) then hilite_obj(scs_m(path_in)),end
ninnout=evstr(dialog(['Hilited block(s) have connected ports ';
'with sizes that cannot be determiend by the context';
'what is the size of this link'],'1'))
hilite_obj(scs_m(path_out))
if or(path_in<>path_out) then hilite_obj(scs_m(path_in)),end
else
mxwin=maxi(winsid())
for k=1:size(path,'*')
hilite_obj(scs_m(path(k)))
scs_m=scs_m(path(k))(3)(8);
scs_show(scs_m,mxwin+k)
end
hilite_obj(scs_m(path_out))
if or(path_in<>path_out) then hilite_obj(scs_m(path_in)),end
ninnout=evstr(dialog(['Hilited block(s) have connected ports ';
'with sizes that cannot be determiend by the context';
'what is the size of this link'],'1'))
for k=size(path,'*'):-1:1,xdel(mxwin+k),end
scs_m=null()
unhilite_obj(scs_m(path(1)))
end
function [ord,ok]=tree1(wec,outoin,outoinptr,typ_r,typ_c)
//compute blocks execution tree
ok=%t
wec=wec(:);vec=-ones(wec);vec(find(wec<>0))=0;
nb=size(wec,'*')
for j=1:nb+2
fini=%t
for i=1:nb
if vec(i)==0 then
vec(i)=-2 //turn off block i for ever
if j==nb+2 then
message('problem!!!!!!');ok=%f;ord=[];return;
end
for k=outoinptr(i):outoinptr(i+1)-1
ii=outoin(k,1);
if vec(ii)==-1 & (typ_r(ii) | typ_c(ii)) then
fini=%f;
vec(ii)=0
if typ_r(ii) then
wec(ii)=wec(ii)-2^(outoin(k,2)-1)
end
end
end
end
end
if fini then break;end
end
ord=find(wec<>0)'
ord=[ord,wec(ord)]
|
1e3ff66de9f8c6652a45b25e10f3af35353190cd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3428/CH15/EX9.15.26/Ex9_15_26.sce
|
7b987455ac56f2ce341f4e41ca5d20a132105462
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 322
|
sce
|
Ex9_15_26.sce
|
//Section-9,Example-1,Page no.-E.56
//To calculate the transport number of silver and nitrate ions.
clc;
u_1=0.916 //u_Ag+/u_NO3-
u_2=u_1+1 //(u_NO3-/(u_Ag+ + u_NO3-))
t_no=1/u_2
disp(t_no,'Transport no. of nitrate ions')
t_Ag=1-t_no
disp(t_no,'Transport no. of silver ions')
|
c32e08adcd3336202adc6b54b184e43629bf2130
|
fe12be33b783b1c97dc63b619d60d64fb004c2d4
|
/Cálculo-II/integral.sce
|
5501610c79780b47f912fb33b4c51c732daa363e
|
[] |
no_license
|
josecleiton/scilab
|
6b0c86068807596cd3852824de92d13f1a81f7b8
|
5ac1eaffb57fd7508024674fb5481a7c568d1069
|
refs/heads/master
| 2020-03-30T08:30:20.827333
| 2018-12-15T11:59:29
| 2018-12-15T11:59:29
| 151,020,551
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 697
|
sce
|
integral.sce
|
// integra basica
function integral(a, b, n, f)
dx=(b-a)/n
x=[a:dx:b]
soma=0
for i=1:n
t=(f(x(i))+f(x(i+1)))/2*dx
soma=soma+t
end
disp (soma,'o resultado é :')
endfunction
function y=f1(x)
y=x.^2
endfunction
function y=f2(x)
y=x.^3
endfunction
function y=f(x)
y=x
endfunction
function y=g(x)
y=sin(x)
endfunction
// integral com grafico
function integralg(a, b, n, f)
dx=(b-a)/n; x=[a:dx:b]
soma=0
for i=1:n
t=(f(x(i))+f(x(i+1)))/2*dx
soma=soma+t
end
disp (soma,'o resultado é ')
printf("\n integral %f \n\n",soma)
cor= 5
plot2d(x,f(x),cor)
for i = 1:n+1
plot2d([x(i),x(i)],[0,f(x(i))],cor)
end
xgrid(3)
endfunction
|
60740be4b32995c38c72edef1433acb313131e20
|
af7eaf77aed65b9a3df16cb6b9980648e1c7c428
|
/Datchiki/Vedyakov/lab1/compute.sce
|
f508bba21544d61f05f5b102263598f778e6aae5
|
[] |
no_license
|
AlexeiOvcharov/sandbox
|
25eb4d2b283f80fb01f36a5349e2820eca406e4f
|
ae96aa1699fe6e1985e2867da09dfe42b3ef7cc1
|
refs/heads/master
| 2021-01-18T20:53:18.612798
| 2018-12-12T23:30:55
| 2018-12-12T23:30:55
| 86,999,134
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 678
|
sce
|
compute.sce
|
clear();
data = read("/home/senserlex/homeworks/Vedyakov/lab1/src/dataVibr.dat", -1, 4);
angularVel = data(:, 1:2:3)/60;
encoderTicks = data(:, 2:2:4);
tickPerRev = encoderTicks./angularVel;
dt = ones(encoderTicks)./encoderTicks;
vel = encoderTicks./tickPerRev;
//etalonU = [0;data(1:12, 12)];
//etalonN = [0;data(1:12, 11)];
//
//err = [];
//
//for i = [1:1:6]
// j = 2*i - 1;
// idealVals(:, i) = (interpln([etalonN, etalonU]', data(:, j)))';
// err(:, i) = data(:, j + 1) - idealVals(:, i);
//end
//x = [0:10:3000];
//y = 0.004*x;
//plot(x, y);
//plot(etalonN, etalonU);
//xlabel("$n, об/мин$", "fontsize", 4);
//ylabel("$U_\text{вых}$", "fontsize", 4);
|
1305c8ce5e516e612ab15e53022785d74b94911b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1223/CH4/EX4.8/Ex4_8.sce
|
8fcb24b25aa3207a206b15a5d069c8060c5a53b0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 574
|
sce
|
Ex4_8.sce
|
clear;
clc;
//Example 4.8
b=150;Veb=0.7;
//dc solution
V2=10;
V1=-10;
V_T=0.026;//(V)
Rc=5;
Rb=50;
Re=10;
Ibq=(V2-Veb)/(Rb+(1+b)*Re);
printf('\nbase current=%f mA\n',Ibq)
Icq=b*Ibq;
printf('\ncollector current=%.3f mA\n',Icq)
Ieq=(1+b)*Ibq;
printf('\nemitter current=%.3f mA\n',Ieq)
Vecq=V2-V1-Icq*Rc-Ieq*Re;
printf('\nemitter collector voltage=%.2f V\n',Vecq)
//ac solution
r_pi=b*V_T/Icq;
printf('\nsmall signal resistance=%.1f KOhm\n',r_pi)
g_m=Icq/V_T;
printf('\ntransconductance =%.3fmA/V\n',g_m)
//since Va=infinity,ro=Va/Icq is also infinity
|
47ef6c42c79eca151e3127691341511980621929
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2471/CH1/EX1.4/Ex1_4.sce
|
5b515e949f23ff4b2e9d3d2094f16717ab3c004b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 701
|
sce
|
Ex1_4.sce
|
clear ;
clc;
// Example 1.4
printf('Example 1.4\n\n');
printf('Page No. 10\n\n');
// Solution
// Given
mc= 1.5*10^3;// coke consumption in tonnes
mg= 18*10^3;// gas consumption in therms
me= 1*10^9;// electricity consumption in Wh
Cc1= 72;// cost of coke in Pound per tonne
Cg1= 0.20;// cost of gas in Pound per therm
Ce1= 2.25*10^-5 ;// cost of electricity in Pound per Wh
Cc= mc*Cc1;//in Pound
Cg= mg*Cg1;//in Pound
Ce= me*Ce1;//in Pound
Ct= Cc+Cg+Ce;//in Pound
printf('cost of coke consumption is %.0f Pound \n',Cc)
printf('cost of gas consumption is %.0f Pound \n',Cg)
printf('cost of electricity consumption is %.0f Pound \n',Ce)
printf('total cost is %3.0f Pound \n',Ct)
|
28b7b8a44fa075df380d865183121bbf16fb1dd6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3250/CH4/EX4.24/Ex4_24.sce
|
ca2b6e9f43a0e486754272ac0085b68c470732b0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 405
|
sce
|
Ex4_24.sce
|
clc
// Given that
shi = 30 // Side cutting edge angle in Degree
lambda = 7 // End cutting edge angle in Degree
r = 0.7 // Nose radius in mm
f = 0.125 // Feed in mm
// Sample Problem 24 on page no. 260
printf("\n # PROBLEM 4.24 # \n")
H_max = f/(tand(shi)+cotd(lambda))
H_max_ = (f^2)/(8*r)
printf(" \n Maximum height of uneveness in first tool case = %f mm,\n In second tool case = %f mm",H_max,H_max_)
|
2aa68b83ca930a74c1f02e76a4a6bb7cad061b8c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1439/CH18/EX18.8/18_8.sce
|
a3e29b1efce249289941a22c404a7c9ec963fdfd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 359
|
sce
|
18_8.sce
|
clc
//initialisation of variables
e= 23.06 //kcal mole^-1
E= 4.476 //ev
h= 6.627*10^-27 //ergs sec
c= 3*10^10 //cm/sec
v= 4395 //cm^-1
e1= 8060 //ev
N= 6*10^23
//CALCULATIONS
D= E*e+(h*c*N*v/(2*10^3*4.184*10^7))
D1= E*e1+(v/2)
//RESULTS
printf (' dissociation energy = %.1f kcal mole^-1',D)
printf (' \n dissociation energy = %.f cm^-1',D1+26)
|
f4d44cd501139011d93e498336015ddfe21c675b
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set7/s_Electronic_Devices_And_Circuits_B._Kumar_And_S._B._Jain_135.zip/Electronic_Devices_And_Circuits_B._Kumar_And_S._B._Jain_135/CH5/EX5.6/EX6.sce
|
1d01bad98cf4abc11f5f5f4cdd2ca98c66faf604
|
[] |
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
| 434
|
sce
|
EX6.sce
|
errcatch(-1,"stop");mode(2);// Example 5.6: RF so that IE=+2 mA
,
IE=2e-3; // in amperes
VBE=0.7; // in volts
betaf=49;
// From Fig. 5.17
VCC=12; // in volts
RB=25e3; // in ohms
RC=2e3; // in ohms
I1=VBE/RB; // in amperes
IB=IE/(1+betaf); // in amperes
// KVL for the indicated loop gives
RF=(VCC-RC*(I1+(1+betaf)*IB)-VBE)/(I1+IB); // in ohms
RF=RF*1e-3; // in kilo-ohms
disp(RF,"RF so that IE=+2 mA (kΩ) =");
exit();
|
26fa08f5d2c6cca27f3d45b5acc21f1e60f8b59d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3492/CH8/EX8.3/Ex8_3.sce
|
38638b7c7245c1da528e514bfdc06037917490c0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 295
|
sce
|
Ex8_3.sce
|
clc
//Chapter8
//Ex_3
//Given
Mat=55.85*10^-3 //in Kg/mol
NA=6.022*10^23 // in mol^-1
p=7.86*10^3 //in kg/m3
Msat=1.75*10^6 //in A/m
funcprot(0)
beta=9.27*10^-24 //in J/tesla
n_at=p*NA/(Mat)
x=Msat/(n_at*beta)
printf("In the solid each Fe atom contributes only %f bohr magneton",x)
|
cbf4cf6247ab67d7caac25c8a432a9f1696ab569
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.5/macros/percent/%lss_v_r.sci
|
bc269e884fb08a5405d9c9b3f54e0643066ffa37
|
[
"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
| 169
|
sci
|
%lss_v_r.sci
|
function s=%lss_v_r(s1,s2)
//s=%lss_v_r(s1,s2) <=> s=s1/.s2 :feedback operation
//!
// origine s. steer inria 1988
// Copyright INRIA
[s1,s2]=sysconv(s1,s2);s=s1/.s2;
|
237c1f73fc3b72ab9b25536676ccde8ae7985012
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.3.1/macros/elem/tanh.sci
|
36b16d17fb84937772df3c5c8ceca6258308c60b
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 132
|
sci
|
tanh.sci
|
function t=tanh(x)
//Element wise Hyperbolic tangent
if type(x)<>1 then error(53),end
t=exp(x);
t=(t-ones(t)./t)./(t+ones(t)./t)
|
e1c65ba6c790168f0e3685934c78c66b38a1ddd0
|
1b969fbb81566edd3ef2887c98b61d98b380afd4
|
/Rez/bivariate-lcmsr-post_mi/bfas_nv_aspfin/~BivLCM-SR-bfas_nv_aspfin-PLin-VLin.tst
|
8530f6e96f84cf47430868dfcdb543b295aa0ba4
|
[] |
no_license
|
psdlab/life-in-time-values-and-personality
|
35fbf5bbe4edd54b429a934caf289fbb0edfefee
|
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
|
refs/heads/master
| 2020-03-24T22:08:27.964205
| 2019-03-04T17:03:26
| 2019-03-04T17:03:26
| 143,070,821
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 11,974
|
tst
|
~BivLCM-SR-bfas_nv_aspfin-PLin-VLin.tst
|
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.480864D+00
2 -0.668599D-02 0.403075D-02
3 0.238435D-01 -0.933658D-04 0.527845D+00
4 -0.683887D-03 0.130115D-03 -0.844411D-02 0.398111D-02
5 -0.183526D-02 0.129586D-03 -0.151923D-02 0.144273D-03 0.257353D-02
6 0.259526D-03 -0.736912D-05 0.860708D-04 0.112407D-03 -0.263552D-03
7 -0.117657D-02 0.769663D-04 0.131283D-02 -0.738495D-04 -0.230060D-04
8 -0.545385D-03 -0.254760D-04 -0.209452D-02 -0.397800D-05 0.200630D-03
9 -0.322826D+00 0.517352D-02 0.484978D+00 0.195509D-01 0.112535D+00
10 0.107729D+00 0.566705D-02 0.177743D+00 0.149185D-01 0.136309D+00
11 -0.266695D+00 0.377719D-01 0.732099D-01 0.323180D-02 0.341333D-01
12 0.279479D+00 -0.518642D-02 0.794097D+00 0.182960D-01 -0.673538D-01
13 -0.456831D-01 0.564480D-03 -0.110997D+00 0.849736D-02 -0.991938D-02
14 -0.224690D+00 0.755172D-02 0.931932D-01 -0.270947D-01 0.222379D-01
15 0.989031D+00 -0.155257D-01 -0.411830D+00 -0.470805D-01 -0.203847D+00
16 0.442998D-01 0.572483D-02 0.200310D-01 -0.234723D-02 -0.270627D-02
17 0.311011D-02 0.108550D-02 -0.495672D-03 0.573793D-03 0.248067D-03
18 -0.360949D-01 -0.353018D-02 -0.486415D+00 0.465636D-01 -0.337764D-01
19 0.581756D-01 0.103618D-01 0.543729D-01 0.576266D-02 0.110703D-01
20 -0.296070D+00 0.568043D-01 0.363905D+01 0.101455D-02 -0.645286D-01
21 -0.124157D-01 -0.147589D-01 -0.181099D-01 -0.530975D-02 -0.109196D-01
22 -0.310085D-02 0.340322D-03 0.199623D-02 -0.306441D-03 -0.620840D-04
23 0.157951D-01 0.179854D-02 0.659350D-01 0.697099D-02 -0.301865D-02
24 0.240823D-03 -0.356603D-03 -0.120569D-01 0.539228D-03 0.633832D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.130749D-02
7 0.937706D-03 0.225600D-02
8 0.231829D-03 0.327246D-04 0.308615D-02
9 0.126977D-01 0.526551D-01 -0.431999D-01 0.151987D+03
10 0.122628D-01 0.776693D-02 0.723812D-02 0.761779D+01 0.306186D+02
11 0.941567D-02 -0.102325D-01 0.402727D-01 0.254373D+01 -0.605970D-01
12 0.694920D-01 0.123619D+00 -0.523573D-01 0.938582D+01 0.340361D+01
13 0.873087D-01 0.120827D+00 0.166359D-01 -0.140895D+00 0.327074D+01
14 -0.682273D-02 -0.164089D-01 0.250422D+00 -0.527184D+00 0.209100D+01
15 -0.535182D-01 -0.895815D-01 -0.647038D-01 -0.261746D+02 -0.276436D+02
16 -0.502148D-03 -0.209189D-03 -0.969708D-03 0.221262D+01 -0.544315D+00
17 0.221871D-03 0.498541D-03 0.115902D-03 -0.360130D+00 0.564990D-01
18 -0.798491D-01 -0.983009D-01 -0.250160D-01 -0.826207D+01 -0.912111D+01
19 -0.163748D-01 0.349747D-02 0.906471D-02 0.170649D+01 0.390435D+00
20 0.347192D-01 0.475048D-01 -0.329173D+00 0.164087D+02 0.906349D+01
21 0.139222D-01 -0.493183D-02 -0.165315D-01 -0.123561D+01 -0.608972D+00
22 -0.178344D-03 -0.342635D-03 0.348107D-03 0.646648D-01 0.844312D-02
23 -0.109148D-02 -0.385805D-04 -0.265034D-02 0.592441D+00 0.180989D+00
24 -0.368012D-03 -0.434585D-03 0.334387D-03 -0.876643D-01 -0.214570D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.646072D+02
12 0.306503D+01 0.125288D+03
13 -0.427538D+01 0.610458D+01 0.212244D+02
14 -0.239318D+01 -0.163282D+02 0.655268D+01 0.815913D+02
15 -0.162105D+02 0.555381D+01 -0.120166D+01 -0.118420D+01 0.590240D+03
16 -0.253786D-01 0.651437D+00 -0.241617D+00 -0.517313D+00 0.537391D+01
17 0.769265D-01 -0.260981D-01 0.199136D-01 -0.121437D-01 -0.282734D+01
18 0.503466D+01 -0.156160D+02 -0.884620D+01 -0.639357D+01 -0.676223D+01
19 0.349155D+01 -0.201757D+01 -0.227259D+00 0.765878D+00 -0.333605D+01
20 0.461717D+01 0.110726D+02 -0.174186D+01 -0.646172D+02 -0.109438D+02
21 -0.128605D+01 0.176923D+01 -0.122058D+00 -0.238212D+01 0.319066D+01
22 -0.164701D+00 0.646120D-01 -0.224587D-01 0.844617D-01 0.170915D+00
23 0.745994D-01 0.158976D+01 -0.105289D+00 -0.272201D+00 0.155188D+00
24 -0.241812D-03 -0.271416D+00 -0.272375D-01 -0.249584D-02 0.624766D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.777595D+00
17 -0.671874D-01 0.282039D-01
18 -0.907779D-01 0.118435D+00 0.357332D+03
19 -0.119094D+00 0.930782D-02 0.333210D+01 0.982738D+01
20 0.349642D+00 0.100274D+00 0.298160D+02 -0.201385D+01 0.581534D+03
21 0.170470D+00 -0.496731D-02 0.274840D+01 -0.835081D+01 0.537071D+01
22 0.395454D-02 -0.124470D-02 -0.162793D+01 -0.524560D-01 0.286976D-01
23 0.455028D-02 0.423447D-02 0.121181D+01 0.460987D+00 0.551161D+01
24 0.634382D-03 -0.402826D-03 0.679350D-01 -0.211451D-02 -0.234750D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.957259D+01
22 -0.576784D-01 0.190405D-01
23 -0.148652D+00 -0.150649D-01 0.117209D+01
24 -0.314947D-01 -0.122218D-02 -0.921760D-01 0.279919D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.152 1.000
3 0.047 -0.002 1.000
4 -0.016 0.032 -0.184 1.000
5 -0.052 0.040 -0.041 0.045 1.000
6 0.010 -0.003 0.003 0.049 -0.144
7 -0.036 0.026 0.038 -0.025 -0.010
8 -0.014 -0.007 -0.052 -0.001 0.071
9 -0.038 0.007 0.054 0.025 0.180
10 0.028 0.016 0.044 0.043 0.486
11 -0.048 0.074 0.013 0.006 0.084
12 0.036 -0.007 0.098 0.026 -0.119
13 -0.014 0.002 -0.033 0.029 -0.042
14 -0.036 0.013 0.014 -0.048 0.049
15 0.059 -0.010 -0.023 -0.031 -0.165
16 0.072 0.102 0.031 -0.042 -0.060
17 0.027 0.102 -0.004 0.054 0.029
18 -0.003 -0.003 -0.035 0.039 -0.035
19 0.027 0.052 0.024 0.029 0.070
20 -0.018 0.037 0.208 0.001 -0.053
21 -0.006 -0.075 -0.008 -0.027 -0.070
22 -0.032 0.039 0.020 -0.035 -0.009
23 0.021 0.026 0.084 0.102 -0.055
24 0.002 -0.034 -0.099 0.051 0.075
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.546 1.000
8 0.115 0.012 1.000
9 0.028 0.090 -0.063 1.000
10 0.061 0.030 0.024 0.112 1.000
11 0.032 -0.027 0.090 0.026 -0.001
12 0.172 0.233 -0.084 0.068 0.055
13 0.524 0.552 0.065 -0.002 0.128
14 -0.021 -0.038 0.499 -0.005 0.042
15 -0.061 -0.078 -0.048 -0.087 -0.206
16 -0.016 -0.005 -0.020 0.204 -0.112
17 0.037 0.062 0.012 -0.174 0.061
18 -0.117 -0.109 -0.024 -0.035 -0.087
19 -0.144 0.023 0.052 0.044 0.023
20 0.040 0.041 -0.246 0.055 0.068
21 0.124 -0.034 -0.096 -0.032 -0.036
22 -0.036 -0.052 0.045 0.038 0.011
23 -0.028 -0.001 -0.044 0.044 0.030
24 -0.061 -0.055 0.036 -0.043 -0.023
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.034 1.000
13 -0.115 0.118 1.000
14 -0.033 -0.161 0.157 1.000
15 -0.083 0.020 -0.011 -0.005 1.000
16 -0.004 0.066 -0.059 -0.065 0.251
17 0.057 -0.014 0.026 -0.008 -0.693
18 0.033 -0.074 -0.102 -0.037 -0.015
19 0.139 -0.057 -0.016 0.027 -0.044
20 0.024 0.041 -0.016 -0.297 -0.019
21 -0.052 0.051 -0.009 -0.085 0.042
22 -0.148 0.042 -0.035 0.068 0.051
23 0.009 0.131 -0.021 -0.028 0.006
24 0.000 -0.145 -0.035 -0.002 0.000
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.454 1.000
18 -0.005 0.037 1.000
19 -0.043 0.018 0.056 1.000
20 0.016 0.025 0.065 -0.027 1.000
21 0.062 -0.010 0.047 -0.861 0.072
22 0.032 -0.054 -0.624 -0.121 0.009
23 0.005 0.023 0.059 0.136 0.211
24 0.004 -0.014 0.021 -0.004 -0.582
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.135 1.000
23 -0.044 -0.101 1.000
24 -0.061 -0.053 -0.509 1.000
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.