blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fb8f0c3720b48935b8e628af0c706fbdd120f0d0 | 8495bf24a31d40b332b836da95e8474877e27bbd | /guia1/ej4.sci | 7f5d9287a40f699be2623357153c58a47d75e14e | [] | no_license | Marian0/mcfich | 3c39b4c48e209c254c00a5ed303da0d4d6152d17 | 8e234e5dc57c2d08497dffa889210a9eb6da4c1e | refs/heads/master | 2016-09-06T09:51:25.142659 | 2013-04-19T13:24:23 | 2013-04-19T13:24:23 | 9,545,942 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 683 | sci | ej4.sci | function [x] = armarQpotencial(lx,ly,dx,dy)
n = (lx/dx+1)*(ly/dy+1);
x = zeros(n,1);
x(1) = 10;
//x(n) = 0;
endfunction
function [x,A,b] = potencial(lx,ly,dx,dy)
I = lx/dx+1;
J = ly/dy+1;
n = (I)*(J);
A = zeros(n,n);
x = zeros(n,1);
for i=1:n
A(i,i) = -2*(1/(dx^2)+1/(dy^2));
if(i > 1) then
A(i,i-1) = 1/(dy^2);
end
if(i < n) then
A(i,i+1) = 1/(dy^2);
end
if((i-4) >= 1) then
A(i,i-4) = 1/(dx^2);
end
if((i+4) <= n) then
A(i,i+4) = 1/(dx^2);
end
end
b = armarQpotencial(lx,ly,dx,dy);
x = A\b;
endfunction
|
861633119dace897ff2b8da92ead0781c7bf412a | 449d555969bfd7befe906877abab098c6e63a0e8 | /536/CH2/EX2.4/Example_2_4.sce | 35833dbaa8c0805393fec309557850e994fb1d24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sce | Example_2_4.sce | clc;
printf("Example 2.4\n");
//Momentum per second of approaching liquid in Y-direction = rho*u^2*A
rho=1000; //Density of water
d=50*10^-3; //Diameter of pipe
u=5; //Velocity of water in pipe
printf("\n Given\n Density of water = %d kg/m^3\n Pipe diameter = %.3f m \n Velocity = %d m/s",rho,d,u);
M=rho*u^2*%pi/4*d^2;
printf("\n\n Momentum per second of approaching liquid in Y-direction = %.1f N",M);
Rf=M*(cos(%pi/4)+sin(%pi/4));
printf("\n The resultant force in direction of arm of bracket = %.1f N",Rf); |
739268a163360381e28d08cefca597cb191ced97 | c4c3bc86b278ed2ae8e7dad1351e3242b322bc88 | /main.sce | d45f3abe6e107967af6684954aaf2e1580133ba3 | [] | no_license | VLbest/SPConvolution | f45928d16b32f2f23643eef80164c3258b6ddda5 | ece185b1dcfb18c24bc39824f5e95a801c6dfdef | refs/heads/master | 2016-09-06T18:24:18.011167 | 2015-03-09T12:56:50 | 2015-03-09T12:56:50 | 31,422,183 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | main.sce | clear
exec('applyFilter.sce', -1);
exec('display_gray.sci', -1);
exec('readpbm.sci', -1);
//************************************************
//
img=readpbm('timgone.pbm');
mask = [0.75,0.75,0.75;
0.75,1,0.75;
0.75,0.75,0.75];
contrast = 7;
//
//************************************************
// image, filter matrix, contrast normalisation
resultImg = applyFilter(img, mask, contrast);
display_gray(img);
scf;
display_gray(resultImg);
|
8e362a7c77676892274dd36f8952dcec7b9e5751 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1976/CH2/EX2.5/Ex2_5.sce | 5da981191098a39990aa4f40b42dd65ee9e7e354 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,272 | sce | Ex2_5.sce |
//To determine the Plant use factore of each unit
//Page 80
clc;
clear;
MDS=25*(10^6); //Maximum Demand on the System
U1=15*(10^6); //Load Supplied By Unit 1
U2=12.5*(10^6); //Load Supplied By Unit 2
//Running Time Factor of the Unit
T1=1;
T2=40/100;
//Energy generated by each unit
E1=1*(10^8);
E2=1*(10^7);
Et=E1+E2; //Total Energy
//Maximum Demands on Each Units
MD1=U1;
MD2=MDS-U1;
//Annual Load Factor for the Units
ALF1=E1*1000*100/(MD1*8760);
ALF2=E2*1000*100/(MD2*8760);
LF2=E2*1000*100/(MD2*0.4*8760); //Load Factor for the it is loaded
//Since Unit runs all through the year without any reserve, Load Factor ,Plant Use Factor and Plant Capacity Factor are the same
PUF1=ALF1; //Plant Use Factor
PCF1=ALF1; // Plant Capacity Factor
PCF2=E2*1000*100/(U2*8760); //Plant Capacity Factor for Unit 2
PUF2=E2*1000*100/(U2*0.4*8760);//Plant Use Factor for Unit 2
LFP=Et*100*1000/(MDS*8760); //Annual Load Factor of the Complete Plant
printf('The Load Factor, Plant Capacity Factor, Plant Use Factor of:\n')
printf('Unit 1 : %g percent, %g percent, %g percent\n',ALF1,PCF1,PUF1)
printf('Unit 2 : %g percent, %g percent, %g percent\n',ALF2,PCF2,PUF2)
printf('The Annual Load Factor of the Entire Plant is %g percent',LFP)
|
9bd08d8de33cdd8d2905753f61009bfdef07f061 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH9/EX9.17/9_17.sce | 8549194818a13ef308c1e033653d758775d3c987 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,732 | sce | 9_17.sce | clear
clc
y=[
1 2 .026+%i*.11 %i*.04
2 3 .026+%i*.11 %i*.04
1 3 .026+%i*.11 %i*.04
]
n=3
e=3
Y=zeros(n,n)
for i=1:e
ynew = 1/(y(i,3))
y0=y(i,4)/2
n1=real(y(i,1))
n2=real(y(i,2))
if(n1==0)
Y(n2,n2)=Y(n2,n2)+ynew+y0
else
Y(n1,n1)= Y(n1,n1)+ynew+y0
Y(n1,n2)= Y(n1,n2)-ynew
Y(n2,n1)= Y(n2,n1)-ynew
Y(n2,n2)= Y(n2,n2)+ynew+y0
end
end
for i=1:n
for j=1:n
if i==j then
Yb(i,j)= string(round(abs(Y(i,j))*1000)/1000) +'/_'+ string(round(atand(imag(Y(i,j))/real(Y(i,j)))*100)/100)
else
Yb(i,j)= string(round(abs(Y(i,j))*1000)/1000) +'/_'+ string(round((atand(imag(Y(i,j))/real(Y(i,j)))+180)*100)/100)
end
end
end
Y=round(Y*1e3)/1e3
disp(Yb,"(a)Ybus")
// bus no | PL | QL | PG | QG | V | th | btype
data = [
1 %inf %inf 1 .5 1.03 0 1
2 1.5 %inf 0 0 1.03 0 2
3 0 0 1.2 .5 1 0 3
]
j = data(:,1); // Bus number.
PG = data(:,2);
QG = data(:,3);
PL = data(:,4);
QL = data(:,5);
V = data(:,6);
th = data(:,7)* %pi / 180;
btype = data(:,8); // Type of Bus 1-Slack, 2-PV, 3-PQ.
nbus = max(j);
P = PG - PL;
Q = QG - QL
Psp = P;
Qsp = Q;
G = real(Y);
B = imag(Y);
for i=1:nbus
V(i,1)=V(i,1) * exp (%i * th(i,1))
end
pv = [2] //whicih bus is PV
pq = [3] //whicih bus is PQ
npv = length(pv);
npq = length(pq);
Tol = 1;
Iter = 1;
while (Iter == 1)
P = zeros(nbus,1);
Q = zeros(nbus,1);
for i = 1:nbus
for k = 1:nbus
P(i) = P(i) + V(i)* V(k)*(G(i,k)*cos(th(i)-th(k)) + B(i,k)*sin(th(i)-th(k)));
Q(i) = Q(i) + V(i)* V(k)*(G(i,k)*sin(th(i)-th(k)) - B(i,k)*cos(th(i)-th(k)));
end
end
dPa = Psp-P;
dQa = Qsp-Q;
k = 1;
dQ = zeros(npq,1);
for i = 1:nbus
if btype(i) == 3
dQ(k,1) = dQa(i);
k = k+1;
end
end
dP = dPa(2:nbus);
M = [dP; dQ];
H = zeros(nbus-1,nbus-1);
for i = 1:(nbus-1)
m = i+1;
for k = 1:(nbus-1)
n = k+1;
if n == m
for n = 1:nbus
H(i,k) = H(i,k) + V(m)* V(n)*(-G(m,n)*sin(th(m)-th(n)) + B(m,n)*cos(th(m)-th(n)));
end
H(i,k) = H(i,k) - V(m)^2*B(m,m);
else
H(i,k) = V(m)* V(n)*(G(m,n)*sin(th(m)-th(n)) - B(m,n)*cos(th(m)-th(n)));
end
end
end
N = zeros(nbus-1,npq);
for i = 1:(nbus-1)
m = i+1;
for k = 1:npq
n = pq(k);
if n == m
for n = 1:nbus
N(i,k) = N(i,k) + V(n)*(G(m,n)*cos(th(m)-th(n)) + B(m,n)*sin(th(m)-th(n)));
end
N(i,k) = N(i,k) + V(m)*G(m,m);
else
N(i,k) = V(m)*(G(m,n)*cos(th(m)-th(n)) + B(m,n)*sin(th(m)-th(n)));
end
end
end
J3 = zeros(npq,nbus-1);
for i = 1:npq
m = pq(i);
for k = 1:(nbus-1)
n = k+1;
if n == m
for n = 1:nbus
J3(i,k) = J3(i,k) + V(m)* V(n)*(G(m,n)*cos(th(m)-th(n)) + B(m,n)*sin(th(m)-th(n)));
end
J3(i,k) = J3(i,k) - V(m)^2*G(m,m);
else
J3(i,k) = V(m)* V(n)*(-G(m,n)*cos(th(m)-th(n)) - B(m,n)*sin(th(m)-th(n)));
end
end
end
L = zeros(npq,npq);
for i = 1:npq
m = pq(i);
for k = 1:npq
n = pq(k);
if n == m
for n = 1:nbus
L(i,k) = L(i,k) + V(n)*(G(m,n)*sin(th(m)-th(n)) - B(m,n)*cos(th(m)-th(n)));
end
L(i,k) = L(i,k) - V(m)*B(m,m);
else
L(i,k) = V(m)*(G(m,n)*sin(th(m)-th(n)) - B(m,n)*cos(th(m)-th(n)));
end
end
end
J = [H N; J3 L];
X = inv(J)*M;
dTh = X(1:npq+npv);
dV = X(nbus:nbus+npq-1);
th(2:nbus) = dTh + th(2:nbus);
k = 1;
for i = 2:nbus
if btype(i) == 3
V(i) = dV(k) + V(i);
k = k+1;
end
end
Iter = Iter + 1;
Tol = max(abs(M));
end
mprintf("\n\n(b)P2= %.3f, P2= %.3f, P3= %.3f, Q3= %.3f", P(2),Q(2) ,P(3), Q(3))
J=fix(J*1e3)/1e3
disp(J, "(c)J")
mprintf("\n(d)\n")
mprintf("%.3f = %.3f dd2 + %.3f dd3 +%.3f dV3/|V3|\n", dP(1), J(1,1), J(1,2), J(1,3) )
mprintf("%.3f = %.3f dd2 + %.3f dd3 +%.3f dV3/|V3|\n", dP(2), J(2,1), J(2,2), J(2,3) )
mprintf("%.3f = %.3f dd2 + %.3f dd3 +%.3f dV3/|V3|\n", dQ(1), J(3,1), J(3,2), J(3,3) )
|
296e7ec226b5897b1f067085a3a48a4f8b3473e0 | 262ac6443426f24d5d9b13945d080affb0bd6d9b | /opgaves/cijfersom/edit-me.sce | 432eddceb9c43e17c8908b6c4c62d363351082a5 | [] | no_license | slegers/Scilab | 9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b | 1b5dc3434def66355dafeb97c01916736a936301 | refs/heads/master | 2021-01-12T01:42:01.493578 | 2017-01-09T10:54:09 | 2017-01-09T10:54:09 | 78,420,343 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 172 | sce | edit-me.sce | function [sum] = solve(n)
rest = 0;
sum = 0;
while n <> 0
rest = modulo(n,10);
n = (n - rest)/10;
sum = sum + rest;
end
endfunction
|
386ac58a19c008cf9f5e55713cc0259e86f71238 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH1/EX1.8/8.sce | c6ffcf2544d7173b14ecce3881bf0a8ef8b1968d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | 8.sce | clc
clear
//INPUT DATA
f=426//frequency of sound in Hz
a=0.65*10^-2//amplitude of sound wave in m
A=1//area in m^2
v=340//velocity of sound in air in ms^-1
d=1.29//density of air in Kg m^-3
//CALCULATION
I=(2*3.14*3.14*f^2*a^2*d*v)/10^4//The flow of energy across 1m^2 per second in Wm^-2*10^4
//OUTPUT
printf('The flow of energy across 1m^2 per second is %3.3f*10^4 Wm^-2',I)
|
91c273e7abbecf2cb38f6384784cb935291b7dec | be07c1e346737e6e38bb958d9a66f52f6da2180a | /Regression/EnvironmentErrors/NEED_INCLUDE_W.tst | ae44376ae1c87cedfe0aa34856ef4d12f2be79cc | [] | no_license | dpreisser/Training | 1bc8840d646306d861f4c7610a28bb23667f06e5 | 97eb58c7963e4725d6a2ad9e8200ca9367c84061 | refs/heads/master | 2021-01-10T13:03:12.508795 | 2016-04-11T12:49:06 | 2016-04-11T12:49:06 | 54,963,561 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 967 | tst | NEED_INCLUDE_W.tst | -- VectorCAST 6.4d (02/29/16)
-- Test Case Script
--
-- Environment : NEED_INCLUDE_W
-- Unit(s) Under Test: need_include
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Test Case: functionToTest.001
TEST.UNIT:need_include
TEST.SUBPROGRAM:functionToTest
TEST.NEW
TEST.NAME:functionToTest.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:need_include.functionToTest.parameter.fielda:1
TEST.VALUE:need_include.functionToTest.parameter.fieldb:2
TEST.EXPECTED:need_include.functionToTest.return.field1:2.0
TEST.EXPECTED:need_include.functionToTest.return.field2:1.0
TEST.END
|
bf9fc811df3f81761a04a57f1e80f02298bf616f | fbe5bdb3b3ea6f71d29eff0df47cf845a1dbe2f9 | /CatEngine/Game files/AssetData/Levels/Test4/Scenario/scenario1 - Copy.sce | 38bccc7382b39b8b6f7d3f768c2ff3f93c657a9c | [] | no_license | CatoNator/CatEngine | 175c1c9a10842d0a4276bcdd096199d031d3a69f | bc8b4a29c7665152a38deb16abf1adf13d854c3a | refs/heads/master | 2021-07-14T09:58:24.509668 | 2020-05-27T17:02:05 | 2020-05-27T17:02:05 | 148,532,596 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | sce | scenario1 - Copy.sce | <scenario name="Test Scenario">
<objective type="Survive">
<timer time="240"/>
<enemyspawn type="CAamu" amount="69" x="0" y="0"/>
</objective>
<objective type="Reach">
<checkpoint x="40" y="40"/>
<enemyspawn type="CAamu" amount="69" x="0" y="0"/>
</objective>
<objective type="Kill">
<target type="CAamuCiv" x="80" y="80"/>
<enemyspawn type="CAamu" amount="69" x="0" y="0"/>
</objective>
</scenario> |
f9fc74cf6c093c86fc5d9425669aac7a86848862 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH3/EX3.4/3_4.sce | e090689c89f5a8aa0ce255054b7f15a88c270230 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 979 | sce | 3_4.sce | //chapter 3
//example 3.4
//page 78
//to find Ie and Ic for a transistor connected in common base configuration
clear;
clc ;
//given
Veb=0.7; //emitter to base voltage in volts
Vcb=6; //collector to base voltage in volts
//finding Ie from input characteristics of common base configuration
if Vcb==6 & Veb==0.7 then
Ie=2; //emitter current
end
printf('\nIe=%d mA',Ie);
//finding Ic from output characteristics of common base configuration
if Vcb==6 & Ie==2 then
Ic=2; //collector current
end
printf('\nIc1=%d mA',Ic);
//finding Ic from current gain characteristics of common base configuration
if Vcb==6 & Ie==2 then
Ic=2;
end
printf('\nIc2=%d mA',Ic);
|
4a25b4a94369f9f0c1ac27c5f1587c0c28c086b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH9/EX9.20/Example_9_20.sce | d283ace3cce7227cbb6d8e43c1343931aff6ad66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 798 | sce | Example_9_20.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 9
//Chemical Reaction Equilibria
//Example 20
clear;
clc;
//Given:
//Reaction: C2H4(g) + H2O(l) --> C2H5OH(aq)
P = 85; //pressure in bar
n_e = 0.015; //mol percent of ethanol
n_w = 0.95; //mole percent of water
n_a = 0.48; //mol percent of ethylene in vapour phase
M = 18; //molecular mass of water
fc = 0.9; //fugacity coeffecient for ethylene
//To evaluate the equilibrium constant
//K = a_c/(a_a*a_b)
m_e = n_e/(n_w*M*10^-3); //mol/kg water
a_c = m_e;
fa = fc*n_a*P; //bar
a_a = fa;
//Since mol fraction of water is close to unity, so fugacity coeffecient of water is assumed to be 1
a_b = n_w;
K = a_c/(a_a*a_b);
mprintf('The equilibrium constant is %5.4e (mol C2H4)/(kg water bar)',K);
//end |
b006794da41974f4301f242ba9cee4fd6b9d1b17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2342/CH6/EX6.5/EX6_5.sce | c48339a7fc8db7b3a872654a8c9f1534a1936284 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | EX6_5.sce | // Exa 6.5
format('v',6)
clc;
clear;
close;
// Given data
alpha= 0.950;
Beta= alpha/(1-alpha);
disp(Beta,"For alpha = 0.950, the value of beta is : ")
Beta= 100;
alpha= Beta/(1+Beta);
disp(alpha,"For beta = 100, the value of alpha is : ")
|
82aa96094289794be369e6a387fd52de1a854b00 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH7/EX7.9/Ex7_9.sce | 5557b83c6789f6954f5fec8ee20ae88b90b30db3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | sce | Ex7_9.sce | clc;clear;
//Example 7.9
//given data
P1=100;
T1=290;
P2=600;
T2=330;
//from Table A-17
s02=1.79783;
s01=1.66802;
//Table A-2b
cpavg=1.006;
//constants used
R=0.287;//in kJ/kg -K
//calculations
//part-a
s21=s02-s01-R*log(P2/P1);//stands for s2 - s1
disp(s21,'entropy change using property values from air table in kJ/kg-K');
s21=cpavg*log(T2/T1)-R*log(P2/P1);//stands for s2 - s1
disp(s21,'entropy change using average specific heat in kJ/kg-K')
|
44a10df557a541824c4dc13488eef75d0bfff7d4 | 7a6e14c55ee1c57f69b10361a69e63740649ee42 | /projects/02/Out16.tst | da19c550cdd21cc1d245431308d7c05219a88211 | [] | no_license | eodevelop/ComputingSystems | 419a8722179578e0d3c8b25bcaca7ecfbe216740 | 1ea4d0d5db6a9cb2063ffc87c3daa9056659c141 | refs/heads/main | 2023-07-27T03:14:26.499048 | 2021-09-09T09:21:11 | 2021-09-09T09:21:11 | 374,920,576 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 314 | tst | Out16.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/01/Or16.tst
load Out16.hdl,
output-file Out16.out,
compare-to Out16.cmp,
output-list in%B3.1.3 out%B1.16.1;
set in 0,
eval,
output;
set in 1,
eval,
output; |
6e5b9f285c78ac49fcb44cae85f716f19d575579 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH9/EX9.15/9_15.sce | 3bf47433bf840956df576dd96118bad319ba7c6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 145 | sce | 9_15.sce | //9.15
clc;
a='1011010101';
d=bin2dec(a);
c='100011010';
b=bin2dec(c);
e=d+b;
f=dec2bin(e);
disp('addition of binary numbers =')
disp(f) |
c6a1d1db19d93e5a4d2e0be098c2f40a8c018700 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1499/CH3/EX3.23/q23.sce | 080c55602e7bcc70ae5345fc3d030c45895169ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 87 | sce | q23.sce | s=%s;
syms k;
num=k;
den=s*(s^2+8*s+32);
t=syslin('c',num,den);
clf;
evans(t)
|
876326b2c94be9dd04e4b64fadc89cf23ab8d72c | e86653ab56eded6714574f9f8f34013272027113 | /293/CH5/EX5.2/eg5_2.sce | 8393f89bad3b4c42bb6a1cbdf6f098126eee5e6c | [] | no_license | FOSSEE/Xcos_TBC_Uploads | 3637554f9dca20d0c5ec2c5d00d30942edafe09a | 37e81552cb6d9066617ba91b13c91098e5ab6758 | refs/heads/master | 2023-03-30T10:45:38.033053 | 2021-03-15T05:40:35 | 2021-03-17T09:45:20 | 346,244,418 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 464 | sce | eg5_2.sce | C = 10*10^-6 ; //capacitance(in farads)
R = 0.2*10^6; //resistance (in ohms)
Vi = 40; //initial voltage of the capacitor (in volts)
Wc = (1/2)*C*Vi^2; //energy stored in the capacitor
//current flowing in circuit as a function of time i(t) = 2*10^-4*exp(-t/2)
//power dissipated in the resistor = R*i^2
Wr = integrate('R*4*10^-8*exp(-t)','t',0,100)
disp(Wc,"energy stored in the capacitor(in Joules) = ")
disp(Wr,"energy dissipated in the resistor(in Joules) = ")
|
694c724ac5d51a058abcc3e1d76480e587521716 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH2/EX2.1.a/data2_1.sci | cbdfebcbeda88a93beb7a6f2904d46210874c45f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | sci | data2_1.sci |
// (Engineering Materials)Example 2.1
//Refer Table 2.13 on page 52
//Store data in respective arrays in the order:
//Sequence: {Low alloy steel, Plain carbon steel, Stainless steel, Chromium steel}
//Ulimate tensile strengths U N/mm2
U = {850 850 1200 950}
//Hardenability Index H
H = {60 80 30 100}
//Cost (Rs/unit) C
C = {40 50 100 80}
//Point weightage for ultimate tensile strength
Uw = 5
//Point weightage for hardenability
Hw = 3
//Point weightage for cost-economy
Cw = 2 |
7ccff62727eb792937328077b37c7ab1840d866e | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/metanet/graph_simp.sci | 0bfc0444fa5d0b1a2dad7897204561baae19bcb5 | [
"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 | 900 | sci | graph_simp.sci | function [g1]=graph_simp(g)
// Copyright INRIA
[lhs,rhs]=argn(0)
if rhs<>1 then error(39), end
// check g
check_graph(g)
n=g('node_number');
ta=g('tail');he=g('head');
[ir ic]=find(ta==he);
ta(ic)=[];he(ic)=[];
p=round(log(n)/log(10));q=10^(p+4);
w=ta'*q+he';[w1 iw]=sort(w);
ww=w1(2:$)-w1(1:($-1));
[ir ic]=find(ww==0);
index=iw(ir);
ta(index)=[];he(index)=[];
spg=sparse([ta' he'],ones(size(ta,2),1),[n n]);
spg=spg+spg';
[ir ic]=find(spg==2);kk=[ir' ic'];
spg1=[];
if (kk <> []) then
spg1=sparse(kk,ones(1,(size(ir,2))),[n n]);
end;
spg=spg-spg1;
spg=tril(spg,-1);
[ij,v,mn]=spget(spg);
g1=make_graph('foo',0,n,ij(:,1)',ij(:,2)');
g1('node_type')=g('node_type');
g1('node_x')=g('node_x');
g1('node_y')=g('node_y');
g1('node_color')=g('node_color');
g1('node_diam')=g('node_diam');
g1('node_border')=g('node_border');
g1('node_font_size')=g('node_font_size');
g1('node_demand')=g('node_demand');
|
d775c333f26ffa6755a946b010bbe3d5113d169a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH1/EX1.21/EX1_21.sce | 4893e5cbc6192bf8c33fa711374192e2a0246bbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 439 | sce | EX1_21.sce | //EXAMPLE 1-21 PG NO-24
L=200*10^-3; //INDUCTAR
t1=1; //di/dt=(-2e^-t+4e^-2t)=-1.9*10^-7;
V=L*(-1.94*10^-7); //VOLTAGE AT TIME 1
disp('i) Voltage = '+string (V)+'V ');
t2=0.1; //di/dt=(-2e^-t+4e^-2t)^2=0.216;
V1=L*0.5*(0.216); //VOLTAGE AT TIME O.1
disp('ii) Voltage = '+string (V1)+'V ');
|
d6ac249e2cc4957703fa115b77f20f720ba4b64c | 449d555969bfd7befe906877abab098c6e63a0e8 | /34/CH4/EX4.2/Ch4Exa2.sci | 6bbc2cc12086c72acb249df0d34f9b03cd619965 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 283 | sci | Ch4Exa2.sci |
n1=1; //initial state
n2=3; //final state
E= -13.6; //energy in ground state, eV
dE= E*((1/n2^2)-(1/n1^2)); //Change in energy, eV
disp(dE,"The energy change of Hydrogen atom, in eV, is: ")
//Result
// The energy change of Hydrogen atom, in eV, is:
// 12.088889 |
55e8d5692f779b7e453209515bbaf56ad46cdecb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1652/CH19/EX19.4/19_4.sce | 33e303ec24bb10941cdc888712926b14d475e8b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 170 | sce | 19_4.sce | clc
//Initialization of variables
c=0.000025 //M
l=2 //cm
D=0.417
//calculations
e=D/(c*l)
//result
printf("Extinction coefficient = %d liters mole^-1 cm^-1",e)
|
0512b5cb44f8ec46e2d085f423f458e18953a16e | 78ff3e16a288175ff606f38ee5ee877d4844773e | /6_chapter/6_04_solution.sce | 7201ec25df2e144abaf31618740d0f956806645c | [] | no_license | rngalvan/fluid-mech-cengel | 16c12ed8f71f25c812700be4322328c5663b71cf | ee45f924e73cbb8b5716fac43504dac15ffd1f64 | refs/heads/master | 2021-05-27T20:52:22.586023 | 2013-04-17T04:25:37 | 2013-04-17T04:25:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sce | 6_04_solution.sce | //Solution 6-4
WD=get_absolute_file_path('6_04_solution.sce');
datafile=WD+filesep()+'6_04_example.sci';
clc;
exec(datafile)
F_R = beta1 * mdot * V_1 //momentum equation in direction of jet
printf("The force needed to prevent the plate from moving horizontally due to water stream is %1.0f N", F_R) |
7b737325b8c756ac770d15fee036b2a73cf627e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH2/EX2.1/Ex2_1.sce | c522c70653897f6791eeba668088dd17ffa979ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,033 | sce | Ex2_1.sce |
// Variable Declaration
MVA_base = 10.0 //Three-phase base MVA
kV_base = 13.8 //Line-line base kV
P = 7.0 //Power delivered(MW)
PF = 0.8 //Power factor lagging
Z = 5.7 //Impedance(ohm)
// Calculation Section
I_base = (MVA_base) * (10**3)/((3**(0.5)) * kV_base) //Base current(A)
I_actual = P * (10**3)/((3**(0.5)) * kV_base*PF) //Actual current delivered by machine(A)
I_pu = I_actual/I_base //p.u current(p.u)
Z_pu = Z * (MVA_base/( (kV_base)**2 )) //p.u impedance(p.u)
P_act_pu = P/MVA_base //p.u active power(p.u)
x = acos(PF)
y = sin(x)
P_react = (P * y)/PF //Actual reactive power(MVAR)
P_react_pu = P_react/MVA_base //Actual p.u reactive power(p.u)
// Result Section
printf('p.u current = %.3f p.u' ,I_pu)
printf('p.u impedance = %.1f p.u' ,Z_pu)
printf('p.u active power = %.1f p.u' ,P_act_pu)
printf('p.u reactive power = %.3f p.u' ,P_react_pu)
|
9e512f14b00472ecfc01104b33245bf0206615be | 9d2c9394c6b6997318b9d04556462c9bba639045 | /Replication 2/Dave_RIFData/Dave_RIFData/Sub14/VP14_OneBack.sce | 3a79e0315149245e3e1ca29884f7b4e72d7e1139 | [] | no_license | rettopnivek/Wimber_et_al_replication_3 | 673b156d8d18d58b92b2f05fedef87976e787089 | 8dbc22329093a61b1e5cb8aac3feca45a5c82d06 | refs/heads/master | 2020-12-31T04:42:39.856717 | 2018-02-01T15:49:15 | 2018-02-01T15:49:15 | 58,006,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,884 | sce | VP14_OneBack.sce | array <int> finalSeq[432] = {51,50,24,24,55,46,28,20,62,12,4,4,57,58,58,6,17,45,34,37,22,71,28,61,27,27,36,37,32,13,53,42,20,70,70,16,21,31,33,33,56,8,72,53,55,2,2,12,26,57,50,30,71,64,54,61,5,46,72,21,18,46,40,40,14,14,71,71,68,68,27,40,47,56,56,7,11,59,24,33,1,13,66,31,67,72,53,10,31,72,11,16,13,42,42,19,1,41,66,17,50,50,65,65,44,21,21,36,38,38,14,9,30,17,20,6,12,4,38,38,50,52,61,34,51,47,35,68,38,38,8,7,8,22,37,25,43,70,43,67,67,61,48,39,49,19,45,44,16,65,30,30,31,60,60,41,60,51,51,57,64,35,15,54,54,67,65,57,45,70,59,59,39,5,4,26,28,39,5,20,62,59,15,54,13,48,64,15,64,56,53,27,22,69,30,19,19,28,48,13,19,50,47,44,31,35,72,58,58,9,69,40,42,63,63,22,16,55,10,31,29,63,52,64,7,16,68,68,70,14,63,48,12,33,7,21,21,3,25,43,59,44,8,8,57,60,56,66,35,35,18,67,13,29,6,49,49,30,32,28,17,41,59,23,36,9,9,66,46,55,58,47,16,15,20,51,68,36,18,23,67,18,6,43,43,53,26,49,10,10,29,27,23,15,9,34,4,72,15,11,14,62,41,45,45,58,3,3,32,32,52,52,63,63,46,36,33,53,37,45,70,64,54,24,46,49,65,65,40,29,17,17,11,11,41,26,41,18,34,62,22,42,23,1,39,43,36,56,66,60,60,1,1,25,44,4,3,18,3,3,55,8,48,14,6,6,39,39,47,47,62,71,42,32,71,28,69,69,5,5,27,22,44,66,29,11,69,69,7,54,12,7,2,29,10,10,2,2,57,55,24,62,61,23,23,5,37,37,40,24,49,26,61,32,25,12,26,52,34,34,19,48,52,51,9,1,33,25,25,20,35,2};
array <int> buttons[432] = {0,2,2,1,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,1,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,1,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,1,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,1,2,2,2,2,2,1,2,1,2,1,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,0,0};
array <int> nullEvents[145] = {1,4,5,12,14,17,18,22,28,32,39,44,50,51,58,64,65,71,83,86,91,93,94,95,101,104,108,121,122,125,132,136,139,140,143,144,145,149,154,155,166,172,175,177,181,183,185,192,202,205,210,217,218,223,226,227,237,238,239,240,245,248,251,252,255,256,259,263,271,277,281,285,290,291,292,295,298,305,308,310,311,316,324,334,337,351,357,359,360,361,363,366,375,376,377,378,387,388,398,400,403,406,410,415,419,420,426,431,434,436,441,442,444,445,450,467,474,476,479,480,485,487,488,491,492,493,500,508,513,518,519,523,533,535,536,537,540,541,558,563,565,573,575,576,577};
array <int> selPic[36] = {1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72};
|
86b4a8bd686deff4a71201e699f64bffcadc59d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH5/EX5.12.b/solution5_12.sce | 9a4948700be7fad031b87b30a0a6869b37c887f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,825 | sce | solution5_12.sce |
function[] = plot_format()
//Get the handle of current axes
g = gca()
//Give labels and set label properties
g.labels_font_color=5
g.font_size=3
g.grid=[1,1]
g.box="off"
endfunction
//Obtain path of solution file
path = get_absolute_file_path('solution5_12.sce')
//Obtain path of data file
datapath = path + filesep() + 'data5_12.sci'
//Obtain path of function file
funcpath = path + filesep() + 'functions5_12.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
exec(funcpath,[-1])
//Calculate Sdash (N/mm2)
Sdash = (50/100)*Sut
//Calculate Ka, Kb and Kc
[Ka, Kb, Kc] = fluctuate(op, d, reliability)
//From Fig.5.24
//Ka = 0.77
//Calculate Kf
Kf = 1 + (q*(Kt - 1))
//Calculate Kd
Kd = (1/Kf)
//Calculate Se (N/mm2)
Se = Ka * Kb * Kc * Kd * Sdash
//Plot modified Goodman diagram
//The common quadrilateral in the plot is the area of concern
y1 = {Se 0}
x1 = {0 Sut}
y2 = {Syt 0}
x2 = {0 Syt}
plot(x1,y1,'--*')
plot(x2,y2,'-*')
plot_format()
title('Modified Goodman diagram (Example 5.12)')
xlabel('sigmaM (N/mm2)')
ylabel('sigmaA (N/mm2)')
//Maximum bending moment at the fillet cross-section Mbmax (N-mm)
Mbmax = Pmax * dist
//Minimum bending moment at the fillet cross-section Mbmin (N-mm)
Mbmin = Pmin * dist
//Calculate Mba and Mbm (N-mm)
Mbm = (Mbmax + Mbmin)/2
Mba = (Mbmax - Mbmin)/2
theta = atand(Mba/Mbm)
//Calculate Sm (N/mm2)
Sm = 1/((tand(theta)/Se) + (1/Sut))
//Calculate Sa (N/mm2)
Sa = Sm * tand(theta)
//Calculate the actual diameter of the beam d (mm)
d = ((32 * Mba * fs)/(%pi * Sa))^(1/3)
//Print results
printf('Diameter of beam(d) = %f mm\n',d)
printf('\nAnswer is slightly different because of use of equation 5.18\n')
printf('Use value of Ka from Fig.5.24 in order to obtain the mentioned result\n')
|
c36ad99e6c3672bc4054a3a8e279d846e8eba2d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH12/EX12.16/12_16.sce | 5459a9b68d7f3dfd3612cc4519755613f9c97c1c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | 12_16.sce | clear; clc; close;
D2 = 0.1;
D3 = 0.02;
D4 = 0.01;
I1 = 4;
Rc = 8;
THD = sqrt((D2^2)+(D3^2)+(D4^2));
P1 = (I1^2)*Rc/2;
P = (1+THD^2)*P1;
disp(THD,'Total harmonic distortion = ');
disp(P1,'Fundamental power component(Watts) = ');
disp(P,'Total power(Watts) = ');
|
f1833b320f9f1738862025ace044e9a23a1ec20c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3434/CH10/EX10.2/Ex10_2.sce | 12f33460bb3daaae6899aa02146e6fbad442aaf1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 540 | sce | Ex10_2.sce | clc
// given data
a=2.0/2 // in m
T=8.0 // in secs
rho=1025.0 // in kg/m^3
w=2*%pi/T // angular frequency in radian/sec
g=9.8 // gravitational acceleration in m/sec^2
Lamda=2*(%pi)*g/(w**2) // in m
printf( "wavelength is %.2f m",Lamda)
v=g/w // phase velocity in m/s
printf( " \n phase velocity is %.2f m/s",v)
P=rho*(g**2)*(a**2)*T/(8*%pi*1000) // power in wave in kW/m
printf( " \n power in wave is %.2f kW/m",P)
E=P*8.76 // average annual wave energy in mWh/m
printf( "\n average annual wave energy is %.1f mWh/m",E)
|
55772f7574f5721a13664269d34bd216738a36f7 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /kMatlab/kTeam.sci | fb20d18ba7a0bc2c8be4efb761985f9037fb9177 | [] | 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 | 290 | sci | kTeam.sci | function [] = kTeam(ref)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//KTEAM Display the list of members of the K-Team
//
//kTeam(ref)
// Use the reference obtained with kopen.
// Written by Yves Piguet, 9/98.
kcmd(ref,"k-team",1)
endfunction
|
2dcd7558455e85a1190327718288526a59e218f8 | d545abbd8040e204ac96f08975c1e1a586e34c3d | /Factorisation_LU/gauss.sci | 4f4641d517df6c7f4035a33010426a4bc8b7fe44 | [] | no_license | Dudu40/Maths_Appli | f95c211234cf5a8a86014c6ab4343bd289f67094 | 02c48c0098d8ef8551f638e231d9abf939e8d11b | refs/heads/master | 2023-04-11T08:35:07.078453 | 2021-04-15T13:17:25 | 2021-04-15T13:17:25 | 358,263,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,112 | sci | gauss.sci |
function x = upper_solve(U, b)
[n,n]=size(U);
x(n)= b(n)/U(n,n)
for i= (n-1):-1:1
som=0;
for j= (i+1):n
som=som + U(i,j)*x(j)
end
x(i)=(1/U(i,i))*(b(i)-som)
end
endfunction
function x = lower_solve(L, b)
[m,n]=size(L);
x(1)= b(1)/L(1,1)
for i= 1 : m
som=0;
for j= 1: (i-1)
som=som + L(i,j)*x(j)
end
x(i)=(1/L(i,i))*(b(i)-som)
end
endfunction
function [U,bb]=gauss_pivot(A,b)
[n] =length(b)
[m1,m2]=size(A);
bb=b;
U=A;
for i = 1 : n-1
num=i
for k = 1 : n-1
if U(k,i)>U(num,i) then
num=k
end
if num<>i then
for j = i : n
tmp=A(num,j)
A(num,j)=A(i,j)
A(i,j)=tmp
end
end
end
pivot = U(i,i)
for k = (i+1):n
fact=(U(k,i)/pivot)
for j = i : n
U(k,j)=U(k,j)-fact*U(i,j)
end
bb(k)=bb(k)-fact*bb(i)
end
X(n)=(bb(n)/U(n,n))
end
endfunction
|
8c4c9c50faf4626a9e2b408e34f1b86816bb8815 | 704a8e9047b24c6e005fdc6206aacf6b3ea623bb | /UE/S1/bin/ANALYSE/Hileb.sci | f2b0954161cde32f552e96fff8b8b4a1d351d829 | [] | no_license | GuangYueCHEN/ENSIIE | e84ffd6be1718b958bc72cef791a77dc49fa057f | f2014c0cf5b1adda3f327d5dd1d39217e703871b | refs/heads/master | 2021-06-30T21:50:49.946086 | 2019-06-18T09:53:36 | 2019-06-18T09:53:36 | 114,696,410 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 144 | sci | Hileb.sci | function B=Hileb(n)
B=zeros(n,n);
for i=1:n,
for j=1:n,
B(i,j)=1/(i+j-1)
end
end
endfunction
|
6245a4c16fadd83c43435d8cdfa78cba3965b104 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH1/EX1.2/ex1_2.sce | 8ac9225817b94d5a36c5188056111e1cb5a3de77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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_2.sce | //Chapter-1, Example 1.2, Page 18
//=============================================================================
clc;
clear;
//INPUT DATA
l1=20;//length in cm for first case
l2=0.4;//length in cm for second case
w=0.1;//width in cm
t=0.4;//thickness in cm
p=1.7*10^-6//resistivity of copper in ohm cm
a1=0.1*0.4//area(w*t) in cm^2 for first case
a2=0.1*20//area(l*t) in cm^2 for second case
//CALCULATIONS
R1=p*l1/a1;//resistance in ohms for first case
R2=p*l2/a2;//resistance in ohms for second case
//OUTPUT
mprintf("Thus the resistance in first and second cases are %g ohms and %g ohms\n",R1,R2);
//=================================END OF PROGRAM==============================
|
18812150765dd7654d6d9658364c360102da9fa5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH27/EX26.1/EX26_1.sce | 3bf6ae632d37376d5221b0ed557245b867788dfd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 726 | sce | EX26_1.sce | // Grob's Basic Electronics 11e
// Chapter No. 26
// Example No. 26_1
clc; clear;
// Calculate (a)the cutoff frequency fc; (b)Vout at fc; (c)Theta at fc (Assume Vin = 10 Vpp for all frequencies)
// Given data
R = 10*10^3; // Resistor=10 kOhms
C = 0.01*10^-6; // Capacitor=0.01 uFarad
Vin = 10; // Input Voltage=10Vpp
pi = 3.14
// To calculate fc
fc = 1/(2*pi*R*C);
disp (fc,'The Cutoff Frequency in Hertz')
disp ('i.e 1.592 kHz')
// To calculate Vout at fc
Xc = 1/(2*pi*fc*C);
Zt = sqrt((R*R)+(Xc*Xc));
Vout = Vin*(Xc/Zt);
disp (Vout,'The Output Voltage in Vpp' );
// To calculate Theta
Theta = atand(-(R/Xc));
disp (Theta,'The Phase angle (Theta z) in Degree');
|
80dc487eaef528d0e8b1eb8d4aed081376216a62 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH2/EX2.18/Exa2_18.sce | 2311051d3b1571797f3dfcb2d974763ef276c3be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 793 | sce | Exa2_18.sce | //Exa 2.18
clc;
clear;
close;
//Given data :
RB=50;//in kohm
RC=3;//in kohm
VCC=10;//in volt
VEE=5;//in volt
hfe=100;//unitless
VCEsat=0.2;//in volt
VBEsat=0.8;//in volt
VBEactive=0.7;//in volt
VBE=0.7;//in volt(For Si)
//Applying
IB=(VEE-VBE)/(RB*10^3);//in Ampere: Kirchoff 2nd Law : VEE-RB*IB-VBE=0
IC=hfe*IB;//in Ampere
VCB=VCC-IC*RC*10^3-VBEactive;//in volt: //Applying Kirchoff 2nd Law to collector-emitter loop: VCC-IC*RC-VCB-VBEactive=0
disp(VCB,"Collector to base voltage, VCB(in V) :");
disp("This shows that the base collector junction is forward biased. This implies that the transistor is in saturation region.");
IB=(VEE-VBEsat)/(RB*10^3);//in Ampere
disp(IB*10^3,"Value of IB in mA :");
IC=(VCC-VCEsat)/(RC*10^3);
disp(IC*10^3,"Value of IC in mA :");
|
52f22feab6ab5089358a2c2def42cc7e823a0bf3 | 1fa5af5a5d2a0162d157c2f6dcc31fe2a37db1cc | /LC/Lab03/Exe5/Nandexample.tst | 75a5a9265b27ca5349aefd1aabf0239bc2f756f1 | [] | no_license | IAmAlmeida/CTeSP | 997eb4e7797a4ce36cc40890d65fddce928f2b27 | 2e714cbdf3602174ec0805a7d6ae8ae82c5438c9 | refs/heads/master | 2020-03-30T19:34:27.171531 | 2019-04-15T07:54:52 | 2019-04-15T07:54:52 | 151,548,982 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | tst | Nandexample.tst | load Nandexample.hdl,
output-file Nandexample.out,
output-list a%B3.1.3 b%B3.1.3 out%B3.1.3;
set a 1,
set b 1,
eval,
output;
set a 0,
set b 1,
eval,
output;
set a 1,
set b 0,
eval,
output;
set a 0,
set b 0,
eval,
output;
|
bd305ba8ef1c23bc5f5b86ac399d9d570e92fdf7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH14/EX14.2/ex14_2.sce | 161ffb4c3fb8be228e8cfc1539d9f2734ad1ce0e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 639 | sce | ex14_2.sce | //Exam:14.2
clc;
clear;
close;
R_Cu=1.56;//Resistivity of pure copper(in micro-ohm-cm)
R_CuNi = 4.06;//Resistivity of Cu containing two atomic percent (in micro-ohm-cm)
R_Ni=(R_CuNi-R_Cu)/2;//Increase in resistivity due to one atomic % Ni
R_CuAg= 1.7;//resistivity of copper, containing one atomic percent silver (in micro-ohm-cm)
R_Ag=R_CuAg-R_Cu;//Increase in resistivity due to one atomic % Ag
R_CuNiAg=R_Cu+R_Ni+3*R_Ag;//Resistivity of copper alloy containing one atomic percent Ni and 3 atomic percent Ag
disp(R_CuNiAg,'Resistivity of copper alloy containing one atomic percent Ni and 3 atomic percent Ag(in micro-ohm-cm)=') |
e8d9fc614d56df58b87fe331c38203036f6bd044 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH4/EX4.3/EX4_3.sce | 285922df07e8e0b36dc5ad96f673c775049e2dc8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | EX4_3.sce | //Example 4.3 // Determine the differece voltage and open loop gain of an op-amp
clc ;
clear ;
close ;
V1 = -5 ; // volt // input voltage
V2 = 0 ; // volt // GND
Vo = 20 ; //volt // output voltage
// the difference voltage is given by
Vd = V2-V1 ;
disp(' The difference voltage is = '+string(Vd)+' V ');
// open loop gain
A = (Vo/Vd);
disp(' The open loop gain is = '+string(A)+' ');
|
308195772d6aaeefd6177da096e8b88ab062dbe1 | 6f286be4a4e16867cc6e488080b8e3eced1dcd62 | /htslib/test/base_mods/base-mods.tst | 3809c0e6ee915f84f44008af8a85f8447cb42ab2 | [
"BSD-3-Clause",
"MIT",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | imgag/ngs-bits | 3587404be01687d52c5a77b933874ca77faf8e6b | 0597c96f6bc09067598c2364877d11091350bed8 | refs/heads/master | 2023-09-03T20:20:16.975954 | 2023-09-01T13:17:35 | 2023-09-01T13:17:35 | 38,034,492 | 110 | 36 | MIT | 2023-09-12T14:21:59 | 2015-06-25T07:23:55 | C++ | UTF-8 | Scilab | false | false | 1,904 | tst | base-mods.tst | # Copyright (C) 2020 Genome Research Ltd.
#
# Author: James Bonfield <jkb@sanger.ac.uk>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
# First field:
# INIT = initialisation, not counted in testing
# P = expected to pass
# F = expected to fail
# Second field:
# Filename of expected output
# Third onwards; command to execute. $fmt is replaced by the current file
# format, ie sam, bam or cram. $samtools is a pointer to the desired
# samtools binary. This can be useful for testing older versions.
# Test files from SAM spec
P MM-chebi.out $test_mod MM-chebi.sam
P MM-double.out $test_mod MM-double.sam
P MM-multi.out $test_mod MM-multi.sam
P MM-explicit.out $test_mod MM-explicit.sam
P MM-explicit-x.out $test_mod -x MM-explicit.sam
# Pileup testing
P MM-pileup.out $pileup_mod < MM-pileup.sam
P MM-pileup2.out $pileup_mod < MM-pileup2.sam
|
3e2be80b93eff7bc69a3796ccda5d7e593ae9b57 | e182a95b50904008697c55b376261f8a6c38b225 | /decimal_to_fixed_pont.sce | a67335d556fb49a67c4c88c24bc6b864303303e2 | [] | no_license | RhinomanUK/Scilab | 210fb0ca7f7776d2b271bb243140aa8aa837dd81 | 63519c7f6ada71f1baf6f72633247ea518e6eeb3 | refs/heads/master | 2021-09-07T12:06:29.767806 | 2018-02-22T16:33:57 | 2018-02-22T16:33:57 | 118,903,494 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,067 | sce | decimal_to_fixed_pont.sce | // decimal_to_fixed_point.sce
// Converts a decimal number to an 8.8 fixed point value
// copyright James Holland 2018
// This code is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General
// Public License along with this code; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place, Suite 330,
// Boston, MA 02111-1307 USA
// James Holland
// Version 1 - 25th January 2018
dec_value = [14.7];
mod_value = uint8(dec_value);
rem_value = modulo(dec_value,1);
hex_value = dec2hex(mod_value);
bit_weight = 128;
bit_value = 0.5;
out_value = 0;
tmp_value = 0;
calc_value = 0;
for n = 1 : 8
tmp_value = rem_value-bit_value;
if tmp_value>=0
rem_value=tmp_value;
out_value = out_value + bit_weight;
calc_value = calc_value + bit_value;
end
bit_weight=bit_weight/2;
bit_value = bit_value/2;
end
dec_str = string(dec_value);
dec_str = 'Decimal Input=' + dec_str;
calc_value=calc_value + double(mod_value);
calc_str = string(calc_value);
calc_str = 'decimal=' + calc_str;
out_value_L = uint8(out_value);
hex_value_L = dec2hex(out_value_L);
hex_value = hex_value + hex_value_L;
hex_str = 'Hex value=' + '0x' + hex_value;
error_value = dec_value- calc_value;
error_value = (error_value/dec_value)*100;
err_str = string(error_value);
err_str = 'error=' + err_str + '%';
disp(dec_str);
disp(hex_str);
disp(calc_str);
disp(err_str);
|
48a8850e4ecb5023361fb7863322a89cfeb916de | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH9/EX9.4/Ex9_4.sce | 7aff2104e97d54ab810f1df48ceb86376d6d5c9a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | Ex9_4.sce | clc;
clear;
n1=1.45 //refractive index of core
n2=1.40 //refractive index of cladding
//calculation
NA=sqrt(n1^2-n2^2)
mprintf("\nThe numerical aperture is = %1.4f.\n",NA)
i_a=asind(NA)
mprintf("The acceptance angle is = %d degree.",i_a)
|
6277e9b387d953c8f1280811d302b98654639608 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH1/EX1.8/ex1_8.sce | 2dca100d82859144f61090c0a6a2926ac3b2a3be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 769 | sce | ex1_8.sce | // Exa 1.8
clc;
clear;
close;
// Given data
lembda = 0.58;// in Å
n = 1;
theta1 = 6.45;// in degree
d = (n*lembda)/(2*sind(theta1));// in Å
disp(d,"Part (i) : At angle of 6.45°, Interplaner spacing of the crystal in Å is ");
theta2 = 9.15;// in degree
d1 = (n*lembda)/(2*sind(theta2));// in Å
disp(d1,"Part(ii) : At angle of 9.15°, Interplaner spacing of the crystal in Å is ");
theta3 = 13;// in degree
n2 = 1;
d2 = (n2*lembda)/(2*sind(theta3));// in Å
disp(d2,"Part(iii) : At angle of 13°, Interplaner spacing of the crystal in Å is ");
// For
n=2;
d2 = (n*lembda)/(2*sind(theta3));// in Å
disp(d2,"Part (iv) : The interplaner spacing in Å is : ")
disp(d1,"The interplaner spacing for some other set of reflecting in Å is : ")
|
acb3140475a6b7c5f8fbeb3aacb0605026dea450 | 1d7b0d2d2e1b23faa4bf321453d437f21afd5fe5 | /lab 3 - Z Transform/scilab3_Q2_Ztransform.sce | a3e10e3bbdf00d983fa414f0643bc347614de485 | [] | no_license | aaryashah11/60002190003_SciLab | 2847a459a8a90ef07f4f17d8f18bb1be39a6c574 | 9ca078e5a8790fd0b1dea8320687e68c976a1efc | refs/heads/main | 2023-01-19T05:53:02.417751 | 2020-11-25T07:55:15 | 2020-11-25T07:55:15 | 315,696,665 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | scilab3_Q2_Ztransform.sce | //find the z transform of a simple sequence
function[za]=ztransfer(seq,n)
z=poly(0, 'z','r')
za=seq*(1/z)^n'
endfunction
//my sequence starts from n=-6 to n=2
x1=[2 -1 3 2 1 0 2 3 -1]
n=-6:2
zz=ztransfer(x1,n)
//ROC of the above sequence...
//the ROC will be the entire z plane - finite duration signals then we will talk about the z-plane and not the unit circle.
//these are finite duration signals
|
fad5cc7c3e30515286712b04488b07eccb43df34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH12/EX12.35/Ex12_35.sce | afd5a6a71e321c5709ebec3196cdb6b68a4f76e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | Ex12_35.sce | //Chapter 12
//page no 530
//given
clc;
clear all;
lembda=1550; //wavelength in nm
c=3*10^5; //speed of light in km/s
Zs=600; //in km
Tfwhm=20; //in ps
D=1/1.763^2*[2*%pi*c*Tfwhm^2/(lembda^2*Zs)]; //dispersion constant
printf("\n dispersion constant, D = %0.2f ps/nm/km",D); //result
|
4e8cc426f0ad6496633b6ab1ab8e7c09f2713d5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3827/CH2/EX2.3/EX2_3.sce | f0f11903ca2c27f282eee3d101b78ee32595cf36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 389 | sce | EX2_3.sce | //EX2_3 Simplify Z = (AB + C)(B'D + C'E') + (AB + C)'
//clears the screen
clc
//clears already existing variables
clear
disp('Z = (AB + C)(B''D + C''E'') + (AB + C)''')
disp('Let X = (AB + C)'' X'' = AB + C')
disp('and Y = B''D + C''E''')
disp('Z = X''Y + X')
//By the elimination theorem i.e. X + X'Y = X + Y
disp('Z = Y + X')
disp('Z = B''D + C''E'' + (AB + C)'' ')
|
8e7ea490196995af47c4aa0a2ca95016d87ecfec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH9/EX9.6/Ex9_6.sce | 343f0d1ca68ad9151aa34fd44b09969f9b23474a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | sce | Ex9_6.sce | //Ex 9.6
clc;
clear;
close;
format('v',5);
fL=400;//Hz
Ap=2;//Pass band gain
disp("Various design parameters are :-");
C=0.05;//micro F//Chosen for the design between 0.01 & 1 micro F
disp(C,"Capacitance(micro F)");
R=1/(2*%pi*fL*C*10^-6)/1000;//kohm
format('v',4);
disp(R,"Resistance R(kohm)");
disp("Use R=8.2 kohm");
//Ap=1+Rf/Ri
RfBYRi=Ap-1;//Rf=Ri here
//R=Rf||Ri
Ri=2*R;//kohm
Rf=Ri;//kohm
disp(Ri,"Resistance Ri(kohm)");
disp(Rf,"Resistance Rf(kohm)");
|
f1c1dc6f3ad6b01e94a8414bde23e1021d237578 | 449d555969bfd7befe906877abab098c6e63a0e8 | /374/CH1/EX1.2/12.sci | e954ebb5243d7d396c1566156b57572016548d18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sci | 12.sci | //Chapter 1 Example2//
//refractive index of air=na,acceptance angle=a,numerical aperture=NA//
clc;
clear;
NA=0.3;
a=asind(NA);
printf("\n a) acceptance angle=%f\n",a);
//direction of screw rays=s,acceptance angle of screw rays=as//
s=45;
as=(asind(NA))/(cosd(s));
printf("\n b) acceptance angle of screw rays=%f\n",as);
|
a03e366393215380ae5460a1b6bcf79dd7b4b9b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH7/EX7.13/Ch07Ex13.sce | a5ca60b265d648cc01f3d5fbb180030c9f950196 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 650 | sce | Ch07Ex13.sce | // Scilab code Ex7.13: Pg:308 (2008)
clc;clear;
P = 2/1.6e-013; // Power to be produced, MeV/sec
E_bar = 200; // Energy released per fission, MeV
n = P/E_bar; // Required number of fissions per second
// Since the number of atoms in 235gm of Uranium is 6.02e+023
N = (6.02e+023/235)*500; // Number of atoms in 500 gm of U-235
E = E_bar*N; // Total energy released in the complete fission of 500gm of uranium 235, MeV
printf("\nThe total energy released in the complete fission of 500gm of uranium 235 = %4.2e MeV", E);
// Result
// The total energy released in the complete fission of 500gm of uranium 235 = 2.56e+026 MeV |
2fbac623325bd7d6dac05f6e2e29118524e49233 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electrical_Power_Systems_A._Husain_1118.zip/Electrical_Power_Systems_A._Husain_1118/CH19/EX19.5/eg19_5.sce | 6bf94e042b37440e935b4ef377cc446179149cfc | [] | 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 | 171 | sce | eg19_5.sce | errcatch(-1,"stop");mode(2);;
//;
s1=500;
h1=4.6;
s2=1500;
s=100;
h2=3;
ke=s1*h1 + s2*h2;
H=ke/s;
printf("the inertia constants H is:%.0f MJ/MVA\n",H);
exit();
|
3b990c2e2fac22cb2f21f617f6a4bc90419bd8d2 | 32869948ce801ed2e69b5fb986fc310cab9a6d4a | /macros/buildmacros.sce | 3d164d525e9a28eff52f130235e942f4254477aa | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ierturk/SciPowerLab | 54ed5755cf4f3854176d7088f893317fe86cc0cf | da5d153272bae12564c1ded95241d6b40c8b4a90 | refs/heads/master | 2022-07-20T15:29:09.447509 | 2022-07-18T21:10:36 | 2022-07-18T21:10:36 | 94,237,627 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sce | buildmacros.sce | // ErturkMe - Copyright 2011 - 2022
// http://erturk.me
// ierturk@ieee.org
// See license.txt
function buildmacros()
curdir = get_absolute_file_path("buildmacros.sce");
macrosdirs = [..
"MachinePal",..
"ControlPal"..
];
for i=1:size(macrosdirs,"*") do
exec(curdir + "/" + macrosdirs(i) + "/buildmacros.sce");
end
endfunction
buildmacros();
clear buildmacros; // remove buildmacros on stack
|
d0b2e4dc5e431524ab66cbf6256d1d951599d89c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.38/5_38.sce | d86e447c69bd4f8d226dd48d8e7409a852e2dff7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 498 | sce | 5_38.sce | //ques-5.38
//Calculating transport number of Potassium ions in KCl
clc
m1=3.654;//mass of KCl/100g (in g)
m2=122.93;//mass of cathode solution (in g)
x=5.136;//KCl contained in cathode solution after electrolysis (in g)
y=(m1/100)*m2;//KCl contained in cathode solution before electrolysis (in g)
m3=1.978;//weight of Ag deposited (in g)
z=(m3*74.5)/108;//weight of KCl electrolysed (in g)
t=(x-y)/z;//transport number of K ions
printf("Transport number of potassium ions is %.3f.",t);
|
d58fec61c8102fad68ebaebad5493c452b8764bf | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testxdialog.sce | efe0fdea7582e5aa8cdff14ed957c95d9c8d61d7 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 52 | sce | testxdialog.sce | rep=x_dialog(['enter a value';'then click OK'],'1')
|
ab71af5edde994919cc013f44bf7312e84aeefaa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH5/EX1.5.6/Ex1_5_6.sce | 0830e882973eef5350100dc1aa8d77dfb02b6f81 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 713 | sce | Ex1_5_6.sce | //Section-1,Example-6,Page no.-AC.443
//To find the percentage reduction in the density of the given composite.
clc;
V_m=0.3
V_f=1-V_m
E_m=3.5
V_m=0.3
E_f=70
E_c=((E_m*V_m)+(E_f*V_f))
d_f=2.5
d_m=1.2 //disp E_c(modulus of glass-epoxy composite)
E_cbar=(2*E_c) //E_cbar=((E_c*(1-V_f))+(E_f*V_f)
V_f1=(50.05/299.95) // V_f1=V_c fiber
//since V_m=0.3 has to be maintained V_f=0.7
//V_f=V_glass+V_c fiber
V_glass=0.7-0.16686
d_c=((d_f*V_f)+(d_m*V_m))
//d_cbar=d_f*V_f(glass fibres)+d_fbar*V_fbar(C-fibers)+d_m*V_m(epoxy)
d_cbar=(2.5*0.533)+(1.8*0.16686)+(1.2*0.3)
P_r=((d_c - d_cbar)/d_c)*100
disp(P_r,'Percentage reduction in density')
|
18f7a2437e130b5ac50cdb7bc53802eb563ab515 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH13/EX13.11/13_11.sce | 3202a40ad7b1b1548108f89d60da6594963e9b4c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,511 | sce | 13_11.sce | //Problem 13.11:
//initializing the variables:
A = 0.229E-3;
B = 7340;
T = 298; // in K
R = 1.99; // in cal/gmol.K
//calculation:
//The following two results are provided from Illustrative Example 13.4:
DG0298 = -9079 // in cal/gmol
DH0298 = -13672 // cal/gmol
//Employ Equation
//lnK = -DH0/RT + (Da/R)*lnT + (Db/2R)*T + (Dr/6R)*T^-2 + I
//Next, DH0 and I must be determined.
//DH0T = DH0298 + int(298,T)(DCpdT)
//For heat capacities of the form
//Cp = a + bT + cT^-2
//Table 7.4 can be employed to generate the following terms:
Da = (7.30 + 8.85) - [(2*6.27 + 0.5*7.16)]
Db = 2.46E-3 + 0.16E-3 - [2*1.24E-3 + 0.5*1.0E-3]
Dc = 0.0 - 0.68E5 - [2*0.30E5 + 0.5*(-0.4E5)]
//From this, Equation then becomes:
//DH0T = DH0298 + int(298,T)[Da + (Db)T + (Dc)T^-2] dT
//or
//DH0T = DH0298 + Da(T - 298) + (1/2)*Db[T^2 - (298)^2] - Dc(1/T - 1/298)
//Combining the constant terms into DH0 (as in Chapter 10) yields the following:
//DH0T = DH0 + (Da)T + (1/2)*(Db)T^2 -(Dc)T6-1
//where
DH0 = DH0298 - 298*Da - (1/2)*[(298)^2]*Db + (1/298)*Dc
//From Equation (13.16)
lnK = -1*DG0298/(R*T)
//Therefore,
I = lnK - DH0/(R*T) - Da/R*log(T) + Db/(2*R)*T + Dc/(2*R)*T^-2
//The final form of the equation for K is
//ln(K) = 7048.7/T + (0.0151)*lnT - (9.06E-5)*T - (2.714E4)*T^-2 - 8.09
printf("\n\nResult\n\n")
printf("\n The final form of the equation for K is \n ln(K) = (%.1f)/T + (%.4f)*lnT - (%.2E)*T - (%.3E)*T^-2 - 8.09",-1*DH0/1.99, Da/1.99, abs(Db)/(2*1.99), abs(Dc)/(2*1.99))
|
9d892cfada05bd5e4e613c5dfd2fd704d855208a | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_P._Sharma_876.zip/Electronic_Measurements_And_Instrumentation_P._Sharma_876/CH6/EX6.9/Ex6_9.sce | 8a68fa845e5c26c36f5381e259aa1cdeb47c38c7 | [] | 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 | 289 | sce | Ex6_9.sce | errcatch(-1,"stop");mode(2);//caption:Find total number of pulses and display reading
//Ex6.9
V=10//input voltage(in V)
S=0.001//ramp slope(in V/second)
F=1000000//clock frequency(in Hz)
T=1/F
t=V*S
P=t/T
disp(P,'total number of pulses=')
disp(P,'display reading=')
exit();
|
a5df3b09ba8c14ed27378ab28a69b907fb0d2219 | 665eac2bfd0d2f1d559f485375f89e8a91632c6e | /VOL_300/335_01/AS1805.TST | d7e32fde7ec6107de68f5b8463a4c73df3156a65 | [] | no_license | kubohisa/CUGL | 615c29732e5fc2c6bcb29a4013be3351dc21dda6 | 75fc7cb2f8c5f3869a091b2b5c50c09323bc1c03 | refs/heads/main | 2023-03-15T16:19:49.355867 | 2020-10-02T21:19:00 | 2020-10-02T21:19:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,296 | tst | AS1805.TST | org 2300h
expr equ *
immed equ $55
adc
adci # immed
add
adi # immed
and
ani # immed
b1 expr
b2 expr
b3 expr
b4 expr
bci expr
bdf expr
bge expr
bl expr
bm expr
bn1 expr
bn2 expr
bn3 expr
bn4 expr
bnf expr
bnq expr
bnz expr
bpz expr
bq expr
br expr
bxi expr
bz expr
cid
cie
daci # immed
dadc
dadd
dadi # immed
dbnz 0 , expr
dbnz 1 , expr
dbnz 10 , expr
dbnz 11 , expr
dbnz 12 , expr
dbnz 13 , expr
dbnz 14 , expr
dbnz 15 , expr
dbnz 2 , expr
dbnz 3 , expr
dbnz 4 , expr
dbnz 5 , expr
dbnz 6 , expr
dbnz 7 , expr
dbnz 8 , expr
dbnz 9 , expr
dec 0
dec 1
dec 10
dec 11
dec 12
dec 13
dec 14
dec 15
dec 2
dec 3
dec 4
dec 5
dec 6
dec 7
dec 8
dec 9
dis
dsav
dsbi # immed
dsm
dsmb
dsmi # immed
dtc
etq
gec
ghi 0
ghi 1
ghi 10
ghi 11
ghi 12
ghi 13
ghi 14
ghi 15
ghi 2
ghi 3
ghi 4
ghi 5
ghi 6
ghi 7
ghi 8
ghi 9
glo 0
glo 1
glo 10
glo 11
glo 12
glo 13
glo 14
glo 15
glo 2
glo 3
glo 4
glo 5
glo 6
glo 7
glo 8
glo 9
idl
inc 0
inc 1
inc 10
inc 11
inc 12
inc 13
inc 14
inc 15
inc 2
inc 3
inc 4
inc 5
inc 6
inc 7
inc 8
inc 9
inp 1
inp 2
inp 3
inp 4
inp 5
inp 6
inp 7
irx
lbdf expr
lbnf expr
lbnq expr
lbnz expr
lbq expr
lbr expr
lbz expr
lda 0
lda 1
lda 10
lda 11
lda 12
lda 13
lda 14
lda 15
lda 2
lda 3
lda 4
lda 5
lda 6
lda 7
lda 8
lda 9
ldc
ldi # immed
ldn 1
ldn 10
ldn 11
ldn 12
ldn 13
ldn 14
ldn 15
ldn 2
ldn 3
ldn 4
ldn 5
ldn 6
ldn 7
ldn 8
ldn 9
ldx
ldxa
lsdf
lsie
lskp
lsnf
lsnq
lsnz
lsq
lsz
mark
nbr *+3
nlbr expr
nop
or
ori # immed
out 1
out 2
out 3
out 4
out 5
out 6
out 7
phi 0
phi 1
phi 10
phi 11
phi 12
phi 13
phi 14
phi 15
phi 2
phi 3
phi 4
phi 5
phi 6
phi 7
phi 8
phi 9
plo 0
plo 1
plo 10
plo 11
plo 12
plo 13
plo 14
plo 15
plo 2
plo 3
plo 4
plo 5
plo 6
plo 7
plo 8
plo 9
req
ret
rldi 0 , # expr
rldi 1 , # expr
rldi 10 , # expr
rldi 11 , # expr
rldi 12 , # expr
rldi 13 , # expr
rldi 14 , # expr
rldi 15 , # expr
rldi 2 , # expr
rldi 3 , # expr
rldi 4 , # expr
rldi 5 , # expr
rldi 6 , # expr
rldi 7 , # expr
rldi 8 , # expr
rldi 9 , # expr
rlxa 0
rlxa 1
rlxa 10
rlxa 11
rlxa 12
rlxa 13
rlxa 14
rlxa 15
rlxa 2
rlxa 3
rlxa 4
rlxa 5
rlxa 6
rlxa 7
rlxa 8
rlxa 9
rnx 0
rnx 1
rnx 10
rnx 11
rnx 12
rnx 13
rnx 14
rnx 15
rnx 2
rnx 3
rnx 4
rnx 5
rnx 6
rnx 7
rnx 8
rnx 9
rshl
rshr
rsxd 0
rsxd 1
rsxd 10
rsxd 11
rsxd 12
rsxd 13
rsxd 14
rsxd 15
rsxd 2
rsxd 3
rsxd 4
rsxd 5
rsxd 6
rsxd 7
rsxd 8
rsxd 9
sav
scal 0 , expr
scal 1 , expr
scal 10 , expr
scal 11 , expr
scal 12 , expr
scal 13 , expr
scal 14 , expr
scal 15 , expr
scal 2 , expr
scal 3 , expr
scal 4 , expr
scal 5 , expr
scal 6 , expr
scal 7 , expr
scal 8 , expr
scal 9 , expr
scm1
scm2
sd
sdb
sdbi # immed
sdi # immed
sep 0
sep 1
sep 10
sep 11
sep 12
sep 13
sep 14
sep 15
sep 2
sep 3
sep 4
sep 5
sep 6
sep 7
sep 8
sep 9
seq
sex 0
sex 1
sex 10
sex 11
sex 12
sex 13
sex 14
sex 15
sex 2
sex 3
sex 4
sex 5
sex 6
sex 7
sex 8
sex 9
shl
shlc
shr
shrc
skp
sm
smb
smbi # immed
smi # immed
spm1
spm2
sret 0
sret 1
sret 10
sret 11
sret 12
sret 13
sret 14
sret 15
sret 2
sret 3
sret 4
sret 5
sret 6
sret 7
sret 8
sret 9
stm
stpc
str 0
str 1
str 10
str 11
str 12
str 13
str 14
str 15
str 2
str 3
str 4
str 5
str 6
str 7
str 8
str 9
stxd
xid
xie
xor
xri # immed
|
92cba66cbf038526abe8f8d98d319b8992e4832a | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH8/EX8.3/Chap8_Ex3_R1.sce | d6106cc2f38f615cb3a73e7c45675fa2a942c42d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,868 | sce | Chap8_Ex3_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-8,Example 3,Page 276
//Title: Enthalpy departure using Beattie-Bridgman equation of state
//================================================================================================================
clear
clc
//INPUT
T=100;//temperature of carbon dioxide in degree celsius
P=10;//pressure of carbon dioxide in MPa
A0=0.5073;//Beattie-Bridgman constant for carbon dioxide in (Pa m^3)/mol^2
B0=104.76*10^-6;//Beattie-Bridgman constant for carbon dioxide in m^3/mol
a=71.32*10^-6;//Beattie-Bridgman constant for carbon dioxide in m^3/mol
b=72.35*10^-6;//Beattie-Bridgman constant for carbon dioxide in m^3/mol
C=660.0;//Beattie-Bridgman constant for carbon dioxide in (m^3 K^3)/mol
R=8.314;//universal gas constant in J/molK
//CALCULATION
//The virial form of the Beattie-Bridgman equation of state from Eq.(8.25) is given as:
//P=(A1/v)+(A2/v^2)+(A3/v^3)+(A4/v^4)
T=T+273.15;//conversion of temperature in K
A1=(R*T);//calculation of A1 using Eq.(8.27)
A2=(B0*R*T)-A0-((C*R)/T^2);//calculation of A2 using Eq.(8.28)
A3=(a*A0)-(b*B0*R*T)-((B0*C*R)/T^2);//calculation of A3 using Eq.(8.29)
A4=((b*C*B0*R)/T^2);//calculation of A4 using Eq.(8.30)
vguess=0.01;//taking a guess value of the volume,to be used for solving Eq.(8.25) using the function defined below, in m^3/mol
tolerance=1e-6;//Framing the tolerance limit for the convergence of the equation
function[fn]=solver_func(vi)
fn=(P*10^6)-((A1/vi)+(A2/vi^2)+(A3/vi^3)+(A4/vi^4));//Function defined for solving the system given by Eq.(8.25)
endfunction
[v]=fsolve(vguess,solver_func,tolerance)//using inbuilt function fsolve for solving the system of equations, to determine the volume in m^3/mol
Z=(P*10^6*v)/(R*T);//calculation of compressibility factor (no unit)
//calculation of the enthalpy departure using Eq.(8.37) in J/mol
dep_h=(((B0*R*T)-(2*A0)-((4*C*R)/(T^2)))*(1/v))+((((3/2)*a*A0)-(b*B0*R*T)-((5*B0*C*R)/(2*(T^2))))*(1/(v^2)))+((2*b*C*B0*R)/((T^2)*(v^3)));
//OUTPUT
mprintf("\n Molar volume of CO2 at %0.f MPa and %0.2f K = %f m^3/mol \n",P,T,v);
mprintf("\n The compressibility factor=%f \n",Z);
mprintf("\n The enthalpy departure for carbon dioxide using the Beattie-Bridgman equation of state = %f J/mol\n",dep_h);
//===============================================END OF PROGRAM===================================================
//DISCLAIMER: THE PROBLEM STATEMENT GIVES THE TEMPERATURE AS 100 DEGREE CELSIUS, WHICH CORRESPONDS TO A TEMPERATURE OF 373.15K. HOWEVER, IN THE COMPUTATION OF THE SECOND TERM IN THE ENTHALPY DEPARTURE EXPRESSION, THE AUTHOR HAS TAKEN THE TEMPERATURE TO BE 313.15K, WHICH CLEARLY IS A PRINTING ERROR. THE CODE ABOVE HAS BEEN WRITTEN FOR THE TEMPERATURE OF 373.15K, AS GIVEN IN THE PROBLEM STATEMENT.
|
a50f91ebfe0bf1779451b664bbccbffd77964c76 | 72d7c10733e74eafb60961874dedea7fa2a43569 | /10.Control_Systems/Nyquist_plot.sce | 6ad616f1dd9d8fc7ec756f9dc298aa29794cca89 | [] | no_license | AkshayNachappa/Scilab-Workshop | 8dc448c41a2e768f3d93bbed928705445b9c007b | 056436f38a1f3aad7d1e3669595718839108c40e | refs/heads/master | 2023-01-02T00:20:19.968404 | 2020-10-20T17:04:44 | 2020-10-20T17:04:44 | 297,102,650 | 2 | 2 | null | 2020-10-20T17:04:46 | 2020-09-20T15:12:27 | Scilab | UTF-8 | Scilab | false | false | 535 | sce | Nyquist_plot.sce |
// Nyquist plot
clc;
clear;
close
s=poly(0,'s')
num=input('Enter the Numerator =')
// Case - 1 Enter the Numerator = 1
// Case - 2 Enter the Numerator = (5+s)*(s+40)
// Case - 3 Enter the Numerator = (s+1)
den=input('Enter the Denominator =')
// Case - 1 Enter the Denominator = (s*(s+1)*(2*s+1))
// Case - 2 Enter the Denominator = (s^3)*(s+200)*(s+1000)
// Case - 3 Enter the Denominator =(s^2)*(s+5)*(s+10)
TF = syslin('c',num,den)//Transfer function
disp("Transfer Function of system = ",TF)
h=syslin('c',num,den)
nyquist(h);
|
b9aab55732334b69341445f3416f18452228ed83 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1730/CH5/EX5.3/Exa5_3.sce | 65cb90c9d68dd928612be17497c8368162b57f1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 784 | sce | Exa5_3.sce | //Exa 5.3
clc;
clear;
close;
format('v', 11)
// given data
nita=628;// in J/m^3
B_max=1.3;// in Wb/m^2
f=25;// in Hz
ironMass=50;// in kg
densityOfIron=7.8*10^3;// in kg/m^3
V=ironMass/densityOfIron;
x=12.5;// in AT/m
y=0.1;// in T
// formula Hysteresis loss/second = nita*B_max^1.6*f*V
H_Loss_per_second = nita*B_max^1.6*f*V ;// in J/s
H_Loss_per_second=floor(H_Loss_per_second);
H_Loss_per_hour= H_Loss_per_second*60*60;// in J
disp("Hysteresis Loss per hour is : "+string(H_Loss_per_hour)+" J");
// Let Hysteresis Loss per m^3 per cycle = H1
H1=nita*B_max^1.6;
// formula hysteresis loss/m^3/cycle = x*y*area of B-H loop
Area_of_B_H_loop=H1/(x*y);
Area_of_B_H_loop=floor(Area_of_B_H_loop);
disp("Area of B-H loop is : "+string(Area_of_B_H_loop)+" cm^2");
|
b1844eaed75559afc36a9b5cf250957dd9f62e3d | e4fb5d5b74926250f6730bfa3995e52ea55e4dc4 | /examples/heat/heat.tst | 216c9ecf480c42dc8564e3512fd96c67412a167d | [
"BSD-2-Clause"
] | permissive | maxvonhippel/S3CAMX | 7629225410eaae455148e7ec0512c9575829b17c | 03f63f84e6e1e18598edff52a901f669c2fee342 | refs/heads/master | 2022-12-07T09:44:14.519479 | 2016-06-21T05:21:27 | 2016-06-21T05:21:27 | 292,167,603 | 0 | 0 | null | 2020-09-02T03:20:25 | 2020-09-02T03:20:24 | null | UTF-8 | Scilab | false | false | 1,849 | tst | heat.tst | import heat as H
inf = float('inf')
benchmark_id = 1
plant_pvt_init_data = benchmark_id
delta_t = 0.5
X0, Xf, H0, NUM_ROOMS = H.get_benchmark_inits(benchmark_id)
H.create_benchmark_specefic_controller_header(benchmark_id)
NUM_ROOMS = 3
# P1
#T = 50.0
T = 10.0
#initial_set = [[19.75894131, 19.07248385, 19.60889913], [19.75894131, 19.07248385, 19.60889913]]
initial_set = [[19.0, 19.0, 19.0], [20.0, 20.0, 20.0]]
#initial_set = X0
ci = [[], []]
# easy prop!
# vio = _/100k took _ mins [plotting, logging?]
# SS = falsified in _ [plotting, logging?]
# grid_eps = <[0.0, 0.0]>
# num_samples = <2>
# SS + symex: falsified in _ [plotting, logging?]
#
#error_set = [[-inf, -inf, -inf], [17.5, inf, inf]]
#grid_eps = [1.0, 1.0, 1.0]
#min_smt_sample_dist = 0.5
#num_samples = 1
# hard prop
# vio = _/100k took _ mins [plotting, logging?]
# SS = falsified in _ [plotting, logging?]
# grid_eps = <[0.0, 0.0]>
# num_samples = <2>
# SS + symex: falsified in _ [plotting, logging?]
#
error_set = [[-inf, -inf, -inf], [17.23, inf, inf]]
grid_eps = [1.0, 1.0, 1.0]
min_smt_sample_dist = 0.5
#num_samples = 3
# 1 works!! ?? need to run regression
#num_samples = 3 # symex
num_samples = 5 # concrete
#TODO : add OR operator for error set!
#error_set = [[-inf, -inf, -inf], [inf, 17.5, inf]]
#error_set = [[-inf, -inf, -inf], [inf, inf , 17.5]]
#error_set = [[-inf, -inf, -inf], Xf]
initial_discrete_state = [0]
initial_controller_integer_state = [1, 0, 0]
#initial_controller_integer_state = H0
initial_controller_float_state = []
num_control_inputs = NUM_ROOMS
pi = [[],[]]
MAX_ITER = 10
################
# Simulators
################
# Plant
plant_description = 'python'
plant_path = 'heat_plant.py'
# Controller
controller_path = 'heat_controller.so'
controller_path_dir_path = './paths'
CONVERSION_FACTOR = 1.0
refinement_factor = 2.0
|
84f35e4a4f9610df6e835a3bdb1902626b55a917 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/RV7.prev.tst | 2f5560532b65ebc226af670b465b24cb754cdce2 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 89 | tst | RV7.prev.tst | [7/2,7/3,-7/5] / [1/2,1/3,-1/5] = divide: quot[0] = 7, remd = [0]
[7], remainder = [0]
|
93c444651dbdd376582f4ffc6b89d76a6c205b06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3665/CH13/EX13.4/Ex13_4.sce | 48776b901f6afba797fe2db0accda41222124c6e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 260 | sce | Ex13_4.sce | clc//
//
//
//Variable declaration
n1=1.563; //refractive index of core
n2=1.498; //refractive index of cladding
//Calculation
delta=(n1-n2)/n1; //fractional index change
//Result
printf("\n fractional index change is %0.4f ",delta)
|
16ac5cfc6fa10b2f6a71a95cbca31eda7f75a403 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH12/EX12.10/Ex12_10.sce | 4396af82bfb907c3f8d5f1fbb81ca79775789bb8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,170 | sce | Ex12_10.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex12_10.sce
clc;
clear;
Z_R=complex(8,6);
Z_Y=complex(8,-6);
Z_B=complex(5,0);
Z_N=complex(0.5,1);
Y_R=1/Z_R;
Y_Y=1/Z_Y;
Y_B=1/Z_B;
Y_N=1/Z_N;
E_R=220;
E_Y=220;
E_B=220;
theta1=0;
theta2=-120;
theta3=120;
V_R=complex(E_R*cosd(theta1),E_R*sind(theta1));
V_Y=complex(E_Y*cosd(theta2),E_Y*sind(theta2));
V_B=complex(E_B*cosd(theta3),E_B*sind(theta3));
V_NN_dash=((V_R*Y_R)+(V_Y*Y_Y)+(V_B*Y_B))/(Y_R+Y_Y+Y_B+Y_N);
V_R_dash=V_R-V_NN_dash;
V_Y_dash=V_Y-V_NN_dash;
V_B_dash=V_B-V_NN_dash;
V_R_dash_mag=sqrt(real(V_R_dash)^2+imag(V_R_dash)^2);
V_Y_dash_mag=sqrt(real(V_Y_dash)^2+imag(V_Y_dash)^2);
V_B_dash_mag=sqrt(real(V_B_dash)^2+imag(V_B_dash)^2);
V_R_dash_angle=atand(imag(V_R_dash)/real(V_R_dash));
V_Y_dash_angle=atand(imag(V_Y_dash)/real(V_Y_dash))+180;
V_B_dash_angle=atand(imag(V_B_dash)/real(V_B_dash))+180;
printf("\n Load phase voltages: Magnitude\tAngle(deg)")
printf("\n For R phase\t%3.2f\t%0.3f",V_R_dash_mag,V_R_dash_angle)
printf("\n For Y phase\t%3.2f\t%3.2f",V_Y_dash_mag,V_Y_dash_angle)
printf("\n For B phase\t%3.2f\t%3.2f",V_B_dash_mag,V_B_dash_angle)
//For V_NN_dash value , the answer given in the book is wrong.So load phase voltage vary from the book answer.
//Also V_R_dash angle is not 0.168. It is negative angle that is -0.193
I_R=V_R_dash*Y_R;
I_Y=V_Y_dash*Y_Y;
I_B=V_B_dash*Y_B;
I_N=V_NN_dash*Y_N;
I_R_mag=sqrt(real(I_R)^2+imag(I_R)^2);
I_Y_mag=sqrt(real(I_Y)^2+imag(I_Y)^2);
I_B_mag=sqrt(real(I_B)^2+imag(I_B)^2);
I_N_mag=sqrt(real(I_N)^2+imag(I_N)^2);
I_R_angle=atand(imag(I_R)/real(I_R));
I_Y_angle=atand(imag(I_Y)/real(I_Y))+360;
I_B_angle=atand(imag(I_B)/real(I_B))+180;
I_N_angle=atand(imag(I_N)/real(I_N))+180;
printf("\n\n Load phase current: Magnitude\tAngle(deg)")
printf("\n For R phase\t%3.2f\t%0.3f",I_R_mag,I_R_angle)
printf("\n For Y phase\t%3.2f\t%3.2f",I_Y_mag,I_Y_angle)
printf("\n For B phase\t%3.2f\t%3.2f",I_B_mag,I_B_angle)
printf("\n For Neutral\t%3.2f\t%3.2f",I_N_mag,I_N_angle)
|
286919c315624cc97746b6949f7b69cc8ec17df2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH12/EX6.12.4/Ex6_12_4.sce | 0eb3604ccd938de3b59314d078f86b8665157c6c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 800 | sce | Ex6_12_4.sce | //Section-6,Example-4,Page no.-P.33
clc;
N_2=6.61
V_2=1000
V_1=180
N_1=(N_2*V_2)/V_1
disp(N_1,'Normality of conc.H_2SO_4(N)')
N_2=6.61 //Normality of dil.H_2SO_4
M_1=N_2/2
disp(M_1,'Molarity of dil.H_2SO_4(M)')
W_H=6.61*49 //Weight of H_2SO_4 actually contained in the solution(gm)
W_CH=180*1.84 //Weight of 180 ml of conc. H_2SO_4(gm)
pr_H=(W_H/W_CH)*100
disp(pr_H,'% of H_2SO_4 by weight in conc. H_2SO_4')
W_H1=49*6.61 //Weight of H_2SO_4 on 1L of dil.solution
y=W_H1/(1000*1.198*0.01)
disp(y,'% of H_2SO_4 by weight in diluted H_2SO_4')
W_H2O=1198-323.85 //Weight of water(gm)
m=M_1/(W_H2O*10^-3)
disp(m,'Molality of diluted solution(m)')
M_H2SO4=W_H1/98
M_Water=W_H2O/18
M_F=M_H2SO4/(M_H2SO4+M_Water)
disp(M_F,'Mole fraction of H_2SO_4 in diluted solution')
|
7f9846b95496f2cd0af15d57540a7387fc653d13 | 5c808b0f55fefd29b91c7cb73f2f3a08093c5033 | /Code/Scilab Code/LoadChordSample.sci | f6cec33c0fed8059359f7356f0f7485a7c4307e9 | [] | no_license | JOfTheAncientGermanSpear/Filter-Bank-Guitar-Note-Chord-Detection | a01e2ce521561dfea555a588d6bb1e0f1deca18e | cb0d54c74275a990dcb984c4ec349e6ca4e72a1a | refs/heads/master | 2021-01-20T12:00:42.472605 | 2013-06-14T03:04:33 | 2013-06-14T03:04:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sci | LoadChordSample.sci | function chordSample = LoadChordSample(chordName)
chordsDirectory = GetChordsDirectory();
chordFileName = GetChordFileName(chordName);
chordSample = loadwave(strcat([chordsDirectory, chordFileName]));
// chordSample = chordSample(1:length(chordSample)/4);
endfunction
function chordsDirectory = GetChordsDirectory()
chordsDirectory = '..\..\Audio Samples\Chords\';
endfunction
function chordFileName = GetChordFileName(chordName)
chordFileName = strcat([chordName, '.wav']);
endfunction |
5851076d38df3020883b629594e9c42b0a044278 | 1232196a72221f6cc0ee0a9a47111ef1188dafe9 | /sci2blif/rasp_design_added_blocks/ladder_filter.sce | 92047e1ce5f9bc0ea94fe457ec9870fa91984244 | [] | no_license | sumagin/rasp30 | 06dc2ee1587a4eaf3cf5fb992375b8589617f882 | a11dcffaed22dbac1f93c2f4798a48c7b0b1f795 | refs/heads/master | 2021-01-24T23:51:54.459864 | 2016-07-08T22:03:43 | 2016-07-08T22:03:43 | 16,685,217 | 2 | 3 | null | 2015-07-23T15:28:49 | 2014-02-10T05:17:38 | C | UTF-8 | Scilab | false | false | 92 | sce | ladder_filter.sce |
style.displayedLabel="ladder_filter"
pal5=xcosPalAddBlock(pal5,"ladder_filter",[],style);
|
60b845d7a3dc5769401b788ec6590256b895bf61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH4/EX4.8/ex4_8.sce | 389e661bd16536c9467a4ce0984003eb56181938 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 514 | sce | ex4_8.sce | // Exa 4.8
clc;
clear;
close;
format('v',7)
// Given data
R = 20;// in ohm
C = 200;// in µF
C=C*10^-6
f =50;// in Hz
//I = 10.8 sin(314*t)
Im = 10.8;// in A
I = Im/sqrt(2);// in A
V_R = I*R;// in V
disp(V_R,"The voltage across 20Ω resistor in V is : ")
//Vc = I*X_C and X_C = 1/omega*C;
omega = 2*%pi*f;// in rad/sec
Vc = I * 1/(omega*C);// in V
disp(Vc,"The voltage across 200 µF capacitor in V is");
V = sqrt( (V_R^2) + (Vc^2) );// in V
disp(V,"The voltage across the circuit in V is");
|
c1e3238cde688bc39ab50fcb1aaa2acc4bc7b32e | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH6/EX6.4/4.sce | ea6fb1cda20bb2383983905292899296f529d2cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | 4.sce | clc;
C_d=0.6;
d_o=0.05; // m
g=9.8; // m/s^2;
R=2; //
H1=1.5; //
a_o=%pi*d_o^2/4;
t=%pi/C_d/a_o/sqrt(2*g)*(4/3*R*H1^(3/2)-2/5*H1^(5/2));
disp("The time to drain the tank is found to be ")
disp(t);
disp("seconds"); |
febeaab76266760def6a3643d39622ee4bdf9ca4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH9/EX9.3/Chapter9_Example3.sce | a0c8f51d544118a5d0593831bc0f307f4a202a83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | Chapter9_Example3.sce | clc
clear
//INPUT
t1=90;//temperature of the oxygen boils in K
t2=20;//temperature of the liquid hydrogen in K
t3=300;//temperature of the sink in K
//CALCULATIONS
n=(t1-t2)/t1;//efficiency of the engine
t4=t3/(1-n);//temperature of the source in K
//OUTPUT
mprintf('the efficiency of the engine is %3.2f \n the temperature of the source is %3.2f K',n,t4)
|
6fdd82cb88423f637addc7fc2cc60cb52980f7e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH6/EX6.5/Ch06Ex5.sce | 575e5723a474d3386642638b62f67562a3519af6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 841 | sce | Ch06Ex5.sce | // Scilab Code Ex6.5: Page-197 (2006)
clc; clear;
m = 9.11e-031; // Electron Rest Mass , kg
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
k = 1.38e-023; // Boltzmann constant, J/mol/K
T = 300; // Room temperature, K
m_e = 1.1*m; // Mass of electron, kg
m_h = 0.56*m; // Mass of hole, kg
E_g = 1.1; // Energy band gap for GaAs, J
E_F = E_g/2+3/4*k*T/e*log(m_h/m_e); // Position of Fermi level of Si at room temperature, eV
printf("\nThe position of Fermi level of Si at room temperature = %5.3f eV", E_F);
printf("\nThe fermi level in this case is shifted downward from the midpoint (0.55 eV) in the forbiddem gap.");
// Result
// The position of Fermi level of Si at room temperature = 0.537 eV
// The fermi level in this case is shifted downward from the midpoint (0.55 eV) in the forbiddem gap.
|
08a4fd6fde3d006210a4126c10c6d2c9cd8d4016 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH9/EX9.22/22.sce | 8887a3044e62c2e27158b6e945388c15bda98073 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 658 | sce | 22.sce | clc
cv_N2=0.745; //kJ/kg K
cv_CO2=0.653; //kJ/kg K
cp_N2=1.041; //kJ/kg K
cp_CO2=0.842; //kJ/kg K
m_N2=4; //kg
m_CO2=6; //kg
pmix=4; //bar
m=m_N2+m_CO2;
T1=298; //K
T2=323; //K
cv_mix=(m_N2*cv_N2 + m_CO2*cv_CO2)/(m_N2+m_CO2);
disp("cv_mix=")
disp(cv_mix)
disp("kJ/kg K")
cp_mix=(m_N2*cp_N2 + m_CO2*cp_CO2)/(m_N2+m_CO2);
disp("cp_mix=")
disp(cp_mix)
disp("kJ/kg K")
dU=m*cv_mix*(T2-T1);
disp("Change in internal energy=")
disp(dU)
disp("kJ")
dH=m*cp_mix*(T2-T1);
disp("Change in enthalpy=")
disp(dH)
disp("kJ")
dS=m_N2*cv_N2*log(T2/T1) + m_CO2*cv_CO2*log(T2/T1);
disp("Change in entropy=")
disp(dS)
disp("kJ/K") |
f401af7eadaf00595c97ab5489a57cc8d36da0c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH4/EX4.3/example3.sce | 4143c2dfd2b9cebbc347ed7b66e484c3ed7e849c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,228 | sce | example3.sce | clc
clear
//input data
N=8//Number of stages
Po=6//Overall pressure ratio
T01=293//Temperature of air at inlet in K
nc=0.9//Overall isentropic efficiency
DR=0.5//Degree of reaction
U=188//Mean blade speed in m/s
Ca=100//Constant axial velocity in m/s
R=287//The universal gas constant in J/kg.K
Cp=1005//The specific heat of air at constant pressure in J/kg.K
r=1.4//The ratio of specific heats of air
//calculations
T0n1s=T01*(Po)^((r-1)/r)//The isentropic temperature of air leaving compressor stage in K
T0n1=((T0n1s-T01)/nc)+T01//The temperature of air leaving compressor stage in K
dta2ta1=(Cp*(T0n1-T01))/(N*U*Ca)//The difference between tan angles of air exit and inlet
sta1tb1=U/Ca//The sum of tan of angles of air inlet and the angle made by the relative velocity
b1=atand((dta2ta1+sta1tb1)/2)//The angle made by the relative velocity vector at exit in degree as the DR=1 then a2=b1
a1=atand(tand(b1)-dta2ta1)//Air flow angle at exit in degree
W=Cp*(T0n1-T01)*10^-3//Power required per kg of air/s in kW
//output
printf('(a)Power required is %3.2f kW\n(b)\n (1)Air flow angle at exit is %3i degree \n (2)The angle made by the relative velocity vector at exit is %3i degree',W,a1,b1)
|
f6e1c77a6dcefd6cd842992ba26200f62cbac0b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.58/EX2_58.sce | bc88064f91ee24a8821f292a68030a597c46c73c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | EX2_58.sce | //EXAMPLE 2-58 PG NO-101-102
Z1=2+%i*3;
Z2=1-%i*5;
Z3=4+%i*2;
Zeq=[Z2*Z3]/[Z2+Z3];
disp('i) IMPEDANCE EQUVALENT (Zeq) is = '+string (Zeq) +' ohms ');
Z=Z1+Zeq;
disp('i) TOTAL IMPEDANCE (Z) is = '+string (Z) +' ohm ');
V=10;
R=5.65+%i*1.588;
I=V/R;
disp('i) CURRENT (I) is = '+string (I) +' A ');
VBC=I*Zeq;
disp('i) VOLTAGE (VBC) is = '+string (VBC) +' V ');
I2=VBC/Z2;
disp('i) CURRENT (I2) is = '+string (I2) +' A ');
I3=VBC/Z3;
disp('i) CURRENT (I3) is in polar form = '+string (I3) +' A ');
S=V*I;
disp('i) APPARENT POWER (S) is in polar form = '+string (S) +' VA ');
P=V*I*0.963;
disp('i) ACTIVE POWER (P) is in polar form = '+string (P) +' W ');
Q=V*I*-0.27;
disp('i) REACTIVE POWER (Q) is in polar form = '+string (Q) +' vars ');
|
9899721731137161d0e63fb2cb8083e70fb29e6c | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH14/EX14.4/Chap14_Ex4.sce | 260a8a019e34f19f839c375326dfe31b36cf000a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,482 | sce | Chap14_Ex4.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-14,Example 4,Page 492
//Title: Equilibrium constant with enthalpy of reaction varying with temperature
//================================================================================================================
clear
clc
//INPUT
//The water gas shift reaction is given by: CO2(g)+H2(g)--->CO(g)+H2O(g)
P=0.1;//pressure in MPa
T1=298.15;//initial temperature in K
Ka1=8.685*10^-6;//equilibrium constant for the water-gas shift reaction at T1 (no unit) (from Example 14.1)
T2=1000;//temperature at which the equilibrium constant is to be found, in K
del_H=41.449;//standard enthalpy of the reaction at T1 in kJ (from Example 14.3)
//The isobaric molar capacity is given by Cp=a+bT+cT^2+dT^3+eT^-2 in J/molK and T is in K from Appendix A.3
//coefficient in the expression for computing the isobaric molar heat capacity from Appendix A.3 (for CO(g),H2O(g),CO2(g),H2(g) respectively)
a=[28.068;28.850;45.369;27.012];
//coefficient in the expression for computing the isobaric molar heat capacity from Appendix A.3 (for CO(g),H2O(g),CO2(g),H2(g) respectively)
b=[4.631*10^-3;12.055*10^-3;8.688*10^-3;3.509*10^-3];
//coefficient in the expression for computing the isobaric molar heat capacity from Appendix A.3 (for CO(g),H2O(g),CO2(g),H2(g) respectively)
c=[0;0;0;0];
//coefficient in the expression for computing the isobaric molar heat capacity from Appendix A.3 (for CO(g),H2O(g),CO2(g),H2(g) respectively)
d=[0;0;0;0];
//coefficient in the expression for computing the isobaric molar heat capacity from Appendix A.3 (for CO(g),H2O(g),CO2(g),H2(g) respectively)
e=[-0.258*10^5;1.006*10^5;-9.619*10^5;0.690*10^5];
n=[1;1;-1;-1];//stoichiometric coefficients of CO(g),H2O(g),CO2(g) and H2(g) respectively (no unit)
R=8.314;//universal gas constant in J/molK
Ka2_prev=1.0855;//equilibrium constant calculated in Example (14.3) without considering the variation of del_H between T1 and T2 (no unit)
//CALCULATION
//Framing the isobaric molar heat capacity expression
del_a=(n(1,:)*a(1,:))+(n(2,:)*a(2,:))+(n(3,:)*a(3,:))+(n(4,:)*a(4,:));
del_b=(n(1,:)*b(1,:))+(n(2,:)*b(2,:))+(n(3,:)*b(3,:))+(n(4,:)*b(4,:));
del_c=(n(1,:)*c(1,:))+(n(2,:)*c(2,:))+(n(3,:)*c(3,:))+(n(4,:)*c(4,:));
del_d=(n(1,:)*d(1,:))+(n(2,:)*d(2,:))+(n(3,:)*d(3,:))+(n(4,:)*d(4,:));
del_e=(n(1,:)*e(1,:))+(n(2,:)*e(2,:))+(n(3,:)*e(3,:))+(n(4,:)*e(4,:));
//Using Eq.14.21 to compute the value of del_H0 in kJ
del_H0=(del_H*10^3)-((del_a*T1)+((del_b/2)*T1^2)+((del_c/3)*T1^3)+((del_d/4)*T1^4)-(del_e/T1));
//Calculation of the integration constant using Eq.(14.22) (no unit)
I=(log(Ka1))-((1/R)*((-del_H0/T1)+(del_a*log(T1))+((del_b/2)*T1)+((del_c/6)*T1^2)+((del_d/12)*T1^3)+((del_e/(2*T1^2)))));
//calculation of the equilibrium constant at T2 using Eq.(14.22) (no unit)
Ka2=exp(((1/R)*((-del_H0/T2)+(del_a*log(T2))+((del_b/2)*T2)+((del_c/6)*T2^2)+((del_d/12)*T2^3)+((del_e/(2*T2^2)))))+I);
//OUTPUT
mprintf('The equilibrium constant for the water gas shift reaction at 1000K by taking into account the variation of del_H with temperature=%f \n',Ka2);
mprintf('The equilibrium constant for the water gas shift reaction at 1000K without considering the variation of del_H with temperature as given by Example(14.3)=%0.4f \n',Ka2_prev);
//===============================================END OF PROGRAM===================================================
|
d36051996f8d11de7980ecc68a584387ac1636f5 | fe48ae0c518509ac5c57688957075e939956f2b1 | /Bessels function fo first kind.sce | 4614f8c656fb23d46e3718964d0e735523a826aa | [] | no_license | dibakardhar/Scilab-Notes | d8161939a96b5d9f89106440059b6aaa717f5d79 | 6bc6a6caa5120a4c7a20f15430860e5b51e8014e | refs/heads/main | 2023-07-09T18:48:56.525225 | 2021-08-15T16:32:36 | 2021-08-15T16:32:36 | 396,415,364 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | Bessels function fo first kind.sce | X=0:.1:20
J=zeros(5,201)
for i=0:3
J(i+1,:)=besselj(i,X)
end
plot(X,J,'line width',2)
xtitle('Bessel function of the first kind for v=0,1,2,3,4')
xlabel('X')
ylabel('J v(X)')
axis([0 20-.5 1])
|
0551a11d12aae88fc68c668ed5907d45daf8758e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH3/EX3.6.1/ex_3_6_1.sce | 7257315c98b6deab715ff4e75f2ce36107a87595 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 371 | sce | ex_3_6_1.sce | //Example 3.6.1 //design
clc;
clear;
close;
format('v',8)
rm=50;//in ohms
im=2;//in mA
i1=2;//in amperes
i2=10;//in amperes
i3=15;//in amperes
x=(im*rm*10^-3)/i1;//
A=[1 1;1 -7500];//
B=[0.05;-50];
X=A\B;
z=X(2,1);//
R1=0.2167/10.002;//in ohms
R2=0.025-R1;// in ohms
disp(R1,"resistance (R1) in ohms")
disp(R2,"resistance (R2) in ohms")
disp(z,"resistance (R3) in ohms")
|
a07246564e31c8e2847711b7a30ade8c5b56e3ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2303/CH10/EX10.6/10_6.sce | 0267665e362f685d799c6647b207f21c6de9b8c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,062 | sce | 10_6.sce | //Example 10.6
//3 stage interpolation filter design
clc;
clear;
close;
Fs1=48000; //original signal sampling frequency
Fs2=3072000; //new sampling frequency
intf=64; //interpolation factor of filter
fp=20000; //pass band edge frequency
fs=32000; //stop band edge freqeucny
tw=2000; //transition width
pbdev=0.00345; //pass band deviation
sbatt=80; //stop band attenuation in decibel
//filter coefficients required for order of filter
a1=0.005309;
a2=0.07114;
a3=-0.4761;
a4=-0.00266;
a5=-0.5941;
a6=-0.4278;
dp=pbdev/3; //pass band ripple for each stage;
ds=10^-(sbatt/20); //stop band attenuation for each stage
f=11.01217+0.51244*(log10(dp)-log10(ds));
D={log10(ds)*[a1*log10(dp^2)+a2*[log10(dp)]+a3]}+[a4*log10(dp^2)+a5*[log10(dp)]+a6];
//1st stage design
intf1=2; //interpolation factor for 1st stage
F1=Fs1; //input sampling fequency
F2=F1*intf1; //output sampling frequency
fs1=F1-Fs2/(2*intf); //stop band edge frequency
df1=(fs1-fp)/F2;
N1=ceil(D/df1-f+1);
disp(N1,"Order of filter for 1st stage is ");
n1=N1*F2;
//2nd stage design
intf2=4; //interpolation factor for 2nd stage
F1=F2; //input sampling fequency
F2=F1*intf2; //output sampling frequency
fs2=F1-Fs2/(2*intf); //stop band edge frequency
df2=(fs2-fs1)/F2;
N2=ceil(D/df2-f+1);
disp(N2,"Order of filter for 2nd stage is ");
n2=N2*F2;
//3rd stage design
intf3=8; //interpolation factor for 3rd stage
F1=F2; //input sampling fequency
F2=F1*intf3; //output sampling frequency
fs3=F1-Fs2/(2*intf); //stop band edge frequency
df3=(fs3-fs1)/Fs2;
N3=ceil(D/df3-f+1);
disp(N3,"Order of filter for 3rd stage is ");
n3=N3*F2;
N=n1+n2+n3;
disp(N,"Number of multiplications required is: ");
|
c7b66f8102c2bffa48d437b2607c8e1350f0c36b | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH5/EX5.5.15/Ch5_5_15.sce | 0983b8deb18fa318f2c89418e4656cc41ad8ad97 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | sce | Ch5_5_15.sce | clc
disp("Example 5.15")
printf("\n")
disp("For CE amplifier shown in fig 5.5 find R1,R2,Re & Rc")
printf("Given\n")
Vcc=24
//load resistance
RL=120*10^3
//since Rc<<RL
Rc=RL/10
//select Ve & Vce
Ve=5
Vce=3
Vrc=Vcc-Vce-Ve //from circuit
Ic=Vrc/Rc
//find Re
Re=Ve/Ic
R2=10*Re
//Vbe for si transistor
Vbe=0.7
Vb=Vbe+Ve
I2=Vb/R2
R1=(Vcc-Vb)/I2
printf("The resistance values are\nR1=%f ohm\nR2=%f ohm\nRe=%f ohm\nRc=%f ohm\n",R1,R2,Re,Rc)
|
3a8c6588251223c050177da1a60b7e6da795bc96 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/util/%r_diag.sci | d98044f6a8e7a2008f4dd0a4f93a8a7ba12477ae | [
"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 | 340 | sci | %r_diag.sci | function d=%r_diag(a,k)
// %r_diag - implement diag function for rational matrix ,..
// Copyright INRIA
[lhs,rhs]=argn(0)
if rhs==1 then k=0,end
[m,n]=size(a(2))
if m<>1&n<>1 then
d=syslin(a(4),diag(a(2),k),diag(a(3),k))
else
mn=max(m,n)
den=ones(mn,mn)
den=den-diag(diag(den,k))+diag(a(3),k)
d=syslin(a(4),diag(a(2),k),den)
end
|
c00e8f4340a8cb94f091a3b8b0b267df6c2f12a8 | 54cca39cd1cf7f62b001c8a4d64dcc3d29e3cb4e | /PitchDetection/wav2csv.sce | 63a688703dd754a3ed63ef9ec5a640f5f2d445c0 | [] | no_license | hamling-ling/NumericalResearches | d2487c2566c24ba3dc674e7e17f1745c1020d542 | a824357d7650d3ed86220f1315ee37e577285a7d | refs/heads/master | 2021-01-25T08:36:58.455319 | 2015-04-22T15:17:21 | 2015-04-22T15:17:21 | 7,775,139 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 598 | sce | wav2csv.sce | funcprot(0);
clear all;
//////////////////////////////////////////////////////////////////////
// parameters
//////////////////////////////////////////////////////////////////////
sampleNum = 1024; // sample number
infile='piano_A.wav';
[dat, info] = loadwave(infile);
sampleFreq = info(3);// sampling rate
//////////////////////////////////////////////////////////////////////
// main
//////////////////////////////////////////////////////////////////////
W=sampleNum;
// create time-axis
ts = [0:W-1] * 1/sampleFreq;
// create sin wave
x=dat(1:W);
csvWrite(x(1:sampleNum)', "piano_A.csv");
|
0de063359e21f6b33092355253195ca219f94c67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2627/CH1/EX1.5/Ex1_5.sce | 6fca918e9b4cad6b6167e4b916bd5fb0029eca28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 150 | sce | Ex1_5.sce | //Ex 1.5
clc;clear;close;
format('v',6);
V=110;//V
R1=22;//ohm
R2=44;//ohm
I1=V/R1;//A
I2=V/R2;//A
I=I1+I2;//A
disp(I,"Supply current(A)");
|
fa57d1f6d3b7b0dba467746a9e28cba5d744a9c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH14/EX14.8/14_8.sce | 368b6ca5e40d4de36d27a3b0dc63ae4ebbc37e92 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | 14_8.sce | clc;
//page no 478
//prob no. 14.8
//A transmitter supplies 50W with SWR 2:1
Pi=50;SWR=2;
//Determination of power absorbed by load
Pl=(4*SWR*Pi)/(1+SWR)^2;
disp('W',Pl,'The power absorbed by load is'); |
6d0f8870ae31a7b271612ccd85c19a32df4c0462 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3129/CH16/EX16.1/Ex16_1.sce | 2a85574972e297a0e1fc32176b13faa7212b03e8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,363 | sce | Ex16_1.sce | //Finding the Performance Parameters of a Three-Phase Induction Motor
//Example 16.1(Page No- 699)
clc
clear
//given data
f = 60;//Hz
p = 4;//
R_r = 0.23;//Ohm
Rs = 0.42;//Ohm
Xs = 0.82;//Ohm
X_r = Xs;
Xm = 22;
N = 1750;//rpm
Vs = 460/sqrt(3);
w = 2*%pi*f;//rad/s
w_m = 1750*(%pi/30);//rad/s
P_nl = 60;//W
//part(a)
w_s = (2*w/p);
printf('(a)\t The synchronous speed ws is %.2f rad/s',w_s);
//part(b)
s = (w_s - w_m)/w_s ;
printf('\n (b)\t The slip s id %.3f',s);
//part(c)
Z_i = ((-Xm*(Xs+X_r) + %i*(Xm*(Rs+(R_r/s))))/(Rs + (R_r/s)+%i*(Xm + Xs+X_r)));
I_i = Vs/Z_i ;
printf('\n (c)\t The input current Ii is %.2f angle %.2f',abs(I_i),atand(imag(I_i),real(I_i)));
Is = abs(I_i);
//part(d)
PF_m = cosd(atand(imag(I_i),real(I_i)));
Pi = 3*Vs*Is*PF_m;
printf('\n (d)\t The input power Pi is %d W',Pi);//Ans given is textbook is approximate
//part(e)
PF_s = PF_m;//input PF is same as motor PF since supply is sinusidal
printf('\n (e)\t The input PF of supply if %.3f (lagging)',PF_s);
//part(f)
I_r = Vs/sqrt((Rs+R_r/s)^2 + (Xs+X_r)^2);
Pg = 3*I_r^2*(R_r/s);
printf('\n (f)\t The gap power pg is %d',Pg);//Ans on textbook is approximate
//part(g)
P_ru = 3*I_r^2*R_r;
printf('\n (g)\t The rotor copper loss is %.2f W',P_ru);
//part(h)
P_su = 3*I_r^2*Rs;
printf('\n (h)\t Stator copper loss %d W',P_su);
//part(i)
Td = (Pg/w_s);
printf('\n (i)\t Developed Torque is %.1f N.m',Td);
//part(j)
Po = Pg - P_ru - P_nl;
printf('\n (j)\t The output power is %d W',Po);
//part(k)
//for starting torque s = 1
s = 1;
I_r = Vs/sqrt((Rs+R_r/s)^2 + (Xs+X_r)^2);
Ts = (3*R_r*Vs^2)/(w_s*((Rs+R_r)^2+(Xs+X_r)^2));//starting torque
printf('\n (k)\t The starting torque is %.2f N.m',Ts);
//part(l)
s_m = (R_r/(sqrt(Rs^2+(Xs+X_r)^2)));
printf('\n (l)\t The slip for maximum torque is +/- %f',s_m);
//part(m)
T_mm = (3*Vs^2)/(2*w_s*(Rs+sqrt(Rs^2+(Xs+X_r)^2)));
printf('\n (m)\t The maximum developed torque is %.2f N.m',T_mm);
//part(n)
T_mr = (3*Vs^2)/(2*w_s*(-Rs+sqrt(Rs^2+(Xs+X_r)^2)));
printf('\n (n)\t The maximum negative torque is -%.2f',T_mr);
//part(o)
s_m = R_r/(Xs+X_r);
T_mm = 3*Vs^2/(2*w_s*(Xs+X_r));
T_mr = -T_mm;
printf('\n (o)\t Tmm and Tmr if Rs is neglected is %.2f N.m and %.2f N.m respectively',T_mm,T_mr);
// Note:- ans given in the textbook are approximate
|
729f5aa17a14025a40c9fd3e6eb48f1f450ae06a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3866/CH4/EX4.2/Ex4_2.sce | a3d70f175aeb36cc97566e493a392f631ae8bcda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | Ex4_2.sce | clc; clear; close;
ki=430*(10^(-6));//in amp/volt^2
vt=0.4;//in volts
wl=2;
Vdd=1.2;//in volts
Rl=20*(10^3);
Voh=Vdd;
k=ki*wl;
Vol=Vdd/(1+k*Rl*(Vdd-vt));
Vil=vt+(1/(k*Rl));
Vih=vt+sqrt((8*Vdd)/(3*k*Rl))-1/(k*Rl);
NML=Vil-Vol;
NMH=Voh-Vih;
disp(NML,'NML(in volts)');//answer vary due to round off error
disp(NMH,'NMH(in volts)');//answer vary due to round off error
|
47462a5190f6203179e5ca91237c31ce28d19fe2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH20/EX20.4/20_4.sce | 4774aabe4bf1c135674b43d1c74286fde46a8817 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | 20_4.sce | clc
//initialisation of variables
R= 8.31*10^7 //ergs deg^-1 mole^-1
T= 20 //C
s= 4.3*10^-13 //sec
D= 6.15*10^-7 //cm^2 sec^-1
d= 0.9982 //g/cc
v= 0.735 //cm^3 g^-1
//CALCULATIONS
M= R*(273+T)*s/(D*(1-d*v))
//RESULTS
printf ('molecular weight serum albium = %.f g mole^-1',M)
|
290668bfc8ccb36ab432e9bc441457e126448925 | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH3/EX3.3/Example3_3.sce | c81b4d6c2f10aca2f00b724a9bbbc9860b74f90a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 680 | sce | Example3_3.sce | close();
clear;
clc;
//resistance 'R', rate of electrical energy 'rate', time of operation 't', time period 'T'
T = 0.01; //s
R = 20; //ohm
rate = 0.06; //$ per kWh
time = 24; //hours
//from graph, voltage as function of time 'v'
function V = v(t)
V = 10^4 * t; //V
endfunction
//current as a function of time 'i'
function I = i(t)
I = v(t)/R; //A
endfunction
//power as afunction of time 'p'
function power = p(t)
power = v(t)*i(t); //W
endfunction
//power 'P'
P = 1/T * intg(0,T,p)/1000; //kW
energy = P*time; //kWh
//cost of electrical energy 'cost'
cost = rate*energy; //$
mprintf("Electrical energy costs $ %0.2f for %d hours",cost,time);
|
f87159c1c2c7ddc86a8c913188fc45888e771787 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH23/EX23.1/Ex23_1.sce | 1a2fe9015a81397b94cd9aaebd95c81d62b6675d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,005 | sce | Ex23_1.sce | //chapter23
//example23.1
//page509
printf("1) Breakover voltage of 400V : It means that if gate is open and the \n")
printf(" supply voltage is 400V, then SCR will start conducting heavily. \n")
printf(" However,as long as the supply voltage < 400V, SCR stays open. \n \n")
printf("2) Trigger current of 10mA : It means that if the supply voltage is \n")
printf(" less than breakover voltage and a minimum gate current of 10 mA \n")
printf(" is passed, SCR conducts. It wont conduct if gate current is less \n")
printf(" than 10mA. \n \n")
printf("3) Holding current of 10mA : When SCR is conducting, it will not open \n")
printf(" even if triggering current is removed. However, if supply voltage \n")
printf(" is reduced, anode current also decreases. When anode current drops \n")
printf(" to 10mA, the holding current, SCR turns off. \n \n")
printf("4) If gate current is increased to 15mA, the SCR will be turned on \n")
printf(" lower supply voltage. \n")
|
8e7bb6c22748fe64d918809239c91df311fa6a64 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH9/EX9.6/6.sce | cdb8a3ac835dcd1ce5631dd3f15413cf07f07e60 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | 6.sce | clc
//Let composition of mixture by volume be denoted by c1
//Let Final composition desired be denoted by c2
c1_H2=0.78;
c1_CO=0.22;
c2_H2=0.52;
c2_CO=0.48;
M_H2=2;
M_CO=28;
M=c1_H2*M_H2 + c1_CO*M_CO;
// Let x kg of mixture be removed and y kg of CO be added.
x=(c1_H2 - c2_H2)/c1_H2*M;
disp("Mass of mixture removed =")
disp(x)
disp("kg")
y=M_CO/M*x;
disp("Mass of CO added=")
disp(y)
disp("kg") |
30e7c202e76bf2c7e611251e0d58632e01f73cd9 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set12/s_Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436.zip/Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436/CH2/EX2.3/ex2_3.sce | 3c949f7a805dd21b868331706d608b62ba1d04de | [] | 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 | 148 | sce | ex2_3.sce | errcatch(-1,"stop");mode(2);// Example 2.3, page no-116
egp=260
abspress=760-egp
printf("Absolute Presssure = %d mmHg",abspress)
exit();
|
8a5ea76b7ce3cc05f43be622a7ab16944f1bc25d | 8c10cc54e1fd2419c94f9b977006b324cf755fa4 | /SV_Assignments/Assignment_3/Tests/Task3unique_db.tst | 2a313f66a18a0c1089e318b6d8d27c70c8579ca6 | [] | no_license | Meena92/SV | 8eb398299fbf113f557317dbb634933187cd0448 | ff0cab3b56bfda20a229e77edc4728281f747817 | refs/heads/master | 2020-03-29T01:43:37.998389 | 2018-09-19T06:33:16 | 2018-09-19T06:33:16 | 149,403,318 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,934 | tst | Task3unique_db.tst | <?xml version="1.0" encoding="UTF-8"?>
<TestCase name="Task3unique_db" version="5">
<meta>
<create author="admin" buildNumber="10.0.0.431" date="06/20/2017" host="inbasdpc10722" version="10.0.0"/>
<lastEdited author="admin" buildNumber="10.0.0.431" date="06/20/2017" host="inbasdpc10722" version="10.0.0"/>
</meta>
<id>5689E886558111E7BB81D8CB8A8AB1DA</id>
<Documentation>Put documentation of the Test Case here.</Documentation>
<IsInProject>true</IsInProject>
<sig>ZWQ9NSZ0Y3Y9LTEmbGlzYXY9MTAuMC4wICgxMC4wLjAuNDMxKSZub2Rlcz0xMjU3MDcwOTg1</sig>
<subprocess>false</subprocess>
<initState>
</initState>
<resultState>
</resultState>
<Node log="" name="JDBC_unique" next="end" quiet="false" think="500-1S" type="com.itko.lisa.jdbc.JDBCNode" uid="5A8FDFFC558111E7BB81D8CB8A8AB1DA" useFilters="true" version="1">
<driver>org.apache.derby.jdbc.ClientDriver</driver>
<dataSourceConnect>false</dataSourceConnect>
<jndiFactory/>
<jndiServerURL/>
<jndiDataSourceName/>
<connect>jdbc:derby://localhost:1528/database/lisa.db</connect>
<user>sa</user>
<password_enc>l91d84efecea722e4d0e158b165c41e822bedfdd0a68564de91b842c4290b782a9262</password_enc>
<onSQLError>abort</onSQLError>
<resultSet>true</resultSet>
<maxRows>-1</maxRows>
<keepOpen>false</keepOpen>
<usePool>true</usePool>
<sql>select * from emp_utab</sql>
<IsStoredProc>false</IsStoredProc>
</Node>
<Node log="" name="end" next="fail" quiet="true" think="0h" type="com.itko.lisa.test.NormalEnd" uid="5689E88C558111E7BB81D8CB8A8AB1DA" useFilters="true" version="1">
</Node>
<Node log="" name="fail" next="abort" quiet="true" think="0h" type="com.itko.lisa.test.Abend" uid="5689E88A558111E7BB81D8CB8A8AB1DA" useFilters="true" version="1">
</Node>
<Node log="" name="abort" next="" quiet="true" think="0h" type="com.itko.lisa.test.AbortStep" uid="5689E888558111E7BB81D8CB8A8AB1DA" useFilters="true" version="1">
</Node>
</TestCase> |
e7d3796914e9f5461554addfef7fd01ac11e926b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2318/CH3/EX3.4/ex_3_4.sce | 1e4074347a287655bcd47ab39cc2fd074407b60f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | ex_3_4.sce | //Example 3.4: Resistor,current and power loss
clc;
clear;
close;
//given data :
S=0.1;// in ohm
Vs=1.0235;// in V
Vr=0.4211;// in V
R=(Vr/Vs)*S;
disp(R,"Resistance of unknown resistor,R(ohm) = ")
I=Vs/S;
disp(I,"Current through the resistor,I(A) = ")
P=I^2*R;
disp(P,"Power loss in the unknown resistance,P(W) = ")
|
3cc3ee6edd0792cafdbffa754e2b88e33d02034e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH34/EX34.34/Ex34_34.sce | 7fa1d7751f7da79a3e0b780b7b435333c32e2d8d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,408 | sce | Ex34_34.sce | // Example 34_34
clc;funcprot(0);
//Given data
P=[600 600 600 400];// Capacity of 4-generating sets in kW
MD=1600;// kW
F_l=0.45;// Load factor
CC=10000;// Capital cost in Rs./kW
Mc=60000;// Annual maintainence cost in rupees
Oc=100000;// Operation cost in rupees
Fc=7;// Fuel cost in Rs./kg
Lc=40;// Lubricating oil cost in Rs./kg
F=0.5;// Fuel consumed in kg/kWh
O=0.0025;// Lubricating oil consumed in kg/kWh
CV=42000;// kJ/kg
n_g=0.92;// Generator efficiency
//Calculation
//(a)
R_f3=P(1)/n_g;// Rating of first 3 sets in kW
R_4=P(4)/n_g;// Rating of last set in kW
//(b)
AD=MD*F_l;// Average demand in kW
E_g=AD*8760;// Energy generated/year in kWh
//(c)(i)Fixed costs per year
CC=((3*P(1))+(1*P(4)))*CC;
Afc=.15*CC;// Annual fixed cost in rupees
Tfc=Afc+Mc;// Total fixed cost in rupees
//(i)Variable costs per year
Fc=(E_g*F)*Fc;// Fuel cost in rupees
Lc=(E_g*O)*Lc;// Lubricating oil cost in rupees
Tvc=Fc+Lc+Oc;// Total variable cost in rupees
Tc=Tfc+Tvc;// Total cost in rupees
C=Tc/E_g;// Cost per kWh generated
//(d)
n_o=((E_g*3600)/(E_g*F*CV))*100;// Over all efficiency of the plant in %
printf('\n(a)Rating of first 3 sets=%0.0f kW \n Rating of last set=%0.0f kW \n(b)Energy generated/year=%0.1e kWh \n(c)Cost of generation=Rs.%0.2f \n(d) Over all efficiency of the plant=%0.2f percentage',R_f3,R_4,E_g,C,n_o);
// The answer vary due to round off error
|
527c50a6687fdd91b6886f2d78672454fd326d05 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.19_1.tst | 3719c94ab056690ce0d8c7d6bed6439cd6e53389 | [] | 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 | 421,358 | tst | 5.19_1.tst | 19 555:1 1203:1 1354:1 1460:1 1745:1 1982:1 2005:1 2083:1 3444:1 3830:1 4244:1 4350:1 4628:1 4736:1 5019:2 5029:1 5059:1 5223:1 5313:1 5409:1 6000:1 6376:1 7114:1 7162:1 7652:1 8114:1 8172:7 8556:1 9002:1 9400:1 11124:1 11142:1 11282:1 11284:1 12634:1 12647:1 13103:1 13487:1 14135:1 14276:1 15273:1 15618:85 15771:1 15920:1 16165:1 16315:1 16420:1 18133:1 18678:1 18831:1 18837:1 19304:2 19638:1 19726:1 19807:1 19848:1 20267:1 21334:1 21335:1 21464:1 21871:1 22179:1 22989:1 23144:1 23438:2 23644:1 23803:2 24018:1 24656:1
19 184:1 482:1 555:1 1039:1 1203:1 1354:2 1460:1 1551:1 1745:1 1982:1 2005:1 2083:1 2430:1 3099:1 3444:2 3527:1 3830:1 3916:1 4244:1 4350:1 4628:2 4736:1 5019:3 5029:1 5059:1 5223:2 5313:1 5409:1 5569:1 6000:2 6376:1 6404:1 6446:1 6576:1 7114:1 7162:1 7652:1 8114:1 8172:7 8198:1 8556:1 9002:1 9079:1 9175:1 9400:1 9731:1 9749:1 9797:1 10737:1 10814:1 11124:1 11142:2 11245:1 11282:1 11284:1 12634:1 12647:1 13054:1 13103:1 13233:1 13487:1 14135:1 14276:1 15273:1 15618:117 15771:1 15775:1 15920:1 16013:1 16018:1 16165:1 16245:1 16315:1 16420:1 18133:1 18678:1 18831:1 18837:2 18959:1 19304:2 19638:1 19726:1 19807:2 19848:1 20267:1 20556:1 21093:1 21334:1 21335:2 21464:2 21871:1 22179:1 22796:1 22989:1 23097:1 23144:1 23166:1 23438:2 23559:1 23595:1 23644:1 23803:2 24018:1 24213:1 24586:1 24654:1 24656:1 24660:1
19 184:1 482:1 501:1 555:1 658:1 685:1 690:1 806:1 1039:1 1203:1 1318:1 1354:2 1460:1 1551:1 1644:1 1669:1 1745:1 1794:1 1885:1 1982:1 2005:1 2083:1 2303:1 2391:1 2414:1 2430:2 2785:1 2833:1 3099:1 3341:1 3444:2 3527:1 3689:1 3830:1 3916:1 3934:1 4210:1 4227:1 4244:1 4350:1 4532:1 4550:1 4628:2 4715:1 4736:1 4803:1 5015:1 5019:3 5029:1 5059:1 5134:1 5215:1 5223:2 5308:1 5313:1 5409:1 5569:1 6000:2 6002:1 6264:1 6376:1 6404:1 6446:1 6522:1 6576:1 6953:1 7069:1 7099:1 7106:1 7114:1 7162:1 7532:1 7642:1 7652:2 7798:1 7875:1 8114:1 8172:7 8196:1 8198:1 8556:1 8682:1 9002:1 9079:2 9175:1 9180:1 9301:1 9384:1 9400:1 9548:1 9673:1 9694:1 9731:1 9749:1 9797:1 9825:1 9957:1 10071:1 10614:1 10737:2 10814:1 10824:1 10945:1 11124:1 11142:2 11189:1 11245:1 11282:1 11284:1 11330:1 11513:1 11861:1 12574:1 12594:1 12634:1 12647:1 13054:1 13103:1 13133:1 13233:1 13243:1 13317:1 13487:1 13596:1 13723:1 14135:1 14276:1 14392:1 14458:1 14486:1 14702:1 14732:1 15273:1 15448:2 15552:1 15618:146 15771:1 15775:1 15779:1 15920:1 16013:1 16018:1 16165:1 16245:1 16306:1 16315:1 16420:1 16885:1 17127:1 17207:1 17537:1 17958:1 18005:1 18133:1 18493:1 18598:1 18678:1 18714:1 18831:1 18837:2 18959:1 19001:1 19272:1 19304:2 19638:1 19726:1 19807:2 19848:1 20170:1 20267:1 20321:1 20359:1 20556:1 20570:1 21002:1 21093:1 21280:1 21334:1 21335:2 21464:2 21871:1 21967:1 22089:2 22179:1 22337:1 22441:1 22481:1 22591:1 22789:1 22796:1 22989:1 23018:1 23097:1 23144:2 23166:1 23213:1 23251:1 23397:1 23438:2 23499:1 23559:1 23595:1 23644:2 23651:1 23745:1 23803:2 23960:1 24018:1 24213:1 24356:1 24380:1 24399:1 24467:1 24472:1 24586:1 24654:1 24656:1 24658:1 24660:1
19 184:1 482:1 501:1 517:1 555:1 658:1 674:1 685:1 690:1 731:1 735:1 806:1 1039:1 1164:1 1203:1 1209:1 1318:1 1354:2 1460:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1794:1 1885:1 1893:1 1982:1 1986:1 2005:1 2083:1 2303:1 2391:1 2414:1 2430:2 2785:1 2823:1 2833:1 3099:1 3282:1 3341:1 3444:2 3527:1 3689:1 3711:1 3826:1 3830:1 3916:1 3934:1 4193:1 4210:1 4227:1 4244:1 4281:1 4350:1 4532:1 4550:1 4628:2 4646:1 4695:1 4715:1 4736:1 4755:1 4797:1 4803:1 5015:1 5019:3 5029:1 5059:1 5134:1 5195:1 5215:1 5223:2 5245:1 5308:1 5313:1 5409:1 5569:1 5711:1 6000:2 6002:1 6264:1 6279:1 6376:1 6404:1 6446:1 6462:1 6522:2 6576:1 6953:1 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7532:1 7642:1 7652:2 7798:1 7875:1 8114:1 8172:7 8196:1 8198:1 8556:1 8682:1 8907:1 8993:1 9002:1 9077:1 9079:2 9152:1 9175:1 9180:1 9301:1 9384:1 9400:1 9548:1 9673:1 9694:1 9711:1 9731:1 9749:1 9797:1 9825:1 9957:1 10071:1 10161:1 10614:1 10737:3 10752:1 10771:1 10791:1 10814:1 10824:1 10945:1 11124:1 11142:2 11173:1 11189:1 11245:1 11282:1 11284:1 11330:1 11513:1 11597:1 11861:1 11865:1 12306:1 12574:1 12594:1 12634:1 12647:1 13054:1 13094:1 13097:1 13103:1 13133:1 13233:1 13243:1 13317:1 13321:1 13487:1 13505:1 13596:1 13723:1 14083:1 14119:1 14135:1 14276:1 14365:1 14392:1 14458:1 14486:1 14702:1 14732:1 14756:1 15066:1 15273:1 15373:1 15448:2 15552:1 15618:188 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 16013:1 16018:1 16165:1 16171:1 16182:1 16245:1 16306:1 16315:1 16337:1 16420:1 16885:1 17127:1 17207:1 17537:1 17552:1 17958:1 18005:1 18050:1 18133:1 18493:1 18598:1 18678:1 18714:1 18831:1 18837:2 18959:2 19001:1 19038:1 19272:1 19304:2 19352:1 19468:1 19638:1 19648:1 19726:1 19807:2 19848:1 20170:1 20267:1 20321:1 20359:1 20475:1 20512:1 20556:1 20570:1 21002:1 21093:1 21280:1 21334:1 21335:2 21433:1 21464:2 21527:1 21648:1 21871:1 21967:1 22089:2 22179:1 22235:1 22337:1 22433:1 22441:1 22481:1 22591:1 22789:1 22796:1 22989:1 23018:1 23087:1 23097:1 23144:2 23166:1 23213:1 23251:1 23397:1 23438:2 23499:1 23559:1 23595:1 23644:2 23651:1 23655:1 23745:1 23793:1 23803:2 23960:1 24018:1 24213:1 24356:1 24372:1 24380:1 24399:1 24467:1 24472:1 24485:1 24527:1 24586:1 24654:1 24656:1 24658:1 24660:1
19 184:1 482:2 501:1 517:1 555:1 658:1 666:1 674:1 685:1 690:1 692:1 731:1 735:1 806:1 850:1 1039:1 1141:1 1164:1 1203:1 1209:1 1318:1 1354:2 1460:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1751:1 1794:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 2005:1 2083:1 2303:1 2324:1 2391:1 2403:1 2414:1 2420:2 2430:2 2702:1 2769:1 2785:1 2823:1 2833:1 2995:1 3020:1 3099:1 3282:1 3341:1 3444:2 3527:1 3689:1 3711:1 3826:1 3830:1 3916:1 3934:1 4092:1 4193:1 4210:1 4217:1 4227:1 4231:1 4244:1 4281:1 4327:1 4350:1 4532:1 4550:1 4628:2 4646:1 4695:1 4715:1 4736:1 4755:1 4797:1 4803:1 5015:1 5019:3 5029:1 5059:1 5093:1 5134:1 5195:1 5215:1 5223:2 5245:1 5308:1 5313:1 5409:1 5569:1 5682:1 5711:1 6000:2 6002:1 6054:1 6264:2 6279:1 6331:1 6376:1 6404:1 6446:1 6462:1 6522:3 6541:2 6576:1 6591:1 6861:1 6953:2 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7532:1 7639:1 7642:1 7652:2 7798:1 7875:1 8114:1 8172:7 8196:1 8198:1 8556:1 8682:1 8704:1 8907:1 8993:1 9002:1 9077:1 9079:2 9103:1 9107:1 9152:1 9175:1 9180:1 9301:1 9331:1 9384:1 9400:1 9548:1 9673:1 9694:1 9711:1 9731:1 9749:1 9797:1 9825:1 9894:1 9957:1 9960:1 10071:1 10161:1 10614:1 10737:3 10752:1 10771:1 10791:1 10814:1 10824:1 10945:1 11073:1 11124:1 11142:2 11173:1 11189:1 11245:1 11282:1 11284:1 11330:1 11513:1 11597:1 11861:1 11865:1 12299:1 12306:1 12538:1 12574:1 12594:1 12634:1 12647:1 13054:1 13063:1 13094:1 13097:1 13103:1 13111:1 13133:1 13233:1 13243:1 13248:1 13298:1 13317:1 13321:1 13487:1 13505:1 13596:1 13723:1 13842:1 14083:1 14119:1 14135:1 14276:1 14365:1 14392:1 14458:1 14486:1 14702:1 14732:1 14756:1 15066:1 15098:1 15150:1 15273:1 15367:1 15373:1 15448:2 15552:1 15618:243 15634:1 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16245:1 16306:1 16315:1 16337:1 16368:1 16420:1 16591:1 16624:1 16885:2 16929:1 16973:1 17127:1 17207:1 17496:1 17537:1 17549:1 17552:1 17674:1 17958:1 18005:1 18020:1 18050:1 18133:1 18340:1 18478:1 18491:1 18493:1 18527:1 18563:1 18598:1 18678:1 18714:1 18831:1 18837:2 18919:1 18959:2 19001:1 19038:1 19081:1 19272:1 19304:2 19352:1 19468:1 19638:1 19648:1 19726:1 19807:2 19848:1 20170:1 20217:1 20267:1 20321:1 20359:1 20475:1 20512:1 20556:1 20570:1 20663:1 20991:1 21002:1 21058:1 21093:1 21104:1 21167:1 21280:1 21334:1 21335:2 21373:1 21433:1 21464:2 21470:1 21495:1 21527:1 21648:1 21871:1 21967:1 22026:1 22089:2 22131:1 22179:1 22187:1 22235:1 22337:1 22433:1 22441:1 22481:1 22591:1 22664:1 22789:1 22796:1 22989:1 23018:1 23027:1 23046:1 23087:1 23097:1 23099:1 23144:2 23166:1 23213:1 23251:1 23397:1 23437:1 23438:2 23499:1 23559:1 23595:2 23621:1 23644:2 23651:1 23655:1 23745:1 23793:1 23803:2 23847:1 23865:1 23912:1 23960:1 24018:2 24213:1 24356:1 24372:1 24380:1 24399:1 24467:1 24472:1 24485:1 24527:1 24586:1 24624:1 24654:1 24656:1 24658:1 24660:1
19 184:1 482:2 501:1 517:1 555:1 658:1 666:1 674:1 685:1 690:1 692:1 731:1 735:1 806:1 850:1 1039:1 1141:1 1164:1 1203:1 1209:1 1318:1 1354:3 1460:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1751:1 1794:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 2005:1 2083:1 2303:1 2324:1 2391:1 2403:1 2414:1 2420:3 2430:2 2702:1 2769:1 2785:1 2823:1 2833:1 2995:1 3020:1 3024:1 3099:1 3264:1 3282:1 3341:1 3365:1 3444:3 3527:1 3689:1 3711:1 3826:1 3827:1 3830:1 3886:1 3916:1 3934:1 4092:1 4193:1 4210:1 4217:1 4227:1 4231:1 4244:1 4281:1 4327:1 4350:1 4407:1 4532:1 4550:1 4628:3 4646:1 4695:1 4715:1 4736:1 4755:1 4797:1 4803:1 5015:1 5019:4 5029:1 5034:1 5059:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5308:1 5313:1 5340:1 5409:1 5569:1 5682:1 5711:1 6000:3 6002:1 6047:1 6054:1 6264:2 6279:1 6331:1 6376:1 6404:1 6446:1 6462:1 6522:3 6541:3 6576:1 6591:1 6861:1 6953:2 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7532:1 7639:1 7642:1 7652:2 7798:1 7875:1 8114:1 8172:7 8196:1 8198:1 8556:1 8682:1 8704:1 8907:1 8993:1 9002:1 9077:1 9079:2 9103:1 9107:1 9152:1 9175:1 9180:1 9301:1 9331:1 9384:1 9400:1 9548:1 9673:1 9694:1 9711:1 9731:1 9749:1 9797:1 9825:1 9894:1 9957:1 9960:2 10005:1 10071:1 10161:1 10614:1 10737:3 10752:1 10771:2 10791:1 10814:1 10824:1 10945:1 10998:1 11073:1 11124:1 11142:3 11173:1 11189:1 11245:1 11282:1 11284:1 11330:1 11513:1 11597:1 11861:1 11865:1 11899:1 12299:1 12306:1 12538:1 12574:1 12594:1 12634:1 12647:1 13054:1 13063:1 13094:1 13097:1 13103:1 13111:1 13133:1 13233:1 13243:1 13248:1 13298:1 13317:1 13321:1 13487:1 13505:1 13596:1 13723:1 13842:1 14010:1 14083:1 14119:2 14135:1 14276:1 14365:1 14392:1 14443:1 14458:1 14486:1 14692:1 14702:1 14732:1 14756:1 14951:1 15066:1 15098:1 15150:1 15273:1 15367:1 15373:1 15448:2 15454:1 15552:1 15618:273 15634:1 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16245:1 16306:1 16315:1 16337:1 16368:1 16420:1 16591:1 16624:1 16885:2 16929:1 16973:2 17069:1 17127:1 17207:1 17496:1 17524:1 17537:1 17549:1 17552:1 17674:1 17958:1 18005:1 18020:1 18050:1 18133:1 18340:1 18478:1 18491:2 18493:1 18527:1 18563:1 18598:1 18678:1 18714:1 18831:1 18837:3 18919:1 18959:2 19001:1 19038:1 19081:1 19272:1 19304:2 19352:1 19468:1 19638:1 19648:1 19726:1 19807:3 19848:1 20170:1 20217:1 20267:1 20321:1 20359:1 20475:2 20512:1 20556:1 20570:1 20598:1 20663:1 20991:1 21002:1 21058:1 21059:1 21093:1 21104:1 21167:1 21280:1 21334:1 21335:3 21373:1 21433:1 21464:3 21470:1 21495:1 21527:1 21648:1 21871:1 21912:1 21967:1 22026:1 22057:1 22089:2 22131:1 22179:1 22187:1 22235:1 22337:1 22433:1 22441:1 22481:1 22591:1 22664:1 22719:1 22789:1 22796:1 22989:1 23018:1 23020:1 23027:1 23046:1 23048:1 23082:1 23087:1 23097:1 23099:1 23144:2 23166:1 23213:1 23251:1 23397:1 23437:1 23438:2 23499:1 23559:1 23595:2 23621:1 23644:2 23651:1 23655:1 23745:1 23793:1 23803:2 23847:1 23849:1 23865:1 23912:1 23960:1 24018:2 24213:1 24356:1 24372:1 24380:1 24399:1 24467:1 24472:1 24485:1 24527:1 24586:1 24624:1 24654:1 24656:1 24658:1 24660:1
19 184:1 482:2 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 690:1 692:1 700:1 731:1 735:1 766:1 806:1 850:1 903:1 1039:1 1141:1 1164:1 1190:1 1203:1 1209:1 1318:1 1354:3 1460:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1751:1 1794:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 2005:1 2083:1 2303:2 2324:1 2391:1 2403:1 2414:1 2420:4 2430:2 2702:1 2769:1 2785:1 2823:1 2833:1 2995:1 3020:1 3024:1 3099:1 3264:1 3282:1 3341:1 3365:1 3444:3 3450:1 3527:1 3531:1 3689:1 3711:1 3826:1 3827:1 3830:1 3886:1 3916:1 3934:1 4018:1 4048:1 4092:1 4193:1 4210:1 4212:1 4217:1 4227:1 4231:1 4244:1 4281:1 4327:1 4350:1 4407:1 4532:1 4550:1 4628:3 4646:1 4695:1 4715:1 4736:1 4755:1 4794:1 4797:1 4803:1 5015:1 5017:1 5019:4 5029:1 5034:1 5059:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5313:1 5321:1 5340:1 5363:1 5409:1 5569:1 5682:2 5711:1 6000:3 6002:1 6047:1 6054:1 6245:1 6264:2 6279:1 6331:1 6376:1 6404:1 6407:1 6446:1 6462:1 6463:1 6485:1 6522:3 6541:4 6576:1 6591:1 6861:1 6871:1 6953:2 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7260:1 7532:1 7639:1 7642:1 7652:2 7798:2 7804:1 7875:1 8114:1 8172:7 8196:1 8198:1 8256:1 8285:1 8516:1 8556:1 8682:1 8704:1 8907:1 8909:1 8924:1 8993:1 9002:1 9053:1 9077:1 9079:2 9103:1 9107:1 9152:1 9175:1 9180:1 9289:1 9301:1 9331:1 9335:1 9384:1 9400:1 9475:1 9518:1 9548:1 9673:1 9694:1 9711:1 9731:1 9749:1 9797:1 9825:1 9894:1 9957:1 9960:3 10005:1 10019:1 10071:1 10161:1 10275:1 10614:1 10737:3 10752:1 10771:2 10791:1 10814:1 10824:1 10945:1 10998:1 11073:1 11099:1 11124:1 11142:3 11173:1 11189:1 11213:1 11245:1 11282:1 11284:1 11330:1 11396:1 11513:1 11597:1 11861:1 11865:1 11899:1 11942:1 12294:1 12299:1 12306:1 12538:1 12574:1 12594:1 12634:1 12647:1 12708:1 12848:1 13054:1 13063:1 13094:1 13097:1 13103:1 13111:1 13133:1 13233:1 13243:1 13248:1 13298:1 13317:1 13321:1 13487:1 13505:1 13596:1 13645:1 13656:1 13706:1 13723:1 13842:1 14010:1 14083:1 14119:2 14135:1 14276:1 14365:1 14392:1 14443:1 14458:1 14486:1 14492:1 14692:1 14700:1 14702:1 14732:1 14756:1 14784:1 14951:1 15066:1 15098:1 15150:1 15273:1 15367:1 15373:1 15448:2 15454:1 15552:1 15618:304 15634:1 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16245:1 16306:1 16315:1 16337:1 16368:1 16420:1 16591:1 16624:1 16885:2 16929:1 16973:3 17069:1 17127:1 17207:1 17496:1 17524:1 17537:1 17543:1 17549:2 17552:1 17674:1 17750:1 17958:1 18005:1 18020:1 18050:1 18133:1 18211:1 18324:1 18333:1 18340:1 18478:1 18491:3 18493:1 18527:1 18563:1 18598:1 18678:1 18714:1 18831:1 18837:3 18874:1 18919:1 18959:2 19001:1 19038:1 19081:1 19158:1 19272:1 19304:2 19333:1 19352:1 19468:1 19638:1 19648:1 19726:1 19807:3 19848:1 20166:1 20170:1 20217:1 20267:1 20321:1 20359:1 20411:1 20475:2 20512:1 20556:1 20568:1 20570:1 20598:1 20613:1 20619:1 20663:1 20833:1 20991:1 21002:1 21037:1 21058:1 21059:2 21093:1 21104:1 21167:1 21280:1 21334:1 21335:3 21373:1 21403:1 21433:1 21464:3 21470:1 21495:1 21527:1 21615:1 21648:1 21657:1 21667:1 21871:1 21912:1 21967:1 22026:1 22057:1 22074:1 22089:2 22131:1 22179:1 22187:1 22235:1 22337:1 22433:1 22441:1 22481:1 22591:1 22664:1 22719:1 22744:1 22789:1 22796:1 22989:1 23018:1 23020:1 23027:1 23046:1 23048:1 23082:1 23086:1 23087:1 23097:1 23099:1 23144:2 23166:1 23213:1 23251:1 23330:1 23397:1 23437:1 23438:2 23499:1 23559:1 23595:2 23621:1 23644:2 23651:1 23655:1 23738:1 23745:1 23772:2 23793:1 23803:2 23847:1 23849:1 23865:1 23912:1 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24339:1 24356:1 24372:1 24380:1 24399:1 24467:1 24472:1 24485:1 24527:1 24586:1 24624:1 24654:1 24656:1 24658:1 24660:1
19 184:1 482:2 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 690:1 692:1 700:1 731:1 735:1 766:1 806:2 850:1 903:1 1039:1 1141:1 1164:1 1190:1 1203:1 1209:1 1231:1 1318:1 1354:3 1460:1 1461:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1751:1 1794:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 1997:1 2005:1 2083:1 2113:1 2303:2 2324:1 2391:1 2403:1 2414:1 2420:4 2430:2 2486:1 2531:1 2702:1 2769:1 2785:1 2823:1 2833:1 2995:1 3020:1 3024:1 3047:1 3099:1 3226:1 3264:1 3282:1 3341:1 3365:1 3444:3 3450:1 3527:1 3531:1 3665:1 3689:1 3711:1 3826:1 3827:1 3830:1 3871:1 3886:1 3916:1 3934:1 4018:1 4048:1 4092:1 4193:1 4210:1 4212:1 4217:1 4227:1 4231:2 4244:1 4281:1 4327:1 4350:1 4407:1 4532:1 4550:1 4628:3 4646:1 4695:1 4715:1 4736:1 4755:1 4794:1 4797:1 4803:1 4868:1 5015:1 5017:1 5019:4 5029:1 5034:1 5059:1 5091:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5313:1 5321:1 5340:1 5363:1 5409:1 5546:1 5569:1 5682:2 5711:1 6000:3 6002:1 6047:1 6054:1 6245:1 6264:2 6279:1 6331:1 6376:1 6404:1 6407:1 6446:1 6462:1 6463:1 6485:1 6522:3 6541:4 6542:1 6576:1 6591:1 6732:1 6861:1 6871:1 6953:2 6982:1 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7169:1 7245:1 7260:1 7317:1 7532:1 7639:1 7642:1 7652:2 7798:2 7804:1 7875:1 8114:1 8172:7 8196:1 8198:1 8256:1 8266:1 8285:1 8516:1 8556:1 8682:1 8704:1 8907:1 8909:1 8924:1 8943:1 8993:1 9002:1 9053:1 9077:1 9079:2 9103:1 9107:1 9152:1 9175:1 9180:1 9289:1 9301:1 9331:1 9335:1 9336:1 9384:1 9400:1 9475:1 9518:1 9548:1 9673:1 9694:1 9711:1 9731:1 9749:1 9797:1 9825:1 9894:1 9957:1 9960:3 9969:1 10005:1 10019:1 10071:1 10161:1 10275:1 10614:1 10737:3 10752:1 10771:2 10778:1 10791:1 10814:1 10824:1 10945:1 10998:1 11073:1 11078:1 11099:1 11124:2 11142:4 11173:1 11189:1 11213:1 11236:1 11245:1 11282:1 11284:1 11330:1 11380:1 11396:1 11411:1 11513:1 11597:1 11861:1 11865:1 11899:1 11942:1 12147:1 12282:1 12294:1 12299:1 12306:1 12424:1 12426:1 12538:1 12574:1 12577:1 12594:1 12626:1 12634:1 12647:1 12708:1 12848:1 13054:1 13063:1 13074:1 13094:1 13097:1 13103:1 13111:1 13133:1 13233:1 13243:1 13248:1 13298:1 13317:1 13321:1 13368:1 13487:1 13505:1 13596:1 13645:1 13656:1 13706:1 13723:1 13842:1 13897:1 14010:1 14080:1 14083:1 14119:2 14135:1 14173:1 14276:1 14362:1 14365:1 14392:1 14443:1 14455:1 14458:1 14486:1 14492:1 14512:1 14692:1 14700:1 14702:1 14732:1 14756:1 14784:1 14951:1 15066:1 15098:1 15136:1 15150:1 15273:1 15367:2 15373:1 15448:2 15454:1 15552:1 15618:331 15634:1 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16245:1 16306:1 16315:1 16337:1 16368:1 16385:1 16420:1 16567:1 16591:1 16624:1 16885:2 16929:1 16943:1 16973:3 16987:1 17069:1 17127:1 17207:1 17496:1 17524:1 17537:2 17543:1 17549:3 17552:1 17674:1 17735:1 17750:1 17958:1 18005:1 18020:1 18050:1 18133:1 18149:1 18211:1 18324:1 18333:1 18340:1 18478:1 18491:3 18493:1 18518:1 18527:1 18531:1 18563:1 18598:1 18678:1 18714:1 18831:1 18837:3 18874:1 18919:1 18959:2 18981:1 19001:1 19038:1 19047:1 19081:1 19158:1 19234:1 19272:1 19304:2 19333:1 19352:1 19468:1 19549:1 19638:1 19648:1 19726:1 19807:4 19848:1 20166:1 20170:1 20217:1 20267:1 20321:1 20359:1 20411:1 20459:1 20475:2 20512:1 20556:1 20568:1 20570:1 20598:1 20613:1 20619:1 20661:1 20663:1 20833:1 20991:1 21002:1 21037:1 21058:2 21059:2 21093:1 21104:1 21167:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21433:1 21464:3 21470:1 21495:1 21496:1 21527:1 21615:1 21648:1 21657:1 21667:1 21699:1 21871:1 21912:1 21967:1 22026:1 22043:1 22057:1 22074:1 22089:2 22131:1 22179:1 22187:1 22235:1 22286:1 22337:1 22433:1 22441:1 22481:1 22513:1 22591:1 22664:1 22719:1 22744:1 22789:1 22796:1 22989:1 23018:1 23020:1 23027:1 23046:1 23048:1 23082:1 23086:1 23087:1 23097:1 23099:1 23121:1 23144:2 23166:1 23213:1 23251:1 23260:1 23330:1 23397:1 23437:1 23438:2 23499:1 23559:1 23595:2 23621:1 23644:3 23651:1 23655:1 23671:1 23676:1 23713:1 23738:1 23745:1 23753:1 23772:2 23793:1 23799:1 23803:2 23847:1 23849:1 23865:1 23912:1 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24339:1 24356:1 24372:1 24380:1 24399:1 24427:1 24467:1 24472:1 24485:1 24527:1 24586:1 24624:1 24654:1 24656:1 24658:1 24660:1
19 184:1 298:1 482:3 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 690:1 692:3 700:1 731:1 735:1 766:1 806:2 850:1 903:1 1039:1 1141:1 1164:1 1190:2 1203:1 1209:1 1231:1 1276:1 1318:1 1354:3 1460:1 1461:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1751:1 1794:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 1997:1 2005:1 2083:1 2113:1 2122:1 2303:2 2324:1 2391:1 2403:1 2414:1 2420:5 2430:2 2486:1 2531:1 2675:1 2702:2 2769:1 2785:1 2823:1 2833:1 2989:1 2995:1 3020:1 3024:1 3047:1 3099:1 3141:1 3226:1 3264:1 3282:1 3341:1 3347:1 3365:1 3444:3 3450:1 3527:1 3531:2 3665:1 3689:1 3711:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:1 3922:1 3934:1 4018:1 4041:1 4048:2 4092:1 4193:1 4210:1 4212:1 4217:1 4227:1 4231:2 4244:1 4281:1 4327:1 4350:1 4407:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4868:1 4906:1 5015:1 5017:1 5019:4 5029:1 5034:1 5059:1 5091:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5313:1 5321:1 5326:1 5340:1 5363:1 5409:1 5440:1 5546:1 5562:1 5569:1 5659:1 5682:2 5711:1 6000:3 6002:1 6047:1 6054:1 6245:1 6264:2 6279:1 6331:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:1 6463:1 6485:1 6522:3 6536:1 6541:5 6542:1 6546:1 6576:1 6591:1 6603:1 6635:1 6732:1 6861:1 6871:1 6953:2 6982:1 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7169:1 7178:1 7180:1 7245:1 7260:1 7317:1 7442:1 7532:1 7639:1 7642:1 7652:2 7798:2 7804:1 7875:1 7996:1 8114:1 8172:7 8196:1 8198:1 8256:1 8266:2 8285:1 8487:1 8516:1 8556:1 8682:1 8704:1 8907:1 8909:1 8924:1 8943:1 8993:1 9002:1 9053:1 9077:1 9079:2 9103:1 9107:1 9152:1 9175:1 9180:1 9289:1 9301:1 9331:1 9335:1 9336:1 9384:1 9400:1 9475:1 9518:1 9548:1 9673:1 9694:1 9711:1 9731:1 9749:1 9757:1 9797:1 9825:1 9843:1 9869:1 9894:1 9935:1 9957:1 9960:5 9969:1 10005:1 10019:1 10071:1 10147:1 10161:1 10275:1 10614:1 10737:3 10752:1 10771:3 10778:1 10791:1 10814:1 10824:1 10945:1 10998:1 11073:1 11078:2 11099:2 11124:2 11142:4 11173:1 11189:1 11213:1 11222:1 11236:1 11245:1 11282:1 11284:1 11330:1 11380:1 11396:1 11411:1 11448:1 11513:1 11597:1 11652:1 11660:1 11861:1 11865:1 11896:1 11899:1 11905:1 11942:1 12080:1 12147:1 12282:1 12294:1 12299:1 12306:1 12424:1 12426:1 12501:1 12538:1 12574:1 12577:1 12594:1 12626:1 12634:1 12643:1 12647:1 12683:1 12708:1 12848:1 13038:1 13054:1 13063:1 13074:1 13094:2 13097:1 13103:1 13111:3 13133:1 13233:1 13243:1 13248:1 13298:1 13317:1 13321:1 13332:1 13368:1 13487:1 13505:1 13596:1 13645:1 13656:1 13706:1 13723:1 13842:1 13897:1 14010:1 14080:1 14083:1 14119:11 14135:1 14173:1 14259:1 14276:1 14362:1 14365:1 14392:1 14443:1 14455:1 14458:1 14486:1 14492:1 14512:1 14692:1 14700:1 14702:1 14732:1 14756:1 14784:1 14951:1 14983:1 15066:1 15098:1 15136:1 15150:1 15273:1 15367:2 15373:1 15448:2 15454:1 15552:1 15618:373 15634:1 15691:1 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16233:1 16236:1 16245:1 16271:1 16306:1 16315:1 16337:1 16368:1 16385:1 16420:1 16567:1 16591:1 16624:1 16723:1 16845:1 16885:2 16929:1 16943:1 16973:5 16987:1 17062:2 17069:1 17127:1 17207:1 17303:1 17496:1 17524:1 17537:2 17543:1 17549:3 17552:1 17558:1 17674:1 17710:1 17735:1 17750:1 17895:1 17958:1 18005:1 18020:1 18050:1 18133:1 18149:1 18203:1 18211:1 18228:1 18274:1 18324:1 18333:1 18340:1 18478:1 18491:5 18493:1 18518:1 18527:1 18531:1 18563:1 18598:1 18647:1 18678:1 18714:1 18831:1 18837:3 18874:1 18919:1 18959:2 18981:2 19001:1 19038:1 19047:1 19063:1 19081:1 19158:1 19234:1 19272:1 19304:2 19332:1 19333:1 19352:1 19468:1 19549:1 19638:1 19648:1 19703:1 19726:1 19807:4 19848:1 20166:1 20170:1 20217:1 20267:1 20321:1 20359:1 20366:1 20411:1 20459:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:2 20619:1 20620:1 20661:1 20663:1 20700:1 20804:1 20833:1 20991:1 21002:1 21037:1 21058:2 21059:2 21093:1 21104:1 21167:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21609:1 21615:1 21648:1 21657:1 21667:1 21699:1 21767:1 21871:1 21912:1 21967:1 22026:1 22043:1 22057:1 22074:1 22089:2 22131:1 22173:1 22179:1 22187:1 22235:1 22286:1 22291:1 22337:1 22433:1 22441:1 22481:1 22513:1 22591:1 22664:1 22719:1 22744:1 22789:1 22796:1 22989:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23084:1 23086:1 23087:1 23097:1 23099:1 23121:1 23144:2 23148:1 23166:1 23213:1 23251:1 23258:1 23260:1 23330:1 23397:1 23437:1 23438:2 23499:1 23559:1 23595:2 23621:1 23644:3 23651:1 23655:1 23671:2 23676:1 23713:1 23738:2 23745:1 23753:1 23772:2 23793:1 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:1 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24339:1 24356:1 24372:1 24380:1 24399:1 24427:1 24467:1 24472:1 24485:1 24527:1 24586:1 24624:1 24627:1 24654:1 24656:1 24658:1 24660:1
19 184:1 298:1 482:3 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 690:1 692:3 699:1 700:1 731:1 735:1 766:1 806:2 850:1 903:1 1039:1 1141:1 1164:1 1190:2 1203:1 1209:1 1231:1 1276:1 1318:1 1354:3 1460:1 1461:1 1462:1 1515:1 1551:1 1644:1 1669:1 1737:1 1745:1 1751:1 1785:1 1794:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 1997:2 2005:1 2083:1 2113:1 2122:1 2303:2 2324:1 2391:1 2403:1 2414:1 2420:5 2430:2 2486:2 2531:1 2675:1 2702:2 2769:1 2785:1 2823:1 2833:1 2989:1 2995:1 3020:1 3024:1 3047:1 3099:1 3141:1 3226:2 3264:1 3282:1 3341:1 3347:1 3365:1 3444:3 3450:1 3527:1 3531:2 3665:1 3689:1 3711:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:1 3922:1 3934:1 4018:1 4021:1 4041:1 4048:2 4092:1 4193:1 4210:1 4212:1 4217:1 4227:1 4231:2 4244:1 4281:1 4327:1 4350:1 4407:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4868:1 4906:1 5015:1 5017:1 5019:5 5029:1 5034:1 5059:1 5091:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5313:1 5321:1 5326:1 5340:1 5363:1 5409:1 5440:1 5546:2 5562:1 5569:1 5649:1 5659:1 5682:2 5711:1 5779:1 5786:1 6000:3 6002:1 6047:1 6054:1 6245:1 6264:2 6279:1 6331:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:1 6463:1 6485:2 6522:3 6536:1 6541:5 6542:2 6546:1 6576:1 6591:1 6603:1 6635:1 6732:1 6861:1 6871:1 6953:2 6982:1 7069:1 7099:1 7106:1 7114:1 7139:1 7162:1 7169:1 7178:1 7180:1 7234:1 7245:2 7260:1 7317:1 7442:1 7532:1 7639:1 7642:1 7652:2 7798:2 7804:1 7875:1 7943:2 7996:1 8114:1 8171:1 8172:8 8196:1 8198:1 8256:1 8266:2 8285:1 8487:1 8516:1 8556:1 8682:1 8704:1 8907:1 8909:1 8920:1 8924:1 8943:1 8993:1 9002:1 9053:1 9077:1 9079:2 9103:1 9107:1 9152:1 9175:1 9176:1 9180:1 9289:1 9301:1 9331:1 9335:1 9336:1 9384:1 9400:1 9464:1 9475:1 9518:1 9544:1 9548:1 9592:1 9673:1 9694:1 9711:1 9731:1 9749:1 9757:1 9797:1 9825:1 9843:1 9869:1 9894:1 9935:1 9957:1 9960:5 9969:1 10005:1 10019:1 10071:1 10147:1 10161:1 10275:1 10614:1 10737:3 10752:1 10771:3 10778:1 10791:1 10814:1 10824:1 10844:1 10945:1 10998:1 11073:1 11078:2 11099:2 11124:2 11142:4 11173:1 11189:1 11213:1 11222:1 11236:1 11245:1 11282:1 11284:1 11330:1 11380:1 11396:1 11411:1 11448:1 11449:1 11513:1 11597:1 11652:1 11660:1 11861:1 11865:1 11896:1 11899:1 11905:1 11942:1 12080:1 12147:1 12158:1 12282:1 12294:1 12299:1 12306:1 12424:1 12426:2 12501:1 12538:1 12574:1 12577:1 12594:1 12626:2 12634:1 12643:1 12647:1 12683:1 12708:1 12755:1 12848:1 13038:1 13054:1 13063:1 13074:1 13094:2 13097:1 13103:1 13111:3 13133:1 13233:1 13243:2 13248:1 13298:1 13317:1 13321:1 13332:1 13368:1 13487:1 13505:1 13596:1 13645:1 13656:1 13706:1 13723:1 13842:1 13897:1 14010:1 14080:1 14083:1 14119:11 14135:1 14151:1 14173:2 14259:1 14276:1 14362:1 14365:1 14392:1 14443:1 14455:2 14458:1 14486:1 14492:1 14512:1 14692:1 14700:1 14702:1 14710:1 14732:1 14756:1 14784:1 14951:1 14983:1 15066:1 15098:1 15136:2 15150:1 15194:1 15273:1 15367:3 15373:1 15448:2 15454:1 15552:1 15584:1 15618:386 15634:1 15691:1 15755:1 15771:1 15775:1 15779:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16205:1 16233:1 16236:1 16245:1 16271:1 16306:1 16315:1 16337:1 16355:1 16368:1 16385:1 16420:1 16567:2 16591:1 16624:1 16723:1 16845:1 16885:2 16929:1 16943:1 16973:5 16987:2 17062:2 17069:1 17127:1 17207:1 17210:1 17303:1 17496:1 17524:1 17537:2 17543:1 17549:3 17552:1 17558:1 17674:1 17710:1 17735:1 17750:1 17895:1 17958:1 18005:1 18020:1 18050:1 18133:1 18149:2 18157:1 18203:1 18211:1 18228:1 18274:1 18324:1 18333:1 18340:1 18478:1 18491:5 18493:1 18518:1 18527:1 18531:1 18563:1 18598:1 18647:1 18678:1 18714:1 18831:1 18837:3 18847:1 18874:1 18919:1 18959:2 18981:2 19001:1 19038:1 19047:1 19063:1 19081:1 19158:1 19234:2 19272:1 19304:2 19332:1 19333:1 19352:1 19468:1 19549:1 19638:1 19648:1 19703:1 19726:1 19807:4 19848:1 20166:1 20170:1 20217:1 20267:1 20321:1 20359:1 20366:1 20411:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:2 20619:1 20620:1 20661:1 20663:1 20665:1 20700:1 20804:1 20833:1 20991:1 21002:1 21037:1 21058:3 21059:2 21093:1 21104:1 21167:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21609:1 21615:1 21648:1 21657:1 21667:1 21699:1 21767:1 21871:1 21912:1 21967:1 22026:1 22043:1 22057:1 22074:1 22089:2 22131:1 22173:1 22179:1 22187:1 22235:1 22286:1 22291:1 22337:1 22433:1 22441:1 22481:1 22513:1 22591:1 22664:1 22719:1 22744:1 22789:1 22796:1 22989:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23084:1 23086:1 23087:1 23097:1 23099:1 23121:1 23144:2 23148:1 23166:1 23213:1 23251:1 23258:1 23260:1 23325:1 23330:1 23397:1 23437:1 23438:2 23499:1 23559:1 23595:2 23621:1 23644:4 23651:1 23655:1 23671:2 23676:1 23713:1 23738:2 23745:1 23753:1 23772:2 23793:1 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:1 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24339:1 24356:1 24372:1 24380:1 24399:1 24427:1 24467:1 24472:1 24485:1 24527:1 24586:1 24624:1 24627:1 24654:1 24656:1 24658:1 24660:1
19 43:1 79:1 118:1 163:1 184:1 225:1 298:1 474:1 482:3 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 690:1 692:3 699:1 700:1 731:1 735:1 766:1 806:2 850:1 903:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:1 1203:2 1209:1 1231:1 1276:1 1318:1 1354:3 1460:1 1461:1 1462:1 1515:1 1551:1 1624:1 1644:1 1669:1 1715:1 1737:1 1745:1 1751:2 1785:1 1794:3 1851:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 1997:2 2005:1 2083:1 2113:1 2122:1 2151:1 2303:2 2324:1 2391:1 2403:1 2414:1 2420:5 2430:3 2486:2 2498:1 2506:1 2531:1 2675:1 2702:2 2769:1 2785:1 2823:1 2833:1 2912:1 2989:1 2995:1 3020:1 3024:1 3036:1 3047:2 3099:1 3141:1 3226:2 3264:1 3267:1 3282:1 3341:1 3347:1 3364:1 3365:1 3444:3 3450:1 3527:1 3531:2 3665:1 3689:1 3697:1 3711:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3934:1 4018:1 4021:1 4041:1 4048:2 4092:2 4189:1 4193:1 4210:2 4212:2 4217:1 4218:1 4224:1 4226:1 4227:1 4231:2 4244:1 4281:1 4291:1 4327:1 4350:1 4387:1 4407:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4815:1 4868:1 4906:1 5015:1 5017:2 5019:5 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5313:1 5319:1 5321:1 5326:1 5340:1 5363:1 5409:1 5440:1 5546:2 5562:1 5569:1 5649:1 5659:1 5678:1 5682:2 5711:1 5779:1 5786:1 6000:4 6002:1 6047:1 6054:1 6245:1 6264:2 6279:1 6299:1 6331:1 6354:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:1 6463:1 6485:2 6522:3 6536:1 6541:5 6542:2 6546:1 6576:1 6591:1 6603:1 6635:1 6732:1 6861:1 6871:1 6953:3 6982:1 7069:1 7099:1 7106:1 7114:2 7139:1 7162:1 7169:1 7178:1 7180:1 7234:1 7245:2 7260:1 7317:2 7435:1 7442:1 7532:1 7636:1 7639:1 7642:1 7652:3 7731:1 7798:2 7804:1 7875:1 7943:2 7996:1 8114:1 8123:1 8171:1 8172:8 8196:1 8198:1 8216:1 8256:1 8266:2 8285:1 8328:1 8487:1 8516:2 8547:1 8556:1 8682:1 8704:1 8823:1 8907:1 8909:1 8920:1 8924:1 8943:2 8993:1 9002:1 9053:1 9077:1 9079:3 9089:1 9103:1 9107:1 9152:1 9175:1 9176:1 9180:1 9289:1 9301:1 9331:1 9335:1 9336:1 9353:1 9384:1 9400:1 9464:1 9475:1 9495:1 9518:1 9544:1 9548:1 9592:1 9618:1 9673:1 9685:1 9694:1 9711:1 9731:1 9749:1 9757:1 9797:1 9825:1 9843:1 9845:1 9867:1 9869:1 9894:1 9935:1 9957:2 9960:5 9969:1 9973:1 10005:1 10019:1 10071:1 10147:1 10161:1 10275:1 10383:1 10521:1 10614:1 10737:4 10752:1 10771:3 10778:1 10791:1 10814:1 10824:1 10837:1 10844:1 10854:1 10945:1 10964:1 10998:1 11073:1 11078:2 11099:2 11124:2 11142:4 11173:1 11189:1 11213:1 11222:2 11236:1 11245:1 11282:1 11284:1 11327:1 11330:1 11374:1 11380:1 11396:1 11411:1 11413:1 11448:1 11449:1 11453:1 11513:1 11524:1 11597:1 11652:1 11660:1 11861:1 11865:1 11896:1 11899:1 11905:1 11942:1 12080:1 12125:1 12147:1 12158:1 12282:1 12294:1 12299:1 12302:1 12306:2 12334:2 12424:1 12426:2 12501:1 12538:1 12574:1 12577:1 12594:1 12626:2 12634:1 12643:1 12647:1 12683:1 12708:1 12755:1 12822:1 12848:1 12886:1 13023:1 13038:1 13054:1 13063:1 13074:1 13094:2 13097:1 13103:1 13111:3 13133:1 13233:1 13243:2 13248:1 13298:1 13317:1 13321:1 13332:1 13368:2 13404:1 13487:1 13505:1 13596:1 13645:1 13656:1 13706:1 13723:1 13743:1 13842:1 13897:1 14010:1 14080:1 14083:1 14119:11 14135:1 14151:1 14173:2 14259:1 14276:1 14362:1 14365:1 14392:1 14443:1 14455:2 14458:1 14486:1 14492:1 14512:1 14608:1 14692:1 14700:1 14702:1 14710:1 14732:1 14756:1 14783:1 14784:1 14951:1 14983:1 15066:1 15098:1 15136:2 15150:1 15194:1 15223:1 15258:1 15273:2 15367:3 15369:1 15373:1 15395:1 15448:2 15454:1 15525:1 15552:1 15584:1 15618:467 15634:1 15691:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16205:1 16233:1 16236:1 16245:1 16271:1 16306:1 16315:1 16337:1 16355:1 16368:1 16385:1 16420:1 16493:1 16567:2 16591:1 16624:1 16723:1 16845:1 16885:2 16929:1 16943:1 16973:5 16987:2 17062:2 17069:1 17127:1 17207:2 17210:1 17303:1 17435:1 17496:1 17524:1 17537:2 17543:1 17549:3 17552:1 17558:1 17614:1 17674:1 17710:1 17735:1 17750:1 17895:1 17904:1 17908:1 17920:1 17958:1 18005:1 18020:1 18050:1 18133:2 18149:2 18157:1 18203:1 18211:1 18228:1 18274:1 18301:1 18324:1 18333:1 18340:1 18478:1 18491:5 18493:1 18498:1 18518:1 18527:1 18531:1 18532:1 18563:1 18598:1 18623:1 18637:1 18647:1 18678:1 18698:1 18714:1 18719:1 18742:1 18789:1 18807:1 18831:1 18837:3 18847:1 18874:1 18919:1 18959:2 18981:2 19001:1 19038:1 19047:1 19063:1 19081:1 19158:1 19200:1 19234:2 19272:1 19304:2 19332:2 19333:1 19352:1 19468:1 19549:1 19638:2 19647:1 19648:1 19703:1 19726:2 19738:1 19756:1 19757:1 19807:4 19848:2 19907:1 19983:1 20166:1 20170:1 20217:1 20266:1 20267:1 20321:1 20359:1 20366:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:2 20619:1 20620:1 20661:1 20663:1 20665:1 20700:1 20804:1 20833:1 20982:1 20991:1 21002:1 21037:1 21058:3 21059:2 21067:1 21093:1 21104:1 21167:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21681:1 21699:1 21767:1 21871:1 21912:1 21967:1 22026:1 22043:1 22057:1 22074:1 22089:2 22131:1 22133:1 22173:1 22179:1 22187:1 22235:1 22286:1 22291:1 22337:1 22433:1 22441:1 22481:1 22513:1 22591:1 22664:1 22719:1 22744:1 22789:1 22796:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23084:1 23086:1 23087:2 23097:1 23099:1 23121:1 23144:3 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23265:1 23325:1 23330:1 23397:1 23425:1 23437:1 23438:2 23499:1 23559:1 23569:1 23595:2 23621:1 23626:1 23644:5 23651:1 23655:2 23671:3 23676:1 23713:1 23738:2 23745:1 23753:1 23772:2 23793:1 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:2 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24339:1 24356:1 24372:1 24380:2 24399:1 24427:1 24467:1 24472:1 24485:2 24527:1 24586:1 24624:1 24627:1 24654:1 24656:1 24658:1 24660:1
19 43:1 79:1 118:1 163:1 184:1 198:1 225:1 298:1 474:1 482:3 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 688:1 690:1 692:3 699:1 700:1 703:1 731:1 735:1 766:1 767:1 806:3 850:1 903:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:1 1203:2 1209:1 1231:1 1276:1 1318:1 1354:3 1460:1 1461:1 1462:1 1515:1 1551:1 1624:1 1644:1 1669:1 1715:1 1734:1 1737:1 1745:1 1751:2 1785:1 1794:3 1851:1 1863:1 1872:1 1885:1 1893:1 1909:1 1982:1 1986:1 1997:2 2005:1 2083:1 2113:1 2122:1 2151:1 2303:2 2324:1 2391:2 2403:1 2414:1 2420:5 2430:3 2486:2 2490:1 2498:1 2506:1 2531:1 2658:1 2675:1 2702:2 2738:2 2769:1 2784:1 2785:1 2823:1 2833:1 2912:1 2989:1 2995:1 3020:1 3024:1 3036:1 3047:2 3099:1 3141:3 3226:2 3258:1 3264:1 3267:1 3282:1 3341:1 3347:1 3364:1 3365:2 3444:3 3450:1 3527:1 3531:2 3665:1 3689:1 3697:1 3711:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3934:1 3969:1 4018:1 4021:1 4041:1 4048:2 4092:2 4189:1 4193:1 4210:2 4212:2 4217:1 4218:1 4224:1 4226:2 4227:1 4231:2 4244:1 4281:1 4291:1 4327:1 4350:1 4387:1 4407:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4815:1 4868:1 4906:1 5015:1 5017:2 5019:5 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5313:1 5319:1 5321:1 5326:1 5340:1 5363:1 5409:1 5440:1 5546:2 5562:1 5569:1 5649:1 5659:1 5678:1 5682:2 5711:1 5779:1 5786:1 6000:4 6002:1 6047:1 6054:1 6245:1 6264:2 6279:1 6299:1 6331:1 6354:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:1 6463:1 6485:2 6522:3 6536:1 6541:5 6542:2 6546:1 6576:1 6591:1 6603:1 6635:1 6732:1 6861:1 6871:1 6953:4 6982:1 7069:1 7094:1 7099:1 7106:1 7114:2 7139:1 7162:1 7169:1 7178:1 7180:1 7234:1 7245:2 7260:1 7300:1 7317:2 7388:1 7435:1 7442:1 7471:1 7532:1 7636:1 7639:1 7642:1 7652:4 7731:1 7798:2 7804:1 7875:1 7943:2 7996:1 8114:1 8123:1 8171:2 8172:16 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8328:1 8363:1 8487:2 8516:2 8547:1 8556:1 8628:1 8682:1 8704:1 8823:1 8907:1 8909:1 8920:1 8924:1 8943:2 8993:1 9002:1 9053:1 9077:1 9079:3 9089:1 9103:1 9107:1 9152:1 9175:1 9176:1 9180:1 9260:1 9289:1 9301:1 9331:1 9335:1 9336:1 9353:1 9384:1 9400:1 9464:1 9475:1 9495:1 9518:1 9544:1 9548:1 9552:1 9592:1 9618:1 9627:1 9673:1 9685:1 9694:1 9711:1 9731:1 9749:1 9757:1 9797:1 9819:1 9825:1 9843:1 9845:1 9867:1 9869:1 9894:1 9935:1 9957:2 9960:5 9962:1 9969:1 9973:1 10005:1 10019:1 10071:1 10125:1 10147:1 10161:1 10275:1 10383:1 10521:1 10614:1 10737:4 10752:1 10771:3 10776:1 10778:1 10791:1 10814:1 10824:1 10837:1 10844:1 10854:1 10945:1 10964:1 10998:1 11073:1 11078:2 11099:2 11124:2 11142:4 11173:1 11189:1 11213:1 11222:2 11236:1 11245:1 11269:1 11282:1 11284:1 11327:1 11330:1 11374:1 11380:1 11396:1 11411:1 11413:1 11448:1 11449:1 11453:1 11513:1 11524:1 11593:1 11597:1 11652:1 11660:1 11861:1 11865:1 11896:1 11899:1 11905:1 11942:1 12080:1 12125:1 12147:1 12158:1 12282:1 12294:1 12299:1 12302:1 12306:2 12334:2 12424:1 12426:2 12501:1 12538:1 12574:1 12577:1 12594:1 12626:2 12634:1 12643:1 12647:1 12683:1 12708:1 12755:1 12822:1 12848:1 12886:1 13023:1 13038:1 13054:1 13060:1 13063:1 13074:1 13094:2 13097:1 13103:1 13111:3 13133:1 13232:1 13233:1 13243:2 13248:1 13298:1 13317:1 13321:1 13332:1 13368:3 13404:1 13487:1 13505:1 13596:2 13618:2 13645:1 13656:1 13660:1 13706:1 13723:1 13725:1 13743:1 13842:1 13897:1 14010:1 14080:1 14083:1 14119:11 14135:1 14151:1 14173:2 14259:1 14276:1 14301:1 14362:1 14365:1 14392:1 14443:1 14455:2 14458:1 14486:2 14492:1 14512:1 14608:1 14692:1 14700:1 14702:1 14710:1 14732:1 14756:1 14783:1 14784:1 14943:1 14951:1 14983:1 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15367:3 15369:1 15373:1 15395:1 15448:2 15454:1 15525:1 15552:1 15584:1 15618:527 15634:1 15666:1 15691:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15920:1 15934:1 16013:1 16018:1 16090:1 16165:1 16171:1 16182:1 16205:1 16233:1 16236:1 16245:1 16271:1 16306:1 16315:1 16337:1 16355:1 16368:1 16385:1 16420:1 16478:1 16493:1 16567:2 16591:1 16624:1 16723:1 16845:1 16885:2 16929:1 16943:1 16973:5 16987:2 17062:2 17069:1 17127:1 17207:2 17210:1 17303:1 17435:2 17496:1 17524:1 17537:2 17543:1 17549:3 17552:1 17558:1 17614:1 17674:1 17710:1 17735:1 17750:1 17895:1 17904:1 17908:1 17920:1 17958:1 18005:1 18020:1 18050:1 18081:1 18133:2 18149:2 18157:1 18203:1 18211:1 18228:1 18274:1 18301:1 18324:1 18333:1 18340:1 18478:1 18491:5 18493:1 18498:1 18518:1 18527:1 18531:1 18532:1 18546:1 18563:1 18598:1 18623:1 18637:1 18647:1 18678:1 18698:2 18714:1 18719:1 18742:1 18789:1 18807:1 18831:1 18837:3 18847:1 18874:1 18896:1 18919:1 18959:2 18981:2 19001:1 19038:1 19047:1 19049:1 19063:1 19081:1 19158:1 19200:1 19234:2 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19468:1 19549:1 19638:2 19647:1 19648:1 19703:1 19726:2 19738:1 19756:1 19757:1 19807:4 19848:2 19907:1 19983:1 20113:1 20166:1 20170:1 20217:1 20266:1 20267:1 20321:1 20329:1 20359:1 20366:1 20409:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:2 20619:1 20620:1 20661:1 20663:1 20665:1 20700:1 20804:1 20833:1 20982:1 20991:1 21002:1 21037:1 21058:3 21059:2 21067:1 21093:1 21104:1 21167:1 21229:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21681:1 21699:1 21767:1 21871:1 21912:1 21967:2 22026:1 22043:1 22057:1 22074:1 22089:2 22131:1 22133:1 22173:1 22179:1 22187:1 22235:1 22286:1 22289:1 22291:1 22337:1 22433:1 22441:1 22481:1 22499:1 22513:1 22591:1 22664:1 22719:1 22744:1 22789:1 22796:1 22840:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23084:1 23086:1 23087:2 23097:1 23099:1 23121:1 23144:4 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23265:1 23325:1 23330:1 23397:1 23425:1 23437:1 23438:2 23499:1 23559:1 23569:1 23595:2 23621:1 23626:1 23644:5 23651:1 23655:2 23671:4 23676:1 23713:1 23738:2 23745:1 23753:1 23772:2 23793:1 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:2 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24339:1 24356:1 24372:1 24380:2 24399:1 24400:1 24427:1 24467:1 24472:1 24485:2 24527:1 24586:1 24624:1 24627:2 24654:1 24656:1 24658:1 24660:1
19 43:1 79:1 118:1 163:1 183:1 184:1 198:1 225:1 298:1 456:1 474:1 482:3 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 688:1 690:1 692:3 699:1 700:1 703:1 731:1 735:1 766:2 767:1 806:3 808:1 850:1 903:1 969:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:1 1203:2 1209:1 1231:1 1266:1 1276:1 1318:1 1354:3 1460:1 1461:1 1462:1 1515:1 1551:1 1624:1 1644:1 1669:1 1715:1 1734:1 1737:1 1745:1 1751:2 1785:1 1794:3 1810:1 1851:1 1863:1 1872:1 1885:1 1893:1 1909:1 1910:1 1982:1 1986:1 1997:2 2005:1 2016:1 2078:1 2083:1 2113:1 2122:1 2151:1 2270:1 2303:2 2324:1 2391:2 2403:1 2414:1 2420:5 2430:3 2486:2 2490:1 2498:1 2506:1 2531:1 2632:1 2658:1 2675:1 2702:2 2738:2 2769:1 2784:1 2785:1 2823:1 2833:1 2912:1 2925:1 2989:1 2995:1 3020:1 3024:1 3036:1 3047:2 3099:1 3106:1 3141:3 3208:1 3226:2 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3444:3 3450:1 3522:1 3527:1 3531:2 3665:1 3689:1 3697:1 3711:1 3767:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3934:1 3964:1 3969:1 4018:1 4021:1 4041:1 4048:2 4092:2 4189:1 4193:1 4194:1 4210:3 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4244:1 4281:1 4291:1 4327:1 4350:1 4387:1 4407:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4815:1 4868:1 4906:1 5015:1 5017:2 5019:5 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5122:1 5134:1 5195:1 5215:1 5223:3 5245:1 5282:1 5308:1 5312:1 5313:1 5319:1 5321:1 5326:1 5340:1 5363:1 5409:1 5440:1 5546:2 5562:1 5569:1 5649:1 5659:1 5678:1 5682:2 5711:1 5768:1 5779:1 5786:1 5796:1 6000:5 6002:1 6047:1 6054:1 6245:1 6264:3 6279:1 6299:1 6331:1 6354:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:1 6463:1 6482:1 6485:2 6522:4 6536:1 6541:5 6542:2 6546:1 6576:1 6591:1 6602:1 6603:1 6635:1 6732:1 6861:1 6871:1 6953:6 6974:1 6982:1 7069:1 7094:1 7099:1 7106:1 7114:2 7133:1 7139:1 7162:1 7169:1 7178:1 7180:1 7213:1 7234:1 7235:1 7245:2 7260:1 7300:1 7317:2 7388:1 7435:1 7442:1 7471:1 7532:1 7615:1 7636:1 7639:1 7642:1 7652:4 7713:1 7731:1 7798:2 7804:1 7875:2 7926:1 7943:2 7996:1 8078:1 8114:1 8123:1 8171:3 8172:16 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8328:1 8363:1 8487:2 8516:2 8547:1 8556:1 8628:1 8682:1 8704:1 8823:1 8907:1 8909:1 8920:1 8924:1 8943:2 8993:1 9002:1 9053:1 9077:1 9079:3 9089:1 9103:1 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9260:1 9289:1 9301:1 9306:1 9331:1 9335:1 9336:1 9353:1 9384:1 9400:1 9464:1 9475:1 9495:1 9518:1 9544:1 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9627:1 9673:1 9685:1 9694:2 9711:1 9731:1 9749:1 9757:1 9797:1 9819:1 9825:1 9843:1 9845:1 9867:1 9869:1 9894:1 9935:1 9957:2 9960:5 9962:1 9969:1 9973:1 10005:1 10019:1 10071:2 10125:1 10147:1 10161:1 10223:1 10275:1 10329:1 10383:1 10521:1 10530:1 10614:1 10737:4 10752:1 10771:3 10776:1 10778:1 10791:1 10814:1 10824:1 10829:1 10837:1 10844:1 10854:1 10871:1 10945:1 10964:1 10998:1 11046:1 11073:1 11078:2 11099:2 11124:2 11136:1 11142:4 11173:1 11189:1 11213:1 11214:1 11222:2 11236:1 11245:1 11269:1 11282:1 11284:1 11327:1 11330:1 11374:1 11380:1 11396:1 11411:1 11413:2 11448:1 11449:1 11453:1 11513:1 11520:1 11524:1 11593:1 11597:1 11627:1 11652:1 11660:1 11773:1 11861:1 11865:1 11896:1 11899:1 11905:2 11942:1 12080:1 12125:1 12147:1 12158:1 12182:1 12274:1 12282:1 12294:1 12299:1 12302:1 12306:2 12334:2 12424:1 12426:2 12501:1 12538:1 12574:1 12577:1 12594:1 12626:2 12634:1 12643:2 12647:1 12678:1 12683:1 12708:1 12755:1 12822:1 12848:1 12854:1 12886:1 13023:1 13038:1 13054:1 13060:1 13063:1 13074:1 13094:2 13097:1 13103:1 13111:3 13133:1 13232:1 13233:1 13243:3 13248:1 13298:1 13317:1 13321:1 13332:1 13368:3 13378:1 13404:1 13487:1 13505:1 13596:2 13618:2 13645:1 13656:1 13660:1 13706:1 13723:1 13725:1 13743:1 13744:1 13749:1 13813:1 13842:1 13897:1 14010:1 14080:1 14083:1 14119:11 14135:1 14151:1 14173:2 14222:1 14259:1 14276:1 14301:1 14304:1 14362:1 14365:1 14392:1 14443:1 14455:2 14458:2 14486:2 14492:1 14512:1 14608:1 14670:1 14692:1 14700:1 14702:2 14710:1 14732:1 14756:1 14783:1 14784:1 14904:1 14919:1 14943:1 14951:1 14983:1 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15367:3 15369:1 15373:1 15395:1 15448:3 15454:1 15525:1 15552:1 15584:1 15592:1 15618:579 15634:1 15666:1 15691:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15920:1 15934:1 16013:1 16018:1 16088:1 16090:1 16165:1 16171:1 16182:1 16205:1 16233:1 16236:1 16245:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16368:1 16385:1 16420:1 16478:1 16493:1 16536:1 16567:2 16591:1 16624:2 16723:1 16845:1 16885:2 16929:1 16943:1 16973:5 16987:2 17062:2 17069:1 17105:1 17127:1 17207:2 17210:1 17303:1 17435:2 17458:1 17496:1 17521:1 17524:1 17537:2 17540:1 17543:1 17549:3 17552:1 17558:1 17614:1 17674:1 17706:1 17710:1 17735:1 17750:1 17820:1 17895:1 17904:1 17908:1 17920:1 17958:1 18005:1 18020:1 18050:1 18081:1 18133:2 18149:2 18157:1 18161:1 18173:1 18191:1 18203:1 18211:1 18228:1 18229:1 18267:1 18274:1 18301:1 18324:1 18333:1 18340:1 18421:1 18478:1 18491:5 18493:2 18498:1 18518:1 18527:1 18531:1 18532:1 18546:1 18563:1 18598:1 18623:1 18637:1 18647:1 18678:1 18693:1 18698:2 18714:1 18719:1 18742:1 18789:1 18796:1 18807:1 18831:1 18837:3 18847:1 18865:1 18874:2 18896:1 18919:1 18959:2 18981:2 19001:1 19038:1 19047:1 19049:1 19063:1 19074:1 19081:1 19158:1 19200:1 19234:2 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19468:1 19549:1 19562:1 19638:2 19647:1 19648:1 19674:1 19703:1 19726:2 19738:2 19756:1 19757:1 19768:1 19807:4 19845:1 19848:2 19907:1 19930:1 19983:1 20025:1 20113:1 20166:1 20170:1 20194:1 20198:1 20217:1 20266:1 20267:1 20321:1 20329:2 20359:1 20366:1 20409:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:2 20619:1 20620:1 20661:1 20663:1 20665:1 20700:1 20804:1 20833:1 20982:1 20991:1 21002:1 21037:1 21058:3 21059:2 21067:1 21093:1 21104:1 21167:1 21229:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21681:1 21699:1 21705:1 21767:1 21798:1 21871:1 21910:1 21912:1 21967:2 22026:2 22043:1 22057:1 22074:1 22089:3 22131:1 22133:1 22163:1 22173:1 22179:1 22187:1 22235:1 22286:1 22289:1 22291:1 22337:1 22433:1 22441:1 22481:1 22499:1 22513:1 22591:1 22635:1 22645:1 22664:1 22719:1 22744:1 22789:1 22796:1 22840:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23084:1 23086:1 23087:2 23097:1 23099:1 23121:1 23144:5 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23265:1 23272:1 23325:1 23330:2 23397:1 23425:1 23437:1 23438:2 23499:1 23559:1 23569:1 23595:2 23606:1 23621:1 23626:1 23644:6 23651:1 23655:2 23670:1 23671:4 23676:1 23713:1 23738:2 23745:1 23753:1 23772:2 23793:1 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:2 23960:1 24018:2 24074:1 24079:1 24098:1 24213:1 24215:1 24248:1 24339:1 24356:1 24372:1 24380:2 24399:1 24400:1 24427:1 24467:1 24472:1 24485:2 24527:1 24586:1 24624:1 24627:2 24654:1 24656:1 24658:1 24660:1 24695:1
19 32:1 43:1 79:1 118:1 163:1 183:1 184:1 198:1 225:1 298:1 340:2 456:1 474:1 482:4 501:1 517:1 555:1 611:1 658:1 666:1 674:1 685:1 688:2 690:2 692:3 699:2 700:1 703:1 731:1 735:1 751:2 766:2 767:1 806:3 808:1 850:1 903:1 969:1 1011:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:1 1203:2 1209:1 1231:1 1266:1 1276:1 1318:1 1354:3 1444:1 1460:1 1461:1 1462:1 1515:1 1530:1 1551:1 1624:1 1644:1 1669:1 1715:1 1734:1 1737:1 1745:1 1751:2 1785:1 1794:3 1810:1 1851:1 1863:1 1872:1 1885:1 1893:1 1909:2 1910:1 1921:1 1982:1 1986:1 1997:2 2005:1 2016:1 2078:1 2083:1 2113:1 2122:1 2151:1 2270:1 2276:1 2303:3 2324:1 2391:2 2403:1 2414:1 2420:6 2430:3 2486:2 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2658:1 2675:1 2702:2 2722:1 2738:2 2769:1 2784:1 2785:3 2823:1 2833:1 2912:1 2914:1 2925:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3099:1 3106:1 3141:3 3185:1 3208:1 3226:2 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3444:3 3450:1 3522:1 3527:1 3531:2 3665:1 3689:1 3697:1 3711:1 3767:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3934:1 3964:1 3969:1 4018:1 4021:1 4041:1 4048:2 4092:2 4093:1 4137:1 4189:1 4193:1 4194:2 4210:3 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:1 4243:1 4244:1 4281:1 4285:1 4291:1 4327:1 4350:1 4387:1 4407:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:1 4696:1 4712:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:1 4979:1 5015:1 5017:2 5019:5 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5122:1 5125:1 5134:1 5195:1 5215:1 5223:3 5245:1 5274:1 5282:1 5308:1 5312:3 5313:1 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5440:1 5442:1 5536:1 5546:2 5562:1 5569:1 5649:1 5659:1 5678:3 5682:2 5711:1 5768:1 5779:1 5786:1 5796:2 5907:1 6000:5 6002:1 6047:1 6054:1 6245:1 6264:3 6279:1 6298:1 6299:1 6331:1 6354:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:2 6463:1 6482:1 6485:3 6522:5 6536:1 6541:6 6542:2 6546:1 6576:1 6591:1 6602:2 6603:1 6635:1 6644:1 6732:1 6859:1 6861:1 6871:1 6911:1 6931:1 6953:6 6974:1 6982:1 7069:2 7094:1 7099:1 7106:1 7114:2 7133:1 7139:1 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:1 7235:2 7245:2 7260:1 7300:1 7317:2 7388:1 7435:1 7442:1 7471:1 7514:1 7532:1 7615:1 7636:1 7639:1 7642:1 7652:4 7713:1 7731:1 7788:1 7798:3 7804:1 7831:1 7875:2 7912:1 7926:1 7943:2 7996:1 8078:1 8094:1 8114:1 8123:1 8171:3 8172:16 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8328:1 8363:1 8461:1 8476:1 8487:2 8516:2 8547:1 8556:1 8628:1 8682:1 8704:1 8732:1 8772:1 8808:1 8823:1 8907:1 8909:1 8920:1 8924:1 8943:3 8993:1 8997:1 9002:1 9053:1 9077:1 9079:3 9089:1 9103:1 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9260:1 9289:1 9301:3 9306:1 9331:1 9335:1 9336:1 9353:1 9375:1 9384:1 9400:1 9448:1 9456:1 9464:1 9475:1 9495:1 9504:1 9518:1 9544:1 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9627:1 9667:1 9673:1 9685:1 9694:2 9711:1 9731:1 9738:1 9749:1 9757:1 9786:1 9797:1 9819:1 9825:1 9843:1 9845:1 9867:1 9869:1 9894:1 9935:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 10005:1 10019:1 10071:2 10125:1 10147:1 10161:1 10223:1 10229:1 10275:1 10290:1 10329:1 10383:1 10521:1 10530:1 10537:1 10576:1 10587:1 10614:1 10620:1 10737:4 10752:1 10771:3 10776:1 10778:1 10791:1 10814:1 10824:1 10829:1 10837:1 10844:1 10854:1 10871:1 10945:1 10964:1 10983:1 10998:1 11010:1 11046:1 11073:1 11074:1 11078:2 11099:2 11124:2 11136:1 11142:4 11173:1 11189:1 11204:1 11213:1 11214:1 11222:2 11236:1 11245:2 11269:1 11282:1 11284:1 11327:1 11330:1 11374:1 11380:1 11396:1 11411:1 11413:2 11448:1 11449:1 11453:1 11513:1 11520:1 11524:1 11561:1 11593:1 11597:1 11627:1 11652:1 11660:1 11701:1 11773:1 11861:1 11865:1 11896:1 11899:1 11905:3 11942:1 12080:1 12125:1 12136:1 12147:1 12158:1 12182:1 12274:1 12282:1 12294:1 12299:1 12302:1 12306:2 12334:2 12424:1 12426:2 12457:1 12501:1 12538:1 12574:1 12577:1 12578:1 12594:1 12626:2 12634:1 12643:3 12647:1 12678:1 12683:1 12708:1 12755:1 12822:1 12848:1 12854:1 12886:1 13023:1 13038:1 13054:1 13060:1 13062:1 13063:1 13074:1 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13232:1 13233:1 13243:3 13248:1 13298:1 13317:1 13321:1 13332:1 13368:3 13378:1 13404:1 13453:1 13487:1 13505:1 13515:1 13596:2 13618:2 13645:1 13656:1 13660:1 13706:1 13723:1 13725:1 13743:1 13744:1 13749:1 13757:1 13813:1 13842:1 13897:1 14010:1 14080:1 14082:1 14083:1 14087:1 14119:11 14135:1 14151:1 14173:2 14222:1 14259:1 14276:1 14301:1 14304:1 14362:1 14365:1 14392:1 14443:1 14455:2 14458:2 14486:2 14492:1 14512:1 14608:1 14670:1 14692:1 14700:1 14702:2 14710:1 14732:1 14756:1 14783:1 14784:1 14896:1 14904:1 14919:1 14943:1 14951:1 14983:1 15054:1 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15367:3 15369:1 15373:1 15395:1 15448:3 15454:1 15525:1 15552:1 15584:1 15592:1 15618:635 15634:1 15666:1 15691:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15920:1 15934:1 16013:1 16018:1 16088:1 16090:1 16098:1 16165:1 16171:1 16182:1 16205:1 16233:1 16236:1 16245:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16368:1 16385:1 16420:1 16478:1 16493:1 16536:1 16567:2 16591:1 16624:2 16723:1 16837:1 16845:1 16855:1 16885:2 16929:1 16943:1 16957:1 16973:5 16987:2 17062:2 17069:1 17105:1 17127:1 17207:2 17210:1 17247:1 17303:1 17381:1 17435:2 17458:1 17472:1 17496:1 17521:1 17524:1 17537:2 17540:1 17543:1 17549:3 17552:1 17558:1 17614:1 17657:1 17674:1 17706:1 17710:1 17735:1 17750:1 17820:1 17826:1 17895:1 17904:1 17908:1 17920:1 17958:1 18005:1 18020:1 18050:1 18081:1 18099:1 18118:1 18133:2 18149:2 18157:1 18161:1 18173:1 18174:1 18191:2 18198:1 18203:1 18211:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:1 18421:1 18478:1 18490:1 18491:5 18493:2 18498:1 18518:1 18527:1 18529:1 18531:1 18532:1 18546:1 18563:1 18598:1 18614:1 18621:1 18623:1 18637:1 18647:1 18651:1 18678:1 18693:1 18698:2 18714:1 18719:1 18742:1 18789:1 18796:1 18807:1 18813:1 18831:1 18837:3 18847:1 18865:1 18874:2 18896:1 18919:1 18959:3 18970:2 18981:2 18985:1 18986:1 19001:1 19038:1 19047:1 19049:1 19063:1 19074:1 19081:1 19158:1 19200:1 19234:2 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:1 19468:1 19503:1 19549:1 19562:1 19638:2 19647:1 19648:1 19674:1 19686:1 19703:1 19726:2 19738:2 19756:1 19757:1 19768:1 19807:4 19836:1 19845:1 19848:2 19872:1 19907:1 19930:1 19983:1 20025:1 20113:1 20141:1 20166:1 20170:1 20194:1 20198:1 20217:1 20266:1 20267:1 20321:1 20329:2 20359:2 20366:1 20409:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:3 20619:1 20620:1 20661:1 20663:1 20665:1 20700:1 20713:1 20804:1 20833:1 20982:1 20991:1 21002:2 21037:1 21058:3 21059:2 21067:1 21093:1 21104:1 21160:1 21167:1 21229:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21681:1 21699:1 21705:1 21767:1 21798:1 21871:1 21910:1 21912:1 21967:2 22026:2 22043:1 22057:1 22074:1 22089:3 22131:1 22133:1 22163:1 22173:1 22179:1 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22337:1 22373:1 22433:1 22441:2 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22719:1 22744:1 22789:1 22796:1 22840:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23084:1 23086:1 23087:2 23097:1 23099:1 23121:1 23123:1 23144:5 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23265:1 23272:1 23325:1 23330:2 23397:1 23425:1 23437:1 23438:2 23499:1 23516:1 23559:1 23569:1 23595:2 23596:1 23606:1 23621:1 23626:1 23644:7 23651:1 23655:2 23670:1 23671:4 23676:1 23713:1 23717:1 23738:2 23745:1 23753:1 23772:3 23793:2 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:2 23938:1 23954:1 23960:1 24018:2 24074:1 24079:1 24098:1 24213:2 24215:1 24248:1 24339:1 24342:1 24356:2 24372:1 24380:2 24399:1 24400:1 24427:1 24467:1 24472:1 24485:2 24527:1 24558:1 24586:1 24624:1 24627:2 24654:1 24656:1 24658:1 24660:1 24695:1
19 32:1 43:1 79:1 118:1 163:1 183:1 184:1 198:1 225:1 235:1 298:1 340:2 456:1 474:1 482:4 484:1 501:1 517:1 555:1 611:1 658:1 666:2 674:1 685:1 688:2 690:2 692:3 699:2 700:1 703:1 731:1 735:2 751:2 766:2 767:1 806:3 808:1 850:1 903:1 969:1 1004:1 1011:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:1 1203:2 1209:1 1231:1 1266:1 1276:1 1318:1 1331:1 1354:3 1444:1 1460:1 1461:1 1462:2 1515:1 1530:1 1551:1 1568:1 1624:1 1644:1 1669:1 1715:1 1734:1 1737:2 1745:1 1751:2 1785:1 1794:3 1810:1 1851:1 1863:1 1872:1 1885:1 1893:2 1909:2 1910:1 1921:1 1982:1 1986:1 1997:2 2005:1 2016:1 2078:1 2083:1 2113:1 2122:1 2151:1 2270:1 2276:1 2303:4 2324:1 2391:2 2403:1 2414:1 2420:7 2430:4 2486:2 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2658:1 2675:1 2702:2 2722:1 2738:2 2769:1 2784:1 2785:3 2823:1 2829:1 2833:2 2912:1 2913:1 2914:1 2925:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3091:1 3099:1 3106:1 3134:1 3141:3 3185:1 3208:1 3226:2 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3444:3 3450:1 3489:1 3522:1 3527:1 3531:2 3665:1 3689:1 3697:1 3711:1 3767:1 3793:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3934:1 3964:1 3969:1 3982:1 4013:1 4018:1 4021:1 4041:1 4048:2 4091:1 4092:2 4093:1 4137:1 4189:1 4193:1 4194:2 4210:3 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:1 4243:1 4244:1 4281:1 4285:1 4291:1 4327:1 4350:1 4387:1 4407:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4695:2 4696:1 4712:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:1 4971:1 4979:1 5015:1 5017:2 5019:5 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5122:1 5125:1 5134:1 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5308:1 5312:3 5313:1 5318:1 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5440:1 5442:1 5536:1 5546:2 5562:1 5569:1 5599:1 5641:1 5649:1 5659:1 5678:3 5682:2 5711:2 5768:1 5779:1 5786:1 5796:2 5907:1 6000:5 6002:1 6047:1 6054:1 6245:1 6264:3 6279:2 6295:1 6298:1 6299:1 6322:1 6331:1 6354:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:2 6463:1 6482:1 6485:3 6522:6 6536:1 6541:7 6542:2 6546:1 6576:1 6591:1 6602:2 6603:1 6635:1 6644:1 6732:1 6859:1 6861:1 6871:1 6884:1 6911:1 6931:1 6953:8 6974:1 6982:1 7069:2 7094:1 7099:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:1 7235:2 7245:2 7248:1 7260:1 7300:1 7317:2 7388:1 7435:1 7442:1 7471:1 7514:1 7532:1 7615:1 7636:1 7639:1 7642:1 7652:4 7713:1 7731:1 7788:1 7798:4 7804:1 7831:1 7875:2 7891:1 7912:1 7926:1 7943:2 7996:1 8078:1 8094:1 8114:1 8123:1 8171:4 8172:18 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8328:1 8363:1 8461:1 8476:1 8487:2 8516:2 8547:1 8556:1 8628:1 8682:1 8704:1 8716:1 8732:1 8772:1 8808:1 8823:1 8907:1 8909:1 8920:1 8924:1 8943:3 8993:2 8997:1 9002:1 9053:1 9077:2 9079:4 9089:1 9103:1 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:1 9289:1 9301:3 9306:1 9331:1 9335:1 9336:1 9353:1 9375:1 9384:1 9400:1 9428:1 9448:1 9456:1 9464:1 9475:1 9495:1 9504:1 9518:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9627:1 9667:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:1 9738:1 9749:1 9757:1 9786:1 9797:1 9819:1 9825:1 9843:1 9845:1 9867:1 9869:1 9894:1 9935:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10161:1 10223:1 10229:1 10275:1 10290:1 10329:1 10383:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:1 10620:1 10737:5 10752:1 10771:3 10776:1 10778:1 10791:1 10801:1 10814:1 10824:1 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10891:1 10945:1 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:1 11078:2 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11189:1 11199:1 11204:1 11213:1 11214:2 11222:2 11236:1 11245:2 11269:1 11282:1 11284:1 11327:1 11330:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:1 11449:1 11453:1 11503:1 11513:1 11520:1 11524:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 12080:1 12125:1 12136:1 12147:1 12158:1 12182:1 12274:1 12280:1 12282:1 12294:1 12299:1 12302:1 12306:2 12334:2 12424:1 12426:2 12457:1 12479:1 12501:1 12538:1 12574:1 12577:1 12578:1 12594:1 12626:2 12634:1 12643:3 12647:1 12678:1 12683:2 12708:1 12755:1 12822:1 12848:1 12854:1 12886:1 12968:1 13023:1 13038:1 13054:1 13060:1 13062:1 13063:1 13074:1 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13232:1 13233:1 13243:3 13248:1 13298:1 13317:1 13321:1 13332:1 13368:3 13378:1 13404:1 13453:1 13487:1 13505:1 13515:1 13596:2 13618:2 13645:1 13656:1 13660:1 13668:1 13706:1 13723:1 13725:1 13728:1 13731:1 13743:1 13744:1 13749:1 13757:1 13813:1 13842:1 13897:1 13978:1 14010:1 14080:1 14082:1 14083:1 14087:1 14119:11 14135:1 14151:1 14173:2 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14362:1 14365:1 14392:1 14443:1 14455:2 14458:2 14486:2 14492:1 14512:1 14608:1 14670:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:1 14896:1 14904:1 14919:1 14943:1 14951:1 14983:1 15054:1 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15318:1 15367:3 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15525:1 15552:1 15584:1 15592:1 15595:1 15618:713 15634:1 15666:1 15691:1 15738:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15920:1 15934:1 16013:1 16018:1 16088:1 16090:1 16098:1 16165:1 16171:1 16172:1 16182:1 16205:1 16233:1 16236:1 16245:1 16257:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:1 16385:2 16420:1 16478:1 16493:1 16536:1 16567:2 16585:1 16591:1 16608:1 16624:2 16710:1 16723:1 16837:1 16845:1 16855:1 16856:1 16885:3 16929:1 16943:2 16957:1 16973:5 16987:2 17029:1 17062:2 17069:1 17080:1 17105:1 17127:1 17207:2 17210:1 17247:1 17303:1 17381:1 17435:2 17458:1 17472:1 17496:1 17521:1 17524:1 17537:2 17540:1 17543:1 17549:3 17552:1 17558:1 17610:1 17614:1 17657:2 17674:1 17706:2 17710:1 17735:1 17750:1 17820:1 17826:1 17895:1 17904:1 17908:1 17920:1 17958:1 18005:1 18020:1 18050:1 18081:1 18094:1 18099:1 18118:1 18133:2 18149:2 18157:1 18161:1 18173:1 18174:1 18191:2 18198:1 18203:1 18211:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:1 18421:1 18478:1 18484:1 18490:1 18491:5 18493:2 18498:1 18518:1 18527:1 18529:1 18531:1 18532:1 18546:1 18563:1 18598:1 18614:1 18621:1 18623:1 18637:1 18647:1 18651:1 18678:1 18693:1 18698:2 18714:1 18719:1 18742:1 18789:1 18796:1 18807:1 18813:1 18831:1 18837:3 18847:1 18865:1 18874:2 18896:1 18919:1 18959:3 18970:2 18979:1 18981:2 18985:1 18986:1 19001:2 19038:1 19047:1 19049:1 19063:1 19074:1 19081:1 19084:1 19158:1 19200:1 19234:2 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:1 19468:1 19503:1 19548:1 19549:1 19562:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19738:2 19740:1 19748:1 19756:1 19757:1 19768:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19907:1 19930:1 19983:1 20025:1 20113:1 20141:1 20159:1 20166:1 20170:1 20194:1 20198:1 20217:1 20266:1 20267:1 20276:1 20321:1 20329:2 20332:1 20359:3 20366:1 20409:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:3 20619:1 20620:1 20633:1 20661:1 20663:1 20665:1 20674:1 20700:1 20713:1 20804:1 20833:1 20850:1 20861:1 20982:1 20991:1 21002:2 21037:1 21058:4 21059:2 21067:1 21093:1 21104:1 21160:1 21167:1 21229:2 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:1 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21681:1 21699:1 21705:1 21750:1 21767:1 21798:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22131:1 22133:1 22163:1 22173:1 22179:1 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22337:1 22373:1 22433:1 22441:2 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22744:1 22789:1 22796:1 22840:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23083:1 23084:1 23086:2 23087:2 23097:1 23099:1 23121:1 23123:2 23144:5 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23325:1 23330:2 23397:1 23425:1 23437:1 23438:2 23499:1 23516:1 23558:1 23559:1 23569:1 23595:2 23596:1 23606:1 23621:1 23626:1 23644:8 23651:1 23655:2 23670:1 23671:4 23676:2 23713:1 23717:1 23738:2 23745:1 23753:1 23772:3 23793:2 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23912:2 23938:1 23954:1 23960:1 24018:2 24074:1 24079:1 24098:1 24185:1 24213:2 24215:1 24248:1 24339:1 24342:1 24356:2 24372:1 24380:3 24399:1 24400:1 24427:1 24467:1 24472:1 24485:2 24527:1 24558:1 24586:1 24624:1 24627:2 24654:1 24656:1 24658:1 24660:1 24695:1
19 32:1 43:1 79:1 118:1 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 357:1 456:1 474:1 482:4 484:1 501:1 517:1 555:1 611:1 658:1 663:1 666:2 674:1 685:1 688:2 690:2 692:3 699:2 700:1 703:1 725:1 731:1 735:3 751:2 766:2 767:1 806:3 808:1 850:1 903:1 969:1 1004:1 1011:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:1 1203:2 1209:1 1231:1 1266:2 1276:1 1299:1 1318:1 1331:1 1354:3 1444:1 1460:1 1461:1 1462:2 1484:1 1515:1 1530:1 1551:1 1568:1 1624:1 1644:1 1669:1 1715:1 1734:1 1737:2 1745:1 1751:2 1785:1 1794:3 1810:1 1851:1 1863:1 1872:1 1885:1 1893:2 1898:1 1909:2 1910:1 1921:1 1982:1 1986:1 1997:2 2005:1 2016:1 2078:1 2083:1 2113:1 2122:1 2151:1 2270:1 2276:1 2303:4 2310:1 2315:1 2324:1 2391:2 2403:1 2414:1 2420:9 2430:4 2486:2 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2658:1 2675:1 2702:2 2722:1 2738:2 2769:1 2784:1 2785:3 2823:1 2829:1 2833:2 2912:1 2913:1 2914:1 2925:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3091:1 3099:1 3106:1 3134:1 3141:3 3185:1 3208:1 3226:2 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3406:1 3444:3 3450:1 3489:1 3522:1 3527:1 3531:2 3665:1 3670:2 3689:1 3697:1 3711:1 3767:1 3793:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3927:1 3934:1 3964:1 3969:1 3982:1 4013:1 4018:1 4021:1 4041:1 4048:2 4091:1 4092:3 4093:1 4137:1 4189:1 4193:1 4194:2 4210:3 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:1 4243:1 4244:1 4281:1 4285:1 4291:1 4297:1 4327:1 4350:1 4387:1 4407:1 4431:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4653:1 4695:2 4696:1 4712:1 4715:1 4736:1 4737:1 4755:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:1 4971:1 4979:1 5015:1 5017:2 5019:5 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5122:1 5125:1 5134:1 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5303:1 5308:2 5312:3 5313:1 5318:1 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5440:1 5442:1 5536:1 5546:2 5562:1 5569:1 5599:1 5641:1 5649:1 5659:1 5661:1 5678:3 5682:2 5711:2 5768:1 5779:1 5786:1 5796:2 5823:1 5907:1 5928:1 5956:1 6000:6 6002:1 6047:1 6054:1 6245:1 6264:3 6279:2 6295:1 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:2 6463:1 6482:1 6485:3 6522:7 6536:1 6541:9 6542:2 6546:1 6576:1 6591:1 6602:2 6603:1 6635:1 6644:1 6732:1 6741:2 6859:1 6861:1 6871:2 6884:1 6911:1 6931:1 6949:1 6953:8 6974:1 6982:1 7069:2 7094:1 7099:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:1 7235:2 7236:1 7245:2 7248:1 7260:1 7269:1 7300:1 7317:2 7335:1 7388:1 7435:1 7442:1 7471:1 7490:1 7514:1 7532:1 7615:1 7636:1 7639:1 7642:1 7652:4 7685:1 7713:1 7731:1 7788:1 7798:4 7804:1 7831:1 7875:2 7882:1 7891:1 7912:1 7926:1 7943:2 7962:1 7996:1 8078:1 8094:1 8114:1 8123:1 8171:4 8172:18 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8328:1 8363:1 8461:1 8476:1 8487:2 8516:2 8547:1 8556:1 8628:1 8682:1 8704:1 8716:1 8732:1 8735:1 8772:1 8808:1 8823:1 8907:1 8909:1 8920:1 8924:1 8943:3 8993:2 8997:1 9002:1 9053:1 9077:2 9079:4 9089:1 9103:1 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:1 9289:1 9301:3 9306:1 9331:1 9335:1 9336:1 9346:1 9353:1 9375:1 9384:1 9400:1 9428:1 9448:1 9456:1 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9627:1 9634:1 9667:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:1 9738:1 9749:1 9750:1 9757:1 9786:1 9797:1 9819:1 9825:1 9843:2 9845:1 9867:1 9869:1 9880:1 9894:1 9935:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10161:1 10166:1 10189:1 10223:1 10229:1 10275:1 10290:1 10329:1 10383:1 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:1 10620:1 10737:5 10751:1 10752:1 10771:3 10776:1 10778:2 10791:1 10801:1 10814:1 10824:2 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10891:1 10945:1 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:1 11078:2 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11189:1 11199:1 11204:1 11213:1 11214:2 11220:1 11222:2 11236:1 11245:2 11269:1 11282:2 11284:1 11308:1 11327:1 11330:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:1 11449:1 11453:1 11503:1 11513:1 11520:1 11524:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 12080:1 12125:1 12136:1 12147:1 12158:1 12182:1 12274:1 12277:1 12280:1 12282:1 12287:1 12294:1 12299:1 12302:1 12306:2 12334:2 12355:1 12382:1 12424:1 12426:2 12457:1 12479:1 12501:1 12538:1 12574:1 12577:1 12578:1 12594:1 12626:2 12634:1 12643:3 12647:1 12678:1 12683:2 12701:1 12708:1 12755:1 12822:1 12848:1 12854:1 12886:1 12968:1 13023:1 13038:1 13054:1 13060:1 13062:1 13063:1 13074:1 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13232:1 13233:1 13243:3 13248:1 13298:1 13317:1 13321:1 13332:1 13368:3 13378:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13645:1 13656:1 13660:1 13668:1 13706:2 13723:1 13725:1 13728:1 13731:1 13743:1 13744:1 13749:1 13757:1 13813:1 13842:1 13897:1 13978:1 14010:1 14080:1 14082:1 14083:1 14087:1 14119:11 14135:1 14151:1 14173:2 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14362:1 14365:1 14392:1 14407:3 14443:1 14455:2 14458:2 14486:2 14492:1 14502:1 14512:1 14608:1 14670:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:1 14904:1 14919:1 14943:1 14951:1 14983:1 15032:1 15054:3 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15318:1 15367:3 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:778 15634:1 15666:1 15691:1 15738:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15920:1 15934:1 15948:1 16013:1 16018:1 16088:1 16090:1 16098:1 16165:1 16171:1 16172:1 16182:1 16205:1 16233:1 16236:1 16245:1 16257:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:1 16385:3 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:2 16585:1 16591:1 16608:1 16624:2 16710:1 16723:1 16804:1 16837:1 16845:1 16855:1 16856:1 16885:3 16929:1 16943:3 16957:1 16973:5 16987:2 17029:1 17062:2 17067:1 17069:1 17080:1 17105:1 17127:1 17207:2 17210:1 17247:1 17258:2 17303:1 17381:1 17435:2 17458:1 17472:1 17496:1 17521:1 17524:1 17533:1 17537:2 17540:1 17543:1 17549:3 17552:1 17558:1 17610:1 17614:1 17636:1 17657:2 17674:1 17706:2 17710:1 17735:1 17750:1 17820:1 17826:2 17895:1 17904:1 17908:1 17920:1 17958:1 17963:1 18005:1 18020:1 18050:1 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:1 18161:1 18173:1 18174:1 18191:2 18198:1 18203:1 18211:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:1 18421:1 18423:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:2 18496:1 18498:1 18518:1 18527:1 18529:1 18531:1 18532:1 18546:1 18563:1 18598:1 18614:1 18621:1 18623:1 18637:2 18647:1 18651:1 18678:1 18693:1 18698:2 18714:1 18719:1 18742:1 18774:2 18775:1 18789:1 18796:1 18807:1 18813:1 18831:1 18837:3 18847:1 18865:1 18874:2 18881:1 18896:1 18919:1 18959:4 18970:2 18979:1 18981:2 18985:1 18986:1 19001:2 19038:1 19047:1 19049:1 19057:1 19063:1 19074:1 19081:1 19084:1 19158:1 19200:1 19234:2 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:1 19468:1 19503:1 19548:1 19549:1 19562:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19738:2 19740:1 19748:1 19756:1 19757:1 19768:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19907:1 19930:1 19983:1 20025:1 20113:1 20141:1 20159:1 20166:1 20168:1 20170:1 20194:1 20198:1 20217:1 20266:1 20267:1 20276:1 20321:1 20329:3 20332:1 20359:3 20366:1 20409:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20583:1 20598:1 20613:3 20619:1 20620:1 20633:1 20661:1 20663:1 20665:1 20674:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20850:1 20861:1 20889:1 20941:1 20982:1 20991:1 21002:2 21037:1 21058:4 21059:2 21067:1 21093:1 21104:1 21160:1 21167:1 21229:2 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:2 21433:1 21464:3 21470:1 21495:3 21496:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21669:1 21681:1 21699:2 21705:1 21750:1 21767:1 21798:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22131:1 22133:1 22163:1 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22337:1 22373:1 22433:1 22441:2 22462:1 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22744:1 22789:1 22796:1 22840:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23083:1 23084:1 23086:2 23087:2 23097:1 23099:1 23121:1 23123:2 23144:5 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23290:1 23325:1 23330:2 23397:1 23425:1 23437:1 23438:2 23499:1 23516:1 23558:1 23559:1 23569:1 23595:2 23596:1 23606:1 23621:1 23626:1 23644:9 23651:1 23655:2 23670:1 23671:4 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23772:3 23793:2 23799:1 23803:2 23804:1 23847:1 23849:2 23865:1 23884:1 23912:2 23938:1 23954:1 23960:1 24018:3 24074:1 24079:1 24098:1 24185:1 24213:2 24215:1 24248:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:1 24400:1 24427:1 24438:1 24467:1 24472:1 24485:2 24527:1 24558:1 24586:1 24624:1 24627:2 24636:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1
19 32:1 43:1 79:1 94:1 118:1 132:1 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 357:1 456:1 474:1 482:4 484:1 501:1 517:1 555:1 611:1 658:1 663:1 666:2 674:1 685:1 688:2 690:2 692:3 699:2 700:1 703:1 725:1 731:1 735:3 751:2 753:1 766:2 767:1 806:3 808:1 850:1 903:1 969:2 1004:1 1011:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:1 1231:1 1266:2 1276:1 1299:1 1318:1 1331:1 1354:3 1444:1 1460:1 1461:1 1462:2 1484:1 1515:1 1530:1 1551:1 1568:1 1624:1 1644:1 1669:1 1715:1 1734:1 1737:2 1745:1 1751:2 1785:1 1794:3 1810:1 1838:1 1851:1 1863:1 1872:1 1885:1 1893:2 1898:1 1909:2 1910:2 1921:1 1982:1 1986:1 1997:2 2005:1 2016:1 2078:1 2083:1 2113:1 2122:1 2151:1 2156:1 2259:1 2270:1 2276:1 2286:1 2303:4 2310:1 2315:1 2324:1 2391:2 2403:2 2414:1 2420:9 2430:5 2486:3 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2658:1 2675:1 2702:2 2722:1 2738:2 2769:1 2784:1 2785:3 2823:1 2829:1 2833:2 2912:1 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3091:1 3092:1 3099:1 3106:1 3134:1 3141:3 3185:1 3208:1 3226:2 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3406:1 3444:3 3450:1 3489:1 3522:1 3527:1 3531:2 3665:2 3670:2 3689:1 3697:1 3711:1 3767:1 3793:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3927:1 3934:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:2 4091:1 4092:5 4093:1 4137:1 4189:2 4193:1 4194:2 4210:3 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:1 4243:1 4244:1 4281:1 4285:1 4291:1 4297:1 4327:1 4350:1 4387:1 4407:1 4431:1 4499:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4653:1 4695:2 4696:1 4712:1 4715:1 4736:1 4737:1 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:1 4971:1 4979:1 5015:1 5017:2 5019:6 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5121:1 5122:1 5125:1 5134:1 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5301:1 5303:1 5308:2 5312:3 5313:1 5318:1 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5440:1 5442:1 5536:1 5546:3 5562:1 5569:1 5599:1 5641:1 5649:1 5659:1 5661:1 5678:3 5682:2 5711:2 5768:1 5779:1 5786:1 5796:2 5823:1 5907:1 5928:1 5956:1 6000:6 6002:1 6047:1 6054:1 6114:1 6245:1 6264:3 6279:2 6295:1 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:1 6407:1 6416:1 6446:1 6462:2 6463:1 6482:1 6485:3 6488:1 6522:8 6536:1 6541:10 6542:3 6546:1 6576:1 6591:1 6602:2 6603:1 6635:1 6644:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6884:1 6911:1 6931:1 6949:1 6953:8 6974:1 6982:2 7069:2 7094:1 7099:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:1 7235:2 7236:1 7245:3 7248:1 7260:1 7269:1 7300:1 7317:2 7335:1 7388:2 7435:1 7442:1 7471:1 7490:1 7508:1 7514:1 7532:1 7579:1 7615:1 7636:1 7639:1 7642:1 7652:4 7685:1 7713:1 7731:1 7788:1 7798:4 7804:1 7831:1 7875:2 7882:1 7891:1 7912:1 7926:1 7943:2 7962:1 7996:1 8078:1 8094:1 8114:1 8123:1 8171:5 8172:23 8181:1 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8322:1 8328:1 8363:1 8461:1 8476:1 8487:2 8516:2 8547:1 8556:1 8578:1 8628:1 8682:1 8704:1 8716:1 8732:1 8735:2 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8920:1 8924:1 8943:3 8993:2 8997:1 9002:1 9053:1 9077:2 9079:4 9089:1 9103:1 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:1 9289:1 9301:3 9306:1 9331:1 9335:1 9336:1 9346:1 9353:1 9375:1 9384:1 9400:1 9428:1 9448:1 9456:1 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9627:1 9634:1 9667:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:1 9738:1 9749:1 9750:1 9757:1 9786:1 9797:1 9819:1 9825:1 9843:3 9845:1 9867:1 9869:1 9880:1 9894:1 9898:1 9903:1 9910:1 9935:1 9948:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10161:1 10166:1 10189:1 10223:1 10229:1 10275:1 10290:1 10316:1 10329:1 10383:2 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:1 10620:1 10737:5 10751:1 10752:1 10771:3 10776:1 10778:2 10791:1 10801:1 10814:1 10824:2 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10945:1 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:1 11078:2 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11186:1 11189:1 11199:1 11204:1 11213:1 11214:2 11220:1 11222:2 11236:1 11245:2 11269:1 11282:2 11284:1 11308:1 11327:1 11330:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:1 11449:1 11453:1 11476:1 11503:1 11513:1 11520:1 11524:1 11535:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 12080:1 12105:1 12125:1 12136:1 12147:1 12158:2 12182:1 12274:1 12277:1 12280:1 12282:1 12287:1 12294:1 12299:1 12302:1 12306:2 12334:2 12355:1 12378:1 12382:1 12424:1 12426:2 12457:1 12479:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:1 12626:2 12634:1 12643:3 12647:1 12678:1 12683:2 12701:1 12708:1 12755:1 12781:1 12822:1 12848:1 12854:1 12886:1 12968:1 13023:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13222:1 13232:1 13233:1 13243:3 13248:1 13264:1 13298:1 13317:1 13321:1 13332:1 13368:3 13378:1 13383:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13645:1 13656:1 13660:1 13668:1 13706:2 13723:1 13725:1 13728:1 13731:1 13743:1 13744:1 13749:1 13757:1 13813:1 13842:1 13897:2 13978:1 14010:1 14080:1 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14362:2 14365:1 14389:1 14392:1 14407:3 14443:1 14455:2 14458:2 14486:2 14492:1 14502:1 14512:1 14608:1 14670:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:1 14904:1 14919:1 14943:1 14951:1 14983:1 15032:1 15054:3 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15318:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:832 15634:1 15666:1 15691:1 15738:1 15741:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15920:1 15934:1 15948:1 16013:1 16018:1 16087:1 16088:1 16090:1 16098:1 16165:1 16171:1 16172:1 16182:1 16205:1 16233:1 16236:1 16245:1 16257:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:1 16385:3 16386:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16585:1 16591:1 16608:1 16624:2 16654:1 16657:1 16710:1 16723:1 16804:1 16828:1 16837:1 16845:1 16855:1 16856:1 16885:3 16902:1 16929:1 16943:3 16957:1 16973:5 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17105:1 17127:1 17141:1 17207:2 17210:1 17247:1 17258:2 17303:1 17381:1 17435:2 17458:1 17472:1 17496:1 17521:1 17524:1 17533:1 17537:2 17540:1 17543:1 17549:4 17552:1 17558:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17820:1 17826:2 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:1 18050:1 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:1 18173:1 18174:1 18191:2 18198:1 18203:1 18211:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:1 18421:1 18423:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:2 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:1 18546:1 18563:2 18598:1 18614:1 18621:1 18623:1 18637:2 18647:1 18651:1 18678:1 18693:1 18698:2 18714:1 18719:1 18742:1 18774:2 18775:1 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18837:3 18847:1 18865:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:5 18970:2 18979:1 18981:2 18985:1 18986:1 19001:2 19038:1 19047:1 19049:1 19057:1 19063:1 19074:1 19081:2 19084:1 19158:1 19200:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:1 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19738:2 19740:1 19748:1 19756:1 19757:1 19768:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19907:1 19930:1 19983:1 20025:1 20113:1 20141:1 20159:1 20166:1 20168:1 20170:1 20194:1 20198:1 20217:1 20266:1 20267:1 20276:1 20321:1 20329:3 20332:1 20359:3 20366:1 20409:1 20411:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:1 20574:1 20583:1 20598:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20850:1 20861:1 20889:1 20903:1 20941:1 20982:1 20991:1 21002:2 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21160:1 21167:1 21215:1 21229:3 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:2 21433:1 21464:4 21470:1 21495:3 21496:1 21505:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21669:1 21681:1 21699:2 21705:1 21720:1 21750:1 21767:1 21798:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22131:1 22133:1 22163:1 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22323:1 22332:1 22337:1 22373:1 22433:1 22441:2 22462:1 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22731:1 22744:1 22789:1 22796:1 22829:1 22840:1 22937:1 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23121:1 23123:2 23144:5 23148:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23290:1 23314:1 23325:1 23330:2 23397:1 23425:1 23437:1 23438:2 23499:1 23516:1 23558:1 23559:2 23569:1 23595:2 23596:1 23606:1 23621:1 23626:1 23644:10 23651:1 23655:2 23670:1 23671:4 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23772:3 23793:2 23799:1 23803:2 23804:1 23829:1 23847:1 23849:2 23865:1 23884:1 23912:2 23938:1 23954:1 23960:1 24018:3 24074:1 24079:1 24086:1 24093:1 24098:1 24185:1 24213:2 24215:1 24248:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:1 24400:1 24427:1 24438:1 24467:1 24472:1 24485:2 24527:1 24558:1 24579:1 24586:1 24624:1 24627:2 24633:1 24636:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1
19 32:1 43:1 48:1 79:1 94:1 118:1 132:1 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 355:1 357:2 456:1 474:1 482:5 484:1 501:1 517:1 555:1 611:1 658:1 663:1 666:2 674:1 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 731:1 735:3 751:2 753:1 766:2 767:1 806:3 808:1 850:1 903:1 969:2 1004:1 1011:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:1 1231:1 1266:2 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1444:1 1450:1 1460:1 1461:1 1462:2 1484:1 1515:1 1530:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:1 1729:1 1734:1 1737:2 1745:1 1751:2 1785:1 1794:3 1810:1 1838:1 1851:1 1863:1 1872:1 1880:1 1885:2 1892:1 1893:2 1898:2 1909:2 1910:2 1921:1 1982:1 1986:1 1997:2 2005:1 2016:1 2078:1 2083:1 2112:1 2113:1 2122:1 2151:1 2156:1 2259:1 2270:1 2276:1 2286:1 2303:4 2310:2 2315:1 2324:1 2391:2 2403:2 2414:1 2420:10 2430:5 2486:3 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2658:1 2675:1 2702:2 2722:1 2738:2 2769:1 2784:1 2785:3 2823:1 2829:1 2833:2 2912:1 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3091:1 3092:1 3099:1 3106:1 3134:1 3141:3 3185:1 3208:1 3226:2 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3406:1 3444:3 3450:1 3489:1 3522:1 3527:1 3531:2 3622:2 3665:2 3670:2 3689:1 3697:1 3711:1 3767:1 3793:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:2 4091:1 4092:5 4093:1 4137:1 4189:2 4193:1 4194:3 4210:4 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:2 4243:1 4244:1 4281:1 4285:1 4291:1 4297:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4653:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:1 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:1 4971:1 4979:1 5015:1 5017:2 5019:6 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5121:2 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:1 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:1 5649:1 5659:1 5661:1 5678:3 5682:2 5711:2 5768:1 5779:1 5786:1 5796:2 5823:1 5887:1 5907:1 5916:1 5928:1 5956:1 6000:6 6002:1 6047:1 6054:1 6114:1 6245:1 6264:3 6279:2 6295:1 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:2 6463:1 6482:1 6485:3 6488:1 6522:12 6536:1 6541:11 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6644:1 6658:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6884:1 6911:1 6931:1 6949:1 6953:9 6974:1 6982:2 7058:1 7069:2 7094:1 7099:1 7102:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:2 7235:2 7236:1 7245:3 7248:1 7260:1 7269:1 7300:1 7317:2 7335:1 7388:2 7435:1 7442:1 7471:1 7490:1 7508:1 7514:1 7532:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:1 7652:4 7685:1 7702:1 7713:1 7731:1 7788:1 7798:4 7804:1 7831:1 7875:2 7882:1 7891:1 7912:1 7926:1 7943:2 7962:1 7996:1 8046:1 8070:1 8078:2 8094:1 8114:1 8123:1 8171:5 8172:23 8174:1 8181:1 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8322:1 8328:1 8363:1 8461:1 8476:1 8487:2 8516:2 8547:1 8556:1 8571:1 8578:2 8628:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:2 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:1 8920:1 8924:1 8943:4 8962:1 8993:2 8997:1 9002:1 9046:1 9053:1 9077:2 9079:4 9089:1 9103:2 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:1 9289:1 9301:3 9306:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:1 9400:1 9428:1 9448:1 9456:1 9463:1 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9627:1 9634:1 9652:1 9667:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:2 9738:2 9749:1 9750:1 9757:1 9786:1 9797:1 9819:1 9825:1 9843:3 9845:1 9867:1 9869:1 9880:1 9894:1 9898:1 9903:1 9910:1 9935:1 9948:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10158:1 10161:1 10166:1 10189:1 10223:1 10229:1 10275:1 10290:1 10316:1 10329:1 10383:2 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:1 10620:1 10737:5 10751:1 10752:1 10771:3 10776:1 10778:2 10791:1 10801:1 10814:1 10824:2 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10945:2 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:2 11078:2 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11186:1 11189:1 11199:1 11204:1 11213:1 11214:2 11220:1 11222:2 11236:1 11245:2 11269:1 11282:2 11284:1 11308:1 11327:2 11330:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:1 11449:1 11453:1 11476:1 11503:1 11513:1 11520:2 11524:1 11535:1 11545:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 12014:1 12080:1 12105:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12264:1 12274:1 12277:1 12280:1 12282:1 12287:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:1 12643:3 12647:1 12678:1 12683:2 12701:1 12708:1 12755:1 12781:1 12822:1 12837:1 12848:1 12854:1 12886:1 12968:1 13021:1 13023:1 13034:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13222:1 13232:1 13233:1 13243:4 13248:1 13264:1 13298:1 13317:1 13321:1 13332:1 13368:3 13378:1 13383:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13643:1 13645:1 13656:1 13660:1 13668:1 13706:2 13723:2 13725:1 13728:1 13731:1 13743:1 13744:1 13749:1 13757:1 13813:1 13842:1 13897:2 13978:1 14010:1 14048:1 14080:1 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14362:2 14365:1 14389:1 14392:1 14407:3 14443:1 14455:2 14458:2 14486:2 14492:1 14502:1 14512:1 14539:1 14551:1 14601:1 14608:1 14670:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:1 14904:1 14919:1 14943:1 14951:1 14981:1 14983:1 15032:1 15054:3 15066:1 15098:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:938 15634:1 15666:1 15691:1 15738:1 15741:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15861:1 15920:1 15934:1 15948:1 16013:1 16018:1 16087:1 16088:1 16090:1 16098:1 16165:1 16171:1 16172:1 16182:1 16205:1 16233:1 16234:1 16236:1 16245:1 16257:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:1 16385:3 16386:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:1 16585:1 16591:1 16608:1 16624:2 16654:1 16657:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:1 16837:1 16845:2 16855:1 16856:1 16885:4 16902:1 16929:1 16943:3 16957:1 16973:5 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17105:1 17127:1 17141:1 17207:2 17210:1 17247:1 17258:2 17303:1 17337:1 17381:1 17412:1 17435:2 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:2 17540:1 17543:1 17549:4 17552:1 17558:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17820:1 17826:2 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:1 18050:1 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:1 18173:1 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:1 18421:1 18423:1 18457:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:3 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:2 18546:1 18563:2 18598:1 18614:1 18621:1 18623:1 18637:2 18647:1 18651:2 18678:1 18693:1 18698:2 18711:1 18714:1 18719:1 18742:1 18774:2 18775:1 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18837:3 18847:1 18865:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:5 18970:2 18979:1 18981:2 18985:1 18986:2 19001:2 19038:1 19045:1 19047:1 19049:1 19057:1 19063:1 19074:1 19081:2 19084:1 19158:1 19200:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:2 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19738:2 19740:1 19748:1 19756:1 19757:1 19768:1 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19877:1 19907:1 19930:1 19983:1 20025:1 20113:1 20141:1 20159:1 20166:1 20168:1 20170:1 20180:1 20194:1 20198:1 20217:1 20266:1 20267:1 20276:1 20320:1 20321:1 20329:3 20332:1 20359:3 20366:1 20409:1 20411:1 20412:1 20430:1 20459:1 20468:1 20475:11 20512:2 20556:1 20568:1 20570:2 20574:1 20583:1 20598:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20850:1 20861:1 20889:1 20903:1 20941:1 20982:1 20991:1 20994:1 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21160:1 21167:1 21215:1 21229:3 21257:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:2 21433:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21669:1 21681:1 21699:2 21705:1 21720:1 21722:1 21750:1 21767:1 21798:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22301:1 22323:1 22332:1 22337:1 22347:2 22353:1 22373:1 22433:1 22441:2 22462:1 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22731:1 22744:1 22789:1 22796:1 22829:1 22840:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23067:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:5 23148:1 23158:1 23166:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23281:1 23290:1 23314:1 23325:1 23328:1 23330:2 23397:1 23425:1 23437:1 23438:2 23499:1 23516:1 23558:1 23559:2 23569:1 23595:2 23596:1 23606:1 23621:1 23626:1 23644:11 23651:1 23655:2 23670:1 23671:4 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23772:3 23793:2 23799:1 23803:2 23804:1 23829:1 23847:1 23849:2 23865:1 23884:1 23912:2 23938:1 23954:1 23960:1 23977:1 24018:4 24020:1 24074:1 24079:1 24086:1 24093:1 24098:1 24185:1 24213:2 24215:1 24248:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:1 24400:1 24427:1 24438:1 24467:1 24472:1 24485:2 24527:1 24558:1 24579:1 24586:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 43:1 48:1 79:1 94:1 118:1 132:1 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 355:1 357:2 456:1 474:1 482:6 484:1 501:1 517:1 555:1 611:1 612:1 658:1 663:1 666:2 674:1 683:1 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 731:1 735:3 751:2 753:1 766:2 767:1 806:3 808:1 850:1 903:1 922:1 947:1 969:2 1004:1 1011:1 1032:1 1039:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:1 1266:3 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:1 1484:1 1487:1 1515:1 1530:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:1 1729:1 1734:1 1737:2 1745:1 1751:2 1785:1 1794:3 1810:1 1838:1 1851:1 1863:1 1872:1 1880:1 1885:2 1892:1 1893:2 1898:2 1909:2 1910:2 1921:1 1982:1 1986:1 1997:3 2005:1 2016:1 2054:1 2078:1 2083:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:5 2310:2 2315:1 2324:1 2391:2 2403:2 2414:1 2420:12 2430:5 2486:3 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2784:1 2785:3 2823:1 2829:1 2833:2 2912:1 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3134:1 3141:3 3185:1 3208:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3406:1 3444:3 3450:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:2 3665:2 3670:2 3689:1 3697:1 3711:1 3767:1 3793:1 3796:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:2 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:2 4243:1 4244:1 4265:1 4281:1 4285:1 4291:1 4297:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:1 4550:1 4618:1 4628:3 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:1 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:1 4971:1 4979:1 4991:1 5015:2 5017:2 5019:8 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5114:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:1 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:1 5649:1 5659:1 5661:1 5678:3 5682:2 5711:2 5768:1 5779:1 5786:2 5796:2 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 6000:6 6002:1 6047:1 6054:1 6114:1 6245:1 6264:3 6279:2 6295:2 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:2 6463:1 6482:1 6485:3 6488:1 6507:1 6522:12 6536:1 6541:12 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6644:1 6658:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:10 6974:1 6982:2 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:3 7235:2 7236:1 7240:1 7245:3 7248:1 7260:1 7269:1 7290:1 7300:1 7317:2 7335:1 7388:2 7435:1 7442:1 7471:1 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:4 7685:1 7702:1 7713:1 7731:1 7788:1 7798:5 7804:1 7813:1 7831:1 7875:2 7882:1 7891:1 7912:1 7926:1 7943:2 7962:1 7996:1 8046:1 8070:1 8078:2 8094:1 8114:1 8123:1 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8216:1 8256:1 8266:3 8285:1 8322:1 8328:1 8363:1 8461:1 8476:1 8487:2 8505:1 8516:2 8547:1 8556:1 8571:1 8578:3 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:1 8920:1 8924:1 8943:4 8962:1 8993:2 8997:1 9002:1 9046:2 9053:1 9077:2 9079:4 9089:1 9103:2 9105:1 9107:1 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:3 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:1 9400:1 9428:1 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:2 9738:2 9749:1 9750:1 9757:1 9786:1 9797:1 9819:1 9825:1 9843:3 9845:1 9867:1 9869:1 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9935:1 9948:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10158:1 10161:1 10166:1 10189:1 10223:1 10229:1 10275:1 10290:1 10316:1 10329:1 10383:2 10428:1 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:1 10620:1 10629:1 10737:5 10751:1 10752:1 10771:3 10776:1 10778:2 10791:1 10801:1 10814:1 10824:2 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10945:2 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11186:1 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:2 11269:1 11282:2 11284:1 11301:1 11308:1 11327:2 11330:1 11342:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:1 11449:1 11453:1 11476:1 11503:1 11513:1 11520:2 11524:1 11535:1 11545:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 11969:1 12014:1 12080:1 12105:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12191:1 12264:1 12274:1 12277:1 12280:1 12282:1 12287:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:1 12643:3 12644:1 12647:1 12678:1 12683:2 12701:1 12708:1 12736:1 12755:1 12781:1 12822:1 12837:1 12848:1 12854:1 12886:1 12968:1 13021:1 13023:1 13034:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13222:1 13232:1 13233:1 13243:4 13248:1 13264:1 13298:1 13317:1 13321:1 13332:1 13366:1 13368:3 13378:1 13383:1 13390:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13643:1 13645:1 13656:1 13660:1 13668:1 13706:2 13723:2 13725:1 13728:1 13731:1 13743:2 13744:1 13749:1 13757:1 13813:1 13817:1 13842:1 13897:2 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14362:2 14365:1 14389:1 14392:1 14407:3 14443:1 14455:2 14458:2 14486:2 14492:1 14502:1 14512:1 14539:1 14551:1 14601:1 14608:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15032:1 15050:1 15054:3 15066:1 15098:1 15114:1 15136:2 15150:1 15194:1 15200:1 15223:1 15258:1 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:1005 15634:1 15666:1 15691:1 15703:1 15738:1 15741:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15861:1 15920:1 15934:1 15948:1 15998:1 16013:1 16018:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16205:2 16233:1 16234:1 16236:1 16245:1 16257:1 16267:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:2 16385:3 16386:1 16400:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:1 16585:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:1 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16957:1 16973:5 16980:1 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17105:1 17127:1 17141:1 17155:1 17207:2 17210:1 17247:1 17258:2 17303:1 17337:1 17381:1 17412:1 17435:2 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:2 17540:1 17543:1 17549:4 17552:1 17558:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17765:1 17766:1 17820:1 17826:2 17829:1 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:1 18173:1 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18421:1 18423:1 18457:1 18472:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:3 18494:1 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:2 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18647:1 18651:2 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18774:2 18775:2 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18834:1 18837:3 18847:1 18863:1 18865:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:6 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:1 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:2 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19877:1 19907:1 19930:1 19983:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20180:1 20194:1 20198:1 20217:1 20253:1 20266:1 20267:1 20276:1 20320:1 20321:1 20329:4 20332:1 20359:4 20366:1 20405:1 20409:1 20411:1 20412:1 20430:1 20459:1 20468:1 20475:11 20512:2 20554:1 20556:1 20568:1 20570:2 20574:1 20583:1 20598:1 20599:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:1 20695:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20850:1 20861:1 20889:1 20903:1 20941:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:4 21257:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:2 21433:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:1 21667:1 21669:2 21681:1 21699:2 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22301:1 22323:1 22332:1 22337:1 22347:2 22353:1 22373:1 22433:1 22441:2 22462:1 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22731:1 22744:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23067:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:5 23148:1 23158:1 23166:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23499:1 23516:2 23558:1 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23621:1 23626:1 23644:14 23651:1 23655:2 23670:1 23671:4 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23772:3 23793:2 23799:1 23803:2 23804:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23954:1 23960:1 23977:1 24018:4 24020:1 24074:1 24079:2 24086:1 24093:1 24095:1 24098:1 24185:1 24213:2 24215:1 24216:1 24248:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:1 24400:1 24410:1 24427:1 24438:1 24467:1 24472:2 24485:2 24527:1 24558:3 24579:1 24586:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 43:1 48:1 79:1 94:1 118:1 132:2 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 355:1 357:2 456:1 471:1 474:1 482:6 484:1 501:1 517:1 555:1 611:1 612:1 658:1 663:1 666:2 674:1 683:1 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 731:1 735:3 751:2 753:1 766:2 767:1 806:3 808:1 850:1 903:1 922:1 947:1 969:2 1004:1 1011:1 1032:1 1039:1 1084:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:1 1266:3 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:1 1484:1 1487:1 1515:1 1530:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:1 1729:1 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:3 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:1 1885:2 1892:1 1893:2 1898:2 1909:2 1910:2 1921:1 1982:1 1986:2 1997:3 2005:1 2016:1 2018:1 2054:1 2078:1 2083:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:5 2310:2 2315:1 2324:1 2354:1 2391:2 2403:2 2414:1 2420:12 2430:5 2486:3 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2784:1 2785:3 2823:1 2829:1 2833:2 2912:1 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3134:1 3141:4 3185:1 3208:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3364:1 3365:2 3406:1 3444:3 3450:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:2 3665:2 3670:2 3689:1 3697:1 3711:1 3767:1 3793:2 3796:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3893:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:2 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:2 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:1 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:1 4550:1 4618:1 4628:4 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:2 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:2 4971:1 4979:1 4985:1 4991:1 5015:2 5017:2 5019:9 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5114:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:1 5649:1 5659:1 5661:2 5678:3 5682:2 5711:2 5768:1 5779:1 5786:2 5796:2 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 5993:1 6000:7 6002:1 6047:1 6054:1 6114:1 6245:1 6264:3 6279:2 6295:2 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:3 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:12 6536:1 6541:12 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6644:1 6658:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:10 6974:1 6982:2 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:3 7235:2 7236:1 7240:1 7245:3 7248:1 7260:1 7269:1 7290:1 7300:1 7317:2 7335:1 7388:2 7435:1 7442:1 7471:1 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:4 7685:1 7702:1 7713:1 7731:1 7788:1 7798:5 7804:1 7813:1 7831:1 7875:2 7882:1 7891:1 7912:1 7926:1 7943:2 7962:1 7996:1 8046:1 8070:1 8078:2 8094:1 8114:1 8123:1 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8216:1 8256:2 8266:3 8285:1 8322:1 8328:1 8363:1 8461:1 8476:1 8487:3 8505:1 8516:2 8547:1 8556:1 8571:1 8578:3 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:1 8920:1 8924:1 8943:4 8962:1 8993:2 8997:1 9002:1 9046:2 9053:1 9077:2 9079:4 9089:1 9103:2 9105:1 9107:2 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:3 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:1 9388:1 9400:1 9428:1 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:2 9738:2 9749:1 9750:1 9757:1 9779:1 9786:1 9797:1 9819:1 9825:1 9843:5 9845:1 9867:1 9869:1 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:1 9948:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 9995:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10158:1 10161:1 10166:1 10189:1 10223:1 10229:1 10275:1 10290:1 10316:1 10329:1 10383:2 10428:1 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:1 10620:1 10629:1 10644:1 10737:5 10746:1 10751:1 10752:1 10771:4 10776:1 10778:2 10791:1 10801:1 10814:1 10824:2 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11186:1 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:2 11269:1 11282:2 11284:1 11301:1 11308:1 11327:2 11330:1 11342:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:2 11449:1 11453:1 11476:1 11503:1 11513:1 11520:2 11524:1 11535:1 11545:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 11969:1 12014:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12264:1 12274:1 12277:1 12280:1 12282:1 12287:1 12289:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:1 12678:1 12683:2 12701:1 12708:2 12736:1 12755:1 12781:1 12822:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13021:1 13023:1 13034:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13222:1 13232:1 13233:1 13243:4 13248:1 13264:1 13298:1 13317:1 13321:1 13332:1 13366:1 13368:3 13378:1 13383:1 13390:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13706:2 13723:2 13725:1 13728:1 13731:1 13743:2 13744:1 13749:1 13757:1 13813:1 13817:1 13842:1 13897:2 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14347:1 14362:2 14365:1 14389:1 14392:1 14407:3 14443:1 14455:2 14458:2 14479:1 14486:2 14492:1 14502:1 14512:1 14539:1 14551:1 14601:1 14608:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15032:1 15050:1 15054:3 15066:1 15098:1 15114:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15258:1 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15506:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:1085 15634:1 15666:1 15691:1 15703:1 15738:1 15741:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15861:1 15920:1 15934:1 15948:1 15998:1 16013:1 16018:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16205:2 16233:2 16234:1 16236:1 16245:1 16257:1 16267:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:2 16385:3 16386:1 16400:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:1 16585:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16697:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:1 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16957:1 16973:5 16980:1 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17105:1 17127:1 17141:1 17155:1 17207:2 17210:1 17247:1 17258:2 17303:1 17337:1 17381:1 17412:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:2 17540:1 17543:1 17549:4 17552:1 17558:1 17565:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17765:1 17766:1 17820:1 17826:2 17829:1 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:1 18173:1 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18421:1 18423:1 18457:1 18472:2 18473:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:3 18494:1 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:2 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18647:1 18651:2 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18774:2 18775:2 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18834:1 18837:4 18847:1 18863:1 18865:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:6 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:1 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:2 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19877:1 19907:2 19930:1 19983:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20180:1 20194:1 20198:1 20217:1 20253:1 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:4 20332:1 20359:4 20366:1 20405:1 20409:1 20411:1 20412:1 20430:1 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20556:1 20568:1 20570:2 20574:1 20583:1 20598:1 20599:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:2 20695:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20850:1 20861:1 20889:1 20903:1 20941:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:5 21257:1 21279:1 21280:1 21334:2 21335:3 21373:1 21396:1 21403:1 21427:2 21433:2 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22301:1 22323:1 22332:1 22337:1 22347:2 22353:1 22373:1 22433:1 22441:2 22462:1 22481:1 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23067:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:5 23148:1 23158:1 23166:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23499:1 23516:2 23558:1 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:15 23651:1 23655:2 23670:1 23671:4 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23766:1 23772:3 23793:3 23799:1 23803:2 23804:1 23821:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23954:1 23960:1 23977:1 24018:4 24020:1 24074:1 24079:2 24086:1 24093:1 24095:1 24097:1 24098:1 24185:1 24204:1 24213:2 24215:1 24216:1 24248:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:1 24400:1 24410:1 24427:1 24438:1 24467:1 24472:2 24485:2 24527:1 24558:3 24579:1 24586:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 43:1 48:1 79:1 94:1 118:1 132:2 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 355:1 357:2 456:1 471:1 474:1 482:6 484:1 501:1 517:1 555:1 611:1 612:1 658:1 663:1 666:2 674:1 683:1 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:3 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 947:1 953:1 969:2 1004:1 1011:1 1032:1 1039:1 1084:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:1 1484:1 1487:1 1515:1 1530:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:1 1729:1 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:3 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:1 1885:2 1892:1 1893:2 1898:2 1909:2 1910:2 1921:1 1982:1 1986:2 1997:3 2005:1 2016:1 2018:1 2054:1 2078:1 2083:1 2088:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:5 2310:2 2315:1 2324:1 2354:1 2391:2 2403:2 2414:1 2420:12 2430:5 2486:3 2490:1 2498:1 2505:1 2506:2 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2784:1 2785:3 2823:1 2829:1 2833:2 2912:2 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3134:1 3141:4 3185:1 3208:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:2 3406:1 3444:3 3450:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:2 3665:2 3670:2 3689:1 3697:1 3711:1 3767:1 3793:2 3796:1 3826:1 3827:1 3830:1 3871:1 3880:1 3886:1 3893:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4240:2 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:1 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:1 4550:1 4618:1 4628:4 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:2 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:2 4971:1 4979:1 4985:1 4991:1 5006:1 5015:2 5017:2 5019:9 5020:1 5029:1 5034:1 5059:1 5091:1 5093:1 5114:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:1 5649:1 5659:1 5661:2 5678:3 5682:2 5711:2 5768:1 5779:1 5786:2 5796:2 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 5993:1 6000:7 6002:1 6047:1 6054:2 6114:1 6245:1 6264:3 6279:2 6295:2 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:12 6536:1 6541:12 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6644:1 6658:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:10 6974:1 6982:2 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:1 7139:2 7162:1 7169:1 7172:1 7178:1 7180:1 7213:1 7234:3 7235:2 7236:1 7240:1 7245:3 7248:1 7260:1 7269:1 7290:1 7300:1 7317:2 7335:1 7388:2 7435:1 7442:1 7471:1 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:4 7685:1 7702:1 7713:1 7731:1 7788:1 7798:5 7804:1 7813:1 7831:1 7875:2 7882:1 7891:1 7912:1 7917:1 7926:1 7943:2 7962:1 7996:1 8046:1 8070:1 8078:2 8094:1 8114:1 8123:1 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8216:1 8227:1 8256:2 8266:3 8285:1 8322:1 8328:1 8363:1 8461:2 8476:1 8484:1 8487:3 8505:1 8516:2 8547:1 8556:1 8571:1 8578:3 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:1 8920:1 8924:1 8943:4 8962:1 8993:2 8997:1 9002:1 9046:2 9053:1 9077:2 9079:4 9089:1 9103:2 9105:2 9107:2 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:3 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:1 9402:1 9428:1 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:2 9738:2 9749:1 9750:1 9757:1 9779:1 9786:2 9797:1 9819:1 9825:1 9843:5 9845:1 9867:1 9869:1 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:1 9948:1 9957:2 9960:5 9962:1 9969:1 9973:1 9985:1 9995:1 10005:1 10019:1 10040:1 10071:2 10125:1 10147:1 10158:1 10161:1 10166:1 10189:1 10223:1 10229:1 10275:1 10290:1 10316:1 10329:1 10383:2 10428:1 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:2 10620:1 10629:1 10644:1 10737:5 10746:1 10751:1 10752:1 10771:4 10776:1 10778:2 10791:1 10801:1 10814:1 10824:3 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:2 11136:1 11142:4 11173:1 11186:1 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:2 11269:1 11282:2 11284:1 11301:1 11308:1 11327:2 11330:1 11342:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:2 11449:1 11453:1 11476:1 11503:1 11513:1 11520:2 11524:1 11535:1 11545:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11942:1 11969:1 12014:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12264:1 12274:1 12277:1 12280:1 12282:1 12287:1 12289:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:1 12678:1 12683:2 12701:1 12708:2 12736:1 12755:1 12781:1 12822:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13021:1 13023:1 13034:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13222:1 13232:1 13233:1 13243:4 13248:1 13264:1 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:1 13383:1 13390:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13706:2 13723:2 13725:1 13728:1 13731:1 13743:2 13744:1 13749:1 13757:1 13813:1 13817:1 13842:1 13897:2 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:1 14259:1 14276:1 14282:1 14301:1 14304:1 14347:1 14362:2 14365:1 14389:4 14392:1 14407:3 14443:1 14455:2 14458:2 14479:1 14486:2 14492:1 14502:1 14512:1 14539:1 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15258:1 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15506:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:1119 15634:1 15666:1 15673:1 15691:1 15703:1 15738:1 15741:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15861:1 15920:1 15934:1 15948:1 15998:1 16013:1 16018:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16205:2 16233:2 16234:1 16236:1 16245:1 16257:1 16267:1 16271:1 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:2 16385:3 16386:1 16400:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:1 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16697:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:1 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16957:1 16973:5 16980:1 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:2 17210:1 17247:1 17258:2 17303:1 17337:1 17381:1 17412:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:4 17552:1 17558:1 17565:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:1 18033:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:1 18173:1 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:1 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18421:1 18423:1 18457:1 18472:2 18473:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:3 18494:1 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:2 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18647:1 18651:2 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18774:2 18775:2 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18834:1 18837:4 18847:1 18863:1 18865:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:6 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:2 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19872:1 19877:1 19907:2 19930:1 19983:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20217:1 20253:1 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:4 20366:1 20405:1 20409:1 20411:1 20412:1 20430:1 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:2 20695:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20850:1 20861:1 20889:1 20903:1 20941:2 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:5 21257:1 21279:1 21280:1 21334:2 21335:3 21373:2 21396:1 21403:1 21427:2 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:1 21871:1 21910:1 21912:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:1 22301:1 22323:1 22332:1 22337:1 22347:2 22353:1 22373:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23046:1 23048:1 23062:1 23067:1 23072:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:5 23148:1 23158:1 23166:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23499:1 23516:2 23558:1 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:16 23651:1 23655:2 23670:1 23671:4 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23766:1 23772:3 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23954:1 23960:1 23977:1 24018:4 24020:1 24074:1 24079:2 24086:1 24093:1 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:2 24215:1 24216:1 24248:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:2 24400:1 24410:1 24427:1 24438:1 24467:1 24472:2 24485:2 24527:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:2 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 355:1 357:2 456:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 658:1 663:1 666:3 674:1 683:1 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:3 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1032:1 1039:1 1084:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:2 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1484:1 1487:1 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:1 1729:1 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:3 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:1 1885:2 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1986:2 1997:4 2005:1 2016:1 2018:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:6 2310:2 2315:1 2324:1 2354:1 2391:2 2403:2 2414:1 2420:12 2430:5 2486:3 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3134:2 3141:4 3184:1 3185:1 3208:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3386:1 3406:1 3444:3 3450:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:2 3665:2 3670:2 3689:1 3697:1 3711:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:1 3830:1 3871:1 3879:1 3880:1 3886:1 3893:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:1 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:4 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:2 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:2 4971:1 4979:1 4985:1 4991:1 5006:1 5015:2 5017:2 5019:9 5020:1 5029:1 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5114:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:1 5274:1 5282:1 5290:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5471:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:2 5649:1 5659:1 5661:2 5678:3 5682:2 5711:3 5768:1 5779:1 5786:2 5796:2 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 5993:1 6000:7 6002:1 6047:1 6054:2 6114:1 6245:1 6264:3 6279:2 6295:2 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:13 6536:1 6541:12 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6658:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:10 6974:1 6982:2 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:1 7139:2 7162:2 7169:1 7172:1 7178:1 7180:1 7213:1 7234:3 7235:2 7236:1 7240:1 7245:3 7248:1 7260:1 7269:1 7290:1 7300:1 7317:2 7335:1 7388:2 7435:1 7442:1 7466:1 7471:1 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:4 7685:1 7702:1 7713:1 7731:1 7788:1 7798:6 7804:1 7813:1 7831:1 7875:2 7882:1 7891:1 7912:1 7917:1 7926:1 7943:2 7962:1 7996:1 8046:1 8070:1 8078:2 8094:1 8114:1 8123:2 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8207:1 8216:1 8227:1 8256:2 8266:4 8285:1 8322:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:3 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:3 8613:1 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:1 8920:1 8924:1 8943:5 8962:1 8993:2 8997:1 9002:1 9046:2 9053:1 9077:2 9079:4 9089:1 9103:2 9105:2 9107:2 9127:1 9152:1 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:1 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:2 9711:1 9726:1 9731:2 9738:2 9749:1 9750:1 9757:1 9779:1 9786:2 9797:1 9818:1 9819:1 9825:1 9843:5 9845:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:2 9948:1 9957:2 9960:5 9962:1 9969:1 9973:2 9985:1 9995:1 10005:1 10019:1 10040:1 10071:2 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10189:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10316:1 10329:1 10383:2 10428:1 10467:1 10482:1 10521:1 10530:1 10537:1 10562:1 10576:1 10587:1 10588:1 10614:2 10620:1 10629:1 10644:1 10737:5 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:3 11136:1 11142:4 11158:1 11173:1 11186:1 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:3 11269:1 11282:2 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11374:1 11380:1 11384:1 11396:1 11408:1 11411:1 11413:2 11424:1 11448:2 11449:1 11452:1 11453:1 11476:1 11503:1 11513:2 11520:2 11524:2 11535:1 11545:1 11548:1 11561:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12228:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:1 12287:1 12289:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:1 12678:1 12683:2 12701:1 12708:2 12736:1 12755:1 12781:1 12822:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13021:1 13023:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13222:1 13232:1 13233:2 13243:4 13248:1 13264:1 13266:1 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:1 13383:1 13387:1 13390:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13728:1 13731:1 13743:2 13744:1 13749:1 13757:1 13813:1 13817:2 13842:1 13897:2 13972:1 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:2 14259:2 14276:1 14282:1 14301:1 14304:1 14347:1 14362:2 14365:1 14382:1 14389:4 14392:1 14407:3 14443:1 14455:2 14458:2 14479:1 14486:2 14492:2 14502:1 14512:1 14539:1 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15258:1 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:1 15506:1 15509:1 15525:1 15552:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:1225 15634:1 15639:1 15666:1 15673:1 15691:1 15703:1 15738:1 15741:1 15755:1 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15827:1 15861:1 15920:1 15934:1 15948:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:2 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:2 16380:1 16385:3 16386:1 16400:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:1 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16660:1 16697:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:2 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16955:1 16957:1 16973:5 16980:1 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:2 17210:1 17247:1 17258:2 17303:1 17337:1 17339:1 17381:1 17412:1 17418:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:4 17552:1 17558:1 17565:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:2 18033:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:1 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:2 18228:1 18229:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18412:1 18421:1 18423:1 18457:1 18472:2 18473:1 18478:1 18479:1 18484:1 18490:1 18491:6 18493:3 18494:1 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18833:1 18834:1 18837:4 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:7 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:1 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:5 20366:1 20405:1 20409:1 20411:1 20412:1 20430:1 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:2 20695:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20835:1 20850:1 20861:1 20889:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:5 21257:2 21279:1 21280:1 21334:2 21335:3 21373:2 21396:1 21403:1 21427:2 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21586:1 21609:1 21615:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:1 21866:1 21871:1 21910:1 21912:1 21935:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:2 22353:1 22359:1 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:1 22582:1 22591:1 22620:1 22635:2 22645:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:5 23148:1 23158:1 23166:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23499:1 23516:2 23540:1 23558:2 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:16 23651:1 23655:2 23670:1 23671:5 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23766:1 23772:3 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23954:1 23960:2 23977:1 24018:4 24020:1 24074:1 24079:3 24086:1 24093:1 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:3 24215:1 24216:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:3 24399:2 24400:1 24410:1 24427:1 24438:1 24467:1 24472:2 24485:2 24527:1 24535:1 24552:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:2 163:1 183:1 184:1 198:1 225:1 235:1 298:1 338:1 340:2 355:1 357:2 456:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 658:1 663:1 666:3 674:1 683:2 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1032:1 1039:1 1084:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:1 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:3 1799:1 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1986:2 1997:4 2005:1 2016:1 2018:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:6 2310:2 2315:1 2324:1 2354:1 2391:2 2403:2 2414:1 2420:13 2430:6 2486:3 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3134:2 3141:4 3184:1 3185:1 3208:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:2 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3386:1 3406:1 3444:3 3450:1 3462:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:2 3830:1 3871:1 3879:1 3880:1 3886:1 3893:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:2 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:1 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:2 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:2 4971:1 4979:1 4985:1 4991:1 5006:1 5015:2 5017:2 5019:10 5020:1 5029:1 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5471:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:2 5649:1 5659:1 5661:2 5678:3 5682:2 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5821:1 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 5993:1 6000:8 6002:1 6047:1 6054:2 6114:1 6245:1 6248:1 6264:3 6279:2 6295:2 6298:1 6299:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6536:1 6541:13 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6658:1 6711:1 6732:1 6741:2 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:10 6974:2 6982:2 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:1 7139:2 7162:2 7169:1 7170:1 7172:1 7178:1 7180:1 7213:1 7234:4 7235:2 7236:2 7240:1 7245:3 7248:1 7260:1 7269:1 7290:1 7300:1 7301:1 7317:2 7335:1 7342:1 7388:2 7435:1 7442:1 7466:1 7471:1 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:4 7685:1 7702:1 7713:1 7731:1 7788:1 7798:6 7804:1 7813:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8207:1 8216:1 8227:1 8256:2 8266:4 8285:1 8322:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:3 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:3 8613:1 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:2 8920:1 8924:1 8943:5 8962:1 8993:2 8997:1 9002:1 9043:1 9046:2 9053:1 9077:2 9079:5 9089:1 9103:3 9105:2 9107:2 9127:1 9152:2 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:1 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:1 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:1 9843:5 9845:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:2 9948:1 9957:2 9960:5 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:3 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10187:1 10189:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10316:1 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10530:2 10537:1 10562:1 10576:1 10587:1 10588:1 10614:2 10620:1 10629:1 10644:1 10737:6 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:3 11136:1 11142:4 11158:1 11173:1 11186:1 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:3 11269:1 11282:2 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:2 11449:1 11452:1 11453:1 11476:1 11503:1 11513:2 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11742:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12228:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:1 12287:1 12289:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:1 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:2 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:1 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:2 13383:1 13387:1 13390:1 13404:1 13453:1 13484:1 13487:2 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13728:1 13731:1 13743:2 13744:1 13749:1 13757:1 13813:1 13817:2 13842:1 13897:2 13972:1 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:2 14259:2 14276:1 14282:1 14301:1 14304:1 14347:1 14362:2 14365:1 14382:1 14389:4 14392:1 14407:3 14443:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15249:1 15258:1 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:2 15506:1 15509:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:1 15595:1 15615:1 15618:1291 15634:1 15639:1 15666:1 15673:1 15691:1 15703:1 15738:1 15741:1 15755:2 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15815:1 15827:1 15861:1 15920:1 15934:1 15948:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:2 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:3 16380:1 16385:3 16386:1 16400:1 16420:1 16437:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16660:2 16697:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:2 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16955:1 16957:1 16973:5 16980:1 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:2 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17412:1 17418:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:4 17552:1 17558:1 17565:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:2 18228:1 18229:1 18263:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18412:1 18421:1 18423:1 18457:1 18472:2 18473:1 18478:1 18479:1 18484:1 18490:1 18491:7 18493:3 18494:1 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:7 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:1 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:5 20366:1 20405:1 20409:1 20411:1 20412:1 20430:1 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20695:1 20700:1 20701:1 20713:1 20718:1 20773:1 20804:1 20833:1 20835:1 20850:1 20861:1 20883:1 20889:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:5 21257:3 21279:1 21280:1 21334:2 21335:3 21373:2 21396:1 21403:1 21427:2 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:1 21586:1 21609:1 21615:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:1 21866:1 21871:1 21910:1 21912:1 21935:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22359:1 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:1 22582:1 22591:1 22620:1 22635:2 22645:2 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:5 23148:1 23158:1 23166:1 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:1 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23516:2 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:19 23651:1 23655:2 23670:1 23671:5 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23759:1 23766:1 23772:3 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23977:1 24018:4 24020:1 24043:1 24074:1 24079:3 24086:1 24093:1 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:3 24215:2 24216:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:4 24399:2 24400:1 24410:1 24427:1 24438:1 24467:1 24472:2 24485:2 24527:1 24535:1 24552:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:1 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:2 163:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:2 355:1 357:2 372:1 456:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 658:1 663:1 666:3 674:1 683:2 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1084:1 1141:1 1145:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:1 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:2 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1986:2 1997:4 2005:1 2016:1 2018:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:6 2310:2 2315:1 2324:1 2354:1 2391:2 2403:2 2414:1 2420:13 2430:6 2486:3 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:4 3184:1 3185:1 3208:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:3 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3386:1 3406:1 3444:3 3450:1 3462:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:3 3830:1 3871:1 3879:1 3880:1 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:3 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:1 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:2 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:2 4971:1 4979:1 4985:1 4991:1 5006:2 5015:2 5017:2 5019:10 5020:1 5029:2 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5471:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:2 5649:1 5659:1 5661:2 5678:3 5682:2 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5819:1 5821:1 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 5993:1 6000:9 6002:1 6036:1 6047:1 6054:2 6094:1 6114:1 6245:1 6248:2 6264:3 6279:2 6295:2 6298:1 6299:1 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6536:1 6541:13 6542:3 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6658:1 6711:1 6732:1 6741:2 6826:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:10 6974:3 6982:3 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:3 7169:1 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:1 7245:3 7248:1 7260:1 7269:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:2 7435:1 7442:1 7466:1 7471:1 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:6 7804:1 7813:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8207:1 8216:1 8227:1 8256:2 8266:4 8285:1 8305:1 8322:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:3 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:3 8613:1 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:3 8920:1 8924:1 8943:5 8962:1 8993:2 8997:1 9002:1 9043:1 9046:2 9053:1 9077:2 9079:5 9089:1 9103:3 9105:2 9107:2 9127:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:1 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:1 9843:5 9845:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:2 9948:1 9957:3 9960:5 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:3 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10187:1 10189:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10316:1 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:1 10562:1 10576:1 10587:1 10588:1 10614:2 10620:1 10629:1 10644:1 10737:6 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:3 11136:1 11142:4 11158:1 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:2 11449:1 11452:1 11453:1 11476:1 11503:1 11513:2 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11742:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12228:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:1 12306:2 12328:1 12334:2 12355:1 12378:1 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:1 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13417:1 13453:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13757:1 13813:1 13817:2 13842:1 13897:2 13972:1 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:3 14222:2 14259:2 14276:1 14282:1 14301:1 14304:1 14347:1 14362:3 14365:1 14382:1 14389:4 14392:1 14407:3 14443:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15249:1 15258:1 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15444:1 15448:3 15454:1 15466:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:2 15595:1 15615:1 15618:1338 15634:1 15639:2 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:1 15741:1 15755:2 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15815:1 15827:1 15861:1 15920:1 15934:1 15948:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:2 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16355:1 16362:1 16368:3 16380:1 16385:3 16386:1 16400:1 16420:1 16437:1 16441:1 16478:1 16484:1 16493:1 16536:1 16567:3 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16660:2 16675:1 16697:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:2 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16955:1 16957:1 16973:5 16980:1 16987:3 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17412:1 17418:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:4 17552:1 17558:1 17565:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17709:1 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:2 18228:1 18229:1 18263:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:1 18484:1 18490:1 18491:7 18493:3 18494:1 18496:1 18498:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:1 18813:1 18823:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:8 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:3 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:1 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:5 20366:1 20405:1 20409:1 20411:1 20412:1 20430:1 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:3 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20804:1 20833:1 20835:1 20850:1 20861:1 20871:1 20883:1 20889:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:5 21257:3 21279:1 21280:1 21334:2 21335:3 21373:2 21396:1 21403:1 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:2 21586:1 21609:1 21615:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:2 21866:1 21871:1 21910:1 21912:1 21935:1 21943:1 21967:2 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22099:1 22131:1 22133:1 22150:1 22161:1 22163:2 22173:1 22179:2 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22359:2 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:1 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23516:2 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:21 23651:1 23655:2 23670:1 23671:6 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23759:1 23766:1 23772:3 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23977:1 23981:1 24018:4 24020:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:1 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:4 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:2 24485:2 24527:1 24535:1 24552:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:2 163:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:2 355:1 357:2 372:1 456:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:2 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1888:1 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:1 2122:1 2151:1 2156:1 2242:1 2259:1 2270:1 2276:1 2286:1 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2391:2 2403:2 2414:1 2420:13 2430:7 2486:4 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:4 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:3 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3444:3 3450:1 3462:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:3 3830:1 3871:1 3879:1 3880:1 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:2 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:2 4971:1 4979:1 4985:1 4991:2 5006:2 5015:2 5017:2 5019:10 5020:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5471:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:2 5649:1 5659:1 5661:2 5668:1 5678:3 5682:2 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5819:1 5821:1 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5916:1 5928:1 5956:1 5993:1 6000:9 6002:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6245:1 6248:2 6264:3 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6536:1 6541:13 6542:4 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6658:1 6711:1 6732:1 6741:2 6826:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:1 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:1 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:1 7245:3 7248:1 7260:1 7269:1 7280:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:2 7435:1 7442:1 7466:1 7471:1 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8207:1 8216:1 8227:1 8256:2 8266:4 8285:1 8305:1 8322:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:3 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:3 8613:1 8628:1 8634:1 8665:1 8682:2 8704:1 8716:1 8732:1 8735:3 8757:1 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:3 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9043:1 9046:3 9053:1 9077:2 9079:6 9089:1 9103:3 9105:2 9107:2 9127:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:1 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:1 9843:5 9845:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:2 9948:1 9957:3 9960:5 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:3 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10187:1 10189:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10316:1 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:7 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:3 11136:1 11142:4 11158:1 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:2 11449:1 11452:1 11453:1 11476:1 11503:1 11513:2 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:1 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11742:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12194:1 12228:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:1 12486:1 12501:1 12529:1 12538:1 12574:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:1 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13453:1 13469:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:4 14222:2 14259:2 14276:1 14282:1 14301:1 14304:1 14347:1 14362:3 14365:1 14382:1 14389:4 14392:1 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15249:1 15258:2 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:3 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:2 15595:1 15615:1 15618:1371 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:1 15795:1 15797:1 15815:1 15827:1 15861:1 15920:1 15934:1 15948:1 15954:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:2 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:3 16386:1 16400:1 16420:1 16437:1 16441:1 16478:1 16484:1 16493:1 16536:1 16567:4 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16660:2 16675:1 16697:1 16710:1 16723:1 16742:1 16804:1 16828:1 16829:2 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:3 16955:1 16957:1 16973:5 16980:1 16987:4 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:5 17552:1 17558:1 17565:1 17587:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17709:1 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17892:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:2 18228:1 18229:1 18263:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:1 18484:1 18490:1 18491:7 18493:3 18494:1 18496:1 18498:1 18499:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:3 18598:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:8 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:3 19084:1 19158:1 19200:1 19229:1 19234:4 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20804:1 20833:1 20835:1 20850:1 20861:1 20871:1 20883:1 20889:1 20894:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:5 21257:3 21279:1 21280:1 21334:2 21335:3 21358:1 21373:2 21396:1 21403:1 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:2 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:2 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21943:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22359:3 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:1 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23516:3 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:21 23645:1 23651:1 23655:2 23658:1 23670:1 23671:6 23676:3 23713:1 23717:1 23738:2 23745:1 23753:1 23759:1 23766:1 23772:4 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:2 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:1 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:4 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:2 24485:2 24527:1 24535:1 24552:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:3 163:1 167:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:2 355:1 357:2 372:1 456:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:2 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1888:1 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:1 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:1 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2391:2 2403:3 2414:1 2420:13 2430:8 2486:4 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:1 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3282:3 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3444:3 3450:1 3462:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:3 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:2 5017:2 5019:10 5020:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5471:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:3 5682:2 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5819:1 5821:1 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5910:1 5916:1 5928:1 5956:1 5993:1 6000:9 6002:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6245:1 6248:2 6264:3 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6536:1 6541:14 6542:4 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6658:1 6711:1 6732:1 6741:2 6826:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:1 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:1 7245:3 7248:1 7260:1 7269:1 7280:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:2 7435:1 7442:1 7466:1 7471:1 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:5 8172:23 8174:2 8181:1 8196:1 8198:1 8207:1 8216:1 8227:1 8256:2 8266:4 8285:1 8305:1 8322:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:3 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8732:1 8735:3 8757:2 8772:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:3 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:1 9103:3 9105:2 9107:2 9127:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:1 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:1 9843:6 9845:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:2 9948:1 9957:3 9960:5 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:3 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10168:1 10187:1 10189:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10316:1 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:8 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:3 11136:1 11142:4 11158:1 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11476:1 11503:1 11513:2 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11652:1 11660:1 11701:1 11742:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12182:1 12184:1 12191:1 12194:1 12228:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12574:1 12576:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:1 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13453:1 13469:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:4 14222:2 14259:2 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14382:1 14389:4 14392:1 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15249:1 15258:2 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:3 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:2 15595:2 15615:1 15618:1391 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:1 15787:1 15795:1 15797:1 15815:1 15827:1 15861:1 15920:1 15934:1 15948:1 15954:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16478:1 16484:2 16493:1 16536:1 16567:4 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16654:1 16657:1 16660:2 16675:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:2 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16902:1 16929:1 16943:4 16955:1 16957:1 16973:5 16980:1 16987:4 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:5 17552:1 17558:1 17565:1 17587:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17709:1 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17892:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18184:1 18191:2 18198:1 18203:1 18211:1 18226:2 18228:1 18229:1 18263:1 18267:1 18274:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:7 18493:3 18494:1 18496:1 18498:1 18499:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:4 18598:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:8 18970:2 18979:1 18981:2 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:4 19084:1 19158:1 19200:1 19229:1 19234:4 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20804:1 20833:1 20835:1 20850:1 20861:1 20871:1 20882:1 20883:1 20889:1 20894:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:6 21257:3 21279:1 21280:1 21334:2 21335:3 21358:1 21373:2 21396:1 21403:1 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:2 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:2 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21943:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22359:3 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:1 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22989:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23516:3 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:21 23645:1 23651:1 23655:2 23658:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:2 23745:1 23753:1 23759:1 23766:1 23772:4 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:2 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:2 24485:2 24527:1 24535:1 24552:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24736:1
19 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:3 163:1 167:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:2 355:1 357:2 372:1 456:1 467:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:2 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:2 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1888:1 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1985:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:2 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:1 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2374:1 2391:2 2403:3 2414:1 2420:14 2430:8 2486:4 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3444:3 3450:1 3460:1 3462:1 3483:1 3489:1 3522:1 3527:1 3531:2 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:3 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:5 4093:1 4122:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:1 5442:1 5471:1 5504:1 5536:1 5546:3 5562:1 5569:1 5599:1 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:3 5682:3 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5819:1 5821:1 5823:1 5828:1 5844:1 5845:1 5887:1 5907:1 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:9 6002:1 6023:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6245:1 6248:2 6264:3 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6536:1 6541:15 6542:4 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6658:1 6711:1 6732:1 6741:2 6826:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:2 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:1 7245:3 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:2 7435:1 7442:1 7466:1 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:7 8172:27 8174:2 8181:2 8196:1 8198:1 8207:1 8216:1 8227:1 8256:2 8266:4 8275:1 8285:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:4 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8732:1 8735:3 8757:2 8772:1 8799:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:3 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9027:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:1 9103:3 9105:2 9107:2 9127:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9221:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:1 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:1 9843:6 9845:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:1 9910:1 9928:1 9935:2 9948:1 9957:3 9960:6 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:3 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10168:1 10187:1 10189:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10316:1 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:8 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:2 11124:3 11136:1 11142:4 11158:1 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11476:1 11503:1 11513:2 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11701:1 11742:1 11773:2 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12173:1 12182:1 12184:1 12191:1 12194:1 12228:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12574:1 12576:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:1 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13453:1 13469:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:4 14222:2 14259:2 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14382:1 14389:4 14392:1 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15249:1 15258:2 15273:2 15274:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:3 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:2 15595:2 15615:1 15618:1424 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:1 15787:1 15795:1 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16478:1 16484:2 16493:1 16536:1 16567:4 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16627:1 16654:1 16657:1 16660:2 16665:1 16666:1 16675:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:2 16830:1 16837:1 16845:2 16855:2 16856:1 16885:4 16895:1 16902:1 16929:1 16943:4 16955:1 16957:1 16973:6 16980:1 16987:4 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17472:1 17474:1 17496:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:6 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17709:1 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17892:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18184:1 18191:2 18198:1 18203:1 18207:1 18211:1 18226:2 18228:1 18229:1 18247:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:1 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:8 18493:3 18494:1 18496:1 18498:1 18499:1 18506:1 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:4 18598:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18938:1 18959:8 18970:2 18979:1 18981:2 18982:1 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:4 19084:1 19158:1 19200:1 19229:1 19234:4 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:1 20025:1 20047:1 20088:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20804:1 20833:1 20835:1 20850:1 20861:1 20871:1 20882:1 20883:1 20889:1 20894:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:6 21257:3 21279:1 21280:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:2 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:2 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21943:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22359:3 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:2 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23063:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23516:3 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:21 23645:1 23648:1 23651:1 23655:2 23658:1 23667:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:2 23745:1 23753:1 23759:1 23766:1 23772:4 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:2 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24527:1 24535:1 24552:1 24558:3 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:3 163:1 167:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:3 355:1 357:2 372:1 456:1 467:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1381:1 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:2 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1888:1 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1985:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:2 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2374:1 2391:2 2403:3 2405:1 2414:1 2420:15 2430:9 2486:5 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3712:1 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:3 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:6 4093:1 4122:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5471:1 5504:1 5536:1 5546:3 5557:1 5562:1 5569:1 5599:1 5633:1 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:3 5682:3 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:1 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:10 6002:1 6023:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6245:1 6248:2 6264:3 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6534:1 6536:1 6541:17 6542:5 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6646:1 6658:1 6711:2 6732:1 6741:2 6826:1 6846:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:2 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:1 7245:3 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:2 7435:1 7442:1 7466:1 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:1 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:7 8172:27 8174:2 8181:2 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8256:2 8266:4 8275:1 8285:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:4 8598:1 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8718:1 8732:2 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:3 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9027:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:1 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:2 9843:6 9845:1 9849:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:2 9910:1 9928:1 9935:2 9948:2 9957:3 9960:6 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:1 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:9 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11067:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:3 11124:3 11136:1 11142:4 11158:1 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11476:1 11503:1 11513:3 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11670:1 11701:1 11742:1 11751:1 11773:2 11800:1 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12574:1 12576:1 12577:1 12578:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:2 13062:1 13063:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:2 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13453:1 13469:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14038:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:5 14222:2 14259:2 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:1 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14562:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:2 15273:2 15274:1 15302:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:3 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:2 15595:2 15615:1 15618:1459 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:2 15785:1 15787:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15998:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:1 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16478:1 16484:2 16493:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16627:1 16629:1 16654:1 16657:1 16660:2 16665:1 16666:1 16675:1 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16885:5 16895:1 16902:2 16929:1 16943:4 16955:1 16957:1 16973:6 16980:1 16987:5 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17105:1 17127:1 17141:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:1 17496:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:7 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17709:1 17710:1 17712:1 17735:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17892:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:2 18228:1 18229:1 18247:1 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:8 18493:3 18494:1 18496:1 18498:1 18499:1 18506:2 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:4 18598:1 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18932:1 18938:1 18959:9 18964:1 18970:3 18979:1 18981:2 18982:1 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:4 19084:1 19158:1 19200:1 19229:1 19234:5 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:2 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19664:1 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:1 20025:1 20047:1 20088:1 20095:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:1 20459:1 20468:1 20475:11 20512:3 20554:1 20555:1 20556:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:1 20850:1 20859:1 20861:1 20871:1 20882:1 20883:1 20889:1 20894:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:6 21257:3 21279:1 21280:1 21292:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:2 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:2 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21943:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:2 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23063:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23504:1 23516:3 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:23 23645:1 23648:1 23651:1 23655:2 23658:1 23667:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:1 23772:4 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:2 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:1 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 94:1 118:1 132:3 163:1 167:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:4 355:1 357:2 372:1 456:1 467:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 725:1 727:1 731:1 735:4 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:1 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1381:1 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1888:1 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1982:1 1985:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:2 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2374:1 2391:2 2403:3 2405:1 2414:1 2420:15 2430:9 2486:5 2490:1 2498:1 2505:1 2506:3 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:3 2913:1 2914:1 2925:1 2949:1 2967:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3712:2 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:4 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:6 4093:1 4122:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4794:1 4797:1 4803:1 4815:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5471:1 5504:1 5536:1 5546:3 5557:1 5562:1 5569:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:3 5682:3 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:10 6002:1 6023:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6245:1 6248:3 6264:3 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:4 6463:2 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6534:1 6536:1 6541:17 6542:5 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6711:2 6732:1 6741:2 6826:1 6846:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:2 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:2 7245:3 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:3 7435:1 7442:1 7466:1 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:1 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:7 8172:27 8174:2 8181:2 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8256:2 8266:4 8275:1 8285:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:4 8598:1 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8718:1 8732:2 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9027:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:1 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:2 9843:6 9845:1 9849:1 9867:1 9869:2 9874:1 9880:1 9894:1 9898:1 9903:2 9910:1 9928:1 9935:2 9948:2 9957:3 9960:6 9962:1 9969:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:9 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11067:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:3 11124:3 11136:1 11142:4 11158:2 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11346:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11476:1 11503:1 11513:3 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11670:1 11701:1 11742:1 11751:1 11773:2 11800:1 11835:1 11861:1 11865:1 11880:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:3 13062:1 13063:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13222:1 13232:2 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13453:1 13469:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14038:1 14048:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:5 14222:2 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:1 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14562:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:2 15273:2 15274:1 15302:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:3 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15592:2 15595:2 15615:1 15618:1478 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:2 15785:1 15787:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15998:1 16001:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:2 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16484:2 16493:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16627:1 16629:1 16654:1 16657:1 16660:2 16665:1 16666:1 16675:1 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16885:5 16895:1 16902:2 16929:1 16943:4 16955:1 16957:1 16973:6 16980:1 16987:5 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17127:1 17141:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:7 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17706:2 17709:1 17710:1 17712:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17892:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:2 18228:1 18229:1 18247:1 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:8 18493:3 18494:1 18496:1 18498:1 18499:1 18506:2 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:4 18584:1 18598:1 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18932:2 18938:1 18959:9 18964:1 18970:4 18979:1 18981:2 18982:1 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:4 19084:1 19158:1 19200:1 19229:1 19234:5 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19352:2 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19664:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20088:1 20095:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:1 20459:1 20468:1 20475:11 20504:1 20512:3 20554:1 20555:1 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:1 20850:1 20859:1 20861:1 20871:1 20882:1 20883:1 20889:1 20894:1 20903:1 20941:2 20954:1 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:6 21257:3 21279:1 21280:1 21292:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21943:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:3 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:2 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:1 22744:1 22752:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23063:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23504:1 23516:3 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:24 23645:1 23648:1 23651:1 23655:2 23658:1 23667:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:1 23772:4 23793:4 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24030:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:2 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24376:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:1 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 163:1 167:1 183:1 184:1 198:1 225:1 235:1 255:1 298:1 338:1 340:4 355:1 357:2 372:1 456:1 467:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:1 735:4 739:1 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 992:2 1004:2 1011:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1381:1 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1888:1 1892:1 1893:2 1898:2 1909:3 1910:2 1921:1 1977:1 1982:1 1985:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:2 2078:1 2083:1 2088:1 2112:1 2113:2 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2374:1 2391:2 2403:3 2405:1 2414:1 2420:15 2430:9 2446:1 2486:5 2490:1 2498:1 2505:1 2506:4 2531:1 2632:1 2647:1 2658:1 2675:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:1 2967:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3028:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3665:2 3670:2 3689:1 3697:1 3711:1 3712:2 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:4 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:6 4093:1 4122:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4794:1 4797:1 4802:1 4803:1 4815:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:1 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5471:1 5504:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:3 5682:3 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:10 6002:1 6023:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6216:1 6245:1 6248:3 6264:3 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:6 6463:3 6482:1 6485:3 6488:1 6507:1 6509:1 6522:15 6526:1 6534:1 6536:1 6541:17 6542:6 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:2 6732:1 6741:2 6826:1 6846:1 6859:1 6861:1 6871:2 6875:1 6884:1 6911:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:2 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7317:2 7328:1 7335:1 7342:1 7388:3 7435:1 7442:1 7466:1 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:1 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:7 8172:27 8174:2 8181:2 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8256:2 8266:4 8275:1 8285:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:4 8598:1 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8718:1 8732:2 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9018:1 9027:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:1 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:2 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:1 9819:1 9825:2 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:2 9910:1 9928:1 9935:2 9948:2 9957:3 9960:6 9962:1 9969:1 9971:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:9 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11067:1 11073:1 11074:2 11078:2 11089:1 11097:1 11099:3 11124:3 11136:1 11142:4 11158:2 11173:1 11186:2 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11346:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11476:1 11503:1 11513:3 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11670:1 11701:1 11742:1 11751:1 11773:2 11776:1 11800:1 11835:1 11861:1 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13203:1 13222:1 13232:2 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:3 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13453:1 13469:1 13484:1 13487:3 13505:1 13515:1 13596:2 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14038:1 14048:1 14075:1 14080:2 14082:1 14083:1 14087:1 14119:11 14135:1 14151:2 14173:5 14222:2 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14562:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14740:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:1 15054:3 15066:1 15098:1 15114:2 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:2 15273:2 15274:1 15302:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:4 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15615:1 15618:1510 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:2 15785:1 15787:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15998:1 16001:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:2 16245:1 16257:1 16267:2 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16484:2 16493:1 16506:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16627:2 16629:1 16654:1 16657:1 16660:2 16665:1 16666:1 16675:1 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16885:5 16895:1 16902:2 16929:1 16943:4 16955:1 16957:1 16973:6 16980:1 16987:5 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17127:1 17141:1 17142:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:7 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:1 17835:1 17863:1 17892:1 17895:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:2 18228:1 18229:1 18247:1 18249:1 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:8 18493:3 18494:1 18496:1 18498:1 18499:1 18506:2 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:5 18584:1 18598:1 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18932:2 18938:1 18959:9 18964:1 18970:4 18979:1 18981:2 18982:1 18985:1 18986:3 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19200:1 19229:1 19234:5 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19349:1 19352:2 19390:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19664:2 19674:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:1 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20088:1 20095:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:2 20459:1 20468:1 20475:11 20504:1 20512:3 20554:1 20555:1 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:1 20850:1 20859:1 20861:1 20871:1 20882:1 20883:1 20889:1 20894:1 20903:1 20941:2 20954:2 20982:1 20991:1 20994:2 21002:3 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:7 21257:3 21279:1 21280:1 21292:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:1 21427:3 21433:2 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21943:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:4 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:2 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:1 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22840:1 22847:1 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23063:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23504:1 23516:3 23540:1 23557:1 23558:2 23559:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:25 23645:1 23648:1 23651:1 23655:2 23658:1 23667:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:6 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24030:1 24037:1 24043:1 24074:1 24079:3 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24234:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24376:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:1 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 163:2 167:1 183:1 184:1 198:1 225:1 235:1 255:1 276:1 298:1 338:1 340:4 355:1 357:2 372:1 456:1 467:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 611:1 612:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:1 735:5 739:1 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1331:1 1354:3 1370:1 1381:1 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:1 1851:1 1863:1 1872:1 1880:2 1885:2 1886:1 1888:1 1892:1 1893:2 1898:2 1902:1 1909:3 1910:2 1921:1 1977:1 1982:1 1985:1 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:4 2078:1 2083:1 2088:1 2112:1 2113:2 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2374:1 2391:3 2403:3 2405:1 2414:1 2420:16 2430:9 2446:1 2486:5 2490:1 2498:1 2505:1 2506:4 2531:1 2571:1 2632:1 2647:1 2658:1 2675:1 2691:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:1 2967:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3028:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3426:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3505:1 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3689:1 3697:1 3711:1 3712:2 3713:1 3748:1 3767:1 3793:2 3796:1 3826:1 3827:4 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:6 4093:1 4122:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:5 4646:1 4653:1 4655:1 4658:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4794:1 4797:1 4802:1 4803:1 4815:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:3 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5471:1 5504:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:4 5682:3 5711:3 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:10 6002:1 6023:1 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6216:1 6245:1 6248:3 6264:3 6274:1 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:6 6463:3 6482:1 6485:3 6488:1 6507:1 6509:1 6522:16 6526:1 6534:1 6536:1 6541:18 6542:6 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:2 6732:1 6741:2 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:2 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7328:1 7335:1 7342:1 7381:1 7388:3 7394:1 7435:1 7442:1 7466:1 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:3 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:7 8172:27 8174:2 8181:2 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:4 8275:1 8285:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:4 8598:1 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8718:1 8732:2 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9018:1 9027:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:1 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:2 9819:1 9825:2 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:2 9910:1 9928:1 9935:2 9948:2 9957:3 9960:6 9962:1 9969:1 9971:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10125:1 10147:1 10158:1 10161:2 10164:1 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:9 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11046:1 11064:1 11067:1 11073:1 11074:3 11078:2 11089:1 11097:1 11099:3 11124:3 11136:1 11142:4 11158:2 11173:1 11186:3 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11346:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:2 11776:1 11800:1 11835:1 11861:1 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13203:1 13222:1 13232:2 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:4 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:1 13476:1 13484:1 13487:3 13505:1 13515:1 13596:3 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14038:1 14048:2 14062:1 14075:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:5 14222:2 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:2 14502:1 14512:1 14539:2 14551:1 14562:1 14601:1 14608:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14740:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:2 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:2 15273:2 15274:1 15302:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:4 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15615:1 15617:1 15618:1576 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15779:1 15784:2 15785:1 15787:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15998:1 16001:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:2 16245:2 16257:1 16266:1 16267:4 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16484:2 16493:1 16506:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16627:2 16629:1 16654:1 16657:1 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16895:1 16902:2 16929:1 16943:4 16955:1 16957:1 16971:1 16973:6 16980:1 16987:5 17011:1 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17127:1 17141:1 17142:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:7 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17614:1 17636:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:4 18228:1 18229:1 18247:1 18249:1 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:9 18493:3 18494:1 18496:1 18498:1 18499:1 18506:2 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:5 18584:1 18598:1 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:2 18881:1 18896:1 18919:1 18932:2 18938:1 18959:9 18964:1 18970:4 18979:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19200:1 19229:1 19234:5 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19349:1 19352:2 19390:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19664:2 19674:1 19676:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20088:1 20095:1 20113:1 20141:1 20155:1 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:2 20459:1 20468:1 20475:11 20504:1 20512:3 20554:1 20555:1 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:1 20850:1 20859:1 20861:1 20871:1 20882:2 20883:1 20889:1 20894:1 20903:1 20941:2 20954:2 20963:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:7 21257:3 21272:1 21279:1 21280:1 21292:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:1 21427:3 21433:2 21444:1 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:4 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:2 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:1 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22840:1 22847:2 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23041:1 23046:1 23048:1 23062:1 23063:1 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23146:1 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:25 23645:1 23648:1 23651:1 23655:2 23658:1 23667:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:6 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24030:1 24037:1 24043:1 24074:1 24079:5 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24234:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:2 24372:1 24376:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:1 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24641:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 163:3 167:1 183:1 184:1 198:1 225:1 235:1 255:1 276:1 298:1 338:1 340:4 355:1 357:2 372:1 456:1 466:1 467:1 471:1 474:1 482:7 484:1 501:1 517:1 555:1 567:1 600:1 611:1 612:1 622:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:1 735:6 739:1 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:3 1370:1 1381:1 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1734:1 1737:2 1745:1 1751:2 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:2 1885:2 1886:2 1888:1 1892:1 1893:2 1898:2 1902:1 1909:3 1910:2 1921:1 1977:1 1982:1 1985:2 1986:2 1997:4 2005:1 2016:1 2018:1 2045:1 2054:4 2078:1 2083:1 2088:1 2112:1 2113:3 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:1 2374:1 2391:3 2403:3 2405:1 2414:1 2420:18 2430:9 2446:1 2486:5 2490:1 2498:1 2505:1 2506:4 2531:1 2571:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:1 2967:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3028:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:1 3386:1 3406:1 3426:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3505:1 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:1 3793:2 3796:1 3826:1 3827:4 3830:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:6 4093:1 4122:1 4137:3 4189:2 4193:1 4194:3 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:3 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:2 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:6 4646:1 4653:1 4655:1 4658:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4755:1 4756:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:4 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5225:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:2 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5464:1 5471:1 5504:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:5 5682:3 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:11 6002:1 6023:2 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6216:1 6245:1 6248:3 6264:3 6274:1 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:6 6463:3 6482:1 6485:3 6488:1 6507:1 6509:1 6522:17 6526:1 6534:1 6536:1 6541:20 6542:6 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:2 6732:1 6741:2 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:12 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:3 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7328:1 7335:1 7342:1 7381:1 7388:3 7394:1 7435:1 7442:1 7466:2 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:3 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:1 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:2 8094:1 8114:1 8123:3 8135:1 8159:1 8171:8 8172:27 8174:2 8181:2 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:4 8275:1 8285:1 8286:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:5 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8718:1 8732:2 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:6 8962:1 8993:2 8997:1 9002:1 9005:1 9016:1 9018:1 9027:1 9043:1 9046:3 9053:1 9077:2 9079:7 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9592:1 9601:1 9618:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:2 9819:1 9825:2 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:2 9910:1 9928:1 9935:2 9948:2 9957:3 9960:7 9962:1 9969:1 9971:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10098:1 10125:1 10147:1 10158:1 10161:2 10164:1 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:9 10746:1 10751:2 10752:1 10771:4 10776:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:1 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:1 11073:1 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11136:1 11142:4 11143:1 11158:2 11173:1 11183:1 11186:3 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:1 11346:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:2 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:2 11776:1 11800:1 11835:1 11861:1 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:1 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13174:1 13189:1 13203:1 13222:1 13232:2 13233:2 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:4 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:1 13476:1 13484:1 13487:3 13505:1 13515:1 13596:3 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13754:1 13757:1 13813:1 13817:2 13840:1 13842:1 13897:2 13961:1 13972:1 13978:1 14010:1 14038:1 14048:2 14062:1 14075:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:5 14187:1 14217:1 14222:2 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:3 14502:1 14512:1 14539:2 14551:1 14562:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14732:1 14740:1 14756:1 14783:1 14784:2 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:2 15273:2 15274:1 15302:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:4 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15615:1 15617:1 15618:1655 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15998:1 16001:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16233:3 16234:1 16236:2 16245:2 16257:1 16266:1 16267:4 16271:2 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16484:2 16493:1 16506:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:2 16627:2 16629:1 16654:1 16657:1 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16895:1 16902:3 16929:1 16943:4 16955:1 16957:1 16971:1 16973:7 16980:1 16987:5 17011:1 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17127:1 17141:1 17142:1 17155:1 17207:3 17210:1 17247:2 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17398:1 17401:1 17412:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:1 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:1 17543:1 17549:8 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18163:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:4 18228:1 18229:1 18247:1 18249:1 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:5 18584:1 18598:1 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:1 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:2 18789:1 18796:1 18807:2 18813:1 18823:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:3 18881:1 18896:1 18919:1 18932:3 18938:1 18959:9 18964:1 18970:4 18979:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:5 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19349:1 19352:2 19390:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19638:2 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19907:2 19930:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20053:1 20088:1 20095:1 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:1 20390:1 20405:1 20409:1 20411:1 20412:1 20430:2 20436:2 20459:1 20468:1 20475:11 20504:1 20512:3 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20882:2 20883:1 20889:1 20894:1 20903:1 20941:2 20954:2 20963:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:7 21257:3 21272:1 21279:1 21280:1 21292:1 21317:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:1 21427:3 21433:2 21444:1 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:1 21609:1 21615:1 21638:1 21648:1 21657:2 21667:1 21669:2 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:4 22097:1 22099:1 22131:1 22133:2 22150:1 22161:1 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:2 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22462:1 22481:2 22499:1 22513:3 22526:1 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:1 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22840:1 22847:3 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23146:1 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23567:1 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:26 23645:1 23648:3 23651:1 23655:2 23658:1 23667:1 23670:1 23671:6 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:6 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23975:1 23977:1 23981:1 24018:4 24020:1 24030:1 24037:1 24043:1 24074:1 24079:5 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:2 24234:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:5 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:1 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24641:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 163:3 167:1 183:1 184:1 198:1 225:1 235:1 255:1 276:1 298:1 338:1 340:5 355:1 357:3 370:1 372:1 456:1 466:1 467:1 471:1 474:1 482:8 484:1 501:1 517:1 555:1 567:1 600:1 611:1 612:1 622:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:2 735:6 739:1 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 922:1 932:1 947:1 953:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:3 1370:1 1381:1 1392:1 1407:1 1444:1 1450:1 1451:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:1 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1734:1 1737:2 1738:1 1745:1 1751:2 1759:1 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:3 1883:1 1885:2 1886:2 1888:1 1892:1 1893:2 1898:2 1902:1 1909:3 1910:2 1921:1 1976:1 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2045:1 2054:4 2078:1 2083:1 2088:1 2108:1 2112:1 2113:3 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:3 2403:3 2405:1 2414:1 2420:18 2430:11 2446:1 2486:5 2490:1 2496:1 2498:1 2505:1 2506:4 2531:1 2571:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:1 2967:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3341:1 3347:1 3355:1 3364:1 3365:3 3382:2 3386:1 3406:1 3426:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3505:1 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:2 3793:2 3796:1 3826:1 3827:4 3830:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4013:1 4014:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:6 4093:1 4122:1 4137:3 4189:2 4193:1 4194:4 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:4 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:3 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4577:1 4618:1 4628:6 4646:1 4653:1 4655:1 4658:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4740:1 4755:1 4756:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:5 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5225:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:2 5324:1 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5444:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:11 6002:1 6023:2 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6216:1 6245:1 6248:3 6264:3 6274:1 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6446:2 6462:7 6463:3 6482:1 6485:3 6488:1 6507:1 6509:1 6522:19 6526:1 6534:1 6536:1 6541:20 6542:6 6546:1 6576:2 6591:1 6602:2 6603:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:2 6732:1 6741:2 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:14 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:3 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7328:1 7335:1 7342:1 7381:1 7388:3 7394:1 7435:1 7442:1 7466:2 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7788:1 7798:7 7804:1 7813:3 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7912:1 7917:1 7926:1 7929:2 7943:2 7962:1 7996:1 8046:1 8053:1 8070:1 8078:3 8094:1 8114:1 8123:3 8135:1 8159:1 8171:8 8172:27 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:6 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8682:3 8704:1 8716:1 8718:1 8732:3 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:3 9053:1 9077:2 9079:8 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:4 9711:1 9726:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:3 9819:1 9825:2 9829:1 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:2 9910:1 9928:1 9935:2 9948:2 9957:3 9960:7 9962:1 9969:1 9971:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10098:1 10125:1 10147:1 10158:1 10161:2 10164:1 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10378:1 10383:2 10428:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:10 10746:1 10751:2 10752:1 10762:1 10771:4 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:1 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:4 11143:1 11158:2 11173:1 11183:1 11186:3 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:2 11346:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:3 11524:3 11535:1 11545:1 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11800:1 11835:2 11861:1 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13057:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13154:1 13174:1 13189:1 13203:1 13222:1 13232:2 13233:3 13243:4 13248:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:4 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:1 13476:1 13484:1 13487:3 13505:1 13515:1 13596:3 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13751:1 13754:2 13757:1 13813:1 13817:2 13840:1 13842:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14038:1 14048:2 14062:1 14075:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:5 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:3 14502:1 14512:1 14538:1 14539:2 14551:1 14562:1 14571:1 14582:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14740:1 14756:1 14783:1 14784:2 14848:1 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:3 15273:2 15274:1 15302:1 15316:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:5 15454:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15615:1 15617:1 15618:1703 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15997:1 15998:1 16001:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16230:1 16233:3 16234:2 16236:2 16245:2 16257:1 16266:1 16267:4 16271:3 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16484:2 16493:1 16506:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16895:1 16902:3 16929:1 16943:4 16955:1 16957:1 16971:1 16973:7 16980:1 16987:5 17011:1 17029:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17127:1 17141:1 17142:1 17147:1 17155:1 17207:3 17210:1 17247:3 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:2 17543:1 17549:8 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18163:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:4 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:1 18563:5 18584:1 18598:1 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:2 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:3 18789:1 18796:1 18807:3 18813:1 18823:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:3 18881:1 18896:1 18919:1 18932:3 18938:1 18957:1 18959:9 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:5 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19637:1 19638:2 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19703:1 19726:2 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19886:1 19907:2 19930:1 19952:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20053:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:2 20390:1 20405:1 20409:1 20411:1 20412:1 20430:3 20436:2 20459:1 20468:1 20475:11 20504:1 20512:3 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:1 20889:1 20894:1 20903:1 20941:2 20954:2 20963:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21215:1 21229:7 21257:3 21272:1 21279:1 21280:1 21292:1 21317:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:2 21427:3 21433:2 21444:1 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:1 21609:1 21615:1 21638:2 21648:1 21657:2 21667:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21967:2 21979:1 22026:2 22043:1 22057:1 22067:1 22074:1 22089:5 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22462:1 22477:1 22481:2 22499:1 22513:3 22526:1 22582:1 22591:1 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22840:1 22847:3 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23146:1 23148:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23567:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:26 23645:1 23648:3 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:7 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23961:1 23975:1 23977:1 23981:1 24018:5 24020:1 24030:1 24037:1 24043:1 24074:1 24079:5 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:3 24234:1 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:6 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24624:1 24627:2 24633:1 24636:1 24637:1 24641:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 163:3 167:1 183:1 184:1 198:1 225:1 235:1 255:1 276:1 298:1 311:1 328:1 338:1 340:5 355:1 357:3 370:1 372:1 456:1 466:1 467:1 471:1 474:1 482:8 484:1 501:1 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:2 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:2 735:6 739:1 751:2 753:1 766:2 767:1 806:4 808:1 850:1 903:1 920:1 922:1 932:1 947:1 953:1 965:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:3 1370:2 1381:1 1392:1 1407:1 1444:1 1450:1 1451:1 1454:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1734:1 1737:2 1738:1 1745:1 1751:3 1759:1 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:3 1883:1 1885:2 1886:2 1888:1 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:3 1921:1 1976:1 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2045:1 2054:4 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2269:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:18 2430:11 2446:1 2486:6 2490:1 2496:1 2498:1 2505:1 2506:5 2531:1 2571:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:2 2967:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:1 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3364:2 3365:3 3382:2 3386:1 3406:1 3426:1 3444:3 3450:1 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:2 3793:2 3796:1 3826:1 3827:4 3830:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4011:1 4013:1 4014:1 4018:1 4021:1 4041:1 4048:3 4091:1 4092:7 4093:1 4122:1 4137:3 4189:2 4193:1 4194:4 4210:4 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:4 4227:1 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:6 4646:1 4653:1 4655:1 4658:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4740:1 4755:1 4756:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:1 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:5 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:3 5225:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:2 5324:1 5326:1 5340:1 5345:1 5363:1 5379:1 5409:1 5410:1 5440:2 5442:1 5444:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:3 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:11 6002:1 6023:2 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:1 6216:1 6245:1 6248:3 6264:3 6274:1 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6421:1 6446:2 6461:1 6462:7 6463:3 6482:1 6485:3 6488:1 6507:1 6509:1 6522:22 6526:1 6534:1 6536:1 6541:20 6542:7 6546:1 6576:2 6591:1 6602:2 6603:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:3 6732:1 6741:2 6747:1 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:14 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7162:4 7169:4 7170:1 7172:1 7177:1 7178:1 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7260:1 7269:1 7280:1 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7328:1 7335:1 7342:1 7381:1 7388:3 7394:1 7435:1 7442:1 7445:1 7466:2 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7752:1 7788:1 7798:7 7804:1 7813:3 7817:1 7831:1 7862:1 7875:4 7882:1 7891:1 7898:1 7912:1 7917:1 7926:1 7929:2 7943:2 7962:1 7996:1 8032:1 8046:1 8053:1 8070:1 8078:3 8094:1 8114:1 8123:3 8135:1 8159:1 8171:8 8172:27 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8322:1 8327:1 8328:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8505:1 8516:2 8539:1 8547:1 8556:1 8571:1 8578:6 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8666:2 8676:1 8682:3 8704:1 8716:1 8718:1 8732:3 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:3 9053:1 9077:2 9079:8 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:5 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:3 9819:1 9825:2 9829:1 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:3 9910:2 9928:1 9935:2 9948:2 9957:3 9960:7 9962:1 9969:1 9971:1 9973:3 9985:1 9995:1 10005:1 10019:1 10040:1 10071:4 10077:1 10094:1 10098:1 10125:1 10147:1 10158:1 10161:2 10164:1 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10378:1 10383:2 10428:1 10430:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10737:10 10746:1 10751:2 10752:1 10762:1 10771:4 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:1 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:4 11143:2 11158:2 11173:1 11183:1 11186:3 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:1 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:2 11346:1 11348:1 11374:1 11380:1 11384:1 11396:1 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:3 11524:3 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11792:1 11800:1 11835:2 11861:2 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:1 13057:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:2 13097:1 13103:2 13111:3 13131:1 13133:1 13154:1 13174:1 13189:1 13203:1 13222:1 13232:2 13233:3 13243:4 13248:2 13254:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:4 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:1 13476:1 13484:1 13487:3 13505:1 13515:1 13585:1 13596:4 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13743:2 13744:1 13749:1 13751:1 13754:2 13757:1 13813:1 13817:2 13840:1 13842:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14038:1 14048:2 14062:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:5 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14443:1 14444:1 14454:1 14455:2 14458:3 14479:1 14486:2 14492:3 14502:1 14512:1 14531:1 14538:1 14539:2 14551:1 14562:1 14571:1 14576:1 14582:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14740:1 14756:1 14783:1 14784:2 14848:1 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:4 15273:2 15274:1 15302:1 15316:1 15318:1 15349:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:5 15454:1 15458:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:1750 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:1 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15997:1 15998:1 16001:1 16013:1 16018:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16182:1 16185:1 16205:2 16230:1 16233:3 16234:2 16236:2 16245:2 16257:1 16266:1 16267:4 16271:3 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16484:2 16493:1 16506:1 16536:1 16567:5 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16895:1 16902:3 16929:1 16943:4 16955:1 16957:1 16971:1 16973:7 16980:1 16987:5 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17127:1 17141:1 17142:1 17147:1 17155:1 17207:3 17210:1 17247:3 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:2 17543:1 17549:9 17552:1 17558:1 17565:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18033:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18163:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:4 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:1 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:2 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:2 18695:1 18698:2 18711:1 18714:1 18719:1 18742:1 18771:2 18774:2 18775:3 18789:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:3 18881:1 18896:1 18919:1 18932:3 18938:1 18957:1 18959:9 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:5 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19418:1 19453:3 19468:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19637:1 19638:2 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19703:1 19726:2 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19886:1 19907:2 19930:1 19935:1 19952:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:2 20390:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20459:1 20468:1 20475:11 20504:1 20512:3 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:1 20889:1 20894:1 20903:1 20941:2 20954:3 20963:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:3 21272:1 21279:1 21280:1 21292:1 21317:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:2 21427:3 21433:2 21444:1 21455:1 21464:4 21470:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:1 21609:1 21615:1 21638:2 21648:1 21657:2 21667:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22026:2 22043:1 22057:1 22063:1 22067:1 22074:1 22089:5 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22323:1 22332:1 22337:1 22347:3 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:2 22499:1 22513:4 22526:1 22582:1 22591:2 22620:1 22635:2 22645:3 22657:1 22664:1 22689:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23146:1 23148:1 23154:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23567:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:26 23645:1 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:7 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23961:1 23975:1 23977:1 23981:1 24018:5 24020:1 24030:1 24037:1 24043:1 24074:1 24079:5 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:2 24216:3 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:6 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24622:1 24624:1 24627:2 24633:1 24636:1 24637:1 24641:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 163:3 167:1 183:1 184:1 198:1 225:1 235:1 255:3 276:1 298:1 311:1 328:1 338:1 340:5 341:1 355:1 357:3 370:1 372:1 456:1 466:1 467:1 471:1 474:1 482:9 484:1 501:2 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:1 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:3 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:2 735:6 739:1 751:2 753:1 766:2 767:1 769:1 806:4 808:1 850:1 903:1 920:1 922:1 932:1 947:1 953:1 965:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1289:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:4 1370:2 1381:1 1392:1 1407:1 1444:1 1450:1 1451:1 1454:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1734:1 1737:2 1738:1 1745:1 1751:3 1759:1 1785:1 1793:1 1794:4 1799:3 1810:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:3 1883:1 1885:2 1886:2 1888:1 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:3 1921:1 1976:1 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2045:1 2054:4 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2269:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:18 2430:12 2446:1 2486:7 2490:1 2496:1 2498:1 2505:1 2506:5 2531:1 2571:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2760:1 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:2 2967:1 2983:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3046:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:2 3208:1 3210:1 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3364:2 3365:3 3382:2 3386:1 3406:1 3426:1 3444:3 3450:2 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:2 3793:2 3796:1 3826:1 3827:4 3830:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:1 3964:1 3969:1 3982:1 3987:1 3994:1 4011:1 4013:1 4014:1 4018:1 4021:1 4041:1 4048:3 4062:1 4091:1 4092:7 4093:1 4122:1 4137:3 4189:2 4193:1 4194:4 4210:5 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:4 4227:2 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:6 4646:1 4653:1 4655:1 4658:1 4679:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4740:1 4755:1 4756:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:2 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:10 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:1 5114:1 5117:1 5121:5 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:4 5225:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:3 5324:1 5326:1 5340:1 5345:1 5363:1 5378:1 5379:1 5409:1 5410:1 5440:2 5442:1 5444:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:4 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:11 6002:1 6023:2 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:2 6216:1 6245:1 6248:3 6264:3 6274:1 6279:2 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6421:1 6446:2 6461:1 6462:7 6463:3 6482:2 6485:3 6488:1 6507:1 6509:1 6522:22 6526:2 6534:1 6536:1 6541:20 6542:8 6546:1 6576:2 6591:1 6602:2 6603:1 6626:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:3 6732:1 6735:1 6739:1 6741:2 6747:1 6801:1 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:16 6974:3 6982:3 7018:1 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7145:1 7162:4 7169:4 7170:1 7172:1 7177:2 7178:2 7180:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7260:1 7269:1 7280:2 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7328:1 7335:1 7342:1 7381:1 7388:3 7392:1 7394:1 7435:1 7442:1 7445:1 7466:2 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7752:1 7788:1 7798:7 7804:1 7806:1 7813:3 7817:1 7831:1 7862:1 7875:5 7882:1 7891:1 7898:1 7912:1 7917:1 7926:1 7929:2 7943:2 7956:1 7962:1 7996:1 8032:1 8046:1 8053:1 8070:1 8078:3 8094:1 8114:1 8123:4 8135:1 8159:1 8171:8 8172:27 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8318:1 8322:1 8327:1 8328:1 8329:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8491:1 8505:1 8516:3 8539:1 8547:1 8556:1 8571:1 8578:6 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8666:2 8676:1 8682:3 8704:1 8716:1 8718:1 8732:3 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:3 9053:1 9077:2 9079:8 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:6 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:3 9819:1 9825:2 9829:1 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:3 9910:2 9928:1 9935:2 9948:2 9957:3 9960:7 9962:1 9969:1 9971:1 9973:4 9985:1 9995:1 10005:1 10019:1 10040:1 10071:5 10077:1 10094:1 10098:1 10125:1 10138:1 10147:1 10158:1 10161:2 10164:2 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10378:1 10383:2 10428:1 10430:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10696:1 10737:11 10746:1 10747:1 10751:2 10752:1 10762:1 10771:5 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:1 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:4 11143:2 11158:2 11173:1 11183:1 11186:3 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:1 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:2 11346:1 11348:1 11374:1 11380:1 11384:1 11396:2 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:3 11524:4 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11792:1 11800:1 11835:2 11861:2 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11942:1 11969:1 12014:1 12071:1 12080:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12697:1 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:1 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:2 13057:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:3 13097:1 13103:2 13111:3 13122:1 13131:1 13133:1 13154:1 13174:1 13189:1 13203:1 13222:1 13232:2 13233:3 13243:4 13248:2 13254:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:4 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:1 13476:1 13484:1 13487:3 13505:1 13515:1 13585:1 13596:4 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13742:1 13743:3 13744:1 13749:1 13751:1 13754:2 13757:1 13813:1 13817:2 13840:1 13842:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14015:1 14038:1 14048:2 14062:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:6 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14408:1 14443:1 14444:1 14454:1 14455:2 14458:4 14479:1 14486:2 14492:3 14502:1 14512:1 14531:1 14537:1 14538:1 14539:2 14551:1 14562:1 14571:1 14576:1 14582:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14740:1 14756:1 14783:1 14784:2 14848:1 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:4 15273:2 15274:1 15302:1 15316:1 15318:1 15349:1 15361:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:5 15454:1 15458:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:1769 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:2 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15997:1 15998:1 16001:1 16013:1 16018:1 16021:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16182:1 16184:1 16185:1 16205:2 16230:1 16233:3 16234:2 16236:2 16245:2 16257:1 16266:1 16267:4 16271:3 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:4 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16481:1 16484:2 16493:1 16506:1 16536:1 16567:6 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16742:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16895:1 16902:3 16929:1 16943:4 16955:1 16957:1 16971:1 16973:7 16980:1 16987:6 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17124:1 17127:1 17141:1 17142:1 17147:1 17155:1 17207:3 17210:1 17247:3 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:2 17543:1 17549:9 17552:1 17558:1 17565:2 17566:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18033:1 18045:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18163:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18226:4 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:2 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:2 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:2 18695:1 18698:2 18711:1 18714:2 18719:1 18742:1 18757:1 18771:2 18774:2 18775:3 18789:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:3 18881:1 18896:1 18919:1 18932:3 18938:1 18957:1 18959:9 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:1 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:6 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19409:1 19418:1 19453:3 19468:1 19479:1 19503:1 19548:1 19549:1 19562:1 19566:1 19628:1 19637:1 19638:2 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19701:1 19703:1 19726:2 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19805:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19886:1 19907:2 19930:1 19935:1 19952:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20253:2 20266:1 20267:1 20276:1 20288:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:2 20390:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20459:1 20468:1 20475:11 20504:1 20512:4 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:1 20889:1 20894:1 20903:1 20941:2 20954:3 20963:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:3 21272:1 21279:1 21280:1 21292:1 21317:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:2 21427:3 21433:2 21444:1 21455:1 21464:4 21470:1 21482:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:2 21609:1 21615:2 21638:2 21648:1 21657:2 21667:1 21668:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21821:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22026:2 22043:1 22057:1 22063:1 22067:1 22074:1 22089:5 22092:1 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22323:1 22332:1 22337:1 22347:4 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:2 22499:1 22513:4 22526:1 22582:1 22591:2 22620:1 22635:2 22645:3 22657:1 22664:1 22674:1 22689:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23146:1 23148:1 23154:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:2 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23567:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:26 23645:3 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:7 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23961:1 23975:1 23977:1 23981:1 24018:5 24020:1 24030:1 24037:1 24043:1 24074:2 24079:6 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:3 24216:3 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:6 24399:2 24400:1 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24579:1 24586:1 24598:1 24615:1 24622:1 24624:1 24627:2 24633:1 24636:1 24637:1 24641:1 24650:1 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 155:1 163:4 167:1 183:1 184:1 198:1 225:1 235:1 255:3 276:1 291:1 298:1 311:1 328:1 338:1 340:5 341:1 355:1 357:3 370:1 372:1 456:1 466:1 467:1 471:1 474:1 482:9 484:1 501:2 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:2 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:3 690:3 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:2 735:6 739:1 751:2 753:1 766:3 767:1 769:2 806:4 808:1 850:1 903:1 920:1 922:1 932:1 940:1 947:1 953:1 965:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1084:1 1124:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1199:1 1203:2 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1289:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:5 1370:2 1381:1 1392:1 1407:1 1444:1 1450:1 1451:1 1454:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1732:1 1734:1 1737:2 1738:1 1745:1 1751:3 1759:1 1785:1 1793:1 1794:4 1799:3 1810:1 1819:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:3 1883:2 1885:2 1886:2 1888:2 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:3 1921:1 1976:1 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2045:2 2054:4 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2269:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:18 2430:12 2446:1 2486:7 2490:1 2496:1 2498:1 2505:1 2506:5 2531:1 2550:1 2571:1 2580:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2760:1 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2912:4 2913:1 2914:1 2925:1 2949:2 2967:1 2983:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3046:1 3047:2 3064:1 3090:1 3091:1 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:2 3208:1 3210:2 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3364:2 3365:3 3382:2 3386:1 3406:1 3426:1 3444:4 3450:2 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:2 3793:2 3796:1 3826:1 3827:4 3830:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:2 3964:1 3969:1 3982:1 3987:1 3994:1 4011:1 4013:1 4014:1 4018:1 4021:1 4041:1 4048:3 4062:1 4091:1 4092:7 4093:1 4122:1 4137:3 4189:2 4193:1 4194:4 4210:5 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:4 4227:2 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4366:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:6 4646:1 4653:1 4655:1 4658:1 4679:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4740:1 4755:1 4756:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:2 4834:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:11 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:2 5114:1 5117:1 5121:5 5122:1 5125:1 5134:2 5195:1 5196:1 5215:1 5223:5 5225:1 5228:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:3 5324:1 5326:1 5340:1 5345:1 5363:1 5378:1 5379:1 5409:1 5410:1 5440:2 5442:1 5444:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:4 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:2 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:11 6002:1 6023:2 6036:1 6047:1 6054:2 6094:1 6113:1 6114:1 6187:2 6216:1 6245:1 6247:1 6248:3 6264:3 6274:1 6279:2 6293:1 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6404:2 6407:1 6416:1 6421:1 6446:2 6461:1 6462:7 6463:3 6482:3 6485:3 6488:1 6505:1 6507:1 6509:1 6522:24 6526:2 6534:1 6536:1 6541:20 6542:8 6546:1 6576:2 6591:1 6602:2 6603:1 6626:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6658:1 6676:1 6711:3 6732:1 6735:1 6739:1 6741:2 6747:1 6801:1 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:16 6974:3 6982:3 7018:2 7058:1 7069:2 7092:1 7094:1 7099:1 7102:1 7106:1 7114:2 7133:2 7139:2 7145:1 7162:4 7169:4 7170:1 7172:1 7177:2 7178:2 7180:1 7184:1 7186:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7260:1 7269:1 7280:2 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7328:1 7335:1 7342:1 7381:1 7388:3 7392:1 7394:1 7435:1 7442:1 7445:1 7466:2 7471:2 7476:2 7490:1 7508:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:5 7674:1 7685:1 7702:1 7713:1 7731:1 7752:1 7788:1 7798:7 7804:1 7806:1 7813:3 7817:1 7831:1 7862:1 7875:5 7882:1 7891:1 7898:1 7912:1 7917:1 7926:1 7929:2 7943:2 7956:1 7962:1 7996:1 8032:1 8046:1 8053:1 8070:1 8078:3 8094:1 8114:1 8123:4 8135:1 8159:1 8171:8 8172:27 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8318:1 8322:1 8327:1 8328:1 8329:1 8344:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8491:1 8505:1 8516:3 8539:1 8547:1 8556:1 8571:1 8578:6 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8666:2 8676:1 8682:3 8704:1 8716:1 8718:1 8720:1 8732:3 8735:4 8757:2 8772:1 8799:1 8808:1 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:3 9053:1 9077:2 9079:8 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:6 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:4 9819:1 9825:2 9829:1 9843:6 9845:1 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:3 9910:2 9928:1 9935:2 9948:2 9957:3 9960:7 9962:1 9969:1 9971:1 9973:4 9985:1 9995:1 10005:1 10019:1 10040:1 10071:5 10077:1 10094:1 10098:1 10125:1 10138:1 10147:1 10158:1 10161:2 10164:2 10166:1 10168:1 10187:1 10189:1 10213:1 10223:1 10229:1 10232:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10378:1 10383:2 10428:1 10430:1 10461:1 10467:1 10482:1 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10696:1 10737:11 10746:1 10747:1 10751:2 10752:1 10762:1 10771:5 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:2 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:4 11143:2 11158:2 11173:1 11183:1 11186:3 11189:1 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:1 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11342:2 11346:1 11348:1 11374:1 11380:1 11384:1 11396:2 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:3 11524:4 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11792:1 11800:1 11835:2 11861:2 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11936:1 11942:1 11969:1 12014:1 12071:1 12080:1 12102:1 12105:1 12109:1 12125:1 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12198:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:1 12469:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:1 12577:1 12578:1 12591:1 12594:2 12601:1 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12697:1 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:2 13009:1 13021:1 13023:1 13025:1 13034:1 13037:1 13038:1 13054:2 13057:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:3 13097:1 13103:2 13111:3 13122:1 13131:1 13133:1 13154:1 13174:1 13189:2 13203:1 13222:1 13232:2 13233:3 13243:4 13248:2 13254:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:4 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:2 13476:1 13484:1 13487:3 13505:1 13515:1 13561:1 13562:1 13585:1 13596:4 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13742:1 13743:3 13744:1 13749:1 13751:1 13754:2 13757:1 13813:1 13817:2 13840:1 13842:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14015:1 14038:1 14048:2 14062:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:6 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14408:1 14443:1 14444:1 14454:1 14455:2 14458:4 14479:1 14486:2 14492:3 14502:1 14512:1 14531:1 14537:1 14538:1 14539:2 14551:1 14555:1 14562:1 14571:1 14576:1 14582:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14739:1 14740:1 14756:1 14783:1 14784:2 14848:1 14896:3 14904:1 14919:1 14943:1 14951:1 14981:2 14983:1 15016:1 15032:2 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:1 15236:1 15249:1 15258:4 15273:2 15274:1 15302:1 15316:1 15318:1 15349:1 15361:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:6 15454:1 15458:1 15466:1 15491:1 15505:2 15506:1 15509:1 15510:1 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:1827 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:2 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15997:1 15998:1 16001:1 16013:1 16018:1 16021:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16182:1 16184:1 16185:1 16205:2 16230:1 16233:3 16234:2 16236:2 16245:2 16257:2 16266:1 16267:4 16271:3 16306:1 16315:1 16317:1 16337:1 16347:1 16355:1 16362:1 16368:5 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16481:1 16484:2 16493:1 16506:1 16536:1 16567:6 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16741:1 16742:1 16747:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16893:1 16895:1 16902:3 16929:1 16943:4 16955:1 16957:1 16971:1 16973:7 16980:1 16987:6 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17124:1 17127:1 17141:1 17142:1 17147:1 17155:1 17207:3 17210:1 17247:3 17258:2 17303:1 17337:1 17339:1 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17540:2 17543:2 17549:9 17552:1 17558:1 17565:2 17566:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17656:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:1 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18025:1 18033:1 18045:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:2 18149:2 18157:2 18161:2 18163:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18225:1 18226:4 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:2 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:2 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:2 18695:1 18698:2 18711:1 18714:2 18719:1 18742:1 18757:1 18771:2 18774:2 18775:3 18789:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:4 18881:1 18896:1 18919:2 18932:3 18938:1 18957:1 18959:9 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:2 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:6 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19409:1 19418:1 19453:3 19468:1 19479:1 19503:1 19548:1 19549:1 19562:1 19566:1 19579:1 19628:1 19637:1 19638:2 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19701:1 19703:1 19726:2 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19805:1 19807:4 19836:1 19837:1 19845:1 19848:2 19859:1 19872:1 19877:1 19886:1 19907:2 19930:1 19935:1 19952:1 19958:1 19983:1 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20234:1 20253:2 20266:1 20267:1 20276:1 20288:1 20297:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:2 20390:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20459:1 20468:1 20475:11 20504:1 20512:4 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:1 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20798:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:1 20889:1 20894:1 20903:1 20941:2 20954:3 20963:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:4 21272:1 21279:1 21280:1 21292:1 21317:1 21329:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:2 21427:3 21433:2 21444:1 21455:1 21464:5 21470:1 21482:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:2 21609:1 21615:2 21638:2 21648:1 21657:2 21667:1 21668:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21821:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22026:2 22043:1 22057:1 22063:1 22067:1 22074:1 22089:6 22092:1 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22323:1 22332:1 22337:1 22347:4 22353:1 22354:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:2 22499:1 22513:4 22526:1 22582:1 22591:2 22612:1 22620:1 22635:2 22645:3 22657:1 22664:1 22674:1 22689:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23144:6 23146:1 23148:1 23154:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:3 23353:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23567:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:26 23645:3 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:7 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23961:1 23975:1 23977:1 23981:1 24018:5 24020:1 24030:1 24037:1 24043:1 24074:2 24079:6 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24204:1 24209:1 24213:4 24215:3 24216:3 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:6 24399:2 24400:2 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24573:1 24579:1 24586:1 24598:1 24615:1 24622:1 24624:1 24627:2 24633:1 24636:1 24637:1 24641:1 24650:2 24652:2 24654:1 24656:1 24658:1 24660:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 150:1 155:1 163:4 167:1 183:1 184:1 198:1 225:2 235:1 255:3 276:1 291:1 298:1 311:1 328:1 338:1 340:5 341:1 355:1 357:3 370:1 372:1 456:1 466:1 467:1 471:1 474:1 482:9 484:1 501:2 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:2 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:3 690:4 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:3 735:6 739:1 751:2 753:1 766:3 767:1 769:3 806:4 808:1 850:1 903:1 920:1 922:1 932:1 940:1 947:1 953:1 965:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1053:1 1084:1 1124:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1199:1 1203:3 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1289:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:5 1370:2 1381:1 1392:1 1407:1 1444:1 1450:1 1451:1 1454:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1732:1 1734:1 1737:2 1738:2 1745:1 1751:3 1759:1 1785:1 1793:1 1794:5 1799:3 1810:1 1819:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:3 1883:2 1885:2 1886:2 1888:2 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:3 1921:1 1976:2 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2033:1 2045:2 2054:4 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2269:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:19 2430:13 2446:1 2486:7 2490:1 2496:2 2498:1 2505:1 2506:5 2531:1 2550:1 2571:1 2580:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2750:1 2760:1 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2910:1 2912:4 2913:1 2914:1 2925:1 2949:2 2967:1 2983:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3046:1 3047:2 3064:1 3090:1 3091:2 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3184:1 3185:2 3208:1 3210:2 3226:2 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3364:2 3365:3 3382:2 3386:1 3406:1 3426:1 3444:4 3450:2 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3675:1 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:2 3793:2 3796:1 3826:1 3827:4 3830:1 3832:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:2 3964:1 3969:1 3982:1 3987:1 3994:1 4011:1 4013:1 4014:1 4018:1 4021:1 4041:1 4048:3 4062:1 4091:1 4092:8 4093:1 4122:1 4137:3 4189:3 4193:1 4194:4 4210:5 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:5 4227:2 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4366:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:6 4646:1 4653:1 4655:1 4658:1 4679:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:3 4740:1 4755:1 4756:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:2 4834:1 4840:1 4868:1 4870:1 4906:3 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:11 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:2 5114:1 5117:1 5121:5 5122:1 5125:1 5134:2 5152:1 5195:1 5196:1 5215:1 5223:5 5225:1 5228:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:3 5324:1 5326:1 5340:1 5345:1 5363:1 5378:1 5379:1 5409:1 5410:1 5440:2 5442:2 5444:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:4 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:2 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:3 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:11 6002:1 6023:2 6036:1 6047:1 6049:1 6054:2 6094:1 6113:1 6114:1 6187:2 6216:1 6245:1 6247:1 6248:3 6264:3 6274:1 6279:2 6293:1 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6394:1 6404:2 6407:1 6416:1 6421:1 6446:2 6452:1 6461:1 6462:8 6463:3 6482:4 6485:3 6488:1 6505:1 6507:1 6509:1 6522:24 6526:2 6534:1 6536:1 6541:20 6542:8 6546:1 6576:2 6591:1 6602:2 6603:1 6626:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6655:1 6658:1 6676:1 6711:3 6732:1 6735:1 6739:1 6741:2 6747:1 6801:1 6826:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:17 6974:3 6982:3 7018:2 7058:1 7069:2 7092:2 7094:1 7099:1 7100:1 7102:1 7106:1 7114:3 7133:2 7139:2 7145:1 7162:4 7169:4 7170:1 7172:1 7177:2 7178:2 7180:1 7184:1 7186:1 7213:1 7221:1 7234:4 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7253:1 7260:1 7266:1 7269:1 7280:2 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7318:1 7328:1 7335:1 7342:1 7381:1 7388:3 7392:1 7394:1 7435:2 7442:1 7445:1 7466:2 7471:2 7476:2 7490:1 7508:1 7511:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:6 7674:1 7685:1 7702:1 7713:1 7731:2 7752:1 7788:1 7798:7 7804:1 7806:1 7813:3 7817:1 7827:1 7831:1 7862:1 7875:5 7882:1 7891:1 7898:1 7912:2 7917:1 7926:1 7929:2 7943:2 7956:1 7962:1 7996:1 8032:1 8046:1 8053:1 8067:1 8070:1 8078:3 8094:1 8114:1 8123:4 8135:1 8159:1 8171:8 8172:27 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8318:1 8322:1 8327:1 8328:1 8329:1 8344:1 8363:1 8433:1 8435:2 8461:2 8476:1 8484:1 8487:4 8491:1 8505:1 8516:3 8539:1 8547:1 8556:1 8571:1 8578:6 8580:1 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8666:2 8676:1 8682:3 8704:1 8716:1 8718:1 8720:1 8732:3 8735:5 8757:2 8772:1 8799:1 8808:2 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:4 9053:1 9077:2 9079:9 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9368:1 9375:1 9384:2 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9482:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9576:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:6 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9818:4 9819:1 9825:2 9829:1 9843:6 9845:2 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:3 9910:2 9928:1 9935:2 9948:2 9957:4 9960:7 9962:1 9969:1 9971:1 9973:4 9985:1 9995:1 10005:1 10019:1 10040:1 10071:5 10077:1 10094:1 10098:1 10125:1 10138:1 10147:1 10158:1 10161:2 10164:2 10166:1 10168:1 10187:2 10189:1 10213:1 10223:1 10229:1 10232:1 10255:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10378:2 10383:3 10428:1 10430:1 10461:1 10467:1 10482:2 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:2 10620:1 10629:1 10644:1 10696:1 10737:12 10746:1 10747:1 10751:2 10752:1 10762:1 10771:5 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10836:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:2 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:4 11143:2 11158:2 11173:1 11183:1 11186:3 11189:2 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:2 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11333:1 11342:2 11346:1 11348:1 11374:1 11380:1 11384:1 11396:2 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11457:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:3 11521:1 11524:4 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11792:1 11800:1 11835:2 11845:1 11861:2 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11936:1 11942:1 11969:1 12014:1 12071:1 12080:1 12102:1 12105:1 12109:1 12125:2 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12198:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:2 12465:1 12469:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:1 12576:2 12577:1 12578:1 12591:1 12594:2 12601:1 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12697:1 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:1 12848:1 12854:1 12886:1 12929:1 12952:1 12968:2 13009:1 13021:1 13023:2 13025:1 13034:1 13037:1 13038:1 13054:2 13057:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:3 13097:1 13103:2 13111:3 13122:1 13131:1 13133:1 13154:1 13174:1 13189:2 13203:1 13222:1 13232:2 13233:3 13243:5 13248:2 13253:1 13254:1 13264:1 13266:2 13298:1 13317:2 13321:1 13332:1 13348:1 13366:1 13368:5 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:2 13476:1 13484:2 13487:3 13505:1 13515:1 13561:1 13562:1 13585:1 13596:4 13613:1 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13742:1 13743:3 13744:1 13747:1 13749:1 13751:1 13754:2 13757:1 13813:1 13817:2 13820:1 13840:1 13842:1 13845:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14015:1 14038:1 14048:2 14062:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:6 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14408:1 14443:1 14444:1 14454:1 14455:2 14458:4 14479:1 14486:2 14492:3 14502:1 14512:1 14531:1 14537:1 14538:1 14539:2 14551:1 14555:1 14562:1 14571:1 14576:1 14579:1 14582:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14739:1 14740:1 14756:1 14783:1 14784:2 14786:1 14848:1 14896:3 14904:1 14919:1 14943:1 14945:1 14951:1 14981:2 14983:1 15016:1 15032:2 15049:1 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:2 15236:1 15249:1 15258:4 15273:3 15274:1 15302:1 15316:1 15318:1 15349:1 15361:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:6 15454:1 15458:1 15466:1 15491:1 15505:2 15506:2 15509:1 15510:2 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:1913 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:3 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15997:1 15998:1 16001:1 16013:1 16018:1 16021:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16182:2 16184:1 16185:1 16205:2 16230:1 16233:3 16234:2 16236:2 16245:2 16257:2 16266:1 16267:4 16271:4 16306:1 16315:1 16317:2 16337:1 16347:1 16355:1 16362:1 16368:5 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16481:1 16484:2 16493:1 16506:1 16536:1 16567:6 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16741:1 16742:1 16747:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16893:1 16895:1 16902:3 16929:1 16943:4 16955:1 16957:1 16971:1 16973:7 16980:1 16987:6 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17124:1 17127:1 17141:1 17142:1 17147:1 17155:1 17207:4 17210:1 17247:3 17258:2 17303:1 17337:1 17339:2 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17462:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:3 17538:1 17540:3 17543:2 17549:9 17552:1 17558:1 17565:2 17566:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17656:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:2 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18025:1 18033:1 18045:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:3 18149:2 18157:2 18161:2 18163:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18225:1 18226:4 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:2 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:2 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:2 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18693:3 18695:2 18698:2 18711:1 18714:2 18719:1 18742:1 18757:1 18771:2 18774:2 18775:3 18789:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:5 18847:1 18863:1 18865:1 18869:1 18874:4 18881:1 18896:1 18919:2 18932:3 18938:1 18948:1 18957:1 18959:10 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:2 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:6 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19409:1 19418:1 19453:3 19468:1 19479:1 19503:1 19538:1 19548:1 19549:1 19562:1 19566:1 19579:1 19628:1 19637:1 19638:3 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19701:1 19703:1 19723:1 19726:3 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19805:1 19807:4 19836:1 19837:1 19845:1 19848:3 19859:1 19872:2 19877:1 19886:1 19907:2 19930:1 19935:1 19952:2 19958:1 19983:2 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20234:1 20253:2 20266:1 20267:1 20276:1 20288:1 20297:1 20320:1 20321:1 20329:5 20332:1 20359:6 20366:1 20376:2 20390:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20459:1 20468:1 20475:11 20504:1 20512:4 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20578:1 20583:1 20594:1 20598:1 20599:1 20613:4 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:2 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20798:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:1 20889:1 20894:1 20901:1 20903:1 20941:2 20954:3 20963:1 20977:1 20982:1 20991:1 20994:2 21002:4 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:4 21272:1 21279:1 21280:1 21292:1 21317:1 21329:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:3 21427:3 21433:2 21444:1 21455:1 21464:5 21470:1 21482:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:2 21609:1 21615:2 21638:2 21648:1 21657:2 21667:1 21668:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21821:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22026:2 22043:1 22057:1 22063:1 22067:1 22074:1 22089:6 22091:1 22092:1 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22302:1 22323:1 22332:1 22337:1 22347:4 22353:1 22354:1 22356:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:2 22499:1 22513:4 22526:1 22582:1 22591:2 22612:1 22620:1 22635:2 22645:3 22657:1 22664:1 22674:1 22689:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23139:1 23144:7 23146:1 23148:1 23154:1 23157:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23243:1 23247:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:3 23353:1 23392:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23540:2 23557:1 23558:2 23559:2 23567:2 23568:1 23569:1 23583:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:26 23645:3 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:8 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23954:1 23960:2 23961:1 23975:1 23977:1 23981:1 24018:6 24020:1 24030:1 24037:1 24043:1 24074:2 24079:7 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24196:1 24204:1 24209:1 24213:4 24215:3 24216:3 24219:1 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:7 24399:2 24400:2 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24573:1 24579:1 24586:1 24598:1 24615:1 24622:1 24624:1 24627:2 24633:1 24636:1 24637:1 24641:1 24650:2 24652:2 24654:1 24656:1 24658:1 24660:1 24666:1 24689:1 24695:1 24728:1 24736:1
19 2:1 32:1 35:1 43:1 48:1 79:1 85:1 94:1 118:1 132:3 150:1 155:1 163:4 167:1 183:1 184:1 198:1 225:2 235:1 255:3 276:1 291:1 298:1 311:1 328:1 338:1 340:5 341:1 355:1 357:3 370:1 372:1 456:1 466:1 467:1 471:1 474:1 482:9 484:1 501:2 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:2 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:3 690:4 692:3 699:2 700:1 703:1 714:1 725:1 727:1 731:3 735:6 739:1 751:2 753:1 766:3 767:1 769:3 806:5 808:1 850:1 903:1 920:1 922:1 932:1 940:1 947:1 953:1 965:1 969:2 984:1 992:2 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1053:1 1084:1 1124:1 1141:1 1145:1 1152:1 1164:1 1190:3 1195:2 1199:1 1203:3 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1289:1 1299:1 1318:1 1323:1 1331:1 1336:1 1354:6 1370:2 1381:1 1392:1 1407:1 1444:1 1450:1 1451:1 1454:1 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1732:1 1734:1 1737:2 1738:2 1745:1 1751:3 1759:1 1765:1 1785:1 1793:1 1794:5 1799:3 1810:1 1819:1 1838:1 1844:2 1851:1 1863:1 1872:1 1880:3 1883:2 1885:2 1886:2 1888:2 1889:1 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:3 1921:1 1976:2 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2033:1 2045:2 2054:4 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2269:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:20 2430:13 2446:1 2486:7 2490:1 2496:2 2498:1 2505:1 2506:5 2531:1 2550:1 2571:1 2580:1 2632:1 2647:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2750:1 2760:1 2768:1 2769:2 2780:1 2784:1 2785:4 2823:1 2829:1 2833:2 2896:1 2910:1 2912:4 2913:1 2914:1 2925:1 2949:2 2967:1 2983:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3046:1 3047:2 3064:1 3090:1 3091:2 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3176:1 3184:1 3185:2 3208:1 3210:2 3226:2 3247:1 3257:1 3258:1 3264:1 3267:1 3270:1 3282:3 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3364:2 3365:3 3382:2 3386:1 3406:1 3426:1 3444:5 3450:2 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3522:1 3527:1 3528:1 3531:3 3571:1 3622:3 3645:1 3665:2 3670:2 3675:1 3689:1 3697:1 3711:1 3712:3 3713:1 3748:1 3767:1 3773:2 3793:2 3796:1 3826:1 3827:4 3830:1 3832:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3947:2 3964:1 3969:1 3982:1 3987:1 3994:1 4011:1 4013:1 4014:1 4018:1 4021:1 4041:1 4048:3 4062:1 4091:1 4092:9 4093:1 4122:1 4137:3 4189:3 4193:1 4194:4 4210:5 4212:4 4213:1 4216:1 4217:1 4218:1 4224:1 4226:5 4227:2 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4366:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:7 4646:1 4653:1 4655:1 4658:1 4679:1 4695:2 4696:2 4712:1 4715:1 4736:1 4737:4 4740:1 4755:1 4756:1 4764:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:2 4834:1 4840:1 4868:1 4870:1 4906:4 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:13 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:2 5091:1 5093:1 5098:2 5114:1 5117:1 5121:5 5122:1 5125:1 5134:2 5152:1 5195:1 5196:2 5215:1 5223:6 5225:1 5228:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5307:1 5308:2 5310:2 5312:4 5313:1 5318:2 5319:1 5321:3 5324:1 5326:1 5340:1 5345:1 5363:1 5378:1 5379:1 5409:1 5410:1 5440:2 5442:2 5444:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5569:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:4 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:3 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:3 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:12 6002:1 6023:2 6036:1 6047:1 6049:1 6054:2 6094:1 6113:1 6114:1 6166:1 6187:2 6216:1 6245:1 6247:1 6248:3 6264:3 6274:1 6279:2 6293:1 6295:2 6298:1 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6394:1 6404:2 6407:1 6416:1 6421:1 6446:2 6452:1 6461:1 6462:8 6463:3 6482:4 6485:3 6488:1 6505:1 6507:1 6509:1 6522:25 6526:2 6534:1 6536:1 6541:21 6542:8 6546:1 6576:2 6591:1 6602:2 6603:1 6626:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6655:1 6658:1 6676:1 6711:4 6732:1 6735:1 6739:1 6741:2 6747:1 6801:1 6826:1 6833:1 6846:1 6859:1 6861:1 6871:2 6875:3 6884:1 6911:1 6927:1 6931:1 6949:2 6953:18 6974:3 6982:3 7018:2 7058:1 7069:2 7092:2 7094:1 7099:1 7100:1 7102:1 7106:1 7114:3 7133:2 7139:2 7145:1 7162:4 7169:4 7170:1 7172:1 7177:2 7178:2 7180:1 7184:1 7186:1 7213:1 7221:1 7234:5 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:1 7248:1 7253:1 7260:1 7266:1 7269:1 7278:1 7280:2 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7318:1 7328:1 7335:1 7342:1 7381:1 7388:3 7392:1 7394:1 7435:2 7442:1 7445:1 7466:2 7471:2 7476:2 7490:1 7508:1 7511:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:6 7674:1 7685:1 7702:1 7713:1 7731:2 7752:1 7788:1 7798:7 7804:1 7806:1 7813:3 7817:1 7827:1 7831:1 7862:1 7875:5 7882:1 7891:1 7898:1 7912:2 7917:1 7926:1 7929:2 7943:2 7956:1 7962:1 7996:1 8032:1 8046:1 8053:1 8067:1 8070:1 8078:3 8094:1 8114:1 8123:4 8135:1 8159:1 8171:8 8172:28 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8318:1 8322:1 8327:1 8328:1 8329:1 8344:1 8363:1 8433:1 8435:2 8437:1 8461:3 8476:1 8484:1 8487:4 8491:1 8505:1 8516:3 8539:1 8547:1 8556:1 8571:1 8578:6 8580:1 8584:1 8598:1 8613:1 8628:1 8634:1 8665:1 8666:2 8676:1 8682:3 8704:1 8705:1 8716:1 8718:1 8720:1 8732:3 8735:5 8757:2 8772:1 8799:1 8808:2 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:4 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:4 9053:1 9077:2 9079:9 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9260:1 9286:4 9289:1 9301:4 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9368:1 9375:1 9384:3 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9482:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9576:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:6 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9802:1 9818:4 9819:1 9825:2 9829:1 9843:6 9845:2 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:4 9910:3 9928:1 9935:2 9948:2 9957:4 9960:7 9962:1 9969:1 9971:1 9973:4 9985:1 9995:1 10005:1 10019:1 10040:1 10071:5 10077:1 10094:1 10098:1 10125:1 10138:1 10147:1 10158:1 10161:2 10164:2 10166:1 10168:1 10187:2 10189:1 10213:1 10223:1 10229:1 10232:1 10255:1 10275:1 10284:1 10290:1 10298:1 10316:2 10329:1 10378:2 10383:3 10428:1 10430:1 10461:1 10467:1 10482:2 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:3 10620:1 10629:1 10644:1 10696:1 10737:12 10746:1 10747:1 10751:2 10752:1 10762:1 10769:1 10771:5 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10836:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:2 11074:4 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:5 11143:3 11158:2 11173:1 11183:1 11186:3 11189:2 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:2 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11333:1 11342:2 11346:1 11348:1 11374:1 11380:1 11384:1 11396:2 11399:1 11408:1 11411:1 11413:2 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11457:1 11464:1 11469:1 11473:1 11476:1 11503:1 11513:3 11516:1 11520:3 11521:1 11524:4 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11792:1 11800:1 11835:2 11845:1 11846:1 11861:2 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11923:1 11936:1 11942:1 11952:1 11969:1 12014:1 12071:1 12080:1 12102:1 12105:1 12109:1 12125:2 12131:1 12136:1 12147:1 12158:2 12163:1 12172:1 12173:2 12182:1 12184:1 12191:1 12194:1 12198:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:2 12382:1 12401:1 12424:1 12426:2 12429:1 12457:2 12465:1 12469:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:2 12576:2 12577:1 12578:1 12591:1 12594:2 12601:1 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12697:1 12701:1 12708:2 12736:1 12746:1 12755:1 12781:1 12801:1 12822:1 12829:1 12837:2 12848:1 12854:1 12886:1 12929:1 12950:1 12952:1 12968:2 13009:1 13021:1 13023:2 13025:1 13034:1 13037:1 13038:1 13054:2 13057:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:3 13097:1 13103:2 13111:3 13122:1 13131:1 13133:1 13154:1 13174:1 13189:2 13203:1 13222:1 13232:2 13233:3 13243:5 13248:2 13253:1 13254:1 13264:1 13266:2 13298:1 13317:3 13321:1 13332:1 13348:1 13366:1 13368:5 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13453:1 13469:2 13476:1 13484:2 13487:3 13505:1 13515:1 13561:1 13562:1 13585:1 13596:4 13613:2 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13727:1 13728:1 13731:1 13734:1 13742:1 13743:3 13744:1 13747:1 13749:1 13751:1 13754:2 13757:1 13764:1 13813:1 13817:2 13820:1 13840:1 13842:1 13845:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14015:1 14038:1 14048:2 14062:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14098:1 14119:11 14135:1 14151:2 14173:6 14176:1 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14408:1 14443:1 14444:1 14454:1 14455:2 14458:4 14479:1 14486:2 14492:3 14502:1 14512:1 14531:1 14537:1 14538:1 14539:2 14551:1 14555:1 14562:1 14571:1 14576:1 14579:1 14582:1 14601:1 14608:1 14623:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14739:1 14740:1 14756:1 14783:1 14784:2 14786:1 14848:1 14896:3 14904:1 14919:1 14943:1 14945:1 14951:1 14981:2 14983:1 15016:1 15032:2 15049:1 15050:3 15054:3 15066:1 15098:1 15114:4 15121:1 15136:2 15150:1 15194:1 15200:1 15202:1 15223:2 15236:1 15249:1 15258:4 15273:3 15274:1 15302:1 15316:1 15318:1 15349:1 15361:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:6 15454:1 15458:1 15466:1 15491:1 15505:2 15506:2 15509:1 15510:2 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:1976 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:1 15755:2 15771:1 15775:1 15776:1 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:3 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15997:2 15998:1 16001:1 16013:1 16018:1 16021:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16182:2 16184:1 16185:1 16205:3 16230:1 16233:3 16234:2 16236:2 16245:2 16257:2 16266:1 16267:4 16271:4 16306:1 16315:1 16317:2 16337:1 16347:1 16355:1 16362:1 16368:5 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16481:1 16484:2 16493:1 16506:1 16536:1 16567:6 16573:2 16585:1 16587:1 16591:1 16608:1 16614:1 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16675:2 16683:1 16697:1 16710:1 16723:1 16741:1 16742:1 16747:1 16804:2 16828:1 16829:3 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16893:1 16895:1 16902:3 16929:1 16943:4 16955:1 16956:1 16957:1 16971:1 16973:7 16980:1 16987:6 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17124:1 17127:1 17139:1 17141:1 17142:1 17147:1 17155:1 17207:4 17210:1 17247:3 17258:2 17303:1 17337:1 17339:2 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17462:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:4 17538:1 17540:3 17543:2 17549:9 17552:1 17558:1 17565:2 17566:1 17587:1 17593:1 17610:1 17613:1 17614:1 17636:1 17650:1 17656:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17728:1 17735:1 17741:1 17750:1 17765:2 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17940:1 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18025:1 18033:1 18045:1 18048:1 18050:2 18081:1 18094:1 18099:1 18109:1 18118:1 18133:3 18149:2 18157:2 18161:2 18163:1 18167:1 18173:2 18174:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18225:1 18226:4 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18301:1 18316:1 18324:2 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:3 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:2 18602:1 18614:1 18621:1 18623:1 18637:2 18642:2 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18681:1 18693:3 18695:2 18698:2 18711:1 18714:2 18719:1 18742:1 18757:1 18771:2 18774:2 18775:3 18789:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:6 18846:1 18847:1 18863:1 18865:1 18869:1 18874:4 18881:1 18896:1 18919:2 18932:3 18938:1 18948:1 18957:1 18959:10 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:4 19001:2 19038:1 19045:1 19047:1 19049:2 19050:2 19057:1 19063:1 19074:1 19081:5 19084:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:6 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19409:1 19418:1 19453:3 19468:1 19471:1 19479:1 19503:1 19538:1 19548:1 19549:1 19562:1 19566:1 19579:1 19628:1 19637:1 19638:3 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19701:1 19703:1 19723:1 19726:3 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19805:1 19807:4 19836:1 19837:1 19845:1 19848:3 19859:1 19872:2 19877:1 19886:1 19907:2 19930:1 19935:1 19952:2 19958:1 19983:2 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20074:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20234:1 20253:2 20266:1 20267:1 20276:1 20286:1 20288:1 20297:1 20320:1 20321:1 20329:5 20332:1 20349:1 20359:6 20366:1 20376:2 20390:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20459:1 20468:1 20475:11 20504:1 20512:4 20554:1 20555:2 20556:1 20565:1 20568:1 20570:2 20574:2 20578:1 20583:1 20594:1 20598:1 20599:1 20613:4 20618:1 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:2 20707:1 20713:1 20718:1 20764:1 20773:1 20784:1 20798:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:2 20889:1 20894:1 20901:1 20903:1 20941:2 20954:3 20963:1 20977:1 20982:1 20991:1 20994:2 21002:4 21036:1 21037:1 21058:6 21059:2 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:4 21272:1 21279:1 21280:1 21292:1 21313:1 21317:1 21329:1 21334:2 21335:3 21358:1 21373:2 21396:1 21397:1 21403:2 21425:3 21427:3 21433:2 21444:1 21455:1 21464:6 21470:1 21482:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:2 21609:1 21615:2 21638:2 21648:1 21657:2 21667:1 21668:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21821:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22026:2 22043:1 22057:1 22063:1 22067:1 22074:1 22089:6 22091:1 22092:1 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22302:1 22323:1 22332:1 22337:1 22347:4 22353:1 22354:1 22356:1 22359:3 22372:1 22373:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:3 22499:1 22513:4 22526:1 22582:1 22591:2 22612:1 22620:1 22635:2 22645:3 22657:1 22664:1 22674:1 22689:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22949:1 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23080:1 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23139:1 23144:7 23146:1 23148:1 23154:1 23157:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23243:1 23247:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:1 23325:1 23328:2 23330:3 23353:1 23392:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23525:1 23540:2 23557:1 23558:2 23559:2 23567:2 23568:1 23569:1 23583:1 23589:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:27 23645:4 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:8 23799:1 23803:2 23804:1 23821:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23949:1 23954:1 23960:2 23961:2 23975:1 23977:1 23981:1 24018:6 24020:1 24030:1 24037:1 24043:1 24074:2 24079:7 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24196:1 24204:1 24209:1 24213:4 24215:3 24216:3 24219:1 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24376:1 24380:7 24399:3 24400:2 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24573:1 24579:1 24586:2 24597:1 24598:1 24615:1 24622:1 24624:1 24627:2 24633:1 24636:1 24637:1 24641:1 24646:1 24650:2 24652:2 24654:1 24656:1 24658:1 24660:1 24666:1 24689:1 24695:1 24728:1 24736:1
19 2:1 19:1 32:1 35:1 43:1 48:1 52:1 79:1 85:1 94:1 118:1 132:3 150:1 155:1 163:4 167:1 183:1 184:1 198:1 225:2 235:1 252:1 255:4 276:1 291:1 298:1 311:1 328:1 336:1 338:1 340:5 341:1 355:1 357:3 370:1 372:1 433:2 456:1 466:1 467:1 471:1 474:1 482:11 484:1 501:2 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:2 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:3 690:4 692:3 699:2 700:1 703:1 713:1 714:1 725:1 727:1 728:1 731:4 735:6 739:1 751:2 753:1 766:3 767:1 769:3 806:5 808:1 850:1 903:1 920:1 922:3 932:1 940:1 947:1 953:1 965:1 969:2 984:1 992:3 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1053:1 1084:1 1124:1 1141:1 1145:1 1152:1 1164:1 1190:3 1193:1 1195:3 1199:1 1203:3 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1289:1 1299:1 1307:1 1318:1 1323:1 1331:1 1336:1 1354:6 1370:2 1381:1 1392:1 1404:1 1407:1 1444:1 1450:1 1451:1 1454:2 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1632:1 1635:1 1644:1 1669:2 1694:1 1715:1 1725:2 1729:2 1732:1 1734:1 1737:2 1738:2 1745:1 1751:3 1759:1 1765:1 1785:1 1793:1 1794:5 1799:3 1810:1 1819:1 1838:2 1844:2 1851:1 1863:1 1872:2 1880:3 1883:2 1885:2 1886:2 1888:2 1889:1 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:3 1921:1 1976:2 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2020:1 2027:1 2033:1 2045:2 2054:4 2077:1 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2241:1 2242:1 2259:2 2264:1 2269:1 2270:1 2276:1 2286:2 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:20 2430:14 2446:1 2486:7 2490:1 2496:2 2498:1 2505:1 2506:5 2531:1 2550:1 2571:1 2580:1 2595:1 2632:1 2647:1 2652:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2750:1 2760:1 2768:1 2769:2 2780:1 2784:1 2785:5 2823:1 2829:1 2833:2 2852:1 2896:1 2910:1 2912:4 2913:1 2914:1 2925:1 2949:2 2967:1 2983:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3046:1 3047:2 3064:1 3084:1 3090:1 3091:2 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3176:1 3184:1 3185:3 3208:1 3210:2 3226:2 3247:1 3257:1 3258:1 3264:1 3266:1 3267:1 3270:1 3282:3 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3364:2 3365:4 3382:2 3386:1 3406:1 3426:1 3444:5 3450:2 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3522:1 3527:1 3528:2 3531:3 3533:1 3571:1 3622:3 3645:1 3665:2 3670:2 3675:1 3689:1 3697:1 3709:1 3711:1 3712:3 3713:1 3721:1 3732:1 3748:1 3767:1 3773:3 3793:2 3796:1 3826:1 3827:4 3830:1 3832:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3936:1 3947:2 3964:1 3969:1 3982:1 3987:1 3994:2 4011:1 4013:1 4014:1 4017:1 4018:1 4021:1 4041:1 4048:3 4062:1 4091:1 4092:9 4093:1 4095:1 4121:1 4122:1 4137:3 4189:3 4193:1 4194:4 4210:5 4212:4 4213:1 4216:1 4217:2 4218:1 4224:1 4226:5 4227:2 4231:2 4235:1 4240:3 4243:1 4244:1 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4366:1 4371:1 4387:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:8 4646:1 4653:1 4655:1 4658:1 4679:2 4691:1 4695:2 4696:2 4697:1 4712:1 4715:1 4736:1 4737:4 4740:1 4752:1 4755:1 4756:1 4757:1 4764:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:2 4834:1 4840:1 4868:1 4870:1 4906:4 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:14 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:3 5091:1 5093:1 5098:2 5114:1 5116:1 5117:1 5121:6 5122:1 5125:1 5134:2 5152:1 5195:1 5196:2 5215:1 5223:6 5225:1 5228:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5307:1 5308:2 5310:2 5312:4 5313:1 5315:1 5318:3 5319:1 5321:4 5324:1 5326:1 5340:1 5345:1 5363:2 5378:1 5379:1 5409:1 5410:1 5440:2 5442:2 5444:1 5452:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:1 5562:1 5566:1 5569:1 5580:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:4 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:3 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:2 5845:1 5887:1 5907:4 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:13 6002:1 6013:1 6023:2 6036:1 6047:1 6049:1 6054:2 6094:1 6113:2 6114:1 6116:1 6133:1 6166:1 6187:2 6216:1 6245:1 6247:1 6248:3 6264:3 6274:1 6279:2 6293:1 6295:2 6298:2 6299:2 6314:1 6322:1 6331:1 6354:1 6364:1 6376:1 6394:1 6404:2 6407:1 6416:1 6421:1 6446:2 6452:1 6461:1 6462:10 6463:4 6482:4 6485:3 6488:1 6505:1 6507:1 6509:1 6522:25 6526:2 6534:1 6536:1 6541:21 6542:8 6546:1 6576:2 6591:1 6602:2 6603:1 6626:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6655:1 6658:1 6676:1 6711:4 6732:1 6735:1 6739:1 6741:2 6747:1 6801:1 6811:1 6826:1 6833:2 6846:1 6859:1 6861:1 6871:2 6875:4 6884:1 6911:1 6927:1 6931:1 6943:1 6949:2 6953:20 6974:3 6982:3 7018:2 7058:1 7069:2 7092:2 7094:1 7099:1 7100:1 7102:1 7106:1 7114:3 7133:2 7139:2 7145:1 7156:1 7162:4 7169:4 7170:1 7172:1 7177:2 7178:2 7180:1 7184:1 7186:1 7213:1 7221:1 7234:5 7235:2 7236:2 7237:1 7240:2 7244:3 7245:3 7246:2 7248:1 7253:1 7260:1 7266:1 7269:1 7278:1 7280:2 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7318:1 7328:1 7335:1 7342:1 7381:1 7388:3 7392:1 7394:1 7425:1 7435:2 7442:1 7445:1 7466:2 7471:2 7476:3 7490:1 7508:1 7511:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:2 7652:6 7674:1 7685:1 7702:1 7713:1 7731:2 7752:1 7788:1 7798:7 7804:1 7806:1 7813:4 7817:1 7827:1 7831:1 7862:1 7875:5 7882:1 7891:1 7898:1 7912:2 7917:1 7926:1 7929:2 7943:2 7945:1 7956:1 7962:1 7996:1 8032:1 8046:1 8053:1 8067:1 8070:1 8078:3 8094:1 8114:1 8123:4 8135:1 8159:1 8171:8 8172:28 8174:2 8181:2 8184:1 8187:1 8196:1 8198:1 8207:1 8211:1 8216:1 8227:1 8242:1 8245:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8318:1 8322:1 8327:1 8328:1 8329:1 8344:1 8363:1 8415:1 8433:1 8435:3 8437:1 8458:1 8461:3 8475:1 8476:1 8484:1 8487:4 8491:1 8505:1 8516:3 8539:1 8547:1 8556:1 8571:1 8578:7 8580:1 8584:1 8598:1 8613:2 8628:2 8634:1 8665:1 8666:2 8676:1 8682:3 8704:1 8705:1 8716:1 8718:1 8720:1 8732:3 8735:5 8757:2 8772:1 8799:1 8808:2 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:5 8920:1 8924:1 8943:7 8962:2 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:4 9053:1 9077:2 9079:10 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:3 9175:1 9176:1 9180:1 9185:1 9195:2 9216:1 9221:1 9246:1 9260:1 9286:5 9289:1 9299:1 9301:5 9306:1 9315:1 9318:1 9321:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9368:1 9375:1 9384:3 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:2 9464:1 9475:1 9482:1 9483:1 9485:1 9495:1 9504:1 9518:1 9528:1 9544:2 9548:1 9552:1 9554:1 9555:1 9576:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9667:1 9670:1 9673:1 9685:1 9694:6 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9742:1 9749:2 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9802:1 9818:4 9819:1 9825:2 9829:1 9843:6 9845:2 9849:2 9867:1 9869:2 9874:2 9880:1 9894:1 9898:1 9903:4 9910:3 9928:1 9935:2 9948:2 9957:4 9960:7 9962:1 9969:1 9971:1 9973:4 9985:1 9995:1 10005:1 10019:1 10040:1 10071:5 10077:1 10094:1 10098:1 10125:1 10138:1 10147:1 10158:1 10161:2 10164:2 10166:1 10168:1 10187:2 10189:1 10213:1 10223:1 10229:1 10232:1 10255:1 10275:1 10284:2 10290:1 10298:1 10316:2 10329:1 10378:2 10383:3 10428:1 10430:1 10461:1 10467:1 10482:2 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:3 10620:1 10629:1 10644:1 10691:1 10696:1 10737:13 10746:1 10747:1 10751:2 10752:1 10762:1 10769:1 10771:6 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:3 10827:1 10829:1 10830:1 10833:1 10836:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:2 11074:5 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:5 11143:3 11158:2 11173:1 11183:1 11186:3 11189:2 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:2 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11333:1 11342:2 11346:1 11348:1 11374:1 11377:1 11380:1 11384:1 11396:2 11399:1 11408:1 11411:1 11413:3 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11457:1 11464:1 11469:1 11473:1 11476:1 11503:2 11513:3 11516:1 11520:3 11521:1 11524:4 11534:1 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11792:1 11800:1 11835:2 11845:1 11846:1 11861:3 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11923:1 11936:1 11942:1 11952:1 11955:1 11969:1 12014:1 12058:1 12071:1 12080:1 12102:1 12105:1 12109:1 12125:2 12131:1 12136:1 12147:1 12158:2 12163:1 12169:1 12172:1 12173:2 12174:1 12182:1 12184:1 12191:1 12194:1 12198:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12285:1 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:4 12382:1 12395:1 12401:1 12424:1 12426:2 12429:1 12439:1 12457:2 12465:1 12469:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:2 12576:3 12577:1 12578:1 12591:1 12594:2 12601:1 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12678:1 12683:2 12697:1 12701:1 12708:2 12736:1 12746:1 12755:1 12775:1 12781:1 12801:1 12822:1 12829:1 12837:2 12848:1 12854:1 12886:1 12929:1 12950:1 12952:1 12968:2 13009:1 13021:1 13023:2 13025:1 13034:1 13037:1 13038:1 13053:1 13054:2 13057:1 13059:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:3 13097:1 13103:2 13111:3 13122:1 13131:1 13133:1 13154:1 13174:1 13189:2 13203:1 13222:1 13232:2 13233:5 13243:5 13248:2 13253:1 13254:1 13264:2 13266:2 13267:1 13298:1 13317:3 13321:1 13332:1 13346:1 13348:1 13350:1 13366:1 13368:5 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13440:1 13453:1 13469:2 13476:1 13484:2 13487:3 13505:1 13515:1 13561:1 13562:1 13585:1 13596:4 13613:2 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13726:1 13727:1 13728:1 13731:1 13734:1 13742:1 13743:3 13744:1 13747:1 13749:1 13751:1 13754:3 13757:1 13764:1 13813:1 13817:2 13818:1 13820:1 13840:1 13842:1 13845:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14015:1 14038:1 14048:2 14062:1 14069:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14094:1 14098:1 14119:13 14135:1 14151:2 14173:6 14176:1 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14301:1 14304:1 14319:1 14347:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14408:1 14443:1 14444:1 14454:1 14455:2 14458:4 14479:1 14486:2 14491:1 14492:3 14502:1 14512:1 14531:1 14537:1 14538:1 14539:2 14551:1 14555:1 14562:1 14571:1 14573:1 14576:1 14579:1 14582:1 14601:1 14608:1 14623:1 14635:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14739:1 14740:1 14756:1 14783:1 14784:2 14786:1 14848:1 14896:3 14904:1 14919:1 14943:1 14945:1 14951:1 14954:1 14981:2 14983:1 15016:1 15032:2 15049:1 15050:3 15054:3 15066:1 15098:1 15114:5 15121:1 15136:2 15150:2 15194:1 15200:1 15202:1 15223:2 15236:1 15249:1 15258:4 15273:3 15274:1 15302:1 15316:1 15318:1 15329:1 15349:1 15361:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:6 15454:1 15458:1 15466:1 15491:1 15505:2 15506:2 15509:1 15510:2 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:2090 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:2 15755:2 15771:1 15775:1 15776:2 15779:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:3 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15995:1 15997:2 15998:1 16001:1 16013:1 16018:1 16021:1 16028:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16181:1 16182:2 16184:1 16185:1 16205:3 16230:1 16233:3 16234:2 16236:2 16245:2 16257:2 16266:1 16267:5 16271:4 16306:1 16315:1 16317:2 16337:1 16347:1 16355:1 16362:1 16368:6 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16481:1 16484:3 16493:1 16506:1 16536:1 16567:6 16573:2 16585:1 16587:1 16591:1 16608:1 16614:3 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16671:1 16675:2 16683:1 16697:1 16710:1 16723:1 16741:1 16742:1 16747:1 16804:2 16828:1 16829:4 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16893:1 16895:1 16902:3 16929:1 16943:5 16955:1 16956:1 16957:1 16971:1 16973:7 16980:1 16987:6 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17124:1 17127:1 17139:1 17141:1 17142:1 17147:1 17155:1 17207:4 17210:1 17247:3 17258:2 17265:1 17303:1 17337:1 17339:2 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17462:1 17466:1 17472:1 17474:1 17481:2 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:4 17538:1 17540:3 17543:2 17549:9 17552:1 17558:1 17565:2 17566:1 17587:1 17589:1 17593:1 17610:1 17613:1 17614:1 17636:1 17650:1 17656:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17716:1 17728:1 17735:1 17741:1 17750:1 17765:2 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17940:1 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18025:1 18033:1 18035:1 18045:1 18047:1 18048:1 18050:2 18081:2 18094:2 18099:1 18109:1 18118:1 18133:3 18149:2 18152:1 18157:2 18161:2 18163:1 18167:1 18173:2 18174:1 18175:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18225:1 18226:5 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18294:1 18301:1 18316:2 18324:2 18333:1 18340:1 18369:2 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:3 18473:1 18478:1 18479:2 18484:1 18490:1 18491:10 18493:3 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:3 18602:1 18614:1 18621:1 18623:1 18637:2 18642:3 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18681:1 18693:3 18695:2 18698:2 18711:1 18714:2 18719:1 18742:1 18757:1 18771:3 18774:2 18775:3 18789:1 18793:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:7 18846:1 18847:1 18863:1 18865:1 18869:1 18874:4 18881:1 18896:1 18919:2 18932:3 18938:1 18948:1 18957:1 18959:10 18964:1 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:5 19001:2 19038:1 19045:1 19047:1 19049:2 19050:2 19057:1 19063:1 19074:1 19081:5 19084:1 19135:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:6 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19409:1 19418:1 19453:3 19468:1 19471:1 19479:1 19503:1 19538:1 19548:1 19549:1 19562:1 19566:1 19579:1 19628:1 19637:1 19638:3 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19701:1 19703:1 19723:1 19726:3 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19805:1 19807:4 19836:1 19837:1 19845:1 19848:3 19859:1 19872:2 19877:1 19886:1 19907:2 19930:1 19935:2 19952:2 19958:1 19983:2 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20074:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20194:1 20198:1 20206:1 20217:1 20234:1 20253:2 20266:1 20267:1 20276:1 20286:1 20288:1 20297:1 20320:1 20321:1 20329:5 20332:1 20349:1 20359:6 20366:1 20376:2 20382:1 20390:1 20395:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20459:1 20468:1 20470:1 20475:13 20504:1 20512:5 20554:1 20555:2 20556:1 20565:3 20568:1 20570:2 20574:2 20578:1 20583:1 20594:1 20598:1 20599:3 20613:4 20618:1 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:2 20707:1 20712:1 20713:1 20718:1 20764:1 20773:1 20784:1 20798:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:2 20889:1 20894:1 20901:1 20903:1 20906:1 20941:2 20954:3 20963:1 20977:1 20982:1 20991:1 20994:2 21002:4 21011:1 21035:1 21036:1 21037:1 21058:6 21059:3 21067:1 21093:1 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:4 21272:1 21279:1 21280:1 21292:1 21313:1 21317:1 21329:1 21334:2 21335:3 21358:1 21373:3 21396:1 21397:1 21403:2 21425:3 21427:3 21431:1 21433:2 21444:1 21455:1 21464:6 21470:1 21482:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:2 21595:1 21609:1 21615:2 21638:2 21648:1 21657:2 21667:1 21668:1 21669:3 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21821:1 21826:1 21829:3 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22005:1 22026:3 22043:1 22057:1 22063:1 22067:1 22074:1 22089:6 22091:1 22092:1 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:3 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22302:1 22323:1 22332:1 22337:1 22347:4 22353:1 22354:1 22356:1 22359:3 22372:2 22373:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:3 22499:1 22513:4 22526:1 22573:1 22582:1 22591:3 22612:1 22620:1 22635:2 22645:3 22657:1 22664:1 22674:1 22689:1 22716:1 22719:1 22731:1 22742:2 22744:1 22752:1 22754:1 22769:1 22775:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22949:1 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23075:1 23080:2 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23121:1 23123:2 23139:1 23144:7 23146:1 23148:1 23154:1 23155:2 23157:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23243:1 23247:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:2 23325:1 23328:2 23330:3 23353:1 23392:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23525:1 23540:2 23551:1 23557:1 23558:2 23559:3 23567:2 23568:1 23569:1 23583:1 23589:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:28 23645:4 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:2 23772:4 23793:10 23799:1 23803:2 23804:1 23821:1 23822:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23947:1 23949:1 23954:1 23960:2 23961:2 23975:1 23977:1 23981:1 23991:1 23993:1 24018:6 24020:1 24030:1 24037:1 24043:1 24074:2 24079:8 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24196:1 24204:1 24209:1 24213:4 24215:3 24216:3 24219:1 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24363:3 24372:1 24374:2 24376:1 24380:8 24399:3 24400:2 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24535:1 24552:1 24558:3 24561:1 24573:1 24579:1 24586:2 24597:1 24598:1 24615:1 24622:1 24624:1 24627:2 24633:2 24636:1 24637:1 24641:1 24646:1 24650:2 24652:2 24654:1 24656:1 24658:1 24660:1 24666:1 24689:1 24695:1 24728:1 24736:1
19 2:1 19:1 32:1 35:1 43:1 48:1 52:1 79:1 85:1 94:1 118:1 132:3 150:1 153:1 155:1 163:4 167:1 183:1 184:1 198:1 225:2 235:1 252:1 255:4 276:1 291:1 298:1 311:1 328:1 336:1 338:1 340:5 341:1 355:1 357:3 370:1 372:1 402:1 433:2 456:1 466:1 467:1 471:1 474:1 482:11 484:1 501:2 517:1 555:1 567:1 600:2 611:1 612:1 622:1 637:2 658:1 663:1 666:3 674:1 683:2 685:1 687:1 688:3 690:4 692:3 699:2 700:1 703:1 713:1 714:1 725:1 727:1 728:1 731:4 735:6 739:1 741:1 751:2 753:1 766:3 767:1 769:3 806:5 808:1 850:1 903:1 920:1 922:3 932:1 940:1 947:1 953:1 965:1 969:2 984:1 992:3 1004:2 1011:1 1017:1 1023:1 1032:1 1039:1 1041:1 1045:1 1050:1 1053:1 1084:1 1124:1 1141:1 1145:1 1152:1 1164:1 1190:3 1193:1 1195:3 1199:1 1203:3 1209:2 1231:1 1261:2 1263:1 1266:4 1276:2 1286:1 1289:1 1299:1 1307:1 1318:1 1323:1 1331:1 1336:1 1354:6 1370:2 1381:1 1392:1 1404:1 1407:1 1444:1 1450:2 1451:1 1454:2 1460:1 1461:1 1462:2 1466:2 1479:1 1484:1 1487:2 1494:1 1515:1 1530:1 1543:1 1551:1 1552:1 1568:2 1624:1 1632:1 1635:1 1644:1 1669:2 1672:1 1694:1 1715:1 1725:2 1729:2 1732:1 1734:1 1737:2 1738:2 1745:1 1751:3 1759:1 1765:1 1785:1 1793:1 1794:5 1799:3 1810:1 1819:1 1838:2 1844:2 1851:1 1863:1 1872:2 1880:3 1883:2 1885:3 1886:2 1888:2 1889:1 1892:1 1893:3 1897:1 1898:2 1900:1 1902:1 1909:3 1910:4 1921:1 1976:2 1977:1 1982:1 1985:2 1986:2 1993:1 1997:4 2005:1 2016:1 2018:1 2020:1 2027:1 2033:1 2045:2 2054:5 2077:1 2078:1 2083:1 2088:1 2108:1 2112:1 2113:4 2122:1 2151:1 2156:1 2159:1 2241:1 2242:1 2259:2 2262:1 2264:1 2269:1 2270:1 2276:1 2286:3 2303:7 2310:2 2315:1 2324:1 2354:1 2357:2 2374:1 2391:4 2403:3 2405:1 2414:1 2420:21 2430:14 2446:2 2486:8 2490:1 2496:2 2498:1 2505:1 2506:5 2531:1 2550:1 2571:1 2580:1 2595:1 2632:1 2645:1 2647:1 2652:1 2658:1 2675:1 2680:1 2691:1 2702:2 2722:2 2738:2 2750:1 2760:1 2768:1 2769:2 2780:1 2784:1 2785:5 2823:1 2829:1 2833:2 2852:1 2896:1 2910:1 2912:5 2913:1 2914:1 2925:1 2949:3 2967:1 2983:1 2989:1 2995:1 3015:2 3020:1 3023:1 3024:1 3027:1 3028:1 3036:1 3046:1 3047:2 3063:1 3064:1 3084:1 3090:1 3091:2 3092:1 3099:1 3106:1 3120:1 3134:2 3141:5 3176:1 3184:1 3185:3 3208:1 3210:2 3226:2 3247:1 3257:1 3258:1 3264:1 3266:1 3267:1 3270:1 3282:4 3296:1 3300:1 3317:1 3341:1 3347:1 3355:1 3358:1 3364:2 3365:4 3382:2 3386:2 3406:1 3426:1 3444:5 3450:2 3460:1 3462:1 3476:1 3483:1 3489:1 3505:2 3515:1 3522:1 3527:1 3528:2 3531:3 3533:1 3571:1 3620:1 3622:3 3645:1 3665:2 3670:2 3675:1 3689:1 3697:1 3709:1 3711:1 3712:3 3713:1 3721:1 3732:1 3748:1 3767:1 3773:3 3793:2 3796:1 3826:1 3827:4 3830:1 3832:1 3859:1 3871:1 3879:1 3880:2 3886:1 3893:1 3900:1 3916:1 3917:2 3922:1 3927:1 3934:1 3936:1 3947:2 3964:1 3969:1 3982:1 3987:1 3994:2 4011:1 4013:1 4014:1 4017:1 4018:1 4021:1 4041:1 4048:3 4062:1 4084:1 4091:1 4092:11 4093:1 4095:1 4121:1 4122:1 4137:3 4189:3 4193:1 4194:4 4210:7 4212:4 4213:1 4216:1 4217:2 4218:1 4224:1 4226:5 4227:2 4231:2 4235:1 4240:3 4243:1 4244:2 4265:1 4267:1 4281:1 4285:1 4291:4 4297:1 4313:1 4327:1 4350:1 4366:1 4371:1 4387:1 4396:1 4407:1 4431:1 4446:1 4477:1 4499:1 4521:1 4532:2 4550:1 4555:1 4563:1 4577:1 4618:1 4628:8 4646:1 4653:1 4655:1 4658:1 4679:2 4691:1 4695:2 4696:2 4697:1 4712:1 4715:1 4736:1 4737:4 4740:1 4752:1 4755:1 4756:1 4757:1 4764:1 4791:1 4794:2 4797:1 4802:1 4803:1 4815:1 4819:2 4834:1 4840:1 4868:1 4870:1 4882:1 4906:4 4971:1 4979:1 4985:1 4991:2 5006:2 5015:3 5017:2 5019:15 5020:1 5024:1 5029:3 5034:1 5059:1 5066:1 5070:3 5091:1 5093:1 5098:2 5114:1 5116:1 5117:1 5121:6 5122:1 5125:1 5134:2 5152:1 5195:1 5196:2 5215:1 5223:6 5225:1 5228:1 5240:1 5245:2 5274:1 5282:1 5290:1 5295:1 5301:1 5302:1 5303:1 5304:1 5307:1 5308:2 5310:2 5312:4 5313:1 5315:2 5318:3 5319:1 5321:4 5324:1 5326:1 5340:1 5345:1 5363:2 5378:1 5379:1 5409:1 5410:1 5440:2 5442:2 5444:1 5452:1 5464:1 5471:1 5504:1 5505:1 5536:1 5546:3 5556:1 5557:2 5562:1 5566:1 5569:1 5580:1 5586:1 5599:1 5633:2 5640:1 5641:2 5649:1 5659:1 5661:4 5668:1 5678:5 5682:3 5701:1 5711:3 5761:1 5768:1 5779:1 5780:1 5784:1 5786:4 5796:2 5806:1 5819:1 5821:1 5823:1 5828:1 5844:3 5845:1 5887:1 5907:4 5910:1 5916:1 5928:1 5956:1 5993:1 5998:1 6000:14 6002:1 6013:1 6023:2 6036:1 6047:1 6049:1 6054:2 6094:1 6113:2 6114:1 6116:1 6133:1 6166:1 6187:2 6214:1 6216:1 6245:1 6247:1 6248:3 6264:3 6274:1 6279:2 6293:1 6295:3 6298:2 6299:2 6314:1 6322:1 6331:1 6354:1 6356:1 6364:1 6376:1 6394:1 6404:2 6407:1 6416:1 6421:1 6446:2 6452:1 6461:1 6462:10 6463:5 6482:4 6485:3 6488:1 6505:1 6507:1 6509:1 6522:27 6526:2 6534:1 6536:1 6541:22 6542:10 6546:1 6576:2 6591:1 6592:1 6602:2 6603:1 6626:1 6631:1 6635:1 6636:1 6644:1 6646:1 6651:1 6655:1 6658:1 6676:1 6711:5 6732:1 6735:1 6739:1 6741:2 6747:2 6801:1 6811:2 6826:1 6833:2 6846:1 6859:1 6861:1 6871:2 6875:4 6884:1 6911:1 6927:1 6931:1 6943:1 6949:2 6953:20 6974:3 6982:3 7018:2 7058:1 7069:2 7092:2 7094:1 7099:1 7100:1 7102:1 7106:1 7114:3 7133:2 7139:2 7145:1 7156:2 7162:4 7169:4 7170:1 7172:1 7177:2 7178:2 7180:1 7184:1 7186:1 7213:1 7221:1 7234:6 7235:2 7236:2 7237:1 7240:3 7244:4 7245:3 7246:2 7248:1 7253:1 7260:1 7266:1 7269:1 7278:1 7280:2 7283:1 7290:1 7300:1 7301:1 7309:1 7317:2 7318:1 7328:1 7335:1 7342:1 7381:1 7388:3 7392:1 7394:1 7425:1 7435:2 7442:1 7445:1 7466:2 7471:2 7476:3 7490:1 7508:1 7511:1 7514:2 7532:1 7551:1 7579:1 7615:1 7632:1 7636:1 7639:1 7642:1 7650:3 7652:6 7674:1 7685:1 7702:1 7711:1 7713:1 7731:2 7752:1 7788:1 7798:7 7804:1 7806:1 7813:4 7817:1 7827:1 7831:1 7862:1 7875:5 7882:1 7891:1 7898:1 7912:2 7917:1 7926:1 7929:2 7943:2 7945:1 7956:1 7962:1 7996:1 8032:1 8046:1 8053:1 8067:1 8070:1 8078:3 8094:1 8114:1 8123:4 8135:1 8158:1 8159:1 8171:8 8172:28 8174:3 8181:2 8184:1 8187:1 8196:1 8198:1 8205:1 8207:1 8211:1 8216:1 8227:1 8242:1 8245:1 8256:2 8266:5 8275:1 8285:1 8286:1 8305:1 8318:1 8322:1 8327:1 8328:1 8329:1 8344:1 8363:1 8415:1 8433:1 8435:3 8437:1 8438:1 8458:1 8461:3 8475:1 8476:1 8484:1 8487:4 8491:1 8505:1 8516:3 8539:1 8547:1 8556:1 8571:1 8578:7 8580:1 8584:1 8598:1 8613:2 8628:2 8634:1 8665:1 8666:2 8676:1 8682:3 8683:1 8704:1 8705:1 8716:1 8718:1 8720:1 8732:3 8735:6 8736:1 8757:2 8772:1 8799:1 8808:2 8823:1 8844:1 8847:1 8851:1 8907:1 8909:1 8913:5 8920:1 8924:1 8943:8 8962:2 8989:1 8993:2 8997:1 9002:1 9005:1 9016:2 9018:2 9027:1 9043:1 9046:4 9053:1 9077:2 9079:10 9089:2 9103:3 9105:2 9107:2 9127:1 9144:1 9152:4 9175:1 9176:1 9180:1 9185:1 9195:2 9196:1 9216:1 9221:1 9246:1 9260:1 9286:5 9289:1 9299:1 9301:5 9306:1 9315:1 9318:1 9321:1 9326:1 9327:1 9331:1 9335:1 9336:1 9340:1 9346:1 9353:1 9368:1 9375:1 9384:3 9388:1 9400:2 9402:1 9428:2 9448:1 9456:1 9463:3 9464:1 9475:1 9482:1 9483:1 9485:1 9495:1 9504:1 9518:1 9528:1 9538:1 9544:2 9548:1 9552:1 9554:1 9555:1 9576:1 9592:1 9601:1 9618:1 9619:1 9623:1 9627:1 9634:1 9652:1 9662:1 9667:1 9670:1 9673:1 9685:1 9694:6 9711:1 9726:1 9727:1 9731:2 9733:1 9738:2 9742:1 9749:3 9750:1 9757:1 9779:1 9780:1 9786:2 9797:1 9802:1 9818:4 9819:1 9825:2 9829:1 9843:6 9845:2 9849:2 9867:1 9869:2 9874:2 9880:1 9894:2 9898:1 9903:5 9910:3 9916:1 9928:1 9935:2 9948:3 9957:4 9960:7 9962:1 9969:1 9971:1 9973:4 9985:1 9995:1 10005:1 10019:1 10040:1 10071:5 10077:1 10094:1 10098:1 10125:1 10138:1 10147:1 10158:1 10161:2 10164:2 10166:1 10168:1 10187:2 10189:1 10213:1 10223:1 10229:1 10232:1 10255:1 10275:1 10284:2 10290:1 10298:1 10316:2 10329:1 10378:2 10383:3 10428:1 10430:1 10461:1 10467:1 10482:2 10521:1 10525:1 10530:2 10537:2 10541:1 10562:1 10576:1 10587:1 10588:1 10603:1 10614:3 10620:1 10629:1 10644:1 10691:1 10696:1 10737:13 10746:1 10747:1 10751:2 10752:1 10762:1 10769:1 10771:6 10776:1 10777:1 10778:2 10783:1 10791:1 10801:1 10814:1 10824:4 10827:1 10829:1 10830:1 10833:1 10836:1 10837:1 10840:1 10844:1 10852:1 10854:1 10871:1 10882:2 10891:1 10895:1 10905:1 10945:2 10964:1 10983:1 10998:1 11010:1 11013:1 11038:1 11046:1 11064:1 11067:2 11073:2 11074:5 11078:2 11089:1 11097:1 11099:3 11124:3 11132:1 11136:1 11142:5 11143:3 11158:2 11173:1 11183:1 11186:3 11189:2 11199:1 11204:2 11213:1 11214:2 11220:1 11222:2 11232:2 11234:1 11236:1 11245:4 11252:1 11269:1 11282:3 11284:1 11301:1 11308:1 11327:4 11330:1 11333:1 11342:2 11346:1 11348:1 11374:1 11377:1 11380:1 11384:1 11396:2 11399:1 11408:1 11411:1 11413:3 11421:1 11424:1 11448:3 11449:1 11452:1 11453:1 11457:1 11464:1 11469:1 11473:1 11476:1 11503:2 11513:4 11516:1 11520:3 11521:1 11524:4 11534:1 11535:1 11544:1 11545:3 11548:1 11561:1 11584:1 11589:2 11593:1 11597:1 11627:2 11638:1 11650:1 11652:1 11660:1 11669:1 11670:1 11688:1 11701:1 11742:1 11751:1 11773:3 11776:1 11778:1 11792:1 11800:1 11835:2 11845:1 11846:1 11861:3 11865:1 11880:1 11892:1 11896:1 11899:1 11905:3 11909:1 11923:1 11936:1 11942:1 11952:1 11955:1 11969:1 12014:1 12058:1 12071:1 12080:1 12102:1 12105:1 12109:1 12125:2 12131:1 12136:1 12147:1 12158:2 12163:1 12169:1 12172:1 12173:2 12174:1 12182:1 12184:1 12191:1 12194:1 12198:1 12228:1 12248:1 12254:1 12264:1 12274:1 12277:1 12280:1 12282:2 12285:1 12287:1 12289:1 12294:1 12299:1 12302:2 12306:2 12328:2 12334:2 12355:1 12378:4 12382:1 12395:1 12401:1 12424:1 12426:2 12429:1 12439:1 12457:2 12465:1 12469:1 12479:2 12486:1 12501:1 12529:1 12538:1 12563:1 12574:2 12576:3 12577:1 12578:1 12591:1 12594:2 12601:1 12626:2 12634:2 12643:3 12644:1 12647:2 12652:1 12676:1 12678:1 12683:2 12697:1 12701:1 12708:2 12736:1 12746:1 12755:1 12775:1 12781:1 12801:1 12822:1 12829:1 12837:2 12848:1 12854:1 12886:1 12929:1 12950:1 12952:1 12968:2 13009:1 13021:1 13023:2 13025:1 13034:1 13037:1 13038:1 13053:1 13054:2 13057:1 13059:1 13060:3 13062:1 13063:1 13073:1 13074:3 13094:3 13097:1 13103:2 13111:3 13122:1 13131:1 13133:1 13154:1 13174:1 13189:2 13203:1 13222:1 13232:2 13233:5 13236:1 13243:6 13248:2 13253:1 13254:1 13264:2 13266:2 13267:1 13298:1 13317:3 13321:1 13332:1 13340:1 13346:1 13348:1 13350:1 13366:1 13368:5 13378:3 13383:1 13387:1 13390:1 13404:1 13407:1 13417:1 13439:1 13440:1 13453:1 13469:2 13476:1 13484:3 13487:3 13505:1 13515:2 13561:1 13562:1 13585:1 13596:4 13613:2 13618:2 13643:1 13645:2 13656:1 13660:1 13668:1 13673:1 13696:1 13702:1 13706:2 13723:2 13725:1 13726:1 13727:1 13728:1 13731:1 13734:1 13742:1 13743:3 13744:1 13747:1 13749:1 13751:1 13754:3 13757:1 13764:1 13813:1 13817:2 13818:1 13820:1 13840:1 13842:1 13845:1 13850:1 13897:2 13950:1 13961:1 13972:1 13978:1 14010:1 14015:1 14038:1 14048:2 14062:1 14069:1 14075:1 14077:1 14080:2 14082:2 14083:1 14087:1 14094:1 14098:1 14119:13 14135:1 14151:2 14173:7 14176:1 14187:1 14217:1 14222:2 14242:1 14259:3 14262:1 14276:1 14282:1 14285:1 14301:1 14304:1 14319:1 14347:1 14349:1 14362:3 14365:1 14378:1 14382:1 14389:4 14392:2 14407:3 14408:1 14443:1 14444:1 14454:1 14455:2 14458:4 14479:1 14486:2 14491:1 14492:3 14502:1 14512:1 14531:1 14537:1 14538:1 14539:2 14551:1 14555:1 14562:1 14571:1 14573:1 14576:1 14579:1 14582:1 14601:2 14608:1 14623:1 14635:1 14659:1 14670:1 14688:1 14692:1 14700:1 14702:3 14710:1 14713:1 14732:1 14739:1 14740:1 14756:1 14783:1 14784:2 14786:1 14848:1 14896:3 14904:1 14919:1 14943:1 14945:1 14951:1 14954:1 14981:3 14983:1 15016:1 15032:2 15049:1 15050:3 15054:3 15066:1 15091:1 15098:1 15114:5 15121:1 15136:2 15150:2 15194:1 15200:1 15202:1 15223:2 15236:1 15249:1 15258:4 15273:3 15274:1 15302:1 15316:1 15318:1 15329:1 15349:1 15361:1 15367:5 15369:1 15373:1 15395:1 15430:1 15444:1 15448:6 15454:1 15458:1 15466:1 15491:1 15505:2 15506:2 15509:1 15510:2 15525:1 15533:1 15552:1 15564:1 15567:1 15584:1 15587:1 15592:2 15595:2 15605:1 15615:1 15617:1 15618:2145 15620:1 15634:1 15639:3 15644:1 15653:1 15666:1 15673:1 15677:1 15691:1 15703:1 15738:2 15741:2 15755:2 15771:1 15775:1 15776:2 15779:1 15783:1 15784:2 15785:1 15787:1 15793:1 15795:2 15797:3 15815:1 15827:1 15861:1 15879:1 15920:1 15934:1 15948:1 15954:1 15981:1 15991:1 15995:1 15997:2 15998:1 16001:1 16013:1 16018:1 16021:1 16028:1 16034:1 16080:1 16087:1 16088:1 16090:1 16098:1 16149:1 16165:1 16167:1 16171:1 16172:1 16181:1 16182:2 16184:1 16185:1 16205:4 16230:1 16233:3 16234:2 16236:2 16245:2 16257:2 16266:1 16267:5 16271:5 16306:1 16315:1 16317:2 16337:1 16347:1 16355:1 16362:1 16368:6 16380:1 16385:4 16386:1 16400:1 16420:1 16437:1 16441:1 16444:1 16478:1 16481:1 16484:3 16493:1 16506:1 16536:1 16567:7 16573:2 16585:1 16587:1 16591:1 16608:1 16614:3 16624:3 16627:2 16629:1 16654:1 16657:2 16660:2 16665:1 16666:1 16671:1 16675:2 16683:1 16697:1 16710:1 16723:1 16741:1 16742:1 16747:1 16797:1 16804:2 16828:1 16829:4 16830:1 16837:1 16845:2 16855:2 16856:1 16863:1 16885:5 16893:1 16895:1 16902:3 16929:1 16943:5 16955:1 16956:1 16957:1 16971:1 16973:7 16980:1 16987:7 17008:1 17011:1 17029:1 17036:1 17062:2 17067:1 17069:1 17080:2 17087:1 17099:1 17105:1 17124:1 17127:1 17139:1 17141:1 17142:1 17147:1 17155:1 17207:4 17210:1 17247:3 17250:1 17258:2 17265:1 17303:1 17337:1 17339:2 17381:1 17389:1 17398:1 17401:1 17412:1 17414:1 17418:1 17435:2 17452:1 17458:1 17462:1 17466:2 17472:1 17474:1 17481:3 17495:1 17496:1 17497:1 17500:1 17521:1 17524:1 17533:1 17537:4 17538:1 17540:3 17543:2 17549:9 17552:1 17558:1 17565:2 17566:1 17587:1 17589:1 17593:1 17610:1 17613:1 17614:1 17636:1 17650:1 17656:1 17657:2 17674:1 17686:1 17697:1 17706:2 17709:1 17710:1 17712:1 17716:1 17726:1 17728:1 17735:1 17741:1 17750:1 17765:2 17766:2 17820:1 17826:2 17829:2 17835:1 17863:1 17892:1 17895:1 17897:1 17904:1 17908:1 17920:2 17940:1 17958:1 17963:1 17998:1 18005:1 18020:2 18022:1 18025:1 18033:1 18035:1 18045:1 18047:1 18048:1 18050:2 18068:1 18081:2 18094:2 18099:1 18109:1 18118:1 18131:1 18133:3 18136:1 18149:2 18152:1 18157:2 18161:2 18163:1 18167:1 18173:2 18174:1 18175:1 18183:1 18184:1 18191:2 18196:1 18198:1 18203:1 18207:1 18211:1 18225:1 18226:5 18228:1 18229:1 18247:1 18249:2 18253:1 18263:1 18267:1 18273:1 18274:1 18286:1 18294:1 18301:1 18316:2 18324:2 18333:1 18340:1 18369:3 18411:2 18412:1 18418:1 18421:1 18422:1 18423:1 18457:1 18459:1 18472:3 18473:1 18478:1 18479:2 18484:1 18486:1 18490:1 18491:10 18493:4 18494:1 18496:1 18498:1 18499:1 18506:3 18518:1 18527:1 18529:1 18531:1 18532:4 18546:2 18563:5 18584:1 18598:3 18602:1 18614:1 18621:1 18623:1 18637:2 18642:3 18647:1 18651:3 18652:1 18655:1 18669:1 18678:1 18681:1 18682:1 18693:3 18695:2 18698:2 18711:1 18714:2 18719:1 18742:1 18757:1 18771:3 18774:2 18775:3 18789:1 18793:1 18796:1 18807:4 18813:1 18823:1 18825:1 18826:1 18831:1 18833:1 18834:1 18837:7 18842:1 18846:1 18847:1 18863:1 18865:1 18869:1 18874:4 18881:1 18896:1 18919:2 18932:3 18938:1 18948:1 18957:1 18959:11 18964:2 18970:5 18979:1 18980:1 18981:2 18982:1 18985:1 18986:5 19001:2 19038:1 19045:1 19047:1 19049:2 19050:2 19057:1 19063:1 19074:1 19081:5 19084:1 19129:1 19135:1 19145:1 19158:1 19167:1 19200:1 19223:1 19229:1 19234:7 19240:1 19243:1 19272:1 19292:1 19304:2 19332:2 19333:1 19346:1 19349:1 19352:2 19390:1 19393:1 19409:1 19418:1 19453:3 19468:1 19471:1 19479:1 19503:1 19538:1 19548:1 19549:1 19562:1 19566:1 19579:1 19628:1 19637:1 19638:3 19647:1 19648:2 19652:1 19664:3 19674:1 19676:1 19686:1 19692:1 19701:1 19703:1 19723:1 19726:3 19735:1 19738:2 19740:2 19748:1 19755:1 19756:1 19757:1 19768:2 19775:1 19780:1 19805:1 19807:4 19836:1 19837:1 19845:1 19848:3 19859:1 19872:2 19877:1 19886:1 19907:2 19930:1 19935:2 19952:2 19958:1 19983:2 19986:1 19996:2 20025:1 20047:1 20050:1 20053:1 20074:1 20088:1 20095:2 20113:1 20141:1 20155:2 20159:1 20166:1 20168:1 20170:1 20173:1 20180:1 20183:1 20194:1 20198:1 20206:1 20217:1 20234:1 20253:2 20266:1 20267:1 20276:1 20286:1 20288:1 20297:1 20320:1 20321:1 20329:5 20332:1 20349:1 20359:6 20366:1 20376:2 20382:1 20390:1 20395:1 20405:1 20409:1 20411:1 20412:1 20430:4 20436:2 20439:1 20459:1 20468:1 20470:1 20475:13 20504:1 20512:5 20554:1 20555:2 20556:1 20565:3 20568:1 20570:2 20574:2 20578:1 20583:1 20594:1 20598:1 20599:3 20613:4 20618:1 20619:1 20620:1 20633:1 20661:3 20663:1 20665:1 20667:1 20674:1 20688:3 20690:1 20695:1 20700:1 20701:2 20707:1 20712:1 20713:1 20718:1 20764:1 20773:1 20784:1 20798:1 20804:1 20833:1 20835:2 20844:1 20850:1 20859:1 20861:1 20871:1 20877:1 20882:2 20883:2 20887:1 20889:1 20894:1 20901:1 20903:1 20906:1 20941:2 20954:3 20963:1 20977:1 20982:1 20991:1 20994:3 21002:4 21011:1 21035:1 21036:1 21037:1 21058:6 21059:3 21067:1 21093:2 21104:1 21126:2 21160:1 21167:1 21175:1 21215:1 21229:7 21257:4 21272:1 21279:1 21280:1 21292:1 21313:1 21317:1 21329:1 21334:2 21335:3 21358:1 21373:3 21396:1 21397:1 21403:2 21425:3 21427:3 21431:1 21433:2 21444:1 21455:1 21464:6 21470:1 21482:1 21495:3 21496:1 21503:1 21505:1 21527:1 21584:3 21586:2 21595:1 21609:1 21615:2 21638:2 21648:1 21657:2 21667:1 21668:1 21669:3 21676:1 21679:1 21681:1 21699:2 21704:1 21705:1 21720:1 21722:1 21750:1 21767:1 21778:1 21798:1 21821:1 21826:1 21829:4 21866:1 21871:1 21910:1 21912:1 21929:1 21935:1 21939:1 21943:1 21946:1 21950:1 21967:2 21973:1 21979:1 22005:1 22026:3 22043:1 22057:1 22063:1 22067:1 22074:1 22089:6 22091:1 22092:1 22097:1 22099:1 22131:1 22133:2 22150:1 22161:2 22163:2 22173:1 22178:1 22179:4 22187:1 22235:1 22274:1 22286:1 22289:1 22291:3 22301:1 22302:1 22323:1 22332:1 22337:1 22347:4 22353:1 22354:1 22356:1 22359:3 22372:2 22373:1 22396:1 22405:1 22433:1 22441:2 22451:1 22462:1 22477:1 22481:3 22499:1 22513:4 22526:1 22573:1 22582:1 22591:3 22612:1 22620:1 22635:2 22645:3 22657:1 22658:1 22664:1 22674:1 22689:1 22716:1 22719:1 22731:1 22742:3 22744:1 22752:1 22754:1 22769:1 22775:1 22789:1 22796:1 22829:1 22832:1 22840:1 22847:3 22895:1 22915:1 22937:3 22949:1 22986:1 22989:1 22992:1 22997:1 23002:1 23018:1 23020:1 23027:1 23034:1 23038:1 23041:1 23046:1 23048:1 23062:1 23063:2 23067:1 23072:1 23075:1 23080:2 23082:1 23083:1 23084:1 23086:2 23087:2 23091:1 23095:1 23097:1 23099:1 23116:1 23118:1 23121:1 23123:2 23139:1 23144:7 23146:1 23148:1 23154:1 23155:2 23157:1 23158:1 23166:2 23174:1 23193:1 23194:1 23213:1 23243:1 23247:1 23251:1 23258:1 23260:1 23263:1 23265:2 23272:1 23281:1 23290:1 23301:1 23314:2 23325:1 23328:3 23330:3 23353:1 23392:1 23397:1 23425:1 23437:1 23438:2 23441:1 23468:1 23499:1 23504:1 23516:3 23525:1 23540:2 23551:1 23557:1 23558:2 23559:3 23567:2 23568:1 23569:1 23583:1 23589:1 23595:2 23596:1 23606:1 23609:1 23621:1 23626:1 23644:31 23645:4 23648:4 23651:1 23655:2 23658:1 23667:1 23670:1 23671:7 23676:4 23713:1 23717:1 23738:3 23745:1 23753:1 23759:1 23766:3 23772:4 23793:10 23799:1 23803:2 23804:1 23821:1 23822:1 23824:1 23829:1 23844:1 23847:1 23849:3 23854:1 23855:1 23865:1 23884:1 23912:2 23938:1 23942:1 23947:1 23949:1 23954:1 23960:2 23961:2 23975:1 23977:1 23981:1 23991:1 23993:1 24018:7 24020:1 24030:1 24037:1 24043:1 24074:2 24079:8 24086:1 24093:3 24095:1 24097:1 24098:1 24185:1 24196:1 24204:1 24209:1 24213:4 24215:3 24216:3 24219:1 24234:2 24248:1 24260:1 24339:1 24342:1 24356:2 24361:1 24363:3 24372:1 24374:2 24376:1 24380:8 24399:3 24400:2 24410:1 24427:1 24438:1 24439:1 24467:1 24472:3 24485:2 24511:1 24523:2 24527:1 24531:1 24535:1 24552:1 24558:3 24561:1 24573:1 24579:1 24586:2 24597:1 24598:1 24607:1 24615:1 24622:1 24624:1 24627:2 24633:2 24636:1 24637:1 24641:1 24646:1 24650:2 24652:2 24654:1 24656:1 24658:1 24660:1 24666:1 24689:1 24695:1 24728:1 24736:1
|
13bbdad0356d8a8659c33eeaafbc04bef51bf5fb | 1f445348d54ed2dec62bf7a57168bfa8fea55c4f | /sfubar-9/test-success/ieee80.tst | e3e6883a56f2d1413c64e8e0ba90d7360ff4b93d | [
"LicenseRef-scancode-public-domain"
] | permissive | coderofsalvation/tools | 04f5fe6fd04963488a5e76faf82d659f8aaf24a3 | 30a4d3106a03625f75d6fc7010886c594b91be55 | refs/heads/master | 2021-01-13T13:59:05.085435 | 2020-05-28T19:29:46 | 2020-05-28T19:29:46 | 72,922,390 | 0 | 0 | null | 2016-11-05T11:38:36 | 2016-11-05T11:38:36 | null | UTF-8 | Scilab | false | false | 770 | tst | ieee80.tst | log of 2.000000 is 0.693147
log of 1.000000 is 0.000000
0.000000: 00000000000000000000 0.000000
-1.000000: BFFF8000000000000000 -1.000000
1.000000: 3FFF8000000000000000 1.000000
2.000000: 40008000000000000000 2.000000
4.000000: 40018000000000000000 4.000000
0.500000: 3FFE8000000000000000 0.500000
0.250000: 3FFD8000000000000000 0.250000
0.125000: 3FFC8000000000000000 0.125000
3.141593: 4000C90FDAA22168C000 3.141593
10000.000000: 400C9C40000000000000 10000.000000
22000.000000: 400DABE0000000000000 22000.000000
44100.000000: 400EAC44000000000000 44100.000000
65536.000000: 400F8000000000000000 65536.000000
134072.768000: 401082EE3126E978D800 134072.768000
3540001.900000: 4014D810879999999800 3540001.900000
4294967295.000000: 401EFFFFFFFF00000000 4294967295.000000
|
33beeb340d2c9deb19a4aa07967f68a3e6327b77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /695/CH1/EX1.10/ex1_10.txt | 40205ea3f939d77113310ee8f684c564c9541ce5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 310 | txt | ex1_10.txt | //Caption:Find the average value of emf induced in the coil
//Exa:1.10
clc;
clear;
close;
N=1000;//No.of turns
Phy_1=2000*10^-6;//In Webers
//On reversal of current
Phy_2=2000*10^-6;//In Webers
t=0.2;//in seconds
e=N*(Phy_1-(-Phy_2))/t;
disp(e,'Average value of emf induced in the coil (in volts)=') |
360b51f116e359b35dddcd5a10555d91fe84bcd4 | d7087cf730b37f76170323e080c090f8094979ac | /test/parser/a3.tst | 496286fc6fca6adc7b5d77fb102f2a2d01c8c438 | [] | no_license | VladimirMeshcheriakov/42sh | 025dffe358b86f48eaf7751a5cb08d4d5d5366c4 | 52d782255592526d0838bc40269f6e71f6a51017 | refs/heads/master | 2023-03-15T17:26:20.575439 | 2015-06-26T12:44:05 | 2015-06-26T12:44:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 108 | tst | a3.tst | <cmd>
../build/42sh</cmd>
<ref>
bash</ref>
<stdin>
while ! ls;
do
echo titi
done
echo a ecrire;
</stdin>
|
077f7c7c1d121e3f2dd828f12ddf66535ed2068c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH16/EX16.5/Ex16_5.sce | 5e7cffbd4de3874cf748d287e5214da044083626 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 506 | sce | Ex16_5.sce |
// Examle 16.5
V=440; // Supply Voltage
Rsh=110; // Resistance of Shunt field
Ish=V/Rsh; // Current through Shunt field
Ra=0.02; // Resistance of Armature winding
Il=496; // Generator current
Ia=Il+Ish; // Armeture Current (Ia)
disp('Armeture Current (Ia) = '+string(Ia)+' Amp');
Eg=V+(Ia*Ra); // generated emf (Eg)
disp('Generated emf (Eg) = '+string(Eg)+' Volt');
// p 638 16.5 |
bc740d99da0ca156414bff30c89ac25816f29a6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1928/CH1/EX1.15.7/ex1_15_7.sce | fa4d0527d84d01eba93381b04c503274eb58318f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 378 | sce | ex1_15_7.sce | //Chapter-1,Example1_15_7,pg 1-71
n=1 //first order maximum
l=1.54*10^-10 //wavelength of rock salt crystal
q=21.7 //glancing angle in degree
//using Bragg's law n*l=2*d*sin(q)
d=n*l/(2*sind(q))
printf("lattice constant of crystal=")
disp(d)
printf("meter")
|
92b7a6441a2be7ef4b49c796b4f3b4cc31dc3671 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH18/EX18.2/Ex18_2.sce | 3d86a924ad925c08e11c00ca65c2166bbf14d177 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 418 | sce | Ex18_2.sce |
// Examle 18.2
Ifs=10*10^-3; // Maximum current
Im=100*10^-6; // Full-scale diflection current
Rm=100; // Internal resistance
Ish=Ifs-Im; // Shunt Current (Ish)
disp('Shunt Current (Ish) = '+ string(Ish)+' Amp');
Rsh=(Im*Rm)/Ish; // Shunt Current (Rsh)
disp('Shunt Current (Rsh) = '+ string(Rsh)+' ohms');
// p 762 18.2 |
f9b27c034c62f48d08fc26d9ec08f3982f11ba26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH21/EX21.7/193ex3.sce | 30ec92737ebe9b5954603a3f277aade28a77d8e2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | 193ex3.sce |
//resistance of a current wire varies as length varies also, varies inversly as the cross section of wire
clear
clc
close
//R=the resistance
//l=the length
//the cross section
mprintf("\n R=k*l/A \n ")
|
3d409b07dd2d67466350107e5224250bba4d6ea4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH8/EX8.8/Ex8_8.sce | 6515b05a60ca46e814d012a02b847d68d581a794 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 137 | sce | Ex8_8.sce | clc;
//e.g 8.8
beta=170;
Ic=80*10**-3;
Ib=Ic/beta;//beta=(Ic/Ib)
disp('mA',Ib*10**3,"Ib=");
Ie=Ic+Ib;
disp('mA',Ie*10**3,"Ie=");
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.