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
b34a279e483f34aa5e5198df21435ca13a98d451
3c31145b7b0914a28b5c5c61d01c47253663df63
/1 unidade trabalho/identificacao_multi.sci
14f03c5e99772b32836af225183698736ff0b52b
[]
no_license
APFN/INTRODUCAO-A-IDENTIFICA-O-DE-SISTEMAS
1eb05ddc0debe5381d941715915388f7ca8af22c
d1a7afd8c8f894285aa9d4c282939538cfaa45d4
refs/heads/master
2021-07-21T14:50:25.870205
2017-10-30T19:31:48
2017-10-30T19:31:48
108,897,789
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,106
sci
identificacao_multi.sci
// RESIDUOS ARX // Calcular o erro de predicao um passo a frente (residuo) entre a saida de // um sistema e a saida prevista pelo modelo ARX, descrito pelo vetor de // parametros theta, para uma entrada u determinada function res=multi_resARX(u1,u2,y,theta,delay) test_parametersUY(u1,y); test_parametersUY(u2,y); test_parameterT(theta,3); test_parameterD(delay); order = size(theta,"r")/3; num_pontos = size(u1,"r"); // Inicializa com zeros (poderia ser dispensado) res = zeros(num_pontos,1); // Simulacao for (i=1:num_pontos) y_sim = 0.0; for (j=1:order) // Parte AR y_sim = y_sim + theta(j,1)*test_zero(y,i-j); // Parte X y_sim = y_sim + theta(j+order,1)*test_zero(u1,i-delay-j); y_sim = y_sim + theta(j+(order*2),1)*test_zero(u2,i-delay-j); end res(i,1) = y(i,1)-y_sim; end // Os primeiros pontos do residuo sao descartados res = res(1+order+delay:num_pontos,1); endfunction // SIMULACAO // // SIMULACAO ARX // Simula a saida de um sistema ARX, descrito pelo vetor de parametros theta, // para uma entrada u determinada // O vetor de erros eh gerado aleatoriamente (normal, media 0.0, desvio padrao sdev) function y=multi_simulARX(u1,u2,theta,delay,sdev) test_parameterU(u1); test_parameterT(theta,3); test_parameterD(delay); test_parameterS(sdev); order = size(theta,"r")/3; num_pontos = size(u1,"r"); // Gera uma semente aleatoria para o gerador de numeros aleatorios semente=getdate("s"); rand("seed",semente); // Gera o vetor de sinais de erro e = sdev*rand(num_pontos,1,"normal"); // Inicializa com zeros (poderia ser dispensado) y = zeros(num_pontos,1); // Simulacao for (i=1:num_pontos) // Ruido dinamico y(i,1) = e(i,1); for (j=1:order) // Parte AR y(i,1) = y(i,1) + theta(j,1)*test_zero(y,i-j); // Parte X y(i,1) = y(i,1) + theta(j+order,1)*test_zero(u1,i-delay-j); y(i,1) = y(i,1) + theta(j+(order*2),1)*test_zero(u2,i-delay-j); end end endfunction // IDENTIFICACAO // // IDENTIFICACAO ARX // Para um conjunto de pontos <u,y>, identifica o melhor sistema ARX com ordem e // tempo de atraso (delay) dados que se adequa aos pontos. Retorna o vetor de parametros // theta e os residuos (erro de predicao um passo a frente) function [theta,res]=multi_identifyARX(u1,u2,y,order,delay) test_parametersUY(u1,y); test_parametersUY(u2,y); test_parameterO(order); test_parameterD(delay); num_pontos = size(y,"r"); num_minimo_pontos = 3*order + delay; if (num_pontos < num_minimo_pontos) then error('The u and y parameters must have a minimal of 3*order+delay points.'); end // Montagem das matrizes da equacao matricial A*theta = B // A = matriz de regressores // theta = vetor de parametros (a ser identificado) // B = vetor com sinais de saida num_equacoes = num_pontos-order-delay; // Inicializa com zeros (poderia ser dispensado) B = zeros(num_equacoes,1); A = zeros(num_equacoes,3*order); // Preenche os valores corretos dos elementos de A e B for (i=1:num_equacoes) for (j=1:order) A(i,j) = y(i+order+delay-j,1); A(i,j+order) = u1(i+order-j,1); A(i,j+(order*2)) = u2(i+order-j,1); end B(i,1) = y(i+order+delay,1); end // Calcula theta pela pseudoinversa: theta = inv(A'*A)*A'*B theta = pinv(A)*B; // Calcula os residuos (erros de predicao) y_pred = A*theta; res = B-y_pred; endfunction /////////////ARMAX///////////////////////////// function res=multi_resARMAX(u1,u2,y,theta,delay) test_parametersUY(u1,y); test_parametersUY(u2,y); //test_parameterT(theta,4); test_parameterD(delay); order = size(theta,"r")/4; num_pontos = size(u1,"r"); // Inicializa com zeros (poderia ser dispensado) res = zeros(num_pontos,1); // Simulacao for (i=1:num_pontos) y_sim = 0.0; for (j=1:order) // Parte AR y_sim = y_sim + theta(j,1)*test_zero(y,i-j); // Parte X y_sim = y_sim + theta(j+order,1)*test_zero(u1,i-delay-j); //segunda aprte X y_sim = y_sim + theta(j+2*order,1)*test_zero(u2,i-delay-j); // Parte MA y_sim = y_sim + theta(j+3*order,1)*test_zero(res,i-j); end res(i,1) = y(i,1)-y_sim; end // Os primeiros pontos do residuo sao descartados res = res(1+order+delay:num_pontos,1); endfunction function y=multi_simulARMAX(u1,u2,theta,delay,sdev) test_parameterU(u1); //test_parameterT(theta,4); test_parameterD(delay); test_parameterS(sdev); order = size(theta,"r")/4; num_pontos = size(u1,"r"); // Gera uma semente aleatoria para o gerador de numeros aleatorios semente=getdate("s"); rand("seed",semente); // Gera o vetor de sinais de erro e = sdev*rand(num_pontos,1,"normal"); // Inicializa com zeros (poderia ser dispensado) y = zeros(num_pontos,1); // Simulacao for (i=1:num_pontos) // Ruido dinamico y(i,1) = e(i,1); for (j=1:order) // Parte AR y(i,1) = y(i,1) + theta(j,1)*test_zero(y,i-j); // Parte X y(i,1) = y(i,1) + theta(j+order,1)*test_zero(u1,i-delay-j); y(i,1) = y(i,1) + theta(j+2*order,1)*test_zero(u2,i-delay-j); // Parte MA y(i,1) = y(i,1) + theta(j+3*order,1)*test_zero(e,i-j); end end endfunction function [theta,res]= multi_identifyARMAX_int(u1,u2,e,y,order,delay) test_parametersUY(u1,y); test_parameterO(order); test_parameterD(delay); if ~iscolumn(e) then error('The e parameter must be a column.'); end if (size(e,"r") ~= size(y,"r")) then error('The e and y parameters must have the same size.'); end num_pontos = size(y,"r"); num_minimo_pontos = 5*order + delay; if (num_pontos < num_minimo_pontos) then error('The u, e and y parameters must have a minimal of 4*order+delay points.'); end // Montagem das matrizes da equacao matricial A*theta = B // A = matriz de regressores // theta = vetor de parametros (a ser identificado) // B = vetor com sinais de saida num_equacoes = num_pontos-order-delay; // Inicializa com zeros (poderia ser dispensado) B = zeros(num_equacoes,1); A = zeros(num_equacoes,4*order); // Preenche os valores corretos dos elementos de A e B for (i=1:num_equacoes) for (j=1:order) A(i,j) = y(i+order+delay-j,1); A(i,j+order) = u1(i+order-j,1); A(i,j+2*order) = u2(i+order-j,1); A(i,j+3*order) = e(i+order+delay-j,1); end B(i,1) = y(i+order+delay,1); end // Calcula theta pela pseudoinversa: theta = inv(A'*A)*A'*B theta = pinv(A)*B; // Calcula os residuos (erros de predicao) y_pred = A*theta; res = B-y_pred; endfunction // IDENTIFICACAO ARMAX function [theta,res]=multi_identifyARMAX(u1,u2,y,order,delay) // Os testes dos parametros serao feitos ao chamar a funcao identifyARX [theta,res] = multi_identifyARX(u1,u2,y,order,delay); residuo = stdev(res); residuo_ant = 2.0*residuo; // Para garantir que execute o laco ao menos uma vez N = 0; while (abs(residuo_ant-residuo)/residuo > 0.01 & N < 30) e_estim = [zeros(order+delay,1) ; res]; // Os testes dos parametros serao feitos ao chamar a funcao identifyARMAX_int [theta,res] = multi_identifyARMAX_int(u1,u2,e_estim,y,order,delay); residuo_ant = residuo; residuo = stdev(res); N = N+1; end endfunction
bd9cee8695974b4deb2bdbda08cb0b7feef93a53
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH7/EX7.1/EX7_1.sce
23f790555e1ef7c4e5a55aabb399751c04d9d351
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
252
sce
EX7_1.sce
//Finding of Loss of Head //Given q1=200; d1=150; d2=300; g=9.81; //To Find v1=200*(4/%pi)*(100/150)^2; disp(v1); v2=200*(4/%pi)*(100/300)^2; disp(v2); h=((v1-v2)^2)/20*g; h1=h/1000; disp(" Loss of Head ="+string(h1)+" meter of water");
25403101ed231b08a68fae998db7c20ae41dbdbd
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH15/EX15.05/15_05.sce
25d805d87a1847c0c37080c4f43bc462c89a853c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,164
sce
15_05.sce
//pathname=get_absolute_file_path('15.05.sce') //filename=pathname+filesep()+'15.05-data.sci' //exec(filename) //Height in mercury column in condenser(in cm): h=70 //Inlet temperature(in K): T=30+273 //Leakage(in kg/kg of steam): m=5*10^(-4) //Density of mercury(in kg/cm^3): d=0.0135951 //Acceleration due to gravity(in m/s^2): g=9.81 //Gas constant(in kJ/kg.K): R=0.287 //Specific heat of water(in kJ/kg.K): Cpw=4.18 //Increase in temperature of cooling water(in K): dT=15 //Dryness fraction: x=0.90 //From steam tables: hf=125.79 //kJ/kg hfg=2430.5 //kJ/kg vg=32.89 //m^3/kg ps=4.246 //kPa //Absolute pressure in condenser(in kPa): pt=(77-h)*d*10^4*g //Partial pressure of air(in kPa): pa=5.094 //Volume of air extracted per minute(in m^3/min): V=m*10^3*R*T/pa //Mass of steam extracted in maixture(in kg/min): ms=V/vg //Mass handled by air extraction pump(in kg/min): mt=m*10^3+ms printf("\nRESULT\n") printf("\nMass handled by air pump = %f kg/min",mt) //Enthalpy of steam entering(in kJ/kg): h=hf+x*hfg //Water circulation rate(in kg/min): mw=1000*(h-Cpw*T)/(Cpw*dT) printf("\nWater circulation rate = %f kg/min",mw)
a48845d75c7299167b8cce75fdb74a3ad173d549
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH2/EX2.5/Ex2_5.sce
d5f51a857e2a6081950fd9a996bd4ca3ce992cb1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
544
sce
Ex2_5.sce
//Ex2_5 clc Idc=1*10^(-3) disp(" D.C load current ,Idc = "+string(Idc)+" ampere") //initialization Vi=2.5 disp("input voltage,Vi = "+string(Vi)+" volts")//initialization Vim=Vi*sqrt(2) VD=0.7 disp("voltage drop,VD = "+string(VD)+ " volts") //initialization Rm=50 disp("resistance,Rm = "+string(Rm)+ " ohm") //initialization R=[(2/%pi)*((Vim-2*VD)/Idc)-Rm] //Formulae disp("resistance,R =[(2/%pi)*((Vim-2*VD)/Idc)-Rm]= "+string(R)+ " ohm") // NOTE: VALUE OF R=1310 ohm as given in book but here calculated ans is 1309.5231ohm
5d8ee45cfdcc2b568672a2b6a34f6a0a379ba53d
449d555969bfd7befe906877abab098c6e63a0e8
/249/CH22/EX22.2/22_02.sce
418e519ae5629443a1fad7e5e7708f9361df24d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
810
sce
22_02.sce
clear clc PA=14.6*101325;//Pa HA=148000; Vr=2; Vl=Vr; b=1; fs=0.0055; k=5*10^-5;//m6l/kg.molcat.s dp=5*10^-5;//mcat kac=4.4*10^-4;kai=0.277;//m3l/m3.r.s density=1450;//kg/m3 De=5*10^-10;//m3l/mcat.s L=dp/6;//for spherical particle CA=PA/HA; X=0.9; CBo=2500;//mol/m3.l CB=CBo*(1-X); ac=6*fs/dp;; K=kac*ac; //Guessing different values of CB CB=[2500;1000;250]; e=[0.19;0.29;0.5]; for i=1:3 Mt(i)=L*sqrt(k*CB(i)*density/De); rA(i)=CA/((1/kai)+(1/K)+(1/(k*density*e(i)*fs*CB(i)))) inv_rA(i)=1/rA(i); end plot(CB,inv_rA) xlabel('CB');ylabel('-1/rA') //Reaction time is given by (Vl/b*Vr)*integral(dCB/-rA) //Graphically integrating Area=3460; t=Vl*Area/(b*Vr); t=t/60;//min printf("\n The time required for 90 percentage conversion of reactant is %f",t) printf("min")
4569feeda0b6e075396200b7b5692dfa46369bbf
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Auto Balanced Bunny Dodge.sce
b0ba0a2a6ef46a435aa71030a18016af981a7f4a
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
64,759
sce
Auto Balanced Bunny Dodge.sce
Name=Auto Balanced Bunny Dodge PlayerCharacters=ABBD Challenger BotCharacters=ABBD Bot Rotation.rot IsChallenge=true Timelimit=30.0 PlayerProfile=ABBD Challenger AddedBots=ABBD Bot Rotation.rot PlayerMaxLives=0 BotMaxLives=11 PlayerTeam=1 BotTeams=2 MapName=flat_field_mini.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=5.0 ScoreToWin=1.0 ScorePerDamage=1.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=10.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=MCA-23, Tracking, Dodge WeaponHeroTag=Fully-auto DifficultyTag=4 AuthorsTag=pleasewait BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Combat against 11 levels of targets (Lv 1 - Lv 10, Max). The target's speed increases according to increased level. The time limit extend 5 seconds on every kill. When you eliminate all targets, you earn scores based on time remaining. ---------------------------------- Note: MCA stands for "Monthly Competitive Aiming", a local event for the competitive aiming community in Japan. GameVersion=1.0.8.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.1 MBSTime2=0.08 MBSTime3=1.3 MBSTime1Mult=0.1 MBSTime2Mult=20.0 MBSTime3Mult=45.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=ABBD Aimbot MinReactionTime=0.01 MaxReactionTime=0.01 MinSelfMovementCorrectionTime=0.01 MaxSelfMovementCorrectionTime=0.01 FlickFOV=90.0 FlickSpeed=1.0 FlickError=0.0 TrackSpeed=1.0 TrackError=0.0 MaxTurnAngleFromPadCenter=360.0 MinRecenterTime=0.0 MaxRecenterTime=0.0 OptimalAimFOV=360.0 OuterAimPenalty=0.0 MaxError=0.0 ShootFOV=90.0 VerticalAimOffset=-10.0 MaxTolerableSpread=0.0 MinTolerableSpread=0.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=1.0 [Aim Profile] Name=Default MinReactionTime=0.1 MaxReactionTime=0.11 MinSelfMovementCorrectionTime=0.1 MaxSelfMovementCorrectionTime=0.11 FlickFOV=90.0 FlickSpeed=1.0 FlickError=0.1 TrackSpeed=1.0 TrackError=0.1 MaxTurnAngleFromPadCenter=360.0 MinRecenterTime=0.1 MaxRecenterTime=0.1 OptimalAimFOV=1.0 OuterAimPenalty=1.0 MaxError=0.1 ShootFOV=10.0 VerticalAimOffset=0.1 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=ABBD Target Lv 01 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 01 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 02 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 02 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 03 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 03 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 04 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 04 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 05 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 05 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 06 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 06 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 07 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 07 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 08 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 08 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 09 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 09 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv 10 DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv 10 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=ABBD Target Lv Max DodgeProfileNames=ABBD Close Dodging;ABBD Mid Dodging DodgeProfileWeights=7.0;3.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=ABBD Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=ABBD Target Lv Max SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Rotation Profile] Name=ABBD Bot Rotation ProfileNames=ABBD Target Lv 01;ABBD Target Lv 02;ABBD Target Lv 03;ABBD Target Lv 04;ABBD Target Lv 05;ABBD Target Lv 06;ABBD Target Lv 07;ABBD Target Lv 08;ABBD Target Lv 09;ABBD Target Lv 10;ABBD Target Lv Max ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=false [Character Profile] Name=ABBD Challenger MaxHealth=100.0 WeaponProfileNames=ABBD Fully-auto;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=72.0 MainBBRadius=12.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=72.0 ProjBBRadius=12.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=0.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 01 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=40.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 02 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=80.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 03 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=160.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 04 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=240.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 05 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 06 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=400.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 07 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=480.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 08 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=520.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 09 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=560.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv 10 MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=600.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=ABBD Target Lv Max MaxHealth=240.0 WeaponProfileNames=ABBD Aim Puncher;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-48.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=640.0 MaxCrouchSpeed=160.0 Acceleration=5120.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=1.0 JumpVelocity=256.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=67.0 MainBBRadius=11.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=67.0 ProjBBRadius=11.0 ProjBBHasHead=true ProjBBHeadRadius=7.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=1024.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=ABBD Close Dodging MaxTargetDistance=64.0 MinTargetDistance=32.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.4 MaxLRTimeChange=0.7 MinFBTimeChange=0.4 MaxFBTimeChange=0.7 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.01 MaxJumpTime=0.01 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.1 BlockedMovementReactionMax=0.1 [Dodge Profile] Name=ABBD Mid Dodging MaxTargetDistance=160.0 MinTargetDistance=96.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.4 MaxLRTimeChange=0.7 MinFBTimeChange=0.4 MaxFBTimeChange=0.7 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.01 MaxJumpTime=0.01 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.1 BlockedMovementReactionMax=0.1 [Weapon Profile] Name=ABBD Fully-auto Type=Hitscan ShotsPerClick=1 DamagePerShot=6.0 KnockbackFactor=0.0 TimeBetweenShots=0.05 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.1 ReloadTimeFromPartial=0.1 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.001 HitSoundCooldown=0.001 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=75 ADSFOVOverride=40.0 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=ABBD Aim Puncher Type=Projectile ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=0.0 TimeBetweenShots=0.15 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=0.100 Y=0.000 Z=0.000 MuzzleVelocityMax=X=0.100 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.1 ReloadTimeFromPartial=0.1 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.2 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.01 HitSoundCooldown=0.01 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=Smoke RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=50.0 AccelIncludeVertical=false AimPunchAmount=15.0 AimPunchResetTime=0.2 AimPunchCooldown=0.1 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=40.0 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -128.000000 256.000000 640.000000 640.000000 256.000000 640.000000 640.000000 256.000000 -128.000000 -128.000000 256.000000 -128.000000 -128.000000 240.000000 640.000000 640.000000 240.000000 640.000000 640.000000 240.000000 -128.000000 -128.000000 240.000000 -128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -128.000000 784.000000 640.000000 640.000000 784.000000 640.000000 640.000000 784.000000 -128.000000 -128.000000 784.000000 -128.000000 -128.000000 768.000000 640.000000 640.000000 768.000000 640.000000 640.000000 768.000000 -128.000000 -128.000000 768.000000 -128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 256.000000 256.000000 656.000000 33.777786 256.000000 611.555603 256.000000 256.000000 640.000000 42.666672 416.000031 597.333374 256.000000 416.000000 640.000000 42.666672 256.000000 597.333374 33.777786 416.000031 611.555603 256.000000 416.000000 656.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 brush vertices 33.777786 256.000000 611.555603 -99.555565 256.000000 478.222260 42.666672 256.000000 597.333374 -85.333344 416.000031 469.333344 42.666672 416.000031 597.333374 -85.333344 256.000000 469.333344 -99.555565 416.000031 478.222260 33.777786 416.000031 611.555603 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices -99.555565 256.000000 478.222260 -144.000000 256.000000 256.000000 -85.333344 256.000000 469.333344 -128.000000 416.000000 256.000000 -85.333344 416.000031 469.333344 -128.000000 256.000000 256.000000 -144.000000 416.000000 256.000000 -99.555565 416.000031 478.222260 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices -144.000000 256.000000 256.000000 -99.555557 256.000000 33.777786 -128.000000 256.000000 256.000000 -85.333328 416.000031 42.666672 -128.000000 416.000000 256.000000 -85.333328 256.000000 42.666672 -99.555557 416.000031 33.777786 -144.000000 416.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 brush vertices -99.555557 256.000000 33.777786 33.777779 256.000000 -99.555565 -85.333328 256.000000 42.666672 42.666679 416.000031 -85.333344 -85.333328 416.000031 42.666672 42.666679 256.000000 -85.333344 33.777779 416.000031 -99.555565 -99.555557 416.000031 33.777786 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices 33.777779 256.000000 -99.555565 256.000000 256.000000 -144.000000 42.666679 256.000000 -85.333344 256.000000 416.000000 -128.000000 42.666679 416.000031 -85.333344 256.000000 256.000000 -128.000000 256.000000 416.000000 -144.000000 33.777779 416.000031 -99.555565 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 brush vertices 256.000000 256.000000 -144.000000 478.222260 256.000000 -99.555557 256.000000 256.000000 -128.000000 469.333344 416.000031 -85.333328 256.000000 416.000000 -128.000000 469.333344 256.000000 -85.333328 478.222260 416.000031 -99.555557 256.000000 416.000000 -144.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 brush vertices 478.222260 256.000000 -99.555557 611.555603 256.000000 33.777779 469.333344 256.000000 -85.333328 597.333374 416.000031 42.666679 469.333344 416.000031 -85.333328 597.333374 256.000000 42.666679 611.555603 416.000031 33.777779 478.222260 416.000031 -99.555557 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices 611.555603 256.000000 33.777779 656.000000 256.000000 256.000000 597.333374 256.000000 42.666679 640.000000 416.000000 256.000000 597.333374 416.000031 42.666679 640.000000 256.000000 256.000000 656.000000 416.000000 256.000000 611.555603 416.000031 33.777779 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices 656.000000 256.000000 256.000000 611.555603 256.000000 478.222260 640.000000 256.000000 256.000000 597.333374 416.000031 469.333344 640.000000 416.000000 256.000000 597.333374 256.000000 469.333344 611.555603 416.000031 478.222260 656.000000 416.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 brush vertices 611.555603 256.000000 478.222260 478.222260 256.000000 611.555603 597.333374 256.000000 469.333344 469.333344 416.000031 597.333374 597.333374 416.000031 469.333344 469.333344 256.000000 597.333374 478.222260 416.000031 611.555603 611.555603 416.000031 478.222260 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices 478.222260 256.000000 611.555603 256.000000 256.000000 656.000000 469.333344 256.000000 597.333374 256.000000 416.000000 640.000000 469.333344 416.000031 597.333374 256.000000 256.000000 640.000000 256.000000 416.000000 656.000000 478.222260 416.000031 611.555603 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 brush vertices 33.777786 416.000000 611.555603 -99.555565 416.000000 478.222260 42.666672 416.000000 597.333374 -85.333344 768.000000 469.333344 42.666672 768.000000 597.333374 -85.333344 416.000000 469.333344 -99.555565 768.000000 478.222260 33.777786 768.000000 611.555603 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip brush vertices -99.555565 416.000000 478.222260 -144.000000 416.000000 256.000000 -85.333344 416.000000 469.333344 -128.000000 768.000000 256.000000 -85.333344 768.000000 469.333344 -128.000000 416.000000 256.000000 -144.000000 768.000000 256.000000 -99.555565 768.000000 478.222260 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip brush vertices 256.000000 416.000000 656.000000 33.777786 416.000000 611.555603 256.000000 416.000000 640.000000 42.666672 768.000000 597.333374 256.000000 768.000000 640.000000 42.666672 416.000000 597.333374 33.777786 768.000000 611.555603 256.000000 768.000000 656.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices -144.000000 416.000000 256.000000 -99.555557 416.000000 33.777786 -128.000000 416.000000 256.000000 -85.333328 768.000000 42.666672 -128.000000 768.000000 256.000000 -85.333328 416.000000 42.666672 -99.555557 768.000000 33.777786 -144.000000 768.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 internal/editor/textures/editor_clip brush vertices -99.555557 416.000000 33.777786 33.777779 416.000000 -99.555565 -85.333328 416.000000 42.666672 42.666679 768.000000 -85.333344 -85.333328 768.000000 42.666672 42.666679 416.000000 -85.333344 33.777779 768.000000 -99.555565 -99.555557 768.000000 33.777786 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip brush vertices 33.777779 416.000000 -99.555565 256.000000 416.000000 -144.000000 42.666679 416.000000 -85.333344 256.000000 768.000000 -128.000000 42.666679 768.000000 -85.333344 256.000000 416.000000 -128.000000 256.000000 768.000000 -144.000000 33.777779 768.000000 -99.555565 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices 256.000000 416.000000 -144.000000 478.222260 416.000000 -99.555557 256.000000 416.000000 -128.000000 469.333344 768.000000 -85.333328 256.000000 768.000000 -128.000000 469.333344 416.000000 -85.333328 478.222260 768.000000 -99.555557 256.000000 768.000000 -144.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 internal/editor/textures/editor_clip brush vertices 478.222260 416.000000 -99.555557 611.555603 416.000000 33.777779 469.333344 416.000000 -85.333328 597.333374 768.000000 42.666679 469.333344 768.000000 -85.333328 597.333374 416.000000 42.666679 611.555603 768.000000 33.777779 478.222260 768.000000 -99.555557 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip brush vertices 611.555603 416.000000 33.777779 656.000000 416.000000 256.000000 597.333374 416.000000 42.666679 640.000000 768.000000 256.000000 597.333374 768.000000 42.666679 640.000000 416.000000 256.000000 656.000000 768.000000 256.000000 611.555603 768.000000 33.777779 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip brush vertices 656.000000 416.000000 256.000000 611.555603 416.000000 478.222260 640.000000 416.000000 256.000000 597.333374 768.000000 469.333344 640.000000 768.000000 256.000000 597.333374 416.000000 469.333344 611.555603 768.000000 478.222260 656.000000 768.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000 internal/editor/textures/editor_clip brush vertices 611.555603 416.000000 478.222260 478.222260 416.000000 611.555603 597.333374 416.000000 469.333344 469.333344 768.000000 597.333374 597.333374 768.000000 469.333344 469.333344 416.000000 597.333374 478.222260 768.000000 611.555603 611.555603 768.000000 478.222260 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip brush vertices 478.222260 416.000000 611.555603 256.000000 416.000000 656.000000 469.333344 416.000000 597.333374 256.000000 768.000000 640.000000 469.333344 768.000000 597.333374 256.000000 416.000000 640.000000 256.000000 768.000000 656.000000 478.222260 768.000000 611.555603 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 256.000000 256.000000 128.000000 Bool8 teamB 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 256.000000 256.000000 384.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
411f8ae5dddb2a6ef99b3a44564400491b6c186a
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH24/EX24.22/Ex24_22.sce
0d769336e412824b63b0feef55e2dfbb764a0d06
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex24_22.sce
clear //Given Rh=1.097*10**7 ///m h=6.63*10**-34 c=3*10**8 n=2.0 n1=4.0 //Calculation E=(h*c*Rh*(1/n**2-1/n1**2))/1.6*10**-19 //Result printf("\n Minimum energy is %0.2f ev",E*10**38)
00c0dddf83c7d847c9ccf7b20534b603b70efc31
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH18/EX18.17/Ex18_17.sce
005607caf77451511464ed9351017736bccbabbb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
426
sce
Ex18_17.sce
//Initilization of variables m1=5 //kg m2=7 //kg mp=5 //kg r=0.6 //m k=0.45 //m vi=3 //m/s vf=6 //m/s g=9.8 //m/s^2 //Calculations I=m1*k^2 //kg.m^2 wnet=(vf/r)-(vi/r) //rad/s //Solving the system of linear equations //Simplfying the equation we get t=((I*wnet)+m1*(vf-vi)+m2*(vf-vi))*r/(r*(m2-m1)*g) //s //Result clc printf('The time required is %f s',t) //Decimal accuracy causes discrepancy in answers
2635d772771c476480c6ba75223b78c5361ef50d
449d555969bfd7befe906877abab098c6e63a0e8
/2375/CH10/EX10.7/ex10_7.sce
69feb62b0fa3516adbf14eeca72d11eacd5c683c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sce
ex10_7.sce
// Exa 10.7 clc; clear; close; format('v',6) // Given data dAbyA = 10/100; A = 200; Beta = 0.25; // Af = A/(1+(A*Beta)) (i) // differentiating w.r.to A we get, dAf = dA/((1+(Beta*A))^2) (ii) // From eq(i) and (ii) dAfbyAf = 1/(1+A*Beta)*dAbyA disp(dAfbyAf,"The small change in gain is");
153f36003ee0fd11e20175d719dd90ba9bc9f5d5
449d555969bfd7befe906877abab098c6e63a0e8
/1118/CH19/EX19.5/eg19_5.sce
7b2739d4e51fdfbf205e161f14c186a58941859b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
144
sce
eg19_5.sce
clear; //clc(); 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);
b742be29bde2117305b0c2ebe1fd6d06eadb5177
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH4/EX4.8/Ex4_8.sce
5fd91c1ffaac5adf1a5c211c977fae7390f3ba07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
657
sce
Ex4_8.sce
//Example 4.8 m=15;//Mass of traffic light (kg) g=9.8;//Acceleration due to gravity (m/s^2) w=m*g;//Weight of traffic light (N) theta1=30;//Angle for wire 1 (deg) theta2=45;//Angle for wire 2 (deg) T1=w/(sind(theta1)+[cosd(theta1)/cosd(theta2)]*sind(45));//Tension in wire 1 (N), Substitute Equation 4.69 in Equation 4.73 //See textbook for derivation printf('Tension in wire 1 = %0.1f N',T1) T2=[cosd(theta1)/cosd(theta2)]*T1;//Tension in wire 2 (N), See Equation 4.69 printf('\nTension in wire 2 = %0.1f N',T2) //Answer varies due to round off error //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
0252e420acef4d056d13ae74f99de759f1857cdf
b9602336613b26d0b9c22a09d219c0ed8e158b4e
/Examples/Examples_MatFunc/expmatSym.sce
139d5f0528104b5aa78a2c756046799110b028ef
[ "BSD-2-Clause" ]
permissive
CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox
d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd
70c97cda4e0dd54df0a638e9b99f380c09ffa37e
refs/heads/master
2022-12-11T01:28:28.742041
2020-08-26T12:24:27
2020-08-26T12:24:27
290,481,428
0
0
null
null
null
null
UTF-8
Scilab
false
false
243
sce
expmatSym.sce
// Function Name: expmatSym // Returns the Matrix exponential of the input matrix(symmetric/hermitian matrix). // Calculating the expmatSym. inputMat = [-1.2, 1, 1.9; -4, 2.6, 5; -2.3, 8, -7]; result = armaMatFunc("expmatSym",inputMat)
2d48b398af65c96c18c5d65b14a6c494f5913200
449d555969bfd7befe906877abab098c6e63a0e8
/2054/CH1/EX1.23/ex1_23.sce
366155e0f77b95f10f7b0d09c9e1e96fb032fd03
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
458
sce
ex1_23.sce
//Exa:1.23 clc; clear; close; P_o=37.5*1000;//in watts N=500;//in rpm T_l=P_o*60/(2*%pi*N);//Full load torque (in Newton-meter) T_m=2*T_l;// Torque developed by motor during starting T_a=T_m-T_l;//total available torque for acceleration E=37.5*660*9.81;//Stored energy of machine J=E*2/(2*%pi*N/60)^2;//Moment of inertia (in Kg-m^2) alpha=T_a/J;//angular acceleration (in rad/sec^2) t=(2*%pi*N/60)/alpha; disp(t,'Starting Period (in seconds)=')
f2bd8a8f7e4f122f8e657ec38c9a4f9e90824da0
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/sci2for/f_rank.sci
b7fa71f88e5c1bddeed7c3645caeb5aa502eac12
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,323
sci
f_rank.sci
//[stk,nwrk,txt,top]=f_rank(nwrk) //Cette macro realise la traduction de la primitive scilab rank. // //! txt=[] nam='rank' s2=stk(top-rhs+1) v=s2(1) it2=prod(size(v))-1 if it2<>0 then error(nam+' complex : not implemented'),end [s2,nwrk,t0]=typconv(s2,nwrk,'1') n=s2(4);m=s2(5) if n==m then n1=n n2=n else n1='min('+addf(n,'1')+','+m+')' n2='min('+n+','+m+')' end [errn,nwrk]=adderr(nwrk,'echec du calcul du rang') [s,nwrk,t1]=getwrk(nwrk,'1','1',n1) [e,nwrk,t2]=getwrk(nwrk,'1','1',m) [wrk,nwrk,t3]=getwrk(nwrk,'1','1',n) txt=[t0;t1;t2;t3; gencall(['dsvdc',s2(1),n,n,m,s,e,'work',n,'work',m,wrk,'00','ierr']); genif('ierr.ne.0',[' ierr='+string(errn);' return'])] tol=wrk if rhs==1 then nwrk=dclfun(nwrk,'d1mach','1') t0=' '+tol+'='+mulf(mulf(mulf('d1mach(4)',m),n),e) else tol1=stk(top) t0=' '+tol+'='+mulf(mulf(mulf(tol1(1),m),n),e) end [lbl,nwrk]=newlab(nwrk) tl1=string(10*lbl); var='ilb'+tl1; [lbl,nwrk]=newlab(nwrk) tl2=string(10*lbl); t1= genif(part(s,1:length(s)-1)+'+'+var+'-1).le.'+tol,' goto '+tl2) txt=[txt;t0; ' do '+tl1+' '+var+' = 0'+','+subf(n2,'1'); indentfor(t1);part(tl1+' ',1:6)+' continue'; ' '+var+'='+n2; part(tl2+' ',1:6)+' continue'] [nwrk]=freewrk(nwrk,e) [nwrk]=freewrk(nwrk,s) [nwrk]=freewrk(nwrk,wrk) stk=list(var,'0','0','1','1') //end
ef2da30e0e8249f0b7ff0786aa404e33e412e7be
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.8_3.tst
326bc43b557bbb7901d4d7f13fc9946324fe1629
[]
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
574,109
tst
5.8_3.tst
8 208:1 398:1 526:1 749:1 862:1 977:1 1273:1 1533:1 1566:1 1610:1 1721:1 1848:1 1935:1 2031:1 2097:1 2123:1 2124:1 2368:2 2514:1 2535:1 2541:1 2543:1 2950:1 2969:1 3037:1 3078:1 3173:1 3199:1 3482:1 3547:1 3758:1 3948:1 4117:1 4152:1 4217:1 4390:1 4493:1 4702:1 4872:1 4987:1 5121:1 5181:1 5210:1 5303:2 5447:1 5448:1 5463:1 5473:1 5645:1 5772:1 5847:1 5857:1 5926:1 5985:1 6561:1 6647:1 6853:1 6908:1 6919:1 6923:1 6975:1 7073:1 7338:1 7429:1 7432:1 7465:1 7633:1 7852:1 7921:2 8401:4 8429:1 8530:1 8618:1 8649:1 8661:1 9175:1 9252:1 9523:1 9696:1 9773:1 9818:1 9931:1 10225:1 10275:1 10295:1 10370:1 10667:1 10795:1 10857:1 11213:1 11316:1 11423:1 11617:1 11807:1 12086:1 12244:1 12527:1 12555:1 12562:1 12616:1 12861:1 13005:1 13024:1 13080:1 13096:1 13208:1 14114:1 14220:1 14311:1 14521:1 14640:1 14823:1 14827:1 14847:1 14921:1 14947:1 14993:1 15089:1 15090:1 15720:2 15847:1 16110:1 16638:1 16778:1 16850:1 17124:1 17170:1 17196:1 17946:1 17959:1 18488:1 18903:1 19008:1 19079:1 19409:1 19605:1 19796:1 19945:84 20442:1 20850:1 20903:1 20989:1 21394:1 21575:1 21759:1 21885:1 21944:2 22342:1 22386:1 22399:1 22553:1 22605:1 22625:1 22770:1 22824:1 22892:1 22901:1 22921:1 23057:1 23312:1 23432:1 23474:1 23499:1 23783:1 23831:1 24125:1 24234:1 24647:1 24666:1 25233:1 25243:2 26077:1 26209:1 26222:1 26589:1 26690:1 26867:1 27049:1 27181:1 27416:1 28027:1 28054:1 28741:1 28799:1 28865:1 28870:1 29189:1 29421:1 29587:1 30019:1 30394:1 30887:1 30958:1 31294:1 31332:1 31662:1 31678:1 8 41:1 208:1 230:1 360:1 398:1 526:1 749:1 862:1 977:1 1059:1 1273:1 1533:1 1566:1 1610:1 1683:1 1721:1 1848:1 1935:1 1959:1 2031:1 2097:1 2123:1 2124:1 2151:1 2368:3 2514:1 2535:1 2541:1 2543:1 2867:1 2950:1 2969:1 3037:1 3078:1 3148:1 3173:1 3199:1 3482:1 3547:1 3565:1 3758:1 3948:1 4112:1 4117:2 4152:1 4217:1 4242:1 4349:1 4360:1 4388:2 4390:2 4457:1 4493:1 4569:1 4591:1 4702:1 4799:1 4872:1 4987:1 5121:1 5181:1 5210:1 5303:2 5447:1 5448:1 5463:1 5465:1 5473:1 5551:1 5645:1 5772:1 5847:1 5857:1 5926:1 5985:1 6248:1 6561:2 6647:1 6771:1 6853:1 6903:1 6908:1 6919:1 6923:1 6975:1 7073:1 7077:1 7338:1 7429:1 7432:1 7465:1 7633:1 7763:1 7852:1 7921:2 8401:4 8427:1 8429:1 8530:1 8618:1 8649:1 8661:1 8737:1 9175:1 9252:1 9523:1 9579:1 9696:1 9751:1 9760:1 9773:1 9818:1 9931:1 10090:1 10225:1 10247:1 10275:1 10295:1 10370:1 10508:1 10667:1 10795:1 10857:1 11213:1 11252:1 11316:1 11423:1 11617:1 11778:1 11807:1 11859:1 11920:1 12086:1 12190:1 12244:1 12311:1 12393:1 12527:1 12555:1 12562:1 12616:1 12861:1 13005:1 13007:1 13024:1 13080:1 13096:1 13097:1 13171:1 13208:1 13341:1 13429:1 13638:1 13788:1 13807:1 14114:1 14220:1 14285:1 14311:2 14376:1 14521:1 14633:1 14640:1 14674:1 14823:1 14827:1 14847:1 14921:1 14947:1 14993:1 15059:1 15082:1 15089:1 15090:1 15720:2 15802:1 15847:1 15897:1 16110:1 16115:1 16500:1 16638:1 16778:1 16810:1 16850:1 17124:1 17170:1 17196:1 17238:1 17862:1 17945:1 17946:1 17959:1 17961:1 18397:1 18488:1 18903:1 18904:1 19008:1 19010:1 19079:1 19268:1 19409:1 19431:1 19605:1 19627:1 19740:1 19787:1 19796:1 19945:189 20023:1 20442:1 20805:1 20850:1 20903:1 20983:1 20989:1 21394:1 21519:1 21575:1 21759:1 21872:1 21885:1 21944:3 21958:1 22309:1 22318:1 22342:1 22367:1 22386:1 22399:1 22553:1 22585:1 22605:1 22625:1 22664:1 22749:1 22770:1 22801:1 22824:1 22892:1 22901:1 22921:1 22997:1 23046:1 23057:1 23170:1 23213:1 23312:1 23432:1 23440:1 23474:1 23498:1 23499:1 23644:1 23783:1 23815:1 23831:1 24125:1 24234:1 24257:1 24465:1 24647:1 24666:1 24753:1 24826:1 24939:1 25233:1 25243:2 25253:1 25351:1 25356:1 25649:1 25928:1 26031:1 26077:1 26209:1 26222:1 26528:1 26589:1 26690:1 26867:1 27049:1 27076:1 27141:1 27181:1 27358:1 27416:1 27736:1 28027:1 28054:1 28088:1 28307:1 28310:1 28741:1 28767:1 28799:1 28815:1 28824:1 28865:1 28870:1 29113:1 29126:1 29135:1 29189:1 29200:1 29421:1 29587:1 29660:1 30019:1 30394:1 30652:1 30655:1 30833:1 30887:1 30940:1 30958:1 31294:1 31302:1 31332:1 31662:1 31678:1 31743:1 8 41:1 44:1 208:1 230:1 260:1 360:1 398:1 526:1 611:1 749:1 862:1 977:1 1059:1 1273:1 1388:1 1533:1 1560:1 1566:1 1610:2 1683:1 1721:1 1848:1 1935:1 1959:1 2031:1 2062:1 2097:1 2123:1 2124:1 2151:1 2368:3 2514:1 2535:1 2541:1 2543:1 2867:1 2950:1 2969:1 3037:1 3078:1 3148:1 3173:1 3199:1 3261:1 3402:1 3482:1 3547:2 3565:1 3650:1 3758:1 3948:1 4112:1 4117:2 4152:1 4217:1 4242:1 4349:1 4360:1 4388:2 4390:2 4457:1 4493:1 4569:1 4591:1 4702:1 4721:1 4799:1 4835:1 4872:1 4885:1 4987:1 5121:1 5181:1 5210:1 5303:4 5447:1 5448:1 5463:1 5465:1 5473:1 5478:1 5551:1 5645:1 5772:1 5808:1 5847:1 5857:1 5875:1 5893:1 5926:1 5985:1 6084:1 6248:1 6561:2 6647:1 6771:1 6853:1 6903:1 6908:2 6919:1 6923:1 6962:1 6975:1 7028:1 7073:1 7077:1 7204:1 7241:1 7338:1 7390:1 7429:1 7432:1 7465:1 7633:1 7763:1 7852:1 7921:2 8070:1 8401:4 8427:1 8429:1 8530:1 8618:1 8649:1 8659:1 8661:1 8737:1 8790:1 8826:1 8964:1 9175:1 9252:1 9361:1 9509:1 9523:1 9579:1 9696:1 9751:1 9760:1 9773:1 9818:1 9885:1 9931:1 10090:1 10225:1 10247:1 10275:1 10295:1 10370:2 10508:1 10667:1 10795:1 10808:1 10857:1 11006:1 11213:1 11252:1 11316:1 11423:1 11617:1 11634:1 11778:1 11807:1 11859:1 11920:1 12086:1 12190:1 12244:1 12309:1 12311:1 12393:1 12527:1 12535:1 12555:1 12556:1 12562:1 12616:1 12759:1 12861:1 12942:1 13005:1 13007:1 13024:1 13080:1 13096:1 13097:1 13171:1 13208:1 13341:1 13429:1 13638:1 13779:1 13788:1 13807:1 14114:1 14220:2 14285:1 14311:2 14376:1 14521:1 14633:1 14640:1 14674:1 14823:1 14827:1 14847:1 14921:1 14947:1 14993:1 15059:1 15082:1 15089:1 15090:1 15287:1 15720:2 15802:1 15847:1 15897:1 16110:1 16115:1 16233:1 16500:1 16638:1 16646:1 16707:1 16778:1 16810:1 16850:1 17124:1 17170:1 17188:1 17196:1 17238:1 17311:1 17469:1 17862:1 17945:1 17946:1 17959:1 17961:1 18037:1 18397:1 18488:1 18859:1 18903:1 18904:1 19008:1 19010:1 19079:1 19089:1 19233:1 19268:1 19409:1 19431:1 19605:1 19621:1 19627:1 19740:1 19787:1 19796:1 19945:237 20023:1 20442:1 20786:1 20805:1 20850:1 20903:1 20941:1 20983:1 20989:1 21394:1 21423:1 21519:1 21575:1 21633:1 21759:1 21872:1 21885:1 21944:3 21958:1 22151:1 22309:1 22318:1 22342:1 22367:1 22386:1 22399:1 22410:1 22553:1 22585:1 22605:1 22625:1 22664:1 22749:1 22770:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22921:2 22997:1 23046:1 23057:1 23170:1 23213:1 23312:1 23432:1 23440:1 23474:1 23498:1 23499:1 23644:1 23731:1 23783:1 23815:1 23831:1 23982:1 24125:1 24234:1 24257:1 24333:1 24465:1 24530:1 24647:1 24666:1 24744:1 24753:1 24760:1 24826:1 24939:1 25091:1 25119:1 25233:1 25243:2 25253:1 25308:1 25351:1 25356:1 25461:1 25570:1 25649:1 25699:1 25828:1 25928:1 26031:1 26077:1 26209:1 26222:1 26248:1 26528:1 26589:1 26690:1 26867:1 26950:1 27019:1 27049:1 27076:1 27141:1 27160:1 27181:1 27243:1 27358:1 27416:1 27736:1 28027:1 28054:1 28088:1 28211:1 28307:1 28310:1 28463:1 28573:1 28741:1 28766:1 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28865:1 28870:1 28963:1 29113:1 29126:1 29135:1 29189:1 29200:1 29421:1 29587:1 29660:1 30019:1 30256:1 30321:1 30394:1 30608:1 30652:1 30655:1 30679:1 30788:1 30833:1 30852:1 30887:1 30940:1 30958:1 31294:1 31302:1 31332:1 31427:1 31440:1 31647:1 31662:1 31678:1 31743:1 8 10:1 41:1 44:1 208:2 230:1 260:1 360:1 398:1 526:1 611:1 672:1 749:1 862:1 977:1 1059:1 1189:1 1273:1 1303:1 1309:1 1330:1 1388:1 1457:1 1533:1 1560:1 1566:1 1610:2 1683:1 1721:1 1765:1 1848:1 1897:1 1935:1 1959:1 2031:1 2062:1 2097:1 2123:1 2124:1 2135:1 2151:1 2242:1 2309:1 2368:3 2509:1 2514:1 2521:1 2535:1 2540:1 2541:1 2543:1 2545:1 2640:1 2867:1 2950:1 2969:2 3025:1 3037:1 3078:1 3148:2 3173:1 3199:1 3261:1 3402:1 3482:1 3547:2 3552:1 3565:1 3650:1 3758:1 3948:1 3985:1 4112:1 4117:2 4152:1 4217:1 4242:1 4349:1 4360:1 4388:2 4390:2 4457:1 4493:1 4569:1 4591:1 4600:1 4702:1 4721:2 4768:1 4779:1 4799:1 4835:1 4839:1 4872:1 4885:1 4987:1 5069:1 5121:1 5181:1 5194:1 5210:1 5303:4 5447:1 5448:1 5463:1 5465:1 5473:1 5478:1 5551:1 5645:1 5772:1 5808:1 5847:1 5857:1 5875:1 5893:1 5926:1 5985:1 6084:1 6248:1 6561:2 6647:1 6670:1 6771:1 6853:1 6901:1 6903:1 6908:2 6919:1 6923:1 6925:1 6962:1 6975:1 7028:2 7073:1 7077:1 7204:1 7241:1 7338:1 7364:1 7390:1 7396:1 7429:2 7432:2 7465:1 7633:1 7699:1 7763:1 7852:1 7921:2 7960:1 8070:1 8340:1 8341:1 8401:6 8427:2 8429:1 8530:1 8618:1 8649:1 8659:1 8661:1 8737:1 8790:1 8826:1 8964:1 9066:1 9175:1 9176:1 9252:1 9361:1 9509:1 9519:1 9523:1 9579:1 9582:1 9696:1 9751:1 9760:1 9773:1 9798:1 9818:1 9885:1 9931:1 9961:1 10090:1 10225:1 10247:1 10275:1 10295:1 10300:1 10308:1 10370:2 10508:1 10549:1 10667:1 10776:1 10795:1 10808:1 10857:1 10963:1 11006:1 11107:1 11213:1 11252:2 11316:1 11365:1 11423:1 11534:1 11540:1 11617:1 11634:1 11778:2 11807:1 11859:1 11920:2 12086:1 12190:2 12235:1 12244:1 12309:1 12311:1 12393:1 12527:1 12535:1 12555:1 12556:1 12562:1 12616:1 12759:1 12765:1 12861:1 12942:1 13005:1 13007:1 13024:1 13080:1 13086:1 13096:1 13097:1 13171:1 13208:1 13341:1 13429:1 13448:1 13638:1 13779:1 13783:1 13788:1 13807:1 14025:1 14114:1 14219:1 14220:2 14228:1 14285:1 14311:2 14376:1 14521:1 14633:1 14640:1 14674:2 14823:1 14827:1 14847:1 14921:1 14947:1 14993:1 15007:1 15059:1 15082:1 15089:1 15090:1 15287:1 15400:1 15642:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16082:1 16110:1 16112:1 16115:1 16233:1 16500:1 16609:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16778:1 16810:1 16850:1 17112:2 17124:1 17170:1 17188:1 17196:1 17226:1 17238:1 17311:3 17458:1 17469:1 17554:1 17766:1 17862:1 17939:1 17945:1 17946:1 17959:1 17961:1 18037:1 18191:1 18327:1 18397:1 18488:1 18773:1 18805:1 18859:1 18903:1 18904:1 19008:1 19010:1 19079:1 19089:1 19116:1 19233:1 19268:1 19287:1 19409:1 19431:2 19589:1 19605:1 19621:1 19627:1 19740:1 19787:1 19796:1 19945:268 20023:1 20290:1 20442:1 20533:1 20685:1 20786:1 20805:1 20850:1 20903:2 20941:1 20943:1 20983:1 20989:1 21037:1 21394:1 21423:1 21481:1 21519:1 21527:1 21570:1 21575:1 21633:1 21641:1 21759:1 21872:1 21885:1 21944:3 21958:1 22151:1 22185:1 22309:1 22318:1 22342:1 22367:1 22386:2 22399:2 22410:1 22521:1 22553:1 22585:1 22605:1 22622:1 22625:1 22664:1 22749:1 22770:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22921:2 22997:1 23046:1 23057:1 23170:1 23213:1 23312:1 23321:1 23432:1 23440:1 23474:1 23498:1 23499:1 23514:1 23644:1 23655:1 23709:1 23731:1 23783:1 23815:1 23831:1 23910:1 23982:2 24051:1 24125:1 24234:1 24257:1 24333:1 24465:1 24530:1 24585:1 24647:1 24666:1 24744:1 24753:1 24760:1 24826:1 24939:1 25091:1 25119:1 25233:1 25243:2 25253:1 25308:1 25351:1 25356:1 25461:1 25498:1 25570:1 25649:1 25699:1 25765:1 25828:1 25928:1 26031:1 26077:1 26209:1 26222:1 26248:1 26275:1 26280:1 26339:1 26361:1 26413:1 26462:1 26528:1 26556:1 26589:1 26690:1 26788:1 26867:1 26950:1 27019:2 27049:1 27076:1 27141:1 27160:1 27173:1 27181:1 27243:1 27268:1 27358:1 27416:1 27558:1 27736:1 27792:1 27913:1 27946:1 28027:1 28054:1 28088:1 28211:1 28307:1 28310:1 28463:2 28465:1 28573:1 28638:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28865:1 28870:1 28963:1 29113:1 29126:1 29135:1 29189:1 29200:1 29372:1 29396:1 29421:1 29460:1 29488:1 29587:1 29660:1 29703:1 30019:1 30156:1 30256:1 30321:1 30356:1 30394:1 30489:1 30527:1 30608:1 30652:1 30655:1 30679:2 30788:1 30833:1 30846:1 30852:1 30887:2 30940:1 30958:1 31033:1 31294:1 31302:1 31332:1 31376:1 31427:1 31440:1 31538:1 31559:1 31647:1 31662:1 31678:1 31743:1 8 10:1 41:1 44:1 208:3 230:1 260:1 360:1 398:1 475:1 526:1 611:1 672:1 749:1 862:1 977:1 1059:1 1167:1 1189:1 1273:1 1303:1 1309:1 1330:1 1371:1 1388:1 1457:1 1533:1 1560:1 1566:2 1584:1 1610:2 1683:1 1721:1 1765:1 1848:1 1876:1 1897:2 1935:1 1959:1 2031:1 2062:1 2097:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:1 2309:1 2368:3 2506:1 2509:1 2514:1 2521:1 2532:1 2535:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:1 2640:1 2867:1 2929:1 2950:1 2969:2 3025:1 3037:1 3078:1 3148:2 3173:1 3199:1 3261:1 3402:1 3482:1 3547:2 3551:1 3552:1 3565:1 3650:1 3758:1 3948:1 3985:1 4112:1 4117:2 4152:1 4217:2 4220:1 4242:1 4293:1 4349:1 4360:1 4388:2 4390:2 4457:1 4493:1 4569:1 4591:1 4600:1 4603:1 4658:1 4702:1 4721:2 4722:1 4768:1 4779:1 4799:1 4835:1 4839:1 4872:1 4885:1 4987:1 5069:1 5121:1 5181:1 5194:1 5210:1 5303:5 5431:1 5447:1 5448:1 5457:1 5463:1 5465:1 5473:1 5478:1 5479:1 5551:1 5645:1 5772:1 5808:1 5847:1 5857:1 5875:1 5893:1 5926:1 5985:1 6084:1 6110:1 6220:1 6248:1 6465:1 6561:3 6647:1 6670:1 6751:1 6771:1 6853:1 6901:2 6903:1 6908:2 6914:1 6919:1 6923:1 6925:1 6962:1 6975:1 7028:2 7073:1 7077:1 7204:1 7241:1 7338:1 7364:1 7390:1 7396:1 7412:1 7429:3 7432:2 7463:1 7465:1 7633:1 7686:1 7699:1 7702:1 7763:1 7809:1 7852:1 7921:2 7960:1 8070:1 8104:1 8340:1 8341:1 8401:8 8427:2 8429:1 8530:1 8598:1 8618:1 8639:1 8649:1 8659:1 8661:1 8737:1 8790:1 8826:1 8964:2 9066:1 9175:1 9176:1 9252:1 9349:1 9361:1 9387:1 9509:1 9519:1 9523:1 9579:1 9582:1 9696:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9818:1 9885:1 9931:1 9961:1 10016:1 10090:1 10204:1 10225:2 10247:1 10275:1 10295:1 10300:1 10308:1 10370:2 10508:1 10549:1 10569:1 10667:1 10776:1 10795:1 10808:1 10857:1 10963:1 11006:1 11095:1 11107:1 11213:1 11252:2 11316:2 11365:1 11423:1 11534:1 11540:1 11617:1 11634:1 11778:2 11807:1 11830:1 11859:1 11920:2 12026:1 12086:1 12190:2 12235:1 12244:1 12309:1 12311:1 12393:1 12455:1 12527:1 12535:1 12555:2 12556:1 12562:1 12616:1 12759:1 12765:1 12861:1 12942:1 13005:1 13007:1 13024:1 13080:1 13086:1 13096:1 13097:1 13131:1 13171:1 13208:1 13341:1 13429:1 13448:1 13508:1 13638:1 13779:1 13783:1 13788:1 13807:1 14025:1 14036:1 14114:1 14219:1 14220:2 14228:1 14285:1 14311:3 14376:1 14521:1 14633:1 14640:1 14674:2 14823:1 14827:1 14847:1 14921:1 14939:1 14947:1 14993:1 15007:1 15035:1 15059:1 15082:1 15089:1 15090:1 15287:1 15400:1 15411:1 15642:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:1 16082:1 16110:1 16112:1 16115:2 16233:1 16429:1 16500:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:1 16778:1 16782:1 16810:1 16850:1 16963:1 17066:1 17112:2 17124:1 17170:1 17188:1 17196:2 17226:1 17238:1 17311:3 17458:1 17469:1 17476:1 17484:1 17554:1 17743:1 17766:1 17840:1 17862:1 17880:1 17939:1 17945:1 17946:1 17959:1 17961:1 18037:1 18191:1 18327:1 18397:1 18488:1 18773:1 18805:1 18859:1 18903:1 18904:1 19008:1 19010:1 19079:1 19089:1 19116:1 19233:1 19268:1 19287:1 19409:1 19431:2 19589:1 19605:2 19621:1 19627:1 19688:1 19740:1 19787:1 19796:1 19945:332 20023:1 20065:1 20290:1 20442:1 20521:1 20533:1 20546:1 20569:1 20685:1 20754:1 20786:1 20805:1 20850:2 20903:2 20907:1 20941:1 20943:1 20983:1 20989:1 20994:1 21037:1 21045:1 21188:1 21358:1 21394:1 21423:1 21425:1 21481:1 21519:1 21527:1 21570:1 21575:1 21633:1 21641:1 21759:1 21779:1 21872:1 21885:1 21944:3 21958:1 22151:1 22185:1 22309:1 22318:1 22342:1 22367:1 22386:3 22388:1 22399:2 22410:1 22521:1 22553:1 22562:1 22585:1 22605:1 22622:1 22625:1 22664:1 22749:1 22770:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22921:2 22997:1 23046:1 23057:1 23170:1 23190:1 23213:1 23312:1 23321:1 23432:1 23440:1 23465:1 23474:1 23498:1 23499:1 23514:1 23644:1 23655:1 23709:1 23731:1 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:2 24047:1 24051:1 24125:1 24234:1 24257:1 24267:1 24333:1 24428:1 24463:1 24465:1 24530:1 24585:1 24614:1 24647:1 24666:1 24744:1 24753:1 24760:1 24826:1 24914:1 24939:1 24940:1 25091:1 25119:1 25188:1 25233:1 25243:2 25253:1 25271:1 25308:1 25351:1 25356:1 25461:1 25498:1 25570:1 25649:1 25699:1 25765:1 25828:1 25928:1 25930:1 26031:1 26077:1 26161:1 26209:1 26222:1 26248:1 26275:1 26280:2 26339:1 26361:2 26413:1 26462:1 26528:1 26556:1 26589:1 26690:1 26788:2 26867:1 26950:1 27008:1 27019:2 27030:1 27049:1 27076:1 27141:1 27160:1 27173:1 27181:1 27243:1 27268:1 27358:1 27374:1 27375:1 27413:1 27416:1 27558:1 27736:1 27792:1 27913:1 27946:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28307:1 28310:1 28385:1 28463:2 28465:1 28573:1 28638:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28851:1 28865:1 28870:1 28963:1 29098:1 29113:1 29126:1 29135:1 29189:1 29198:1 29200:1 29372:1 29396:1 29421:1 29460:1 29468:1 29488:1 29493:1 29548:1 29587:1 29659:1 29660:1 29703:1 29711:1 29801:1 30019:1 30092:1 30156:1 30241:1 30256:1 30300:1 30321:2 30356:1 30365:1 30394:1 30489:2 30527:1 30608:1 30652:1 30655:1 30679:2 30788:1 30810:1 30833:1 30846:1 30852:1 30887:2 30940:1 30958:1 30974:1 31033:1 31294:1 31302:1 31332:1 31347:1 31376:1 31427:1 31440:1 31485:1 31538:1 31559:1 31624:1 31647:1 31662:1 31678:1 31743:1 8 10:1 41:1 44:1 208:3 230:1 260:2 360:1 363:1 398:1 464:1 475:1 526:1 611:1 643:1 672:1 749:1 862:1 953:1 977:1 1059:1 1167:1 1189:1 1273:1 1298:1 1303:1 1309:1 1315:1 1330:1 1371:1 1388:1 1403:1 1412:1 1457:1 1533:1 1560:1 1566:2 1584:1 1610:2 1659:1 1683:1 1701:1 1721:1 1765:1 1783:1 1806:1 1848:1 1871:1 1876:1 1897:2 1917:1 1935:1 1959:1 1982:1 2031:1 2062:1 2087:1 2097:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:1 2309:1 2368:3 2506:1 2509:1 2514:1 2521:1 2527:1 2532:1 2535:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:1 2640:1 2867:1 2929:1 2950:1 2969:2 3024:1 3025:1 3037:1 3078:1 3133:1 3148:2 3173:1 3199:1 3254:1 3261:1 3402:1 3482:2 3547:2 3551:1 3552:1 3565:1 3578:1 3650:1 3748:1 3758:1 3948:1 3985:1 4101:1 4112:1 4117:2 4145:1 4152:1 4217:2 4220:1 4242:1 4293:1 4349:1 4360:1 4388:2 4390:2 4457:1 4493:1 4544:1 4569:1 4591:1 4600:1 4603:1 4658:1 4702:1 4721:2 4722:1 4749:1 4768:1 4779:1 4799:1 4835:1 4839:1 4872:1 4885:1 4901:1 4987:1 5069:2 5121:1 5140:1 5181:1 5194:1 5210:1 5303:5 5431:1 5447:1 5448:1 5451:1 5457:1 5463:1 5465:1 5473:1 5478:1 5479:1 5551:1 5645:1 5772:1 5808:1 5847:1 5857:2 5875:1 5893:1 5926:1 5985:1 6084:1 6110:1 6220:1 6248:1 6384:1 6465:1 6541:1 6561:3 6604:1 6647:1 6670:1 6751:1 6771:1 6798:1 6853:1 6889:1 6901:2 6903:1 6908:2 6911:1 6914:1 6919:1 6923:1 6925:1 6962:1 6975:1 7028:2 7073:1 7077:1 7204:1 7241:1 7251:1 7338:1 7364:1 7390:1 7396:1 7412:1 7429:3 7432:2 7463:1 7465:1 7561:1 7600:1 7633:1 7686:1 7699:1 7702:1 7763:1 7809:1 7852:1 7921:2 7960:1 7971:1 8070:1 8104:1 8340:1 8341:1 8392:1 8401:8 8427:2 8429:1 8491:1 8530:1 8598:1 8618:1 8639:1 8649:1 8659:1 8661:1 8737:1 8741:1 8790:1 8815:1 8826:1 8964:3 9066:1 9077:1 9166:1 9175:1 9176:1 9252:1 9349:1 9350:1 9361:1 9387:1 9485:1 9509:1 9519:2 9523:1 9579:1 9582:1 9696:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9818:1 9885:1 9931:1 9961:1 10016:1 10090:1 10204:1 10225:2 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10370:2 10508:2 10549:1 10569:1 10667:1 10776:1 10795:1 10808:1 10857:1 10963:1 10964:1 11006:1 11095:1 11107:1 11192:1 11213:1 11252:2 11316:2 11357:1 11365:1 11423:1 11529:1 11534:1 11540:1 11617:2 11634:1 11778:2 11781:1 11807:1 11830:1 11859:1 11891:1 11920:2 12026:1 12086:1 12190:2 12200:1 12235:1 12244:1 12309:1 12311:1 12393:1 12455:1 12527:1 12535:1 12555:2 12556:1 12562:1 12616:1 12705:1 12759:1 12765:1 12861:1 12942:1 13005:1 13007:1 13024:1 13053:1 13054:1 13080:1 13086:1 13096:1 13097:1 13131:1 13171:1 13208:1 13341:1 13429:1 13448:1 13485:1 13508:1 13638:1 13713:1 13779:1 13783:1 13788:1 13807:1 13929:1 14025:1 14036:1 14114:1 14219:1 14220:3 14228:2 14285:1 14311:3 14376:1 14416:1 14521:1 14633:2 14640:1 14674:2 14823:1 14827:1 14847:1 14870:1 14877:1 14921:1 14939:1 14947:1 14993:1 15007:1 15021:1 15035:1 15059:1 15082:1 15089:1 15090:1 15287:1 15329:1 15400:1 15404:1 15411:1 15642:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:1 16082:1 16110:1 16112:1 16115:2 16233:1 16429:1 16500:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:1 16778:1 16782:1 16810:1 16850:1 16963:1 17066:1 17112:2 17115:1 17124:1 17156:1 17170:1 17188:1 17196:2 17226:1 17238:1 17253:1 17311:3 17458:2 17469:1 17476:1 17477:1 17484:1 17554:1 17677:1 17743:1 17766:1 17840:1 17862:1 17880:1 17939:1 17945:1 17946:1 17959:2 17961:1 18037:1 18191:2 18327:1 18397:1 18488:1 18637:1 18773:1 18805:1 18859:2 18903:1 18904:1 19008:1 19010:1 19079:1 19089:1 19116:1 19233:1 19268:1 19287:1 19409:1 19431:2 19589:1 19605:2 19621:1 19627:1 19688:1 19705:1 19740:1 19787:1 19796:1 19945:393 20023:1 20065:1 20290:1 20442:1 20521:1 20533:1 20546:1 20569:1 20685:1 20733:1 20754:1 20786:1 20805:1 20850:2 20903:2 20907:1 20941:1 20943:1 20983:1 20989:1 20994:1 21037:1 21045:1 21188:1 21192:1 21358:1 21394:1 21423:1 21425:1 21481:1 21519:1 21527:1 21556:1 21570:1 21575:1 21633:1 21641:1 21735:1 21759:1 21779:1 21872:1 21885:1 21944:3 21958:1 21968:1 22151:1 22185:1 22249:1 22309:1 22318:1 22342:1 22367:1 22386:3 22388:1 22399:2 22410:1 22521:1 22553:1 22562:1 22585:1 22605:1 22622:1 22625:1 22664:1 22749:1 22754:1 22770:1 22785:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22920:1 22921:2 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23170:1 23190:1 23213:1 23312:1 23321:1 23407:1 23432:1 23440:1 23465:1 23474:1 23498:1 23499:1 23514:1 23644:1 23655:1 23709:1 23731:1 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:2 23988:1 24047:1 24051:1 24125:1 24234:1 24257:1 24267:1 24333:1 24402:1 24428:1 24463:1 24465:1 24502:1 24530:1 24585:2 24614:2 24647:1 24666:1 24744:1 24753:1 24760:1 24826:1 24857:1 24914:1 24939:1 24940:1 25011:1 25091:1 25119:1 25155:1 25188:1 25233:1 25243:2 25253:1 25271:1 25308:1 25351:1 25356:1 25461:1 25498:1 25570:2 25649:1 25699:1 25765:1 25767:1 25828:1 25907:1 25928:1 25930:1 26031:1 26077:1 26144:1 26161:1 26209:1 26222:1 26248:1 26275:1 26280:2 26339:1 26361:2 26409:1 26413:1 26447:1 26462:1 26528:1 26556:1 26589:1 26660:1 26690:2 26788:2 26867:1 26950:1 27008:1 27019:2 27022:1 27030:1 27049:1 27076:1 27141:1 27160:1 27173:1 27181:1 27215:1 27243:1 27268:1 27358:1 27374:1 27375:1 27396:1 27413:1 27416:1 27521:1 27558:1 27736:1 27792:1 27913:1 27946:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:2 28465:1 28573:1 28618:1 28638:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28851:1 28865:1 28870:1 28963:1 29098:1 29113:1 29126:1 29135:1 29189:1 29198:1 29200:1 29319:1 29372:1 29396:2 29421:1 29460:1 29468:1 29488:2 29493:1 29548:1 29587:1 29659:1 29660:1 29703:1 29711:1 29801:1 30010:1 30019:1 30092:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:3 30356:1 30365:1 30394:1 30489:2 30527:1 30608:1 30652:1 30655:1 30679:2 30721:1 30788:1 30810:1 30833:1 30846:1 30852:1 30887:2 30940:1 30958:1 30974:1 31033:2 31143:1 31294:1 31302:1 31332:1 31347:1 31376:1 31427:1 31440:1 31485:1 31538:1 31559:1 31603:1 31624:1 31646:1 31647:1 31662:1 31678:1 31718:1 31737:1 31743:1 8 10:1 41:1 44:1 206:1 208:3 230:1 260:2 360:1 363:1 398:2 464:1 475:1 526:1 611:1 643:1 672:1 749:1 862:1 953:1 977:1 1059:1 1100:1 1167:1 1189:1 1273:1 1298:1 1303:1 1309:1 1315:1 1330:1 1371:1 1388:1 1403:1 1412:1 1457:1 1533:1 1537:1 1560:1 1566:3 1571:1 1584:1 1610:2 1659:2 1683:1 1701:1 1721:1 1765:1 1783:1 1806:1 1826:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1935:1 1959:1 1982:1 2031:1 2062:2 2087:1 2097:1 2109:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:1 2309:1 2368:3 2506:1 2509:1 2514:1 2521:1 2527:2 2532:2 2535:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:1 2640:1 2867:1 2929:1 2950:1 2969:2 3024:1 3025:1 3037:1 3078:1 3104:1 3133:1 3148:2 3173:1 3175:1 3199:1 3254:1 3258:1 3261:1 3402:1 3482:2 3547:2 3551:1 3552:1 3565:1 3578:1 3650:1 3748:1 3758:1 3948:1 3985:1 4101:1 4112:1 4117:2 4145:1 4152:1 4217:2 4220:1 4242:1 4293:1 4349:1 4351:1 4360:1 4388:2 4390:2 4457:1 4493:1 4544:1 4569:1 4591:1 4600:1 4603:1 4658:1 4695:1 4702:1 4721:2 4722:1 4749:1 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4987:1 5069:2 5111:1 5121:1 5140:1 5181:1 5194:1 5210:1 5303:5 5431:1 5447:1 5448:1 5451:1 5457:1 5463:1 5465:1 5473:1 5478:1 5479:1 5551:1 5645:1 5707:1 5772:1 5808:1 5847:1 5857:2 5875:1 5893:1 5926:1 5985:1 6084:1 6110:1 6112:1 6220:1 6248:1 6384:1 6465:2 6541:1 6561:3 6589:1 6604:1 6647:1 6670:1 6751:1 6771:1 6798:2 6853:1 6889:1 6901:2 6903:1 6906:1 6908:2 6911:1 6914:1 6919:1 6923:1 6925:1 6962:1 6975:1 6977:1 7028:2 7073:1 7077:1 7204:1 7232:1 7241:1 7251:1 7338:1 7364:1 7390:2 7396:1 7412:1 7429:3 7432:2 7463:2 7465:1 7561:1 7571:1 7600:1 7605:2 7633:1 7686:1 7699:1 7702:1 7763:1 7809:3 7852:1 7860:1 7910:1 7921:2 7960:1 7971:1 8070:1 8104:1 8340:1 8341:1 8362:1 8392:1 8401:9 8427:2 8429:2 8491:1 8530:1 8598:1 8618:1 8632:1 8639:2 8649:1 8659:1 8661:1 8678:1 8737:1 8741:1 8790:1 8815:1 8826:1 8964:3 9066:1 9077:1 9166:1 9175:1 9176:1 9252:1 9347:1 9349:1 9350:1 9351:1 9354:2 9361:1 9387:1 9485:1 9509:1 9519:2 9523:1 9579:1 9582:1 9666:1 9696:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9818:2 9842:1 9885:1 9931:1 9961:1 10016:1 10090:1 10204:1 10225:2 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10318:1 10370:2 10385:1 10508:2 10549:1 10569:1 10667:1 10736:1 10776:1 10795:1 10808:1 10857:1 10963:1 10964:1 11006:1 11095:1 11107:1 11192:1 11213:1 11252:2 11308:1 11316:3 11357:1 11365:1 11423:1 11529:1 11534:1 11540:1 11586:1 11617:2 11634:1 11778:2 11781:1 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 12026:1 12086:1 12190:2 12200:1 12235:1 12244:1 12309:1 12311:1 12353:1 12393:1 12455:1 12527:1 12535:1 12555:2 12556:1 12562:1 12616:1 12705:1 12759:1 12765:1 12861:1 12942:1 13005:1 13007:1 13024:1 13053:1 13054:1 13080:1 13086:1 13096:1 13097:1 13131:1 13171:1 13184:1 13208:1 13341:1 13429:1 13448:1 13485:1 13508:1 13638:1 13713:1 13779:1 13783:1 13788:1 13807:1 13929:1 14025:1 14036:1 14114:1 14219:1 14220:3 14228:2 14285:1 14311:6 14376:1 14416:1 14521:1 14545:1 14633:2 14640:1 14674:2 14823:1 14827:1 14847:1 14870:1 14877:1 14921:1 14939:1 14947:1 14993:1 15007:1 15021:1 15035:1 15059:1 15082:1 15089:1 15090:1 15174:1 15287:1 15329:1 15400:1 15404:1 15411:1 15642:1 15697:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:1 16082:1 16110:1 16112:1 16115:2 16166:1 16233:1 16429:1 16500:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:1 16778:1 16782:1 16810:1 16828:1 16850:1 16963:1 17066:1 17112:2 17115:1 17124:1 17156:1 17170:1 17188:1 17196:5 17226:1 17238:1 17253:1 17311:3 17458:2 17469:1 17476:1 17477:1 17484:1 17554:1 17677:1 17743:1 17749:1 17766:1 17793:1 17840:2 17862:1 17880:1 17939:1 17945:1 17946:1 17959:2 17961:1 18014:1 18037:2 18191:2 18327:1 18372:1 18397:1 18458:1 18488:1 18637:1 18773:1 18805:1 18859:2 18903:1 18904:1 19008:1 19010:1 19022:1 19079:1 19089:1 19116:1 19233:1 19268:1 19287:1 19310:1 19409:1 19431:2 19589:1 19605:3 19621:1 19627:1 19688:1 19705:1 19740:1 19787:1 19788:1 19796:1 19861:1 19945:477 20023:1 20065:1 20147:1 20172:1 20179:1 20290:1 20442:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20733:1 20754:1 20786:1 20805:1 20850:3 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:1 20994:1 21037:1 21045:1 21188:1 21192:1 21358:1 21394:1 21423:1 21425:1 21481:1 21519:1 21527:1 21556:1 21567:1 21570:1 21575:1 21580:1 21633:1 21641:1 21656:1 21682:1 21735:1 21759:1 21779:1 21872:1 21885:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22249:1 22309:1 22318:1 22342:1 22367:1 22386:3 22388:1 22399:2 22410:1 22419:1 22434:1 22521:1 22553:1 22562:1 22585:1 22605:1 22622:1 22625:1 22639:1 22664:1 22749:1 22754:1 22770:1 22785:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22920:1 22921:2 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23170:1 23190:1 23213:1 23312:1 23321:1 23376:1 23407:1 23432:1 23440:1 23465:1 23474:1 23498:1 23499:1 23514:1 23644:1 23655:1 23709:1 23731:1 23734:2 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:2 23988:1 24047:1 24051:1 24125:1 24234:1 24257:1 24267:1 24333:1 24402:1 24428:1 24463:1 24465:1 24502:1 24530:1 24585:2 24614:2 24647:1 24666:1 24744:1 24753:1 24760:1 24818:1 24826:1 24855:1 24857:1 24914:1 24931:1 24939:2 24940:1 25011:1 25091:1 25096:1 25119:1 25155:1 25188:1 25233:1 25243:2 25253:1 25271:1 25308:2 25351:1 25356:1 25461:1 25498:1 25570:2 25649:1 25670:1 25699:1 25765:1 25767:1 25828:1 25907:1 25928:1 25930:1 26031:1 26077:1 26144:1 26161:1 26209:1 26222:1 26248:1 26253:1 26275:1 26280:2 26339:1 26361:2 26409:1 26413:1 26447:1 26462:1 26528:1 26556:1 26589:1 26660:1 26690:2 26788:2 26867:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:1 27049:1 27074:1 27076:1 27077:1 27141:1 27160:1 27173:1 27181:1 27215:1 27228:1 27243:1 27268:1 27358:1 27374:1 27375:1 27396:1 27413:1 27416:1 27521:1 27558:1 27736:1 27792:1 27802:1 27913:1 27946:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:2 28465:1 28573:1 28618:1 28638:1 28676:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28865:1 28870:2 28963:1 29098:1 29113:1 29117:1 29126:1 29135:1 29189:1 29198:2 29200:1 29201:1 29319:1 29372:1 29396:2 29421:1 29460:1 29468:1 29488:2 29493:1 29548:1 29549:1 29550:1 29587:2 29622:1 29659:1 29660:1 29703:1 29711:1 29801:1 30010:1 30019:1 30092:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:7 30356:1 30365:1 30394:1 30489:2 30527:1 30608:1 30652:1 30655:1 30679:2 30721:1 30788:1 30810:1 30833:1 30846:1 30852:1 30887:2 30940:1 30958:1 30974:1 31033:2 31038:1 31143:1 31294:1 31302:1 31332:1 31347:1 31376:1 31427:1 31440:1 31476:1 31485:1 31538:1 31559:1 31603:1 31624:1 31636:1 31646:1 31647:1 31654:1 31662:1 31678:1 31718:1 31737:1 31743:1 8 10:1 41:1 44:2 206:1 208:3 230:1 260:2 360:1 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 749:1 862:1 953:1 977:1 1006:1 1059:1 1100:1 1167:1 1173:1 1189:1 1273:1 1298:1 1303:1 1309:1 1315:1 1330:1 1371:1 1388:1 1403:1 1412:1 1457:1 1475:1 1533:1 1537:1 1560:2 1566:4 1571:1 1584:1 1601:1 1610:2 1659:2 1683:1 1701:2 1721:2 1765:1 1783:1 1806:1 1826:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1982:1 2019:1 2031:1 2062:2 2087:1 2097:1 2109:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:1 2309:1 2368:3 2506:1 2509:1 2514:1 2521:1 2527:2 2532:3 2535:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:1 2640:1 2867:1 2929:1 2950:1 2962:1 2969:2 3024:1 3025:1 3037:1 3050:1 3078:1 3104:1 3133:1 3138:1 3148:2 3173:1 3175:1 3199:1 3254:1 3258:1 3261:1 3402:1 3413:1 3438:1 3482:2 3547:3 3551:1 3552:1 3565:1 3578:1 3603:1 3650:1 3748:2 3758:1 3869:1 3935:1 3948:1 3985:1 4101:1 4112:1 4117:2 4145:1 4152:1 4217:2 4220:1 4242:1 4293:1 4342:1 4349:1 4351:1 4360:1 4388:2 4390:2 4457:1 4480:1 4493:1 4544:1 4569:1 4591:2 4600:1 4603:1 4606:1 4658:1 4695:1 4702:1 4721:2 4722:1 4749:1 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5181:1 5194:1 5210:1 5278:1 5303:6 5327:1 5330:1 5431:1 5447:2 5448:1 5451:1 5457:1 5463:1 5465:1 5473:1 5478:2 5479:1 5551:1 5645:1 5707:1 5720:1 5772:1 5808:1 5847:1 5857:2 5875:1 5893:1 5926:1 5985:2 6084:1 6110:1 6112:1 6220:1 6248:1 6384:1 6387:1 6396:1 6465:2 6541:1 6561:3 6589:1 6604:1 6647:1 6670:1 6751:1 6771:1 6798:2 6853:1 6889:1 6901:2 6903:1 6906:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:1 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7204:1 7232:1 7241:1 7251:1 7338:1 7361:1 7364:1 7390:2 7396:1 7412:1 7429:3 7432:2 7450:1 7463:2 7465:2 7561:1 7571:1 7573:1 7600:1 7605:2 7633:1 7686:1 7699:1 7702:1 7763:1 7809:3 7810:1 7852:1 7860:1 7891:1 7910:1 7921:2 7960:1 7971:1 8070:1 8104:1 8340:1 8341:1 8362:1 8392:1 8401:10 8427:2 8429:2 8491:1 8530:1 8598:1 8618:1 8632:1 8639:2 8649:1 8659:1 8661:1 8678:1 8737:1 8741:1 8790:1 8815:1 8826:1 8964:3 8987:1 9066:1 9077:1 9166:1 9175:1 9176:1 9252:1 9347:1 9349:1 9350:1 9351:1 9354:2 9361:1 9387:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:1 9579:1 9582:1 9623:1 9666:1 9696:1 9699:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9818:2 9819:1 9842:1 9885:1 9931:2 9961:1 10016:1 10020:1 10090:1 10204:1 10225:2 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10318:1 10370:2 10385:1 10508:2 10549:1 10569:1 10667:1 10736:1 10776:1 10795:1 10808:1 10857:1 10963:1 10964:1 11006:1 11095:1 11107:1 11123:1 11192:1 11209:1 11213:1 11216:1 11252:2 11308:1 11316:4 11357:2 11365:1 11423:1 11466:1 11529:1 11534:1 11540:1 11586:1 11617:2 11633:1 11634:1 11751:1 11778:2 11781:1 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 12026:1 12086:1 12155:1 12190:2 12200:1 12235:1 12244:1 12309:1 12311:1 12353:1 12393:1 12455:1 12527:2 12535:1 12555:2 12556:1 12562:1 12616:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13053:1 13054:1 13080:1 13086:1 13096:1 13097:1 13131:1 13171:1 13184:1 13208:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13713:1 13779:1 13783:1 13788:1 13807:1 13929:1 14025:1 14036:1 14068:1 14114:1 14196:1 14219:1 14220:3 14228:2 14285:1 14311:7 14376:1 14416:1 14521:1 14545:1 14633:2 14640:1 14674:2 14823:1 14827:1 14847:1 14870:1 14877:1 14921:1 14939:1 14947:1 14993:1 15007:1 15021:1 15035:1 15059:1 15082:1 15089:1 15090:1 15120:1 15170:1 15174:1 15287:1 15329:1 15400:1 15404:1 15411:1 15513:1 15570:1 15642:1 15697:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:1 16082:1 16110:1 16112:1 16115:2 16166:1 16233:1 16429:1 16500:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:1 16778:1 16782:1 16810:1 16828:1 16850:1 16963:1 17066:1 17079:1 17112:2 17115:1 17124:1 17156:1 17170:1 17188:1 17196:5 17226:2 17238:1 17253:1 17311:4 17458:2 17469:1 17476:1 17477:1 17484:1 17499:1 17554:1 17677:1 17743:1 17749:1 17766:1 17793:1 17840:2 17862:1 17880:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18191:2 18265:1 18327:1 18372:1 18397:1 18458:1 18488:1 18637:1 18773:1 18805:1 18859:2 18903:1 18904:1 19008:1 19010:1 19022:1 19079:1 19089:1 19116:1 19233:1 19268:1 19287:1 19310:1 19409:1 19431:2 19589:1 19605:4 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19787:1 19788:1 19796:1 19861:1 19945:546 20023:1 20065:1 20147:1 20172:1 20179:1 20290:2 20442:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20733:1 20754:1 20786:1 20805:1 20807:1 20850:4 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:1 20994:1 21037:1 21045:1 21188:1 21192:1 21358:1 21375:1 21394:1 21423:1 21425:1 21481:1 21488:1 21519:1 21527:1 21556:1 21567:1 21570:1 21575:1 21580:1 21590:1 21593:1 21633:1 21641:1 21656:1 21682:1 21735:1 21759:1 21779:1 21842:1 21872:1 21885:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22203:1 22249:1 22309:1 22318:2 22321:1 22342:1 22367:1 22386:3 22388:1 22399:2 22410:1 22419:1 22434:1 22506:1 22521:1 22553:1 22558:1 22562:1 22585:1 22605:1 22622:1 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22785:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22920:1 22921:3 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23170:1 23190:1 23213:1 23312:1 23321:1 23376:1 23407:1 23432:1 23440:1 23465:1 23474:1 23488:1 23498:1 23499:1 23514:1 23540:1 23644:1 23655:1 23709:1 23710:1 23731:1 23734:2 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:3 23988:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:1 24753:1 24760:1 24818:2 24826:1 24849:1 24855:1 24857:1 24914:1 24931:1 24939:2 24940:1 25011:1 25091:1 25096:1 25119:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25308:2 25351:1 25356:1 25461:1 25498:1 25570:2 25649:1 25670:1 25699:1 25765:1 25767:2 25828:1 25907:2 25928:1 25930:1 25975:1 26031:1 26077:1 26144:1 26161:1 26209:1 26222:1 26248:1 26253:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26447:1 26462:1 26528:1 26556:2 26589:1 26660:1 26690:2 26788:2 26797:1 26867:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:1 27049:1 27074:1 27076:1 27077:1 27141:1 27160:1 27173:1 27181:1 27215:2 27228:1 27243:1 27268:1 27358:1 27374:1 27375:1 27396:1 27413:1 27416:1 27521:1 27558:1 27736:1 27792:1 27802:1 27909:1 27913:1 27946:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:2 28465:1 28573:1 28618:1 28638:1 28639:1 28676:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:2 28911:1 28963:1 29098:1 29111:1 29113:1 29117:1 29126:1 29135:1 29189:1 29198:2 29200:1 29201:1 29319:1 29372:1 29396:2 29421:1 29460:1 29468:1 29488:2 29493:1 29496:1 29548:1 29549:1 29550:1 29587:2 29622:1 29627:1 29659:1 29660:1 29703:1 29711:1 29801:1 30010:1 30019:1 30092:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:7 30330:1 30356:1 30365:1 30394:1 30445:1 30456:1 30489:2 30527:1 30608:1 30652:1 30655:1 30679:2 30721:1 30788:1 30810:1 30833:1 30846:1 30852:1 30887:2 30940:1 30958:1 30974:1 31033:2 31038:1 31138:1 31143:1 31294:1 31302:1 31332:1 31347:1 31376:1 31427:1 31440:1 31476:1 31485:1 31538:1 31559:1 31603:1 31624:1 31636:1 31646:1 31647:1 31654:1 31662:1 31678:1 31718:1 31737:1 31743:1 8 10:1 41:1 44:2 91:1 198:1 206:1 208:3 230:1 260:2 360:1 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 749:1 862:1 953:1 977:1 1006:1 1059:1 1100:1 1167:1 1173:1 1189:1 1273:1 1298:1 1303:1 1309:1 1315:1 1330:1 1371:1 1388:1 1391:1 1403:1 1412:1 1440:1 1457:1 1475:1 1533:1 1537:1 1560:2 1566:4 1571:1 1584:1 1601:1 1610:2 1644:1 1659:2 1683:1 1701:2 1721:2 1765:1 1783:1 1806:1 1826:1 1832:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1982:1 2019:1 2031:1 2062:2 2082:1 2087:1 2097:1 2109:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:1 2309:1 2368:3 2506:1 2509:1 2512:1 2514:1 2521:1 2527:2 2532:3 2535:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:2 2640:1 2867:1 2929:1 2950:1 2962:1 2969:2 3024:1 3025:1 3037:1 3050:1 3078:1 3104:1 3133:1 3138:1 3148:2 3173:1 3175:1 3199:1 3254:1 3258:1 3261:1 3402:1 3413:1 3438:1 3482:2 3542:1 3547:3 3551:1 3552:1 3565:1 3578:1 3603:1 3650:1 3748:2 3758:1 3869:1 3935:1 3948:1 3985:1 4101:1 4112:1 4117:2 4145:1 4152:1 4217:2 4220:1 4242:1 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4388:2 4390:2 4457:1 4480:1 4493:1 4544:1 4569:1 4591:2 4600:2 4603:1 4606:1 4658:1 4695:1 4702:1 4721:2 4722:1 4749:1 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5181:1 5194:1 5210:1 5278:1 5303:6 5327:1 5330:1 5431:1 5447:3 5448:1 5451:1 5457:1 5463:1 5465:1 5473:1 5478:3 5479:1 5551:1 5645:1 5707:1 5713:1 5720:1 5772:1 5808:1 5847:1 5857:2 5875:1 5893:1 5926:1 5985:2 6073:1 6084:1 6110:1 6112:1 6117:1 6220:1 6248:1 6384:1 6387:1 6396:1 6465:2 6541:1 6561:3 6589:1 6604:1 6647:1 6670:1 6675:1 6751:1 6771:1 6798:2 6853:1 6857:1 6889:1 6901:2 6903:1 6906:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:2 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7161:1 7204:1 7232:1 7241:1 7251:1 7338:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:2 7450:1 7463:2 7465:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:1 7686:1 7691:1 7699:1 7702:1 7763:1 7809:3 7810:1 7852:1 7860:1 7891:1 7910:1 7921:2 7960:1 7971:1 8029:1 8070:1 8104:2 8340:2 8341:1 8362:1 8392:1 8401:11 8427:2 8429:2 8491:1 8530:1 8598:1 8618:1 8632:1 8639:2 8649:1 8659:1 8661:1 8678:1 8737:1 8741:1 8790:1 8815:1 8826:1 8964:3 8987:1 9066:1 9077:1 9115:1 9164:1 9166:1 9175:1 9176:1 9252:1 9340:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:1 9387:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:1 9579:1 9582:1 9623:1 9666:1 9696:1 9699:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9818:2 9819:1 9842:1 9885:1 9931:2 9961:1 10016:1 10020:1 10090:1 10204:1 10225:2 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10318:1 10370:2 10385:1 10508:2 10549:1 10569:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10963:1 10964:1 11006:1 11095:1 11107:1 11123:1 11192:1 11209:1 11213:1 11216:1 11252:2 11308:1 11316:4 11357:3 11365:1 11423:1 11466:1 11529:1 11534:1 11540:1 11586:1 11617:2 11633:1 11634:1 11747:1 11751:1 11778:2 11781:1 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 12026:1 12068:1 12086:1 12155:1 12190:2 12200:1 12235:1 12244:1 12309:1 12311:1 12353:1 12393:1 12455:1 12527:2 12535:1 12555:2 12556:1 12562:1 12616:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13053:1 13054:1 13080:1 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13208:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13713:1 13779:1 13783:1 13788:1 13807:1 13929:1 14025:2 14034:1 14036:1 14068:2 14114:1 14196:1 14219:2 14220:3 14228:2 14285:1 14311:7 14376:1 14416:1 14521:1 14545:1 14606:1 14633:2 14640:1 14674:2 14823:1 14827:1 14847:1 14870:1 14877:1 14921:1 14939:1 14947:1 14993:1 15007:1 15021:1 15035:1 15059:1 15082:1 15089:1 15090:1 15120:1 15170:1 15174:1 15251:1 15287:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15642:1 15666:1 15697:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:1 16082:1 16110:1 16112:1 16115:2 16166:1 16233:1 16429:1 16500:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:1 16778:1 16782:1 16810:1 16828:1 16847:1 16850:1 16888:1 16963:1 17066:1 17079:1 17112:2 17115:1 17124:1 17156:1 17170:1 17188:1 17196:5 17226:2 17238:1 17253:1 17311:4 17367:1 17427:1 17458:2 17469:1 17476:1 17477:1 17484:1 17499:1 17554:1 17677:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:2 17862:1 17880:1 17916:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18171:1 18191:2 18265:1 18283:1 18317:1 18327:1 18372:1 18397:1 18458:1 18488:1 18637:1 18773:1 18783:1 18805:1 18859:2 18903:1 18904:1 19008:1 19010:1 19022:1 19079:1 19089:1 19116:1 19233:1 19268:1 19287:1 19310:1 19409:1 19431:2 19589:1 19605:4 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19787:1 19788:1 19796:1 19861:1 19934:1 19945:581 20023:1 20065:1 20147:1 20172:1 20179:1 20290:2 20442:1 20511:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20733:1 20754:1 20786:1 20805:1 20807:1 20850:4 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:1 20994:1 21009:1 21037:1 21045:1 21188:1 21192:1 21358:1 21375:1 21394:1 21423:1 21425:1 21444:1 21481:1 21488:1 21519:1 21527:1 21556:1 21567:1 21570:1 21575:1 21580:1 21590:1 21593:1 21633:1 21641:1 21656:1 21682:1 21735:1 21759:1 21779:1 21842:1 21872:1 21885:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22203:1 22249:1 22309:1 22318:2 22321:1 22342:1 22367:1 22386:3 22388:1 22399:2 22410:1 22419:1 22434:1 22506:1 22521:1 22553:1 22558:1 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22785:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:1 22920:1 22921:3 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23170:1 23190:1 23213:1 23312:1 23321:1 23331:1 23376:1 23407:1 23432:1 23440:1 23465:2 23474:1 23488:1 23498:1 23499:2 23514:1 23540:1 23549:1 23644:1 23655:1 23709:1 23710:1 23731:2 23734:2 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:3 23988:1 24026:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:2 24753:1 24760:1 24818:2 24826:1 24849:1 24855:1 24857:1 24914:1 24931:1 24939:2 24940:1 25011:1 25037:1 25091:1 25096:1 25119:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25308:3 25351:1 25356:1 25461:1 25498:1 25570:2 25574:1 25649:1 25670:1 25699:1 25765:1 25767:2 25803:1 25828:1 25833:1 25907:2 25928:1 25930:1 25975:1 26031:1 26052:1 26077:1 26144:1 26161:1 26209:1 26222:1 26248:1 26253:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26447:1 26462:1 26528:1 26556:2 26589:1 26660:1 26690:2 26788:2 26797:1 26867:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:1 27049:1 27074:1 27076:1 27077:1 27141:1 27160:1 27173:1 27181:1 27215:2 27228:1 27243:1 27268:2 27358:1 27374:1 27375:1 27396:1 27410:1 27413:1 27416:1 27521:1 27558:1 27736:1 27765:1 27792:1 27802:2 27909:1 27913:1 27946:1 27981:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:2 28465:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:2 28911:1 28955:1 28963:1 29098:1 29111:1 29113:1 29117:1 29124:1 29126:1 29135:1 29189:1 29198:2 29200:1 29201:1 29319:1 29372:1 29396:2 29421:1 29460:1 29468:2 29488:2 29493:1 29496:1 29548:2 29549:1 29550:1 29587:2 29594:1 29622:1 29626:1 29627:1 29659:1 29660:1 29703:1 29711:1 29801:1 29961:1 30010:1 30019:1 30092:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:9 30330:1 30356:1 30365:1 30394:1 30445:1 30456:1 30489:2 30527:2 30608:1 30652:1 30655:1 30679:2 30721:1 30788:1 30810:1 30833:1 30846:1 30852:1 30887:2 30940:1 30953:1 30958:1 30974:1 31033:2 31038:1 31138:1 31143:1 31294:1 31302:1 31332:1 31347:1 31376:1 31419:1 31427:1 31440:1 31476:1 31485:1 31538:1 31559:1 31603:1 31624:1 31636:1 31646:1 31647:1 31654:1 31662:1 31668:1 31672:1 31678:1 31718:1 31737:1 31743:1 8 10:1 41:1 44:2 91:1 152:1 177:1 198:1 206:1 208:3 230:1 260:2 360:1 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 749:1 862:1 953:3 964:1 977:1 1006:1 1059:1 1100:1 1167:1 1173:1 1189:1 1206:1 1273:1 1298:1 1303:1 1309:1 1315:1 1330:1 1337:1 1371:1 1388:1 1391:1 1403:1 1412:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:4 1571:1 1584:1 1601:1 1610:3 1644:1 1659:2 1683:1 1701:2 1721:2 1765:1 1783:1 1806:1 1818:1 1826:1 1832:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1980:1 1982:1 2019:1 2031:1 2047:1 2062:2 2082:2 2087:1 2097:1 2109:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:1 2309:1 2332:1 2368:3 2506:1 2509:1 2512:2 2514:1 2521:1 2527:2 2532:3 2535:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:2 2640:1 2867:1 2906:1 2929:1 2950:1 2962:1 2969:2 3024:1 3025:1 3037:1 3050:1 3078:1 3104:1 3133:1 3138:1 3148:3 3173:1 3175:1 3199:1 3254:1 3258:1 3261:1 3402:1 3413:1 3438:1 3482:2 3542:1 3547:3 3551:1 3552:1 3565:1 3578:2 3603:1 3650:1 3748:2 3758:1 3869:1 3935:1 3948:1 3985:2 4101:1 4112:1 4117:2 4145:1 4152:1 4204:1 4217:2 4220:1 4242:1 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4388:2 4390:2 4449:1 4457:1 4480:1 4493:1 4544:1 4569:1 4591:2 4600:2 4603:1 4606:2 4658:1 4695:1 4702:1 4721:3 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5181:1 5194:1 5210:1 5278:1 5303:7 5327:1 5330:1 5431:1 5447:4 5448:2 5451:1 5457:1 5463:1 5465:1 5473:1 5478:3 5479:1 5551:1 5588:1 5645:1 5707:1 5713:1 5720:1 5771:1 5772:1 5808:1 5840:1 5847:1 5857:2 5875:1 5893:1 5926:1 5985:2 6073:1 6084:1 6110:1 6112:2 6117:1 6220:1 6230:1 6248:1 6384:1 6387:1 6396:1 6465:2 6541:1 6561:3 6589:1 6604:1 6647:1 6670:1 6675:1 6751:1 6768:1 6771:1 6798:2 6853:1 6857:1 6889:1 6901:2 6903:1 6906:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:3 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7204:1 7232:1 7241:1 7251:1 7338:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:2 7435:1 7450:1 7463:3 7465:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:1 7686:1 7691:1 7699:1 7702:1 7763:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7960:1 7971:1 8009:1 8029:1 8070:2 8104:2 8340:2 8341:1 8361:1 8362:1 8392:1 8401:12 8427:3 8429:2 8439:1 8491:1 8512:1 8530:1 8598:1 8618:1 8632:1 8639:2 8649:2 8659:1 8661:1 8678:1 8737:1 8741:1 8790:2 8815:1 8826:1 8964:3 8987:1 9066:1 9077:1 9115:1 9164:1 9166:1 9175:1 9176:1 9252:1 9340:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:2 9387:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:1 9579:1 9582:1 9623:1 9666:1 9696:1 9699:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9818:2 9819:1 9842:1 9885:1 9931:2 9961:1 10014:1 10016:1 10020:1 10072:1 10090:1 10204:1 10225:2 10236:1 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10508:2 10549:1 10569:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10963:1 10964:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11192:1 11203:1 11209:1 11213:1 11216:1 11252:2 11308:1 11316:4 11357:3 11365:1 11423:1 11466:1 11529:1 11534:1 11539:1 11540:1 11586:1 11617:2 11633:1 11634:1 11747:1 11751:1 11778:2 11781:2 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 12026:1 12068:1 12086:1 12155:1 12190:2 12200:1 12235:1 12244:1 12279:1 12309:1 12311:1 12353:1 12393:1 12414:1 12455:1 12527:2 12535:1 12555:3 12556:1 12562:2 12616:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13053:1 13054:1 13080:1 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13208:1 13263:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13713:1 13717:1 13779:1 13783:1 13788:1 13807:1 13929:1 14025:2 14034:1 14036:1 14068:2 14100:1 14114:2 14196:1 14219:2 14220:4 14228:2 14285:1 14311:7 14376:1 14416:1 14521:2 14545:1 14568:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:2 14822:1 14823:1 14827:1 14839:1 14847:1 14861:1 14870:1 14877:1 14921:1 14939:1 14947:1 14993:1 15007:1 15021:1 15035:1 15059:1 15082:1 15089:1 15090:1 15120:1 15145:1 15170:1 15174:2 15208:1 15251:1 15287:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:1 15642:1 15666:1 15697:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:2 16082:1 16110:1 16112:1 16115:2 16166:1 16233:1 16306:1 16429:1 16500:1 16594:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:2 16778:1 16782:1 16810:1 16828:1 16847:1 16850:1 16853:1 16888:1 16963:1 17066:1 17079:1 17112:2 17115:1 17124:1 17156:1 17170:1 17188:1 17196:5 17206:1 17226:2 17238:1 17253:1 17311:5 17367:1 17427:1 17458:2 17469:1 17476:1 17477:1 17484:1 17499:1 17554:1 17677:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:2 17859:1 17862:1 17880:1 17889:1 17916:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18221:1 18265:1 18283:1 18317:1 18327:1 18372:1 18397:1 18458:1 18488:1 18566:1 18583:1 18637:1 18773:1 18783:1 18787:1 18793:1 18805:1 18859:2 18903:1 18904:1 18939:1 18960:1 19008:1 19010:1 19022:1 19079:1 19089:1 19116:1 19233:2 19268:1 19287:1 19310:1 19409:1 19420:1 19431:2 19510:1 19589:1 19605:4 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:1 19934:1 19945:665 20023:1 20065:2 20147:1 20172:1 20179:1 20290:2 20442:1 20495:1 20511:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20733:1 20754:1 20786:1 20805:1 20807:1 20850:4 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:1 20994:1 20998:1 21009:1 21037:1 21045:1 21069:1 21188:2 21192:2 21273:1 21358:1 21375:1 21394:1 21423:1 21425:1 21444:1 21481:1 21488:1 21519:1 21527:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21633:1 21641:1 21656:1 21682:1 21735:1 21736:1 21759:1 21779:1 21842:1 21872:1 21885:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22203:1 22249:1 22265:1 22309:1 22318:2 22321:1 22342:1 22367:1 22386:4 22388:1 22399:2 22410:1 22419:1 22425:1 22434:1 22506:1 22521:1 22553:1 22558:1 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22785:1 22801:1 22814:1 22824:1 22892:1 22901:1 22918:2 22920:1 22921:3 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23133:1 23170:1 23190:1 23213:1 23312:1 23321:1 23331:2 23376:1 23407:1 23432:2 23440:1 23465:2 23474:1 23488:1 23498:2 23499:3 23505:1 23514:1 23540:1 23549:1 23644:1 23655:1 23709:1 23710:1 23731:2 23734:2 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:4 23988:1 24026:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:2 24753:1 24760:1 24818:2 24826:1 24849:1 24855:1 24857:1 24914:1 24931:1 24939:2 24940:1 24999:1 25011:1 25037:1 25091:1 25096:1 25119:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25461:1 25492:1 25498:1 25570:2 25574:1 25649:1 25670:1 25699:1 25765:1 25767:2 25803:1 25828:1 25833:1 25907:2 25928:1 25930:1 25975:1 26031:1 26052:1 26077:1 26144:1 26161:1 26172:1 26209:1 26222:1 26248:1 26253:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26556:2 26589:1 26591:1 26604:1 26660:1 26690:2 26788:2 26797:1 26867:1 26869:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:1 27049:1 27074:1 27076:1 27077:1 27141:1 27158:1 27160:1 27173:1 27181:1 27215:2 27228:1 27243:1 27268:2 27358:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27521:1 27558:1 27720:1 27736:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:1 27981:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:3 28465:1 28534:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:2 28911:1 28955:1 28963:1 29098:1 29111:1 29113:1 29117:1 29124:1 29126:1 29135:1 29189:1 29196:1 29198:2 29200:1 29201:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:2 29594:1 29622:1 29626:1 29627:1 29659:1 29660:1 29700:1 29703:1 29711:1 29801:1 29827:1 29961:1 30010:1 30019:1 30092:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:10 30330:1 30356:1 30365:1 30394:1 30445:1 30456:1 30489:2 30527:2 30608:2 30652:1 30655:1 30679:2 30721:1 30723:1 30748:1 30788:1 30810:1 30833:1 30846:1 30852:1 30887:2 30940:1 30953:1 30958:1 30974:2 31033:2 31038:1 31138:1 31143:1 31222:1 31231:1 31294:1 31302:1 31332:1 31347:1 31376:1 31397:1 31419:1 31427:1 31440:1 31476:1 31485:1 31538:1 31558:1 31559:1 31603:1 31624:1 31636:1 31646:2 31647:1 31654:1 31662:1 31668:1 31672:1 31678:1 31718:2 31737:1 31743:1 8 10:1 41:1 44:2 91:1 118:1 152:1 177:1 198:1 206:1 208:3 230:1 260:2 360:1 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 710:1 749:1 862:1 953:3 964:1 977:1 1006:1 1055:1 1059:1 1100:1 1167:1 1172:1 1173:1 1189:1 1206:1 1273:1 1298:1 1303:1 1309:1 1315:1 1330:1 1337:1 1359:1 1371:1 1386:1 1388:1 1391:1 1403:1 1412:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:4 1571:1 1584:1 1601:2 1610:3 1644:1 1659:2 1683:1 1701:2 1721:2 1765:1 1783:1 1806:1 1818:1 1826:1 1832:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1980:1 1982:1 2019:1 2031:1 2047:1 2062:2 2082:2 2087:1 2097:1 2109:1 2123:1 2124:1 2135:1 2151:1 2236:1 2242:2 2309:1 2332:1 2368:4 2506:1 2509:1 2512:2 2514:1 2521:1 2527:2 2532:3 2535:1 2538:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:2 2628:1 2640:1 2681:1 2867:1 2906:1 2929:1 2950:1 2962:1 2969:2 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3104:1 3133:1 3138:1 3148:3 3173:1 3175:1 3199:1 3220:1 3254:1 3258:1 3261:1 3402:1 3413:1 3432:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:2 3603:1 3650:1 3748:2 3758:1 3856:1 3869:1 3935:1 3948:1 3985:2 4101:1 4112:1 4117:2 4145:1 4152:1 4204:1 4217:2 4220:1 4225:1 4242:1 4261:1 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4388:2 4390:2 4449:1 4457:1 4480:1 4493:1 4522:1 4544:1 4569:1 4580:1 4591:2 4600:2 4603:1 4606:3 4658:1 4695:1 4702:1 4721:3 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5143:1 5181:1 5194:1 5210:1 5278:1 5303:8 5327:1 5330:1 5431:1 5447:4 5448:3 5451:1 5457:1 5463:1 5465:1 5473:1 5478:3 5479:1 5551:1 5588:1 5645:1 5707:1 5708:1 5713:1 5720:1 5771:1 5772:1 5808:1 5840:1 5847:1 5857:2 5875:2 5893:1 5926:1 5985:2 6073:1 6084:1 6110:1 6112:2 6117:1 6220:1 6230:1 6248:1 6384:1 6387:1 6396:1 6465:2 6541:1 6561:3 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6719:1 6751:1 6768:1 6771:1 6798:2 6853:1 6857:1 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:3 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7204:1 7232:1 7241:1 7251:1 7338:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:2 7435:1 7450:1 7463:3 7465:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:1 7686:1 7691:1 7699:1 7702:1 7763:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7960:1 7971:1 8009:1 8029:1 8070:2 8104:2 8340:3 8341:1 8361:1 8362:1 8392:1 8401:13 8427:3 8429:2 8439:1 8491:1 8512:1 8530:1 8598:1 8618:1 8632:1 8639:2 8649:2 8659:1 8661:1 8678:1 8737:1 8741:1 8790:2 8815:1 8826:1 8861:2 8964:4 8987:1 9066:1 9077:1 9115:1 9164:1 9166:1 9175:1 9176:1 9252:1 9340:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:2 9387:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:1 9579:1 9582:1 9623:1 9666:1 9696:1 9699:1 9750:1 9751:1 9760:1 9773:1 9788:1 9798:1 9803:1 9818:2 9819:1 9842:1 9885:1 9931:2 9961:1 9982:1 9986:2 10014:1 10016:1 10020:1 10072:1 10090:1 10204:1 10225:2 10236:1 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10508:2 10549:1 10569:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10963:1 10964:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11192:1 11203:1 11209:1 11213:1 11216:1 11252:2 11308:1 11316:4 11324:1 11357:3 11365:1 11423:1 11466:1 11529:1 11534:1 11539:1 11540:1 11586:1 11602:1 11617:2 11633:1 11634:1 11653:1 11747:1 11751:1 11759:2 11778:2 11781:2 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 11995:1 12026:1 12068:1 12086:1 12147:1 12155:1 12190:2 12200:1 12235:1 12244:1 12274:1 12279:1 12309:1 12311:1 12353:1 12393:1 12414:1 12455:1 12527:2 12535:1 12539:1 12555:3 12556:1 12562:2 12616:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13053:1 13054:1 13080:1 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13205:1 13208:1 13263:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13713:1 13717:1 13779:1 13783:1 13788:1 13807:1 13929:1 14025:2 14034:1 14036:1 14068:3 14100:1 14114:2 14196:1 14219:2 14220:4 14228:2 14285:1 14311:7 14376:1 14416:1 14465:1 14521:2 14545:1 14568:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:2 14748:1 14822:1 14823:1 14827:1 14839:1 14847:1 14861:1 14870:1 14877:1 14921:1 14939:1 14947:1 14993:1 15007:1 15021:1 15023:1 15035:1 15043:1 15059:1 15082:1 15089:1 15090:1 15120:1 15145:1 15170:1 15174:2 15208:1 15251:1 15287:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:1 15642:1 15666:1 15697:1 15706:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 16078:2 16082:1 16110:1 16112:1 16115:2 16159:1 16166:1 16233:1 16306:1 16332:1 16429:1 16500:1 16594:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16695:1 16707:1 16762:2 16778:1 16782:1 16810:1 16828:1 16845:1 16847:1 16850:1 16853:1 16888:1 16956:1 16963:1 17066:1 17079:1 17112:2 17115:1 17124:1 17156:1 17170:1 17188:1 17196:5 17206:1 17226:2 17238:1 17253:1 17311:6 17367:1 17427:1 17458:2 17464:1 17469:1 17476:1 17477:1 17484:1 17485:1 17499:1 17554:1 17677:1 17684:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:2 17859:1 17862:1 17880:1 17889:1 17916:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18221:1 18265:1 18283:1 18317:1 18327:1 18372:1 18397:1 18458:1 18488:1 18566:1 18583:1 18622:1 18637:1 18773:1 18783:1 18787:1 18793:1 18805:1 18859:2 18903:1 18904:1 18933:1 18939:1 18960:1 19008:1 19010:1 19022:1 19079:1 19089:1 19116:1 19129:1 19233:2 19247:1 19268:1 19287:1 19310:1 19409:1 19420:1 19431:2 19510:1 19589:1 19605:4 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:1 19934:1 19945:751 20023:1 20065:2 20147:1 20172:1 20179:1 20290:2 20413:1 20442:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20733:1 20754:1 20786:1 20791:1 20805:1 20807:1 20850:4 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:1 20994:1 20998:1 21009:1 21037:1 21045:1 21069:1 21188:2 21192:2 21273:1 21358:1 21374:1 21375:1 21394:1 21423:1 21425:1 21444:1 21481:1 21488:1 21519:1 21527:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21633:1 21641:1 21656:1 21682:1 21735:1 21736:1 21759:1 21779:1 21842:1 21872:1 21885:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22203:1 22209:1 22249:1 22265:1 22309:1 22318:2 22321:1 22342:1 22367:1 22386:4 22388:1 22399:2 22410:1 22419:1 22425:1 22434:1 22506:1 22521:1 22553:1 22558:1 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22785:1 22801:1 22814:1 22824:1 22878:1 22892:1 22901:1 22918:2 22920:1 22921:3 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23133:1 23170:1 23190:1 23213:1 23233:1 23235:1 23312:1 23321:1 23331:2 23355:1 23376:1 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23488:1 23498:2 23499:3 23505:1 23514:1 23540:1 23549:1 23644:1 23655:1 23709:1 23710:1 23731:2 23734:2 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:5 23988:1 24026:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:2 24753:1 24760:1 24773:1 24818:2 24826:1 24849:1 24855:1 24857:1 24914:1 24931:1 24939:3 24940:1 24999:1 25011:1 25037:1 25091:1 25096:1 25119:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25461:1 25492:1 25498:1 25570:2 25574:1 25649:1 25670:1 25699:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25975:1 26031:1 26052:1 26077:1 26144:1 26161:1 26172:1 26201:1 26209:1 26222:1 26248:1 26253:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26556:2 26589:1 26591:1 26604:1 26660:1 26690:2 26788:2 26797:2 26867:1 26869:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:1 27049:1 27074:1 27076:1 27077:1 27141:1 27158:1 27160:1 27173:1 27181:1 27215:2 27228:1 27235:1 27237:1 27243:1 27268:2 27335:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27720:1 27736:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:2 27981:1 28027:1 28045:1 28054:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:3 28465:1 28534:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:2 28911:1 28955:1 28963:1 29098:1 29111:1 29113:1 29117:1 29124:1 29126:1 29135:1 29189:1 29196:1 29198:2 29200:1 29201:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29446:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:2 29594:1 29622:1 29626:1 29627:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29801:1 29827:1 29961:1 30010:1 30019:1 30052:1 30092:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:10 30330:1 30356:1 30365:1 30394:1 30445:2 30456:1 30489:2 30527:3 30608:2 30652:1 30655:1 30679:2 30721:1 30723:1 30744:1 30748:1 30788:1 30810:1 30833:1 30846:1 30852:1 30884:1 30887:2 30890:2 30940:1 30953:1 30958:1 30974:2 31033:2 31038:1 31138:1 31143:1 31222:1 31231:1 31294:1 31302:1 31332:1 31347:1 31376:1 31397:1 31419:1 31427:1 31440:1 31476:1 31485:1 31538:1 31558:1 31559:1 31603:1 31617:1 31624:1 31636:1 31646:2 31647:1 31654:1 31662:1 31668:1 31672:1 31678:1 31718:2 31737:1 31743:1 8 10:1 41:1 44:2 82:1 91:1 118:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 260:3 360:2 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 710:1 749:1 862:1 953:3 964:1 977:1 984:1 1006:1 1055:1 1059:1 1100:1 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1337:1 1358:1 1359:1 1371:1 1373:1 1386:1 1388:1 1391:1 1403:1 1412:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:4 1571:1 1584:1 1601:2 1610:3 1644:1 1659:3 1683:1 1701:2 1721:2 1765:1 1783:2 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1980:1 1982:1 2019:1 2031:1 2047:1 2062:2 2082:2 2087:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2236:1 2242:2 2309:1 2332:1 2368:4 2506:1 2509:1 2512:2 2514:1 2521:1 2527:2 2532:5 2535:1 2538:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:2 2628:1 2640:1 2681:1 2682:1 2867:1 2906:1 2929:1 2950:1 2962:1 2966:1 2969:2 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3133:1 3138:1 3148:4 3173:1 3175:1 3199:1 3220:1 3254:1 3257:1 3258:1 3261:1 3303:1 3393:1 3402:1 3413:1 3432:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:2 3603:1 3650:1 3748:2 3758:1 3771:1 3856:1 3869:1 3935:1 3948:1 3985:2 4101:1 4112:1 4117:2 4145:1 4152:1 4204:1 4217:2 4220:1 4225:1 4242:1 4261:1 4285:1 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:2 4449:1 4457:1 4480:1 4493:1 4522:1 4544:1 4569:1 4580:1 4591:2 4600:2 4603:1 4606:3 4658:1 4695:1 4702:1 4721:3 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5143:1 5181:1 5194:1 5210:1 5278:1 5303:8 5327:1 5330:1 5431:1 5447:4 5448:3 5451:1 5457:1 5463:1 5465:1 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5707:1 5708:1 5713:1 5720:1 5771:1 5772:1 5808:1 5840:1 5847:1 5857:2 5875:2 5893:1 5926:1 5985:2 6073:1 6084:1 6103:1 6110:1 6112:2 6117:1 6220:1 6230:1 6248:1 6323:1 6384:1 6387:1 6396:1 6465:3 6541:1 6561:3 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6719:1 6751:1 6768:1 6771:2 6798:2 6853:1 6857:1 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:3 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:2 7435:1 7450:1 7463:3 7465:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7686:1 7691:1 7699:1 7702:1 7763:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7960:1 7971:1 8009:1 8029:1 8070:2 8104:2 8340:3 8341:1 8361:1 8362:1 8392:1 8401:15 8427:4 8429:2 8439:1 8491:1 8512:1 8530:2 8598:1 8618:1 8632:1 8639:2 8649:2 8659:1 8661:1 8678:1 8691:1 8721:1 8737:1 8741:1 8790:2 8815:1 8826:1 8850:1 8861:2 8964:5 8987:1 9066:1 9077:1 9115:1 9164:1 9166:1 9175:1 9176:1 9212:1 9252:1 9340:1 9345:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:2 9387:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:1 9579:1 9582:1 9623:1 9666:1 9696:1 9699:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:2 9819:1 9842:1 9885:1 9931:2 9961:1 9982:1 9986:2 10014:1 10016:1 10020:1 10072:1 10090:1 10204:1 10225:2 10236:1 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10508:2 10549:1 10569:1 10587:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10963:1 10964:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11190:1 11192:1 11203:1 11209:1 11213:1 11216:1 11252:2 11269:1 11308:1 11316:4 11324:1 11357:3 11365:1 11373:1 11423:1 11466:1 11529:1 11534:1 11539:1 11540:1 11586:1 11602:1 11617:2 11633:1 11634:1 11653:1 11747:1 11751:1 11759:2 11772:1 11778:2 11781:2 11784:1 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 11995:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:1 12190:2 12200:1 12235:1 12244:1 12274:1 12279:1 12309:1 12311:1 12353:1 12368:1 12393:1 12414:1 12455:1 12527:2 12535:1 12539:1 12555:3 12556:1 12562:2 12616:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13053:1 13054:1 13061:1 13080:1 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13205:1 13208:1 13263:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13807:1 13929:2 14025:2 14034:1 14036:1 14068:3 14100:1 14114:2 14196:1 14219:2 14220:4 14228:2 14285:1 14311:8 14376:1 14416:1 14465:1 14521:2 14545:1 14568:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:2 14748:1 14822:1 14823:1 14827:1 14839:1 14847:1 14861:1 14870:1 14877:1 14910:1 14921:1 14939:1 14947:1 14965:1 14993:1 15007:1 15021:1 15023:1 15035:1 15043:1 15059:1 15082:1 15089:1 15090:1 15120:1 15145:1 15170:1 15174:2 15208:1 15251:1 15287:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:1 15633:1 15642:1 15666:1 15697:1 15706:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 15997:1 16078:2 16082:1 16110:1 16112:1 16115:2 16159:1 16166:1 16233:1 16306:1 16332:1 16365:1 16429:1 16498:1 16500:1 16594:1 16609:1 16627:1 16638:1 16646:1 16652:1 16677:1 16681:1 16695:1 16707:1 16762:2 16778:1 16782:1 16810:1 16828:1 16845:1 16847:1 16850:1 16853:1 16888:1 16956:1 16963:1 17016:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17188:1 17196:6 17206:1 17226:2 17238:1 17253:2 17311:6 17334:1 17367:1 17427:1 17454:1 17458:2 17464:1 17469:1 17476:1 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17677:1 17684:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:1 17880:1 17889:1 17916:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18221:1 18265:1 18283:1 18317:1 18327:1 18372:1 18397:1 18458:1 18488:1 18566:1 18583:1 18622:1 18637:1 18773:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:1 18904:2 18933:1 18939:1 18960:1 19008:1 19010:1 19022:1 19066:1 19079:1 19089:1 19116:1 19129:1 19233:2 19247:1 19268:1 19287:1 19310:1 19409:1 19420:1 19431:2 19510:1 19589:1 19605:4 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:2 19934:1 19945:789 19963:1 20023:1 20065:2 20147:1 20172:1 20179:1 20290:2 20413:1 20442:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20733:1 20754:1 20786:1 20791:1 20805:1 20807:1 20850:4 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:2 20994:1 20998:1 21009:1 21037:1 21045:1 21069:1 21188:2 21192:2 21258:1 21273:1 21358:1 21374:1 21375:1 21394:1 21423:1 21425:1 21444:1 21460:1 21481:1 21488:1 21519:1 21527:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21633:1 21641:1 21656:1 21682:1 21735:1 21736:1 21759:1 21779:1 21842:1 21872:1 21877:1 21885:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22203:1 22209:1 22249:1 22265:1 22309:1 22318:2 22321:1 22342:1 22367:1 22386:4 22388:1 22399:2 22410:1 22419:1 22425:1 22434:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22785:1 22793:1 22801:1 22814:1 22824:1 22878:1 22892:1 22901:1 22918:2 22920:1 22921:3 22958:1 22976:1 22981:1 22997:1 23046:1 23057:1 23133:1 23170:1 23190:1 23213:1 23233:1 23235:1 23312:1 23321:1 23331:2 23355:1 23376:1 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23498:2 23499:3 23505:1 23514:1 23540:1 23549:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:1 23815:1 23831:1 23875:1 23910:1 23924:1 23982:5 23988:1 24026:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:3 24753:1 24760:1 24773:1 24818:2 24826:1 24849:1 24855:1 24857:1 24914:1 24931:1 24939:3 24940:1 24999:1 25011:1 25032:1 25037:1 25091:1 25096:1 25119:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25492:1 25498:1 25570:2 25574:1 25649:1 25670:1 25699:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25975:1 25993:1 26031:1 26052:1 26077:1 26106:1 26144:1 26161:1 26163:1 26172:1 26201:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26589:1 26591:1 26592:1 26604:1 26619:1 26660:1 26690:2 26788:2 26797:2 26867:1 26869:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:2 27049:1 27074:1 27076:1 27077:1 27079:1 27141:1 27158:1 27160:1 27173:1 27181:1 27215:2 27228:1 27235:1 27237:1 27243:1 27268:2 27335:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27714:1 27720:1 27736:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:2 27981:1 28027:1 28045:1 28054:1 28066:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28463:3 28465:1 28534:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:3 28875:1 28911:1 28955:1 28963:1 29098:1 29111:1 29113:1 29117:1 29124:1 29126:1 29135:1 29137:1 29189:1 29196:1 29198:3 29200:1 29201:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:2 29594:1 29622:1 29626:1 29627:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29801:1 29827:1 29961:1 30010:1 30019:1 30048:1 30052:1 30092:1 30100:1 30131:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:10 30330:1 30356:1 30365:1 30394:1 30406:1 30445:2 30456:1 30489:2 30497:1 30527:3 30608:2 30652:1 30655:1 30679:2 30711:1 30721:1 30723:1 30744:1 30748:1 30788:1 30810:1 30833:1 30846:1 30852:1 30884:1 30887:2 30890:2 30940:1 30953:1 30958:1 30974:2 31033:2 31038:1 31138:1 31143:1 31222:1 31231:1 31294:1 31302:1 31332:1 31347:1 31376:1 31397:1 31419:1 31427:1 31440:1 31476:1 31483:1 31485:1 31538:1 31558:1 31559:1 31603:1 31617:1 31624:1 31636:1 31646:2 31647:1 31654:1 31662:1 31668:1 31672:1 31678:1 31718:2 31722:1 31737:1 31743:1 8 10:1 37:1 41:1 44:2 82:1 91:1 118:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 260:3 328:1 360:2 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 710:1 749:1 862:1 953:3 964:1 977:1 984:2 1006:1 1055:1 1059:1 1100:1 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1337:1 1358:1 1359:1 1371:1 1373:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:4 1571:1 1584:1 1601:2 1610:3 1624:1 1644:1 1659:3 1683:1 1701:2 1721:2 1765:1 1783:2 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1980:1 1982:1 2019:1 2031:1 2047:1 2062:2 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2236:1 2239:1 2242:2 2309:1 2332:1 2368:4 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:5 2535:1 2538:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:2 2628:1 2640:1 2681:1 2682:1 2867:1 2906:1 2929:1 2950:1 2962:1 2966:1 2969:2 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3133:1 3138:1 3148:5 3173:1 3175:1 3184:1 3199:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:3 3603:1 3650:1 3748:2 3758:1 3771:1 3856:1 3869:1 3935:1 3948:1 3985:2 4101:1 4112:1 4117:2 4145:1 4152:1 4204:1 4217:2 4220:1 4225:1 4242:1 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:2 4449:1 4457:1 4464:1 4480:1 4493:1 4522:1 4524:1 4544:1 4569:1 4580:1 4591:2 4600:2 4603:1 4606:3 4658:1 4695:1 4702:1 4721:3 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4856:1 4872:1 4885:1 4901:2 4926:1 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5143:1 5181:1 5194:1 5210:1 5278:1 5303:9 5327:1 5330:1 5431:1 5447:4 5448:4 5451:1 5457:1 5463:1 5465:1 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5707:1 5708:1 5713:1 5720:1 5771:1 5772:1 5808:1 5840:1 5847:1 5857:2 5875:2 5893:1 5926:1 5985:2 6073:1 6075:1 6084:1 6103:1 6110:1 6112:2 6117:1 6220:1 6230:1 6248:1 6323:1 6384:1 6387:1 6396:1 6465:3 6541:2 6561:3 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6719:1 6751:1 6768:1 6771:2 6798:2 6853:1 6857:1 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:3 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:2 7435:1 7450:1 7463:3 7465:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7686:1 7691:1 7699:1 7702:1 7723:1 7763:1 7782:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7960:1 7971:1 8009:1 8029:1 8070:2 8104:2 8340:3 8341:2 8361:1 8362:1 8392:1 8401:16 8408:1 8427:5 8429:2 8439:1 8452:1 8491:1 8512:1 8530:3 8598:1 8618:2 8632:1 8639:2 8649:3 8659:1 8661:1 8678:1 8691:1 8721:1 8737:1 8741:1 8790:2 8815:1 8826:1 8850:1 8861:2 8964:5 8987:1 9066:1 9077:1 9115:1 9164:1 9166:1 9175:1 9176:1 9208:1 9212:1 9252:1 9269:1 9340:1 9345:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:2 9379:1 9387:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9623:1 9666:1 9696:1 9699:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:1 9842:1 9873:1 9885:1 9931:2 9961:1 9982:1 9986:2 10014:1 10016:1 10020:1 10072:1 10090:1 10204:1 10225:2 10236:1 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10478:1 10508:2 10549:1 10569:1 10587:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10963:1 10964:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11190:1 11192:1 11203:1 11209:1 11213:1 11216:1 11252:2 11269:1 11308:1 11316:4 11324:1 11357:3 11365:1 11373:1 11423:1 11466:1 11529:1 11534:1 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:1 11634:1 11653:1 11747:1 11751:1 11759:2 11772:2 11778:2 11781:3 11784:1 11807:1 11830:1 11859:1 11891:1 11897:1 11920:2 11995:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:1 12164:1 12190:2 12200:1 12235:1 12244:1 12274:1 12279:1 12309:1 12311:1 12353:2 12368:1 12393:1 12414:1 12455:1 12490:1 12527:2 12535:1 12539:1 12555:4 12556:1 12562:2 12616:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13037:1 13053:1 13054:1 13061:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13205:1 13208:1 13263:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13807:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14064:1 14068:3 14100:1 14114:2 14196:1 14219:2 14220:5 14228:2 14285:1 14311:8 14376:1 14416:1 14465:1 14521:2 14545:1 14568:1 14594:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:2 14748:1 14822:1 14823:1 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14910:1 14921:2 14939:1 14947:1 14965:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:1 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15174:2 15208:1 15251:1 15287:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:1 15633:1 15642:1 15666:1 15682:1 15697:1 15706:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 15992:1 15997:1 16078:2 16082:1 16110:1 16112:1 16115:2 16159:1 16166:1 16233:1 16306:1 16332:1 16365:1 16419:1 16429:1 16483:1 16498:1 16500:1 16594:1 16609:1 16627:1 16638:1 16646:2 16652:1 16677:1 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16810:1 16826:1 16828:1 16845:1 16847:1 16850:1 16853:1 16872:1 16888:1 16956:1 16963:1 17016:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17177:1 17188:1 17196:6 17206:1 17226:2 17238:1 17253:2 17261:1 17311:6 17334:1 17367:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:1 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17606:1 17677:1 17684:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:1 17880:1 17889:1 17893:1 17916:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18221:1 18265:1 18283:1 18317:1 18327:1 18372:1 18397:1 18458:1 18488:1 18566:1 18583:1 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:1 18904:2 18933:1 18939:1 18960:1 19008:1 19010:1 19022:1 19066:1 19079:1 19089:2 19116:1 19129:1 19233:2 19247:1 19268:1 19287:1 19310:1 19409:1 19420:1 19431:2 19510:1 19589:1 19605:4 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:2 19934:1 19945:832 19963:1 20023:1 20065:2 20082:1 20147:1 20172:1 20179:1 20290:2 20413:1 20442:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20706:1 20733:1 20754:1 20786:1 20791:1 20805:1 20807:1 20850:4 20903:2 20907:1 20941:1 20943:1 20964:1 20974:1 20983:1 20989:1 20993:2 20994:1 20998:1 21009:1 21037:1 21045:1 21069:1 21188:2 21192:2 21258:1 21273:1 21358:1 21374:1 21375:1 21394:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21633:1 21641:1 21656:1 21682:1 21727:1 21735:1 21736:1 21759:1 21779:1 21842:1 21872:1 21877:1 21885:1 21920:1 21933:1 21944:3 21950:1 21958:1 21968:1 22151:1 22185:1 22203:1 22209:1 22249:1 22265:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:5 22388:1 22399:2 22410:1 22419:1 22420:1 22425:1 22434:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22785:1 22793:1 22801:1 22814:1 22824:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23133:1 23170:1 23190:1 23213:1 23233:1 23235:1 23312:1 23320:1 23321:1 23331:2 23355:1 23376:2 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:1 23498:2 23499:3 23505:1 23514:1 23540:1 23549:1 23639:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:1 23815:1 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23982:5 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:3 24753:1 24760:1 24773:1 24818:2 24826:1 24849:1 24855:1 24857:1 24914:1 24931:1 24939:3 24940:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25492:1 25498:1 25570:2 25574:1 25649:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25972:1 25975:1 25993:1 26031:1 26041:1 26052:1 26077:1 26106:1 26125:1 26144:1 26161:1 26163:1 26172:1 26201:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26589:1 26591:1 26592:1 26604:1 26619:1 26660:1 26690:2 26788:2 26797:2 26867:1 26869:1 26899:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:2 27049:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:1 27158:1 27160:1 27173:1 27181:1 27215:2 27228:1 27235:1 27237:1 27243:1 27268:2 27283:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:2 27981:1 28027:1 28045:1 28054:1 28066:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28385:1 28430:1 28463:3 28465:1 28534:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28776:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28955:1 28963:1 29023:1 29098:1 29111:1 29113:1 29117:1 29124:1 29126:1 29135:1 29137:1 29189:1 29196:1 29198:3 29200:1 29201:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:1 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29801:1 29827:1 29961:1 30010:1 30019:1 30048:1 30052:1 30092:1 30100:1 30131:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:10 30330:1 30356:1 30365:1 30394:1 30406:1 30445:2 30456:1 30480:1 30489:2 30497:1 30527:3 30608:2 30652:1 30655:1 30679:2 30711:1 30721:2 30723:1 30744:1 30748:1 30788:1 30810:1 30818:1 30833:2 30846:1 30852:1 30884:1 30887:2 30890:2 30940:1 30953:1 30958:1 30974:2 31033:2 31038:1 31138:1 31143:1 31152:1 31206:1 31222:1 31231:1 31294:1 31302:1 31332:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31440:1 31441:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31603:1 31617:1 31624:1 31636:1 31646:2 31647:1 31654:1 31662:1 31668:1 31672:1 31678:1 31718:3 31722:1 31737:1 31743:1 8 10:1 37:1 41:1 44:2 82:1 91:1 118:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 260:3 328:1 360:2 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 710:1 724:1 749:1 862:1 953:3 964:1 977:1 984:3 1006:1 1055:1 1059:1 1100:2 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1331:1 1337:1 1358:1 1359:1 1371:1 1373:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:5 1571:1 1584:1 1601:2 1610:3 1624:1 1644:1 1659:3 1683:1 1701:2 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1897:2 1917:1 1930:1 1935:1 1959:1 1980:1 1982:1 2019:1 2031:1 2047:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2236:1 2239:1 2242:2 2301:1 2309:1 2332:1 2368:4 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:1 2538:1 2540:1 2541:1 2543:1 2545:1 2592:1 2601:2 2628:1 2640:1 2681:1 2682:1 2743:1 2867:1 2906:1 2929:1 2950:1 2962:1 2965:1 2966:1 2969:2 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3133:1 3138:1 3148:5 3173:1 3175:1 3184:1 3199:1 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:3 3603:1 3629:1 3650:1 3748:2 3758:1 3771:1 3842:1 3856:1 3869:1 3935:1 3948:1 3957:1 3985:2 4009:1 4054:1 4101:1 4112:2 4117:2 4145:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4242:1 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:2 4449:1 4457:1 4464:1 4480:1 4493:1 4522:1 4524:1 4544:1 4569:1 4580:1 4591:2 4600:2 4603:1 4606:3 4658:1 4695:1 4702:1 4721:3 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4885:1 4901:2 4926:1 4987:1 5043:1 5069:2 5111:1 5121:1 5140:2 5143:1 5181:1 5194:1 5210:1 5278:1 5303:9 5327:1 5330:1 5431:1 5447:4 5448:4 5451:1 5457:1 5463:1 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5707:1 5708:1 5713:1 5720:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5857:2 5875:2 5893:1 5926:1 5985:2 6073:1 6075:1 6084:1 6103:1 6110:1 6112:2 6117:1 6220:1 6230:1 6247:1 6248:1 6323:1 6384:1 6387:1 6396:1 6465:3 6541:2 6561:3 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6719:1 6751:1 6768:1 6771:2 6798:3 6853:1 6857:1 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:1 6919:1 6923:1 6925:3 6962:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:3 7435:1 7450:1 7463:4 7465:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7686:1 7691:1 7699:1 7702:1 7723:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7956:1 7960:1 7971:2 8009:1 8029:1 8070:2 8104:2 8340:4 8341:2 8361:1 8362:2 8392:1 8401:17 8408:1 8427:5 8429:2 8439:1 8452:1 8491:1 8512:1 8530:3 8598:1 8618:2 8632:1 8639:2 8649:3 8659:1 8661:1 8672:1 8678:1 8691:1 8721:1 8737:1 8741:1 8790:2 8815:1 8826:1 8850:1 8861:3 8964:5 8987:1 9066:1 9077:1 9115:1 9164:1 9166:1 9175:1 9176:1 9208:1 9212:1 9247:1 9252:1 9269:1 9340:1 9345:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:2 9379:1 9387:1 9456:1 9485:1 9489:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9623:1 9666:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:1 9842:1 9873:1 9885:1 9931:2 9961:1 9982:1 9986:3 10014:1 10016:1 10020:1 10072:1 10090:1 10192:1 10204:1 10225:2 10236:1 10247:1 10268:1 10275:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10963:1 10964:1 10992:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11203:1 11209:1 11213:1 11216:2 11252:2 11269:1 11308:1 11316:5 11324:1 11357:3 11365:1 11373:1 11423:1 11466:1 11505:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:1 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11772:2 11778:2 11781:3 11784:1 11794:1 11807:1 11830:1 11859:2 11891:1 11897:1 11920:2 11974:1 11995:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:1 12164:1 12190:2 12200:1 12235:1 12244:1 12274:1 12279:1 12309:1 12311:1 12353:2 12367:1 12368:1 12393:1 12414:1 12455:1 12490:1 12527:2 12535:1 12539:1 12555:4 12556:1 12562:2 12616:1 12683:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13037:1 13053:1 13054:1 13061:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13205:1 13208:1 13263:1 13287:1 13341:1 13429:1 13448:1 13485:1 13508:1 13623:1 13638:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13807:1 13919:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14064:1 14068:3 14100:1 14114:2 14196:1 14219:2 14220:5 14228:2 14285:1 14311:8 14376:1 14416:1 14465:1 14521:2 14545:1 14568:1 14594:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:2 14748:1 14822:1 14823:1 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:1 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15174:2 15208:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:1 15633:1 15642:1 15666:1 15682:1 15697:1 15706:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15971:1 15992:1 15997:1 16078:2 16082:1 16110:1 16112:1 16115:2 16159:1 16166:1 16233:1 16306:1 16332:1 16365:1 16419:1 16429:1 16483:1 16498:1 16500:1 16594:1 16609:1 16627:1 16638:1 16646:2 16652:1 16677:1 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16810:1 16826:1 16828:1 16845:1 16847:1 16850:1 16853:1 16872:1 16882:1 16888:1 16956:1 16963:1 17016:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17177:1 17188:1 17196:6 17206:1 17226:2 17238:1 17253:2 17261:1 17311:6 17334:1 17367:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:1 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17606:1 17677:1 17684:1 17700:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:1 17893:1 17916:1 17939:1 17945:2 17946:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:1 18283:1 18317:1 18327:1 18372:1 18397:1 18458:1 18488:1 18563:1 18566:1 18583:1 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:1 18904:2 18933:1 18939:1 18960:1 18982:1 19008:1 19010:1 19022:1 19066:1 19079:1 19089:2 19116:1 19129:2 19173:1 19233:2 19236:1 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19409:1 19420:1 19431:2 19510:1 19589:1 19605:5 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:2 19906:1 19934:1 19945:884 19963:1 20023:1 20065:2 20082:1 20147:1 20172:1 20179:1 20290:2 20413:1 20442:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20675:1 20685:1 20706:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:2 20907:1 20941:1 20943:1 20957:1 20964:1 20974:1 20983:1 20989:1 20993:2 20994:1 20998:1 21009:1 21037:1 21045:1 21069:1 21188:2 21192:2 21258:1 21273:1 21283:1 21358:1 21374:1 21375:1 21394:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21607:1 21633:1 21641:1 21656:1 21682:1 21727:1 21735:1 21736:1 21759:1 21779:1 21842:1 21872:2 21877:1 21885:1 21920:1 21933:1 21944:3 21950:1 21958:1 21968:1 21995:1 22151:1 22185:1 22203:1 22209:1 22249:1 22265:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22399:2 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23133:1 23170:1 23190:1 23213:1 23233:2 23235:1 23312:1 23320:1 23321:1 23331:2 23355:1 23376:2 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:1 23498:2 23499:3 23505:1 23514:1 23540:1 23549:1 23639:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:1 23815:2 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23982:5 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24081:1 24125:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24744:3 24753:1 24760:1 24773:1 24818:2 24826:1 24849:1 24855:1 24857:1 24907:1 24914:1 24931:1 24939:3 24940:1 24966:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25155:1 25162:1 25188:1 25233:1 25243:2 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25492:1 25498:1 25527:1 25570:2 25574:1 25649:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25972:1 25975:1 25993:1 26031:1 26041:1 26052:1 26077:1 26106:1 26125:1 26144:1 26161:1 26163:1 26172:1 26201:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:1 26604:1 26619:1 26660:1 26690:2 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:3 27049:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:1 27158:1 27160:1 27173:1 27181:1 27215:2 27228:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:2 27981:1 28027:1 28045:1 28054:1 28066:1 28088:1 28198:1 28211:1 28218:1 28307:1 28310:1 28364:1 28383:1 28385:1 28430:1 28455:1 28463:3 28465:1 28534:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28776:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28955:1 28963:1 29023:1 29098:2 29111:1 29113:1 29117:1 29124:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:1 29198:3 29200:1 29201:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:1 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29738:1 29801:1 29827:1 29961:1 30010:1 30019:1 30048:1 30052:1 30092:1 30100:1 30131:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:10 30330:1 30356:1 30365:2 30394:1 30406:1 30445:2 30456:1 30480:1 30489:2 30497:1 30527:4 30608:2 30652:1 30655:1 30679:2 30711:1 30721:2 30723:1 30744:1 30748:1 30788:1 30809:1 30810:1 30818:1 30833:2 30846:1 30852:1 30884:1 30887:2 30890:3 30940:1 30953:1 30958:1 30974:2 31033:2 31038:1 31138:1 31143:1 31152:1 31206:1 31222:1 31231:1 31294:1 31302:1 31332:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31440:1 31441:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31603:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:1 31678:1 31718:3 31722:1 31737:1 31743:1 8 10:1 37:1 41:1 44:2 82:2 91:1 118:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 256:1 260:3 328:1 360:3 363:1 398:2 464:1 475:1 523:1 526:1 611:1 643:1 672:1 710:1 724:1 749:1 755:1 862:1 953:3 964:1 977:1 984:3 1006:1 1055:3 1059:1 1100:2 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:5 1571:1 1584:1 1601:2 1610:3 1624:1 1644:1 1659:3 1683:1 1701:2 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 2019:1 2031:1 2047:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:2 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3133:1 3138:2 3148:5 3173:1 3175:1 3184:1 3199:1 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:3 3597:1 3603:1 3629:1 3650:1 3748:2 3758:1 3771:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 4009:1 4054:1 4101:1 4112:2 4117:2 4145:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4449:1 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:3 4658:1 4695:1 4702:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4885:1 4901:2 4926:1 4987:1 5043:1 5069:2 5111:1 5121:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5278:1 5303:9 5327:1 5330:1 5431:2 5447:4 5448:4 5451:1 5457:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5857:2 5875:2 5893:1 5926:1 5985:2 5991:1 6073:1 6075:1 6084:1 6103:2 6110:1 6112:2 6117:1 6220:1 6230:1 6247:1 6248:1 6323:1 6384:1 6387:1 6396:1 6465:3 6538:1 6541:2 6545:1 6561:4 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6719:1 6751:1 6768:1 6771:3 6798:3 6853:2 6857:2 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:2 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:3 7435:1 7450:1 7463:4 7465:2 7468:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7635:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7956:1 7960:1 7971:2 8009:1 8029:1 8070:3 8104:3 8107:1 8187:1 8207:1 8340:5 8341:2 8361:1 8362:2 8392:1 8401:20 8408:1 8427:5 8429:2 8439:1 8452:1 8491:1 8512:1 8530:3 8598:1 8618:2 8632:1 8639:2 8649:3 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8850:1 8861:3 8964:6 8987:1 9027:1 9066:1 9077:1 9115:1 9156:1 9164:1 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9345:1 9347:1 9349:1 9350:2 9351:1 9354:2 9361:2 9379:1 9387:1 9456:1 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9623:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:1 9842:1 9873:1 9885:1 9931:2 9957:1 9961:1 9982:1 9986:3 10014:1 10016:1 10020:1 10072:1 10090:1 10137:1 10192:1 10204:1 10225:2 10236:1 10247:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10667:1 10736:1 10776:1 10795:1 10808:1 10835:1 10857:1 10872:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11203:1 11209:1 11213:1 11216:2 11252:2 11269:1 11308:1 11316:5 11324:1 11357:3 11365:1 11373:1 11423:1 11466:1 11505:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:1 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11762:1 11772:2 11778:2 11781:3 11784:1 11785:1 11789:1 11794:1 11807:1 11830:1 11859:2 11891:1 11897:1 11920:2 11922:1 11974:1 11995:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:2 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12353:2 12367:1 12368:1 12393:1 12397:1 12414:1 12455:1 12490:1 12527:2 12535:1 12539:1 12555:4 12556:1 12562:2 12616:1 12683:1 12705:1 12759:1 12765:1 12791:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:1 13011:1 13024:1 13037:1 13053:1 13054:1 13061:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:1 13208:1 13263:1 13287:1 13341:1 13411:1 13429:1 13448:1 13485:1 13508:1 13532:1 13623:1 13638:1 13652:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13807:1 13919:1 13923:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14064:1 14068:3 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14285:1 14311:10 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:2 14748:1 14822:1 14823:1 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:1 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:1 15633:1 15642:1 15666:1 15682:1 15697:1 15706:1 15720:2 15802:1 15847:1 15854:1 15860:1 15897:1 15909:1 15971:1 15992:1 15997:1 16058:1 16078:2 16082:1 16110:1 16112:1 16115:2 16159:1 16166:1 16233:1 16306:1 16332:1 16365:1 16388:1 16419:1 16429:1 16483:1 16498:1 16500:1 16532:1 16594:1 16609:1 16627:1 16638:1 16646:2 16652:1 16677:2 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16872:1 16882:1 16888:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:8 17206:1 17226:2 17238:1 17253:2 17261:1 17311:6 17334:2 17367:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17606:1 17677:1 17684:1 17700:1 17704:1 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:1 17893:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:1 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:1 18488:1 18563:1 18566:1 18583:1 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:1 18904:3 18933:1 18939:1 18960:1 18982:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19116:1 19129:2 19173:1 19233:2 19236:1 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:1 19605:5 19621:1 19627:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:2 19906:1 19934:1 19945:922 19963:1 20023:1 20065:2 20082:1 20147:1 20172:1 20179:1 20290:2 20413:1 20442:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20591:1 20675:1 20685:1 20690:1 20706:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:2 20907:1 20916:1 20941:1 20943:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:2 20994:1 20997:1 20998:1 21009:1 21037:1 21045:1 21069:1 21188:2 21192:2 21258:1 21273:1 21283:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21607:1 21633:1 21641:1 21656:1 21682:1 21727:1 21735:1 21736:1 21759:1 21779:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21968:1 21995:1 22151:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22399:2 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22664:2 22712:1 22739:1 22749:2 22754:1 22770:2 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23094:1 23133:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:1 23320:1 23321:1 23323:1 23331:2 23355:1 23376:2 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:1 23498:2 23499:3 23505:1 23514:1 23536:1 23540:1 23549:1 23639:1 23640:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:2 23815:2 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23982:5 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24066:1 24081:1 24125:1 24160:1 24234:1 24255:1 24257:1 24267:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:1 24463:1 24465:1 24502:1 24530:1 24582:1 24585:2 24596:1 24614:2 24647:1 24666:1 24716:1 24744:3 24753:1 24760:1 24773:1 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24907:1 24914:1 24931:1 24939:3 24940:1 24966:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:1 25197:1 25207:1 25233:1 25243:3 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25492:1 25498:1 25527:1 25570:2 25574:1 25649:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25972:1 25975:1 25993:1 26031:1 26041:1 26052:1 26077:1 26106:1 26125:1 26144:1 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:2 26604:1 26619:1 26649:1 26660:1 26690:2 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 27008:1 27019:2 27022:1 27030:1 27034:3 27049:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:1 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:2 27981:1 28027:1 28045:1 28054:1 28066:1 28088:1 28198:1 28211:1 28218:1 28226:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28455:1 28463:4 28465:1 28534:1 28573:1 28618:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28776:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28955:1 28963:1 29023:1 29098:2 29111:1 29113:1 29117:1 29124:1 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:1 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:1 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29738:1 29801:1 29827:1 29858:1 29961:1 30010:1 30019:1 30048:1 30052:1 30092:1 30100:1 30131:1 30133:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:10 30330:1 30356:1 30365:2 30394:1 30406:1 30445:2 30456:1 30480:1 30489:3 30497:1 30527:5 30608:2 30652:1 30655:1 30679:2 30711:2 30721:2 30723:1 30744:1 30748:1 30788:1 30809:1 30810:2 30818:1 30833:2 30846:1 30852:1 30884:1 30887:2 30890:3 30940:1 30953:1 30958:2 30974:2 31033:2 31038:1 31138:1 31143:1 31152:1 31206:1 31222:1 31231:1 31294:1 31302:1 31332:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31603:1 31606:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:1 31678:1 31718:3 31722:1 31726:1 31737:1 31743:1 8 2:1 10:1 37:1 41:1 44:2 82:2 91:1 118:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 256:1 260:3 328:1 360:3 363:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 643:1 672:1 710:1 724:1 749:1 755:1 862:1 953:3 964:1 977:1 984:3 1006:1 1048:1 1055:3 1059:1 1100:2 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:5 1571:1 1584:1 1601:2 1610:3 1624:1 1644:1 1659:3 1683:1 1701:2 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:2 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:1 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3133:1 3138:2 3148:6 3173:1 3175:1 3184:1 3199:2 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:3 3597:1 3603:1 3629:1 3650:1 3748:2 3758:1 3771:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 4009:1 4054:1 4101:1 4112:2 4117:2 4145:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:3 4658:1 4695:1 4702:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4885:1 4901:2 4926:1 4987:1 5043:1 5069:2 5111:1 5121:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5278:1 5303:11 5327:1 5330:1 5431:2 5447:4 5448:4 5451:1 5457:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5857:2 5875:2 5893:1 5926:1 5985:2 5991:1 6025:1 6073:1 6075:1 6084:1 6103:2 6110:1 6112:2 6117:1 6220:1 6230:1 6247:1 6248:1 6323:1 6384:1 6387:1 6396:1 6465:3 6538:1 6541:2 6545:1 6561:4 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:3 6853:2 6857:3 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:2 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:3 7435:1 7449:1 7450:1 7463:4 7465:2 7468:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7635:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7956:1 7960:1 7971:2 8009:1 8029:1 8070:3 8104:3 8107:1 8187:1 8207:1 8340:5 8341:2 8361:1 8362:2 8392:1 8401:20 8408:1 8423:1 8427:6 8429:3 8439:1 8452:1 8491:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8850:1 8861:3 8947:1 8964:6 8987:1 9027:1 9066:1 9077:1 9115:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9345:1 9347:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9456:1 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9623:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:1 9842:1 9873:1 9885:1 9931:2 9957:1 9961:1 9982:1 9986:3 10014:1 10016:1 10020:1 10072:1 10090:1 10137:1 10167:1 10192:1 10204:1 10224:1 10225:2 10236:1 10247:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10667:1 10736:1 10776:1 10795:1 10808:1 10820:1 10835:1 10857:1 10872:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11203:1 11209:1 11213:1 11216:2 11228:1 11252:3 11269:1 11308:1 11316:5 11324:1 11357:3 11365:1 11373:1 11423:1 11466:1 11505:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:1 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:1 11789:1 11794:1 11807:1 11830:1 11859:2 11891:1 11897:1 11920:2 11922:1 11974:1 11995:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:2 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12325:1 12353:2 12367:1 12368:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:1 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12683:1 12705:1 12759:1 12765:1 12791:1 12834:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13061:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:1 13208:2 13263:1 13287:1 13341:1 13411:1 13429:1 13448:1 13485:1 13508:1 13532:1 13623:1 13638:1 13652:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14064:1 14068:3 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14285:1 14311:10 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14633:2 14640:1 14664:1 14669:1 14674:3 14748:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15237:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15338:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15802:1 15813:1 15826:1 15847:1 15854:1 15860:1 15897:1 15909:1 15971:1 15992:1 15997:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:2 16159:1 16166:1 16233:1 16306:1 16332:1 16365:1 16388:1 16419:1 16429:1 16483:1 16498:1 16500:1 16532:1 16594:1 16609:1 16627:1 16638:1 16646:2 16652:1 16677:2 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16872:1 16882:1 16888:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:8 17206:1 17226:2 17237:1 17238:1 17253:2 17261:1 17311:7 17334:2 17367:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17606:1 17632:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:1 17893:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:1 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18563:1 18566:1 18583:1 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:1 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19116:1 19129:2 19173:1 19233:2 19236:1 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:1 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:2 19906:1 19934:1 19945:960 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20179:1 20290:2 20413:1 20442:1 20445:1 20458:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20591:1 20675:1 20685:1 20690:1 20706:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:2 20907:1 20916:1 20941:1 20943:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:2 20994:1 20997:1 20998:1 21009:1 21037:1 21044:1 21045:1 21069:1 21090:1 21188:2 21192:2 21258:1 21273:1 21283:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21607:1 21633:1 21641:1 21656:1 21682:1 21727:1 21735:1 21736:1 21759:2 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21968:1 21995:1 22010:1 22151:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22605:1 22622:2 22625:1 22639:1 22655:1 22664:2 22712:1 22739:1 22749:2 22754:1 22758:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23094:1 23133:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:1 23320:1 23321:1 23323:1 23331:2 23355:1 23376:2 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23536:1 23540:1 23549:1 23570:1 23639:1 23640:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:2 23815:2 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24066:1 24081:1 24125:1 24160:1 24234:1 24255:1 24257:1 24267:1 24295:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24487:1 24502:1 24507:1 24530:1 24582:1 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24716:1 24744:3 24753:1 24760:1 24773:1 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24907:1 24914:1 24931:1 24939:3 24940:1 24966:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25570:2 25574:1 25649:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25972:1 25975:1 25993:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:1 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:2 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:3 27049:1 27057:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:1 27802:3 27909:1 27913:1 27935:1 27946:2 27981:1 28027:1 28045:1 28054:1 28066:1 28088:1 28198:1 28211:1 28218:1 28226:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28455:1 28463:4 28465:1 28534:1 28573:1 28618:1 28623:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:1 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28955:1 28963:1 29023:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:1 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29488:2 29493:1 29496:1 29498:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29827:1 29858:1 29961:1 30010:1 30019:1 30048:1 30052:1 30092:1 30100:1 30131:1 30133:1 30156:1 30241:1 30254:1 30256:1 30300:1 30321:11 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:2 30456:1 30480:1 30489:3 30497:1 30527:5 30574:1 30608:2 30652:1 30655:1 30679:2 30711:2 30721:2 30723:1 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30833:2 30846:1 30852:1 30884:1 30887:2 30890:3 30940:1 30953:1 30958:2 30974:2 31033:2 31038:1 31138:1 31143:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31603:1 31606:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:2 31678:1 31718:3 31722:1 31726:1 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 256:1 260:3 328:1 360:3 363:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 643:3 672:2 710:1 724:1 749:1 755:1 862:1 953:3 964:1 977:1 984:3 993:1 1006:1 1048:1 1055:3 1059:1 1100:2 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:5 1571:1 1584:1 1601:3 1610:3 1624:1 1644:1 1659:3 1683:1 1701:2 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:2 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:1 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3133:1 3138:2 3148:6 3173:1 3175:1 3184:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3542:1 3547:3 3551:2 3552:1 3565:1 3578:3 3597:1 3603:1 3629:1 3650:1 3663:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 4009:1 4054:1 4081:1 4101:1 4112:2 4117:2 4145:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:4 4658:1 4695:1 4702:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4875:1 4885:1 4901:2 4926:1 4987:1 5043:1 5069:2 5111:1 5121:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5278:1 5303:11 5327:1 5330:1 5334:1 5431:2 5447:4 5448:4 5451:1 5457:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5852:1 5857:2 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6073:1 6075:1 6084:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6323:1 6384:1 6387:1 6396:1 6465:3 6538:1 6541:2 6545:1 6561:4 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:4 6802:1 6853:2 6857:3 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:2 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7028:2 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:4 7435:1 7449:1 7450:1 7463:4 7465:2 7468:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7635:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7852:1 7860:1 7891:1 7910:2 7921:2 7956:1 7960:1 7971:2 8009:1 8029:1 8070:3 8104:3 8107:1 8187:1 8194:1 8207:1 8340:5 8341:2 8361:1 8362:2 8392:1 8401:20 8408:1 8423:1 8427:6 8429:4 8439:1 8452:1 8491:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8838:1 8850:1 8861:3 8947:1 8964:6 8987:1 9020:1 9027:1 9066:1 9077:1 9115:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9345:1 9347:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9418:1 9456:1 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9623:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:1 9842:1 9873:1 9885:1 9931:2 9957:1 9961:1 9982:1 9986:3 10014:1 10016:1 10020:2 10072:1 10088:1 10090:1 10137:1 10167:1 10192:1 10204:1 10224:1 10225:2 10234:1 10236:1 10247:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10667:1 10736:1 10776:1 10795:1 10808:1 10820:1 10835:1 10855:1 10857:1 10872:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11308:1 11316:5 11324:1 11357:3 11365:1 11373:1 11423:1 11466:1 11505:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:1 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:1 11789:1 11794:1 11807:1 11830:1 11859:2 11891:1 11897:1 11920:2 11922:1 11974:1 11995:1 12009:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:2 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12325:1 12353:2 12367:1 12368:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:1 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12645:1 12683:1 12705:1 12759:1 12765:1 12791:1 12834:1 12851:1 12861:1 12886:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13061:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:2 13208:2 13215:1 13263:1 13287:1 13341:1 13411:1 13429:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:1 13652:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14062:1 14063:1 14064:1 14068:4 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14285:1 14307:1 14311:10 14355:1 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14628:1 14633:2 14640:1 14664:1 14669:1 14674:3 14748:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15237:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15338:1 15400:1 15404:1 15411:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15802:1 15813:1 15826:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15992:1 15997:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:2 16159:2 16166:1 16233:1 16306:1 16332:1 16365:1 16388:1 16419:1 16429:1 16477:1 16483:1 16498:1 16500:1 16532:1 16594:1 16609:1 16612:1 16627:1 16638:1 16646:2 16652:1 16677:2 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16860:1 16872:1 16882:1 16888:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:8 17206:1 17226:2 17237:1 17238:1 17253:2 17261:1 17311:7 17334:2 17367:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17606:1 17632:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:1 17893:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:1 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18563:1 18566:1 18583:1 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:1 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19116:1 19129:2 19173:1 19233:2 19236:1 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19333:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:1 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19861:2 19906:1 19934:1 19945:992 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20179:1 20235:1 20290:2 20413:1 20442:1 20445:1 20458:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20591:1 20675:1 20685:1 20690:1 20706:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:2 20907:1 20916:1 20941:1 20943:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:2 20994:1 20997:1 20998:1 21009:1 21037:1 21044:1 21045:1 21069:1 21090:1 21188:2 21192:2 21258:1 21273:1 21283:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21607:1 21633:1 21641:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21968:1 21995:1 22010:1 22151:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22655:1 22664:2 22712:1 22739:1 22749:2 22754:1 22758:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23094:1 23133:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:1 23320:1 23321:1 23323:1 23331:2 23355:1 23376:2 23400:1 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23536:1 23540:1 23549:1 23570:1 23639:1 23640:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:2 23815:2 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24066:1 24081:1 24103:1 24125:1 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24487:1 24502:1 24507:1 24530:1 24582:1 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24716:1 24721:1 24744:3 24753:1 24760:1 24773:1 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24907:1 24914:1 24931:1 24939:3 24940:1 24966:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25570:2 25574:1 25649:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:2 25928:1 25930:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26404:1 26409:1 26413:1 26416:1 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:2 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:3 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:1 27521:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28088:1 28198:1 28211:1 28218:1 28226:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28455:1 28463:4 28465:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28944:1 28955:1 28963:1 29023:1 29070:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:1 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29493:1 29496:1 29498:1 29509:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29827:1 29858:1 29859:1 29961:1 30010:1 30019:1 30030:1 30048:1 30052:1 30092:1 30100:1 30131:1 30133:1 30156:1 30241:1 30254:1 30256:1 30297:1 30300:1 30321:11 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:5 30574:1 30608:2 30652:1 30655:1 30679:2 30711:2 30721:2 30723:1 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30884:1 30887:2 30890:3 30940:1 30953:1 30958:2 30974:2 31033:2 31038:1 31138:1 31143:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31603:1 31606:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:2 31678:1 31718:3 31722:1 31726:1 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 256:1 260:3 328:1 360:3 361:1 363:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 643:3 672:2 710:1 724:1 749:1 755:1 862:1 953:3 964:1 977:1 984:3 993:1 1006:1 1048:1 1055:3 1059:2 1098:1 1100:2 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1375:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:2 1566:5 1571:1 1584:1 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:3 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:1 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2615:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3129:1 3133:1 3138:2 3148:6 3173:1 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3539:1 3542:1 3547:3 3551:2 3552:1 3565:1 3578:3 3597:1 3603:1 3629:1 3650:1 3663:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4145:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:4 4658:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4875:1 4885:1 4901:2 4926:1 4943:1 4987:1 5043:1 5069:2 5078:1 5111:1 5121:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5278:1 5303:12 5327:1 5330:1 5334:1 5431:2 5447:4 5448:4 5451:1 5457:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5852:1 5857:2 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:1 6396:1 6465:3 6538:1 6541:2 6545:1 6561:4 6583:1 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:4 6802:1 6818:1 6853:2 6857:3 6889:1 6901:2 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:2 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7028:2 7057:1 7073:1 7077:1 7096:1 7106:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:4 7435:1 7449:1 7450:1 7454:1 7463:5 7465:2 7468:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7633:2 7635:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7852:1 7860:1 7891:1 7910:2 7921:2 7956:1 7960:1 7971:3 8009:1 8029:1 8070:3 8104:3 8107:1 8187:1 8194:1 8207:1 8340:5 8341:2 8361:1 8362:2 8392:1 8401:20 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8471:1 8491:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8964:6 8987:1 9020:1 9027:1 9066:1 9077:1 9115:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9345:1 9347:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9418:1 9456:1 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9583:1 9623:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:1 9842:1 9873:1 9885:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:1 10020:2 10072:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10224:1 10225:2 10234:1 10236:2 10247:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10355:1 10370:2 10385:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:1 10855:1 10857:1 10872:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11308:1 11316:5 11324:1 11326:1 11357:3 11365:1 11373:1 11423:1 11466:1 11505:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:1 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:1 11789:1 11794:1 11807:1 11830:1 11859:2 11891:1 11897:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:2 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12325:1 12353:2 12367:1 12368:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:1 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12791:1 12834:1 12851:1 12861:1 12878:1 12886:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13061:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:2 13208:2 13215:1 13263:1 13287:1 13341:1 13351:1 13371:1 13411:1 13429:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:1 13652:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:4 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14285:1 14307:1 14311:11 14355:1 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14628:1 14633:2 14640:1 14664:1 14669:1 14674:3 14748:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15237:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15338:1 15400:1 15404:1 15411:1 15483:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15802:1 15813:1 15826:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15979:1 15992:1 15997:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:2 16159:2 16166:1 16233:1 16306:1 16332:1 16365:1 16388:1 16419:1 16429:1 16477:1 16483:1 16498:1 16500:1 16532:1 16594:1 16609:1 16612:1 16627:1 16638:1 16646:2 16652:1 16665:1 16677:3 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16860:1 16872:1 16882:1 16888:1 16934:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17226:2 17237:1 17238:1 17253:2 17261:1 17311:7 17334:2 17367:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17567:1 17606:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:1 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18563:1 18566:1 18583:2 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:1 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:2 19158:1 19173:1 19233:2 19236:1 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19333:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:1 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19906:1 19934:1 19945:1036 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20179:1 20229:1 20235:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20569:1 20591:1 20675:1 20685:1 20690:1 20706:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:2 20907:1 20916:1 20941:1 20943:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21037:1 21044:1 21045:1 21069:1 21090:1 21188:2 21192:2 21258:1 21273:1 21283:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21607:1 21633:1 21641:2 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21995:1 22010:1 22105:1 22151:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22655:1 22664:2 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22838:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23073:1 23094:1 23133:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:1 23320:1 23321:1 23323:1 23331:2 23355:1 23376:2 23400:1 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23639:1 23640:1 23644:1 23655:1 23709:1 23710:1 23731:3 23734:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:1 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:1 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24716:1 24721:1 24744:3 24753:1 24760:1 24773:1 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24907:1 24914:1 24931:1 24939:3 24940:1 24966:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25570:2 25574:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:3 25928:1 25930:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26404:1 26409:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:2 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:3 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27410:1 27413:1 27416:1 27486:2 27521:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28198:1 28211:1 28218:1 28226:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28455:1 28463:4 28465:1 28527:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:1 28641:1 28676:1 28741:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28955:1 28963:1 29023:1 29070:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29493:1 29496:1 29498:1 29509:1 29510:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29827:1 29837:1 29858:1 29859:1 29961:1 30010:1 30019:1 30030:1 30048:1 30052:1 30092:1 30100:1 30131:1 30133:1 30156:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30321:11 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:5 30574:1 30608:2 30652:1 30655:1 30679:2 30711:2 30721:2 30723:1 30739:1 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30884:2 30887:2 30890:4 30940:1 30953:1 30958:2 30974:2 31033:2 31038:1 31138:1 31143:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31561:1 31603:1 31606:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:2 31678:1 31718:3 31722:1 31726:1 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 256:1 260:3 328:1 360:3 361:1 363:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 643:4 672:3 710:1 724:1 749:1 755:1 862:1 953:3 964:1 977:1 984:3 993:1 1006:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1250:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1375:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:3 1566:5 1571:1 1584:1 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:1 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2615:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3539:1 3542:1 3547:3 3551:3 3552:1 3565:1 3578:3 3597:1 3603:1 3629:1 3650:1 3663:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:4 4658:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4987:1 5043:1 5069:2 5078:1 5111:1 5121:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5278:2 5303:13 5327:1 5330:1 5334:1 5431:3 5447:4 5448:4 5451:1 5457:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6465:3 6538:1 6541:2 6545:1 6561:4 6583:1 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:3 6889:1 6901:3 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:2 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:1 7096:1 7106:1 7113:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:4 7435:1 7449:1 7450:1 7454:1 7463:5 7465:2 7468:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7852:1 7860:1 7879:1 7891:1 7910:2 7921:2 7950:1 7956:1 7960:1 7971:3 8009:1 8029:1 8070:3 8104:3 8107:1 8187:1 8194:1 8207:1 8340:5 8341:2 8361:1 8362:3 8392:1 8401:20 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8471:1 8491:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8964:6 8987:1 9020:1 9027:1 9066:1 9077:1 9115:1 9136:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9418:1 9456:1 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9583:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:1 10020:2 10072:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10224:1 10225:2 10234:1 10236:2 10247:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:1 10855:2 10857:1 10872:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11277:1 11308:1 11316:5 11324:1 11326:1 11357:3 11365:1 11373:1 11423:1 11466:1 11505:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:2 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:2 12161:1 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12325:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12791:1 12834:1 12851:1 12861:1 12878:1 12886:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:2 13208:2 13215:1 13263:1 13287:1 13341:1 13351:1 13371:1 13372:1 13411:1 13429:2 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:1 13652:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 14025:2 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:4 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14285:1 14307:1 14311:11 14355:1 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14628:1 14633:2 14640:1 14664:1 14669:1 14674:3 14748:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15229:1 15237:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15424:1 15483:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15802:1 15806:1 15813:1 15826:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15979:1 15992:1 15997:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:2 16159:2 16166:1 16233:1 16306:1 16332:1 16365:1 16388:1 16419:1 16429:1 16477:1 16483:1 16498:1 16500:2 16532:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16646:2 16652:1 16665:1 16677:3 16681:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16860:1 16872:1 16882:1 16888:1 16934:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17226:2 17237:1 17238:1 17253:2 17261:1 17311:7 17334:2 17367:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17567:1 17606:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:2 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18510:1 18563:1 18566:1 18583:2 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:1 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:2 19158:1 19173:1 19233:2 19236:1 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19333:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:1 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19906:1 19934:1 19945:1109 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:1 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20716:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:3 20907:1 20916:1 20941:1 20943:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21037:1 21044:1 21045:1 21069:1 21090:1 21188:2 21192:2 21258:1 21273:1 21283:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21633:1 21641:2 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21995:1 22010:1 22105:1 22151:1 22165:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22651:1 22655:1 22664:2 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22838:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23073:1 23080:1 23094:1 23133:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:1 23320:1 23321:1 23323:1 23331:2 23345:1 23355:1 23376:2 23400:1 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23639:1 23640:1 23644:1 23655:1 23709:2 23710:1 23731:3 23734:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23910:1 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:1 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24333:1 24365:1 24402:1 24428:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:1 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24715:1 24716:1 24721:1 24744:3 24753:1 24760:1 24773:1 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24907:1 24914:1 24931:1 24939:3 24940:1 24963:1 24966:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25570:2 25574:1 25586:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26404:1 26409:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:2 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:3 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27521:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28198:1 28211:1 28218:1 28226:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28463:4 28465:1 28527:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:1 28641:2 28676:1 28741:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28955:1 28963:1 29023:1 29070:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29493:1 29496:1 29498:2 29509:1 29510:1 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29827:1 29837:1 29858:1 29859:1 29961:1 30010:1 30019:1 30030:1 30048:1 30052:1 30092:1 30100:1 30131:1 30133:1 30156:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30321:12 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:5 30574:1 30608:2 30652:1 30655:1 30679:2 30711:2 30721:2 30723:1 30739:1 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30884:2 30887:2 30890:4 30940:1 30953:1 30958:2 30974:2 31033:2 31038:1 31138:1 31143:1 31151:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31336:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31468:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31561:1 31603:1 31606:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:2 31678:1 31718:3 31722:1 31726:2 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:3 230:1 256:1 260:3 328:1 360:3 361:1 363:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 643:4 672:3 710:1 724:1 749:1 755:1 862:1 953:3 964:1 977:1 984:3 993:1 1006:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1250:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1375:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1560:3 1566:5 1571:1 1584:1 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:2 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2615:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3078:1 3080:1 3104:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3511:1 3539:1 3542:1 3547:3 3551:3 3552:1 3565:1 3578:3 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:4 4658:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4987:1 5043:1 5069:2 5078:1 5111:2 5121:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5278:2 5303:13 5327:1 5330:1 5334:1 5431:3 5447:4 5448:4 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6465:3 6538:1 6541:2 6545:1 6561:4 6583:1 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:3 6889:1 6901:3 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:2 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:1 7096:1 7106:1 7113:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:3 7432:4 7435:1 7449:1 7450:1 7454:1 7463:5 7465:2 7468:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7852:1 7860:1 7879:1 7891:1 7910:2 7921:2 7950:1 7956:1 7960:1 7971:3 8009:1 8029:1 8070:3 8104:3 8107:1 8187:1 8194:1 8207:1 8340:5 8341:2 8361:1 8362:3 8392:1 8401:21 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8471:1 8491:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8964:6 8987:1 9020:1 9027:1 9066:1 9072:1 9077:1 9115:1 9136:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9418:1 9456:1 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:1 10020:2 10072:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10224:1 10225:2 10234:1 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:1 10855:2 10857:1 10872:1 10883:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11277:1 11308:1 11316:5 11324:1 11326:1 11357:4 11365:1 11373:1 11396:2 11423:1 11466:1 11505:2 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:2 11634:1 11653:1 11658:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12026:1 12068:1 12086:1 12147:1 12155:1 12160:2 12161:1 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12325:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12791:1 12834:1 12851:1 12861:1 12878:1 12886:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:2 13208:2 13215:1 13263:1 13287:1 13341:1 13351:1 13371:1 13372:1 13401:2 13411:1 13429:2 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:1 13652:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 13999:2 14025:2 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:4 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:11 14355:1 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14628:1 14633:2 14640:1 14664:1 14669:1 14674:3 14748:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15229:1 15237:1 15251:1 15264:1 15287:1 15317:1 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15424:1 15483:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15802:1 15806:1 15813:1 15826:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15979:1 15992:1 15997:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:2 16159:2 16166:1 16233:1 16306:1 16332:1 16365:1 16388:1 16419:1 16429:1 16477:1 16483:1 16498:1 16500:2 16532:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16646:2 16652:2 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16860:1 16872:1 16882:1 16888:1 16934:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17216:1 17226:2 17237:1 17238:1 17253:2 17261:1 17311:7 17334:2 17367:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17567:1 17606:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:2 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18510:1 18563:1 18566:1 18583:2 18622:1 18637:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:1 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:1 19233:2 19236:2 19247:2 19260:1 19268:1 19282:1 19287:1 19310:1 19318:1 19333:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:1 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19906:1 19934:1 19945:1159 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:1 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20716:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:3 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21037:1 21044:1 21045:1 21069:1 21090:1 21188:2 21192:2 21258:1 21273:1 21283:1 21315:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21633:1 21641:2 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21995:1 22010:1 22105:1 22151:1 22165:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22838:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23073:1 23080:1 23094:1 23133:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:1 23320:1 23321:1 23323:1 23331:2 23345:1 23355:1 23376:2 23400:1 23407:1 23432:2 23440:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23639:1 23640:1 23644:1 23655:1 23709:2 23710:1 23731:3 23734:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23895:1 23910:1 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:1 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24333:1 24363:1 24365:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:1 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24715:1 24716:1 24721:1 24744:3 24753:1 24760:1 24773:2 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24907:1 24914:1 24931:1 24939:3 24940:1 24963:1 24966:1 24974:2 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25570:2 25574:1 25586:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:1 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26404:1 26409:1 26410:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:2 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:2 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:4 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28198:1 28211:1 28218:1 28226:1 28250:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28463:4 28465:1 28527:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:1 28641:2 28676:1 28741:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28955:1 28963:1 29023:1 29070:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:2 29372:1 29396:2 29421:1 29422:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29493:1 29496:1 29498:2 29509:1 29510:1 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29827:1 29837:1 29858:1 29859:1 29961:1 30010:1 30019:1 30030:1 30048:1 30052:1 30092:1 30100:1 30131:1 30133:1 30156:1 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:12 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:5 30574:1 30608:2 30652:1 30655:1 30679:2 30711:2 30721:2 30723:1 30739:1 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30884:2 30887:2 30890:4 30940:1 30953:1 30958:2 30974:2 31033:2 31038:1 31138:1 31143:1 31151:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31336:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31468:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31561:1 31603:1 31606:1 31617:1 31624:1 31636:1 31646:2 31647:2 31654:1 31662:1 31668:1 31672:2 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:4 230:1 256:1 260:3 304:1 328:1 360:3 361:1 363:1 385:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 643:4 672:3 710:1 724:2 749:1 755:1 862:1 953:3 964:1 977:1 984:3 993:1 1006:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1250:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1375:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1533:1 1537:1 1554:1 1560:3 1566:5 1571:1 1584:1 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1930:1 1935:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:2 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2615:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3061:1 3078:1 3080:1 3086:1 3104:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3511:1 3514:1 3539:1 3542:1 3547:3 3551:3 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4569:1 4580:1 4591:2 4600:2 4602:1 4603:1 4606:4 4628:1 4646:1 4658:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4987:1 5032:1 5043:1 5069:2 5078:1 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5303:13 5327:1 5330:1 5334:1 5431:3 5447:4 5448:4 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6465:3 6538:2 6541:2 6545:1 6561:4 6583:1 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:3 6889:1 6901:3 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6919:1 6923:3 6925:3 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:1 7096:1 7106:1 7113:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:4 7432:4 7435:1 7449:1 7450:1 7454:1 7463:5 7465:2 7468:1 7546:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7852:1 7860:1 7879:1 7891:1 7910:2 7921:2 7950:2 7956:1 7960:1 7971:3 8009:1 8029:1 8070:3 8104:3 8107:1 8121:1 8187:1 8194:1 8207:1 8340:5 8341:2 8361:1 8362:3 8392:1 8401:21 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:1 8491:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8962:1 8964:6 8987:1 9020:1 9027:1 9066:2 9072:1 9077:1 9115:1 9136:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9406:1 9409:1 9418:1 9456:2 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:1 10020:2 10072:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10224:1 10225:2 10234:1 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10318:1 10326:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:1 10855:2 10857:1 10872:1 10883:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11277:1 11308:1 11316:5 11324:2 11326:1 11357:4 11365:1 11373:1 11396:2 11423:1 11444:1 11466:1 11505:2 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:1 11617:2 11633:2 11634:1 11653:1 11658:1 11672:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12026:1 12068:1 12086:1 12098:1 12147:1 12155:1 12160:2 12161:1 12164:1 12190:2 12200:1 12235:2 12244:1 12274:1 12279:1 12309:1 12311:1 12325:2 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12791:1 12834:1 12851:1 12861:1 12878:1 12882:1 12886:1 12932:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:2 13208:2 13215:1 13263:1 13287:1 13341:1 13351:1 13371:1 13372:1 13401:2 13411:1 13429:2 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:1 13653:1 13668:1 13703:1 13713:1 13717:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 13999:2 14025:2 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:5 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:11 14355:1 14376:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:1 14628:1 14633:2 14640:2 14664:1 14669:1 14674:3 14748:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14918:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15229:1 15237:1 15251:1 15264:1 15287:1 15317:2 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15424:1 15483:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15790:1 15802:1 15806:1 15813:1 15826:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15979:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16159:2 16166:1 16233:1 16306:1 16332:1 16345:1 16365:1 16388:1 16419:1 16429:1 16477:1 16483:1 16498:1 16500:2 16532:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16646:2 16652:3 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16860:1 16872:1 16882:1 16888:1 16934:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17216:1 17226:2 17237:1 17238:1 17253:2 17261:1 17296:1 17311:7 17334:2 17367:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17554:1 17567:1 17606:1 17623:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17915:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:2 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18510:1 18563:2 18566:1 18583:2 18622:1 18637:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:2 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:2 19233:2 19236:2 19247:2 19260:1 19268:1 19282:2 19287:1 19310:1 19311:1 19318:1 19330:1 19333:1 19409:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19906:1 19934:1 19945:1228 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:1 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20716:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:3 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21024:1 21037:1 21044:1 21045:1 21049:1 21069:1 21090:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:1 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21633:1 21641:3 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22814:1 22824:1 22831:1 22838:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23073:1 23080:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:2 23345:1 23355:1 23376:2 23400:1 23407:1 23432:2 23440:1 23464:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23644:1 23655:1 23709:2 23710:1 23731:3 23734:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23895:1 23910:1 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:1 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24333:1 24363:1 24365:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:1 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24715:1 24716:1 24721:1 24744:3 24753:1 24760:1 24773:2 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24907:1 24914:1 24931:1 24939:3 24940:1 24963:1 24966:1 24974:2 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25551:1 25570:2 25574:1 25586:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:3 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:4 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27558:1 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28463:4 28465:1 28527:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:1 28641:2 28676:1 28741:1 28759:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29070:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:3 29372:1 29396:2 29421:1 29422:1 29443:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29493:1 29496:1 29498:2 29509:1 29510:1 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29826:1 29827:1 29837:1 29858:1 29859:1 29961:1 30010:1 30019:1 30030:1 30048:1 30052:1 30092:1 30100:1 30113:1 30131:1 30133:1 30156:1 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:13 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:5 30574:1 30608:2 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:1 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30884:2 30887:2 30890:4 30940:1 30953:1 30954:1 30958:2 30974:2 31033:2 31038:1 31065:1 31138:1 31143:1 31151:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31336:1 31341:1 31347:1 31376:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31468:1 31476:1 31483:1 31485:1 31515:1 31538:1 31558:1 31559:1 31561:1 31562:1 31565:1 31603:1 31606:1 31617:2 31624:1 31636:1 31646:2 31647:3 31654:2 31662:1 31668:1 31672:2 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:4 230:1 256:1 260:3 304:1 328:1 360:3 361:1 363:1 385:1 398:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 631:1 643:4 672:3 710:1 724:3 749:1 755:1 862:1 880:1 953:3 964:1 977:1 984:3 993:1 1006:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1250:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1371:1 1373:1 1375:1 1376:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1426:1 1440:1 1457:1 1475:1 1489:1 1522:1 1533:1 1537:1 1554:1 1560:3 1566:5 1571:1 1584:2 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:1 1897:2 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2502:1 2504:2 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:6 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2615:1 2628:1 2640:1 2681:1 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:1 3024:1 3025:1 3037:1 3050:1 3061:1 3077:1 3078:1 3080:1 3086:1 3104:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:2 3547:3 3551:4 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:1 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:3 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4562:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:4 4628:1 4646:1 4658:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4987:1 5032:1 5043:1 5069:2 5078:1 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5303:13 5327:1 5330:1 5334:1 5375:1 5431:3 5447:4 5448:4 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:4 5479:1 5551:2 5588:1 5645:1 5649:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6465:3 6538:2 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:3 6889:1 6901:3 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6917:1 6919:1 6923:3 6925:3 6942:1 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:1 7083:1 7096:1 7106:1 7113:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7288:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7412:1 7424:1 7429:4 7432:4 7435:1 7449:1 7450:1 7454:2 7463:5 7465:2 7468:1 7546:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7686:1 7691:1 7699:1 7702:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7921:2 7946:1 7950:2 7956:1 7960:1 7971:3 8009:1 8029:1 8070:3 8104:3 8107:1 8121:1 8187:1 8194:1 8207:1 8340:5 8341:2 8361:1 8362:3 8392:1 8401:21 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:1 8491:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:1 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8962:1 8964:6 8987:1 9020:1 9027:1 9066:2 9072:1 9077:1 9115:1 9136:1 9156:1 9164:2 9166:1 9175:1 9176:1 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9396:1 9406:1 9409:1 9418:1 9456:3 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:1 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10314:1 10318:1 10326:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:1 10855:2 10857:1 10872:1 10883:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11277:1 11308:1 11316:5 11324:2 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:2 11617:2 11633:2 11634:1 11653:1 11658:1 11672:1 11724:1 11747:1 11751:1 11759:3 11762:2 11772:2 11778:2 11781:3 11784:1 11785:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12026:1 12068:1 12086:1 12098:1 12108:1 12147:1 12155:1 12160:2 12161:1 12164:1 12171:1 12190:2 12200:1 12211:1 12235:2 12244:1 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12791:1 12834:1 12851:1 12861:1 12878:1 12882:1 12886:1 12932:1 12940:1 12942:1 13005:1 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:2 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13341:1 13351:1 13371:1 13372:1 13401:2 13411:1 13429:2 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:1 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:5 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:11 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:2 14628:1 14633:2 14640:2 14664:1 14669:1 14674:3 14748:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14918:1 14921:2 14939:1 14947:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:1 15059:1 15082:2 15089:1 15090:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:1 15317:3 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15424:1 15483:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15772:1 15790:1 15802:1 15806:1 15813:1 15826:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15979:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16159:2 16166:1 16233:1 16306:1 16332:1 16345:1 16365:1 16388:1 16419:1 16429:1 16477:1 16483:1 16498:1 16500:2 16532:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16646:2 16652:3 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:1 16853:1 16860:1 16868:1 16872:1 16882:1 16888:1 16934:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17216:1 17226:2 17237:1 17238:1 17253:2 17261:1 17296:1 17311:7 17334:2 17367:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:1 17482:1 17484:1 17485:1 17499:1 17537:1 17554:1 17567:1 17606:1 17623:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17915:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:2 18283:1 18317:1 18327:1 18334:1 18372:1 18397:1 18458:2 18488:1 18510:1 18563:3 18566:1 18583:2 18622:1 18637:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18839:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:3 18995:1 19008:2 19010:1 19022:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:3 19233:2 19236:2 19247:2 19260:1 19268:1 19282:3 19287:1 19310:1 19311:1 19318:1 19330:1 19333:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19906:1 19934:1 19945:1257 19954:1 19963:1 20023:1 20026:1 20065:2 20082:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:1 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20716:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20850:5 20903:3 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21024:1 21037:1 21044:1 21045:1 21049:1 21069:1 21090:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:1 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21633:1 21641:4 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:1 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:1 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23071:1 23073:1 23080:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:2 23345:1 23355:2 23376:2 23400:1 23407:1 23432:2 23440:1 23464:1 23465:2 23467:1 23474:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:3 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23644:1 23655:1 23709:2 23710:1 23731:3 23734:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23895:1 23910:2 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:1 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24333:1 24363:1 24365:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24715:1 24716:1 24721:1 24744:3 24753:1 24760:1 24773:2 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24907:1 24914:1 24931:1 24939:3 24940:1 24963:1 24966:1 24974:2 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25356:1 25403:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25551:1 25570:2 25574:1 25585:1 25586:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:1 25767:2 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:1 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:3 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:1 27008:1 27019:2 27022:1 27030:1 27034:4 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27558:2 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28463:4 28465:1 28527:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:2 28641:2 28676:1 28704:1 28741:1 28759:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29303:1 29319:3 29372:1 29396:2 29421:1 29422:1 29443:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29493:1 29496:1 29498:2 29509:1 29510:1 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29693:1 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29826:1 29827:1 29837:1 29855:1 29858:1 29859:1 29961:1 30010:1 30019:1 30030:1 30048:1 30052:2 30088:1 30092:1 30100:1 30113:1 30131:1 30133:1 30156:1 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:13 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:6 30574:1 30608:2 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30884:2 30887:2 30890:4 30940:1 30953:1 30954:1 30958:2 30974:3 31033:2 31038:1 31065:1 31138:1 31143:1 31151:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31332:1 31336:1 31341:1 31347:1 31376:1 31385:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31468:2 31476:1 31483:1 31485:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31603:1 31606:1 31617:2 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31668:1 31672:2 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:4 230:1 256:1 260:3 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:1 475:1 523:1 526:1 560:1 611:1 624:1 631:1 643:4 672:3 708:1 710:1 724:3 749:1 755:1 862:1 880:1 952:1 953:4 964:1 977:1 984:4 993:1 1006:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1189:1 1206:1 1227:1 1250:1 1273:1 1298:1 1303:1 1309:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1489:1 1522:1 1533:1 1537:1 1554:1 1560:3 1566:5 1571:1 1584:2 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2500:1 2502:1 2504:2 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:7 2535:2 2538:1 2540:1 2541:2 2543:1 2545:1 2592:1 2601:2 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 3020:2 3024:1 3025:1 3037:1 3050:2 3061:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3381:1 3393:1 3402:1 3413:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4338:1 4342:1 4345:1 4349:1 4351:1 4360:1 4368:1 4388:2 4390:4 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4562:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:4 4628:1 4646:1 4658:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4987:1 5032:1 5043:1 5069:2 5078:1 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5299:1 5303:13 5327:1 5330:1 5334:1 5375:1 5431:3 5447:5 5448:5 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:6 5479:1 5551:2 5588:1 5645:1 5649:1 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6465:3 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:3 6889:1 6901:3 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6917:1 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:1 7083:2 7096:1 7106:1 7113:1 7161:1 7166:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7288:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7399:1 7412:1 7424:1 7429:4 7432:4 7435:1 7449:1 7450:1 7454:2 7463:5 7465:2 7468:1 7546:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7921:2 7946:1 7950:2 7956:1 7960:1 7971:3 8009:1 8029:1 8070:3 8104:4 8107:1 8121:1 8148:1 8187:1 8194:1 8207:1 8317:1 8340:6 8341:2 8361:1 8362:3 8392:1 8401:24 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:1 8491:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8962:1 8964:8 8987:1 9020:1 9027:1 9066:2 9072:1 9077:1 9115:1 9136:1 9156:2 9164:2 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:1 9349:1 9350:3 9351:1 9354:2 9361:2 9379:1 9387:1 9392:1 9396:1 9406:1 9409:1 9418:1 9456:3 9485:1 9489:1 9504:1 9509:1 9512:1 9519:2 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:1 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10395:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11277:1 11308:1 11316:5 11324:3 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:2 11617:2 11633:2 11634:1 11653:1 11658:1 11672:1 11721:1 11724:1 11747:1 11751:1 11759:3 11762:3 11772:2 11778:2 11781:3 11784:1 11785:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12086:1 12098:1 12108:1 12147:2 12155:1 12160:2 12161:1 12164:1 12171:1 12190:2 12200:1 12211:1 12235:2 12244:1 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12628:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12781:1 12791:1 12834:1 12851:1 12861:1 12878:1 12882:1 12886:1 12932:1 12940:1 12942:1 13005:2 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:3 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13335:1 13341:1 13351:1 13371:1 13372:1 13401:2 13411:1 13429:2 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:6 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:11 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14664:1 14669:1 14674:3 14748:2 14771:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14870:1 14877:1 14905:1 14910:1 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:2 15059:1 15082:2 15089:2 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:3 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15424:1 15483:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15761:1 15772:1 15790:1 15802:1 15806:1 15813:1 15826:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15929:1 15971:1 15979:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16159:3 16166:1 16233:1 16306:1 16332:1 16345:1 16365:1 16380:1 16388:1 16419:1 16429:1 16468:1 16477:1 16483:1 16498:1 16500:2 16532:1 16553:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16646:2 16652:3 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:2 16853:1 16860:1 16868:1 16872:1 16882:1 16888:1 16934:1 16956:1 16960:1 16963:1 17016:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17216:1 17226:2 17237:1 17238:1 17253:2 17261:1 17296:1 17311:7 17334:2 17367:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:2 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17499:1 17537:1 17554:1 17567:1 17575:1 17606:1 17623:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17915:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:1 18191:2 18196:1 18221:1 18265:2 18283:1 18288:1 18317:1 18327:1 18334:1 18372:1 18374:1 18397:1 18458:2 18488:1 18510:1 18544:1 18563:3 18566:1 18583:2 18622:1 18637:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18839:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:3 18995:1 19008:2 19010:1 19022:1 19048:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:3 19233:2 19236:2 19247:2 19260:1 19268:1 19282:3 19287:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1327 19954:1 19963:1 20023:1 20026:1 20065:2 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:1 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20716:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20830:1 20850:5 20903:3 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21024:1 21037:1 21044:1 21045:1 21049:1 21069:1 21090:1 21185:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:1 21290:2 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21633:1 21641:4 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:2 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22425:1 22434:1 22436:1 22506:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:1 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22976:1 22981:2 22997:1 23046:1 23057:1 23071:1 23073:1 23080:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23250:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23376:2 23400:1 23407:1 23432:2 23440:1 23464:2 23465:2 23467:1 23474:2 23486:1 23488:1 23491:2 23494:1 23498:2 23499:4 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23644:1 23655:1 23709:2 23710:1 23719:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23910:2 23924:1 23948:1 23963:2 23982:6 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24297:1 24333:1 24363:1 24365:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:1 24773:2 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24907:1 24914:1 24931:1 24939:3 24940:1 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25436:1 25444:1 25461:1 25485:1 25492:1 25498:1 25527:1 25551:1 25555:1 25570:2 25574:1 25585:1 25586:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26361:2 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:2 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:3 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:2 27008:1 27019:2 27022:1 27030:1 27034:4 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27556:1 27558:2 27565:1 27573:1 27714:1 27720:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27909:1 27913:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28463:4 28465:1 28476:1 28527:1 28534:1 28573:1 28584:1 28618:1 28623:1 28638:1 28639:2 28641:2 28667:1 28676:1 28704:1 28741:1 28759:1 28766:2 28767:2 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29111:1 29113:1 29117:1 29124:2 29125:1 29126:1 29135:1 29137:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29274:1 29301:1 29303:1 29319:3 29372:2 29396:2 29421:1 29422:1 29443:1 29445:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29490:1 29493:1 29496:1 29498:2 29509:1 29510:1 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29826:1 29827:1 29837:1 29855:1 29858:2 29859:1 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:1 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:13 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:7 30574:1 30608:2 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:1 30833:2 30846:1 30852:1 30880:1 30884:2 30887:2 30890:4 30940:1 30953:1 30954:1 30958:2 30974:3 31033:2 31038:1 31065:1 31138:1 31143:1 31151:1 31152:1 31206:1 31210:1 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:1 31376:1 31385:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31468:2 31476:1 31483:1 31485:1 31488:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31668:1 31672:2 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31779:1 8 2:1 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 198:1 206:1 208:4 230:1 256:1 260:3 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:1 475:1 511:1 523:1 526:1 560:1 611:1 624:1 631:1 643:4 672:3 708:1 710:1 724:4 749:1 755:1 862:1 880:1 891:1 952:1 953:4 960:1 964:1 977:1 984:4 993:1 1006:1 1021:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1185:1 1189:1 1206:1 1227:1 1250:1 1273:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1489:1 1522:1 1533:1 1537:1 1554:1 1560:3 1566:5 1571:1 1584:2 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1726:1 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:1 1848:1 1866:1 1871:1 1876:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2414:1 2500:1 2502:1 2504:2 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:7 2535:2 2538:2 2540:1 2541:2 2543:1 2545:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 2988:1 3020:2 3024:1 3025:1 3037:1 3050:2 3061:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3381:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3748:2 3758:1 3771:1 3792:1 3842:1 3856:1 3869:1 3883:1 3935:1 3948:1 3957:1 3985:2 3997:1 4004:1 4009:1 4028:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:2 4360:1 4368:1 4388:2 4390:4 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4562:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:4 4608:1 4628:1 4646:1 4658:1 4675:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4979:1 4987:1 5032:1 5043:2 5069:2 5078:1 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5153:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5299:1 5303:13 5327:1 5330:1 5334:1 5375:1 5431:3 5447:5 5448:5 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:1 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6090:1 6103:2 6105:1 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6417:1 6465:3 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:3 6889:1 6901:4 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6917:1 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7161:1 7166:1 7173:1 7177:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7288:1 7290:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7399:1 7412:1 7424:1 7429:4 7432:4 7435:1 7449:1 7450:1 7454:2 7463:5 7465:2 7468:1 7546:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:1 7950:2 7956:1 7960:1 7971:3 8009:1 8029:1 8070:4 8104:5 8107:2 8121:1 8148:1 8187:1 8194:1 8207:1 8317:1 8340:7 8341:2 8361:1 8362:3 8392:1 8401:25 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:1 8491:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8962:1 8964:9 8987:1 9020:1 9027:1 9066:2 9072:1 9077:1 9086:1 9115:1 9136:1 9156:2 9164:2 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:1 9349:1 9350:3 9351:1 9354:2 9361:2 9362:1 9379:1 9387:1 9392:1 9396:1 9406:1 9409:1 9418:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:1 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10395:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10578:1 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10915:1 10927:1 10963:1 10964:1 10992:1 10998:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:1 11136:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11252:3 11269:1 11277:1 11308:1 11316:5 11324:3 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:2 11539:1 11540:1 11586:1 11591:1 11602:2 11617:2 11633:2 11634:1 11653:1 11658:1 11672:1 11721:1 11724:1 11747:1 11751:1 11759:3 11762:3 11772:2 11778:2 11781:3 11784:1 11785:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12147:2 12155:1 12160:2 12161:1 12164:1 12171:1 12190:2 12200:1 12211:1 12235:2 12244:1 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12628:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:2 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:3 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13335:1 13341:1 13351:1 13371:1 13372:1 13401:2 13411:1 13429:2 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:6 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:11 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14664:1 14669:1 14674:3 14748:2 14771:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14867:1 14870:1 14877:1 14905:1 14910:1 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:2 15059:1 15082:2 15089:3 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15424:1 15483:1 15510:1 15512:1 15513:1 15542:1 15570:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15761:1 15772:1 15790:1 15791:1 15802:1 15806:1 15813:1 15826:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:1 15929:1 15971:1 15979:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16159:3 16166:1 16225:1 16233:1 16306:1 16332:1 16345:1 16351:1 16365:1 16380:1 16388:1 16419:1 16429:1 16468:1 16477:2 16483:1 16498:1 16500:2 16532:1 16553:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16646:2 16652:3 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:2 16853:1 16860:1 16868:1 16872:1 16882:1 16888:1 16923:1 16934:1 16956:1 16960:1 16963:1 17016:2 17050:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17216:1 17226:2 17237:1 17238:1 17253:2 17261:1 17296:1 17311:8 17334:2 17364:1 17367:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:1 17499:1 17537:1 17554:1 17567:1 17575:1 17604:1 17606:1 17623:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17915:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:2 18191:2 18196:1 18221:1 18265:2 18283:1 18288:1 18317:1 18327:1 18334:1 18372:1 18374:1 18397:1 18458:2 18488:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:1 18805:1 18839:1 18859:2 18903:2 18904:3 18933:1 18939:1 18960:1 18982:3 18995:2 19008:2 19010:1 19022:1 19048:1 19066:1 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19233:2 19236:2 19247:2 19260:1 19268:1 19282:4 19287:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1387 19954:1 19963:1 20023:1 20026:1 20027:1 20065:2 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:2 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20716:1 20730:1 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20830:1 20850:5 20903:3 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21024:1 21037:1 21044:1 21045:1 21049:1 21069:1 21072:1 21090:1 21185:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:1 21290:2 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:1 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21633:1 21641:4 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:2 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22425:1 22434:1 22436:1 22506:1 22512:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:1 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22962:1 22976:1 22981:2 22997:1 23046:1 23057:1 23071:1 23073:1 23080:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23250:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23376:2 23382:1 23400:1 23407:1 23432:2 23440:1 23464:2 23465:2 23467:1 23474:2 23486:1 23488:1 23491:2 23494:1 23498:2 23499:4 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23644:1 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23910:2 23924:1 23948:1 23963:2 23982:7 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24297:1 24333:1 24363:1 24365:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:1 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24715:1 24716:1 24721:1 24744:4 24753:1 24760:1 24773:2 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:1 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25436:1 25444:1 25461:1 25485:2 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:2 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:2 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:2 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26719:1 26788:3 26797:2 26867:1 26869:1 26899:1 26925:1 26950:1 26989:2 27008:1 27019:2 27022:1 27030:1 27034:4 27049:1 27057:1 27073:1 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27218:1 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27556:1 27558:2 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27909:1 27913:1 27931:1 27935:1 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28461:1 28463:4 28465:1 28476:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:1 28623:1 28638:1 28639:2 28641:2 28667:1 28676:1 28704:1 28741:1 28759:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:2 29124:2 29125:1 29126:1 29135:1 29137:1 29146:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29301:1 29303:1 29319:3 29372:2 29396:2 29421:1 29422:1 29443:1 29445:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29490:1 29493:1 29496:1 29498:2 29504:1 29509:1 29510:1 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:2 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29738:1 29801:1 29826:1 29827:1 29837:1 29855:1 29858:2 29859:1 29919:1 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:14 30330:1 30347:1 30356:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:8 30574:1 30608:2 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:2 30833:2 30846:1 30852:1 30880:1 30884:2 30887:2 30890:4 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31065:1 31138:1 31143:1 31151:1 31152:1 31190:1 31206:1 31210:2 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:1 31376:1 31385:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:1 31468:2 31476:1 31483:1 31485:1 31488:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31668:1 31672:2 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31779:1 8 2:3 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 178:1 198:1 206:1 208:4 230:1 256:1 260:3 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:1 475:1 511:1 523:1 526:1 560:1 601:1 611:1 624:1 631:1 643:4 672:4 708:1 710:1 724:4 749:1 754:1 755:1 862:2 880:1 891:1 952:1 953:4 960:1 964:1 977:1 984:4 993:1 1006:1 1021:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1185:1 1189:1 1206:1 1227:1 1250:2 1273:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1489:1 1522:1 1533:1 1537:1 1554:1 1560:3 1566:5 1571:1 1584:2 1601:3 1610:3 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1726:1 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:2 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2414:1 2500:1 2502:1 2504:3 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:7 2535:2 2538:2 2540:1 2541:2 2543:1 2545:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 2988:1 3020:2 3024:1 3025:1 3037:1 3050:2 3061:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3381:1 3392:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3842:1 3856:1 3869:1 3883:1 3884:2 3935:1 3948:1 3957:1 3985:2 3997:2 4004:1 4009:1 4028:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4388:2 4390:4 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4562:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:4 4608:1 4616:1 4628:1 4646:1 4658:1 4675:1 4695:1 4702:1 4716:1 4721:4 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4979:2 4987:1 5032:1 5043:2 5069:2 5078:1 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5153:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5299:1 5303:13 5327:1 5330:1 5334:1 5375:1 5431:3 5447:5 5448:5 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:3 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5767:1 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6417:1 6465:3 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6640:1 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6798:5 6802:1 6807:1 6818:1 6853:2 6857:4 6889:1 6901:4 6903:1 6906:1 6907:1 6908:3 6911:1 6914:2 6917:1 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7288:1 7290:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:1 7390:2 7396:1 7399:1 7412:1 7424:1 7429:4 7432:4 7435:1 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:1 7546:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7723:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:1 7950:2 7956:1 7960:1 7971:3 8009:1 8029:1 8070:4 8104:5 8107:2 8121:1 8148:1 8187:1 8194:1 8207:1 8317:1 8340:7 8341:2 8361:1 8362:3 8392:1 8401:26 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:1 8491:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8962:1 8964:9 8987:1 9020:1 9027:1 9066:2 9072:1 9077:1 9086:1 9115:1 9136:1 9156:2 9164:3 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:1 9349:1 9350:4 9351:1 9354:2 9361:2 9362:1 9379:1 9387:1 9392:1 9396:1 9406:1 9409:1 9418:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9945:1 9957:1 9961:1 9968:1 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:1 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10395:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10578:1 10580:1 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10915:2 10927:1 10963:1 10964:1 10966:1 10992:1 10998:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11171:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:2 11539:1 11540:1 11550:1 11586:1 11591:1 11602:2 11617:2 11633:2 11634:1 11653:1 11658:1 11672:1 11721:1 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:2 11781:3 11784:1 11785:2 11788:1 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12147:2 12155:1 12160:2 12161:1 12164:1 12171:1 12190:2 12200:1 12211:1 12213:1 12235:2 12244:1 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12628:1 12634:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:3 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13335:1 13341:1 13351:1 13371:1 13372:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:6 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:11 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14664:1 14669:1 14674:3 14748:2 14771:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14867:1 14870:1 14877:1 14905:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:2 15059:1 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15483:1 15510:1 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15633:1 15642:1 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15761:1 15772:1 15790:1 15791:1 15802:1 15806:1 15813:1 15826:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:1 15929:1 15971:1 15979:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16159:3 16166:1 16225:1 16233:1 16306:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:1 16388:1 16401:1 16419:1 16429:1 16468:1 16477:2 16483:1 16498:1 16500:2 16532:1 16553:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16644:1 16646:2 16652:3 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:2 16853:1 16860:1 16868:1 16872:1 16882:1 16888:1 16923:1 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:9 17206:1 17216:1 17226:2 17237:1 17238:1 17253:2 17261:1 17296:1 17311:8 17334:2 17364:1 17367:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:1 17499:1 17537:1 17554:1 17567:1 17575:1 17604:1 17606:1 17623:1 17632:1 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17915:1 17916:1 17939:1 17945:2 17946:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:2 18191:2 18196:1 18203:1 18221:1 18265:2 18283:1 18288:1 18317:1 18327:1 18334:1 18372:1 18374:1 18397:1 18458:2 18488:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:2 18805:1 18839:1 18859:3 18903:2 18904:3 18933:1 18939:1 18960:1 18982:3 18995:3 19008:2 19010:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19233:2 19236:2 19247:2 19260:1 19268:1 19282:4 19287:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1461 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20065:2 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20413:1 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:2 20569:1 20591:1 20601:1 20675:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:2 20805:1 20807:1 20830:1 20850:5 20903:4 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21024:1 21037:1 21044:1 21045:1 21049:1 21069:1 21072:2 21090:1 21147:1 21185:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:1 21290:2 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:1 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21627:1 21633:1 21641:4 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22209:1 22249:1 22265:1 22280:2 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22425:1 22434:1 22436:1 22506:1 22512:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22638:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:1 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22958:1 22962:2 22976:1 22981:2 22997:1 23046:1 23057:1 23071:1 23073:1 23080:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:2 23235:1 23250:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23376:2 23382:1 23384:1 23400:1 23407:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23474:2 23486:1 23488:1 23491:2 23494:1 23498:2 23499:4 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:1 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23910:2 23924:1 23948:3 23963:2 23982:7 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24297:1 24333:1 24363:1 24365:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:2 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:2 24773:2 24798:1 24818:2 24826:1 24849:1 24855:1 24857:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:1 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:1 25119:1 25136:1 25138:1 25144:1 25155:1 25162:1 25188:2 25197:1 25207:1 25224:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26201:1 26204:1 26209:1 26222:2 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:2 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26418:1 26424:1 26442:1 26447:1 26462:2 26507:1 26528:1 26538:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:1 26788:3 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:2 27008:1 27019:2 27022:1 27030:1 27034:4 27049:2 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27556:1 27558:2 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27899:1 27909:1 27913:1 27931:1 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28461:1 28463:4 28465:1 28476:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:1 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28741:1 28759:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:1 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:1 29303:1 29319:3 29372:2 29396:2 29421:1 29422:1 29443:1 29445:1 29446:1 29459:1 29460:1 29468:2 29475:1 29488:2 29490:1 29493:1 29496:1 29498:3 29504:1 29509:1 29510:2 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:3 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29730:1 29738:1 29801:1 29826:1 29827:1 29837:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:15 30330:1 30347:1 30356:1 30358:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:8 30574:1 30608:2 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:2 30833:2 30846:1 30852:1 30880:1 30884:2 30887:2 30890:4 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31065:1 31138:1 31143:1 31151:1 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:1 31376:1 31385:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31668:1 31672:3 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 178:1 198:1 206:1 208:4 230:1 256:1 260:3 273:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:1 475:1 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:1 643:4 672:5 708:1 710:1 724:4 749:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:4 960:1 964:1 977:1 978:1 984:4 993:1 1006:1 1021:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1185:1 1189:1 1206:1 1227:1 1250:3 1273:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1554:1 1560:3 1566:5 1571:1 1584:2 1601:3 1610:4 1624:1 1627:1 1644:1 1659:3 1683:1 1701:3 1721:2 1726:1 1765:1 1783:2 1796:1 1798:1 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:2 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2414:1 2454:1 2500:1 2502:1 2504:3 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:7 2535:2 2538:2 2540:1 2541:2 2543:1 2545:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2696:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 2988:1 3020:2 3024:1 3025:1 3037:1 3050:2 3061:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3381:1 3392:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3842:1 3856:1 3869:1 3883:1 3884:2 3926:1 3935:1 3948:1 3957:1 3985:2 3997:2 4004:1 4009:1 4028:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4522:1 4524:1 4536:1 4544:1 4562:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:4 4608:1 4616:1 4628:1 4646:1 4658:1 4675:1 4695:1 4702:1 4716:1 4721:5 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4979:2 4987:1 5032:1 5043:2 5069:2 5078:2 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5299:1 5303:13 5327:1 5330:1 5334:1 5375:1 5431:3 5447:5 5448:5 5451:1 5457:1 5459:1 5463:2 5465:2 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:4 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5767:1 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6183:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:2 6396:1 6417:1 6465:3 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6640:2 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6791:1 6798:5 6802:1 6807:1 6818:1 6853:2 6857:4 6889:1 6901:4 6903:1 6906:1 6907:1 6908:3 6909:1 6911:1 6914:2 6917:2 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7288:1 7290:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:2 7390:2 7396:2 7399:1 7412:1 7424:1 7429:4 7432:4 7435:1 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:1 7546:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7723:1 7725:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:2 7950:2 7956:1 7960:1 7963:1 7971:3 8009:1 8029:1 8070:4 8104:5 8107:2 8121:1 8148:1 8187:1 8194:1 8207:1 8317:1 8340:7 8341:2 8361:1 8362:3 8392:1 8393:1 8401:26 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:2 8491:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8850:1 8861:3 8947:1 8962:1 8964:9 8987:1 9020:1 9027:1 9066:2 9072:1 9077:1 9086:1 9115:1 9136:1 9156:2 9164:3 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:1 9349:1 9350:4 9351:1 9354:2 9361:2 9362:1 9379:1 9387:2 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:1 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:2 9842:1 9873:1 9885:1 9886:1 9931:2 9945:1 9957:1 9961:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10137:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:2 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:1 10355:1 10369:1 10370:2 10376:1 10385:1 10395:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10578:1 10580:1 10587:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10915:2 10927:1 10963:1 10964:1 10966:1 10992:1 10998:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11171:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:3 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:2 11539:1 11540:1 11548:1 11550:1 11586:1 11591:1 11602:2 11617:2 11633:2 11634:1 11653:1 11658:1 11672:1 11721:1 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:2 11781:3 11784:1 11785:2 11788:1 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12147:2 12155:1 12160:2 12161:1 12164:1 12171:1 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:1 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:1 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12622:1 12626:1 12628:1 12634:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:1 13058:1 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:3 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:13 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14664:1 14669:1 14674:3 14748:2 14771:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14867:1 14870:1 14877:1 14905:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:2 15059:1 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15435:1 15483:1 15510:1 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15761:1 15772:1 15790:1 15791:1 15802:1 15806:1 15813:1 15826:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:1 15929:1 15971:1 15979:1 15987:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16159:3 16166:1 16225:1 16233:1 16306:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:1 16388:1 16401:1 16407:1 16419:1 16429:1 16468:1 16477:2 16483:1 16498:1 16500:2 16532:1 16552:1 16553:1 16578:1 16594:1 16609:1 16612:1 16616:1 16627:1 16638:1 16642:1 16644:1 16646:2 16652:3 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:2 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:1 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:10 17206:1 17216:1 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:1 17296:1 17311:8 17334:2 17364:1 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:1 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17880:1 17889:2 17893:1 17915:1 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:2 18191:2 18196:1 18203:1 18221:1 18265:2 18283:2 18288:1 18317:1 18327:1 18334:1 18372:1 18374:1 18397:1 18458:2 18488:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:2 18805:1 18839:1 18859:3 18903:2 18904:3 18933:1 18939:2 18960:1 18982:3 18995:3 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19233:2 19236:2 19247:3 19260:1 19268:1 19282:4 19287:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1513 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:2 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20342:1 20413:1 20423:2 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:2 20569:1 20591:1 20601:1 20616:1 20675:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:4 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:1 21024:1 21037:1 21044:1 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21147:1 21185:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:2 21290:2 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:1 21627:1 21633:1 21641:4 21652:1 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21839:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22249:1 22265:1 22280:2 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22425:1 22434:1 22436:1 22506:1 22512:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22638:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:1 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22948:1 22958:1 22962:2 22976:1 22981:2 22997:1 23046:1 23057:1 23071:2 23073:1 23080:1 23089:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:3 23235:1 23250:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23376:2 23382:1 23384:1 23400:1 23407:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23474:2 23486:1 23488:1 23491:2 23494:1 23498:2 23499:4 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:1 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23910:2 23924:1 23948:4 23963:2 23982:7 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24267:1 24295:1 24297:1 24333:1 24363:1 24365:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:2 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:2 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:1 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:1 25119:1 25136:1 25138:1 25144:1 25155:1 25159:1 25162:1 25188:2 25197:1 25207:1 25224:1 25233:1 25243:3 25253:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26042:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26417:1 26418:1 26424:1 26442:1 26447:1 26462:2 26507:1 26528:1 26538:1 26553:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:1 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:2 27008:1 27019:2 27022:1 27030:1 27034:5 27049:2 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27556:1 27558:2 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27899:1 27909:1 27913:1 27931:1 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28461:1 28463:5 28465:1 28476:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:1 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28759:1 28761:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28815:1 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:1 29303:1 29319:3 29372:2 29396:2 29421:1 29422:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:2 29475:1 29488:2 29490:1 29493:1 29496:1 29498:4 29504:1 29509:1 29510:2 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:3 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29730:1 29738:1 29801:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30241:1 30254:1 30256:1 30297:1 30298:1 30300:1 30312:1 30321:15 30330:1 30347:1 30356:1 30358:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:8 30574:1 30608:2 30618:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:2 30833:2 30846:1 30852:1 30880:1 30884:2 30887:2 30890:5 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31065:1 31138:1 31143:1 31151:1 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:2 31376:1 31385:1 31397:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31665:1 31668:1 31672:3 31678:1 31718:4 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 178:1 198:1 206:1 208:4 230:1 256:1 260:3 273:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:1 475:1 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:1 643:4 672:6 708:1 710:1 724:4 749:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:4 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1048:1 1055:3 1059:2 1098:1 1100:3 1119:1 1167:1 1172:1 1173:1 1185:1 1189:1 1206:1 1215:1 1227:1 1250:3 1262:1 1273:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1554:1 1560:4 1566:5 1571:1 1584:2 1601:3 1610:4 1624:1 1627:1 1644:1 1652:1 1659:3 1683:1 1701:3 1721:2 1726:1 1765:1 1783:2 1796:1 1798:1 1801:1 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:2 2222:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2332:1 2368:4 2414:1 2454:1 2500:1 2502:1 2504:4 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:7 2535:2 2538:2 2540:1 2541:2 2543:1 2545:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2696:1 2743:1 2782:1 2794:1 2809:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 2988:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:2 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3381:1 3392:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:4 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3842:1 3856:1 3869:1 3883:1 3884:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:2 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4066:1 4081:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4562:1 4565:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:4 4608:1 4616:1 4628:1 4646:1 4658:1 4675:1 4695:1 4702:1 4716:1 4721:5 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4943:1 4977:1 4979:2 4987:1 5032:1 5043:2 5069:2 5078:2 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:2 5299:1 5303:13 5315:1 5327:1 5330:1 5334:1 5375:1 5431:3 5447:5 5448:5 5451:1 5457:1 5459:1 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:4 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5763:1 5767:1 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:1 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6183:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:3 6396:1 6417:1 6465:3 6512:1 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6791:1 6798:6 6802:1 6807:1 6818:1 6853:2 6857:4 6889:1 6901:4 6903:2 6906:1 6907:1 6908:3 6909:1 6911:1 6914:2 6917:2 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:1 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7194:1 7204:1 7232:1 7241:1 7251:1 7269:1 7288:1 7290:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:2 7390:2 7396:2 7399:1 7412:1 7424:1 7429:4 7432:5 7435:1 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:2 7546:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7723:1 7725:1 7732:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:2 7950:2 7952:1 7956:1 7960:1 7963:1 7971:3 8009:1 8029:1 8070:4 8104:5 8107:2 8121:1 8148:1 8187:1 8194:1 8207:1 8317:1 8340:8 8341:2 8361:1 8362:3 8392:1 8393:1 8401:27 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:2 8491:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8850:1 8853:1 8861:3 8947:1 8962:1 8964:9 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9115:1 9136:2 9156:2 9164:3 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9361:2 9362:1 9379:1 9387:2 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9695:1 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:3 9828:1 9842:1 9873:1 9885:1 9886:1 9931:2 9945:1 9957:1 9961:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:2 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:1 10338:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10578:1 10580:1 10587:1 10610:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10915:2 10927:1 10963:1 10964:1 10966:1 10992:1 10998:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11169:1 11171:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:2 11539:1 11540:2 11548:1 11550:1 11586:1 11591:1 11602:2 11617:2 11633:3 11634:1 11653:1 11658:1 11672:1 11721:1 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:2 11781:3 11784:1 11785:2 11788:2 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12147:2 12155:1 12160:2 12161:1 12164:1 12171:2 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:2 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:2 12490:2 12527:2 12535:2 12539:1 12542:1 12551:1 12555:4 12556:1 12562:2 12616:1 12622:2 12626:1 12628:1 12634:1 12641:1 12645:1 12663:1 12683:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:2 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:3 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13300:1 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13807:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14124:1 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:13 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14664:1 14669:1 14674:3 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:1 14861:2 14867:1 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:1 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15345:1 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15761:1 15772:1 15790:1 15791:1 15802:1 15806:1 15813:1 15826:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:1 15929:1 15971:1 15979:1 15987:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16122:2 16159:3 16166:1 16170:1 16225:1 16233:1 16306:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:1 16388:1 16401:1 16407:1 16419:1 16429:2 16468:1 16477:2 16483:1 16498:1 16500:2 16532:1 16552:1 16553:1 16578:1 16594:1 16609:1 16612:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:2 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:1 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:10 17206:1 17216:1 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:8 17329:1 17334:2 17364:1 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:1 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17870:1 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:2 18191:2 18196:1 18203:1 18221:1 18265:3 18283:2 18288:1 18317:1 18327:1 18334:1 18372:1 18374:1 18397:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:2 18805:1 18839:1 18859:3 18903:2 18904:3 18933:1 18939:2 18960:1 18982:3 18995:3 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:4 19287:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19545:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1574 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:2 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20342:1 20410:1 20413:1 20423:2 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:2 20569:1 20591:1 20601:1 20616:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:4 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:1 21021:1 21024:1 21037:1 21044:1 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21147:1 21185:1 21188:2 21192:2 21251:1 21258:1 21273:1 21283:2 21290:2 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:2 21627:1 21633:1 21641:4 21652:2 21656:1 21682:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21839:1 21842:1 21872:2 21877:1 21885:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22249:1 22265:1 22280:2 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22389:1 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22425:1 22434:1 22436:1 22506:1 22512:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22638:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:2 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22933:1 22948:1 22958:1 22962:2 22976:1 22981:2 22986:1 22997:1 23046:1 23057:1 23071:2 23073:1 23080:1 23089:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:3 23235:1 23250:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23368:1 23376:2 23382:1 23384:1 23400:1 23407:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23474:2 23485:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:4 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23910:3 23924:1 23948:4 23963:2 23982:7 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:2 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:2 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:1 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25025:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:1 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:1 25162:1 25188:2 25197:1 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:1 25649:1 25652:1 25670:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25972:1 25975:1 25993:1 26014:1 26031:1 26041:1 26042:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26417:2 26418:1 26424:1 26442:1 26447:1 26462:2 26507:1 26528:1 26538:1 26553:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:2 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:3 27008:1 27019:2 27022:1 27030:1 27034:5 27049:2 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27556:1 27558:3 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27792:1 27794:2 27802:3 27843:1 27899:1 27909:1 27913:1 27931:1 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28430:1 28435:1 28438:1 28455:1 28461:1 28463:5 28465:1 28476:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:1 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28759:1 28761:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:1 29303:1 29319:3 29372:2 29392:1 29396:2 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:2 29475:1 29488:2 29490:1 29493:1 29496:2 29498:4 29504:1 29509:1 29510:2 29513:1 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:3 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29730:1 29738:1 29801:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30241:1 30254:1 30256:1 30297:1 30298:2 30300:1 30312:1 30321:16 30330:2 30347:1 30356:1 30358:1 30365:2 30392:1 30394:1 30406:1 30445:3 30456:1 30480:1 30489:3 30497:1 30527:9 30574:1 30601:1 30608:2 30618:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:2 30833:2 30846:1 30852:1 30877:1 30880:1 30884:2 30887:2 30890:5 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31041:1 31065:1 31138:1 31143:1 31151:2 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:2 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31665:1 31668:1 31672:3 31678:1 31718:5 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 177:1 178:1 198:1 206:1 208:4 230:1 238:1 256:1 260:3 273:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:1 475:1 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:2 643:4 672:6 708:1 710:1 724:4 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:4 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1048:1 1055:3 1059:2 1098:1 1100:3 1111:1 1119:1 1167:1 1172:1 1173:1 1185:1 1189:1 1206:1 1208:1 1215:1 1227:1 1250:3 1262:1 1273:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1550:1 1554:1 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:1 1644:1 1652:1 1659:3 1683:1 1701:3 1704:1 1721:2 1726:1 1729:1 1765:1 1783:2 1796:1 1798:1 1801:1 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:2 2222:1 2236:1 2239:1 2242:2 2288:1 2301:1 2309:1 2324:1 2332:1 2368:4 2394:1 2414:1 2454:1 2499:1 2500:1 2502:1 2504:4 2506:1 2509:1 2512:3 2514:1 2521:1 2527:2 2532:7 2535:2 2538:2 2540:1 2541:2 2543:1 2545:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2696:1 2743:1 2782:1 2794:1 2809:1 2859:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2969:3 2988:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3381:1 3392:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:5 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3842:1 3856:1 3869:1 3883:1 3884:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:2 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4066:1 4081:1 4082:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4562:1 4565:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:5 4608:1 4616:1 4628:1 4646:1 4658:1 4675:1 4695:1 4702:1 4716:1 4721:5 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4977:1 4979:2 4987:1 5032:1 5043:2 5069:2 5078:2 5105:1 5111:2 5121:1 5123:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5210:1 5218:1 5278:3 5299:1 5303:14 5315:1 5327:1 5330:1 5334:1 5375:1 5431:3 5447:6 5448:5 5451:1 5457:1 5459:1 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:4 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5737:1 5763:1 5767:1 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6183:1 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6323:1 6384:1 6387:4 6396:1 6417:1 6465:3 6512:1 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6791:1 6798:6 6802:1 6807:1 6818:1 6853:2 6857:4 6889:1 6901:4 6903:2 6906:1 6907:1 6908:3 6909:1 6911:1 6914:2 6917:2 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7194:1 7204:1 7232:1 7241:1 7251:1 7255:1 7269:1 7288:1 7290:1 7338:1 7340:1 7343:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:6 7435:1 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7719:1 7723:1 7725:1 7732:1 7752:1 7755:1 7763:1 7782:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:1 7963:1 7971:3 8009:1 8029:1 8070:4 8104:5 8107:2 8121:1 8148:1 8187:1 8194:2 8207:1 8317:2 8340:10 8341:3 8361:1 8362:3 8392:1 8393:1 8401:28 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8850:1 8853:1 8861:3 8947:1 8962:1 8964:9 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9115:1 9136:2 9156:2 9164:3 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9361:2 9362:1 9379:1 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9695:2 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:4 9828:1 9842:1 9873:1 9885:1 9886:1 9931:2 9945:1 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10143:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:2 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:2 10578:1 10580:1 10587:1 10610:1 10655:1 10667:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10927:1 10963:1 10964:1 10966:1 10992:1 10998:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11169:1 11171:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:4 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:2 11539:1 11540:2 11548:1 11550:1 11586:1 11591:1 11602:2 11617:2 11633:4 11634:1 11647:1 11653:1 11658:1 11672:1 11721:1 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:2 11781:4 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12147:2 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:3 12274:1 12279:2 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:2 12490:2 12527:2 12535:2 12539:1 12542:1 12546:1 12551:1 12555:4 12556:1 12562:2 12616:1 12622:2 12626:1 12628:1 12634:1 12641:1 12645:1 12663:1 12682:1 12683:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13131:1 13171:1 13184:1 13185:1 13205:3 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14124:1 14184:1 14196:1 14206:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14355:1 14376:1 14382:1 14416:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14664:1 14669:1 14674:3 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:1 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:2 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15761:1 15772:1 15790:1 15791:1 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:1 15929:1 15971:1 15979:1 15987:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16122:2 16159:3 16166:1 16170:1 16225:1 16233:1 16306:1 16328:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:2 16388:1 16401:1 16407:1 16419:1 16429:2 16468:1 16477:2 16483:1 16498:1 16500:2 16532:1 16552:1 16553:1 16578:1 16594:1 16609:1 16612:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:2 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16845:1 16847:1 16850:3 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:1 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:1 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:8 17329:1 17334:2 17364:1 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:1 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17870:1 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:2 18191:2 18196:1 18203:1 18221:1 18230:1 18265:4 18283:2 18288:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:1 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:1 18804:2 18805:1 18839:1 18859:3 18903:2 18904:3 18933:1 18939:2 18960:1 18982:3 18995:3 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:4 19287:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19510:1 19518:1 19545:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19727:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1636 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:2 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20342:1 20410:1 20413:1 20423:2 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:1 20511:1 20521:1 20533:1 20546:1 20556:2 20569:1 20591:1 20601:1 20616:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:4 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:1 21021:1 21024:1 21037:1 21044:1 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21147:1 21185:1 21188:2 21192:2 21232:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:1 21315:1 21325:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:2 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:2 21627:1 21633:1 21641:4 21652:2 21656:1 21682:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21779:1 21792:1 21839:1 21842:1 21872:2 21877:1 21885:1 21889:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22249:1 22265:1 22280:2 22309:1 22318:2 22321:1 22342:1 22345:1 22367:1 22385:1 22386:6 22388:1 22389:2 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22425:1 22434:1 22436:1 22506:1 22512:1 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22605:1 22622:2 22625:1 22638:1 22639:1 22651:1 22655:1 22664:3 22687:1 22712:1 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:2 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22933:2 22948:1 22958:1 22962:2 22976:1 22981:2 22986:1 22997:1 23046:1 23057:1 23071:2 23073:1 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23233:3 23235:1 23250:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23368:1 23376:2 23382:1 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23474:2 23485:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:5 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23910:4 23924:1 23948:4 23963:2 23982:7 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:2 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:1 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:2 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:1 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25025:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:1 25162:1 25188:3 25197:1 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:1 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25972:1 25975:1 25993:1 26014:1 26031:1 26041:2 26042:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26417:2 26418:1 26424:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:1 26538:1 26553:1 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26593:1 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:2 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:3 27008:1 27019:2 27022:1 27030:1 27034:5 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27556:1 27558:4 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:3 27843:1 27899:1 27909:1 27913:1 27931:1 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28066:1 28087:1 28088:1 28099:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28383:1 28385:1 28398:1 28430:1 28435:1 28438:1 28455:1 28461:1 28463:5 28465:1 28476:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:1 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:1 29303:1 29319:3 29372:2 29388:1 29392:1 29396:2 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:2 29475:1 29488:2 29490:1 29493:1 29496:2 29498:4 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29622:1 29626:3 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30241:1 30254:1 30256:1 30297:1 30298:2 30300:1 30312:1 30321:16 30330:3 30347:1 30356:1 30358:1 30365:2 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30480:2 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30818:1 30819:2 30833:2 30846:1 30852:1 30877:2 30880:1 30884:2 30887:2 30890:5 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31041:1 31065:1 31138:1 31143:1 31151:3 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:3 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:2 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:2 31662:1 31665:1 31668:1 31672:3 31678:1 31718:5 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:3 273:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:2 475:2 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:2 643:4 672:6 708:1 710:1 724:4 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:5 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1048:1 1055:3 1059:2 1098:1 1100:3 1111:1 1118:1 1119:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:1 1227:1 1250:3 1262:1 1273:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:2 1644:1 1652:1 1659:3 1680:1 1683:1 1701:3 1704:1 1721:2 1726:1 1729:1 1765:1 1783:2 1796:1 1798:1 1801:2 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:1 2135:1 2151:1 2154:1 2205:1 2207:2 2222:1 2236:1 2238:1 2239:1 2242:2 2288:1 2301:1 2309:1 2324:1 2332:1 2368:4 2394:1 2414:1 2442:1 2454:1 2463:1 2499:1 2500:1 2502:1 2504:4 2506:1 2509:1 2512:3 2514:1 2521:1 2522:1 2527:2 2532:7 2535:2 2538:3 2540:1 2541:2 2543:1 2545:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2696:1 2743:1 2782:1 2794:1 2809:1 2859:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3104:1 3105:1 3129:1 3133:1 3138:2 3148:6 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3381:1 3392:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:5 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:1 3926:1 3935:1 3948:1 3957:1 3983:1 3985:2 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4066:1 4081:1 4082:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4244:1 4250:1 4261:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4372:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4562:1 4565:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:5 4608:1 4616:1 4628:1 4646:1 4658:1 4675:2 4695:1 4702:1 4716:1 4721:5 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:1 4977:1 4979:2 4987:1 5032:1 5043:2 5069:2 5078:2 5105:1 5111:3 5121:1 5123:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5209:1 5210:1 5218:1 5278:3 5299:1 5303:14 5315:1 5327:1 5330:1 5334:1 5375:1 5431:3 5447:6 5448:6 5451:1 5456:1 5457:1 5459:1 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:4 5683:1 5707:1 5708:1 5713:1 5715:1 5720:1 5725:1 5737:1 5763:1 5767:2 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6183:2 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6256:1 6323:1 6384:1 6387:4 6396:1 6417:2 6465:3 6512:1 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:1 6670:1 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6853:2 6857:5 6889:1 6901:5 6903:2 6906:1 6907:1 6908:3 6909:1 6911:1 6914:2 6917:2 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7194:1 7204:1 7232:1 7241:1 7251:1 7255:1 7269:1 7288:1 7290:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:6 7435:1 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7668:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7782:1 7783:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:1 7963:2 7971:3 8009:1 8029:1 8070:5 8104:5 8107:2 8121:1 8148:1 8187:1 8194:2 8207:1 8254:1 8317:2 8340:10 8341:4 8361:1 8362:3 8392:1 8393:1 8401:30 8408:1 8423:1 8427:6 8429:5 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8947:1 8962:1 8964:10 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:4 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9361:2 9362:1 9379:1 9383:1 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9623:1 9665:1 9666:1 9672:1 9683:1 9695:2 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:4 9828:1 9842:1 9873:1 9885:1 9886:1 9931:2 9945:1 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:2 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:1 10610:1 10655:1 10667:1 10720:1 10736:1 10763:2 10776:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:1 10927:1 10963:1 10964:1 10966:1 10992:1 10998:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11169:1 11171:1 11180:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:5 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:3 11539:1 11540:2 11548:1 11550:1 11586:1 11591:1 11602:2 11617:2 11633:4 11634:1 11647:1 11653:1 11658:1 11672:1 11721:2 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:3 11781:4 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12144:1 12147:3 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:3 12274:1 12279:2 12304:1 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:2 12490:2 12527:2 12535:2 12539:1 12542:1 12546:1 12551:1 12555:4 12556:1 12562:2 12616:1 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:4 13208:2 13215:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14123:1 14124:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14355:1 14376:1 14382:1 14384:1 14386:1 14416:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:2 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15757:1 15761:1 15772:1 15790:1 15791:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16110:1 16112:2 16115:3 16122:2 16159:4 16163:1 16166:1 16170:1 16225:1 16233:1 16262:1 16306:1 16328:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:2 16388:1 16401:1 16407:1 16419:1 16429:2 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16552:1 16553:1 16578:1 16585:1 16594:1 16609:1 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16762:3 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:3 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:2 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:1 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17793:1 17840:3 17859:1 17862:2 17870:1 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18171:3 18191:2 18196:1 18203:1 18221:1 18230:1 18265:4 18283:2 18288:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:2 18805:1 18839:1 18859:3 18903:2 18904:3 18933:1 18939:2 18956:1 18960:1 18982:3 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:4 19287:1 19291:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19478:1 19510:1 19518:1 19545:1 19582:1 19589:2 19605:5 19621:1 19627:1 19684:1 19688:1 19705:1 19727:1 19733:1 19740:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19906:1 19934:1 19945:1694 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:3 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20342:1 20410:1 20413:1 20423:2 20442:1 20445:1 20458:1 20470:1 20472:1 20495:1 20502:2 20511:1 20521:1 20533:1 20546:1 20556:3 20569:1 20591:1 20601:1 20616:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:4 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:2 21021:1 21024:1 21037:1 21044:1 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21185:1 21188:3 21192:2 21232:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:1 21315:1 21325:1 21355:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21604:1 21607:2 21627:1 21633:1 21641:4 21652:2 21656:1 21680:1 21682:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21779:1 21792:1 21839:1 21842:1 21872:2 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22099:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22249:2 22265:1 22280:2 22308:1 22309:1 22318:2 22321:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22506:1 22512:2 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22605:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22687:1 22712:1 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:2 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22933:2 22948:1 22958:1 22962:2 22976:1 22981:2 22986:1 22997:1 23046:1 23057:1 23071:2 23073:2 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23219:1 23233:3 23235:1 23250:1 23285:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23368:1 23376:2 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23474:2 23476:1 23485:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:5 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23902:1 23910:5 23924:1 23933:1 23948:4 23963:2 23982:8 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:2 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:1 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:2 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:2 25162:1 25188:3 25197:1 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25419:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:1 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25907:3 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:3 26042:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26417:2 26418:1 26424:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:1 26553:2 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26593:2 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:2 26755:1 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:3 27008:1 27019:2 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27486:2 27487:1 27521:1 27524:1 27547:1 27556:1 27558:5 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:3 27843:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28066:1 28087:1 28088:1 28091:1 28099:1 28178:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28378:1 28383:1 28385:1 28398:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:1 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28804:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:2 29303:1 29319:4 29372:2 29388:1 29392:1 29396:2 29416:1 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:2 29472:1 29475:1 29488:2 29490:1 29493:1 29496:2 29498:4 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29603:1 29622:1 29626:4 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29823:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30212:1 30241:1 30254:1 30256:1 30261:1 30297:1 30298:2 30300:1 30312:1 30321:16 30330:3 30347:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30480:3 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30813:1 30818:1 30819:2 30833:2 30846:1 30852:1 30877:2 30880:1 30884:2 30887:2 30890:5 30891:1 30939:1 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:3 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:3 31662:1 31665:1 31668:1 31672:4 31678:1 31718:5 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:3 273:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 464:2 475:2 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:2 643:4 672:7 708:1 710:1 724:4 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:5 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1048:1 1055:4 1059:2 1098:1 1100:3 1111:1 1118:1 1119:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:1 1227:1 1250:3 1262:1 1273:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:1 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:2 1644:1 1652:1 1659:3 1680:1 1683:1 1701:3 1704:1 1721:2 1726:1 1729:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 2019:1 2028:1 2031:2 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:3 2222:1 2236:1 2238:1 2239:1 2242:2 2288:1 2301:1 2309:1 2324:1 2332:1 2368:4 2394:1 2414:1 2442:1 2454:1 2463:1 2499:1 2500:1 2502:1 2504:5 2506:1 2509:1 2512:3 2514:1 2521:1 2522:1 2527:2 2532:7 2535:3 2538:3 2540:1 2541:2 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2640:1 2681:2 2682:1 2696:1 2743:1 2782:1 2794:1 2809:1 2859:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3129:1 3133:1 3138:2 3148:7 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3381:1 3392:1 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:1 3565:1 3578:5 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:1 3926:1 3935:1 3948:1 3957:1 3983:1 3985:2 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4064:1 4066:1 4081:1 4082:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4244:1 4250:1 4261:1 4278:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4372:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:5 4608:1 4616:1 4628:1 4646:1 4658:1 4675:2 4695:1 4702:1 4716:1 4721:5 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:2 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:1 4977:1 4979:2 4987:1 5032:1 5043:2 5069:2 5078:2 5105:1 5111:3 5121:1 5123:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5209:1 5210:1 5218:1 5278:3 5299:1 5303:14 5315:1 5327:1 5330:1 5334:1 5375:1 5431:3 5447:6 5448:6 5451:1 5456:1 5457:1 5459:1 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5645:1 5649:4 5683:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:2 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:1 6183:2 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6256:1 6288:1 6319:1 6323:1 6370:1 6384:1 6387:4 6396:1 6417:2 6465:3 6512:1 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:1 6670:2 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6853:2 6857:6 6889:1 6901:5 6903:2 6906:1 6907:1 6908:3 6909:1 6911:1 6914:2 6917:2 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:2 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7191:1 7194:1 7204:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:6 7435:1 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7547:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7665:1 7668:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7782:1 7783:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:1 7963:2 7971:4 8009:1 8029:1 8070:5 8104:5 8107:2 8121:1 8148:1 8187:1 8194:2 8207:1 8254:1 8317:2 8340:10 8341:4 8361:1 8362:3 8392:1 8393:1 8401:32 8408:1 8423:1 8427:7 8429:5 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8947:1 8962:1 8964:10 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:5 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9361:2 9362:1 9363:1 9379:1 9383:1 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:4 9485:1 9489:1 9504:1 9509:1 9512:1 9519:3 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9623:1 9661:1 9665:1 9666:1 9672:1 9683:1 9695:2 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:3 9819:4 9828:1 9842:1 9873:1 9885:1 9886:1 9931:2 9945:1 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10295:1 10300:2 10308:1 10311:1 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:1 10720:1 10736:1 10763:2 10776:1 10786:1 10795:1 10808:1 10820:1 10835:3 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:1 10927:1 10963:1 10964:1 10966:1 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11152:1 11169:1 11171:1 11180:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:5 11365:1 11373:1 11388:1 11396:2 11423:1 11444:1 11466:1 11505:2 11516:1 11529:1 11534:3 11539:2 11540:2 11548:1 11550:1 11586:1 11591:1 11602:2 11617:2 11633:4 11634:1 11647:1 11653:1 11658:1 11672:1 11721:2 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:3 11781:4 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:1 12108:2 12144:1 12147:4 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:3 12274:1 12279:2 12304:1 12309:1 12311:1 12325:2 12334:1 12353:2 12367:1 12368:1 12371:1 12393:1 12397:1 12414:1 12431:1 12455:1 12488:2 12490:2 12527:2 12535:2 12539:1 12542:1 12546:1 12551:1 12555:4 12556:1 12562:2 12616:1 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:1 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14123:1 14124:1 14156:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:2 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:1 14386:1 14416:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:2 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:4 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15757:1 15761:1 15772:1 15790:1 15791:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:1 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16225:1 16233:1 16262:1 16306:1 16328:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:2 16388:1 16401:1 16407:1 16419:1 16429:2 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16552:1 16553:1 16578:1 16585:1 16594:1 16609:1 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16677:3 16681:1 16693:1 16695:1 16707:1 16745:1 16762:3 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:3 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:1 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:3 17464:1 17469:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18140:1 18171:3 18191:2 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:4 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:2 18805:1 18839:1 18859:3 18903:2 18904:3 18933:1 18939:2 18956:1 18960:1 18982:3 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19173:4 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:4 19287:1 19291:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19409:1 19410:1 19420:1 19431:2 19432:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:2 19605:5 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19934:1 19945:1752 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:3 20082:1 20125:1 20147:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20290:2 20342:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20470:1 20472:1 20495:1 20502:3 20511:1 20521:1 20533:1 20546:1 20556:3 20569:1 20591:1 20601:1 20616:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:5 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:2 21021:1 21024:1 21037:1 21044:1 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21185:1 21188:3 21192:2 21232:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:1 21355:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:2 21627:1 21633:1 21641:4 21652:2 21656:1 21680:1 21682:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21779:1 21792:1 21839:1 21842:1 21872:2 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:3 21950:1 21958:1 21960:1 21968:1 21969:1 21973:1 21995:1 22010:1 22062:1 22099:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22249:2 22265:1 22280:2 22308:1 22309:2 22318:2 22321:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22506:1 22512:2 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22605:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22687:1 22712:1 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:2 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22918:2 22920:1 22921:3 22933:2 22948:1 22958:1 22962:2 22976:1 22981:2 22986:1 22997:1 23046:1 23057:1 23071:2 23073:2 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23219:1 23233:3 23235:1 23250:1 23285:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:4 23345:1 23355:2 23368:1 23376:2 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23474:2 23476:1 23481:1 23485:1 23486:1 23488:1 23491:2 23494:1 23498:2 23499:5 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:1 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23875:1 23889:1 23895:1 23902:1 23910:5 23924:1 23933:1 23948:4 23963:2 23982:8 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:3 24530:1 24576:1 24582:2 24585:2 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:1 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:2 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:2 25162:1 25188:3 25197:2 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25419:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:1 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25894:1 25905:1 25907:3 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:3 26042:1 26052:1 26074:1 26077:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26417:2 26418:1 26424:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:2 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26593:2 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:2 26755:1 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:3 27008:1 27019:2 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:5 27565:1 27573:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:3 27843:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28066:1 28087:1 28088:1 28091:1 28099:1 28178:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28378:1 28383:1 28385:1 28398:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:1 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:3 28776:1 28779:1 28795:1 28799:1 28801:1 28804:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29052:1 29070:1 29073:1 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:2 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29416:1 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:2 29472:1 29475:1 29488:2 29490:1 29493:1 29496:2 29498:4 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:3 29594:1 29603:1 29622:1 29626:5 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29823:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:1 30131:1 30133:1 30156:1 30200:2 30208:1 30212:1 30241:1 30254:1 30256:1 30261:1 30297:1 30298:2 30300:1 30312:1 30321:17 30330:3 30347:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30480:3 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:1 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30813:1 30818:1 30819:2 30833:2 30846:1 30852:1 30877:2 30880:1 30884:2 30887:2 30890:5 30891:1 30939:1 30940:1 30953:1 30954:1 30958:2 30974:3 31033:3 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:1 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:3 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:3 31654:3 31662:1 31665:1 31668:1 31672:5 31678:1 31718:5 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 463:1 464:2 475:2 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:2 643:4 672:8 708:1 710:1 724:5 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:5 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1048:1 1055:4 1059:2 1098:1 1100:3 1111:1 1118:1 1119:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:1 1227:1 1250:3 1262:1 1273:1 1284:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:2 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:2 1644:1 1652:1 1659:3 1680:1 1683:1 1701:4 1704:1 1721:2 1726:1 1729:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:4 2222:1 2236:1 2238:1 2239:1 2242:2 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:5 2394:1 2414:1 2442:1 2454:1 2463:1 2499:1 2500:1 2502:1 2504:6 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:7 2535:3 2538:3 2540:1 2541:2 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2615:1 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2933:1 2937:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3129:1 3133:1 3138:2 3148:7 3173:2 3175:2 3184:1 3188:1 3199:3 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3348:1 3381:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3839:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:1 3926:1 3935:1 3948:1 3957:1 3983:1 3985:2 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4064:1 4066:1 4081:1 4082:1 4101:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4244:1 4250:1 4261:1 4278:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4372:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:5 4608:1 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:3 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:1 4977:1 4979:2 4987:1 5032:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5209:1 5210:1 5218:1 5278:3 5299:1 5303:14 5305:1 5315:1 5327:1 5330:1 5334:1 5375:1 5431:3 5447:7 5448:6 5451:1 5456:1 5457:1 5459:2 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5592:1 5645:1 5649:4 5683:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:3 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:1 6183:3 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6256:1 6288:1 6319:1 6323:1 6370:1 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:1 6670:2 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6853:2 6857:7 6889:1 6901:5 6903:2 6906:1 6907:1 6908:4 6909:1 6911:2 6914:2 6917:2 6919:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:3 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7191:1 7194:1 7204:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:6 7435:2 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7645:1 7665:1 7668:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7782:1 7783:1 7809:3 7810:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:1 7963:3 7971:4 8009:1 8029:1 8070:5 8104:5 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:4 8361:1 8362:3 8392:1 8393:1 8401:34 8408:1 8423:1 8427:7 8429:5 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:4 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:12 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:6 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9357:1 9361:2 9362:1 9363:1 9379:1 9383:1 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9661:1 9665:1 9666:1 9672:1 9683:1 9695:2 9696:1 9699:1 9731:1 9750:1 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:4 9819:4 9828:1 9842:1 9873:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10736:1 10763:2 10776:1 10784:1 10786:1 10795:1 10808:1 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:1 10927:1 10963:1 10964:2 10966:1 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11152:1 11169:1 11171:1 11180:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:3 11326:1 11357:5 11365:1 11373:1 11388:1 11396:2 11423:1 11428:1 11444:1 11466:1 11505:2 11514:1 11516:1 11529:1 11534:3 11539:2 11540:3 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11647:1 11653:1 11658:1 11672:1 11721:2 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:2 12108:2 12120:1 12144:1 12147:4 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:3 12274:1 12279:2 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:1 12455:1 12488:4 12490:2 12527:2 12535:2 12539:1 12542:1 12546:1 12551:1 12555:4 12556:1 12562:2 12616:2 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14123:1 14124:1 14156:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:1 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:2 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15757:1 15761:1 15772:1 15790:1 15791:2 15792:1 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:2 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16225:1 16233:1 16262:1 16306:1 16328:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:2 16388:1 16401:2 16407:1 16419:1 16429:2 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16552:1 16553:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16677:3 16681:1 16693:1 16695:2 16707:1 16745:1 16762:3 16778:1 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:1 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:2 17470:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18115:1 18140:1 18171:4 18178:1 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18699:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:2 18805:1 18839:1 18859:4 18903:2 18904:3 18933:1 18939:2 18956:2 18960:1 18982:4 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19158:1 19164:1 19173:5 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:5 19287:1 19291:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:2 19605:5 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:1817 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:3 20082:1 20125:1 20147:1 20169:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20287:1 20290:2 20332:1 20342:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20470:1 20472:1 20495:1 20502:3 20511:1 20521:1 20533:1 20546:1 20556:3 20569:1 20591:1 20601:1 20616:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:5 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21185:1 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:1 21355:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:2 21627:1 21633:1 21641:4 21652:2 21656:1 21661:1 21680:1 21682:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:4 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22058:1 22062:1 22099:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22249:2 22265:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:1 22399:2 22408:1 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22506:1 22512:2 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22687:1 22712:1 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:2 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22948:1 22958:1 22962:2 22964:1 22976:1 22981:2 22986:1 22997:1 23046:1 23057:1 23071:2 23073:2 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23219:1 23233:3 23235:1 23250:1 23285:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23474:2 23476:1 23478:1 23481:1 23485:1 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:1 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23691:1 23709:2 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:5 23924:1 23933:1 23948:4 23963:2 23982:8 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24463:1 24465:1 24471:1 24487:1 24502:1 24507:4 24530:1 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25091:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25188:3 25197:2 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25419:1 25436:1 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25842:1 25856:1 25894:1 25905:1 25907:4 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:3 26042:1 26052:1 26074:1 26077:1 26078:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:1 26413:1 26416:2 26417:2 26418:1 26424:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26593:2 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:2 26755:1 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:2 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27267:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:5 27565:1 27573:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28066:1 28087:1 28088:1 28091:1 28099:1 28178:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28378:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:1 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:4 28776:1 28779:1 28795:1 28799:1 28801:1 28804:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:1 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:2 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:2 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:2 29498:4 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:4 29594:1 29603:1 29622:1 29626:6 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29823:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:1 30200:2 30208:1 30212:1 30241:2 30254:1 30256:1 30261:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:18 30330:3 30347:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:3 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30813:1 30818:1 30819:2 30833:2 30846:1 30852:1 30877:2 30880:1 30884:2 30887:2 30890:5 30891:1 30939:1 30940:1 30953:1 30954:1 30958:2 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:1 31341:1 31347:3 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:2 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:3 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:6 31678:1 31718:5 31722:1 31726:2 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 463:1 464:2 475:2 511:1 523:1 526:1 560:1 601:1 611:1 624:2 631:2 643:4 672:8 708:1 710:1 724:5 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:5 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1048:1 1055:4 1059:2 1098:1 1100:3 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:1 1227:1 1250:3 1262:1 1273:1 1284:1 1285:1 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:2 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:2 1644:1 1652:1 1659:3 1680:1 1683:1 1701:4 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2236:1 2238:1 2239:1 2242:2 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:5 2394:1 2414:1 2442:1 2454:1 2463:1 2499:1 2500:1 2502:1 2504:8 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:7 2535:3 2538:3 2540:1 2541:3 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:1 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3129:1 3133:1 3138:2 3148:8 3173:2 3175:2 3184:1 3188:1 3199:4 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3348:1 3381:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3839:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:1 3926:1 3935:1 3948:1 3957:1 3983:1 3985:3 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:1 4261:1 4278:1 4285:2 4292:1 4293:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4372:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:2 4602:1 4603:1 4606:5 4608:1 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:3 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:1 4977:1 4979:2 4987:1 5032:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5194:1 5197:1 5209:1 5210:1 5218:1 5278:3 5299:1 5303:15 5305:1 5315:1 5327:1 5330:1 5334:1 5375:1 5431:4 5447:7 5448:6 5451:1 5456:1 5457:1 5459:2 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5592:1 5645:1 5649:4 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:1 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6256:1 6288:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:1 6714:1 6719:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6853:2 6857:8 6889:1 6901:5 6903:2 6906:1 6907:1 6908:4 6909:2 6911:2 6914:2 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:3 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7191:1 7194:1 7204:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:7 7435:2 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7665:1 7668:1 7675:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7782:1 7783:1 7809:3 7810:1 7818:1 7836:1 7837:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:1 7963:3 7971:4 8009:1 8029:1 8070:5 8104:5 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:4 8361:1 8362:3 8392:1 8393:1 8401:37 8408:1 8423:1 8427:8 8429:6 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:1 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:12 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9357:2 9361:2 9362:1 9363:1 9379:1 9383:1 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9699:1 9731:1 9750:2 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:4 9819:4 9828:1 9842:1 9873:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10795:1 10808:1 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:1 10927:1 10963:1 10964:2 10966:1 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11152:1 11169:1 11171:1 11180:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:5 11365:2 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11466:1 11505:2 11514:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:2 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11974:1 11995:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:2 12108:2 12120:1 12144:1 12147:4 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12241:1 12244:3 12274:1 12279:2 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:1 12455:1 12488:4 12490:2 12527:2 12535:2 12539:1 12542:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:2 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13429:2 13430:1 13448:1 13485:1 13508:1 13532:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14123:1 14124:1 14156:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:1 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:2 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15757:1 15761:1 15772:1 15790:1 15791:2 15792:1 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:2 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16225:1 16233:1 16262:1 16306:1 16328:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:2 16388:1 16401:2 16407:1 16419:1 16429:2 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16677:3 16681:1 16693:1 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:2 17470:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18699:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:2 18805:1 18839:1 18859:4 18881:1 18903:2 18904:3 18933:1 18939:2 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19138:1 19158:1 19164:1 19173:5 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:2 19605:5 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:1845 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:3 20082:1 20125:1 20147:1 20169:1 20172:1 20178:1 20179:1 20229:1 20235:1 20239:1 20287:2 20290:2 20332:1 20342:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20521:1 20533:1 20546:1 20556:3 20569:1 20591:1 20601:1 20616:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20830:1 20850:5 20903:6 20907:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:1 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:1 21355:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:1 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21633:1 21641:4 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:4 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22058:1 22062:1 22099:1 22105:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:2 22408:1 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22687:1 22712:1 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:2 22781:1 22785:1 22793:1 22801:1 22803:1 22814:1 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22948:1 22952:1 22958:1 22962:2 22964:1 22976:1 22981:2 22984:1 22986:1 22997:1 23046:1 23057:1 23071:2 23073:2 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23219:1 23233:3 23235:1 23250:1 23285:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23691:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:5 23924:1 23933:1 23948:4 23963:2 23982:8 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24530:1 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24647:1 24666:1 24671:2 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25188:3 25197:2 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25842:1 25856:1 25894:1 25905:1 25907:4 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:3 26042:1 26052:1 26074:1 26077:1 26078:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:3 26593:2 26604:1 26619:1 26649:1 26660:1 26690:2 26708:1 26719:2 26755:1 26756:1 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:2 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:1 27235:1 27237:1 27243:1 27257:1 27267:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:5 27565:1 27573:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28099:1 28178:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:1 28310:1 28364:1 28375:1 28378:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:1 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:4 28776:1 28779:1 28795:1 28799:1 28801:1 28804:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:1 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:2 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:2 29498:4 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:4 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29823:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 30010:1 30019:1 30024:1 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:1 30200:2 30208:1 30212:1 30241:2 30254:1 30256:1 30261:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:19 30330:3 30347:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:3 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30813:1 30818:1 30819:2 30833:2 30846:1 30852:1 30877:2 30880:1 30884:2 30887:2 30890:5 30891:1 30939:1 30940:1 30953:1 30954:1 30958:2 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:1 31190:1 31206:1 31210:3 31222:1 31231:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:1 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:2 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:3 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:2 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:2 445:2 463:1 464:2 475:2 511:1 523:1 526:1 533:1 560:1 601:1 611:1 624:2 631:2 643:4 672:8 708:1 710:1 724:5 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:5 960:2 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:4 1059:2 1098:1 1100:3 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:1 1227:1 1250:4 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:3 1376:1 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:3 1644:1 1652:1 1659:3 1680:1 1683:1 1701:4 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:1 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:2 2116:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2236:1 2238:1 2239:1 2242:2 2252:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:5 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:1 2500:1 2502:1 2504:8 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:7 2535:3 2538:3 2540:1 2541:3 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3129:1 3133:1 3138:2 3148:8 3159:1 3173:2 3175:2 3184:1 3188:1 3197:1 3199:4 3207:1 3220:1 3242:1 3254:1 3257:1 3258:1 3261:1 3272:1 3303:1 3335:1 3348:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3817:1 3839:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:1 3926:1 3935:1 3948:1 3957:1 3983:1 3985:3 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:1 4261:1 4278:1 4285:2 4292:1 4293:1 4310:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4372:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:1 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:1 4799:1 4835:1 4839:1 4848:3 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:2 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:1 5197:1 5209:1 5210:1 5218:1 5262:1 5278:3 5299:1 5303:16 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5431:4 5447:7 5448:6 5451:1 5456:1 5457:1 5459:2 5463:2 5465:2 5471:1 5473:1 5478:7 5479:1 5513:1 5551:2 5588:1 5592:1 5645:1 5649:4 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6256:1 6288:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6853:2 6857:8 6889:1 6901:5 6903:2 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:3 7083:2 7093:1 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:7 7435:2 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7663:1 7665:1 7668:1 7675:1 7685:1 7686:1 7691:1 7699:1 7702:1 7703:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7782:1 7783:1 7809:3 7810:1 7818:1 7836:1 7837:2 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:1 7963:3 7971:4 8009:1 8029:1 8033:1 8055:1 8070:5 8104:5 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8361:1 8362:3 8392:1 8393:1 8401:37 8408:1 8423:1 8427:8 8429:6 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8594:1 8598:2 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8721:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:12 8987:1 9020:1 9027:1 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:1 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9699:1 9731:1 9750:2 9751:2 9760:1 9771:2 9773:1 9775:1 9788:1 9798:1 9803:1 9818:4 9819:4 9828:1 9842:1 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10020:2 10072:1 10074:1 10088:1 10090:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10795:1 10808:1 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:2 10927:1 10963:1 10964:2 10966:1 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11152:1 11169:1 11171:1 11180:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:5 11365:2 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11974:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:2 12108:2 12120:1 12144:1 12147:4 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:2 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:1 12455:1 12485:1 12488:4 12490:2 12527:2 12530:1 12535:2 12539:1 12542:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:2 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:1 13429:2 13430:1 13448:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:2 14114:2 14123:1 14124:1 14156:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:2 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15757:1 15761:1 15772:1 15790:1 15791:2 15792:1 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:2 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16225:1 16233:1 16234:1 16262:1 16306:1 16328:1 16332:1 16333:1 16345:1 16351:1 16365:1 16380:2 16383:1 16388:1 16401:2 16407:1 16419:1 16429:2 16433:1 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:1 16693:1 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:2 17470:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:2 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18699:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:2 18805:1 18839:1 18859:4 18881:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:5 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:2 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:1 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:1963 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:3 20082:1 20125:1 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20521:1 20533:1 20546:1 20556:3 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20812:1 20830:1 20850:5 20903:6 20907:1 20915:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:1 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:1 21355:1 21358:1 21374:1 21375:1 21381:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21629:1 21633:1 21641:4 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:4 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:1 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22687:1 22712:1 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22948:1 22952:1 22955:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:1 22997:1 23046:1 23057:1 23071:2 23073:3 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23219:1 23233:3 23235:1 23250:1 23285:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23655:1 23691:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:5 23924:1 23933:1 23948:4 23963:2 23982:8 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24210:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24530:2 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24643:1 24647:1 24666:1 24671:2 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:1 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25188:3 25197:2 25207:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25842:1 25856:1 25894:1 25905:1 25907:4 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:4 26042:1 26052:1 26074:1 26077:1 26078:1 26106:1 26125:1 26144:3 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:1 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:2 26708:1 26719:2 26755:1 26756:1 26788:4 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:2 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:2 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:2 27235:1 27237:1 27243:1 27257:1 27267:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:1 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:5 27565:1 27573:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28099:1 28178:1 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:2 28310:1 28364:1 28375:1 28378:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:1 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:4 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:1 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:1 29218:1 29251:1 29257:1 29274:1 29279:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:2 29498:5 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:4 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:1 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29823:1 29826:1 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 30010:1 30019:1 30024:2 30030:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:1 30200:2 30208:1 30212:1 30241:2 30254:1 30256:1 30261:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:19 30328:1 30330:3 30347:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:4 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30788:1 30809:1 30810:2 30813:1 30818:1 30819:2 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30939:1 30940:1 30953:1 30954:1 30958:2 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:2 31190:1 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:2 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:2 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:3 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 509:1 511:1 523:1 526:1 533:1 560:1 601:1 611:1 623:1 624:2 631:2 643:4 672:8 708:1 710:1 724:5 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:5 960:2 961:1 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:5 1059:2 1072:1 1098:1 1100:3 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:1 1227:1 1250:4 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:3 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:4 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1680:1 1683:1 1701:5 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:2 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2236:1 2238:1 2239:1 2242:2 2252:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:5 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:1 2500:1 2502:1 2504:8 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:8 2535:3 2538:3 2540:1 2541:4 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3129:1 3133:1 3138:2 3148:8 3159:1 3173:2 3175:2 3184:1 3188:1 3197:1 3199:4 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:1 3263:1 3272:1 3303:1 3335:1 3348:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3758:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:4 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:2 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:1 4261:1 4278:1 4285:2 4292:1 4293:1 4310:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4372:1 4376:1 4384:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:2 4799:1 4835:1 4839:1 4848:3 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:2 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:1 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:17 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5431:4 5447:7 5448:6 5451:1 5456:1 5457:2 5459:2 5463:2 5465:2 5471:1 5473:1 5477:1 5478:7 5479:1 5482:1 5513:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:4 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6189:1 6199:1 6220:1 6230:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:3 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6853:2 6857:8 6889:1 6901:5 6903:2 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:2 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7161:1 7163:1 7166:1 7173:1 7177:1 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:7 7433:1 7435:2 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7663:1 7665:1 7668:1 7675:1 7685:1 7686:1 7691:1 7699:1 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7836:1 7837:2 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:6 8104:5 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8361:1 8362:3 8392:1 8393:1 8401:39 8408:1 8423:1 8427:8 8429:6 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:1 8530:3 8557:1 8594:1 8598:2 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:12 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:1 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:1 9699:1 9731:1 9750:2 9751:2 9760:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:4 9819:4 9828:2 9842:2 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10019:1 10020:2 10072:1 10074:1 10087:2 10088:1 10090:1 10096:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:1 10808:1 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:2 10927:1 10963:2 10964:2 10966:1 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:1 11109:1 11123:2 11136:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:6 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:3 11772:3 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:2 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:2 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12455:1 12485:1 12488:4 12490:2 12527:2 12530:1 12535:2 12539:2 12542:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:2 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:1 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:1 13429:2 13430:1 13448:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:1 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:2 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15570:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15772:1 15790:1 15791:2 15792:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:2 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16177:1 16225:1 16233:1 16234:1 16243:1 16262:1 16306:1 16312:1 16328:1 16332:1 16333:1 16336:1 16345:1 16351:1 16365:1 16380:2 16383:1 16388:1 16401:2 16407:1 16419:1 16429:2 16433:1 16463:1 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:1 16693:2 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:1 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:2 17470:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18699:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:2 18805:1 18823:1 18839:1 18859:4 18881:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:5 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:2033 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20043:1 20065:3 20082:1 20125:1 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20521:1 20533:1 20546:1 20551:1 20556:3 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20786:1 20791:3 20805:1 20807:1 20812:1 20830:1 20850:5 20903:6 20907:1 20915:1 20916:1 20941:1 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:1 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:1 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:2 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21629:1 21633:1 21641:4 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:4 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22671:1 22687:1 22712:2 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:1 22997:1 23046:1 23057:1 23064:1 23071:2 23073:3 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23190:2 23213:1 23219:1 23233:3 23235:1 23250:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:1 23639:1 23640:1 23642:1 23644:2 23651:1 23655:1 23691:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:6 23924:2 23933:1 23948:4 23963:2 23982:8 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24210:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24530:2 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25188:3 25197:2 25207:1 25215:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25308:3 25351:1 25352:1 25356:1 25373:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25842:1 25856:1 25894:1 25905:1 25907:5 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:4 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26339:2 26346:1 26361:3 26366:2 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26708:1 26719:2 26755:1 26756:1 26788:5 26797:2 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:2 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:2 27235:1 27237:1 27243:1 27257:1 27267:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:6 27565:1 27573:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28099:1 28178:2 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:2 28310:1 28364:1 28375:1 28378:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:1 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:2 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:2 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:2 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:2 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:1 29446:1 29459:2 29460:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:2 29498:5 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:4 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29738:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:1 30200:3 30208:1 30212:1 30241:2 30254:1 30256:1 30261:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:19 30328:1 30330:3 30347:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:4 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:2 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:2 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:3 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 509:1 511:1 523:1 526:1 533:1 560:1 566:1 601:1 611:1 623:1 624:2 631:2 643:4 672:8 708:1 710:1 724:5 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 952:1 953:6 960:2 961:1 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:5 1059:2 1072:1 1098:1 1100:3 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:2 1227:1 1250:5 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:4 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1522:1 1531:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:5 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1680:1 1683:1 1701:5 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:3 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1922:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2236:1 2238:1 2239:1 2242:2 2252:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:6 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:1 2500:1 2502:1 2504:8 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:8 2535:3 2538:3 2540:1 2541:4 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2620:1 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3129:1 3133:1 3138:2 3148:8 3159:1 3173:2 3175:2 3184:1 3185:1 3188:1 3197:1 3199:4 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:2 3263:1 3272:1 3303:1 3335:1 3348:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3757:1 3758:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:4 3987:1 3997:2 4004:1 4009:1 4028:1 4033:1 4054:2 4057:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4139:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:2 4261:1 4278:1 4285:2 4292:1 4293:1 4310:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4370:1 4372:1 4376:1 4384:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:2 4799:1 4835:1 4839:1 4848:3 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:2 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:2 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:18 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5427:1 5431:4 5447:7 5448:6 5449:1 5451:1 5456:1 5457:2 5459:2 5463:3 5465:2 5471:1 5473:1 5477:1 5478:7 5479:1 5482:1 5513:1 5548:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:4 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6189:1 6198:1 6199:1 6220:1 6230:1 6235:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:4 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6746:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6828:1 6853:2 6857:8 6889:1 6901:5 6903:3 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6915:1 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:3 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7155:1 7161:1 7163:1 7166:1 7173:1 7177:1 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:7 7433:1 7435:2 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7470:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7654:1 7663:1 7665:1 7668:1 7675:1 7685:1 7686:1 7691:1 7699:2 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7820:1 7836:1 7837:2 7842:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:6 8104:5 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8358:1 8361:1 8362:3 8392:1 8393:1 8401:39 8408:1 8423:1 8427:8 8429:6 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:2 8530:3 8557:1 8588:1 8594:1 8598:2 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:13 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9261:1 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:1 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:1 9699:1 9731:1 9750:2 9751:2 9760:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:5 9819:4 9828:2 9842:2 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10019:1 10020:3 10072:1 10074:1 10077:1 10087:2 10088:1 10090:1 10096:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:1 10808:2 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:2 10916:2 10927:1 10963:2 10964:2 10966:1 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:2 11109:1 11123:4 11136:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11215:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:7 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11454:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:4 11772:3 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:2 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:3 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12455:1 12485:1 12488:4 12490:2 12527:2 12530:1 12535:2 12539:2 12542:1 12545:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:3 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12790:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:2 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:1 13429:3 13430:1 13432:1 13448:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13879:1 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14184:1 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14708:1 14730:1 14748:2 14771:1 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:2 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:3 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15305:1 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15555:1 15570:1 15574:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15772:1 15790:1 15791:2 15792:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:3 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16177:1 16225:1 16233:1 16234:1 16243:1 16262:1 16306:1 16311:1 16312:1 16328:1 16332:1 16333:1 16336:1 16345:1 16351:1 16365:1 16380:2 16383:1 16388:1 16401:2 16407:1 16419:1 16429:2 16433:1 16463:1 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16536:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:1 16693:2 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16862:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:2 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:2 17470:1 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17631:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18415:1 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18699:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:3 18805:1 18823:1 18839:1 18859:4 18881:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19094:1 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:5 19179:1 19233:2 19236:2 19247:3 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19445:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:2095 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20029:1 20043:1 20065:3 20082:1 20125:2 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20519:1 20521:1 20533:1 20546:1 20551:1 20556:3 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:2 20733:1 20754:1 20769:1 20786:1 20791:3 20805:1 20807:1 20812:1 20830:1 20850:5 20903:6 20907:1 20908:1 20915:1 20916:1 20941:2 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:2 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:1 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:5 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21629:1 21633:1 21641:4 21643:1 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:5 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22171:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22548:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22603:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22671:1 22687:1 22690:1 22712:2 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:2 22997:1 23007:1 23046:1 23057:1 23064:1 23071:2 23073:3 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23180:1 23181:1 23190:2 23213:1 23219:1 23228:1 23233:3 23235:1 23250:1 23260:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:2 23639:1 23640:1 23642:1 23644:3 23651:1 23655:1 23691:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23857:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:6 23924:2 23933:1 23948:4 23956:1 23963:2 23982:8 23983:1 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24210:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24279:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24530:2 24552:1 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24985:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25050:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25188:3 25197:2 25207:1 25215:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25295:1 25298:1 25308:3 25351:1 25352:1 25356:1 25373:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25842:1 25856:1 25894:1 25905:1 25907:5 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:5 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26305:1 26339:2 26346:1 26361:3 26366:2 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26708:1 26716:1 26719:2 26755:1 26756:1 26788:5 26797:2 26862:1 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:3 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:3 27218:2 27228:1 27230:1 27234:2 27235:2 27237:1 27243:1 27257:1 27267:1 27268:2 27272:1 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27493:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:6 27565:1 27573:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28094:1 28099:1 28167:1 28178:2 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:2 28310:1 28364:1 28375:1 28378:1 28381:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:2 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28647:1 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28761:1 28766:3 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:3 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:3 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:3 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:2 29446:1 29459:2 29460:1 29466:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:3 29498:6 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:5 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29732:1 29738:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:2 30200:3 30208:1 30212:1 30215:1 30241:2 30254:1 30256:1 30261:1 30285:1 30296:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:19 30328:1 30330:3 30347:1 30352:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:5 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30965:1 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:1 31413:1 31419:1 31427:1 31437:1 31440:2 31441:1 31460:2 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:3 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:4 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 509:1 511:1 523:1 526:1 533:1 560:1 566:1 601:1 611:1 623:1 624:2 631:2 643:4 672:8 708:1 710:1 724:5 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 945:1 952:1 953:6 960:2 961:1 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:5 1059:2 1072:1 1098:1 1100:3 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:2 1227:1 1250:5 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1339:1 1344:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:5 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1498:1 1522:1 1531:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:5 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1680:1 1683:1 1701:5 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:3 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1922:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2236:1 2238:1 2239:1 2242:2 2252:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:7 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:1 2500:1 2502:1 2504:8 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:8 2535:3 2538:3 2540:1 2541:4 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2620:1 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3128:1 3129:1 3133:1 3138:2 3148:8 3159:1 3173:2 3175:2 3184:1 3185:1 3188:1 3197:1 3199:4 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:2 3263:1 3272:1 3303:1 3335:1 3348:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3757:1 3758:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3879:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:4 3987:1 3997:2 4004:1 4009:1 4028:2 4033:1 4054:2 4057:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4139:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:2 4261:1 4278:1 4285:2 4292:1 4293:1 4310:1 4323:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4370:1 4372:1 4376:1 4384:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:2 4799:1 4835:1 4839:1 4848:3 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:3 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:2 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:18 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5427:1 5431:4 5447:7 5448:6 5449:1 5451:1 5456:2 5457:2 5459:2 5463:3 5465:2 5471:1 5473:1 5477:2 5478:7 5479:1 5482:1 5513:1 5548:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:4 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6189:1 6198:1 6199:1 6220:1 6230:1 6235:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:4 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6746:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6828:1 6853:2 6857:8 6889:1 6901:5 6903:3 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6915:1 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:3 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7155:1 7161:1 7163:1 7166:1 7173:1 7177:2 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:7 7433:1 7435:2 7449:1 7450:1 7454:2 7463:5 7464:1 7465:2 7468:1 7470:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7654:1 7663:1 7665:1 7668:1 7675:1 7685:1 7686:1 7691:1 7699:2 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7820:1 7836:1 7837:2 7842:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:7 8104:5 8105:1 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8358:1 8361:1 8362:3 8392:1 8393:1 8401:39 8408:1 8423:1 8425:1 8427:8 8429:6 8439:1 8452:1 8453:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:2 8530:3 8557:1 8588:2 8594:1 8598:2 8608:1 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:15 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9261:2 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:1 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:1 9699:1 9731:1 9750:2 9751:2 9757:1 9760:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:5 9819:4 9828:2 9842:2 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10019:1 10020:3 10072:1 10074:1 10077:1 10087:2 10088:1 10090:1 10096:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:1 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10725:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:1 10808:2 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:3 10916:2 10927:1 10963:2 10964:2 10966:2 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:2 11109:1 11123:4 11136:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:1 11213:1 11215:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:7 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11454:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:4 11772:4 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:2 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:3 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12455:1 12485:1 12488:4 12490:2 12527:2 12530:1 12535:2 12539:2 12542:1 12545:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:3 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12790:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:2 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13111:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:1 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:1 13429:3 13430:1 13432:1 13448:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13879:1 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14168:1 14184:2 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14708:1 14730:1 14748:2 14771:2 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:2 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:3 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15305:1 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15555:1 15570:1 15574:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15772:1 15790:1 15791:2 15792:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:3 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16177:1 16225:1 16233:1 16234:1 16243:1 16262:1 16303:1 16306:1 16311:1 16312:1 16328:1 16332:1 16333:1 16336:1 16345:1 16351:1 16365:1 16372:1 16380:2 16383:1 16388:2 16401:2 16407:1 16419:1 16429:2 16433:1 16463:1 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16536:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:1 16693:2 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16787:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16862:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:2 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:3 17470:2 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17631:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18415:1 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18583:2 18622:1 18637:1 18665:1 18680:1 18699:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:3 18805:1 18823:1 18839:1 18859:4 18881:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19094:1 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:5 19179:1 19233:2 19236:2 19247:3 19256:1 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19325:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19445:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:2189 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20029:1 20043:1 20065:3 20082:1 20125:2 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20519:1 20521:1 20533:1 20546:1 20547:1 20551:1 20556:3 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:3 20733:1 20754:1 20769:1 20786:1 20791:3 20805:1 20807:1 20812:1 20830:1 20850:5 20903:6 20907:1 20908:1 20915:1 20916:1 20941:2 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:2 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:2 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:5 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21629:1 21633:1 21641:4 21643:1 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:3 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:6 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22171:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22548:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22603:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22671:1 22687:1 22690:1 22712:2 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:2 22997:1 23007:1 23046:1 23057:1 23064:1 23071:2 23073:3 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23161:1 23170:1 23174:1 23180:1 23181:1 23190:2 23213:1 23219:1 23228:1 23233:3 23235:1 23250:1 23260:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:2 23639:1 23640:1 23642:1 23644:3 23651:1 23655:1 23691:1 23699:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23857:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:6 23924:2 23933:1 23948:4 23956:1 23963:2 23982:8 23983:1 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:2 24160:1 24206:1 24210:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24279:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24530:2 24552:1 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24985:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25050:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25188:3 25197:2 25207:1 25215:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25295:1 25298:1 25308:3 25351:1 25352:2 25356:1 25373:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25839:1 25842:1 25856:1 25894:1 25905:1 25907:5 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:5 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26305:1 26339:2 26346:1 26361:3 26366:2 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26706:1 26708:1 26716:1 26719:2 26755:1 26756:1 26788:5 26797:2 26862:1 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:3 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:3 27218:3 27228:1 27230:1 27234:2 27235:2 27237:1 27243:1 27257:1 27267:1 27268:2 27272:2 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27493:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:6 27565:1 27573:1 27590:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28094:1 28099:1 28167:1 28178:2 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:2 28310:1 28364:1 28375:1 28378:1 28381:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:2 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28647:1 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28760:1 28761:1 28766:3 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:3 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:3 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:3 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29288:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:2 29446:1 29459:2 29460:1 29466:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:3 29498:6 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:5 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29732:1 29738:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:2 30200:3 30208:1 30212:1 30215:1 30241:2 30254:1 30256:1 30261:1 30285:1 30296:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:19 30328:1 30330:3 30347:1 30352:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:5 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30965:1 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:1 31413:1 31419:1 31423:1 31427:1 31437:1 31440:2 31441:1 31460:3 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:3 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:4 31733:1 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 509:1 511:1 523:1 526:1 533:1 560:1 566:1 601:1 611:1 623:1 624:2 631:2 643:4 660:1 672:8 708:1 710:1 724:6 749:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 945:1 952:1 953:6 960:2 961:1 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:5 1059:2 1072:1 1098:1 1100:3 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:2 1227:1 1250:5 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1339:1 1344:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:5 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1413:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1498:1 1522:1 1531:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:5 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1680:1 1683:1 1701:5 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:2 1801:2 1806:1 1818:1 1826:1 1832:1 1844:3 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1922:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2236:1 2238:1 2239:1 2242:2 2252:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:7 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:1 2500:1 2502:1 2504:8 2506:1 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:8 2535:3 2538:3 2540:1 2541:4 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2620:1 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3128:1 3129:1 3133:1 3138:2 3148:8 3159:1 3173:2 3175:2 3184:1 3185:1 3188:1 3197:1 3199:5 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:2 3263:1 3272:1 3303:1 3335:1 3348:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3748:2 3757:1 3758:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3879:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:4 3987:1 3997:2 4004:1 4009:1 4028:2 4033:1 4054:2 4057:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4139:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:2 4261:1 4278:1 4285:2 4292:1 4293:1 4310:1 4323:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4370:1 4372:1 4376:1 4384:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:1 4779:2 4799:1 4835:1 4839:1 4848:3 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:3 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:2 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:18 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5427:1 5431:4 5447:7 5448:6 5449:1 5451:1 5456:2 5457:2 5459:2 5463:3 5465:2 5471:1 5473:1 5477:2 5478:7 5479:1 5482:1 5513:1 5548:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:4 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6189:1 6198:1 6199:1 6220:1 6230:1 6235:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:4 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6746:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:7 6802:1 6807:1 6818:1 6828:1 6853:2 6857:8 6889:1 6901:5 6903:3 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6915:1 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:3 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7155:1 7161:1 7163:1 7166:1 7173:1 7177:2 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:1 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7424:1 7429:4 7432:7 7433:1 7435:2 7449:1 7450:1 7454:2 7457:1 7463:5 7464:1 7465:2 7468:1 7470:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7654:1 7663:1 7665:1 7668:1 7675:1 7685:1 7686:1 7691:1 7699:2 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7820:1 7836:1 7837:2 7841:1 7842:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:7 8104:5 8105:1 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8358:1 8361:1 8362:3 8392:1 8393:1 8401:39 8408:1 8423:1 8425:1 8427:8 8429:6 8439:1 8452:1 8453:1 8463:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:2 8530:3 8557:1 8588:2 8594:1 8598:2 8608:1 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:1 8787:2 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:15 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9085:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9261:2 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:1 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9652:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:1 9699:1 9731:1 9750:2 9751:2 9757:1 9760:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:5 9819:4 9828:2 9842:2 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10019:1 10020:3 10072:1 10074:1 10077:1 10087:2 10088:1 10090:1 10096:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:2 10569:3 10578:2 10580:1 10587:2 10610:1 10655:1 10667:2 10720:1 10725:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:1 10808:2 10820:1 10835:4 10855:2 10857:1 10872:1 10883:1 10900:1 10915:3 10916:2 10927:1 10963:2 10964:2 10966:2 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:2 11109:1 11123:4 11136:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:2 11213:1 11215:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:7 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11454:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:4 11772:4 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:3 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:3 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12356:1 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12455:1 12485:1 12488:4 12490:2 12527:2 12530:1 12535:2 12539:2 12542:1 12545:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:3 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12790:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:2 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13111:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:5 13208:2 13215:2 13230:1 13241:1 13244:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:1 13429:3 13430:1 13432:1 13448:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13879:1 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14168:1 14184:2 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:1 14425:1 14465:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14708:1 14730:1 14748:2 14771:2 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:2 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:3 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15305:1 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15555:1 15570:1 15574:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15772:1 15787:1 15790:1 15791:2 15792:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:3 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16159:5 16163:1 16166:1 16170:1 16177:1 16225:1 16233:1 16234:1 16243:1 16262:1 16303:1 16306:1 16311:1 16312:1 16328:1 16332:1 16333:1 16336:1 16345:1 16351:1 16365:1 16372:1 16380:2 16383:1 16388:2 16401:2 16407:1 16419:1 16429:2 16433:1 16463:1 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16536:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:2 16693:2 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16787:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16862:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:2 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:3 17470:2 17476:2 17477:2 17482:1 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17631:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18415:1 18419:1 18458:2 18488:1 18508:1 18510:1 18544:1 18563:5 18566:1 18571:1 18583:2 18622:1 18637:1 18665:1 18680:1 18682:1 18699:1 18749:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:3 18805:1 18823:1 18839:1 18859:4 18881:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19094:1 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:5 19179:1 19233:2 19236:2 19247:3 19256:1 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19325:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19445:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19934:1 19945:2205 19954:1 19960:1 19963:1 20023:1 20026:1 20027:1 20029:1 20043:1 20065:3 20082:1 20125:2 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20519:1 20521:1 20533:1 20546:1 20547:1 20551:1 20556:3 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:3 20733:1 20754:1 20769:1 20786:1 20791:3 20805:1 20807:1 20812:1 20830:1 20850:5 20903:6 20907:1 20908:1 20915:1 20916:1 20941:2 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:2 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:2 21315:1 21325:2 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:5 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21629:1 21633:1 21641:4 21643:1 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:4 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21851:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:6 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22171:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22548:1 22552:1 22553:1 22558:2 22562:1 22577:1 22585:1 22586:1 22589:1 22603:1 22605:1 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22671:1 22687:1 22690:1 22712:2 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:2 22997:1 23007:1 23046:1 23057:1 23064:1 23071:2 23073:3 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23147:1 23161:1 23170:1 23174:1 23180:1 23181:1 23190:2 23213:1 23219:1 23228:1 23233:3 23235:1 23250:1 23260:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:2 23639:1 23640:1 23642:1 23644:3 23651:1 23655:1 23691:1 23699:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23857:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:6 23924:2 23933:1 23948:4 23956:1 23963:2 23982:8 23983:1 23986:1 23988:1 23993:1 24026:1 24047:1 24051:1 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:3 24160:1 24206:1 24210:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24279:1 24288:1 24295:1 24297:1 24300:1 24333:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24530:2 24552:1 24576:1 24582:2 24585:3 24596:1 24614:2 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24985:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25050:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25167:1 25188:3 25197:2 25207:1 25215:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25295:1 25298:1 25308:3 25351:1 25352:2 25356:1 25373:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25839:1 25842:1 25856:1 25894:1 25905:1 25907:5 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:5 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26305:1 26339:2 26346:1 26361:3 26366:2 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:2 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26706:1 26708:1 26716:1 26719:2 26755:1 26756:1 26788:5 26797:2 26862:1 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:3 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:3 27218:3 27228:1 27230:1 27234:2 27235:2 27237:1 27243:1 27257:1 27267:1 27268:2 27272:2 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27493:1 27521:1 27524:1 27547:1 27554:1 27556:1 27558:6 27565:1 27573:1 27590:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:2 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28094:1 28099:1 28167:1 28178:2 28198:1 28211:1 28218:1 28226:1 28250:1 28254:1 28307:2 28310:1 28317:1 28364:1 28375:1 28378:1 28381:1 28383:1 28385:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:2 28476:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28647:1 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28760:1 28761:1 28766:3 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:3 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:3 28900:1 28911:1 28920:1 28929:1 28944:1 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:3 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29288:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:2 29446:1 29459:2 29460:1 29466:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:3 29498:6 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:5 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29732:1 29738:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:2 30200:3 30208:1 30212:1 30215:1 30241:2 30254:1 30256:1 30261:1 30285:1 30296:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:19 30328:1 30330:3 30347:1 30352:1 30356:1 30358:1 30365:3 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:5 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30965:1 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:1 31413:1 31419:1 31423:1 31427:1 31437:1 31440:2 31441:1 31460:3 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:3 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:3 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:4 31733:1 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 389:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 509:1 511:1 523:1 526:1 533:1 560:1 566:1 601:1 602:1 611:1 623:1 624:2 631:2 643:4 660:1 672:8 708:1 710:1 724:6 749:1 752:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 945:1 952:1 953:6 960:2 961:1 964:1 977:1 978:1 984:5 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:6 1059:2 1072:1 1098:1 1100:4 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:2 1189:1 1206:1 1208:1 1215:2 1227:1 1250:5 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1339:1 1344:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:5 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1413:1 1414:1 1426:1 1440:1 1457:1 1475:1 1478:1 1489:1 1498:1 1522:1 1531:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:5 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1680:1 1683:1 1701:5 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:3 1801:3 1806:1 1818:1 1826:1 1832:1 1844:3 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1922:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2232:1 2236:1 2238:1 2239:1 2242:2 2252:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:7 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:1 2500:1 2502:1 2504:8 2506:2 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:8 2535:3 2538:3 2540:1 2541:4 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2620:1 2628:1 2632:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2949:1 2950:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3128:1 3129:1 3133:1 3138:2 3148:8 3159:1 3173:2 3175:2 3181:1 3184:1 3185:1 3188:1 3197:1 3199:5 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:2 3263:1 3272:1 3303:1 3335:1 3348:1 3363:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:4 3552:2 3565:1 3578:6 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3734:1 3748:2 3757:1 3758:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3879:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:1 3957:1 3983:1 3985:4 3987:2 3997:2 4004:1 4009:1 4028:2 4033:1 4054:2 4057:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4139:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:2 4261:1 4278:2 4285:2 4292:1 4293:1 4310:1 4323:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4370:1 4372:1 4376:1 4384:1 4388:2 4390:5 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4641:1 4646:1 4658:1 4675:3 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:2 4779:2 4799:1 4835:1 4839:1 4848:3 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:3 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5139:1 5140:3 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:2 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:18 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5427:1 5431:4 5447:7 5448:6 5449:1 5451:1 5456:2 5457:2 5459:2 5463:3 5465:2 5471:1 5473:1 5477:2 5478:7 5479:1 5482:1 5513:1 5548:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:5 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6188:1 6189:1 6198:1 6199:1 6220:1 6230:1 6235:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:2 6458:1 6465:3 6495:1 6512:2 6538:4 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6746:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:8 6802:1 6807:1 6818:1 6828:1 6853:2 6857:8 6889:1 6901:5 6903:3 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6915:1 6917:2 6919:1 6922:1 6923:3 6925:4 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:3 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7155:1 7161:1 7163:1 7166:1 7173:1 7177:2 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:2 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7419:1 7424:1 7429:4 7432:7 7433:1 7435:2 7449:1 7450:1 7454:2 7457:1 7463:5 7464:1 7465:2 7468:1 7470:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7654:1 7663:1 7665:1 7668:1 7675:1 7685:1 7686:1 7691:1 7699:2 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:2 7752:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7820:1 7836:1 7837:2 7841:1 7842:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:7 8104:5 8105:1 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8344:1 8358:1 8361:1 8362:4 8392:1 8393:1 8401:40 8408:1 8423:1 8425:1 8427:8 8429:6 8439:1 8452:1 8453:1 8463:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:2 8530:3 8557:1 8588:2 8594:1 8598:2 8608:1 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:1 8784:1 8787:2 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:17 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9085:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9261:2 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:2 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:5 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9652:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:2 9699:1 9731:1 9750:2 9751:2 9757:1 9760:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:5 9819:4 9828:2 9842:2 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10019:2 10020:3 10072:1 10074:1 10077:1 10087:2 10088:1 10090:1 10096:1 10107:1 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:2 10376:2 10385:1 10395:1 10404:1 10422:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:2 10569:4 10578:2 10580:1 10587:3 10610:1 10655:1 10667:2 10720:1 10725:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:1 10808:2 10820:1 10835:4 10855:3 10857:1 10872:1 10883:1 10900:1 10915:3 10916:2 10927:1 10963:2 10964:2 10966:2 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:2 11109:1 11123:4 11136:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:2 11213:1 11215:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:7 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11454:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:4 11772:4 11778:3 11781:5 11784:1 11785:2 11788:3 11789:2 11794:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:1 11912:1 11919:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:3 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:3 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12356:1 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12443:1 12455:1 12485:1 12488:4 12490:2 12518:1 12527:2 12530:1 12535:2 12539:2 12542:1 12545:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:3 12622:2 12626:1 12628:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12790:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:2 12950:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13111:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:6 13208:2 13215:2 13230:2 13241:1 13244:1 13246:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:2 13429:3 13430:1 13432:1 13448:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13879:1 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14168:1 14184:2 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:1 14425:1 14465:1 14475:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14708:1 14730:1 14748:2 14771:2 14811:1 14812:1 14822:1 14823:2 14827:1 14839:1 14847:2 14861:2 14867:2 14870:1 14877:1 14905:1 14907:2 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:3 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15186:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15305:1 15317:5 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15555:1 15570:1 15574:1 15575:1 15586:2 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15772:1 15787:1 15790:1 15791:2 15792:2 15802:1 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:3 15860:1 15897:1 15909:1 15910:2 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16131:1 16159:6 16163:1 16166:1 16170:1 16177:1 16225:1 16233:1 16234:1 16243:1 16262:1 16303:1 16306:1 16311:1 16312:1 16328:1 16332:1 16333:1 16336:1 16342:1 16345:1 16351:1 16365:1 16372:1 16380:2 16383:1 16388:2 16401:2 16407:1 16419:1 16429:2 16433:1 16463:1 16468:1 16477:2 16483:1 16498:1 16500:2 16509:1 16532:1 16536:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:2 16693:2 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16787:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:4 16853:1 16860:1 16862:1 16868:1 16872:1 16882:2 16888:1 16923:2 16934:1 16956:1 16960:1 16963:1 16992:1 17016:3 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:1 17124:2 17156:1 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:2 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:9 17329:1 17334:2 17364:2 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:3 17470:2 17476:2 17477:3 17482:2 17484:1 17485:2 17486:2 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17631:1 17632:2 17669:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:1 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:4 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18415:1 18419:1 18458:2 18488:1 18508:1 18510:1 18512:1 18544:1 18563:5 18566:1 18571:1 18583:2 18622:1 18637:1 18665:1 18680:1 18682:1 18699:1 18749:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:3 18805:1 18823:1 18839:1 18859:4 18881:1 18895:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:4 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:1 19066:2 19079:1 19089:2 19094:1 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:5 19179:1 19233:2 19236:2 19247:3 19256:1 19260:1 19268:1 19282:5 19287:1 19291:1 19295:1 19299:1 19301:1 19310:1 19311:1 19318:1 19325:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19445:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:1 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19854:1 19861:2 19875:1 19889:1 19906:1 19927:1 19929:1 19934:1 19945:2290 19954:1 19960:1 19963:1 19997:1 20023:1 20026:1 20027:1 20029:1 20043:1 20065:3 20080:1 20082:1 20125:2 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20300:1 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20519:1 20521:1 20533:1 20546:1 20547:1 20551:1 20556:3 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:3 20733:1 20754:1 20769:1 20786:1 20791:3 20805:1 20807:1 20812:1 20830:1 20850:5 20903:6 20907:1 20908:1 20915:1 20916:1 20941:2 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:2 21188:3 21192:2 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:3 21315:1 21325:2 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:5 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:1 21607:3 21627:1 21629:1 21633:1 21641:4 21643:1 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:4 21763:1 21768:1 21779:1 21792:1 21839:1 21842:1 21851:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21933:1 21944:6 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22171:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22415:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:2 22521:1 22548:1 22552:1 22553:1 22558:2 22562:1 22577:1 22580:1 22585:1 22586:1 22589:1 22603:1 22605:2 22611:1 22622:2 22625:1 22638:1 22639:1 22651:2 22655:1 22664:3 22671:1 22687:1 22690:1 22712:2 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22957:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:2 22997:1 23007:1 23046:1 23057:1 23064:1 23071:2 23073:3 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23147:1 23161:1 23170:1 23174:1 23180:1 23181:1 23190:2 23213:1 23219:1 23228:1 23233:3 23235:1 23250:1 23260:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:5 23345:1 23355:2 23368:1 23376:3 23382:2 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:6 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:2 23639:1 23640:1 23642:1 23644:3 23651:1 23655:1 23691:1 23699:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:1 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23857:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:6 23924:2 23933:1 23948:4 23956:1 23963:2 23982:8 23983:1 23986:1 23988:1 23993:1 24026:1 24047:1 24051:2 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:3 24160:1 24206:1 24210:1 24231:1 24234:1 24249:1 24255:1 24257:1 24258:1 24267:1 24279:1 24288:1 24295:1 24297:1 24300:1 24333:1 24346:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24520:1 24530:2 24552:1 24576:1 24582:2 24585:3 24589:1 24596:1 24614:2 24622:1 24633:1 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:2 24963:1 24966:1 24974:2 24980:1 24985:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25042:1 25050:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25167:1 25188:3 25197:2 25202:1 25207:1 25215:1 25224:1 25233:1 25243:3 25253:1 25264:1 25267:1 25271:1 25290:1 25295:1 25298:1 25308:3 25318:1 25340:1 25351:1 25352:2 25356:1 25373:1 25403:1 25419:1 25436:2 25444:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25803:1 25828:1 25833:1 25839:1 25842:1 25856:1 25894:1 25905:1 25907:5 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:5 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:1 26194:1 26201:1 26204:1 26209:1 26222:2 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:2 26294:1 26303:1 26305:1 26339:2 26346:1 26361:3 26366:2 26404:1 26409:1 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:3 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26706:1 26708:1 26716:1 26719:2 26755:1 26756:1 26788:5 26797:2 26862:1 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:3 27022:1 27030:1 27034:6 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:3 27218:3 27228:1 27230:1 27234:2 27235:2 27237:1 27243:1 27257:1 27267:1 27268:2 27272:2 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27493:1 27521:1 27524:1 27547:1 27554:1 27556:2 27558:6 27565:1 27573:1 27590:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27753:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:2 27935:1 27940:2 27946:3 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28094:1 28099:1 28167:1 28178:2 28198:1 28211:1 28218:1 28226:1 28248:1 28250:1 28254:1 28307:2 28310:1 28317:1 28364:1 28375:1 28378:1 28381:1 28383:1 28385:1 28387:1 28398:1 28407:1 28430:1 28435:1 28438:1 28455:1 28461:2 28463:5 28465:2 28476:1 28489:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:2 28623:1 28638:1 28639:2 28641:3 28647:1 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28760:1 28761:1 28766:3 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:3 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:3 28900:1 28911:1 28920:1 28929:1 28944:2 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:3 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29288:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:2 29399:1 29416:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:2 29446:1 29459:2 29460:1 29466:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:3 29498:6 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29587:5 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29732:1 29738:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:2 30200:3 30208:1 30212:1 30215:1 30241:2 30254:1 30256:1 30261:1 30265:1 30285:1 30296:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:20 30328:1 30330:3 30347:1 30352:1 30356:1 30358:1 30365:4 30384:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:5 30489:3 30497:1 30527:11 30574:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30965:1 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:1 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:1 31413:1 31419:1 31423:1 31427:1 31437:1 31440:2 31441:1 31460:3 31468:2 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:3 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:4 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:4 31654:3 31661:1 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:4 31733:1 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 389:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 509:1 511:1 523:1 526:1 533:1 560:1 566:1 601:1 602:1 611:1 623:1 624:2 631:2 643:4 660:1 672:8 696:1 708:1 710:1 724:7 749:1 752:1 753:1 754:1 755:1 782:1 862:2 880:1 891:1 945:1 952:1 953:6 960:2 961:1 964:1 977:1 978:1 984:5 990:1 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:6 1059:2 1072:1 1098:1 1100:4 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:3 1189:1 1206:1 1208:1 1215:2 1227:1 1250:5 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1339:1 1344:1 1355:1 1358:1 1359:1 1368:1 1371:1 1373:1 1375:5 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1413:1 1414:2 1426:1 1440:1 1449:1 1457:1 1475:1 1478:1 1489:1 1498:1 1522:1 1531:1 1533:1 1537:1 1542:1 1543:1 1550:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:5 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1673:1 1680:1 1683:1 1701:5 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:3 1801:3 1806:1 1818:1 1826:1 1832:1 1844:3 1848:1 1850:1 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1922:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:4 2051:1 2055:1 2058:1 2062:2 2078:1 2082:2 2087:1 2096:1 2097:1 2107:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2151:1 2154:1 2205:1 2207:6 2222:1 2232:1 2236:1 2238:1 2239:1 2242:2 2252:1 2280:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:7 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:2 2500:1 2502:1 2504:8 2506:2 2509:1 2512:3 2514:1 2521:2 2522:1 2527:2 2532:8 2535:3 2538:3 2540:2 2541:5 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2620:1 2628:1 2632:1 2635:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2946:1 2949:1 2950:1 2955:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3128:1 3129:1 3133:2 3138:2 3148:8 3159:1 3173:2 3175:2 3181:1 3184:1 3185:1 3188:1 3197:1 3199:5 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:2 3263:1 3272:1 3303:1 3335:1 3348:1 3363:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:1 3482:2 3490:1 3511:1 3514:1 3539:1 3542:3 3547:3 3551:5 3552:2 3565:1 3578:7 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3734:1 3748:2 3757:1 3758:1 3766:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3879:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:2 3957:1 3983:1 3985:4 3987:2 3997:2 4004:1 4009:1 4028:2 4033:1 4054:2 4057:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4139:1 4145:1 4147:1 4152:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:2 4261:1 4278:2 4285:2 4292:1 4293:1 4310:1 4323:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4370:1 4372:1 4376:1 4384:1 4388:2 4390:6 4410:1 4442:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4641:1 4646:1 4658:1 4675:4 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:2 4779:2 4792:1 4799:1 4835:1 4839:1 4848:4 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:3 4987:1 5032:1 5035:1 5043:2 5053:1 5069:3 5078:2 5105:1 5111:3 5121:1 5123:1 5134:1 5139:1 5140:4 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:2 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:18 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5427:1 5431:4 5447:8 5448:6 5449:1 5451:1 5456:2 5457:2 5459:2 5463:3 5465:2 5471:1 5473:1 5477:3 5478:7 5479:1 5482:2 5500:1 5513:1 5548:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:5 5683:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:1 6044:1 6053:1 6073:1 6075:1 6081:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6188:1 6189:1 6198:1 6199:1 6220:1 6230:1 6235:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:3 6458:1 6465:3 6466:1 6495:1 6512:2 6538:4 6541:2 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6714:1 6719:1 6746:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:8 6802:1 6807:1 6818:1 6828:1 6853:2 6857:8 6889:1 6901:6 6903:3 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6915:1 6917:3 6919:1 6922:1 6923:3 6925:5 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:3 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7155:1 7161:1 7163:1 7166:1 7173:1 7177:2 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:2 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7419:1 7424:1 7429:4 7432:7 7433:1 7435:2 7449:1 7450:1 7454:2 7457:1 7463:5 7464:1 7465:2 7468:1 7470:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7650:1 7654:1 7663:1 7665:1 7668:1 7675:2 7685:1 7686:1 7691:1 7699:2 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:3 7752:1 7753:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7820:1 7836:1 7837:2 7841:1 7842:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:8 8104:6 8105:1 8107:2 8121:1 8148:1 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8344:1 8358:1 8361:1 8362:4 8392:1 8393:1 8401:43 8408:1 8423:1 8425:1 8427:8 8429:6 8439:1 8452:1 8453:1 8463:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:2 8530:3 8557:1 8588:2 8594:1 8598:2 8608:1 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:2 8784:1 8787:3 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:18 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9085:1 9086:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9261:2 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:2 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:6 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9652:1 9659:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:2 9699:1 9731:1 9750:2 9751:2 9757:1 9760:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:5 9819:4 9828:3 9842:2 9873:1 9879:1 9885:1 9886:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9982:1 9986:3 9987:1 10014:1 10016:2 10019:2 10020:3 10072:1 10074:1 10077:1 10087:2 10088:1 10090:1 10096:1 10107:2 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:1 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:3 10376:2 10385:1 10395:1 10404:1 10422:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:2 10569:4 10578:3 10580:1 10587:3 10610:1 10655:1 10667:2 10683:1 10720:1 10725:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:1 10808:2 10820:1 10835:5 10855:3 10857:1 10872:1 10883:1 10900:1 10915:3 10916:2 10927:1 10963:2 10964:2 10966:2 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:2 11109:1 11123:4 11136:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:2 11213:1 11215:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:8 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11454:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11591:1 11602:2 11608:1 11617:2 11633:4 11634:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:4 11772:4 11778:3 11781:6 11784:1 11785:2 11788:3 11789:2 11794:1 11797:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:2 11912:1 11919:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:4 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12274:1 12279:4 12298:1 12304:1 12309:1 12311:1 12325:2 12334:1 12353:3 12356:1 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12443:1 12455:1 12485:1 12488:4 12490:2 12518:1 12527:2 12530:1 12535:2 12539:2 12542:1 12545:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:3 12622:2 12626:1 12628:1 12632:1 12634:2 12641:1 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12790:1 12791:2 12834:1 12851:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:2 12950:1 12977:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13096:1 13097:1 13111:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13205:6 13208:2 13215:2 13229:1 13230:2 13241:1 13244:1 13246:1 13263:1 13287:1 13300:2 13335:1 13341:1 13351:1 13371:1 13372:1 13394:1 13401:2 13411:1 13428:2 13429:3 13430:1 13432:1 13448:1 13452:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13879:1 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14168:1 14184:2 14196:1 14206:1 14213:1 14219:2 14220:5 14228:3 14242:1 14285:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:1 14407:1 14416:2 14425:1 14465:1 14475:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:3 14644:1 14664:1 14669:1 14674:3 14683:1 14708:2 14730:1 14748:2 14771:2 14811:1 14812:1 14822:1 14823:3 14827:1 14839:1 14847:2 14861:2 14867:3 14870:1 14877:1 14905:1 14907:2 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:1 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:3 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15186:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15305:1 15317:6 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15555:1 15570:1 15574:1 15575:1 15586:2 15606:1 15615:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15769:1 15772:1 15787:1 15790:1 15791:3 15792:2 15802:2 15806:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:3 15860:1 15897:1 15909:1 15910:3 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16131:1 16159:6 16163:1 16166:1 16170:1 16177:1 16225:1 16233:2 16234:1 16243:1 16262:1 16303:1 16306:1 16311:1 16312:1 16328:1 16332:1 16333:1 16336:1 16342:1 16345:1 16351:1 16365:1 16371:1 16372:1 16380:2 16383:1 16388:2 16401:2 16407:1 16419:1 16429:2 16433:1 16463:1 16468:1 16477:2 16483:1 16490:1 16498:1 16500:2 16509:1 16532:1 16536:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:2 16693:2 16695:2 16707:1 16745:1 16762:3 16778:2 16780:1 16782:1 16787:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:5 16853:1 16860:1 16862:1 16868:1 16872:1 16882:2 16888:1 16923:3 16934:1 16939:1 16956:1 16960:1 16963:1 16992:1 17016:3 17039:1 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:2 17124:2 17156:2 17162:1 17170:1 17176:1 17177:1 17188:1 17196:11 17206:2 17216:2 17224:1 17226:2 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:10 17329:1 17334:2 17364:3 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:3 17470:2 17476:2 17477:3 17482:2 17484:1 17485:2 17486:3 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17631:1 17632:2 17669:1 17675:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:2 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:2 17880:1 17889:2 17893:1 17915:2 17916:1 17929:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:5 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18415:1 18419:1 18458:2 18488:1 18508:1 18510:1 18512:1 18544:1 18563:6 18566:1 18571:1 18583:2 18622:1 18637:1 18665:1 18680:1 18682:1 18699:1 18749:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:3 18805:1 18823:1 18839:1 18859:4 18881:1 18895:1 18903:2 18904:3 18933:1 18939:2 18944:1 18956:2 18960:1 18982:5 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:2 19066:2 19079:1 19089:2 19094:1 19099:1 19116:1 19129:3 19138:1 19158:1 19164:2 19173:6 19179:1 19233:2 19236:2 19247:3 19256:1 19260:1 19268:1 19282:6 19284:1 19287:1 19291:1 19295:1 19299:1 19301:1 19303:1 19310:1 19311:1 19318:1 19325:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19445:1 19478:1 19510:1 19518:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:2 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19802:1 19854:1 19861:2 19875:1 19889:1 19897:1 19906:1 19927:1 19929:1 19934:1 19945:2337 19954:1 19960:1 19963:1 19997:1 20023:1 20026:1 20027:1 20029:1 20043:1 20065:3 20080:1 20082:1 20125:2 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20300:1 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20519:1 20521:1 20533:1 20546:1 20547:1 20551:1 20556:4 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:3 20733:1 20754:1 20769:1 20786:1 20791:3 20805:1 20807:1 20812:1 20825:2 20830:1 20850:5 20903:6 20907:1 20908:1 20915:1 20916:1 20941:2 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:2 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:2 21188:3 21192:2 21208:1 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:3 21315:1 21325:2 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21460:1 21481:1 21485:1 21488:5 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:2 21607:3 21627:1 21629:1 21633:1 21641:4 21643:1 21652:2 21656:1 21657:1 21661:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:4 21763:1 21767:1 21768:1 21779:1 21792:1 21839:1 21842:1 21851:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21920:1 21921:1 21929:1 21932:1 21933:1 21944:6 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22171:1 22178:1 22185:1 22203:1 22206:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:1 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22415:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:3 22521:1 22548:1 22552:1 22553:1 22558:2 22562:1 22577:1 22580:1 22585:1 22586:1 22589:1 22603:1 22605:2 22611:1 22622:2 22625:1 22638:1 22639:1 22642:1 22647:1 22651:2 22655:1 22664:3 22671:1 22687:1 22690:1 22712:2 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:1 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22957:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:2 22997:1 23007:1 23046:1 23057:1 23064:1 23071:2 23073:3 23077:1 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23147:1 23161:1 23170:1 23174:1 23180:1 23181:1 23190:2 23213:1 23219:1 23228:1 23233:3 23235:1 23250:1 23260:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23331:6 23345:1 23355:2 23368:1 23376:3 23382:3 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:1 23488:1 23491:2 23493:1 23494:1 23498:2 23499:7 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:2 23639:1 23640:1 23642:1 23644:3 23651:1 23655:1 23691:1 23699:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23857:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:6 23924:2 23933:1 23948:4 23956:1 23963:2 23982:9 23983:1 23986:1 23988:1 23993:1 24026:1 24047:1 24051:2 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:4 24160:1 24206:1 24210:1 24231:1 24234:1 24247:1 24249:1 24255:1 24257:1 24258:1 24267:1 24279:1 24288:1 24295:1 24297:2 24300:1 24333:1 24346:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:1 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24513:1 24520:1 24530:2 24552:1 24576:1 24582:2 24585:3 24589:1 24596:1 24614:2 24622:1 24633:1 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:3 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:3 24963:1 24966:1 24974:2 24980:1 24985:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25042:1 25050:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:1 25159:3 25162:1 25167:1 25188:3 25197:2 25202:1 25207:1 25215:1 25224:1 25233:1 25243:4 25253:1 25264:1 25267:1 25271:1 25290:1 25295:1 25298:1 25308:3 25318:1 25340:1 25351:1 25352:2 25356:1 25365:1 25373:1 25403:1 25419:1 25436:2 25443:1 25444:1 25446:1 25461:1 25485:3 25492:1 25498:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:1 25773:1 25803:1 25828:1 25833:1 25839:1 25842:1 25856:1 25857:1 25894:1 25905:1 25907:5 25928:2 25930:2 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:5 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:2 26194:1 26201:1 26204:1 26209:1 26222:2 26225:1 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:3 26294:1 26303:1 26305:1 26339:2 26346:1 26361:3 26366:2 26404:1 26409:2 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:3 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26706:1 26708:1 26716:1 26719:2 26755:1 26756:1 26788:5 26797:2 26862:1 26867:1 26869:1 26899:2 26925:1 26950:1 26989:4 27008:1 27019:3 27022:1 27030:1 27034:7 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:4 27218:3 27228:1 27230:1 27234:2 27235:2 27237:1 27243:1 27257:1 27267:1 27268:2 27272:2 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27493:1 27521:1 27524:1 27547:1 27554:1 27556:2 27558:6 27565:1 27573:1 27590:1 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27753:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:3 27935:1 27940:2 27946:3 27978:1 27981:1 28027:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28094:1 28099:1 28167:1 28178:2 28198:1 28211:1 28218:1 28226:1 28248:1 28250:1 28254:1 28307:2 28310:1 28317:1 28364:1 28375:1 28378:1 28381:1 28383:1 28385:1 28387:1 28398:1 28407:1 28430:1 28435:1 28438:1 28452:1 28455:1 28461:3 28463:5 28465:2 28476:1 28489:1 28500:1 28527:1 28534:1 28573:1 28584:1 28618:1 28619:3 28623:1 28638:1 28639:2 28641:3 28647:1 28667:1 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28760:1 28761:1 28766:3 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:3 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:3 28900:1 28911:1 28920:1 28929:1 28944:2 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:3 29146:1 29172:2 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29288:1 29301:3 29303:1 29319:4 29327:1 29372:2 29388:1 29392:1 29396:3 29399:1 29411:1 29416:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:2 29446:1 29459:2 29460:1 29466:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:3 29498:6 29503:1 29504:1 29509:1 29510:2 29513:2 29539:1 29548:2 29549:1 29550:1 29558:1 29587:5 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29732:1 29738:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 29985:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:2 30200:3 30208:1 30212:1 30215:1 30232:1 30241:2 30254:1 30256:1 30261:1 30265:1 30285:1 30296:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:20 30328:1 30330:3 30347:1 30352:1 30356:1 30358:1 30365:4 30372:1 30384:1 30387:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:5 30489:4 30497:1 30527:11 30537:1 30574:1 30586:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30735:1 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30829:1 30833:2 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30965:1 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31119:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:1 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:2 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:2 31413:1 31419:1 31423:1 31427:1 31437:1 31440:2 31441:1 31460:3 31468:3 31476:1 31483:1 31485:1 31488:1 31505:1 31515:1 31530:3 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:4 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:5 31654:3 31661:1 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:4 31733:1 31737:1 31743:1 31770:1 31779:1 8 2:4 10:1 22:1 28:1 37:1 41:1 44:2 82:3 91:1 118:1 129:1 135:1 152:1 158:1 162:1 170:1 177:1 178:1 198:1 206:1 208:4 230:2 236:1 238:1 256:1 260:4 273:1 286:1 304:1 328:1 360:3 361:1 363:1 385:1 389:1 398:3 437:1 445:2 463:1 464:2 475:2 485:1 501:1 509:1 511:1 523:1 526:1 533:1 560:1 566:1 601:1 602:1 611:1 623:1 624:2 629:1 631:2 643:4 660:1 672:8 696:1 708:1 710:1 724:7 749:1 752:1 753:1 754:1 755:1 782:1 815:1 862:2 880:1 891:1 945:1 952:1 953:6 960:2 961:1 964:1 977:1 978:1 984:5 990:1 993:1 1006:1 1021:1 1031:1 1044:1 1048:1 1055:6 1059:2 1072:1 1098:1 1100:4 1111:1 1118:1 1119:1 1131:1 1167:1 1172:1 1173:1 1185:3 1189:1 1206:1 1208:1 1215:2 1227:1 1250:5 1262:1 1273:1 1284:1 1285:2 1294:1 1298:1 1303:1 1309:1 1311:1 1314:1 1315:1 1323:1 1324:1 1330:1 1331:1 1337:1 1339:1 1344:1 1355:1 1358:1 1359:1 1366:1 1368:1 1371:1 1373:1 1375:5 1376:2 1384:1 1386:1 1388:1 1391:1 1403:1 1407:1 1412:1 1413:1 1414:2 1426:1 1433:2 1440:1 1449:1 1457:1 1475:1 1478:1 1489:1 1498:1 1522:1 1531:1 1533:1 1537:1 1542:1 1543:1 1550:1 1552:1 1554:2 1560:5 1566:5 1571:1 1584:2 1596:1 1601:3 1610:5 1624:1 1627:3 1644:1 1652:1 1658:1 1659:3 1673:1 1680:1 1683:1 1701:6 1704:1 1721:2 1726:1 1729:1 1753:1 1765:1 1783:2 1796:1 1798:3 1801:3 1806:1 1818:1 1826:1 1832:1 1844:3 1848:1 1850:2 1860:1 1866:1 1871:1 1876:1 1886:1 1891:2 1897:2 1909:1 1910:1 1911:1 1917:1 1922:1 1925:1 1930:1 1935:2 1936:2 1956:1 1959:1 1974:1 1980:1 1982:1 1986:1 1991:1 1994:1 1999:2 2019:1 2028:1 2031:2 2036:1 2047:5 2051:1 2055:1 2058:1 2062:2 2078:1 2082:3 2087:1 2096:1 2097:1 2107:1 2109:3 2116:1 2117:1 2123:1 2124:2 2135:1 2139:1 2151:1 2154:1 2205:1 2207:6 2222:1 2232:1 2236:1 2238:1 2239:1 2242:2 2252:1 2280:1 2286:1 2288:1 2301:1 2309:1 2324:1 2332:1 2368:7 2394:1 2414:1 2442:1 2454:1 2463:1 2481:1 2499:2 2500:1 2502:1 2504:8 2506:2 2509:1 2512:4 2514:1 2521:2 2522:1 2527:2 2530:1 2532:8 2535:3 2538:3 2540:2 2541:5 2543:1 2545:1 2587:1 2592:1 2601:3 2603:1 2610:1 2615:2 2620:1 2628:1 2632:1 2635:1 2637:1 2640:1 2681:2 2682:1 2696:1 2743:1 2765:1 2782:1 2794:1 2809:1 2848:1 2859:1 2867:1 2906:1 2922:1 2929:1 2932:1 2933:1 2937:1 2946:1 2949:1 2950:1 2955:1 2961:1 2962:1 2965:1 2966:1 2968:1 2969:3 2985:1 2988:1 2995:1 2998:1 3000:1 3020:2 3024:1 3025:1 3032:1 3037:1 3043:1 3050:3 3061:1 3073:1 3077:1 3078:1 3080:1 3086:2 3099:1 3104:1 3105:1 3128:1 3129:1 3133:2 3138:2 3148:10 3159:1 3173:2 3175:2 3181:1 3184:1 3185:1 3188:1 3197:1 3199:5 3207:1 3220:1 3242:1 3254:1 3257:1 3258:2 3261:2 3263:1 3272:1 3303:1 3335:1 3348:1 3363:1 3381:1 3387:1 3392:2 3393:1 3402:1 3413:1 3422:1 3432:1 3433:1 3434:1 3438:1 3470:2 3482:2 3489:1 3490:1 3511:1 3514:1 3539:1 3541:1 3542:3 3547:3 3551:5 3552:2 3565:1 3578:7 3585:1 3597:1 3603:1 3629:1 3650:1 3663:1 3671:1 3696:1 3734:1 3748:2 3757:1 3758:1 3766:1 3771:1 3792:1 3800:1 3817:1 3839:1 3842:1 3856:1 3869:1 3879:1 3883:1 3884:2 3902:1 3911:2 3926:1 3935:1 3948:2 3957:1 3961:1 3983:1 3985:4 3987:2 3997:2 4004:1 4009:1 4028:2 4033:1 4054:2 4057:1 4064:1 4066:1 4081:1 4082:1 4101:1 4105:1 4112:2 4117:2 4122:1 4138:1 4139:1 4145:1 4147:1 4152:3 4174:1 4186:1 4188:1 4195:1 4204:1 4209:1 4217:2 4220:1 4225:1 4230:1 4236:2 4242:2 4243:1 4244:1 4250:2 4261:1 4278:2 4285:2 4292:1 4293:1 4296:1 4310:1 4323:1 4329:1 4338:1 4342:1 4345:1 4349:1 4351:3 4360:1 4368:2 4370:1 4372:1 4376:1 4384:2 4388:2 4390:6 4410:1 4416:1 4442:1 4443:1 4446:1 4449:2 4457:1 4464:1 4471:1 4480:1 4493:1 4520:1 4522:1 4524:1 4536:1 4544:1 4547:1 4552:1 4562:1 4565:1 4569:1 4571:1 4572:1 4580:2 4591:2 4600:3 4602:1 4603:1 4606:5 4608:2 4616:1 4628:1 4641:1 4646:1 4658:1 4675:4 4695:1 4702:1 4716:1 4721:6 4722:1 4749:2 4768:2 4779:2 4792:1 4799:1 4835:1 4839:1 4848:4 4850:1 4855:1 4856:1 4872:1 4875:1 4885:1 4901:2 4907:1 4917:1 4926:1 4931:1 4943:1 4948:2 4977:1 4979:3 4987:1 5032:1 5035:1 5043:2 5053:1 5069:4 5078:2 5105:1 5111:3 5121:1 5123:1 5131:1 5134:1 5139:1 5140:4 5141:1 5143:1 5146:1 5153:1 5181:1 5184:1 5188:1 5194:2 5197:1 5209:1 5210:1 5214:1 5218:1 5262:1 5278:3 5299:1 5303:18 5305:1 5315:1 5327:1 5330:1 5334:1 5364:1 5375:1 5427:1 5431:4 5447:8 5448:6 5449:1 5451:1 5456:2 5457:2 5459:2 5463:3 5465:2 5471:1 5473:1 5477:3 5478:7 5479:1 5482:2 5500:1 5513:1 5548:1 5551:2 5570:1 5588:1 5592:1 5645:1 5649:5 5683:1 5690:1 5693:1 5707:1 5708:1 5713:2 5715:1 5720:1 5725:1 5737:1 5763:1 5767:4 5771:1 5772:1 5773:1 5808:1 5821:1 5840:1 5847:1 5852:1 5857:2 5858:1 5872:1 5875:2 5893:2 5926:1 5927:1 5985:2 5991:1 6021:1 6025:2 6044:1 6053:1 6073:1 6075:1 6081:1 6084:1 6089:2 6090:1 6098:1 6103:2 6105:1 6110:1 6112:2 6117:1 6156:1 6160:2 6183:3 6188:1 6189:1 6198:1 6199:1 6220:1 6230:1 6235:1 6247:1 6248:1 6252:1 6256:1 6288:1 6298:1 6319:1 6320:1 6323:1 6370:2 6384:1 6387:4 6396:1 6417:3 6458:1 6465:3 6466:1 6495:1 6512:2 6538:4 6541:2 6544:1 6545:1 6561:4 6583:2 6589:1 6604:1 6628:1 6640:2 6647:2 6670:2 6675:2 6698:1 6714:1 6719:1 6746:1 6751:1 6768:1 6771:3 6776:1 6791:1 6798:8 6802:1 6807:1 6818:1 6828:1 6853:2 6857:8 6889:1 6901:6 6903:3 6906:1 6907:1 6908:4 6909:3 6911:2 6914:2 6915:1 6917:3 6919:1 6922:1 6923:3 6925:5 6930:1 6942:1 6962:1 6966:1 6975:1 6977:1 6980:2 7001:1 7020:1 7028:3 7057:1 7073:1 7077:4 7083:2 7093:2 7096:1 7106:1 7113:1 7130:1 7155:1 7161:1 7163:1 7166:1 7173:1 7177:2 7191:1 7194:1 7204:1 7220:1 7232:1 7241:1 7251:1 7255:1 7269:1 7277:1 7288:1 7290:1 7317:2 7338:1 7340:1 7343:1 7356:1 7357:1 7361:1 7364:2 7390:3 7396:2 7399:1 7412:1 7419:1 7424:1 7429:4 7432:7 7433:1 7435:2 7437:1 7449:1 7450:1 7454:2 7457:1 7463:5 7464:1 7465:2 7468:1 7470:1 7479:3 7546:2 7547:1 7559:1 7561:1 7571:1 7573:1 7594:1 7600:1 7605:2 7629:1 7633:2 7635:1 7642:1 7645:1 7650:1 7654:1 7663:1 7665:1 7668:1 7675:2 7685:1 7686:1 7691:1 7699:2 7702:1 7703:2 7705:1 7712:1 7716:1 7719:1 7723:1 7725:1 7732:3 7752:1 7753:1 7755:1 7763:1 7779:1 7782:1 7783:1 7809:3 7810:1 7818:1 7820:1 7836:1 7837:2 7841:1 7842:1 7851:1 7852:1 7860:1 7879:1 7891:1 7910:2 7912:1 7915:1 7921:2 7946:2 7950:3 7952:1 7956:1 7960:2 7963:3 7971:5 8009:1 8029:1 8033:1 8055:1 8070:8 8104:6 8105:1 8107:2 8121:1 8148:2 8170:1 8187:1 8194:2 8207:1 8254:1 8317:3 8340:10 8341:5 8344:1 8358:1 8361:1 8362:4 8392:1 8393:1 8401:44 8408:1 8423:1 8425:1 8427:10 8429:6 8439:1 8452:1 8453:1 8463:1 8471:2 8474:1 8491:1 8497:1 8504:1 8512:2 8530:3 8557:1 8588:4 8594:1 8598:2 8608:1 8618:2 8632:1 8639:2 8649:5 8659:1 8661:1 8672:1 8678:1 8683:1 8691:1 8715:1 8721:1 8731:1 8737:1 8741:2 8784:2 8787:3 8790:2 8813:1 8815:1 8826:2 8838:1 8845:1 8846:1 8850:1 8853:1 8861:3 8937:1 8947:1 8962:1 8964:19 8987:1 9020:1 9027:1 9051:2 9066:3 9072:1 9077:1 9085:1 9086:1 9100:1 9107:1 9115:1 9136:2 9152:1 9156:2 9164:7 9166:1 9175:1 9176:2 9208:1 9212:1 9242:1 9247:1 9252:1 9261:2 9269:1 9277:1 9284:1 9303:1 9340:1 9342:1 9345:1 9347:1 9348:2 9349:1 9350:4 9351:1 9354:2 9356:1 9357:2 9361:2 9362:1 9363:2 9379:1 9383:2 9387:3 9392:1 9396:1 9404:1 9406:1 9409:1 9418:1 9446:1 9456:6 9485:1 9489:1 9504:1 9509:1 9512:1 9519:4 9523:2 9534:2 9579:1 9582:1 9583:1 9600:1 9612:1 9623:1 9652:1 9659:1 9661:1 9665:2 9666:1 9672:1 9683:1 9695:2 9696:1 9697:3 9699:1 9731:1 9750:2 9751:2 9757:1 9760:1 9764:1 9771:2 9773:2 9775:1 9788:1 9798:1 9803:1 9818:5 9819:4 9828:3 9842:2 9873:1 9879:1 9885:1 9886:1 9919:1 9931:2 9945:2 9957:1 9961:1 9962:1 9968:2 9970:1 9982:1 9986:3 9987:1 10014:1 10016:2 10019:2 10020:3 10072:1 10074:1 10077:1 10087:2 10088:1 10090:1 10096:1 10107:2 10137:1 10143:1 10166:1 10167:1 10185:1 10192:1 10204:1 10222:1 10224:1 10225:2 10234:2 10236:2 10247:1 10258:1 10268:1 10275:1 10291:1 10294:1 10295:1 10300:2 10308:1 10311:2 10314:1 10318:1 10326:1 10327:2 10334:1 10336:2 10338:1 10350:1 10355:1 10369:1 10370:3 10376:2 10385:1 10395:1 10404:1 10422:1 10446:1 10450:1 10476:1 10478:1 10508:2 10549:2 10569:4 10578:3 10580:1 10587:3 10610:1 10655:1 10667:2 10683:1 10720:1 10725:1 10736:1 10758:1 10763:2 10776:1 10784:1 10786:1 10794:1 10795:2 10808:2 10820:1 10823:1 10835:5 10855:3 10857:1 10872:1 10883:1 10900:1 10915:3 10916:2 10927:1 10963:2 10964:2 10966:2 10992:1 10998:1 11002:1 11006:1 11024:1 11079:1 11090:1 11095:1 11107:2 11109:1 11123:4 11136:1 11144:1 11152:1 11169:1 11171:1 11180:1 11182:1 11183:1 11190:1 11192:1 11197:1 11203:1 11209:2 11213:1 11215:1 11216:4 11223:1 11228:1 11251:1 11252:3 11269:1 11277:1 11292:1 11308:1 11316:5 11324:4 11326:1 11357:8 11365:2 11369:1 11373:1 11388:1 11396:2 11404:1 11423:1 11428:1 11444:1 11454:1 11459:1 11464:1 11466:1 11505:2 11514:1 11515:1 11516:1 11529:1 11534:3 11539:2 11540:5 11548:1 11550:1 11586:1 11589:1 11590:1 11591:1 11602:2 11608:1 11617:2 11633:4 11634:1 11641:1 11643:1 11647:1 11653:1 11658:1 11672:1 11721:3 11724:1 11747:1 11751:1 11759:3 11762:4 11772:4 11778:3 11781:6 11784:1 11785:2 11788:3 11789:2 11794:1 11797:1 11805:1 11807:1 11829:1 11830:1 11831:1 11859:2 11891:1 11897:1 11900:2 11912:1 11919:1 11920:2 11922:1 11931:1 11934:1 11974:1 11975:1 11994:1 11995:1 12002:1 12009:1 12016:1 12026:1 12068:1 12085:1 12086:1 12098:4 12108:2 12120:1 12144:1 12147:4 12151:1 12155:1 12159:1 12160:2 12161:1 12164:1 12171:2 12186:1 12187:1 12189:1 12190:2 12200:1 12211:1 12213:1 12235:2 12239:1 12241:1 12244:3 12270:1 12274:1 12279:4 12298:1 12304:1 12309:1 12311:1 12325:2 12334:1 12353:4 12356:1 12367:1 12368:1 12371:1 12393:1 12397:1 12414:2 12431:2 12443:1 12455:1 12485:1 12488:4 12490:2 12518:1 12527:2 12530:1 12535:2 12539:2 12542:1 12545:1 12546:1 12551:1 12555:5 12556:1 12562:3 12616:3 12622:2 12626:1 12628:1 12632:1 12634:2 12641:2 12645:1 12663:1 12672:1 12682:1 12683:1 12688:1 12702:1 12705:1 12717:1 12753:1 12759:1 12765:1 12781:1 12790:1 12791:2 12834:1 12851:1 12859:1 12861:1 12878:1 12882:1 12886:2 12932:1 12940:1 12942:2 12950:1 12977:1 13005:3 13007:1 13008:2 13011:1 13024:1 13037:1 13053:1 13054:1 13055:2 13057:1 13058:3 13061:1 13069:1 13071:1 13080:2 13086:1 13094:1 13096:2 13097:1 13111:1 13115:1 13120:1 13131:1 13171:1 13184:1 13185:1 13193:1 13200:1 13205:6 13208:2 13215:2 13229:1 13230:2 13241:1 13244:1 13246:1 13263:1 13287:1 13300:2 13301:1 13335:1 13341:1 13351:1 13371:1 13372:1 13393:1 13394:1 13401:2 13411:1 13428:2 13429:4 13430:1 13432:1 13448:1 13452:1 13485:1 13508:1 13510:1 13532:1 13601:1 13622:1 13623:1 13638:2 13652:2 13653:1 13668:1 13693:1 13703:1 13713:1 13717:1 13761:1 13778:1 13779:1 13783:1 13788:1 13791:1 13792:1 13807:1 13841:1 13847:2 13879:1 13897:1 13919:1 13923:1 13924:1 13929:2 13931:1 13999:2 14025:2 14026:1 14033:1 14034:1 14036:1 14043:2 14062:1 14063:2 14064:1 14068:7 14073:1 14100:3 14114:2 14123:1 14124:1 14156:1 14168:1 14184:2 14196:1 14206:1 14213:1 14219:2 14220:5 14228:4 14242:1 14285:1 14301:1 14307:1 14311:14 14317:1 14328:1 14333:1 14355:1 14376:1 14382:1 14384:2 14386:2 14407:1 14416:2 14425:1 14465:1 14475:1 14485:1 14520:1 14521:2 14545:1 14568:1 14594:1 14606:3 14628:1 14633:2 14640:4 14644:1 14664:1 14669:1 14674:3 14683:1 14708:2 14730:1 14748:2 14771:2 14811:1 14812:1 14822:1 14823:3 14827:1 14839:1 14847:2 14861:2 14867:3 14870:1 14877:1 14905:1 14907:2 14910:2 14918:1 14921:2 14928:1 14939:1 14947:1 14952:1 14962:2 14965:1 14978:1 14993:1 15007:1 15021:1 15023:1 15035:1 15041:3 15043:2 15059:3 15082:2 15089:4 15090:1 15097:1 15120:1 15131:1 15145:1 15160:1 15168:1 15170:1 15171:1 15174:2 15179:1 15186:1 15208:1 15210:1 15229:1 15237:1 15251:1 15264:1 15287:1 15294:2 15305:1 15317:6 15329:1 15337:1 15338:1 15345:2 15362:1 15400:1 15401:1 15404:1 15411:1 15414:1 15420:1 15424:1 15435:1 15483:1 15510:3 15512:1 15513:1 15542:1 15555:1 15570:1 15574:1 15575:1 15586:2 15606:1 15615:1 15622:1 15633:1 15642:2 15666:1 15677:1 15682:1 15697:1 15706:1 15720:2 15728:1 15751:1 15757:1 15761:1 15769:1 15772:1 15787:1 15790:1 15791:3 15792:2 15802:2 15806:1 15807:1 15813:1 15826:1 15827:1 15832:1 15847:1 15854:3 15860:1 15897:1 15909:1 15910:3 15929:1 15971:1 15979:1 15987:1 15988:1 15992:1 15997:1 16009:1 16018:1 16053:1 16058:1 16066:1 16078:2 16082:1 16105:1 16110:1 16112:2 16115:3 16122:2 16131:1 16159:6 16163:1 16166:1 16170:1 16177:1 16225:1 16233:2 16234:1 16243:1 16262:1 16303:1 16306:1 16311:1 16312:1 16328:1 16332:1 16333:1 16336:1 16342:1 16345:1 16351:1 16365:1 16371:1 16372:1 16380:2 16383:1 16388:2 16401:2 16407:1 16419:1 16429:2 16433:1 16434:1 16463:1 16468:1 16477:2 16483:1 16490:1 16497:1 16498:1 16500:2 16509:1 16532:1 16536:1 16537:1 16552:1 16553:1 16562:1 16578:1 16585:1 16594:1 16609:2 16612:1 16614:1 16616:1 16627:1 16636:1 16638:1 16642:1 16644:1 16646:2 16652:4 16665:1 16673:1 16677:3 16681:2 16693:2 16695:2 16707:1 16745:1 16752:1 16762:3 16778:2 16780:1 16782:1 16787:1 16798:1 16810:1 16821:1 16826:1 16828:1 16841:1 16843:1 16845:1 16847:1 16850:5 16853:1 16860:1 16862:1 16868:1 16871:1 16872:2 16882:2 16888:1 16923:3 16934:1 16939:1 16956:1 16960:1 16963:1 16992:1 17016:3 17039:1 17050:1 17051:1 17057:1 17066:1 17079:1 17112:3 17115:2 17124:2 17156:2 17162:1 17170:1 17176:1 17177:1 17188:1 17194:1 17196:11 17206:2 17216:2 17224:1 17226:2 17233:1 17237:1 17238:1 17253:2 17261:1 17282:2 17296:1 17311:10 17329:1 17334:2 17364:3 17367:1 17372:1 17380:1 17418:1 17425:1 17427:1 17431:1 17454:1 17458:4 17464:1 17469:3 17470:2 17476:2 17477:4 17482:2 17484:1 17485:2 17486:3 17499:1 17537:1 17554:1 17567:1 17570:1 17575:1 17604:1 17606:1 17623:1 17630:1 17631:1 17632:2 17669:1 17675:1 17677:1 17684:1 17700:1 17704:1 17709:1 17742:2 17743:2 17749:1 17766:1 17783:1 17793:1 17833:1 17840:3 17859:1 17862:2 17870:3 17880:1 17889:2 17893:1 17915:2 17916:1 17929:1 17939:1 17945:2 17946:1 17950:1 17956:1 17959:3 17961:1 18014:1 18025:1 18037:2 18038:1 18115:1 18140:1 18171:5 18178:1 18180:1 18184:2 18191:3 18196:1 18203:1 18221:1 18230:1 18263:1 18265:4 18283:2 18288:1 18295:1 18317:1 18327:1 18334:1 18361:1 18372:1 18374:1 18397:2 18398:1 18415:1 18419:1 18458:2 18488:1 18508:1 18510:1 18512:1 18544:1 18563:6 18566:1 18571:1 18583:2 18622:1 18631:1 18637:1 18656:1 18665:1 18680:1 18682:1 18699:1 18749:1 18766:1 18773:1 18776:1 18783:1 18787:1 18793:2 18804:3 18805:1 18823:1 18839:1 18859:4 18881:1 18895:1 18903:2 18904:3 18916:1 18933:1 18939:2 18944:1 18956:2 18960:1 18982:5 18985:1 18995:3 19003:1 19008:2 19010:1 19018:1 19022:1 19048:2 19066:2 19079:1 19089:2 19094:1 19099:1 19116:1 19129:3 19138:1 19144:1 19158:1 19164:3 19173:6 19179:1 19233:2 19236:2 19247:3 19256:1 19260:1 19268:1 19282:6 19284:1 19287:1 19291:1 19295:1 19299:1 19301:1 19303:1 19310:1 19311:1 19312:1 19318:1 19325:1 19330:1 19333:1 19365:1 19385:1 19409:1 19410:1 19420:1 19431:2 19432:1 19445:1 19478:1 19510:1 19518:1 19538:1 19545:2 19582:1 19589:3 19605:5 19615:1 19621:1 19627:1 19662:1 19684:1 19688:2 19705:1 19723:1 19727:1 19733:1 19740:1 19746:1 19779:1 19784:1 19787:2 19788:2 19796:1 19802:1 19854:1 19861:2 19875:1 19889:1 19897:1 19906:1 19927:1 19929:1 19934:1 19945:2411 19954:1 19960:1 19963:1 19983:1 19997:1 20001:1 20023:1 20026:1 20027:1 20029:1 20043:1 20065:3 20080:1 20082:1 20125:2 20147:1 20169:1 20172:1 20178:1 20179:1 20185:1 20229:1 20235:1 20239:1 20287:2 20290:2 20300:1 20332:1 20342:1 20344:1 20380:1 20410:1 20413:1 20423:2 20442:1 20445:1 20457:1 20458:1 20464:1 20470:1 20472:1 20495:1 20502:3 20511:1 20519:1 20521:1 20533:1 20546:1 20547:1 20551:1 20556:4 20569:1 20591:1 20601:1 20616:1 20646:1 20670:1 20675:1 20680:1 20685:1 20690:1 20706:1 20711:1 20716:1 20730:3 20733:1 20754:1 20769:1 20786:1 20791:3 20805:1 20807:1 20812:1 20825:2 20830:1 20850:5 20903:6 20907:1 20908:1 20915:1 20916:1 20941:2 20943:1 20950:1 20957:1 20958:1 20964:1 20966:2 20971:1 20974:1 20983:1 20989:1 20993:3 20994:1 20997:1 20998:1 21009:1 21015:3 21021:1 21024:1 21037:1 21044:3 21045:1 21049:1 21063:1 21069:1 21072:2 21090:1 21112:1 21133:1 21139:1 21147:1 21156:1 21185:2 21188:3 21192:2 21208:1 21232:1 21242:1 21251:1 21258:1 21273:1 21283:2 21290:2 21294:3 21315:1 21325:2 21342:1 21355:1 21358:1 21374:1 21375:1 21381:1 21390:1 21394:1 21396:1 21423:1 21425:1 21427:1 21431:2 21444:1 21450:1 21460:1 21481:1 21485:1 21488:5 21491:1 21519:1 21527:1 21542:1 21556:3 21559:1 21562:2 21567:1 21570:1 21575:1 21576:1 21580:1 21590:1 21593:1 21597:1 21604:2 21607:3 21627:1 21629:1 21633:1 21641:4 21643:1 21652:2 21656:1 21657:1 21661:1 21669:1 21680:1 21682:1 21697:1 21700:1 21722:1 21727:1 21735:1 21736:1 21737:1 21759:4 21763:1 21767:1 21768:1 21779:1 21792:1 21839:1 21842:1 21851:1 21872:2 21875:1 21877:1 21885:1 21889:1 21909:1 21918:1 21920:1 21921:1 21929:1 21932:1 21933:1 21944:6 21950:1 21958:1 21960:1 21968:1 21969:1 21973:2 21995:2 22010:1 22013:1 22058:1 22062:1 22099:1 22105:2 22115:1 22134:1 22151:1 22165:1 22168:1 22171:1 22178:1 22179:1 22185:1 22203:1 22206:1 22207:1 22209:1 22210:1 22227:1 22246:1 22249:2 22265:1 22267:1 22280:2 22283:1 22308:1 22309:2 22318:2 22321:1 22336:1 22342:3 22345:2 22367:1 22385:1 22386:6 22388:1 22389:2 22394:2 22399:3 22408:2 22410:1 22415:1 22419:2 22420:1 22423:1 22425:1 22434:1 22436:1 22444:1 22483:1 22506:1 22512:3 22520:1 22521:1 22548:1 22552:1 22553:1 22558:2 22562:1 22577:1 22580:1 22585:1 22586:1 22589:1 22603:2 22605:2 22611:1 22622:2 22625:1 22638:1 22639:1 22642:1 22647:1 22651:2 22655:1 22664:3 22671:1 22687:1 22690:1 22712:3 22713:1 22739:1 22749:2 22754:1 22758:1 22768:1 22770:2 22773:1 22777:3 22781:2 22785:1 22786:1 22793:1 22801:1 22803:1 22814:2 22824:1 22831:1 22832:1 22838:1 22864:1 22878:1 22892:2 22901:2 22909:1 22918:2 22920:1 22921:3 22930:1 22933:2 22934:1 22948:1 22952:1 22955:1 22957:1 22958:1 22962:2 22964:1 22976:1 22981:3 22984:1 22986:2 22997:1 23007:1 23046:1 23057:1 23064:1 23071:2 23073:3 23077:1 23080:1 23089:1 23091:1 23093:1 23094:1 23133:1 23147:1 23161:1 23169:1 23170:1 23174:1 23180:1 23181:1 23190:2 23213:1 23219:1 23228:1 23233:3 23235:1 23250:1 23260:1 23283:1 23285:1 23302:1 23312:1 23317:2 23320:1 23321:1 23323:1 23324:1 23331:6 23345:1 23355:2 23368:1 23376:4 23382:3 23384:1 23400:1 23407:1 23409:1 23432:2 23440:1 23456:1 23464:2 23465:2 23467:1 23468:1 23471:1 23474:2 23476:1 23478:1 23481:1 23485:2 23486:2 23488:1 23491:2 23493:1 23494:1 23498:3 23499:7 23505:1 23514:1 23517:1 23536:1 23540:2 23549:1 23570:1 23637:2 23639:1 23640:1 23642:1 23644:3 23651:1 23655:1 23691:1 23699:1 23709:3 23710:1 23719:1 23726:1 23731:4 23734:2 23754:2 23756:1 23759:1 23765:2 23783:2 23793:1 23815:2 23822:1 23823:1 23831:1 23857:1 23863:1 23875:1 23889:1 23895:1 23902:1 23910:7 23924:2 23933:1 23948:4 23956:1 23963:2 23982:9 23983:1 23986:1 23988:1 23993:1 24026:1 24047:1 24051:2 24055:1 24057:1 24066:1 24081:1 24103:1 24116:1 24125:2 24153:6 24160:1 24198:1 24206:1 24210:1 24231:1 24234:1 24247:1 24249:1 24255:1 24257:1 24258:1 24267:1 24279:1 24288:1 24295:1 24297:2 24300:1 24333:1 24346:1 24363:1 24365:1 24392:1 24394:1 24402:1 24428:1 24429:1 24434:1 24439:1 24442:2 24452:1 24454:2 24456:1 24463:1 24465:1 24471:1 24487:1 24498:1 24502:1 24507:5 24513:1 24520:1 24530:2 24552:1 24576:1 24582:2 24585:4 24589:1 24596:1 24614:2 24622:1 24633:1 24635:1 24643:1 24647:1 24666:1 24671:3 24685:2 24687:1 24715:1 24716:1 24721:1 24744:4 24753:1 24760:4 24773:2 24798:1 24818:2 24821:1 24826:1 24849:1 24855:1 24857:1 24862:1 24866:1 24871:1 24876:1 24907:1 24914:1 24931:2 24939:3 24940:1 24962:3 24963:1 24966:1 24974:2 24980:1 24985:1 24999:1 25011:1 25020:1 25025:1 25029:1 25032:1 25037:1 25042:1 25050:1 25091:1 25094:1 25096:1 25101:2 25119:1 25136:1 25138:1 25144:1 25145:1 25155:2 25159:3 25162:1 25167:1 25188:3 25197:2 25202:1 25207:1 25215:1 25224:1 25233:1 25243:4 25244:1 25253:1 25264:1 25267:1 25271:1 25290:1 25295:1 25298:1 25308:3 25318:2 25340:1 25351:1 25352:2 25356:1 25365:1 25373:1 25403:1 25419:1 25436:2 25443:1 25444:1 25446:1 25461:1 25485:3 25492:1 25498:1 25507:1 25527:1 25551:1 25555:1 25562:1 25570:2 25574:1 25585:1 25586:1 25648:2 25649:1 25652:1 25670:1 25683:1 25699:1 25702:1 25765:2 25767:2 25769:2 25773:1 25803:1 25828:1 25833:1 25839:1 25842:1 25856:1 25857:1 25894:1 25905:1 25907:6 25928:2 25930:2 25936:1 25940:1 25972:1 25975:1 25993:1 26014:1 26031:1 26041:5 26042:1 26052:1 26074:1 26077:1 26078:1 26086:1 26106:1 26125:1 26144:3 26146:1 26161:1 26163:1 26172:2 26194:1 26201:1 26204:1 26209:1 26222:2 26225:1 26230:1 26248:2 26253:2 26264:1 26270:1 26271:1 26275:1 26279:1 26280:3 26294:1 26297:1 26303:1 26305:1 26339:2 26346:1 26361:3 26366:2 26401:1 26404:1 26409:2 26410:2 26413:1 26416:2 26417:2 26418:1 26424:1 26425:1 26435:1 26441:1 26442:1 26447:1 26462:2 26505:1 26507:1 26528:2 26538:3 26553:3 26556:2 26564:1 26566:1 26570:1 26571:1 26589:1 26591:1 26592:4 26593:2 26604:1 26619:1 26627:1 26649:1 26660:1 26662:1 26690:3 26706:1 26708:1 26716:1 26719:2 26755:1 26756:1 26788:5 26797:2 26862:1 26867:1 26869:1 26899:2 26922:1 26925:1 26950:1 26989:4 27008:1 27019:3 27022:1 27030:1 27034:7 27049:3 27057:1 27073:2 27074:1 27075:1 27076:1 27077:1 27079:1 27141:2 27158:3 27160:1 27173:1 27180:1 27181:1 27215:4 27218:3 27228:1 27230:1 27234:2 27235:2 27237:1 27243:1 27257:1 27267:1 27268:2 27272:2 27273:1 27283:1 27324:1 27335:1 27343:1 27344:1 27358:1 27369:1 27371:1 27374:1 27375:1 27395:2 27396:1 27403:1 27410:1 27413:1 27416:1 27434:1 27462:1 27486:2 27487:1 27493:1 27521:1 27524:1 27547:1 27554:1 27556:3 27558:7 27565:1 27573:1 27590:2 27626:1 27714:1 27720:1 27727:1 27736:1 27737:1 27753:1 27765:1 27787:1 27792:1 27794:2 27802:4 27843:1 27875:1 27885:1 27897:1 27899:1 27909:1 27913:1 27931:3 27935:1 27940:2 27945:1 27946:4 27978:1 27981:1 28027:1 28029:1 28045:1 28050:1 28054:1 28065:1 28066:1 28087:1 28088:1 28091:1 28093:1 28094:1 28099:1 28157:1 28167:1 28178:2 28198:1 28211:1 28218:1 28226:1 28230:1 28248:1 28250:1 28254:1 28307:2 28310:1 28317:1 28364:1 28375:1 28378:1 28381:1 28383:1 28385:1 28387:1 28398:1 28407:1 28430:1 28435:1 28438:1 28452:1 28455:1 28461:3 28463:5 28465:2 28476:1 28489:1 28500:1 28527:1 28534:1 28573:1 28584:1 28608:1 28618:1 28619:3 28623:1 28638:1 28639:2 28641:3 28647:1 28667:2 28676:1 28704:1 28714:1 28741:1 28750:1 28759:1 28760:1 28761:1 28766:3 28767:5 28776:1 28779:1 28795:1 28799:1 28801:2 28804:1 28815:3 28820:1 28824:1 28843:1 28845:1 28851:1 28858:1 28865:1 28870:4 28871:1 28875:3 28900:1 28911:1 28920:1 28929:1 28944:2 28954:1 28955:1 28963:1 29023:1 29047:2 29052:1 29066:1 29070:1 29073:2 29098:2 29100:1 29111:1 29113:1 29117:3 29124:2 29125:1 29126:1 29135:1 29137:3 29146:1 29172:3 29189:1 29196:2 29198:3 29200:1 29201:2 29218:1 29251:1 29257:1 29274:1 29279:1 29288:1 29301:3 29303:1 29319:5 29327:1 29372:2 29388:1 29392:1 29396:3 29399:1 29411:1 29416:1 29419:1 29420:1 29421:1 29422:1 29437:1 29443:1 29445:2 29446:1 29459:2 29460:1 29466:1 29468:3 29470:1 29472:2 29475:1 29484:1 29488:2 29490:1 29493:1 29496:3 29498:6 29503:1 29504:1 29509:1 29510:2 29513:2 29532:1 29539:1 29548:2 29549:1 29550:2 29558:1 29560:1 29585:1 29587:5 29594:1 29603:1 29622:1 29626:7 29627:1 29628:1 29649:1 29659:1 29660:1 29693:2 29700:1 29703:2 29711:1 29722:1 29729:1 29730:1 29732:1 29738:1 29785:1 29801:1 29823:1 29826:2 29827:1 29837:1 29847:1 29855:1 29858:2 29859:1 29919:2 29961:1 29965:1 29985:1 30010:1 30019:1 30024:2 30030:1 30047:1 30048:1 30052:2 30053:1 30088:1 30092:1 30093:1 30100:1 30113:1 30117:2 30131:1 30133:1 30153:1 30156:2 30200:3 30208:1 30212:1 30215:1 30232:1 30241:2 30254:1 30256:1 30261:1 30265:2 30285:1 30296:1 30297:1 30298:2 30300:1 30305:1 30312:1 30321:20 30328:1 30330:3 30347:1 30352:1 30356:1 30358:1 30365:4 30372:1 30384:1 30387:1 30392:1 30394:1 30406:1 30420:1 30445:3 30456:1 30464:1 30480:5 30489:4 30497:1 30527:11 30537:1 30574:1 30586:1 30601:1 30608:2 30618:1 30626:1 30631:1 30652:1 30655:1 30679:2 30711:2 30712:1 30721:2 30723:1 30726:2 30735:1 30739:2 30744:1 30748:1 30768:1 30770:2 30788:1 30809:1 30810:2 30813:2 30818:1 30819:2 30829:1 30833:2 30841:1 30846:1 30848:1 30852:1 30877:2 30880:1 30884:2 30887:3 30890:5 30891:1 30935:1 30939:1 30940:1 30953:1 30954:1 30958:2 30965:1 30974:3 31033:4 31038:1 31041:1 31065:1 31084:1 31119:1 31138:1 31143:1 31151:3 31152:2 31190:2 31206:1 31210:3 31222:2 31231:1 31269:1 31294:2 31300:1 31302:2 31306:1 31332:2 31336:2 31341:1 31347:3 31361:1 31376:1 31385:1 31397:2 31413:1 31419:1 31423:1 31427:1 31437:1 31440:2 31441:1 31460:3 31468:3 31476:1 31483:1 31485:1 31488:2 31505:1 31515:1 31530:3 31532:1 31538:1 31546:1 31558:1 31559:1 31561:1 31562:1 31565:4 31580:1 31601:1 31603:1 31606:1 31617:4 31624:1 31636:1 31646:3 31647:5 31654:3 31661:1 31662:1 31665:1 31668:1 31672:7 31678:1 31718:5 31722:1 31726:4 31733:1 31737:1 31743:1 31770:1 31779:1
dbb510ea1ad13888c6f572cfe38fb9cd8634fb12
885ee700356ad98a29fe87d97751e692062de746
/data/pos_exp/pos_data/finnish.medium.tst
a9ed896cae3e94951d349f129c25c6aab50ee14e
[]
no_license
LINGuistLIU/IGT
1e58bfea1e7d70bdff507c67fa856c55af5bbdc2
8b9ca93189424118a669582ce54192bf441fcc6a
refs/heads/master
2022-08-31T12:33:23.649666
2020-05-28T20:27:18
2020-05-28T20:27:18
267,152,155
0
0
null
null
null
null
UTF-8
Scilab
false
false
43,732
tst
finnish.medium.tst
ekstremisti ekstremisteihin N;IN+ALL;PL kähetä lienen_kähennyt V;ACT;PRS;PRF;POS;POT;1;SG kodifioida älkää_olko_kodifioineet V;ACT;PRS;PRF;NEG;IMP;2;PL ektoparasiitti ektoparasiitista N;IN+ABL;SG elintasokilpailu elintasokilpailu N;NOM;SG piikkimonni piikkimonnit N;NOM;PL silmämeikki silmämeikeiltä N;AT+ABL;PL platinointi platinoinnissa N;IN+ESS;SG ruhjoa ei_ole_ruhjonut V;ACT;PRS;PRF;NEG;IND;3;SG immuniteetti immuniteettia N;PRT;SG orgaani orgaaneina N;FRML;PL maavaikutusalus maavaikutusaluksissa N;IN+ESS;PL rynnätä ei_ole_rynnätty V;PASS;PRS;PRF;NEG;IND sepelöidä sepelöinette V;ACT;PRS;POS;POT;2;PL kadehtija kadehtijasta N;IN+ABL;SG tautofoninen tautofonisessa ADJ;IN+ESS;SG tähtimäinen tähtimäiselle ADJ;AT+ALL;SG optimoida en_ole_optimoinut V;ACT;PRS;PRF;NEG;IND;1;SG kumuloida ette_olisi_kumuloineet V;ACT;PRS;PRF;NEG;COND;2;PL kanadanhanhi kanadanhanhet N;ACC;PL toteutumaton toteutumattomitta ADJ;PRIV;PL kelata et_kelanne V;ACT;PRS;NEG;POT;2;SG ateisti ateisteihin N;IN+ALL;PL diplomaattisuus diplomaattisuuksin N;INS;PL tähystys tähystys N;NOM;SG synnyttää synnyttäköön V;ACT;PRS;POS;IMP;3;SG nyrjäyttää on_nyrjäyttänyt V;ACT;PRS;PRF;POS;IND;3;SG kompaktisointi kompaktisoinneista N;IN+ABL;PL raikastaa raikastaisi V;ACT;PRS;POS;COND;3;SG punttikello punttikelloilta N;AT+ABL;PL varislintu varislinnulta N;AT+ABL;SG larppaus larppauksilta N;AT+ABL;PL epätodellinen epätodellisiksi ADJ;TRANS;PL ruumen ruumenelta N;AT+ABL;SG fosforesoida eivät_fosforesoineet V;ACT;PST;NEG;IND;3;PL paahdella eivät_liene_paahdelleet V;ACT;PRS;PRF;NEG;POT;3;PL mojauttaa ei_ollut_mojauttanut V;ACT;PST;PRF;NEG;IND;3;SG paniikki paniikkeja N;PRT;PL havista älkäämme_olko_havisseet V;ACT;PRS;PRF;NEG;IMP;1;PL höyrypilli höyrypilleineen N;COM;PL fuusio fuusioista N;IN+ABL;PL katkelma katkelmien N;GEN;PL päällinen päällisessä N;IN+ESS;SG mitoittaa älä_ole_mitoittanut V;ACT;PRS;PRF;NEG;IMP;2;SG jättiläiskilpikonna jättiläiskilpikonniin N;IN+ALL;PL havaita lienen_havainnut V;ACT;PRS;PRF;POS;POT;1;SG shakata shakkasimme V;ACT;PST;POS;IND;1;PL SI-järjestelmä SI-järjestelmällä N;AT+ESS;SG spoileri spoilerit N;ACC;PL hajulukko hajulukkoina N;FRML;PL esikoisteos esikoisteoksissa N;IN+ESS;PL kalseampi kalseammilta ADJ;AT+ABL;PL henkilöityä henkilöityisimme V;ACT;PRS;POS;COND;1;PL nyökätä ei_ole_nyökännyt V;ACT;PRS;PRF;NEG;IND;3;SG konstruktio konstruktioina N;FRML;PL vähentää olisitte_vähentäneet V;ACT;PRS;PRF;POS;COND;2;PL näpistää näpistän V;ACT;PRS;POS;IND;1;SG vastuuvapaus vastuuvapaus N;ACC;SG kiinteyttää eivät_kiinteyttäisi V;ACT;PRS;NEG;COND;3;PL varoitella varoittele V;ACT;PRS;POS;IMP;2;SG tikkunekku tikkunekkuihin N;IN+ALL;PL tuoretuote tuoretuotteesta N;IN+ABL;SG haju hajuna N;FRML;SG kiinantaa ette_olleet_kiinantaneet V;ACT;PST;PRF;NEG;IND;2;PL irokeesikampaus irokeesikampaukseen N;IN+ALL;SG dreseerata ei_ole_dreseerannut V;ACT;PRS;PRF;NEG;IND;3;SG karnevalisoitua karnevalisoitunen V;ACT;PRS;POS;POT;1;SG laivanvarustaja laivanvarustajille N;AT+ALL;PL puoliutua älköön_puoliutuko V;ACT;PRS;NEG;IMP;3;SG jyskytellä jyskyttelisin V;ACT;PRS;POS;COND;1;SG paskahousu paskahoususta N;IN+ABL;SG stanssata olisimme_stanssanneet V;ACT;PRS;PRF;POS;COND;1;PL raskasvety raskasvedyissä N;IN+ESS;PL tekstailla ei_ole_tekstaillut V;ACT;PRS;PRF;NEG;IND;3;SG pilvenpiirtäjä pilvenpiirtäjiltä N;AT+ABL;PL öljylämmitteinen öljylämmitteisittä N;PRIV;PL varustautua on_varustauduttu V;PASS;PRS;PRF;POS;IND paikallisväri paikallisvärille N;AT+ALL;SG resiina resiinoiksi N;TRANS;PL hevonpaska hevonpaskassa N;IN+ESS;SG äitelöittää älköön_olko_äitelöittänyt V;ACT;PRS;PRF;NEG;IMP;3;SG hangata ei_ollut_hangannut V;ACT;PST;PRF;NEG;IND;3;SG ähkiä ovat_ähkineet V;ACT;PRS;PRF;POS;IND;3;PL karkauspäivä karkauspäivinä N;FRML;PL maavoima maavoimatta N;PRIV;SG rääkyä eivät_rääkyne V;ACT;PRS;NEG;POT;3;PL takaperoinen takaperoisia ADJ;PRT;PL diskota et_diskoa V;ACT;PRS;NEG;IND;2;SG messuta olisi_messuttu V;PASS;PRS;PRF;POS;COND näkemyksellinen näkemyksellisistä ADJ;IN+ABL;PL kerätä en_olisi_kerännyt V;ACT;PRS;PRF;NEG;COND;1;SG absurdein absurdeimmiksi ADJ;TRANS;PL merisotilaallinen merisotilaallisena ADJ;FRML;SG hotaista eivät_liene_hotaisseet V;ACT;PRS;PRF;NEG;POT;3;PL salakapakka salakapakka N;NOM;SG metsäpeura metsäpeuroille N;AT+ALL;PL sydänpuu sydänpuuksi N;TRANS;SG gonahtaa ei_gonahdeta V;PASS;PRS;NEG;IND brittienglanti brittienglannitta N;PRIV;SG heteroosi heteroosina N;FRML;SG orasyökkönen orasyökkösiin N;IN+ALL;PL keulapurje keulapurjeeksi N;TRANS;SG löyhentyä ette_löyhentyneet V;ACT;PST;NEG;IND;2;PL prässäys prässäyksettä N;PRIV;SG kuvantaa en_kuvantaisi V;ACT;PRS;NEG;COND;1;SG vitaminoida olkoon_vitaminoitu V;PASS;PRS;PRF;POS;IMP rypälesokeri rypälesokerilla N;AT+ESS;SG kuolemansyy kuolemansyyt N;NOM;PL nilkuttaa älkööt_olko_nilkuttaneet V;ACT;PRS;PRF;NEG;IMP;3;PL tihetä ei_ollut_tihennyt V;ACT;PST;PRF;NEG;IND;3;SG vieriä vierisit V;ACT;PRS;POS;COND;2;SG smokkipukuinen smokkipukuisiin ADJ;IN+ALL;PL meksikonsusi meksikonsudeksi N;TRANS;SG arfvedsoniitti arfvedsoniitissa N;IN+ESS;SG lineaatio lineaatio N;NOM;SG kosmos kosmoksille N;AT+ALL;PL fontanelli fontanelleilla N;AT+ESS;PL oligopoli oligopolilta N;AT+ABL;SG herkullinen herkullisten ADJ;GEADJ;PL keulia keulittaisiin V;PASS;PRS;POS;COND paastota paastosivat V;ACT;PST;POS;IND;3;PL täytekynä täytekynättä N;PRIV;SG unisin unisinta ADJ;PRT;SG formalisointi formalisointien N;GEN;PL karhentaa olisitte_karhentaneet V;ACT;PRS;PRF;POS;COND;2;PL kaksikymppinen kaksikymppiseltä N;AT+ABL;SG inhimillistää inhimillistät V;ACT;PRS;POS;IND;2;SG oudoksua älkööt_olko_oudoksuneet V;ACT;PRS;PRF;NEG;IMP;3;PL hallita ovat_hallinneet V;ACT;PRS;PRF;POS;IND;3;PL pruukata eivät_liene_pruukanneet V;ACT;PRS;PRF;NEG;POT;3;PL rampata emme_ramppaisi V;ACT;PRS;NEG;COND;1;PL loppuvaihe loppuvaiheen N;GEN;SG vedätyttää en_ollut_vedätyttänyt V;ACT;PST;PRF;NEG;IND;1;SG etnosentrisyys etnosentrisyyksiksi N;TRANS;PL saksinokka saksinokat N;ACC;PL painekyllästää olet_painekyllästänyt V;ACT;PRS;PRF;POS;IND;2;SG tavu tavuja N;PRT;PL kallonkutistaja kallonkutistajalta N;AT+ABL;SG närkästyä ei_liene_närkästytty V;PASS;PRS;PRF;NEG;POT allerginen allergisesta ADJ;IN+ABL;SG tarkka-ampuja tarkka-ampujan N;GEN;SG epuuttaa emme_liene_epuuttaneet V;ACT;PRS;PRF;NEG;POT;1;PL platinoida platinoitte V;ACT;PRS;POS;IND;2;PL hillastaja hillastajasta N;IN+ABL;SG mallata mallaisitte V;ACT;PRS;POS;COND;2;PL pulpetti pulpetitta N;PRIV;SG laastita lienet_laastinnut V;ACT;PRS;PRF;POS;POT;2;SG fudata et_ole_fudannut V;ACT;PRS;PRF;NEG;IND;2;SG eksellenssi eksellenssittä N;PRIV;SG lohkohedelmä lohkohedelmänä N;FRML;SG leimuta älkäämme_olko_leimunneet V;ACT;PRS;PRF;NEG;IMP;1;PL krematoida emme_olleet_krematoineet V;ACT;PST;PRF;NEG;IND;1;PL äkkipikaisuus äkkipikaisuuksilta N;AT+ABL;PL sananmukainen sananmukaisista ADJ;IN+ABL;PL sähköposti sähköpostina N;FRML;SG dieselkäyttöinen dieselkäyttöisittä ADJ;PRIV;PL jättiläiskalmari jättiläiskalmareille N;AT+ALL;PL säädellä säätelisimme V;ACT;PRS;POS;COND;1;PL oikoa oikonemme V;ACT;PRS;POS;POT;1;PL autismi autismeineen N;COM;PL laukkuryssä laukkuryssältä N;AT+ABL;SG hektisyys hektisyyksiksi N;TRANS;PL viisikko viisikko N;NOM;SG riiustaa älköön_riiustako V;ACT;PRS;NEG;IMP;3;SG virtaama virtaamilta N;AT+ABL;PL möly mölyittä N;PRIV;PL marras martaiksi ADJ;TRANS;PL pommituskone pommituskone N;NOM;SG extreme-laji extreme-lajille N;AT+ALL;SG avartaa avartanette V;ACT;PRS;POS;POT;2;PL mustarousku mustarouskusta N;IN+ABL;SG hangata eivät_liene_hanganneet V;ACT;PRS;PRF;NEG;POT;3;PL järjestelmällistyttää järjestelmällistyttäisimme V;ACT;PRS;POS;COND;1;PL reväistä reväisisin V;ACT;PRS;POS;COND;1;SG tilinumero tilinumeroja N;PRT;PL jarrutusjälki jarrutusjäljet N;NOM;PL hiustenhoitoaine hiustenhoitoaineena N;FRML;SG ristikoida lienee_ristikoinut V;ACT;PRS;PRF;POS;POT;3;SG imaami imaameitta N;PRIV;PL plokata plokattaisiin V;PASS;PRS;POS;COND steriloida on_steriloinut V;ACT;PRS;PRF;POS;IND;3;SG kuolokohta kuolokohdat N;NOM;PL itsemurhasopimus itsemurhasopimuksitta N;PRIV;PL kyörätä en_liene_kyörännyt V;ACT;PRS;PRF;NEG;POT;1;SG kartiopullistuma kartiopullistumalta N;AT+ABL;SG maratoonari maratoonarin N;GEN;SG itkuinen itkuista ADJ;PRT;SG suolautua on_suolauduttu V;PASS;PRS;PRF;POS;IND sähliä on_sählinyt V;ACT;PRS;PRF;POS;IND;3;SG velmuilija velmuilijaan N;IN+ALL;SG heittyä lienee_heittynyt V;ACT;PRS;PRF;POS;POT;3;SG irrota irronnemme V;ACT;PRS;POS;POT;1;PL harmaantunut harmaantuneina ADJ;FRML;PL joukkomurhaaja joukkomurhaajatta N;PRIV;SG episodi episodeiksi N;TRANS;PL etujoukko etujoukosta N;IN+ABL;SG buukata olin_buukannut V;ACT;PST;PRF;POS;IND;1;SG lyhytikäinen lyhytikäisiä ADJ;PRT;PL kitkeröittää olisivat_kitkeröittäneet V;ACT;PRS;PRF;POS;COND;3;PL kouluttaa olitte_kouluttaneet V;ACT;PST;PRF;POS;IND;2;PL haukahdella ette_haukahdelle V;ACT;PRS;NEG;POT;2;PL hoitohistoria hoitohistoriassa N;IN+ESS;SG pummata olisitte_pummanneet V;ACT;PRS;PRF;POS;COND;2;PL sensitiivinen sensitiiviset ADJ;ACC;PL poiju poijuilta N;AT+ABL;PL rautatieyhteys rautatieyhteykset N;NOM;PL zoomata älkää_zoomatko V;ACT;PRS;NEG;IMP;2;PL lössiylänkö lössiylänkö N;ACC;SG maistua lienette_maistuneet V;ACT;PRS;PRF;POS;POT;2;PL latvialainen latvialaisten N;GEN;PL reunamoreeni reunamoreenien N;GEN;PL tuivertaa lienee_tuivertanut V;ACT;PRS;PRF;POS;POT;3;SG sallia et_sallisi V;ACT;PRS;NEG;COND;2;SG laho lahoon N;IN+ALL;SG siirros siirros N;NOM;SG tax-free-myymälä tax-free-myymälöistä N;IN+ABL;PL osoite osoitteelta N;AT+ABL;SG aerobiologinen aerobiologisitta ADJ;PRIV;PL böömiläinen böömiläisiksi ADJ;TRANS;PL ballista ballistasta N;IN+ABL;SG kipertyä en_kipertynyt V;ACT;PST;NEG;IND;1;SG hivutella et_olisi_hivutellut V;ACT;PRS;PRF;NEG;COND;2;SG betoni betonein N;INS;PL yrittäjä yrittäjineen N;COM;PL loitontua ette_loitontune V;ACT;PRS;NEG;POT;2;PL virtsaelintautioppi virtsaelintautioppeihin N;IN+ALL;PL keskikymri keskikymriin N;IN+ALL;SG untuvatäkki untuvatäkeillä N;AT+ESS;PL nelikerroksinen nelikerroksisilta ADJ;AT+ABL;PL manila maniloitta N;PRIV;PL armas armaina N;FRML;PL nolostua nolostuttakoon V;PASS;PRS;POS;IMP sirkadiaanirytmi sirkadiaanirytmillä N;AT+ESS;SG liikennöidä liikennöidä V;NFIN kanavoida kanavoikaa V;ACT;PRS;POS;IMP;2;PL häränliha häränlihoiksi N;TRANS;PL kalastajakylä kalastajakylät N;NOM;PL kotimaistua kotimaistutte V;ACT;PRS;POS;IND;2;PL elinvoimaisuus elinvoimaisuuteen N;IN+ALL;SG nuivuus nuivuuden N;GEN;SG pedata ei_pedannut V;ACT;PST;NEG;IND;3;SG nuljahtaa älkäämme_nuljahtako V;ACT;PRS;NEG;IMP;1;PL vatsalihakset vatsalihakset N;ACC;PL lennättää lennättäisivät V;ACT;PRS;POS;COND;3;PL korvata korvaa V;ACT;PRS;POS;IND;3;SG kouluttua ette_olleet_kouluttuneet V;ACT;PST;PRF;NEG;IND;2;PL temperamenttinen temperamenttinen ADJ;NOM;SG julli julliksi N;TRANS;SG tuohtua tuohtukoon V;ACT;PRS;POS;IMP;3;SG kolttasaamelainen kolttasaamelaisetta ADJ;PRIV;SG huuruuntua oli_huuruunnuttu V;PASS;PST;PRF;POS;IND nelinkertaistua nelinkertaistukaamme V;ACT;PRS;POS;IMP;1;PL sillihapero sillihaperoja N;PRT;PL romauttaa eivät_olisi_romauttaneet V;ACT;PRS;PRF;NEG;COND;3;PL äänestysprosentti äänestysprosenttia N;PRT;SG gangliosidoosi gangliosidoositta N;PRIV;SG höyläytyä olisin_höyläytynyt V;ACT;PRS;PRF;POS;COND;1;SG prätkä prätkä N;ACC;SG kiehauttaminen kiehauttamiset N;NOM;PL tasavalta tasavalloitta N;PRIV;PL lainsäädännöllinen lainsäädännöllistä ADJ;PRT;SG penetroida ei_penetroitu V;PASS;PST;NEG;IND jääpala jääpalasta N;IN+ABL;SG laskiainen laskiaiset N;NOM;PL bussikaista bussikaistoitta N;PRIV;PL rauhoitusaika rauhoitusajoista N;IN+ABL;PL uskonnottomuus uskonnottomuuksitta N;PRIV;PL tandempyörä tandempyöräksi N;TRANS;SG sauvoin sauvoimia N;PRT;PL kivivilla kivivilloiksi N;TRANS;PL oikeusoppinut oikeusoppineista N;IN+ABL;PL osmankäämi osmankäämit N;NOM;PL tietokoneistaa ei_olisi_tietokoneistettu V;PASS;PRS;PRF;NEG;COND ystävyys ystävyys N;NOM;SG sensuelli sensuelleille ADJ;AT+ALL;PL ripeksiä ripeksit V;ACT;PST;POS;IND;2;SG kapeuttaa oli_kapeuttanut V;ACT;PST;PRF;POS;IND;3;SG kaislikko kaislikoiksi N;TRANS;PL rosetti roseteille N;AT+ALL;PL nesosilikaatti nesosilikaateille N;AT+ALL;PL hylätä ei_hylätty V;PASS;PST;NEG;IND päivämäärä päivämäärille N;AT+ALL;PL kalastuskortti kalastuskortille N;AT+ALL;SG napsutella olivat_napsutelleet V;ACT;PST;PRF;POS;IND;3;PL työmaakypärä työmaakypärältä N;AT+ABL;SG hevosenkenkä hevosenkengiltä N;AT+ABL;PL hiestyä en_liene_hiestynyt V;ACT;PRS;PRF;NEG;POT;1;SG poltella olette_poltelleet V;ACT;PRS;PRF;POS;IND;2;PL flunssakausi flunssakausissa N;IN+ESS;PL puurtaa emme_puurtaisi V;ACT;PRS;NEG;COND;1;PL loikkia eivät_olisi_loikkineet V;ACT;PRS;PRF;NEG;COND;3;PL kirskuttaa kirskuttaisitte V;ACT;PRS;POS;COND;2;PL rapurutto rapurutoiksi N;TRANS;PL allekirjoittanut allekirjoittanut N;ACC;SG hakku hakussa N;IN+ESS;SG rutistaa älä_ole_rutistanut V;ACT;PRS;PRF;NEG;IMP;2;SG sedimentoitua ovat_sedimentoituneet V;ACT;PRS;PRF;POS;IND;3;PL valittaa valittaa V;NFIN oikoilla ette_ole_oikoilleet V;ACT;PRS;PRF;NEG;IND;2;PL kesipuoli kesipuoliksi N;TRANS;PL tuulinen tuulisina ADJ;FRML;PL vetovoimainen vetovoimaiselle ADJ;AT+ALL;SG moottoroida eivät_moottoroine V;ACT;PRS;NEG;POT;3;PL orkesterisovitus orkesterisovituksia N;PRT;PL ennätyksellinen ennätyksellisin ADJ;INS;PL silote silotteetta N;PRIV;SG rukouslippu rukouslipusta N;IN+ABL;SG mukautua älä_ole_mukautunut V;ACT;PRS;PRF;NEG;IMP;2;SG alentaa alensit V;ACT;PST;POS;IND;2;SG booraksi boorakseja N;PRT;PL kirkua et_ole_kirkunut V;ACT;PRS;PRF;NEG;IND;2;SG havahtua lienee_havahduttu V;PASS;PRS;PRF;POS;POT standardoitua ei_ole_standardoitunut V;ACT;PRS;PRF;NEG;IND;3;SG keskeyttäjä keskeyttäjissä N;IN+ESS;PL banaalistaa et_liene_banaalistanut V;ACT;PRS;PRF;NEG;POT;2;SG informatiivinen informatiivisista ADJ;IN+ABL;PL hakkapeliitta hakkapeliitoiksi N;TRANS;PL tukistaa älkööt_olko_tukistaneet V;ACT;PRS;PRF;NEG;IMP;3;PL geomorfologinen geomorfologisesta ADJ;IN+ABL;SG kasautua kasauduttaisiin V;PASS;PRS;POS;COND maharauhanen maharauhasia N;PRT;PL kimaltaa kimallamme V;ACT;PRS;POS;IND;1;PL protoplaneetta protoplaneettaan N;IN+ALL;SG piirityskone piirityskoneilla N;AT+ESS;PL ruskistua et_olisi_ruskistunut V;ACT;PRS;PRF;NEG;COND;2;SG tuutoroida ei_liene_tuutoroitu V;PASS;PRS;PRF;NEG;POT csárdás csárdáseista N;IN+ABL;PL biitti biitteihin N;IN+ALL;PL kymmenys kymmenyksestä N;IN+ABL;SG puistella älä_puistele V;ACT;PRS;NEG;IMP;2;SG konstantti konstanttien N;GEN;PL täpärä täpärät ADJ;NOM;PL pohjallinen pohjallisille N;AT+ALL;PL kollektiivi kollektiivina N;FRML;SG ryöstöviljellä ryöstöviljelisin V;ACT;PRS;POS;COND;1;SG radiokuva radiokuvalta N;AT+ABL;SG murskautua lienee_murskautunut V;ACT;PRS;PRF;POS;POT;3;SG nokkaista ei_nokkaisse V;ACT;PRS;NEG;POT;3;SG turnaus turnauksissa N;IN+ESS;PL liehakoida en_olisi_liehakoinut V;ACT;PRS;PRF;NEG;COND;1;SG osaaottavainen osaaottavaisiin ADJ;IN+ALL;PL mutsi mutseilla N;AT+ESS;PL kohdanto kohdannolle N;AT+ALL;SG impotentti impotenteitta ADJ;PRIV;PL mustentaa ei_olisi_mustennettu V;PASS;PRS;PRF;NEG;COND totuttautua älköön_totuttauduttako V;PASS;PRS;NEG;IMP yhdistyä yhdistyt V;ACT;PRS;POS;IND;2;SG taantumuksellinen taantumukselliselle ADJ;AT+ALL;SG suoperäinen suoperäisenä ADJ;FRML;SG omistautua eivät_omistautune V;ACT;PRS;NEG;POT;3;PL köynnös köynnökselle N;AT+ALL;SG harppia olkaa_harppineet V;ACT;PRS;PRF;POS;IMP;2;PL ruotsalaistaa ruotsalaistettava V.PTCP;PASS;PRS mirrori mirrorin N;GEN;SG laryngiitti laryngiitista N;IN+ABL;SG piiras piirailla N;AT+ESS;PL kellistää ei_kellistä V;ACT;PRS;NEG;IND;3;SG sisarentytär sisarentyttäreksi N;TRANS;SG harmahtaa olkaamme_harmahtaneet V;ACT;PRS;PRF;POS;IMP;1;PL uruguaylainen uruguaylaiset ADJ;NOM;PL havainnollistaa olisimme_havainnollistaneet V;ACT;PRS;PRF;POS;COND;1;PL porhaltaa ette_olleet_porhaltaneet V;ACT;PST;PRF;NEG;IND;2;PL autokoulu autokouluin N;INS;PL kivetä kivettiin V;PASS;PST;POS;IND muodostaa olisi_muodostanut V;ACT;PRS;PRF;POS;COND;3;SG kritikoida kritikoimme V;ACT;PST;POS;IND;1;PL bahaisti bahaistien N;GEN;PL stailata et_ole_stailannut V;ACT;PRS;PRF;NEG;IND;2;SG käyrä käyrättä N;PRIV;SG kalimaasälpä kalimaasälvässä N;IN+ESS;SG näpistää ei_ollut_näpistetty V;PASS;PST;PRF;NEG;IND mustankipein mustankipeimpinä ADJ;FRML;PL lusikoida lusikoin V;ACT;PRS;POS;IND;1;SG räätälöidä en_räätälöi V;ACT;PRS;NEG;IND;1;SG samppanjavispilä samppanjavispilöille N;AT+ALL;PL kompata komppaat V;ACT;PRS;POS;IND;2;SG palpeerata ette_liene_palpeeranneet V;ACT;PRS;PRF;NEG;POT;2;PL pörhistää ei_pörhistettäne V;PASS;PRS;NEG;POT rivitalo rivitaloja N;PRT;PL tilinumero tilinumeroitta N;PRIV;PL esineellinen esineellisten ADJ;GEADJ;PL terrori-isku terrori-iskuista N;IN+ABL;PL palttina palttinoiden N;GEN;PL levollinen levollisella ADJ;AT+ESS;SG eksperimentaalinen eksperimentaalisina ADJ;FRML;PL kaunistua lienevät_kaunistuneet V;ACT;PRS;PRF;POS;POT;3;PL meluisa meluisa ADJ;ACC;SG teologia teologiat N;ACC;PL miehisyys miehisyyksille N;AT+ALL;PL synnytys synnytyksellä N;AT+ESS;SG korjautua et_korjautuisi V;ACT;PRS;NEG;COND;2;SG tähtönen tähtönen N;NOM;SG nytkyä älkää_olko_nytkyneet V;ACT;PRS;PRF;NEG;IMP;2;PL edustaja-aloite edustaja-aloittein N;INS;PL dybowskinmangusti dybowskinmangustilla N;AT+ESS;SG vilvoitella älköön_vilvoiteltako V;PASS;PRS;NEG;IMP porhaltaa et_ole_porhaltanut V;ACT;PRS;PRF;NEG;IND;2;SG luotta luotalla N;AT+ESS;SG viininvalmistamo viininvalmistamoina N;FRML;PL yksisuuntainen yksisuuntaisilta ADJ;AT+ABL;PL hienovaraisuus hienovaraisuuksitta N;PRIV;PL itsenäistää emme_olisi_itsenäistäneet V;ACT;PRS;PRF;NEG;COND;1;PL couscous cous N;TRANS;PL tärähtää tärähtäisi V;ACT;PRS;POS;COND;3;SG kärsädiki kärsädikistä N;IN+ABL;SG euroopankuusi euroopankuuset N;ACC;PL saatanallinen saatanallisetta ADJ;PRIV;SG etujalka etujalka N;NOM;SG tanssia tanssittava V.PTCP;PASS;PRS rapistua emme_olisi_rapistuneet V;ACT;PRS;PRF;NEG;COND;1;PL askelluslaite askelluslaittein N;INS;PL tilaisuus tilaisuuden N;GEN;SG tunnetila tunnetiloista N;IN+ABL;PL filosofoida filosofoitte V;ACT;PRS;POS;IND;2;PL pökerryttää älköön_olko_pökerryttänyt V;ACT;PRS;PRF;NEG;IMP;3;SG mollata älkäämme_mollatko V;ACT;PRS;NEG;IMP;1;PL himmentää himmennettiin V;PASS;PST;POS;IND suvaita suvaitset V;ACT;PRS;POS;IND;2;SG iestää ei_ollut_iestänyt V;ACT;PST;PRF;NEG;IND;3;SG aikuistua ette_aikuistuisi V;ACT;PRS;NEG;COND;2;PL sotarikos sotarikosten N;GEN;PL äyskyä eivät_ole_äyskyneet V;ACT;PRS;PRF;NEG;IND;3;PL radioasema radioasemat N;ACC;PL keriytyä keriytyisit V;ACT;PRS;POS;COND;2;SG kiitellä ei_kiiteltäne V;PASS;PRS;NEG;POT kärrätä kärräisit V;ACT;PRS;POS;COND;2;SG vaikutus vaikutuksiin N;IN+ALL;PL hoiketa älkää_hoiketko V;ACT;PRS;NEG;IMP;2;PL biomassa biomassoina N;FRML;PL nikkaroida en_nikkaroisi V;ACT;PRS;NEG;COND;1;SG aukoa auot V;ACT;PRS;POS;IND;2;SG maikkua maikuttaneen V;PASS;PRS;POS;POT edamjuusto edamjuustoissa N;IN+ESS;PL urputtaa urputtanet V;ACT;PRS;POS;POT;2;SG miedontaa miedonnetaan V;PASS;PRS;POS;IND onttosarvinen onttosarvisille N;AT+ALL;PL muhinoida muhinoi V;ACT;PST;POS;IND;3;SG rähmiä emme_rähmineet V;ACT;PST;NEG;IND;1;PL sokkotesti sokkotestinä N;FRML;SG orjuuttaa emme_orjuuttane V;ACT;PRS;NEG;POT;1;PL rampata rampattiin V;PASS;PST;POS;IND ehdottomuus ehdottomuudessa N;IN+ESS;SG kromosomiluku kromosomilukuina N;FRML;PL kuutiomainen kuutiomaisiksi ADJ;TRANS;PL asfaltoida ei_asfaltoitane V;PASS;PRS;NEG;POT dyykata dyykannee V;ACT;PRS;POS;POT;3;SG fasetti fasetilla N;AT+ESS;SG fruktoosi fruktoosin N;GEN;SG palmu palmuista N;IN+ABL;PL adventtikalenteri adventtikalentereista N;IN+ABL;PL sappikivi sappikiveen N;IN+ALL;SG nojailla nojailisitte V;ACT;PRS;POS;COND;2;PL rantautua olet_rantautunut V;ACT;PRS;PRF;POS;IND;2;SG läpikäydä ei_liene_läpikäyty V;PASS;PRS;PRF;NEG;POT penetranssi penetranssia N;PRT;SG lotta lotalla N;AT+ESS;SG toive toivein N;INS;PL rikkikiisu rikkikiisuitta N;PRIV;PL kaaviloida en_liene_kaaviloinut V;ACT;PRS;PRF;NEG;POT;1;SG neuvottelupöytä neuvottelupöytä N;NOM;SG nauliutua ei_nauliutune V;ACT;PRS;NEG;POT;3;SG näpistellä olkoot_näpistelleet V;ACT;PRS;PRF;POS;IMP;3;PL autoasema autoaseman N;GEN;SG harmonistaa olisin_harmonistanut V;ACT;PRS;PRF;POS;COND;1;SG korskahtaa ei_korskahda V;ACT;PRS;NEG;IND;3;SG liuota emme_liuonneet V;ACT;PST;NEG;IND;1;PL englannintaa et_englannintaisi V;ACT;PRS;NEG;COND;2;SG loanheittäjä loanheittäjinä N;FRML;PL kobolttiväri kobolttiväreissä N;IN+ESS;PL mongertaa mongertava V.PTCP;ACT;PRS pehmis pehmikseltä N;AT+ABL;SG ennakkoluuloinen ennakkoluuloisetta ADJ;PRIV;SG loppukevät loppukeväineen N;COM;PL adiadokokineesi adiadokokineeseinä N;FRML;PL inhimillisin inhimillisimmästä ADJ;IN+ABL;SG laakio laakiolla N;AT+ESS;SG reunusta reunustana N;FRML;SG kunnallistaa oli_kunnallistettu V;PASS;PST;PRF;POS;IND tuulipuisto tuulipuistoihin N;IN+ALL;PL unilääke unilääkkeen N;GEN;SG topologia topologioitta N;PRIV;PL näpelöidä ei_näpelöitäisi V;PASS;PRS;NEG;COND paksuntua lienevät_paksuntuneet V;ACT;PRS;PRF;POS;POT;3;PL sahuu sahuuseen N;IN+ALL;SG natriumfluoriasetaatti natriumfluoriasetaatteina N;FRML;PL kaatumatauti kaatumatauteineen N;COM;PL chilenpussirotta chilenpussirotta N;NOM;SG univormupukuinen univormupukuisena ADJ;FRML;SG selkiyttää olkoot_selkiyttäneet V;ACT;PRS;PRF;POS;IMP;3;PL safka safkaa N;PRT;SG tikitys tikitykseksi N;TRANS;SG kupertaa olkoot_kupertaneet V;ACT;PRS;PRF;POS;IMP;3;PL kierintä kierinnöiksi N;TRANS;PL paikkaustiedosto paikkaustiedostoa N;PRT;SG kuopia olkoon_kuopinut V;ACT;PRS;PRF;POS;IMP;3;SG seditellä ei_seditellyt V;ACT;PST;NEG;IND;3;SG pandakarhu pandakarhusta N;IN+ABL;SG taipua oli_taipunut V;ACT;PST;PRF;POS;IND;3;SG yhtiöittää yhtiöittänet V;ACT;PRS;POS;POT;2;SG vääntäytyä ette_vääntäytyne V;ACT;PRS;NEG;POT;2;PL ammuskella ei_ammuskelisi V;ACT;PRS;NEG;COND;3;SG ärsyyntyä olimme_ärsyyntyneet V;ACT;PST;PRF;POS;IND;1;PL väittää olimme_väittäneet V;ACT;PST;PRF;POS;IND;1;PL jäsentyä älkäämme_jäsentykö V;ACT;PRS;NEG;IMP;1;PL loiskua en_loisku V;ACT;PRS;NEG;IND;1;SG katsoa_vierestä olisin_katsonut_vierestä V;ACT;PRS;PRF;POS;COND;1;SG fregattilintu fregattilintuihin N;IN+ALL;PL pahennus pahennuksena N;FRML;SG aivokuume aivokuumeena N;FRML;SG banja banjoista N;IN+ABL;PL finanssitiede finanssitieteeksi N;TRANS;SG luimistaa olisit_luimistanut V;ACT;PRS;PRF;POS;COND;2;SG vahvuinen vahvuisetta ADJ;PRIV;SG asemoida asemoidaan V;PASS;PRS;POS;IND päärmätty päärmätyiksi ADJ;TRANS;PL herpaannuttaa olet_herpaannuttanut V;ACT;PRS;PRF;POS;IND;2;SG puolipullo puolipulloa N;PRT;SG sinappikaali sinappikaalin N;GEN;SG kirosana kirosana N;ACC;SG karikatyristi karikatyristeiksi N;TRANS;PL öljyntuonti öljyntuonnitta N;PRIV;SG sekoittua olisit_sekoittunut V;ACT;PRS;PRF;POS;COND;2;SG nyppäistä nyppäissyt V.PTCP;ACT;PST siirtymäriitti siirtymäriiteistä N;IN+ABL;PL huoata älä_ole_huoannut V;ACT;PRS;PRF;NEG;IMP;2;SG kuherrella älköön_olko_kuherrellut V;ACT;PRS;PRF;NEG;IMP;3;SG havisuttaa ei_ollut_havisutettu V;PASS;PST;PRF;NEG;IND blondiini blondiinit N;NOM;PL leikkautua on_leikkauduttu V;PASS;PRS;PRF;POS;IND huoltaja huoltajista N;IN+ABL;PL fääri fäärissä N;IN+ESS;SG lutkuttaa älköön_lutkutettako V;PASS;PRS;NEG;IMP pedari pedareilla N;AT+ESS;PL sarveiskalvo sarveiskalvotta N;PRIV;SG pohjoisempi pohjoisemmitta ADJ;PRIV;PL ilmituoda älkööt_ilmituoko V;ACT;PRS;NEG;IMP;3;PL agakonna agakonnalta N;AT+ABL;SG ehkäisyrengas ehkäisyrenkaat N;ACC;PL kalliokyyhky kalliokyyhkyksi N;TRANS;SG ruoansulatusneste ruoansulatusnesteitä N;PRT;PL mestarinäyte mestarinäytteettä N;PRIV;SG prosenttipalkkio prosenttipalkkioiden N;GEN;PL pertuska pertuskat N;NOM;PL vitsailla olet_vitsaillut V;ACT;PRS;PRF;POS;IND;2;SG saattohoito saattohoidoille N;AT+ALL;PL dubnium dubniumien N;GEN;PL ämpäröidä olivat_ämpäröineet V;ACT;PST;PRF;POS;IND;3;PL ympyröidä emme_ympyröisi V;ACT;PRS;NEG;COND;1;PL immenkalvo immenkalvoille N;AT+ALL;PL risteily risteilyn N;GEN;SG seksageesima seksageesimaan N;IN+ALL;SG establishment establishmentin N;GEN;SG kollo kolloissa ADJ;IN+ESS;PL rakennushanke rakennushankkeiksi N;TRANS;PL polskia polskivat V;ACT;PRS;POS;IND;3;PL virtsata virtsatkaamme V;ACT;PRS;POS;IMP;1;PL nuortua lienet_nuortunut V;ACT;PRS;PRF;POS;POT;2;SG järvilohi järviloheen N;IN+ALL;SG ilmailla en_liene_ilmaillut V;ACT;PRS;PRF;NEG;POT;1;SG koksautua olet_koksautunut V;ACT;PRS;PRF;POS;IND;2;SG kauppatavara kauppatavaratta N;PRIV;SG afakia afakiaan N;IN+ALL;SG kivisolu kivisoluilla N;AT+ESS;PL mekaaninen mekaanisina ADJ;FRML;PL yöapina yöapinoihin N;IN+ALL;PL pistellä en_pistelisi V;ACT;PRS;NEG;COND;1;SG taistelupanssarivaunu taistelupanssarivaunulta N;AT+ABL;SG rautakanki rautakanki N;ACC;SG öljynetsintä öljynetsinnöin N;INS;PL veljes veljeksissä N;IN+ESS;PL patukka patukoita N;PRT;PL kirveltää lienee_kirveltänyt V;ACT;PRS;PRF;POS;POT;3;SG metsitys metsitykseltä N;AT+ABL;SG hommata eivät_olisi_hommanneet V;ACT;PRS;PRF;NEG;COND;3;PL spondylodiskiitti spondylodiskiiteilta N;AT+ABL;PL briketti briketille N;AT+ALL;SG modifioitua eivät_ole_modifioituneet V;ACT;PRS;PRF;NEG;IND;3;PL etanoli etanoleineen N;COM;PL hiustenhalkaisu hiustenhalkaisut N;ACC;PL nistiä nistiköön V;ACT;PRS;POS;IMP;3;SG punastuttaa punastuttanen V;ACT;PRS;POS;POT;1;SG huitaista huitaissevat V;ACT;PRS;POS;POT;3;PL uskontokunta uskontokunnassa N;IN+ESS;SG torke torkkeen N;GEN;SG surffata surffannee V;ACT;PRS;POS;POT;3;SG ruhtinaskunta ruhtinaskuntaa N;PRT;SG jouhipaita jouhipaidat N;NOM;PL lauheta lauhetaan V;PASS;PRS;POS;IND tyhjetä olisit_tyhjennyt V;ACT;PRS;PRF;POS;COND;2;SG käyristää et_käyristäne V;ACT;PRS;NEG;POT;2;SG helmalinja helmalinjoiksi N;TRANS;PL nyppy nyppyinä N;FRML;PL molemminpuolisuus molemminpuolisuuksineen N;COM;PL kenttäyhtälö kenttäyhtälöissä N;IN+ESS;PL hidastua hidastuttakoon V;PASS;PRS;POS;IMP määintä määintä N;NOM;SG kuroutua ei_olisi_kuroutunut V;ACT;PRS;PRF;NEG;COND;3;SG onginta onginnat N;ACC;PL primus_motor primus_motorilla N;AT+ESS;SG mirhami mirhamina N;FRML;SG ostovoima ostovoimana N;FRML;SG elpyä ei_elvy V;ACT;PRS;NEG;IND;3;SG latinalaistaa emme_latinalaistane V;ACT;PRS;NEG;POT;1;PL yksityiskoulu yksityiskoulu N;ACC;SG lyijykromaatti lyijykromaatissa N;IN+ESS;SG näivetysveritauti näivetysveritaudeista N;IN+ABL;PL sisätila sisätiloineen N;COM;PL kriisikausi kriisikausin N;INS;PL höyrystin höyrystiminä N;FRML;PL alaskanhusky alaskanhusky N;ACC;SG tietoinen tietoisilla ADJ;AT+ESS;PL mölkky mölkkynä N;FRML;SG äestyttää olitte_äestyttäneet V;ACT;PST;PRF;POS;IND;2;PL jäntevöittää olit_jäntevöittänyt V;ACT;PST;PRF;POS;IND;2;SG suppo supot N;NOM;PL pilkistää älkää_pilkistäkö V;ACT;PRS;NEG;IMP;2;PL ruksi ruksina N;FRML;SG ynähdys ynähdyksin N;INS;PL kolloidi kolloideina N;FRML;PL harvainvalta harvainvallat N;ACC;PL limetti limeteillä N;AT+ESS;PL kiivastelija kiivastelijoineen N;COM;PL nahkapää nahkapäiksi N;TRANS;PL standardisoida olisimme_standardisoineet V;ACT;PRS;PRF;POS;COND;1;PL etusija etusijatta N;PRIV;SG itsetuhoisuus itsetuhoisuus N;NOM;SG tervapaperi tervapapereita N;PRT;PL sievin sievin ADJ;NOM;SG muodokas muodokkaiksi ADJ;TRANS;PL hiiltyä hiiltynyt V.PTCP;ACT;PST toitottaa olisin_toitottanut V;ACT;PRS;PRF;POS;COND;1;SG PR-kampanja PR-kampanja N;NOM;SG abaksiaalinen abaksiaalisilla ADJ;AT+ESS;PL ehdyttää lienemme_ehdyttäneet V;ACT;PRS;PRF;POS;POT;1;PL kotiinkuljetettu kotiinkuljetetuilta ADJ;AT+ABL;PL dioriitti dioriitein N;INS;PL mahtua ei_mahduttaisi V;PASS;PRS;NEG;COND turkulainen turkulaiselle N;AT+ALL;SG hehtaarihalli hehtaarihalleja N;PRT;PL metastaasi metastaasiin N;IN+ALL;SG osoittaa_mieltään älköön_olko_osoitettu V;PASS;PRS;PRF;NEG;IMP lippis lippiksiä N;PRT;PL hybridiauto hybridiautossa N;IN+ESS;SG memeettinen memeettiseltä ADJ;AT+ABL;SG takaraja takarajaan N;IN+ALL;SG kattohuopa kattohuovilla N;AT+ESS;PL tuutori tuutoreilla N;AT+ESS;PL kalvosin kalvosimista N;IN+ABL;PL yliopistollinen yliopistollisitta ADJ;PRIV;PL rapistua olkoon_rapistunut V;ACT;PRS;PRF;POS;IMP;3;SG säästyä olin_säästynyt V;ACT;PST;PRF;POS;IND;1;SG keltahaarakas keltahaarakkaina N;FRML;PL touhuta ei_ollut_touhuttu V;PASS;PST;PRF;NEG;IND hiuspanta hiuspannalta N;AT+ABL;SG gigatavu gigatavusta N;IN+ABL;SG nuoleskella nuoleskellevat V;ACT;PRS;POS;POT;3;PL prepata eivät_ole_prepanneet V;ACT;PRS;PRF;NEG;IND;3;PL kukkula kukkulaa N;PRT;SG köyttää emme_köyttäisi V;ACT;PRS;NEG;COND;1;PL kultautua olette_kultautuneet V;ACT;PRS;PRF;POS;IND;2;PL hassium hassiumeina N;FRML;PL ruususiipitulkku ruususiipitulkussa N;IN+ESS;SG kuvallinen kuvallisitta ADJ;PRIV;PL kottikärry kottikärryllä N;AT+ESS;SG aseidentuonti aseidentuonnit N;ACC;PL kiittämätön kiittämättömät ADJ;NOM;PL haaskio haaskioin N;INS;PL peltomyyrä peltomyyrät N;NOM;PL syntyperä syntyperiin N;IN+ALL;PL rahtunen rahtusilla N;AT+ESS;PL loiventua loivennuit V;ACT;PST;POS;IND;2;SG rakentaja rakentajaa N;PRT;SG vapaamielistyä olisi_vapaamielistytty V;PASS;PRS;PRF;POS;COND kuiduttaa kuiduttaa V;ACT;PRS;POS;IND;3;SG huventaa älköön_huvennettako V;PASS;PRS;NEG;IMP ylikuumeneminen ylikuumenemiseksi N;TRANS;SG mennä_virran_mukana et_olisi_mennyt_virran_mukana V;ACT;PRS;PRF;NEG;COND;2;SG lintuinfluenssa lintuinfluenssa N;ACC;SG ylämäki ylämäittä N;PRIV;PL CD-ROM-levy CD-ROM-levyillä N;AT+ESS;PL säärivarsi säärivarressa N;IN+ESS;SG panetella olemme_panetelleet V;ACT;PRS;PRF;POS;IND;1;PL epäinhimillinen epäinhimillistä ADJ;PRT;SG prostituoida olitte_prostituoineet V;ACT;PST;PRF;POS;IND;2;PL humalikas humalikkaana N;FRML;SG pohjata ette_pohjanneet V;ACT;PST;NEG;IND;2;PL kouluttua älkää_olko_kouluttuneet V;ACT;PRS;PRF;NEG;IMP;2;PL tuulettaa en_ollut_tuulettanut V;ACT;PST;PRF;NEG;IND;1;SG velkoa olisivat_velkoneet V;ACT;PRS;PRF;POS;COND;3;PL pussipeto pussipedot N;NOM;PL yksinäistyä ei_yksinäistytä V;PASS;PRS;NEG;IND käyrätorvi käyrätorville N;AT+ALL;PL liivit liivit N;NOM;PL zoologia zoologiaksi N;TRANS;SG huutopussi huutopussissa N;IN+ESS;SG kämmentää lienen_kämmentänyt V;ACT;PRS;PRF;POS;POT;1;SG synketä ei_synkkenisi V;ACT;PRS;NEG;COND;3;SG vasoa vasottakoon V;PASS;PRS;POS;IMP helppotajuinen helppotajuinen ADJ;NOM;SG ylirasittunut ylirasittunut ADJ;ACC;SG snaijata en_ole_snaijannut V;ACT;PRS;PRF;NEG;IND;1;SG kumuloida et_kumuloinut V;ACT;PST;NEG;IND;2;SG keikaroida lienen_keikaroinut V;ACT;PRS;PRF;POS;POT;1;SG applikoida lienemme_applikoineet V;ACT;PRS;PRF;POS;POT;1;PL kruunaaja kruunaajalta N;AT+ABL;SG pelastettu pelastettuine ADJ;COM;PL kohahdella lienemme_kohahdelleet V;ACT;PRS;PRF;POS;POT;1;PL saada_aikaan saisit_aikaan V;ACT;PRS;POS;COND;2;SG sosiaalistua oli_sosiaalistuttu V;PASS;PST;PRF;POS;IND pudistella pudistelette V;ACT;PRS;POS;IND;2;PL rokka rokkaa N;PRT;SG laulaa ei_laulettu V;PASS;PST;NEG;IND hirmustua hirmustuitte V;ACT;PST;POS;IND;2;PL vilkuilla vilkuiltiin V;PASS;PST;POS;IND kombinoitua ei_olisi_kombinoiduttu V;PASS;PRS;PRF;NEG;COND johdatella johdattelisivat V;ACT;PRS;POS;COND;3;PL jälkeinen jälkeisestä N;IN+ABL;SG asustella älköön_olko_asusteltu V;PASS;PRS;PRF;NEG;IMP hoksata älkööt_hoksatko V;ACT;PRS;NEG;IMP;3;PL hytkähdyttää hytkähdyttänevät V;ACT;PRS;POS;POT;3;PL rotumellakka rotumellakalla N;AT+ESS;SG vituttaa oli_vituttanut V;ACT;PST;PRF;POS;IND;3;SG sublimoida olisi_sublimoitu V;PASS;PRS;PRF;POS;COND sekaantua en_sekaannu V;ACT;PRS;NEG;IND;1;SG kirjahylly kirjahyllyttä N;PRIV;SG aasianpalokärki aasianpalokärjiltä N;AT+ABL;PL altistua lienet_altistunut V;ACT;PRS;PRF;POS;POT;2;SG makuuhaava makuuhaavoilla N;AT+ESS;PL kuurous kuuroudelle N;AT+ALL;SG marsilainen marsilaisina ADJ;FRML;PL ufologi ufologitta N;PRIV;SG pysähtyä pysähtyivät V;ACT;PST;POS;IND;3;PL pääkallokiitäjä pääkallokiitäjä N;ACC;SG vaihteleva vaihteleva ADJ;NOM;SG ideologia ideologioille N;AT+ALL;PL tasauttaa emme_tasauttaneet V;ACT;PST;NEG;IND;1;PL kateus kateudelta N;AT+ABL;SG kiintolevy kiintolevyn N;GEN;SG kaksimielisyys kaksimielisyytenä N;FRML;SG epähedelmä epähedelmät N;ACC;PL niobi niobeiksi N;TRANS;PL ventiloida ei_ventiloitu V;PASS;PST;NEG;IND kastautua kastautunee V;ACT;PRS;POS;POT;3;SG filamentti filamenteille N;AT+ALL;PL lypsää älkööt_lypsäkö V;ACT;PRS;NEG;IMP;3;PL antraniilihappo antraniilihappoa N;PRT;SG metakritiikki metakritiikeillä N;AT+ESS;PL eksoottinen eksoottisena ADJ;FRML;SG potkuri potkureilla N;AT+ESS;PL spraypullo spraypullossa N;IN+ESS;SG pikavoitto pikavoitot N;ACC;PL epäsuotuisa epäsuotuisa ADJ;ACC;SG suoraveloitus suoraveloituksessa N;IN+ESS;SG kehostapoistumiskokemus kehostapoistumiskokemukset N;ACC;PL teddykangas teddykankaiksi N;TRANS;PL kuohketa on_kuohkennut V;ACT;PRS;PRF;POS;IND;3;SG sijaisvanhempi sijaisvanhemmilta N;AT+ABL;PL kulottua kulottunut V.PTCP;ACT;PST lopettaa lienemme_lopettaneet V;ACT;PRS;PRF;POS;POT;1;PL machiavellimainen machiavellimaisia ADJ;PRT;PL välähtää olitte_välähtäneet V;ACT;PST;PRF;POS;IND;2;PL istuttaa ovat_istuttaneet V;ACT;PRS;PRF;POS;IND;3;PL löyhennys löyhennyksenä N;FRML;SG lintuinfluenssa lintuinfluenssiksi N;TRANS;PL tuumailla lienee_tuumailtu V;PASS;PRS;PRF;POS;POT kirmaista kirmaisitte V;ACT;PST;POS;IND;2;PL löyhkätä löyhkäisit V;ACT;PRS;POS;COND;2;SG nimisana nimisanassa N;IN+ESS;SG huojentaa huojentakoot V;ACT;PRS;POS;IMP;3;PL etikoitua älä_etikoidu V;ACT;PRS;NEG;IMP;2;SG vannas vantaissa N;IN+ESS;PL saarto saarroille N;AT+ALL;PL massiivisuus massiivisuuteen N;IN+ALL;SG oligarkkinen oligarkkisella ADJ;AT+ESS;SG sumuta ei_olisi_sumuttu V;PASS;PRS;PRF;NEG;COND lököttää ei_ole_lököttänyt V;ACT;PRS;PRF;NEG;IND;3;SG viskisieppo viskisiepossa N;IN+ESS;SG kardinaalimunaus kardinaalimunauksena N;FRML;SG käsituliase käsituliase N;NOM;SG juksata ette_juksanne V;ACT;PRS;NEG;POT;2;PL kietoutua kietoutunee V;ACT;PRS;POS;POT;3;SG suflee sufleelle N;AT+ALL;SG andrologi andrologeilla N;AT+ESS;PL kromosomisto kromosomistoa N;PRT;SG haarukoida emme_olleet_haarukoineet V;ACT;PST;PRF;NEG;IND;1;PL kenraalitar kenraalittarilla N;AT+ESS;PL simputtaa emme_simputtaneet V;ACT;PST;NEG;IND;1;PL viulunsoittaja viulunsoittajatta N;PRIV;SG dominoida ei_ole_dominoinut V;ACT;PRS;PRF;NEG;IND;3;SG rutinoitua et_rutinoitune V;ACT;PRS;NEG;POT;2;SG elpyä ei_ollut_elpynyt V;ACT;PST;PRF;NEG;IND;3;SG fenyylialaniini fenyylialaniinien N;GEN;PL sukuloida oli_sukuloitu V;PASS;PST;PRF;POS;IND mutristaa ei_mutristettu V;PASS;PST;NEG;IND suslikki suslikkiin N;IN+ALL;SG savanninorsu savanninorsu N;NOM;SG blondata et_liene_blondannut V;ACT;PRS;PRF;NEG;POT;2;SG splitata splitattiin V;PASS;PST;POS;IND kolisuttaa kolisuttakoot V;ACT;PRS;POS;IMP;3;PL tärinä tärinöihin N;IN+ALL;PL haaroa haarokoon V;ACT;PRS;POS;IMP;3;SG budjettineuvottelu budjettineuvottelusta N;IN+ABL;SG syljeskellä syljeskelet V;ACT;PRS;POS;IND;2;SG hurahtaa ei_ollut_hurahtanut V;ACT;PST;PRF;NEG;IND;3;SG uitella älkööt_olko_uitelleet V;ACT;PRS;PRF;NEG;IMP;3;PL osakas osakkain N;INS;PL tiluttaa tiluttaa V;ACT;PRS;POS;IND;3;SG harmaakuskus harmaakuskus N;NOM;SG elostuttaa emme_elostuttane V;ACT;PRS;NEG;POT;1;PL analoginen analogisina ADJ;FRML;PL asiakkuus asiakkuudet N;ACC;PL jalkapallojoukkue jalkapallojoukkueeseen N;IN+ALL;SG katsastaja katsastajaksi N;TRANS;SG dekaani dekaaneissa N;IN+ESS;PL maustevoi maustevoissa N;IN+ESS;PL paahdin paahtimineen N;COM;PL lehdistökonferenssi lehdistökonferenssin N;GEN;SG haistella ei_haisteltu V;PASS;PST;NEG;IND seljanka seljankoja N;PRT;PL kiehuminen kiehumisilta N;AT+ABL;PL kakoa kakonemme V;ACT;PRS;POS;POT;1;PL kietaista olisimme_kietaisseet V;ACT;PRS;PRF;POS;COND;1;PL liikenneonnettomuus liikenneonnettomuuksia N;PRT;PL helle helteessä N;IN+ESS;SG romantiikka romantiikat N;NOM;PL epäröidä ette_epäröi V;ACT;PRS;NEG;IND;2;PL teknillinen teknillistä ADJ;PRT;SG oopperamuusikko oopperamuusikoissa N;IN+ESS;PL tiuskia ei_olisi_tiuskittu V;PASS;PRS;PRF;NEG;COND animoida eivät_olleet_animoineet V;ACT;PST;PRF;NEG;IND;3;PL mädättää olisit_mädättänyt V;ACT;PRS;PRF;POS;COND;2;SG sitoutua sitoudun V;ACT;PRS;POS;IND;1;SG huonontaa en_huonontanut V;ACT;PST;NEG;IND;1;SG lujittaa lujitan V;ACT;PRS;POS;IND;1;SG maailmankuva maailmankuvista N;IN+ABL;PL siemenvilja siemenviljoista N;IN+ABL;PL leijua ovat_leijuneet V;ACT;PRS;PRF;POS;IND;3;PL kädenreikä kädenrei'in N;INS;PL stabiloida stabiloivat V;ACT;PST;POS;IND;3;PL ylensyödä en_ole_ylensyönyt V;ACT;PRS;PRF;NEG;IND;1;SG samppanjapullo samppanjapulloihin N;IN+ALL;PL kivipölykeuhko kivipölykeuhko N;ACC;SG fado fadoitta N;PRIV;PL ylätyyli ylätyyliin N;IN+ALL;SG puolantaa puolannat V;ACT;PRS;POS;IND;2;SG dokumentaatiokeskus dokumentaatiokeskuksista N;IN+ABL;PL hoopo hooposta ADJ;IN+ABL;SG erikoistaa erikoistanee V;ACT;PRS;POS;POT;3;SG aivopoimu aivopoimut N;NOM;PL likistää älköön_olko_likistetty V;PASS;PRS;PRF;NEG;IMP opetusfilmi opetusfilmeiksi N;TRANS;PL ejakuloida ejakuloi V;ACT;PST;POS;IND;3;SG vanhustenhoito vanhustenhoidoin N;INS;PL uurrostaa ei_ollut_uurrostettu V;PASS;PST;PRF;NEG;IND kurkistusaukko kurkistusaukolle N;AT+ALL;SG häväistä et_häpäise V;ACT;PRS;NEG;IND;2;SG punoutua eivät_punoutuisi V;ACT;PRS;NEG;COND;3;PL ranskantaa ranskantanut V.PTCP;ACT;PST vuono vuonoille N;AT+ALL;PL behavioristi behavioristin N;GEN;SG routainen routaisissa ADJ;IN+ESS;PL yksikköpallo yksikköpallossa N;IN+ESS;SG folaatti folaateille N;AT+ALL;PL myrkyttää lienen_myrkyttänyt V;ACT;PRS;PRF;POS;POT;1;SG vuorovesivirtaus vuorovesivirtauksen N;GEN;SG niveltyä olit_niveltynyt V;ACT;PST;PRF;POS;IND;2;SG järäyttää järäytettäköön V;PASS;PRS;POS;IMP husaari husaareihin N;IN+ALL;PL korvasärky korvasäryillä N;AT+ESS;PL levyttää ei_ollut_levyttänyt V;ACT;PST;PRF;NEG;IND;3;SG tuoda ei_olisi_tuonut V;ACT;PRS;PRF;NEG;COND;3;SG tuftata tuftannut V.PTCP;ACT;PST kohdeteksti kohdetekstin N;GEN;SG maistattaa olisin_maistattanut V;ACT;PRS;PRF;POS;COND;1;SG yksityisasiakas yksityisasiakkaassa N;IN+ESS;SG dekonstruktio dekonstruktiota N;PRT;SG eufemistinen eufemistisella ADJ;AT+ESS;SG kiintolevy kiintolevyinä N;FRML;PL voimallisuus voimallisuuksille N;AT+ALL;PL tylpempi tylpemmillä ADJ;AT+ESS;PL huseerata oli_huseerannut V;ACT;PST;PRF;POS;IND;3;SG auringonkehrä auringonkehrät N;ACC;PL retkeillä olivat_retkeilleet V;ACT;PST;PRF;POS;IND;3;PL nuoleksia ei_nuoleksine V;ACT;PRS;NEG;POT;3;SG pähkylä pähkylään N;IN+ALL;SG vaikeroida emme_vaikeroineet V;ACT;PST;NEG;IND;1;PL abstrahoida abstrahoikaa V;ACT;PRS;POS;IMP;2;PL haiskahtaa eivät_ole_haiskahtaneet V;ACT;PRS;PRF;NEG;IND;3;PL hiussuonikeränen hiussuonikeräsiin N;IN+ALL;PL liimoittua emme_olisi_liimoittuneet V;ACT;PRS;PRF;NEG;COND;1;PL valvoa ette_valvoneet V;ACT;PST;NEG;IND;2;PL rasahtaa ei_rasahdeta V;PASS;PRS;NEG;IND lisänimi lisänimestä N;IN+ABL;SG lenko lengoin ADJ;INS;PL nikkelöidä olisin_nikkelöinyt V;ACT;PRS;PRF;POS;COND;1;SG hepuli hepulille N;AT+ALL;SG muhia ette_liene_muhineet V;ACT;PRS;PRF;NEG;POT;2;PL puhalluselvytys puhalluselvytyksestä N;IN+ABL;SG normaalikoulu normaalikoulu N;NOM;SG kaunopuheisuus kaunopuheisuuksia N;PRT;PL taarata ei_taarattaisi V;PASS;PRS;NEG;COND körttiläinen körttiläinen N;NOM;SG lyödä eivät_lyöne V;ACT;PRS;NEG;POT;3;PL auktoriteettisuus auktoriteettisuuksista ADJ;IN+ABL;PL kukkakasvi kukkakasvin N;GEN;SG rällätä et_ole_rällännyt V;ACT;PRS;PRF;NEG;IND;2;SG huippusalainen huippusalaiseen ADJ;IN+ALL;SG saksalaistua en_olisi_saksalaistunut V;ACT;PRS;PRF;NEG;COND;1;SG pyältää olisi_pyältänyt V;ACT;PRS;PRF;POS;COND;3;SG istuntopäivä istuntopäivättä N;PRIV;SG kuullottaa kuullottanemme V;ACT;PRS;POS;POT;1;PL valikoida valikoisin V;ACT;PRS;POS;COND;1;SG köpitellä en_olisi_köpitellyt V;ACT;PRS;PRF;NEG;COND;1;SG onnellistaa en_onnellista V;ACT;PRS;NEG;IND;1;SG arkistoida olkoon_arkistoinut V;ACT;PRS;PRF;POS;IMP;3;SG retostaa olisi_retostettu V;PASS;PRS;PRF;POS;COND suitsea olemme_suitseneet V;ACT;PRS;PRF;POS;IND;1;PL vasemmistolaistua olkaamme_vasemmistolaistuneet V;ACT;PRS;PRF;POS;IMP;1;PL burmanlyhythäntäpäästäinen burmanlyhythäntäpäästäiseen N;IN+ALL;SG brodeerata en_liene_brodeerannut V;ACT;PRS;PRF;NEG;POT;1;SG karvakorvamaki karvakorvamakeissa N;IN+ESS;PL nopeuttaa eivät_liene_nopeuttaneet V;ACT;PRS;PRF;NEG;POT;3;PL piipittää ette_liene_piipittäneet V;ACT;PRS;PRF;NEG;POT;2;PL huipistaa ei_huipisteta V;PASS;PRS;NEG;IND versonta versonnasta N;IN+ABL;SG vaikuttaa eivät_vaikuttaisi V;ACT;PRS;NEG;COND;3;PL sisällys sisällyksiksi N;TRANS;PL pelailla pelailemme V;ACT;PRS;POS;IND;1;PL tsasouna tsasounaan N;IN+ALL;SG kitkuttaa ole_kitkuttanut V;ACT;PRS;PRF;POS;IMP;2;SG kuohketa ette_olisi_kuohkenneet V;ACT;PRS;PRF;NEG;COND;2;PL kuulo kuulotta N;PRIV;SG paahtaa olkoon_paahtanut V;ACT;PRS;PRF;POS;IMP;3;SG aggressiivinen aggressiivisina ADJ;FRML;PL tulvapato tulvapatoineen N;COM;PL typografinen typografiseen ADJ;IN+ALL;SG pöyhkeilevä pöyhkeilevässä ADJ;IN+ESS;SG keikauskakku keikauskakkuineen N;COM;PL kleptokratia kleptokratioitta N;PRIV;PL jakkara jakkarat N;NOM;PL vertaisverkko vertaisverkkoineen N;COM;PL katkaisija katkaisijalle N;AT+ALL;SG fyllata fyllaisitte V;ACT;PRS;POS;COND;2;PL pahastuttaa et_olisi_pahastuttanut V;ACT;PRS;PRF;NEG;COND;2;SG balettikoulutus balettikoulutus N;ACC;SG paapia en_paapisi V;ACT;PRS;NEG;COND;1;SG ylempi ylemmässä ADJ;IN+ESS;SG vaihdella eivät_vaihtelisi V;ACT;PRS;NEG;COND;3;PL lysotsyymi lysotsyymien N;GEN;PL immuunistaa immuunistanette V;ACT;PRS;POS;POT;2;PL truveeri truveereissa N;IN+ESS;PL värähdellä ei_ole_värähdellyt V;ACT;PRS;PRF;NEG;IND;3;SG tamponoida en_tamponoi V;ACT;PRS;NEG;IND;1;SG oksisto oksistoon N;IN+ALL;SG riippuliidin riippuliitimeksi N;TRANS;SG sintrata olette_sintranneet V;ACT;PRS;PRF;POS;IND;2;PL tomaattipyree tomaattipyreessä N;IN+ESS;SG kohdentua älä_kohdennu V;ACT;PRS;NEG;IMP;2;SG kanarianpeippo kanarianpeipot N;ACC;PL prostasykliini prostasykliinit N;NOM;PL murista emme_murisisi V;ACT;PRS;NEG;COND;1;PL sivumyötäinen sivumyötäinen N;NOM;SG tukahtua et_liene_tukahtunut V;ACT;PRS;PRF;NEG;POT;2;SG nuolaista olisi_nuolaistu V;PASS;PRS;PRF;POS;COND oi'istua et_oi'istuisi V;ACT;PRS;NEG;COND;2;SG jyske jyskeineen N;COM;PL polyuretaani polyuretaaneille N;AT+ALL;PL biovalta biovallan N;GEN;SG loikkia et_olisi_loikkinut V;ACT;PRS;PRF;NEG;COND;2;SG mekaanisuus mekaanisuuksien N;GEN;PL unohtua ei_olisi_unohtunut V;ACT;PRS;PRF;NEG;COND;3;SG kummuta älköön_olko_kummunnut V;ACT;PRS;PRF;NEG;IMP;3;SG liejuuntua en_ole_liejuuntunut V;ACT;PRS;PRF;NEG;IND;1;SG keskeyttää olet_keskeyttänyt V;ACT;PRS;PRF;POS;IND;2;SG tyytymätön tyytymätöntä ADJ;PRT;SG huoltopäivitys huoltopäivityksettä N;PRIV;SG mesta mestoineen N;COM;PL vammainen vammaiseen N;IN+ALL;SG vehka vehkaan N;IN+ALL;SG nykäisy nykäisyineen N;COM;PL kilisyttää ei_kilisytetty V;PASS;PST;NEG;IND tunkeutuja tunkeutujiksi N;TRANS;PL chips chipseihin N;IN+ALL;PL kryptofyytti kryptofyytillä N;AT+ESS;SG millilitra millilitroille N;AT+ALL;PL yliarvioida et_yliarvioine V;ACT;PRS;NEG;POT;2;SG kulttuuriministeri kulttuuriministerittä N;PRIV;SG familiaarinen familiaarisetta ADJ;PRIV;SG tuomiolauselma tuomiolauselmaksi N;TRANS;SG lokvatti lokvatille N;AT+ALL;SG nukkua_yön_yli ette_liene_nukkuneet_yön_yli V;ACT;PRS;PRF;NEG;POT;2;PL hivuttaa ei_olisi_hivutettu V;PASS;PRS;PRF;NEG;COND ilmanvaihto ilmanvaihdosta N;IN+ABL;SG kolli kollitta N;PRIV;SG fluoresoida ette_fluoresoine V;ACT;PRS;NEG;POT;2;PL jauhelihakastike jauhelihakastikkeelta N;AT+ABL;SG orastoukka orastoukaksi N;TRANS;SG julkinen julkinen ADJ;NOM;SG puolisko puoliskot N;ACC;PL agitaatio agitaatiolla N;AT+ESS;SG
d04ef57d44c33fd0ee420e884e2add491be3396c
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.12/Ch02Ex12.sce
ca474091ec5e0449ca8f627d76a56c8d6dfd123a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
546
sce
Ch02Ex12.sce
// Scilab Code Ex2.12:: Page-2.13 (2009) clc; clear; lambda = 5893e-008; // Wavelength of light used, cm y1 = 10; // Distance of biprism from the source, cm y2 = 100; // Distance of biprism from the screen, cm D = y1 + y2; // Distance between slits and the screen, cm b = 3.5e-02; // Fringe width of the interfernce pattern due to biprism, cm d = lambda*D/b; // Distance between coherent sources, cm printf("\nThe distance between coherent sources = %5.3f cm", d); // Result // The distance between coherent sources = 0.185 cm
68ee3a97111384493f8e1dfbc81781d9b8a064f5
449d555969bfd7befe906877abab098c6e63a0e8
/575/DEPENDENCIES/442.sci
b9ee82bdbf20abf438fa35626ba0b0e4bc79fa2f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
162
sci
442.sci
massin=100 //kg M1=100 //kg M2=75 //Kg massout=43.1 //kg inputx=0.5 outputxA=0.053 outputxM=0.016 m1xA=0.275 m1xM=0.725 m3xW=0.03 m3xA=0.09 m3xM=0.88
f6db460e9772c503e975274a0bd14e8dfe79361c
449d555969bfd7befe906877abab098c6e63a0e8
/761/CH17/EX17.12/17_12.sce
0812aa93d77eba593253425f2fb3aa7ce367bd37
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
17_12.sce
clc; //page no 657 //prob no. 17.12 //A radar Tx has power=10kW at freq=9.5GHz & target at 15km with cross sectn=10.2 m2 with gain of antenna is 20dBi f=9.5*10^9;Pt=10*10^3;c=3*10^8;G_dBi=20;a=10.2;r=15*10^3; //Determination of received power wl=c/f;//calculating wavelength G=10^(G_dBi/10);//Converting to power ratio Pr=((wl^2)*Pt*(G^2)*a)/(((4*%pi)^3)*(r^4)); disp('W',Pr,'The received power is');
7d94fef7f3d4b987bacbaa3f7ba8c12751d48774
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH6/EX6.a.4/Example_a_6_4.sce
f49fdb7e61324c29321359419b4455c2b2d38734
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
524
sce
Example_a_6_4.sce
//Example_a_6_4 page no:235 clc; R1=5; I5mag=sqrt(600/5); V=I5mag*sqrt(50); apparent_power=3000; Itmag=apparent_power/V; Itang=45; I5ang=-45; Itreal=Itmag*cosd(Itang); Itimag=Itmag*sind(Itang); It=Itreal+(Itimag*%i); I5real=I5mag*cosd(I5ang); I5imag=I5mag*sind(I5ang); I5=I5real+(I5imag*%i); Iz=It-I5; Izmag=sqrt(real(Iz)^2+imag(Iz)^2); Izang=atand(imag(Iz)/real(Iz)); Zmag=V/Izmag; Zang=0-Izang; disp(Zmag,"the magnitude of impedence is (in ohm)"); disp(Zang,"the angle of impedence is (in degree)");
ed1a3410bbe9453e8c7df863ef6c0df302a4e1a0
449d555969bfd7befe906877abab098c6e63a0e8
/623/CH27/EX5.5.12/U5_C5_12.sce
0241fe4119c8f65820b407694bf4bfe6828a62c0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,091
sce
U5_C5_12.sce
//variable initialization v1=288600 //intense absorption (m-1) v2=566800 //intense absorption (m-1) v3=834700 //intense absorption (m-1) A=[1 -2;2 -6]; //coefficient matrix b=[v1;v2]; //right hand side matrix mu=1.61*10^-27; //reduced mass (kg) c=3*10^8; //speed of light (m/s) //calculation x=inv(A)*b; //values of omega and x*omega (m-1) k=4*(%pi*c*x(1))^2*mu; //force constant (N/m) printf("\nωe = %.0f m-1\nxe*ωe = %.0f m-1\nforce constant = %.1f N/m",x(1),x(2),k);
8f5968529d8b3184a9c8e600ed1e33fb7ef756e3
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH13/EX13.4/13_4.sce
3da390dce9f5ef09fa7496cc4356944fc535dda7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
13_4.sce
clc //initialisation of variables AHcl= 426.1 //cm^2 equiv^-1 ohm^-1 ANaC2H3O2= 91 //cm^2 equiv^-1 ohm^-1 ANaCl= 126.5 //cm^2 equiv^-1 ohm^-1 //CALCULATIONS AHC2H3O2= AHcl+ANaC2H3O2-ANaCl //RESULTS printf ('equivalent conductance of acetic acid= %.1f cm^2 equiv^-1 ohm^-1',AHC2H3O2)
b520f79ca75bd5ae0e43dd8024008854440d3d7a
449d555969bfd7befe906877abab098c6e63a0e8
/1409/CH8/EX8.13/8_13.sce
4cd3bd6660907b1471b1c0c04e7a2b2321a3344d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
397
sce
8_13.sce
clc; //page no 8-52 //Example 8.13 fs=1500*10^3;//in Hz fi=455*10^3;//in Hz alpha=75; fsi=[fs+(2*fi)]*10^(-3); disp(+'kHz',fsi,'Image frequency is '); rho=([fsi*10^3]/fs)-(fs/[fsi*10^3]); //Rounding of rho to 0.984 rho1=0.984; //We know that image frequency is given as alpha=sqrt(1+Q^2*rho^2) //alpha^2-1=Q^2*rho^2 Q=sqrt([alpha^2-1]/rho1^2); disp(Q,'Q of the tuned circuit is ');
1ec894c1ae447380cd6911db00200288a16dcffc
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set11/s_Fundamentals_Of_Electronic_Devices_And_Circuits_J._B._Gupta_2444.zip/Fundamentals_Of_Electronic_Devices_And_Circuits_J._B._Gupta_2444/CH6/EX6.14/ex6_14.sce
f690801296a12c596bbdab6c5e6ae8becc83146a
[]
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
368
sce
ex6_14.sce
errcatch(-1,"stop");mode(2);// Exa 6.14 ; ; format('v',6) // Given data Av =10000;// open loop gain Beta = 1/10;// feedback ratio Avf = Av/(1+(Av*Beta));// d loop gain dAvByAv = 50/100;// change in open loop gain dAvByAvf = 1/(1+(Beta*Av))*dAvByAv*100;// change in d loop gain in % disp(dAvByAvf,"The percentage change in d loop gain in % is"); exit();
290d2b78079b71d5ebbd426052eda7054ea000b9
449d555969bfd7befe906877abab098c6e63a0e8
/1457/CH17/EX17.4/17_4.sce
ae992cc6fb9df42c6ab855aeef809aca6010d3e5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
408
sce
17_4.sce
clc //Initialization of variables ne=600 gpm=84500 h=225 f=0.95 phie=1.1 g=32.2 //calculations Ns=ne*sqrt(gpm) /h^(3/4) u2=phie*sqrt(2*g*h) D=153.2*phie*sqrt(h) /ne D0=1.06*D*12 //in B=0.155*D0*12 //in De=0.6*D0 u0=1.06*u2 Vm2=0.15*u0 Area=0.95*%pi*D/144 *B Q=Area*Vm2 //results printf("Specific speed =%d ",Ns) printf("\n Flow rate = %d cfs",Q) printf("\n Eye diameter = %.1f in",De)
4996c04abac509487c411e1b9109425c6e9bc802
449d555969bfd7befe906877abab098c6e63a0e8
/260/CH13/EX13.16/13_16.sce
23da481da4e7df57a20da7dee516454e6c403314
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,031
sce
13_16.sce
//Eg-13.16 //pg-562 clear clc deff('out = func(in1,in2)','out = sin(in1)-in2') //To get the answers in the text book we shouldn't take sint=Vs to be unity! x(1) = 0; y(1) = 0; h = 0.1; for(i = 1:10) x(i+1) = x(i) + h; end a = (2^0.5-1)/2; b = (2-2^0.5)/2; c = -(2^0.5)/2; d = 1 + (2^0.5)/2; printf(' t y\n') for(i = 1:4) k1(i) = h*func(x(i),y(i)); k2(i) = h*func(x(i)+h/2,y(i)+k1(i)/2); k3(i) = h*func(x(i)+h/2,y(i)+a*k1(i)+b*k2(i)); k4(i) = h*func(x(i)+h,y(i)+c*k2(i)+d*k3(i)); y(i+1) = y(i) + 1/6*(k1(i)+2*b*k2(i)+2*d*k3(i)+k4(i)); printf('%f %f\n',x(i),y(i)) end h = 0.1; for(i = 4:10) yb(i+1) = y(i-3) + 4*h/3*(2*func(x(i-1),y(i-1)) + 2*func(x(i-2),y(i-2))); y(i+1) = y(i-1) + h/3*(func(x(i-1),y(i-1)) + 4*func(x(i),y(i)) + func(x(i+1),yb(i+1)) ); end printf('\n\nUsing the Milnes predictor-corrector Method:\n\n') printf(' t y\n') for(i = 5:11) printf('%f %f\n',x(i),y(i)) end
9c86425cad9249a3f20343b140b5a4f70e46f05c
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.23/Ch02Ex23.sce
c993f377c91211174eb4acdb6f40a95e6b7be2c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
455
sce
Ch02Ex23.sce
// Scilab Code Ex2.23:: Page-2.19 (2009) clc; clear; t = 2.1e-03; // Thickness of the glass sheet, cm lambda = 5400e-008; // Wavelength of light used, cm n = 11; // Order of interference fringes // As path difference, (mu - 1)*t = n*lambda mu = n*lambda/t + 1; // Refractive index of the glass sheet printf("\nThe refractive index of the glass sheet = %4.2f", mu); // Result // The refractive index of the glass sheet= 1.28
1b8b56db55c0ff75090dbd05ad07baf767079e3e
449d555969bfd7befe906877abab098c6e63a0e8
/668/CH9/EX9.9/eg9_9.sce
c3cb19c275b0e4ccd21d99e6858491aec92bfdaf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
214
sce
eg9_9.sce
Z = 10*10^-4; L = 2*10^-4; Cox = 10^-7; Vds = 0.1; Vgs1 = 1.5; Id1 = 50*10^-6; Vgs2 = 2.5; Id2 = 80*10^-6; slope = Id2-Id1/(Vgs2-Vgs1); Vt = -Id2/slope + Vgs2; disp(Vt,"the threshold voltage (in V) = ")
aa6a48825d8301ce6225d503c341e78c5402f8d3
449d555969bfd7befe906877abab098c6e63a0e8
/881/CH6/EX6.4/exa6_4.sce
15740d3cbfe5ec47d18d4d8c550edd35fb5bca1e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
490
sce
exa6_4.sce
clc; //Example 6.4 //Page no 238 //solution Frf=100; //kHz fs1=1.5; //kHz fs2=3; //kHz R=50; //Ohm E=5; //V //(a) disp("(a)The output frequency specctrum contains the two upper side frequencies: "); Fusf1=Frf+fs1; Fusf2=Frf+fs2; disp('kHz',Fusf2,"Fusf2 = ",'kHz',Fusf1,"Fusf1 = "); //(b) disp("(b)Substituting in equation 6-6 yields, "); PEP=([2*(0.707*E)^2]/R); disp('W',PEP,"PEP = ") disp("Substituting into equation 6-8 yields, "); Pavg=(PEP/2); disp('W',Pavg,"Pavg = ");
2d75955d8b6320c0ee545056bccc9c91e25bffb5
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH21/EX21.10/21_10.sce
f1c07daba3eced1adfe9020a3df19146bd99805a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
796
sce
21_10.sce
//Problem 21.10: A shunt generator supplies a 20 kW load at 200 V through cables of resistance, R = 100 mohm. If the field winding resistance, Rf=D 50ohm  and the armature resistance, Ra = 40 mohm, determine (a) the terminal voltage, and (b) the e.m.f. generated in the armature. //initializing the variables: Ps = 20000; // in Watts Vs = 200; // in Volts Rs = 0.1; // in ohms Rf = 50; // in ohms Ra = 0.04; // in ohms //calculation: //Load current, I Is = Ps/Vs //Volt drop in the cables to the load Vd = Is*Rs //Hence terminal voltage, V = Vs + Vd //Field current, If If = V/Rf //Armature current Ia = If + Is //Generated e.m.f. E E = V + Ia*Ra printf("\n\n Result \n\n") printf("\n (a)terminal voltage is %.0f V ",V) printf("\n (b)generated e.m.f. is %.2f V ",E)
1aec7e4f6c2976c23798243d7e49bbc9150c144b
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH10/EX10.24/10_24.sce
91d961a4448f2ee2f84e44600e0a796f0a883cc8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,423
sce
10_24.sce
clear; clc; //Example - 10.24 //Page number - 367 printf("Example - 10.24 and Page number - 367\n\n"); //Given Vol = 0.057;//[m^(3)] - Volume of car tyre P_1 = 300;//[kPa] - Initial pressure P_1 = P_1*10^(3);//[Pa] T_1 = 300;//[K] - Initial temperature P_2 = 330;//[kPa] - Finnal pressure P_2 = P_2*10^(3);//[Pa] R = 8.314;//[J/mol*K] - Universal gas constant Cv_0 = 21;//[J/mol-K] - Heat capacity for air // For oxygen Tc_O2 = 154.6;//[K] - Critical temperature Pc_O2 = 50.43;//[bar] - Critical pressure Pc_O2 = Pc_O2*10^(5);//[Pa] y1 = 0.21;// - Mole fraction of oxygen // For nitrogen Tc_N2 = 126.2;//[K] - Critical temperature Pc_N2 = 34.00;//[bar] - Critical pressure Pc_N2 = Pc_N2*10^(5);//[Pa] y2 = 0.79;// - Mole fraction of nitrogen // (1) // Assuming ideal gas behaviour. The volume remains the same,therefore,we get // P_1/T_1 = P_2/T_2 T_2 = P_2*(T_1/P_1);//[K] n = (P_1*Vol)/(R*T_1);//[mol] - Number of moles delta_U = n*Cv_0*(T_2-T_1);//[J] printf(" (1).The change in internal energy (for ideal gas behaviour) is %f J\n\n",delta_U); //(2) // For van der Walls equation of state a_O2 = (27*R^(2)*Tc_O2^(2))/(64*Pc_O2);//[Pa-m^(6)/mol^(2)] a_N2 = (27*R^(2)*Tc_N2^(2))/(64*Pc_N2);//[Pa-m^(6)/mol^(2)] a_12 = (a_O2*a_N2)^(1/2); b_O2 = (R*Tc_O2)/(8*Pc_O2);//[m^(3)/mol] b_N2 = (R*Tc_N2)/(8*Pc_N2);//[m^(3)/mol] // For the mixture a = y1^(2)*a_O2 + y2^(2)*a_N2 + 2*y1*y2*a_12;//[Pa-m^(6)/mol^(2)] b = y1*b_O2 + y2*b_N2;//[m^(3)/mol] // From the cubic form of van der Walls equation of state // At 300 K and 300 kPa, deff('[y]=f1(V)','y=V^(3)-(b+(R*T_1)/P_1)*V^(2)+(a/P_1)*V-(a*b)/P_1'); V_1 = fsolve(0.1,f1); V_2 = fsolve(10,f1); V_3 = fsolve(100,f1); // The above equation has only 1 real root, other two roots are imaginary V = V_1;//[m^(3)/mol] // Now at P = 330 kPa and at molar volume V // The van der Walls equation of state is // (P + a/V^(2))*(V - b) = R*T T_2_prime = ((P_2 + a/V^(2))*(V - b))/R;//[K] n_prime = Vol/V;//[mol] // Total change in internal energy is given by // delta_U_prime = n_prime*delta_U_ig + n_prime*(U_R_2 - U_R_1) // delta_U_prime = n_prime*Cv_0*(T_2_prime - T_1) + n_prime*a(1/V_2 - 1/V_1); // Since V_1 = V_2 = V, therefore delta_U_prime = n_prime*Cv_0*(T_2_prime - T_1); printf(" (2).The change in internal energy (for van der Walls equation of state) is %f J\n\n",delta_U_prime);
f506df06d9a07d382ef21136ead302b97fe58607
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH23/EX14.23.13/Ex14_23_13.sce
d35067ad8a8dd34ae29525bd6eb0d4f244ec3b43
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
270
sce
Ex14_23_13.sce
//Section-14,Example-1,Page no.-PC.90 //To calculate the free energy change and justify the given reactions. clc; //Cu_2S + O_2 = 2Cu + SO_2 dl_G1=88.2 //kJ dl_G2=300.1 //kJ dl_G=dl_G1-dl_G2 //kJ disp(dl_G,'Free energy change(kJ)')
9caba8a1b101edc199213020e221dc29fc2d9fa3
449d555969bfd7befe906877abab098c6e63a0e8
/2339/CH6/EX6.7.1/Ex6_7.sce
19941559ed32536a2d3d8588a653f7de8e56101b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex6_7.sce
clc clear Eff=0.6; //Efficiency T2=283; //in K T1=T2/(1-Eff); printf('Initial Temperature is %2.1f K',T1); printf('\n');
0dffebdf58af98a7287da1bc543cf3c13cb296de
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH18/EX18.18/ex18_18.sce
5dfadda404bb1e77d1955229c7cf45f2a605d580
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
603
sce
ex18_18.sce
clc; clear all; e=1.6e-19;//charge of electron u=3.2e-3;// sigma=5.9e7;//conductivity ni=sigma/(u*e);//concentration of conduction electron in Cu disp('m^-3',ni,'concentration of conduction electron in Cu is:'); N=6.022e23;//Avogadro's constant de=8900;//density m=63.5;//atomic mass of Cu ne=1e3;//no of free electrons per atom n=N*de*ne/m;//concentration of free electrons per Cu atom disp('electrons per m^3',n,'concentration of free electrons per Cu atom is:') avg=ni/n;//average no of electrons contributed per Cu atom disp('',avg,'average no of electrons contributed per Cu atom');
6b639746c094c2b0341ee20cc8151d1f439a3645
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH23/EX23.1/203ex.sce
f2f65ea33754b40b490b47ee557b2492dd59ad12
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
259
sce
203ex.sce
//ex(1) (sqrt(5)+sqrt(20)) clear; clc; close; val=string('(sqrt(5)+sqrt(20))'); if((sqrt(5)+sqrt(20))==3*sqrt(5)) val_1=evstr(val) end //ex(2) sqrt(27)-sqrt(75)+sqrt(48) val=string('sqrt(27)-sqrt(75)+sqrt(48)'); val_2=evstr(val)
93cb973646767720e5d4fc57a88773e7e715f328
dc628e7d8425aa0bb1460d2583f04c9969b4ec9c
/dlog-server/examples/iocaste/c100.tst
88b5e5b6e8deca4f875461d5e6836ff59460c18e
[]
no_license
logicmoo/DLog
bc2c43523ccbc3747c381f2eb0e25960cfc8d6e1
855774c38c1eea119405fde0057cfdb1032006f0
refs/heads/master
2021-05-28T14:03:35.596790
2015-01-12T22:49:56
2015-01-12T22:49:56
27,461,790
1
1
null
null
null
null
UTF-8
Scilab
false
false
8,421
tst
c100.tst
%Generated from '../examples/iocaste/c100.dig'. query(instances(aconcept('Good')), [i1]). concept('Good'). concept('Patricide'). role(hasChild). implies(and([some(arole(hasChild), and([aconcept('Patricide'), some(arole(hasChild), not(aconcept('Patricide')))]))]), aconcept('Good')). implies(aconcept('Good'), and([some(arole(hasChild), and([aconcept('Patricide'), some(arole(hasChild), not(aconcept('Patricide')))]))])). cassertion(not(aconcept('Patricide')), i102). cassertion(aconcept('Patricide'), i2). rassertion(arole(hasChild), i101, i102). rassertion(arole(hasChild), i100, i101). rassertion(arole(hasChild), i99, i100). rassertion(arole(hasChild), i98, i99). rassertion(arole(hasChild), i97, i98). rassertion(arole(hasChild), i96, i97). rassertion(arole(hasChild), i95, i96). rassertion(arole(hasChild), i94, i95). rassertion(arole(hasChild), i93, i94). rassertion(arole(hasChild), i92, i93). rassertion(arole(hasChild), i91, i92). rassertion(arole(hasChild), i90, i91). rassertion(arole(hasChild), i89, i90). rassertion(arole(hasChild), i88, i89). rassertion(arole(hasChild), i87, i88). rassertion(arole(hasChild), i86, i87). rassertion(arole(hasChild), i85, i86). rassertion(arole(hasChild), i84, i85). rassertion(arole(hasChild), i83, i84). rassertion(arole(hasChild), i82, i83). rassertion(arole(hasChild), i81, i82). rassertion(arole(hasChild), i80, i81). rassertion(arole(hasChild), i79, i80). rassertion(arole(hasChild), i78, i79). rassertion(arole(hasChild), i77, i78). rassertion(arole(hasChild), i76, i77). rassertion(arole(hasChild), i75, i76). rassertion(arole(hasChild), i74, i75). rassertion(arole(hasChild), i73, i74). rassertion(arole(hasChild), i72, i73). rassertion(arole(hasChild), i71, i72). rassertion(arole(hasChild), i70, i71). rassertion(arole(hasChild), i69, i70). rassertion(arole(hasChild), i68, i69). rassertion(arole(hasChild), i67, i68). rassertion(arole(hasChild), i66, i67). rassertion(arole(hasChild), i65, i66). rassertion(arole(hasChild), i64, i65). rassertion(arole(hasChild), i63, i64). rassertion(arole(hasChild), i62, i63). rassertion(arole(hasChild), i61, i62). rassertion(arole(hasChild), i60, i61). rassertion(arole(hasChild), i59, i60). rassertion(arole(hasChild), i58, i59). rassertion(arole(hasChild), i57, i58). rassertion(arole(hasChild), i56, i57). rassertion(arole(hasChild), i55, i56). rassertion(arole(hasChild), i54, i55). rassertion(arole(hasChild), i53, i54). rassertion(arole(hasChild), i52, i53). rassertion(arole(hasChild), i51, i52). rassertion(arole(hasChild), i50, i51). rassertion(arole(hasChild), i49, i50). rassertion(arole(hasChild), i48, i49). rassertion(arole(hasChild), i47, i48). rassertion(arole(hasChild), i46, i47). rassertion(arole(hasChild), i45, i46). rassertion(arole(hasChild), i44, i45). rassertion(arole(hasChild), i43, i44). rassertion(arole(hasChild), i42, i43). rassertion(arole(hasChild), i41, i42). rassertion(arole(hasChild), i40, i41). rassertion(arole(hasChild), i39, i40). rassertion(arole(hasChild), i38, i39). rassertion(arole(hasChild), i37, i38). rassertion(arole(hasChild), i36, i37). rassertion(arole(hasChild), i35, i36). rassertion(arole(hasChild), i34, i35). rassertion(arole(hasChild), i33, i34). rassertion(arole(hasChild), i32, i33). rassertion(arole(hasChild), i31, i32). rassertion(arole(hasChild), i30, i31). rassertion(arole(hasChild), i29, i30). rassertion(arole(hasChild), i28, i29). rassertion(arole(hasChild), i27, i28). rassertion(arole(hasChild), i26, i27). rassertion(arole(hasChild), i25, i26). rassertion(arole(hasChild), i24, i25). rassertion(arole(hasChild), i23, i24). rassertion(arole(hasChild), i22, i23). rassertion(arole(hasChild), i21, i22). rassertion(arole(hasChild), i20, i21). rassertion(arole(hasChild), i19, i20). rassertion(arole(hasChild), i18, i19). rassertion(arole(hasChild), i17, i18). rassertion(arole(hasChild), i16, i17). rassertion(arole(hasChild), i15, i16). rassertion(arole(hasChild), i14, i15). rassertion(arole(hasChild), i13, i14). rassertion(arole(hasChild), i12, i13). rassertion(arole(hasChild), i11, i12). rassertion(arole(hasChild), i10, i11). rassertion(arole(hasChild), i9, i10). rassertion(arole(hasChild), i8, i9). rassertion(arole(hasChild), i7, i8). rassertion(arole(hasChild), i6, i7). rassertion(arole(hasChild), i5, i6). rassertion(arole(hasChild), i4, i5). rassertion(arole(hasChild), i3, i4). rassertion(arole(hasChild), i2, i3). rassertion(arole(hasChild), i1, i101). rassertion(arole(hasChild), i1, i100). rassertion(arole(hasChild), i1, i99). rassertion(arole(hasChild), i1, i98). rassertion(arole(hasChild), i1, i97). rassertion(arole(hasChild), i1, i96). rassertion(arole(hasChild), i1, i95). rassertion(arole(hasChild), i1, i94). rassertion(arole(hasChild), i1, i93). rassertion(arole(hasChild), i1, i92). rassertion(arole(hasChild), i1, i91). rassertion(arole(hasChild), i1, i90). rassertion(arole(hasChild), i1, i89). rassertion(arole(hasChild), i1, i88). rassertion(arole(hasChild), i1, i87). rassertion(arole(hasChild), i1, i86). rassertion(arole(hasChild), i1, i85). rassertion(arole(hasChild), i1, i84). rassertion(arole(hasChild), i1, i83). rassertion(arole(hasChild), i1, i82). rassertion(arole(hasChild), i1, i81). rassertion(arole(hasChild), i1, i80). rassertion(arole(hasChild), i1, i79). rassertion(arole(hasChild), i1, i78). rassertion(arole(hasChild), i1, i77). rassertion(arole(hasChild), i1, i76). rassertion(arole(hasChild), i1, i75). rassertion(arole(hasChild), i1, i74). rassertion(arole(hasChild), i1, i73). rassertion(arole(hasChild), i1, i72). rassertion(arole(hasChild), i1, i71). rassertion(arole(hasChild), i1, i70). rassertion(arole(hasChild), i1, i69). rassertion(arole(hasChild), i1, i68). rassertion(arole(hasChild), i1, i67). rassertion(arole(hasChild), i1, i66). rassertion(arole(hasChild), i1, i65). rassertion(arole(hasChild), i1, i64). rassertion(arole(hasChild), i1, i63). rassertion(arole(hasChild), i1, i62). rassertion(arole(hasChild), i1, i61). rassertion(arole(hasChild), i1, i60). rassertion(arole(hasChild), i1, i59). rassertion(arole(hasChild), i1, i58). rassertion(arole(hasChild), i1, i57). rassertion(arole(hasChild), i1, i56). rassertion(arole(hasChild), i1, i55). rassertion(arole(hasChild), i1, i54). rassertion(arole(hasChild), i1, i53). rassertion(arole(hasChild), i1, i52). rassertion(arole(hasChild), i1, i51). rassertion(arole(hasChild), i1, i50). rassertion(arole(hasChild), i1, i49). rassertion(arole(hasChild), i1, i48). rassertion(arole(hasChild), i1, i47). rassertion(arole(hasChild), i1, i46). rassertion(arole(hasChild), i1, i45). rassertion(arole(hasChild), i1, i44). rassertion(arole(hasChild), i1, i43). rassertion(arole(hasChild), i1, i42). rassertion(arole(hasChild), i1, i41). rassertion(arole(hasChild), i1, i40). rassertion(arole(hasChild), i1, i39). rassertion(arole(hasChild), i1, i38). rassertion(arole(hasChild), i1, i37). rassertion(arole(hasChild), i1, i36). rassertion(arole(hasChild), i1, i35). rassertion(arole(hasChild), i1, i34). rassertion(arole(hasChild), i1, i33). rassertion(arole(hasChild), i1, i32). rassertion(arole(hasChild), i1, i31). rassertion(arole(hasChild), i1, i30). rassertion(arole(hasChild), i1, i29). rassertion(arole(hasChild), i1, i28). rassertion(arole(hasChild), i1, i27). rassertion(arole(hasChild), i1, i26). rassertion(arole(hasChild), i1, i25). rassertion(arole(hasChild), i1, i24). rassertion(arole(hasChild), i1, i23). rassertion(arole(hasChild), i1, i22). rassertion(arole(hasChild), i1, i21). rassertion(arole(hasChild), i1, i20). rassertion(arole(hasChild), i1, i19). rassertion(arole(hasChild), i1, i18). rassertion(arole(hasChild), i1, i17). rassertion(arole(hasChild), i1, i16). rassertion(arole(hasChild), i1, i15). rassertion(arole(hasChild), i1, i14). rassertion(arole(hasChild), i1, i13). rassertion(arole(hasChild), i1, i12). rassertion(arole(hasChild), i1, i11). rassertion(arole(hasChild), i1, i10). rassertion(arole(hasChild), i1, i9). rassertion(arole(hasChild), i1, i8). rassertion(arole(hasChild), i1, i7). rassertion(arole(hasChild), i1, i6). rassertion(arole(hasChild), i1, i5). rassertion(arole(hasChild), i1, i4). rassertion(arole(hasChild), i1, i3). rassertion(arole(hasChild), i1, i2).
78bf85cd5b4bbea53cfddbd86459c0d718282882
449d555969bfd7befe906877abab098c6e63a0e8
/1844/CH4/EX4.2/4Q2.sce
9d2524d3457dcdc39019cc5180eead718dedb3d8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
124
sce
4Q2.sce
clc a= 2 // in degrees D= 0.025 // in cm s= 10 // scale 10m =1cm l= D*s/sind(a) printf('Length of offset = %f m ',l)
13cd88be0f66f75d1125d5e65da07c58441eb5b8
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/slewrate/slewrate10.sce
130671167f3ccaabcd9c8c115ba85bdce212993c
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
435
sce
slewrate10.sce
//check o/p when i/p parameters are x,t, and statelevels x=[1.2, 5, 10, -20, 12]; t=1:length(x); [s,LT,UT,LR,UR]=slewrate(x,t,'StateLevels',[0,0]); disp(s) //output //!--error 10000 //The state levels must be in increasing order. //at line 174 of function midcross called by : //at line 267 of function slewrate called by : //,t,'StateLevels',[0,0]) //at line 4 of exec file called by : //te/slewrate10.sce', -1
b1e58427686a30e79c69e16a8f50cb3db33995ef
449d555969bfd7befe906877abab098c6e63a0e8
/2399/CH4/EX4.7.1/Example_4_7_1.sce
35e521341e9b9bb208ce81a6e6cffa9f18c3f79f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
860
sce
Example_4_7_1.sce
// Example 4.7.1 clc; clear; d=5; //core diameter alpha=0.4; //attenuation B=0.5; //Bandwidth lamda=1.4; //wavelength PB=4.4d-3*d^2*lamda^2*alpha*B; //computing threshold power for SBS PR=5.9d-2*d^2*lamda*alpha; //computing threshold power for SRS PB=PB*10^3; PR=PR*10^3; printf("\nThreshold power for SBS is %.1f mW.\nThreshold power for SRS is %.3f mW.",PB,PR); printf("\nNOTE - Calculation error in the book while calculating threshold for SBS.\nAlso, while calculating SRS, formula is taken incorrectly, Bandwidth is multiplied in second step, which is not in the formula."); //Calculation error in the book while calculating threshold for SBS. Also, while calculating SRS, formula is taken incorrectly,Bandwidth is multiplied in second step, which is not in the formula //answers in the book //PB=30.8mW //PR=0.413mW
b80d74cf307919d4cc2b2c8768e649ada79348fd
12d276a808c8403c4dd3b13dea1edb8720127311
/repeat.sce
f98120e69cafdd888dc3a98b376133d9a160d78d
[]
no_license
npytabitha/VOT3
85b317ae4c120eb2bda125b28c1ad27243d40eab
51032662c4a6f0960393aad4ebf9b3289c641155
refs/heads/develop
2021-01-10T05:44:31.715364
2015-10-01T13:34:47
2015-10-01T13:34:47
43,233,510
0
1
null
2015-10-02T09:05:14
2015-09-27T03:56:10
Scilab
UTF-8
Scilab
false
false
3,247
sce
repeat.sce
active_buttons = 3; #button_codes = 1, 2, 3; # These values will be used to code participant responses #target_button_codes = 0, 0, 2; button_codes = 0, 0, 2; target_button_codes = 0, 0, 1; begin; #neutral_orig array{ TEMPLATE "declaresounds.tem"{ file; "Neutral_TKH.wav"; "Neutral_LS.wav"; "Neutral_Edward.wav"; "Neutral_NXR.wav"; "Neutral_46.wav"; "Neutral_SG.wav"; "Neutral_Joyce.wav"; "Neutral_58.wav"; "Neutral_ML.wav"; "Neutral_Elizabeth.wav"; "Neutral_CW.wav"; "Neutral_SH.wav"; "Neutral_Daryl.wav"; "Neutral_Janvin.wav"; "Neutral_42.wav"; "Neutral_55.wav"; "Neutral_59.wav"; "Neutral_CC.wav"; "Neutral_CKH.wav"; "Neutral_DK.wav"; "Neutral_Ernest.wav"; "Neutral_GC.wav"; "Neutral_GZ.wav"; "Neutral_Madeline.wav"; "Neutral_MSC.wav"; "Neutral_MY.wav"; "Neutral_Rena.wav"; }; }repeat; #neutral_rot array{ TEMPLATE "declaresounds.tem"{ file; "Neutral_42_rot.wav"; "Neutral_55_rot.wav"; "Neutral_59_rot.wav"; "Neutral_CC_rot.wav"; "Neutral_CKH_rot.wav"; "Neutral_DK_rot.wav"; "Neutral_Ernest_rot.wav"; "Neutral_GC_rot.wav"; "Neutral_GZ_rot.wav"; "Neutral_Madeline_rot.wav"; "Neutral_MSC_rot.wav"; "Neutral_MY_rot.wav"; "Neutral_Rena_rot.wav"; "Neutral_ML_rot.wav"; "Neutral_Elizabeth_rot.wav"; "Neutral_SH_rot.wav"; "Neutral_NXR_rot.wav"; "Neutral_CW_rot.wav"; "Neutral_TKH_rot.wav"; "Neutral_Janvin_rot.wav"; "Neutral_58_rot.wav"; "Neutral_Edward_rot.wav"; "Neutral_Daryl_rot.wav"; "Neutral_LS_rot.wav"; "Neutral_46_rot.wav"; "Neutral_SG_rot.wav"; "Neutral_Joyce_rot.wav"; }; }repeat2; #surprise_orig array{ TEMPLATE "declaresounds.tem"{ file; "Surprise_45.wav"; "Surprise_59.wav"; "Surprise_6.wav"; "Surprise_CC.wav"; "Surprise_CW.wav"; "Surprise_Daryl.wav"; "Surprise_Janvin.wav"; "Surprise_Joyce.wav"; "Surprise_LS.wav"; "Surprise_ML.wav"; "Surprise_Rena.wav"; "Surprise_SG.wav"; "Surprise_SH.wav"; "Surprise_TLSM.wav"; "Surprise_CKH.wav"; "Surprise_Ernest.wav"; "Surprise_GZ.wav"; "Surprise_60.wav"; "Surprise_Elizabeth.wav"; "Surprise_Madeline.wav"; "Surprise_GC.wav"; "Surprise_MY.wav"; "Surprise_Edward.wav"; "Surprise_55.wav"; "Surprise_NXR.wav"; "Surprise_MSC.wav"; "Surprise_TKH.wav"; }; }repeat3; #surprise_rot array{ TEMPLATE "declaresounds.tem"{ file; "Surprise_Ernest_rot.wav"; "Surprise_TKH_rot.wav"; "Surprise_55_rot.wav"; "Surprise_Madeline_rot.wav"; "Surprise_CKH_rot.wav"; "Surprise_60_rot.wav"; "Surprise_GZ_rot.wav"; "Surprise_GC_rot.wav"; "Surprise_Edward_rot.wav"; "Surprise_MY_rot.wav"; "Surprise_Elizabeth_rot.wav"; "Surprise_NXR_rot.wav"; "Surprise_MSC_rot.wav"; "Surprise_45_rot.wav"; "Surprise_59_rot.wav"; "Surprise_6_rot.wav"; "Surprise_CC_rot.wav"; "Surprise_CW_rot.wav"; "Surprise_Daryl_rot.wav"; "Surprise_Janvin_rot.wav"; "Surprise_Joyce_rot.wav"; "Surprise_LS_rot.wav"; "Surprise_ML_rot.wav"; "Surprise_Rena_rot.wav"; "Surprise_SG_rot.wav"; "Surprise_SH_rot.wav"; "Surprise_TLSM_rot.wav"; }; }repeat4; begin_pcl; #Create a new array for repeated sounds repeat.shuffle(); repeat.resize(6); repeat2.shuffle(); repeat2.resize(6); repeat3.shuffle(); repeat3.resize(6); repeat4.shuffle(); repeat4.resize(6); repeat.append(repeat2); repeat.append(repeat3); repeat.append(repeat4); sub loop int i = 1 until i > repeat.count() begin; term.print_line(i); return "filename"; i = i + 1 ; end
435b57571d732dae01d1ae13436b1f3d35de6616
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH4/EX4.49/ex4_49.sce
d7062eff1aea6e57d78d265289548086607e7166
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
864
sce
ex4_49.sce
//AC Circuits : example 4.49 :(pg 4.37 & 4.38) f=50; I1=4; pf1=0.5; V1=200; I2=5; pf2=0.8; V2=40; Z1=(V2/I2); R=(Z1*pf2); XL1=sqrt((Z1^2)-(R^2)); L1=(XL1/(2*%pi*f)); Z2=(V1/I1); RT=(Z2*pf1); XL2=sqrt((Z2^2)-(RT^2)); L2=(XL2/(2*%pi*f)); Pi=(V1*I1*pf1-(I1^2)*R); printf("\nWith iron core I=4 A pf=0.5, V=200 V \nWithout iron core I=5 A pf=0.8, V=40 V \nWhen the iron-core is removed,"); printf("\nZ=V/I=%.f Ohms",Z1); printf("\npf=R/Z \nR=%.1f Ohms",R); printf("\nXL=sqrt((Z^2)-(RT^2))=%.1f Ohms",XL1); printf("\nXL=(2*pi*f*L) \nInductance L=%.4f H",L1); printf("\nWith iron core, \nZ=%.f Ohms",Z2); printf("\npf=RT/Z \nRT=%.f Ohm",RT); printf("\nXL=sqrt((Z^2)-(RT^2))=%.2f Ohm",XL2); printf("\nXL=(2*pi*f*L) \nInductance L=%.4f H",L2); printf("\nIron loss Pi=P=(I^2)*R \n=VIcos(phi)-I^2*R \n=%.1f W",Pi);
eefc97f0d56895016f8cd93521fb5030972f09c6
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH20/EX20.18/20_18.sce
bd5a69e6a1383a9427ca69dca1afdfe7b83ea136
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,667
sce
20_18.sce
//Problem 20.18: A 400 kVA transformer has a primary winding resistance of 0.5 ohm and a secondary winding resistance of 0.001 ohm . The iron loss is 2.5 kW and the primary and secondary voltages are 5 kV and 320 V respectively. If the power factor of the load is 0.85, determine the efficiency of the transformer (a) on full load, and (b) on half load. //initializing the variables: S = 400000; // in VA R1 = 0.5; // in Ohm R2 = 0.001; // in Ohm V1 = 5000; // in Volts V2 = 320; // in Volts Pi = 2500; // in Watt pf = 0.85; // power factor //calculation: //Rating = 400 kVA = V1*I1 = V2*I2 //Hence primary current I1 = S/V1 //secondary current I2 = S/V2 //Total copper loss = I1*I1*R1 + I2*I2*R2, Pcf = I1*I1*R1 + I2*I2*R2 //On full load, total loss = copper loss + iron loss Plf = Pcf + Pi // full-load power output = V2*I2*pf Pof = S*pf //Input power at full-load = output power at full-load + losses PIf = Pof + Plf //Efficiency = output power/input power = (input power—losses)/input power //Efficiency = 1 - losses/input power efff = (1-(Plf/PIf))*100 //Half full-load power output = V*I*pf/2 Poh = S*pf/2 //Copper loss (or I*I*R loss) is proportional to current squared //Hence the copper loss at half full-load is Pch = Pcf/(2*2) //Iron loss = 2500 W (constant) //Total losses Plh = Pch + Pi //Input power at half full-load = output power at half full-load + losses PIh = Poh + Plh //efficiency effh = (1-(Plh/PIh))*100 printf("\n\n Result \n\n") printf("\n (a)the transformer efficiency at full load is %.2f percent", efff) printf("\n (b)the transformer efficiency at half full load is %.2f percent", effh)
14ff34a9ac6b0f27c7218b2e321ae8600bc107db
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH25/EX25.6/Ex25_6.sce
2e5f347986689e6ceae6071e0143645984ee93e4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
121
sce
Ex25_6.sce
clc; nc=0.5; VCC=24; Poac=3.5; Ptrdc=Poac/nc; disp('W',Ptrdc,"Ptrdc="); Pcdc=Ptrdc-Poac; disp('W',Pcdc,"Pcdc=");
983234d608db8726b4b12528ec0c9e7e7ce455ef
449d555969bfd7befe906877abab098c6e63a0e8
/2951/CH6/EX6.A/additional_ex_1.sce
cabb4b6942cca4fb1679632d9075a4db4b46c71c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
415
sce
additional_ex_1.sce
clc; clear; T=290;//Temperature in K B=15; //Bandwidth in KHz k=1.38*10^(-23); //Boltzman constant R=60; //resistance in ohms N=k*T*B*10^(3); //Therman Noise Power in watts N_dBm=10*log10(N/0.001);//in dBm Vrms=sqrt(4*R*k*T*B*10^(3)); disp("thermal noise power (in watts) is"); disp(N); disp("thermal noise power (in dBm) is"); disp(N_dBm); disp("RMS noise voltage (in Volts) is"); disp(Vrms);
6a5aa05b629d47dadb5c04b1d2530ba532814a08
86ae7e24466d959da945d5b6d8ab93354a9e8a1d
/T2_eg_op_onG_matrix.sce
a9655bb4ccd13d867e2f820b19489e42b19b0035
[]
no_license
AnujaNagare/Scilab-Programs
be27fdeb0db8cfa4b00ac5121676b18412b8a222
4152eac1a3e87ec7408fb3dfea55cac984cca2d9
refs/heads/master
2021-08-30T16:53:33.876536
2017-12-18T19:11:47
2017-12-18T19:11:47
114,677,855
0
0
null
null
null
null
UTF-8
Scilab
false
false
196
sce
T2_eg_op_onG_matrix.sce
clc; clear; G=[2 6 0 0 0 0;3 9 0 0 0 0;0 0 1 2 0 0;... 0 0 3 4 0 0;0 0 0 0 -5 5;0 0 0 0 5 3]; disp(G) G(6,:)=[ ]; G(:,6)=[ ]; disp(G) A=G(1:4,1:4); disp(A) G(5,5)=0; disp(G)
7580da1910ebba63f373aa2adad777a23fab6dd6
3cbee2296fd6b54f80587eead83813d4c878e06a
/sci2blif/rasp_design_added_blocks/inv_mcab.sce
76afbfd6be3b11d4f12fa53ec3e7a28aaa5ff4bf
[]
no_license
nikhil-soraba/rasp30
872afa4ad0820b8ca3ea4f232c4168193acbd854
936c6438de595f9ac30d5619a887419c5bae2b0f
refs/heads/master
2021-01-12T15:19:09.899590
2016-10-31T03:23:48
2016-10-31T03:23:48
71,756,442
0
0
null
2016-10-24T05:58:57
2016-10-24T05:58:56
null
UTF-8
Scilab
false
false
80
sce
inv_mcab.sce
style.displayedLabel="inv_mcab" pal5=xcosPalAddBlock(pal5,"inv_mcab",[],style);
2c5fd56a7093e936ed641f0b3fffc291526e6697
449d555969bfd7befe906877abab098c6e63a0e8
/3630/CH10/EX10.2/Ex10_2.sce
46a32b6abc374dbb3f274c348524c5dc4915d784
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
296
sce
Ex10_2.sce
clc; Vcc=0.002; //Volt Re=5000; //Ohm Icsat=Vcc/Re; //Ampere Vceoff=Vcc; //Volt disp(' Amperes',Icsat,"Icsat="); disp('Volt',Vceoff,"Vceoff="); T1=0:2:10 //Here on X-axis T1=Vce=10V T2=2:-0.4:0; //Here on the Y-Axis T2=Ic=2miliAmpere plot(T1,T2) xlabel('Vce(V)') ylabel('Ic(mA)')
5333d7e341b22ae7f0df07eeb5368fac4e31ea9d
449d555969bfd7befe906877abab098c6e63a0e8
/1709/CH13/EX13.2/13_2.sce
8c6476bfdb2b6789066efff55f2d9f91701514dd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
195
sce
13_2.sce
clc //Initialization of variables T=0 //C //calculations de1=-72 //mV/C de2=500 //mv/C alpha=de1-de2 pi=-(T+273)*alpha //results printf("Peltier coefficient at %d C = %d mv",T,pi/1000)
8256e46e38d0cb6d2cd30621861f59b80b791cc3
e3c27edbd2f0a8e733cee84b90a906c0a6d7c176
/sem_3/c/ljudge/3.2.tst
88c4a037f5eccb6beeefafcb186a40f104c74a09
[]
no_license
dmitryhd/dmitryhd_code
c32223da5506156a068bbb0f20ad4cd06fdf2166
5173f6f74d4fa1c9c5fba9ffc4fc9134c56f4b0c
refs/heads/master
2021-01-17T11:56:50.221745
2011-04-26T18:31:58
2011-04-26T18:31:58
1,650,576
0
0
null
null
null
null
UTF-8
Scilab
false
false
24
tst
3.2.tst
1 2 3 -1 4 4 5 5 6 6 -1
4df42a18d244b57c0c0bccb5eed4bb6497ea5bb3
8f6e75c4b76c4849ce20caab04ece14855e3ddfe
/SQL/Цфт/(3)/SQL/task_5_доработка.tst
da330347931955c2ce7956c2395fc8e3050d308b
[]
no_license
scorpion235/Archive
f13dca77c542a1d6fea8c92afd2ccf6b4a98b75b
dde5675175a8a50abe8850db7ae15621345bf140
refs/heads/master
2022-12-22T23:38:54.614524
2022-12-13T19:38:01
2022-12-13T19:38:01
39,003,632
1
0
null
null
null
null
WINDOWS-1251
Scilab
false
false
1,739
tst
task_5_доработка.tst
PL/SQL Developer Test script 3.0 47 declare dateb date; datee date; start_weekb date; start_weeke date; holiday_count integer; week_days_count integer; days_count integer; begin --минимальная дата dateb := least(:date1, :date2); --максимальная дата datee := greatest(:date1, :date2); --число дней между двумя датами days_count := trunc(datee - dateb) + 1; --определяем начало недели для минимальной даты start_weekb := trunc(dateb, 'D'); --определяем начало следующей недели для максимальной даты start_weeke := trunc(datee, 'D') + 7; --число дней между двумя понедельниками (всегда кратно 7) week_days_count := trunc(start_weeke - start_weekb); --количество выходных дней между двумя понедельниками holiday_count := 2 * (week_days_count / 7); --минимальная дата является воскресеньем if (trunc(dateb - start_weekb) = 6) then holiday_count := holiday_days - 1; end if; --максимальная дата является субботой if (trunc(start_weeke - datee) = 2) then holiday_count := holiday_days - 1; --максимальная дата не выходной elsif (trunc(start_weeke - datee) > 2) then holiday_count := holiday_days - 2; end if; --вывод количества рабочих дней dbms_output.put_line(days_count - holiday_days); end; 2 date1 1 16.06.2014 12 date2 1 30.06.2014 12 0
034cd20408ae42ce69c42d627506cc90b7a9f6c1
449d555969bfd7befe906877abab098c6e63a0e8
/1184/CH3/EX3.2/Ex3_2.sce
a12287beb16e54b98c2f28cd1a04560eaa0b2c70
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
280
sce
Ex3_2.sce
//Example 3-2 ,Page No - 102 clear clc frq =980*10^3 frq_range = 5*10^3 fusb = frq+frq_range flsb = frq-frq_range bw=fusb-flsb printf('The upper sideband is at %.1f Khz\n Lower sideband is at %.1f Khz\n and the babdwidth is %.1f Khz',fusb/10^3,flsb/10^3,bw/10^3)
9678606ec9375c033baf3d1bce8dce2849cbdd25
e770dc26235168913bdcd5b2332f3a38a95a8bc7
/Toolbox Test/mag2db/mag2db.sci
bf2f62038632ab12f4471be6b181bf0400d30ee2
[]
no_license
deecube/majorTom
f00eca4e2effff2c5eba746878f2c0842fe14680
84365fc032fc0ca44abac8330ec4ac6d85a85b3f
refs/heads/master
2021-01-21T14:04:23.323717
2016-05-23T06:05:31
2016-05-23T06:05:31
51,731,222
0
0
null
null
null
null
UTF-8
Scilab
false
false
237
sci
mag2db.sci
function [ydb] = mag2db(y) funcprot(0); //ydb = mag2db(y) expresses in decibels (dB) the magnitude measurements specified in y. //The relationship between magnitude and decibels is ydb = 20 log10(y). ydb = 20 * log10(y); endfunction
d9a0b1392304f5d1d352a4f1002dc97738a68dcc
449d555969bfd7befe906877abab098c6e63a0e8
/3363/CH2/EX2.3/EX2_3.sce
eb84e93e82a497647ff0628b70adffcc9e5106ac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
245
sce
EX2_3.sce
//Example 2.3, Page no 50 p=1//j/s r=1//radius in m h=6.63*10^-34//Joule-sec c=3*10^8//m/sec lambda=5.89*10^-7//m R=p/(4*%pi*r^2) E=(h*c)/lambda Rate_R=R*(1/E) printf("\nRate at which photons strike unit area of place %e photons/m^2-sec",Rate_R)
c082e6ab19242be1b0ec16683731c89395c5989d
25033eda4e7cd13f945f94c5dc35f15825066b42
/ExactCure/mu lambda ES/(mu,lambda) ES affiche.sce
f0cfe6284aa7ecbd7b52b18cb32a480b86e19c30
[]
no_license
julienguegan/Internships
a26cb9efa2f1715832511a7aa94d25bfc675388b
ad51d5845ed8fd41e29259c95e8beff80bac65cf
refs/heads/master
2020-12-20T21:54:29.099157
2020-01-25T19:20:10
2020-01-25T19:20:10
236,217,889
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,850
sce
(mu,lambda) ES affiche.sce
clear exec('C:\Users\Julien Guégan\Desktop\PFE\algorithmes\fonctions test.sce',-1) exec('C:\Users\Julien Guégan\Desktop\PFE\algorithmes\affichage.sce',-1) function [xm,n] = evolutionstrategie(f,xm0,sm0,lambda,mu,itermax,tol) // μ < λ //longueur = size(population,1) //dim = size(population,2) longueur = length(xm0) dim = length(sm0) rand("normal") //xm0 = sum(population,'r')./longueur//barycentre //sm0 = nanstdev(population,'r') tau = 1 //facteur d'apprentissage, petit = sigma plus petit n = 1 //nbr iteration xmp1 = xm0 xm = xm0 smp1 = sm0 // ********* calcul F *********// xmax=4;xmin=-4;ymax=4;ymin=-4; xstep = (xmax-xmin)/75 axe_x = xmin:xstep:xmax ystep = (ymax-ymin)/75 axe_y = ymin:ystep:ymax z=0 for i = xmin:xstep:xmax for j = ymin:ystep:ymax u = [i j] ind_i = (i/xstep)-(xmin/xstep)+1 ind_j = (j/ystep)-(ymin/ystep)+1 z(ind_i,ind_j) = f(u) end end //////////////////////////////////// while (n<itermax)&((norm(xm-xmp1)>tol)|n==1) xm = xmp1 sm = smp1 //**** AFFICHAGE ***// clf() xset("fpf"," ") contour2d(axe_x,axe_y,z,30) a = gcf() a.color_map = rainbowcolormap(64) xlabel('$x_1$','fontsize',4) ylabel('$x_2$','fontsize',4) //*******************************************************// //affiche(f,4,-4,4,-4,'contour') for i = 1:lambda //creation s(i,:) = sm .* exp(tau*rand(1,dim)) x(i,:) = xm + s(i).*rand(1,dim) if (xmin<x(i,1)&x(i,1)<xmax)&(ymin<x(i,2)&x(i,2)<ymax) plot(x(i,1),x(i,2),'k.','markersize',3) end end //plot(x(:,1),x(:,2),'k.','markersize',2) Z = 0 for i = 1:lambda Z(i,:) = f(x(i,:)) end xp = zeros(mu,dim) //vecteur des x parents sp = zeros(mu,dim) // les ecarts types associés for j = 1:mu //selection mini = find(Z == min(Z))// indice de minf(x) xp(j,:) = x(mini,:)//vecteur des mu minimum sp(j,:) = s(mini,:) Z(mini,:) = []//on l'enleve pour la prochaine iteration x(mini,:) = [] s(mini,:) = [] end plot(xp(:,1),xp(:,2),'b.','markersize',2)//les mu parents retenu xmp1 = sum(xp,'r')/mu //recombinaison smp1 = sum(sp,'r')/mu //autoadaptation plot(xmp1(1),xmp1(2),'b*') xs2png(gcf(),"tmp"+string(n)) n = n+1 end endfunction fonction = rastrigin rand("uniform") xm0 = [0,0] sm0 = [1.5,1.5] lambda = 30 mu = 10 itermax = 100 tol = 0.0001 [sol n] = evolutionstrategie(fonction,xm0,sm0,lambda,mu,itermax,tol) disp('x = ') disp(sol) disp('n = ') disp(n)
0f5a1a88ffcdd8a06f2eb8cd00c6e50c7eb6acaa
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH16/EX16.12/Ex16_12.sce
01ca0aaedfe7736ee20a8e540d66ded96fc31cf0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
338
sce
Ex16_12.sce
//Initilization of variables W=644 //lb F=30 //lb theta=30 //degrees r=1.5 //ft g=32.2 //ft/s^2 //Calculations //Using equations of motion //Solving by matrix method A=[1,-W/g;-r,-(1/2)*(W/g)*(2*2)*(1/r)] B=[W*sind(theta)-F*cosd(theta);-F*2] C=inv(A)*B a=C(2) //ft/s^2 //Result clc printf('The value of a is %f ft/s^2',a)
ffe0f8b6a508ce66825b8269c371b3ee5392d683
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH5/EX5.8/Ex5_8.sce
72e8f629cc9959254e05d397943b0cd3f50429d6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
237
sce
Ex5_8.sce
//Example 5_8 clc(); clear; //To calculate the frictional force m=900 //units in Kg v0=20 //units in meters/sec s=30 //units in meters f=(0.5*m*v0^2)/s //units in Newtons printf("Frictional force required is f=%d N",f)
2c49d037c87c9ddaeb69f886865f080b28003d4d
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH1/EX1.3/1_3.sce
229f104bafc6254271ea57e06a4b6264209005aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
785
sce
1_3.sce
z = 0.760; // Barometer reading in m // Part (a) h1 = 40e-02; // Mercury height in vaccume in m d_r = 13.6e03; // Density of mercury in kg/m3 g = 9.80; // Acceleration due to gravity in m/s2 Patm = z*d_r*g; // Atmospheric pressure in Pas Pv = h1*d_r*g; // Pressue in vaccume in Pa Pabs = Patm-Pv; // Absolute pressure in Pa disp("Pa",Pabs," 40cmHg vaccume is") // Part (b) h2 = 90e-02; // Mercury height in gauge in m Pg = h2*d_r*g; // Gauge Pressure in Pa Pabs1 = Patm + Pg ; // Absolute pressure in Pa disp("Pa",Pabs1,"90cmHg gauge is") // Part(c) d_w = 1e03 ; // Density of water in kg/m3 h3 = 1.2 ; // Gauge Pressure water height in m Pga = d_w*h3*g; // Gauge Pressure in Pa Pabs3 = Patm + Pga ; // Absolute pressure in Pa disp("Pa",Pabs3,"1.2 m H2O gauge is")
15bbae784d7ad5132561bbe5861aae03b3393ef1
b12941be3faf1fd1024c2c0437aa3a4ddcbbfd67
/whatif/pretest.tst
ee49dfdbb143b8ae89a1313c1dff9239086c5974
[]
no_license
JanWielemaker/optica
950bd860825ab753236ce1daa399ee7a0b31b3ee
3a378df314b5a60926b325089edac89c00cc8c6d
refs/heads/master
2020-06-12T14:22:46.567191
2019-06-21T11:24:41
2019-06-21T11:24:41
194,328,239
0
0
null
null
null
null
UTF-8
Scilab
false
false
21,872
tst
pretest.tst
/* Questionaire created by optica toolkit Date: Fri Feb 28 10:22:06 1997 */ question(1, 'pre 1', 'Waar raakt de lichtstraal de hoofdas als we de lens vervangen door een platbolle?', [ 'dichterbij de lens', 'verder van de lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(20), sfere_right(20), breaking_index(1.51), pos_x(9.6), show_gauge(false)), l1 = lamp1(switch(true), angle(0), pos_y(3.35), pos_x(0.55)) ])). question(2, 'pre 2', 'Waar raakt de lichtstraal de hoofdas als we de hoek tussen de lichtstraal en de lens vergroten?', [ 'dichterbij de lens', 'verder van de lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(20), sfere_right(20), breaking_index(1.51), pos_x(6.4), show_gauge(false)), l1 = lamp1(switch(true), angle(25), pos_y(0.2), pos_x(0)) ])). question(3, 'pre 3', 'Waar raakt de lichtstraal de hoofdas als we de lens een stukje naar rechts bewegen?', [ 'dichterbij de lens', 'verder van de lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(20), sfere_right(20), breaking_index(1.51), pos_x(6.4), show_gauge(false)), l1 = lamp1(switch(true), angle(25), pos_y(0.2), pos_x(0)) ])). question(4, 'pre 4', 'Hoe schijnt de lichtstraal als we de lens een stukje naar rechts bewegen?', [ rechtuit, 'gebroken naar onder', 'gebroken naar boven' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-5), sfere_left(-20), sfere_right(-20), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(-24.0755), pos_y(3.95), pos_x(0)) ])). question(5, 'pre 5', 'Waar raakt de lichtstraal de hoofdas als we de lens vervangen door een platholle?', [ 'dichterbij de lens', 'verder van de lens vandaan', 'raakt nooit de hoofdas' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-5), sfere_left(-20), sfere_right(-20), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(-15.5241), pos_y(3.45), pos_x(0)) ])). question(6, 'pre 6', 'Waar raakt de lichtstraal de hoofdas als we de lens vervangen door een sterkere lens?', [ 'dichterbij de lens', 'verder van de lens vandaan', 'raakt hoofdas niet' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(7), sfere_left(10), sfere_right(10), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(0), pos_y(-2), pos_x(0)) ])). question(7, 'pre 7', 'Wat gebeurt er met de lichtstraal als we de lens vervangen door een positieve lens?', [ 'breekt naar boven', 'blijft hetzelfde', 'breekt naar beneden' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(7), sfere_left(-10), sfere_right(-10), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(-12.875), pos_y(2), pos_x(0)) ])). question(8, 'pre 8', 'Hoe buigt de lichtstraal af als we de lens een stukje naar links bewegen?', [ 'buigt sterker af', 'buigt zwakker af', 'blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-7), sfere_left(-10), sfere_right(-10), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(0), pos_y(2), pos_x(0)) ])). question(9, 'pre 9', 'Hoe buigt de lichtstraal af als we de lens een stukje naar rechts bewegen?', [ 'buigt sterker af', 'buigt zwakker af', 'blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-7), sfere_left(-10), sfere_right(-10), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(7.04577), pos_y(-2.75), pos_x(0)) ])). question(10, 'pre 10', 'Waar ligt het brandpunt van de lens als we het lampje naar onder schuiven?', [ 'links van de lens', 'op de lens', 'rechts van de lens' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-7), sfere_left(-10), sfere_right(-10), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(0), pos_y(2.2), pos_x(0)) ])). question(11, 'pre 11', 'Waar raakt de lichtstraal de hoofdas als we de lens vervangen door een positieve lens?', [ 'dichter bij de lens', 'verder van de lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(-7), sfere_left(-10), sfere_right(-10), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(-15.2104), pos_y(3.55), pos_x(-0.45)) ])). question(12, 'pre 12', 'Waar raakt de lichtstraal de hoofdas als we de hoek tussen de lichtstraal en de lens verkleinen?', [ 'dichter bij de lens', 'verder van de lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l1 = lamp1(switch(true), angle(10), pos_y(0), pos_x(0)) ])). question(13, 'pre 13', 'Waar komen de lichtstralen samen als we het lampje naar onder schuiven?', [ 'naar boven', 'naar beneden', 'blijven op hetzelfde punt' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l2 = lamp3(switch(true), angle(0), divergence(5), pos_x(0), pos_y(0)) ])). question(14, 'pre 14', 'Waar komen de lichtstralen samen als we de lens een stukje naar rechts verschuiven?', [ 'naar beneden', 'naar boven', 'blijven op hetzelfde punt' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l2 = lamp3(switch(true), angle(0), divergence(5), pos_x(0), pos_y(1.5)) ])). question(15, 'pre 15', 'Waar komen de lichtstralen samen als we de lamp meer naar boven laten schijnen?', [ 'naar beneden', 'blijven op hetzelfde punt', 'naar boven' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l2 = lamp3(switch(true), angle(0), divergence(5), pos_x(0), pos_y(0)) ])). question(16, 'pre 16', 'Waar komen de lichtstralen samen als we de lens vervangen door een zwakkere lens?', [ 'dichter bij de lens', 'verder van de lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.8), show_gauge(false)), l2 = lamp3(switch(true), angle(0), divergence(5), pos_x(0), pos_y(0)) ])). question(17, 'pre 17', 'Hoe buigt de onderste lichtstraal af als we de lens een stukje naar rechts bewegen?', [ 'naar boven', 'naar beneden', 'blijft op hetzelfde punt' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(4), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9), show_gauge(false)), l2 = lamp3(switch(true), angle(10), divergence(10), pos_x(0), pos_y(0)) ])). question(18, 'pre 18', 'Waar moet het beeldscherm staan om een scherp beeld te krijgen als we de lens vervangen door een zwakkere lens?', [ 'verder van de lens vandaan', 'dichter bij de lens', 'plaats blijft hetzelfde' ], state(state, '', [ l3 = biglamp, m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(13.45), show_gauge(true)), s1 = shield(pos_x(4.85), unit(1)), s2 = shield2(pos_x(25.35)) ])). question(19, 'pre 19', 'Als we de lens vervangen door een zwakkere lens en het beeld scherp stellen, hoe verandert dan de grootte van het plaatje?', [ vergroot, 'verandert niet', verkleind ], state(state, '', [ l3 = biglamp, m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(13.45), show_gauge(true)), s1 = shield(pos_x(4.85), unit(1)), s2 = shield2(pos_x(25.35)) ])). question(20, 'pre 20', 'Als we de lens naar rechts verschuiven, hoe moet dan het beeldscherm neergezet worden om een scherp beeld te krijgen?', [ 'verder van de lens vandaan', 'plaats blijft hetzelfde', 'dichter bij de lens' ], state(state, '', [ l3 = biglamp, m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(6), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(17.05), show_gauge(true)), s1 = shield(pos_x(2.7), unit(1)), s2 = shield2(pos_x(27.35)) ])). question(21, 'pre 21', 'Als we het voorwerp naar rechts verschuiven en dan het beeld scherp stellen, hoe verandert dan de grootte van het plaatje?', [ vergroot, verkleind, 'verandert niet' ], state(state, '', [ l3 = biglamp, m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(6), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(17.05), show_gauge(true)), s1 = shield(pos_x(2.7), unit(1)), s2 = shield2(pos_x(27.35)) ])). question(22, 'pre 22', 'Hoe moet het voorwerp bewogen worden om een beeld te laten verdwijnen?', [ 'het beeld kan niet verdwijnen', 'plaats blijft hetzelfde', 'er is nooit een beeld' ], state(state, '', [ l3 = biglamp, m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(-6), sfere_left(-10), sfere_right(-10), breaking_index(1.51), pos_x(13.35), show_gauge(true)), s1 = shield(pos_x(4.25), unit(1)) ])). question(23, 'pre 23', 'Als we de L-plaat naar links bewegen zodat deze op 4 centimeter van de lens komt te staan, wat is dan dan de grootte van het beeld?', [ 'kleiner dan het voorwerp', 'even groot als het voorwerp', 'groter dan het voorwerp' ], state(state, '', [ l3 = biglamp, s1 = shield(pos_x(9.3), unit(1)), m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(2), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(12.8), show_gauge(true)), d1 = ruler(from(m3), to(s1), pos_y(-6.75)), s3 = shield2(pos_x(17.5)) ])). question(24, 'pre 24', 'Het voorwerp staat op 4 centimeter van de lens. Hoe verandert de grootte van het beeld als we het voorwerp een klein stukje naar links bewegen?', [ 'wordt kleiner', 'blijft even groot', 'wordt groter' ], state(state, '', [ l3 = biglamp, s1 = shield(pos_x(8.75), unit(1)), m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(2), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(12.8), show_gauge(true)), d1 = ruler(from(m3), to(s1), pos_y(-6.75)), s3 = shield2(pos_x(16.75)) ])). question(25, 'pre 25', 'Als we het voorwerp iets naar links bewegen, waar bevindt zich dan het beeld van het voorwerp?', [ 'er is geen beeld', 'beeld is onzichtbaar en bevindt zich links van de lens', 'beeld is onzichtbaar en bevindt zich rechts van de lens' ], state(state, '', [ l3 = biglamp, s1 = shield(pos_x(8.4), unit(1)), m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(2), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(9.75), show_gauge(true)), d1 = ruler(from(m3), to(s1), pos_y(-6.75)) ])). question(26, 'pre 26', 'Als we het voorwerp, dat op ongeveer 2 centimeter van de lens staat, iets naar links bewegen, hoe groot wordt dan het beeld in vergelijking met het voorwerp?', [ 'beeld wordt kleiner dan voorwerp', 'beeld wordt groter dan voorwerp', 'er is geen beeld' ], state(state, '', [ l3 = biglamp, s1 = shield(pos_x(7.6), unit(1)), m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(2), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(9.75), show_gauge(true)), d1 = ruler(from(m3), to(s1), pos_y(-6.75)) ])). question(27, 'pre 27', 'Waar komen de lichtstralen uiteindelijk samen als we het lampje naar onder schuiven?', [ 'naar boven', 'naar beneden', 'blijven op hetzelfde punt' ], state(state, '', [ l4 = lamp3(switch(true), angle(0), divergence(5), pos_x(0.15), pos_y(0)), m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(7.35), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12.25), show_gauge(true)) ])). question(28, 'pre 28', 'Waar komen de lichtstralen uiteindelijk samen als we de linkse lens een stukje naar rechts verschuiven?', [ 'dichter bij de rechtse lens', 'verder van de rechtse lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ l4 = lamp3(switch(true), angle(0), divergence(5), pos_x(0.15), pos_y(1.7)), m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(13), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9.05), show_gauge(true)) ])). question(29, 'pre 29', 'Waar komen de lichtstralen uiteindelijk samen als we de rechtse lens een stukje naar rechts verschuiven?', [ 'dichterbij de rechtse lens', 'verder van de rechtse lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ l4 = lamp3(switch(true), angle(0), divergence(5), pos_x(0.15), pos_y(-2.25)), m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(13), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(9.05), show_gauge(true)) ])). question(30, 'pre 30', 'Waar komen de lichtstralen uiteindelijk samen als we het lampje iets omlaag laten schijnen?', [ 'naar boven', 'naar beneden', 'blijven op hetzelfde punt' ], state(state, '', [ l4 = lamp3(switch(true), angle(0), divergence(5), pos_x(0.15), pos_y(0)), m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.65), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12.8), show_gauge(true)) ])). question(31, 'pre 31', 'Waar komen de lichtstralen uiteindelijk samen als we de twee lenzen van plaats laten verwisselen?', [ 'dichter bij de rechtse lens', 'verder van de rechtse lens vandaan', 'plaats blijft hetzelfde' ], state(state, '', [ l4 = lamp3(switch(true), angle(0), divergence(5), pos_x(0.15), pos_y(0)), m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(8.65), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12.8), show_gauge(true)) ])). question(32, 'pre 32', 'Als we de linkse lens naar rechts bewegen, hoe moet de rechtse lens dan bewegen om het beeld scherp te krijgen?', [ 'naar links', 'naar rechts', 'plaats blijft hetzelfde' ], state(state, '', [ l5 = biglamp, m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(16.7), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12.65), show_gauge(true)), s4 = shield(pos_x(5.6), unit(1)), s5 = shield2(pos_x(21.65)) ])). question(33, 'pre 33', 'Als we de rechtse lens naar links bewegen, hoe moet de linkse lens dan bewegen om het beeld scherp te krijgen?', [ 'naar links', 'naar rechts', 'plaats blijft hetzelfde' ], state(state, '', [ l5 = biglamp, m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(16.7), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(12.65), show_gauge(true)), s4 = shield(pos_x(5.6), unit(1)), s5 = shield2(pos_x(21.65)) ])). question(34, 'pre 34', 'Als we beide lenzen even ver een stukje naar links bewegen, hoe moet het beeldscherm dan bewegen om een scherp beeld te krijgen?', [ 'naar links', 'naar rechts', 'plaats blijft hetzelfde' ], state(state, '', [ l5 = biglamp, m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(13.15), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(17.05), show_gauge(true)), s4 = shield(pos_x(5.6), unit(1)), s5 = shield2(pos_x(24.4)) ])). question(35, 'pre 35', 'Als we het voorwerp een stukje naar links bewegen, hoe moet de linkse lens dan bewegen om het beeld scherp te krijgen?', [ 'naar links', 'naar rechts', 'plaats blijft hetzelfde' ], state(state, '', [ l5 = biglamp, m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(13.15), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(17.05), show_gauge(true)), s4 = shield(pos_x(5.6), unit(1)), s5 = shield2(pos_x(24.4)) ])). question(36, 'pre 36', 'Als we het voorwerp een stukje naar links bewegen, hoe moet de rechtse lens dan bewegen om het beeld scherp te krijgen?', [ 'naar links', 'naar rechts', 'plaats blijft hetzelfde' ], state(state, '', [ l5 = biglamp, m4 = lens(label('1'), radius(5), thickness(0.1), focal_distance(1), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(10.65), show_gauge(true)), m5 = lens(label('2'), radius(5), thickness(0.1), focal_distance(2), sfere_left(0), sfere_right(0), breaking_index(1.51), pos_x(14.3), show_gauge(true)), s4 = shield(pos_x(4.05), unit(1)), s5 = shield2(pos_x(24.8)) ])).
813a20b82a3d92c28bbc53cee6e5b64f46a9d221
27701e67a76e2ffdea252af5f7d86bda74444744
/Eigen Value.sce
56af0e64f4162f2e4fab5c395674268494234a22
[]
no_license
Madhus12/OS-lab
34b5b130e911ffb6619b357187a31cf88e39660d
3548c6b18e267007b587c51a1b0b76455bc1c7e6
refs/heads/master
2020-07-27T10:22:11.614419
2019-09-17T13:47:06
2019-09-17T13:47:06
209,058,110
0
0
null
null
null
null
UTF-8
Scilab
false
false
270
sce
Eigen Value.sce
a = input("Enter A(square matrix):"); [n,n]=size(a); lam = poly(0,'lam'); x = a - lam*eye(n,n); y = det(x); z = roots(y); disp("Eigen Values"); disp(z'); disp("Eigen Vector"); for i=1:length(z) k = a-z(i)*eye(n,n); kernel(k); disp(k(:,1)); end
55d9f1e7def3da16c5797754fe51934a97098c81
669f52463d792f1d4933d95acd31792e2e47b056
/extracases.sce
198735d23fb44bf37ed66065b0f5d7f4a21882e1
[]
no_license
larrybolt/wisk2hitori
ce39473d7a49fa32bdfea46f0fc8c8a8acc71163
5f01b9c13fa50cf7d4d865c5a34c95b20d195d4c
refs/heads/master
2021-01-22T15:01:16.856691
2016-05-17T10:28:17
2016-05-17T10:28:17
33,406,015
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,719
sce
extracases.sce
mode(-1); warning('off'); // source: Real Hitori App // Easy 10 N13=[7 1 4 2 6 1 8 3 3 3 4 9 2 6 7 3 1 6 1 3 8 2 4 6 5 7 5 8 1 1 3 5 4 7 2 7 4 2 3 7 1 5 7 5 1 7 6 8 8 3 5 4 9 4 1 3 5 6 2 1 4 8 5 5 8 6 3 9 2 7 3 1 4 5 7 9 7 1 3 4 5] C13=[w z w z w w w z w w w w w z w z w w z w w z w w w w z w z w w w w z w w w w w z w z w w z z w z w w w z w w w z w w w z w w z w w w z w w z w w z w z w w z w w z] // Easy 11 N14=[5 1 6 4 9 8 2 4 3 7 6 4 3 4 8 2 9 3 3 8 1 2 6 3 7 5 4 6 2 4 8 1 1 3 7 3 2 6 7 8 8 5 9 4 6 1 9 5 7 8 6 3 1 2 9 7 7 1 5 4 8 2 7 7 1 9 3 2 7 5 6 8 6 4 3 9 7 2 1 7 5] C14=[w w w z w z w w w z w z w w w z w z w w w w w z w w w w w w w z w w w z w z w z w w w z w z w w w z w z w w w w z w w w w w z w z w z w z w w w z w w w w w w z w] // Medium 10 N15=[5 1 1 9 6 3 1 7 4 4 3 7 3 8 5 2 2 1 3 6 8 4 4 2 7 5 7 6 5 4 3 2 7 8 1 8 1 5 9 5 3 4 5 2 8 8 4 8 3 5 6 3 6 3 4 8 6 1 9 6 4 3 2 2 3 6 7 4 3 1 8 1 5 2 3 2 7 1 6 4 6] C15=[w w z w w w z w w z w w z w w w z w w w z w z w z w w w w w w w w w w z w z w w w w z w w z w w z w z w w z w w z w w w z w w w z w w w z w w z z w w z w w z w w] // Medium 11 N16=[1 9 1 3 8 1 5 8 6 2 1 3 2 7 4 6 6 9 6 4 4 9 3 2 1 7 2 8 2 3 5 6 5 9 4 7 5 7 9 1 7 6 7 5 3 8 6 2 8 5 9 8 3 2 9 3 1 7 1 2 6 8 5 1 6 8 2 4 3 3 9 3 2 7 6 5 9 3 3 1 8] C16=[z w z w w w w z w w w w z w w z w w w z w w w w w w z w w z w w z w w w w z w w z w w z w z w w z w w w w z w w z w w z w w w w z w w w w z w z z w w z w z w w w] // Hard 10 N17=[5 2 8 4 4 6 4 9 3 4 2 2 9 8 7 6 3 7 4 5 3 6 6 7 4 2 4 2 8 1 6 4 9 7 4 5 8 1 6 7 9 6 2 1 4 7 1 9 3 3 8 6 6 4 1 6 7 5 2 4 9 4 6 3 6 1 8 1 4 5 8 3 6 9 2 3 7 3 8 5 4] C17=[w w w z w w z w z w z w w w z w w w z w w z w w w w z w w z w z w w z w w z w w w z w w w w w w z w w z w z w z w w w z w w w z w w w z w w z w w w z w w z w w z] // Hard 11 N18=[9 5 8 7 3 1 2 1 3 7 2 4 8 3 9 3 1 6 9 4 7 5 9 6 7 2 1 5 2 3 9 4 2 1 4 8 4 1 7 2 6 3 8 8 5 8 3 1 6 4 6 5 9 5 9 5 4 4 3 1 1 8 7 2 7 5 1 8 6 4 2 9 1 7 7 3 3 5 9 6 7] C18=[w z w w w z w w z w w w w z w w z w z w z w w z w w w w z w w z w w w w w w z w w w w z w w w w w w z w w z z w z w z w z w w w w w w w w w z w w z w w z w w w z] // Challanging 10 // Vanaf Challanging begint backtracking meer een rol te spelen N19=[2 5 7 9 3 3 4 6 1 4 5 2 6 3 1 9 7 5 3 6 7 2 4 5 9 4 3 3 1 6 1 8 3 5 2 4 1 9 5 1 4 4 5 6 3 6 2 3 5 1 7 8 3 9 5 1 8 1 9 3 2 3 7 9 7 3 8 1 2 1 4 6 1 2 9 3 7 7 6 1 2] C19=[w w w w z w w z w w z w w w w z w w z w z w w w w z w w w w z w z w w w z w w w z w z w z w w z w w w w w w w z w z w z w z w w w w w z w w w w w z w w w z w z w] // Challanging 11 N20=[7 1 3 1 5 9 2 8 5 3 5 1 1 9 4 7 1 2 2 1 6 4 3 2 1 3 7 6 1 8 1 2 5 4 5 1 2 6 7 3 8 4 2 1 5 1 9 4 7 4 2 6 3 8 9 3 9 2 2 8 1 7 4 9 2 4 5 7 1 8 6 3 4 8 4 4 1 7 4 2 4] C20=[w z w w w w w w z w w w z w z w z w z w w w z w z w w w z w z w w w z w w w w w w w z w w w w z w w z w z w z w w w z w w w w w w z w w w w w w z w w z w w z w z] // Extreme 10 // in Extreme is backtracking haast onvermijdelijk N21=[9 7 3 3 8 2 6 5 6 7 8 2 5 1 4 9 8 3 1 3 8 9 4 1 7 1 9 2 8 9 6 5 8 4 7 2 5 2 9 9 1 2 6 7 8 2 5 1 8 9 7 3 6 3 4 8 3 7 3 5 5 2 1 7 4 7 1 6 3 2 9 2 1 9 5 8 3 6 8 4 5] C21=[w w w z w w z w w w z w w z w w w z z w w z w z w w w w z w w w w w w z w w z w w z w z w z w w z w w z w w w w z w w z w w w z w w w w w w w z w w z w z w z w w] // Extreme 11 N22=[4 6 7 8 1 6 5 1 3 3 4 3 1 9 3 7 5 6 1 2 9 1 5 3 1 2 8 9 6 3 2 1 5 8 3 4 1 7 1 5 2 4 2 9 2 5 3 4 5 8 1 9 2 6 8 8 1 4 7 3 6 3 9 2 8 5 9 4 7 4 6 1 8 1 1 3 4 1 2 1 5] C22=[w z w w z w w w w w w z w w z w w z w z w z w w z w w w w w w w w w z w z w z w z w z w w w w w z w w w z w w z w w w z w w w w w w w z w w w w z w z w w z w z w]
d8fccc12f2a982ebfaff04f9a97d4d1ba392b856
449d555969bfd7befe906877abab098c6e63a0e8
/3523/CH3/EX3.7.2/Ex3_2.sce
6438a0b9d6e26aac0ea6342e8f0f6e656dffe784
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
526
sce
Ex3_2.sce
// Example 2// Ch 3 clc; clear; close; // given data R=8314; // gas constant in J/kg.mol.K T=298;//in kelvin M=32; // oxygen is diatomic m=2*10^-3; // in kg p=1.01*10^5; // 1 atm=1.01*10^5 N/m2 G = (m*R*T)/(M*p);//volume of gas x=(3/2)*p;//no. of molecules per unit volume where x=N*0.5*m*v^2 is given as (3/2)*p) printf("volume of gas %e m^3 \n",G) KE = x*G;//total translational kinetic energy printf("total translational kinetic energy is %f J \n",KE) // Note: Value of G is calculated in book is wrong
3e7de6575ada66faf0c52e36d83e32fde494c48d
8a6645cb04c943e01c183d76a054826c928844e6
/generate_sound.sce
b19ac7cdb6cd6e9e5cc0230a785d08a460f6bf98
[ "Apache-2.0" ]
permissive
SteinerPascal/signal-generator
d4094fcd62eb6cff96b6c6c0d92556e2420a3499
9bf07447b063ffda4853f936af0e652ee6f3d82d
refs/heads/main
2023-06-09T08:10:56.637374
2021-06-27T16:40:30
2021-06-27T16:40:30
378,138,358
0
0
null
null
null
null
UTF-8
Scilab
false
false
379
sce
generate_sound.sce
SignalFrequency = 50; SamplingFrequency = 22.05e3; Samples_per_Cycle = SamplingFrequency/SignalFrequency; n = 0:(Samples_per_Cycle-1); Signal_OneCycle = sin(2*%pi*n / (SamplingFrequency/SignalFrequency)); CycleDuration = (1/SamplingFrequency) * length(n); FullSignal = 0; for k=1:(10/CycleDuration) FullSignal = [FullSignal Signal_OneCycle]; end sound(FullSignal)
a70295411e7040342e59c8e0a0de49e5352c9cb5
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/SURPRISE-LANGUAGES/Iranian/pus.tst
21c37662eadcdba2c62a94e2da03125274dbb617
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
31,303
tst
pus.tst
ژېړ ADJ;NOM;FEM;SG ژېړ ADJ;non{NOM};MASC;PL ژېړ ADJ;non{NOM};FEM;PL ژېړ ADJ;NOM;MASC;PL ژېړ ADJ;VOC;FEM;PL ژېړ ADJ;VOC;MASC;SG ژېړ ADJ;VOC;FEM;SG ژېړ ADJ;NOM;MASC;SG ژېړ ADJ;NOM;FEM;PL ژېړ ADJ;non{NOM};MASC;SG ژېړ ADJ;non{NOM};FEM;SG ژېړ ADJ;VOC;MASC;PL کتاب N;NOM;PL کتاب N;VOC;PL کتاب N;non{NOM};SG کتاب N;VOC;SG کتاب N;non{NOM};PL کتاب N;NOM;SG ستوری N;VOC;PL ستوری N;NOM;SG ستوری N;VOC;SG ستوری N;non{NOM};SG ستوری N;NOM;PL ستوری N;non{NOM};PL منځنی ADJ;NOM;MASC;SG منځنی ADJ;non{NOM};FEM;SG;LGSPEC1 منځنی ADJ;non{NOM};FEM;SG منځنی ADJ;non{NOM};MASC;PL منځنی ADJ;VOC;FEM;SG منځنی ADJ;NOM;FEM;SG منځنی ADJ;non{NOM};FEM;PL;LGSPEC1 منځنی ADJ;non{NOM};MASC;PL;LGSPEC1 منځنی ADJ;non{NOM};FEM;PL منځنی ADJ;NOM;FEM;PL منځنی ADJ;NOM;MASC;PL منځنی ADJ;VOC;FEM;PL منځنی ADJ;non{NOM};MASC;SG منځنی ADJ;VOC;MASC;PL منځنی ADJ;non{NOM};MASC;SG;LGSPEC1 منځنی ADJ;VOC;MASC;SG سکالو N;VOC;PL سکالو N;VOC;SG سکالو N;non{NOM};SG سکالو N;NOM;SG سکالو N;non{NOM};PL سکالو N;NOM;PL ښه ADJ;NOM;FEM;SG ښه ADJ;non{NOM};MASC;SG ښه ADJ;VOC;FEM;SG ښه ADJ;non{NOM};FEM;PL ښه ADJ;NOM;MASC;PL ښه ADJ;VOC;MASC;SG ښه ADJ;non{NOM};MASC;PL ښه ADJ;non{NOM};FEM;SG ښه ADJ;VOC;MASC;PL ښه ADJ;NOM;FEM;PL ښه ADJ;VOC;FEM;PL ښه ADJ;NOM;MASC;SG لېونی N;VOC;SG لېونی N;NOM;SG لېونی ADJ;VOC;FEM;PL لېونی ADJ;VOC;MASC;SG لېونی ADJ;non{NOM};FEM;SG لېونی ADJ;NOM;FEM;SG لېونی ADJ;VOC;MASC;PL لېونی ADJ;NOM;FEM;PL لېونی N;VOC;PL لېونی ADJ;non{NOM};MASC;PL لېونی ADJ;NOM;MASC;PL لېونی ADJ;non{NOM};MASC;SG لېونی N;non{NOM};PL لېونی ADJ;non{NOM};FEM;PL لېونی ADJ;VOC;FEM;SG لېونی ADJ;NOM;MASC;SG لېونی N;non{NOM};SG لېونی N;NOM;PL پخول V;IPFV;FEM;PL;3;PST پخول V;PFV;MASC;PL;3;PST;LGSPEC2 پخول V;PFV;PL;1;PRS پخول V;PFV;PL;1;PST;LGSPEC2 پخول V;IPFV;MASC;SG;3;PRS پخول V;PFV;FEM;SG;1;PRS;LGSPEC2 پخول V;PFV;PL;1;PST پخول V;IPFV;PL;2;PST پخول V;PFV;MASC;SG;2;FUT;LGSPEC2 پخول V;IPFV;SG;2;PST پخول V;PFV;MASC;PL;3;PST پخول V;PFV;FEM;SG;2;FUT;LGSPEC2 پخول V;PFV;FEM;PL;3;PRS;LGSPEC2 پخول V;PFV;FEM;SG;2;PST;LGSPEC2 پخول V;IPFV;FEM;PL;3;PRS پخول V;PFV;MASC;SG;3;FUT;LGSPEC2 پخول V;PFV;PL;1;PRS;LGSPEC2 پخول V;PFV;MASC;SG;2;PST;LGSPEC2 پخول V;IPFV;MASC;PL;3;PST پخول V;PFV;MASC;SG;3;PST پخول V;PFV;FEM;SG;3;PRS پخول V;PFV;FEM;SG;3;FUT;LGSPEC2 پخول V;PFV;MASC;PL;3;FUT;LGSPEC2 پخول V;IPFV;SG;1;PST پخول V;PFV;MASC;SG;3;PRS پخول V;IPFV;SG;2;PRS پخول V;PFV;PL;2;FUT;LGSPEC2 پخول V;PFV;PL;2;PRS پخول V;PFV;MASC;SG;3;PRS;LGSPEC2 پخول V;PFV;PL;2;PST;LGSPEC2 پخول V;PFV;FEM;SG;3;PRS;LGSPEC2 پخول V;PFV;MASC;SG;1;PRS;LGSPEC2 پخول V;PFV;MASC;SG;2;PRS;LGSPEC2 پخول V;PFV;FEM;SG;1;PST;LGSPEC2 پخول V;IPFV;PL;2;PRS پخول V;PFV;SG;1;PRS پخول V;PFV;PL;1;FUT;LGSPEC2 پخول V;PFV;PL;2;PST پخول V;PFV;MASC;PL;3;PRS;LGSPEC2 پخول V;PFV;MASC;SG;3;PST;LGSPEC2 پخول V;PFV;MASC;PL;3;PRS پخول V;PFV;SG;2;PRS پخول V;IPFV;FEM;SG;3;PST پخول V;PFV;SG;1;PST پخول V;IPFV;SG;1;PRS پخول V;PFV;MASC;SG;1;FUT;LGSPEC2 پخول V;PFV;FEM;PL;3;PRS پخول V;PFV;FEM;SG;3;PST پخول V;PFV;FEM;PL;3;FUT;LGSPEC2 پخول V;PFV;MASC;SG;1;PST;LGSPEC2 پخول V;PFV;FEM;PL;3;PST;LGSPEC2 پخول V;IPFV;MASC;SG;3;PST پخول V;PFV;FEM;SG;3;PST پخول V;PFV;FEM;SG;2;PRS;LGSPEC2 پخول V;PFV;SG;2;PST پخول V;PFV;FEM;PL;3;PST پخول V;PFV;PL;2;PST پخول V;PFV;FEM;SG;3;PST;LGSPEC2 پخول V;IPFV;PL;1;PRS پخول V;IPFV;MASC;PL;3;PST پخول V;IPFV;FEM;SG;3;PRS پخول V;PFV;SG;2;PST پخول V;IPFV;MASC;PL;3;PRS پخول V;PFV;MASC;PL;3;PST پخول V;IPFV;PL;1;PST پخول V;PFV;FEM;PL;3;PST پخول V;PFV;PL;2;PRS;LGSPEC2 پخول V;PFV;FEM;SG;1;FUT;LGSPEC2 بارکزی N;VOC;SG بارکزی N;non{NOM};PL بارکزی N;non{NOM};SG بارکزی N;NOM;SG بارکزی N;VOC;PL بارکزی N;NOM;PL رسنۍ N;non{NOM};SG رسنۍ N;VOC;PL رسنۍ N;non{NOM};PL رسنۍ N;NOM;PL رسنۍ N;NOM;SG رسنۍ N;VOC;SG نياو N;non{NOM};PL نياو N;NOM;PL نياو N;NOM;SG نياو N;VOC;PL نياو N;non{NOM};SG نياو N;VOC;SG اتله N;VOC;PL اتله N;NOM;SG اتله N;VOC;SG اتله N;non{NOM};PL اتله N;NOM;PL اتله N;non{NOM};SG اوسېدونکې N;NOM;PL اوسېدونکې N;non{NOM};PL اوسېدونکې N;VOC;PL اوسېدونکې N;non{NOM};SG اوسېدونکې N;NOM;SG اوسېدونکې N;VOC;SG دعوه N;NOM;SG دعوه N;non{NOM};SG دعوه N;NOM;PL دعوه N;VOC;PL دعوه N;VOC;SG دعوه N;non{NOM};PL غوښه N;non{NOM};PL غوښه N;non{NOM};SG غوښه N;NOM;PL غوښه N;VOC;PL غوښه N;NOM;SG غوښه N;VOC;SG دارو N;NOM;PL دارو N;non{NOM};SG دارو N;non{NOM};PL دارو N;NOM;SG دارو N;VOC;PL دارو N;VOC;SG سږى N;VOC;SG سږى N;non{NOM};SG سږى N;VOC;PL سږى N;non{NOM};PL سږى N;NOM;SG سږى N;NOM;PL مېړۀ N;VOC;SG مېړۀ N;non{NOM};SG مېړۀ N;NOM;PL مېړۀ N;NOM;SG مېړۀ N;VOC;PL مېړۀ N;non{NOM};PL غرڅنی ADJ;NOM;MASC;SG غرڅنی ADJ;NOM;FEM;PL غرڅنی ADJ;NOM;FEM;SG غرڅنی ADJ;non{NOM};MASC;PL غرڅنی ADJ;VOC;MASC;SG غرڅنی ADJ;VOC;FEM;SG غرڅنی ADJ;non{NOM};MASC;SG غرڅنی ADJ;VOC;MASC;PL غرڅنی ADJ;non{NOM};FEM;PL غرڅنی ADJ;VOC;FEM;PL غرڅنی ADJ;non{NOM};FEM;SG غرڅنی ADJ;NOM;MASC;PL دروستل V;PFV;PL;2;PST دروستل V;PFV;PL;2;PRS دروستل V;PFV;MASC;SG;3;PST;LGSPEC2 دروستل V;PFV;FEM;PL;3;PST دروستل V;PFV;PL;2;FUT;LGSPEC2 دروستل V;IPFV;FEM;SG;3;PRS;LGSPEC1 دروستل V;PFV;MASC;PL;3;PST;LGSPEC1 دروستل V;IPFV;MASC;SG;3;PST دروستل V;PFV;PL;2;PST;LGSPEC1 دروستل V;PFV;MASC;SG;3;PRS;LGSPEC1 دروستل V;PFV;SG;2;PST;LGSPEC1 دروستل V;PFV;SG;1;PST دروستل V;PFV;FEM;SG;3;PST;LGSPEC1 دروستل V;IPFV;FEM;PL;3;PRS دروستل V;PFV;FEM;SG;1;PST;LGSPEC2 دروستل V;PFV;SG;1;PST;LGSPEC1 دروستل V;PFV;FEM;SG;3;PRS;LGSPEC1 دروستل V;PFV;FEM;SG;3;PST دروستل V;PFV;SG;1;PRS دروستل V;IPFV;PL;1;PRS دروستل V;IPFV;SG;1;PRS دروستل V;IPFV;PL;2;PST دروستل V;PFV;FEM;SG;1;FUT;LGSPEC2 دروستل V;IPFV;MASC;PL;3;PST دروستل V;PFV;PL;1;PRS;LGSPEC2 دروستل V;PFV;FEM;PL;3;PST;LGSPEC1 دروستل V;PFV;MASC;PL;3;PRS;LGSPEC1 دروستل V;PFV;MASC;PL;3;PST;LGSPEC2 دروستل V;IPFV;MASC;PL;3;PST;LGSPEC1 دروستل V;PFV;FEM;SG;3;PST;LGSPEC2 دروستل V;PFV;MASC;PL;3;PST دروستل V;PFV;FEM;SG;3;PRS;LGSPEC2 دروستل V;PFV;MASC;PL;3;PRS;LGSPEC2 دروستل V;IPFV;FEM;PL;3;PRS;LGSPEC1 دروستل V;PFV;PL;1;FUT;LGSPEC2 دروستل V;IPFV;SG;2;PST دروستل V;PFV;PL;2;PRS;LGSPEC2 دروستل V;IPFV;SG;2;PRS;LGSPEC1 دروستل V;IPFV;SG;1;PST دروستل V;PFV;SG;2;PRS دروستل V;IPFV;PL;2;PRS دروستل V;IPFV;PL;1;PRS;LGSPEC1 دروستل V;PFV;PL;1;PST;LGSPEC2 دروستل V;IPFV;SG;1;PST;LGSPEC1 دروستل V;PFV;MASC;SG;3;PST;LGSPEC1 دروستل V;IPFV;MASC;PL;3;PRS;LGSPEC1 دروستل V;IPFV;FEM;PL;3;PST دروستل V;PFV;SG;2;PST دروستل V;IPFV;SG;1;PRS;LGSPEC1 دروستل V;IPFV;FEM;SG;3;PST دروستل V;PFV;PL;1;PRS دروستل V;PFV;PL;1;PST دروستل V;PFV;MASC;PL;3;PRS دروستل V;IPFV;SG;2;PRS دروستل V;PFV;MASC;SG;1;FUT;LGSPEC2 دروستل V;PFV;PL;2;PRS;LGSPEC1 دروستل V;IPFV;PL;2;PRS;LGSPEC1 دروستل V;IPFV;PL;2;PST;LGSPEC1 دروستل V;PFV;MASC;SG;1;PST;LGSPEC2 دروستل V;PFV;MASC;SG;2;PRS;LGSPEC2 دروستل V;PFV;PL;2;PST;LGSPEC2 دروستل V;PFV;FEM;SG;1;PRS;LGSPEC2 دروستل V;PFV;MASC;SG;2;PST;LGSPEC2 دروستل V;PFV;FEM;SG;2;FUT;LGSPEC2 دروستل V;PFV;MASC;PL;3;FUT;LGSPEC2 دروستل V;IPFV;MASC;SG;3;PRS;LGSPEC1 دروستل V;PFV;FEM;SG;2;PST;LGSPEC2 دروستل V;IPFV;MASC;SG;3;PRS دروستل V;PFV;FEM;PL;3;PST;LGSPEC2 دروستل V;PFV;MASC;SG;2;FUT;LGSPEC2 دروستل V;IPFV;FEM;PL;3;PST;LGSPEC1 دروستل V;PFV;SG;2;PRS;LGSPEC1 دروستل V;PFV;FEM;SG;3;PRS دروستل V;PFV;SG;1;PRS;LGSPEC1 دروستل V;PFV;FEM;SG;3;FUT;LGSPEC2 دروستل V;IPFV;PL;1;PST دروستل V;PFV;MASC;PL;3;PST دروستل V;PFV;FEM;PL;3;PRS دروستل V;IPFV;SG;2;PST;LGSPEC1 دروستل V;PFV;FEM;SG;2;PRS;LGSPEC2 دروستل V;PFV;MASC;SG;1;PRS;LGSPEC2 دروستل V;PFV;FEM;PL;3;FUT;LGSPEC2 دروستل V;IPFV;FEM;SG;3;PST;LGSPEC1 دروستل V;PFV;MASC;SG;3;PST دروستل V;PFV;FEM;PL;3;PRS;LGSPEC2 دروستل V;IPFV;MASC;SG;3;PST;LGSPEC1 دروستل V;PFV;MASC;SG;3;PRS;LGSPEC2 دروستل V;IPFV;MASC;PL;3;PRS دروستل V;PFV;PL;1;PRS;LGSPEC1 دروستل V;PFV;PL;1;PST;LGSPEC1 دروستل V;IPFV;PL;1;PST;LGSPEC1 دروستل V;PFV;MASC;PL;3;PST;LGSPEC2 دروستل V;PFV;FEM;PL;3;PRS;LGSPEC1 دروستل V;PFV;MASC;SG;3;FUT;LGSPEC2 دروستل V;IPFV;FEM;SG;3;PRS دروستل V;PFV;MASC;SG;3;PRS لرل V;PFV;SG;2;PST لرل V;IPFV;FEM;PL;3;PRS لرل V;PFV;MASC;SG;3;PST لرل V;PFV;FEM;PL;3;PRS لرل V;PFV;SG;1;PRS لرل V;PFV;FEM;PL;3;PST لرل V;PFV;SG;1;PST لرل V;PFV;SG;2;PRS لرل V;IPFV;FEM;SG;3;PRS لرل V;IPFV;MASC;PL;3;PST لرل V;PFV;PL;1;PST لرل V;PFV;PL;2;PRS لرل V;IPFV;MASC;SG;3;PST لرل V;IPFV;MASC;SG;3;PRS لرل V;IPFV;FEM;SG;3;PST لرل V;IPFV;SG;2;PRS لرل V;IPFV;MASC;PL;3;PRS لرل V;IPFV;FEM;PL;3;PST لرل V;IPFV;PL;2;PST لرل V;PFV;PL;2;PST لرل V;IPFV;PL;2;PRS لرل V;PFV;MASC;SG;3;PRS لرل V;IPFV;PL;1;PST لرل V;IPFV;SG;1;PST لرل V;IPFV;SG;1;PRS لرل V;PFV;MASC;PL;3;PST لرل V;PFV;MASC;PL;3;PRS لرل V;PFV;FEM;SG;3;PST لرل V;PFV;PL;1;PRS لرل V;IPFV;SG;2;PST لرل V;IPFV;PL;1;PRS لرل V;PFV;FEM;SG;3;PRS خت N;non{NOM};PL خت N;non{NOM};SG خت N;VOC;PL خت N;VOC;SG خت N;NOM;SG خت N;NOM;PL آيات N;VOC;PL آيات N;NOM;SG آيات N;VOC;SG آيات N;NOM;PL آيات N;non{NOM};PL آيات N;non{NOM};SG هېر ADJ;non{NOM};MASC;SG هېر ADJ;VOC;FEM;SG هېر ADJ;non{NOM};MASC;PL هېر ADJ;VOC;MASC;SG هېر ADJ;NOM;MASC;SG هېر ADJ;VOC;MASC;PL هېر ADJ;NOM;FEM;PL هېر ADJ;non{NOM};FEM;PL هېر ADJ;NOM;FEM;SG هېر ADJ;non{NOM};FEM;SG هېر ADJ;VOC;FEM;PL هېر ADJ;NOM;MASC;PL ذکر N;non{NOM};PL ذکر N;non{NOM};SG ذکر N;VOC;PL ذکر N;NOM;SG ذکر N;VOC;SG ذکر N;NOM;PL غړی N;non{NOM};SG غړی N;NOM;PL غړی N;VOC;SG غړی N;NOM;SG غړی N;VOC;PL غړی N;non{NOM};PL لمن N;VOC;SG لمن N;non{NOM};SG لمن N;VOC;PL لمن N;non{NOM};PL لمن N;NOM;PL لمن N;NOM;SG غوږ نيول V;PFV;FEM;SG;1;PST;LGSPEC2 غوږ نيول V;PFV;PL;1;PRS غوږ نيول V;PFV;FEM;PL;3;PST غوږ نيول V;IPFV;PL;2;PRS غوږ نيول V;PFV;MASC;SG;2;PRS;LGSPEC2 غوږ نيول V;IPFV;MASC;PL;3;PRS;LGSPEC1 غوږ نيول V;PFV;MASC;PL;3;PST غوږ نيول V;PFV;FEM;SG;2;FUT;LGSPEC2 غوږ نيول V;IPFV;FEM;PL;3;PST غوږ نيول V;PFV;FEM;PL;3;PST;LGSPEC1 غوږ نيول V;PFV;FEM;PL;3;PRS;LGSPEC2 غوږ نيول V;PFV;MASC;PL;3;PST;LGSPEC2 غوږ نيول V;PFV;FEM;SG;3;PRS غوږ نيول V;PFV;PL;1;PST;LGSPEC2 غوږ نيول V;PFV;MASC;PL;3;PRS غوږ نيول V;PFV;PL;1;PRS;LGSPEC2 غوږ نيول V;IPFV;MASC;SG;3;PST غوږ نيول V;PFV;MASC;SG;3;PRS;LGSPEC2 غوږ نيول V;PFV;FEM;SG;2;PRS;LGSPEC2 غوږ نيول V;IPFV;PL;1;PST غوږ نيول V;PFV;FEM;SG;3;PST غوږ نيول V;PFV;PL;2;PRS;LGSPEC2 غوږ نيول V;PFV;MASC;SG;3;PST غوږ نيول V;PFV;MASC;SG;2;PST;LGSPEC2 غوږ نيول V;PFV;SG;1;PRS غوږ نيول V;IPFV;FEM;SG;3;PRS;LGSPEC1 غوږ نيول V;PFV;PL;2;PRS غوږ نيول V;PFV;MASC;PL;3;PRS;LGSPEC1 غوږ نيول V;IPFV;SG;1;PST;LGSPEC1 غوږ نيول V;PFV;SG;2;PRS;LGSPEC1 غوږ نيول V;PFV;MASC;PL;3;PST;LGSPEC1 غوږ نيول V;IPFV;MASC;PL;3;PST غوږ نيول V;PFV;FEM;SG;3;FUT;LGSPEC2 غوږ نيول V;PFV;SG;2;PRS غوږ نيول V;PFV;FEM;SG;3;PRS;LGSPEC1 غوږ نيول V;PFV;MASC;SG;3;FUT;LGSPEC2 غوږ نيول V;PFV;PL;2;PST;LGSPEC2 غوږ نيول V;IPFV;PL;2;PST;LGSPEC1 غوږ نيول V;PFV;FEM;PL;3;PRS;LGSPEC1 غوږ نيول V;PFV;FEM;SG;3;PST;LGSPEC1 غوږ نيول V;IPFV;SG;2;PRS;LGSPEC1 غوږ نيول V;IPFV;MASC;PL;3;PST;LGSPEC1 غوږ نيول V;PFV;FEM;SG;1;FUT;LGSPEC2 غوږ نيول V;PFV;PL;2;FUT;LGSPEC2 غوږ نيول V;PFV;SG;1;PST;LGSPEC1 غوږ نيول V;PFV;FEM;SG;3;PST;LGSPEC2 غوږ نيول V;IPFV;SG;2;PST غوږ نيول V;PFV;FEM;PL;3;FUT;LGSPEC2 غوږ نيول V;PFV;FEM;SG;2;PST;LGSPEC2 غوږ نيول V;IPFV;FEM;PL;3;PRS;LGSPEC1 غوږ نيول V;PFV;SG;1;PRS;LGSPEC1 غوږ نيول V;PFV;FEM;PL;3;PST;LGSPEC2 غوږ نيول V;PFV;FEM;SG;3;PRS;LGSPEC2 غوږ نيول V;IPFV;FEM;SG;3;PST غوږ نيول V;IPFV;SG;1;PST غوږ نيول V;PFV;MASC;SG;3;PST;LGSPEC2 غوږ نيول V;PFV;MASC;SG;3;PRS غوږ نيول V;PFV;PL;1;FUT;LGSPEC2 غوږ نيول V;PFV;SG;2;PST غوږ نيول V;IPFV;MASC;SG;3;PRS غوږ نيول V;IPFV;MASC;PL;3;PST;LGSPEC1 غوږ نيول V;PFV;MASC;SG;3;PST;LGSPEC1 غوږ نيول V;PFV;MASC;SG;1;FUT;LGSPEC2 غوږ نيول V;PFV;MASC;SG;2;FUT;LGSPEC2 غوږ نيول V;IPFV;FEM;SG;3;PST;LGSPEC1 غوږ نيول V;PFV;MASC;SG;1;PRS;LGSPEC2 غوږ نيول V;PFV;SG;2;PST;LGSPEC1 غوږ نيول V;IPFV;PL;1;PRS غوږ نيول V;PFV;FEM;SG;1;PST;LGSPEC2 غوږ نيول V;IPFV;PL;1;PRS;LGSPEC1 غوږ نيول V;IPFV;MASC;SG;3;PST;LGSPEC1 غوږ نيول V;IPFV;SG;1;PRS غوږ نيول V;PFV;MASC;PL;3;FUT;LGSPEC2 غوږ نيول V;PFV;FEM;SG;1;PRS;LGSPEC2 غوږ نيول V;PFV;PL;2;PST غوږ نيول V;PFV;PL;1;PRS;LGSPEC1 غوږ نيول V;PFV;MASC;PL;3;PRS;LGSPEC2 غوږ نيول V;PFV;SG;1;PST غوږ نيول V;IPFV;SG;2;PRS غوږ نيول V;IPFV;MASC;PL;3;PRS غوږ نيول V;IPFV;FEM;SG;3;PRS غوږ نيول V;IPFV;MASC;SG;3;PRS;LGSPEC1 غوږ نيول V;PFV;PL;2;PRS;LGSPEC1 غوږ نيول V;IPFV;PL;2;PRS;LGSPEC1 غوږ نيول V;IPFV;PL;2;PST غوږ نيول V;IPFV;SG;2;PST;LGSPEC1 غوږ نيول V;PFV;PL;1;PST;LGSPEC1 غوږ نيول V;PFV;PL;1;PST غوږ نيول V;PFV;MASC;SG;3;PRS;LGSPEC1 غوږ نيول V;PFV;PL;2;PST;LGSPEC1 غوږ نيول V;PFV;MASC;SG;1;PST;LGSPEC2 غوږ نيول V;IPFV;MASC;PL;3;PST غوږ نيول V;IPFV;FEM;PL;3;PST;LGSPEC1 غوږ نيول V;PFV;FEM;PL;3;PRS غوږ نيول V;IPFV;PL;1;PST;LGSPEC1 غوږ نيول V;IPFV;SG;1;PRS;LGSPEC1 غوږ نيول V;IPFV;FEM;PL;3;PRS پشۍ N;NOM;SG پشۍ N;NOM;PL پشۍ N;VOC;PL پشۍ N;non{NOM};PL پشۍ N;non{NOM};SG پشۍ N;VOC;SG كوتره N;VOC;SG كوتره N;VOC;PL كوتره N;NOM;PL كوتره N;NOM;SG كوتره N;non{NOM};SG كوتره N;non{NOM};PL لاريون N;NOM;PL لاريون N;VOC;SG لاريون N;NOM;SG لاريون N;non{NOM};SG لاريون N;VOC;PL لاريون N;non{NOM};PL لوبه کول V;IPFV;PL;2;PRS لوبه کول V;IPFV;SG;2;PST لوبه کول V;PFV;PL;1;PST لوبه کول V;IPFV;SG;2;PRS لوبه کول V;PFV;PL;2;PST لوبه کول V;PFV;FEM;PL;3;PST لوبه کول V;PFV;SG;2;PST لوبه کول V;PFV;MASC;PL;3;PST لوبه کول V;IPFV;FEM;PL;3;PRS لوبه کول V;PFV;SG;1;PST لوبه کول V;PFV;MASC;SG;3;PRS لوبه کول V;PFV;FEM;PL;3;PRS لوبه کول V;IPFV;PL;2;PST لوبه کول V;IPFV;FEM;SG;3;PST لوبه کول V;IPFV;FEM;SG;3;PRS لوبه کول V;PFV;FEM;SG;3;PRS لوبه کول V;PFV;FEM;SG;3;PST لوبه کول V;IPFV;MASC;PL;3;PST لوبه کول V;IPFV;SG;1;PRS لوبه کول V;IPFV;SG;1;PST لوبه کول V;PFV;SG;1;PRS لوبه کول V;PFV;PL;1;PRS لوبه کول V;IPFV;MASC;SG;3;PRS لوبه کول V;IPFV;PL;1;PRS لوبه کول V;PFV;SG;2;PRS لوبه کول V;PFV;PL;2;PRS لوبه کول V;PFV;SG;2;PST لوبه کول V;IPFV;MASC;SG;3;PST لوبه کول V;IPFV;PL;1;PST لوبه کول V;PFV;MASC;SG;3;PST لوبه کول V;IPFV;FEM;PL;3;PST لوبه کول V;IPFV;MASC;PL;3;PRS لوبه کول V;IPFV;MASC;PL;3;PST لوبه کول V;PFV;SG;1;PST لوبه کول V;PFV;MASC;PL;3;PRS لوبه کول V;PFV;MASC;PL;3;PST بکاڼه N;VOC;SG بکاڼه N;NOM;PL بکاڼه N;non{NOM};SG بکاڼه N;NOM;SG بکاڼه N;non{NOM};PL بکاڼه N;VOC;PL څارونکى N;NOM;PL څارونکى N;VOC;PL څارونکى N;VOC;SG څارونکى N;non{NOM};SG څارونکى N;NOM;SG څارونکى N;non{NOM};PL غپول V;IPFV;SG;1;PST غپول V;PFV;MASC;SG;2;FUT;LGSPEC2 غپول V;PFV;MASC;SG;3;PST غپول V;PFV;MASC;SG;1;PST;LGSPEC2 غپول V;IPFV;SG;2;PST غپول V;PFV;FEM;SG;3;PST;LGSPEC2 غپول V;PFV;FEM;SG;1;PST;LGSPEC2 غپول V;PFV;FEM;SG;1;FUT;LGSPEC2 غپول V;PFV;MASC;SG;3;PRS;LGSPEC2 غپول V;IPFV;FEM;SG;3;PST غپول V;PFV;MASC;SG;3;PST;LGSPEC2 غپول V;PFV;MASC;SG;1;PRS;LGSPEC2 غپول V;IPFV;MASC;SG;3;PRS غپول V;IPFV;SG;2;PRS غپول V;PFV;PL;2;PST غپول V;IPFV;PL;2;PST غپول V;PFV;FEM;SG;3;PRS غپول V;IPFV;PL;1;PST غپول V;PFV;MASC;PL;3;PST;LGSPEC2 غپول V;IPFV;FEM;PL;3;PRS غپول V;PFV;PL;2;PRS;LGSPEC2 غپول V;PFV;FEM;SG;2;PST;LGSPEC2 غپول V;PFV;PL;2;FUT;LGSPEC2 غپول V;PFV;FEM;SG;3;FUT;LGSPEC2 غپول V;PFV;FEM;PL;3;PST غپول V;PFV;MASC;PL;3;PRS غپول V;PFV;MASC;SG;3;FUT;LGSPEC2 غپول V;IPFV;MASC;PL;3;PST غپول V;PFV;FEM;PL;3;PST;LGSPEC2 غپول V;PFV;FEM;SG;2;PRS;LGSPEC2 غپول V;PFV;MASC;SG;3;PRS غپول V;PFV;SG;1;PST غپول V;PFV;MASC;SG;1;FUT;LGSPEC2 غپول V;PFV;MASC;SG;2;PRS;LGSPEC2 غپول V;IPFV;MASC;SG;3;PST غپول V;PFV;FEM;PL;3;PRS غپول V;PFV;PL;1;PST غپول V;IPFV;PL;1;PRS غپول V;PFV;FEM;SG;2;FUT;LGSPEC2 غپول V;IPFV;FEM;SG;3;PRS غپول V;PFV;SG;2;PRS غپول V;IPFV;SG;1;PRS غپول V;PFV;FEM;PL;3;PRS;LGSPEC2 غپول V;PFV;SG;1;PRS غپول V;PFV;PL;2;PRS;LGSPEC2 غپول V;PFV;PL;1;PRS;LGSPEC2 غپول V;PFV;FEM;SG;3;PRS;LGSPEC2 غپول V;IPFV;PL;2;PRS غپول V;PFV;MASC;SG;2;PST;LGSPEC2 غپول V;PFV;PL;1;PST;LGSPEC2 غپول V;PFV;MASC;PL;3;FUT;LGSPEC2 غپول V;PFV;MASC;PL;3;PST;LGSPEC2 غپول V;PFV;PL;1;PRS غپول V;PFV;SG;2;PST غپول V;IPFV;FEM;PL;3;PST غپول V;PFV;PL;1;FUT;LGSPEC2 غپول V;IPFV;MASC;PL;3;PRS غپول V;PFV;MASC;PL;3;PST غپول V;PFV;MASC;PL;3;PRS;LGSPEC2 غپول V;PFV;PL;2;PRS غپول V;PFV;PL;2;PST;LGSPEC2 غپول V;PFV;FEM;PL;3;FUT;LGSPEC2 غپول V;PFV;FEM;SG;1;PRS;LGSPEC2 غپول V;PFV;FEM;SG;3;PST وټه ييز ADJ;non{NOM};MASC;SG وټه ييز ADJ;VOC;MASC;SG وټه ييز ADJ;NOM;FEM;SG وټه ييز ADJ;NOM;MASC;SG وټه ييز ADJ;NOM;FEM;PL وټه ييز ADJ;non{NOM};FEM;PL وټه ييز ADJ;VOC;FEM;SG وټه ييز ADJ;non{NOM};MASC;PL وټه ييز ADJ;NOM;MASC;PL وټه ييز ADJ;VOC;FEM;PL وټه ييز ADJ;VOC;MASC;PL وټه ييز ADJ;non{NOM};FEM;SG ژرنده N;VOC;PL ژرنده N;non{NOM};PL ژرنده N;NOM;SG ژرنده N;NOM;PL ژرنده N;non{NOM};SG ژرنده N;VOC;SG زاڼه N;non{NOM};PL زاڼه N;non{NOM};SG زاڼه N;NOM;PL زاڼه N;VOC;SG زاڼه N;NOM;SG زاڼه N;VOC;PL درول V;PFV;MASC;PL;3;PRS درول V;PFV;FEM;PL;3;PST درول V;IPFV;PL;1;PST درول V;PFV;FEM;PL;3;PRS درول V;PFV;MASC;SG;2;PRS;LGSPEC2 درول V;PFV;PL;1;PST درول V;PFV;FEM;PL;3;FUT;LGSPEC2 درول V;IPFV;SG;2;PRS درول V;PFV;FEM;SG;1;PST;LGSPEC2 درول V;PFV;PL;1;PRS;LGSPEC2 درول V;PFV;MASC;PL;3;PST;LGSPEC2 درول V;PFV;PL;1;PST;LGSPEC2 درول V;PFV;FEM;SG;1;PRS;LGSPEC2 درول V;IPFV;FEM;SG;3;PST درول V;PFV;FEM;SG;2;PST;LGSPEC2 درول V;IPFV;FEM;PL;3;PRS درول V;PFV;FEM;SG;2;PRS;LGSPEC2 درول V;PFV;PL;2;PST درول V;PFV;PL;2;PRS;LGSPEC2 درول V;PFV;MASC;SG;3;FUT;LGSPEC2 درول V;PFV;PL;2;PRS درول V;PFV;FEM;SG;3;PST;LGSPEC2 درول V;IPFV;MASC;SG;3;PST درول V;IPFV;FEM;SG;3;PRS درول V;IPFV;MASC;PL;3;PRS درول V;PFV;FEM;SG;3;PST درول V;PFV;FEM;SG;3;FUT;LGSPEC2 درول V;PFV;MASC;SG;2;PST;LGSPEC2 درول V;IPFV;PL;2;PST درول V;PFV;MASC;SG;3;PRS;LGSPEC2 درول V;PFV;PL;1;PRS درول V;PFV;PL;2;FUT;LGSPEC2 درول V;PFV;MASC;PL;3;PRS;LGSPEC2 درول V;PFV;PL;2;PST;LGSPEC2 درول V;PFV;MASC;SG;1;PST;LGSPEC2 درول V;PFV;MASC;PL;3;PST درول V;PFV;SG;2;PRS درول V;IPFV;SG;2;PST درول V;PFV;SG;1;PST درول V;PFV;FEM;SG;1;FUT;LGSPEC2 درول V;IPFV;SG;1;PST درول V;IPFV;MASC;SG;3;PRS درول V;PFV;FEM;SG;2;FUT;LGSPEC2 درول V;IPFV;PL;1;PRS درول V;PFV;MASC;SG;1;FUT;LGSPEC2 درول V;IPFV;SG;1;PRS درول V;PFV;PL;1;FUT;LGSPEC2 درول V;PFV;SG;1;PRS درول V;PFV;FEM;PL;3;PST;LGSPEC2 درول V;PFV;MASC;SG;3;PST;LGSPEC2 درول V;IPFV;MASC;PL;3;PST درول V;IPFV;FEM;PL;3;PST درول V;PFV;MASC;SG;3;PST درول V;PFV;MASC;PL;3;FUT;LGSPEC2 درول V;PFV;MASC;SG;3;PRS درول V;PFV;SG;2;PST درول V;PFV;MASC;SG;2;FUT;LGSPEC2 درول V;IPFV;PL;2;PRS درول V;PFV;FEM;PL;3;PRS;LGSPEC2 درول V;PFV;MASC;PL;3;PST درول V;PFV;FEM;SG;3;PRS درول V;PFV;MASC;SG;1;PRS;LGSPEC2 درول V;PFV;FEM;SG;3;PRS;LGSPEC2 بښنه N;NOM;PL بښنه N;VOC;SG بښنه N;non{NOM};SG بښنه N;non{NOM};PL بښنه N;NOM;SG بښنه N;VOC;PL ګډون N;VOC;PL ګډون N;non{NOM};SG ګډون N;NOM;SG ګډون N;NOM;PL ګډون N;non{NOM};PL ګډون N;VOC;SG نسواري ADJ;VOC;FEM;PL نسواري ADJ;non{NOM};FEM;PL نسواري ADJ;VOC;MASC;PL نسواري ADJ;NOM;MASC;SG نسواري ADJ;NOM;MASC;PL نسواري ADJ;non{NOM};MASC;SG نسواري ADJ;VOC;FEM;SG نسواري ADJ;NOM;FEM;SG نسواري ADJ;non{NOM};MASC;PL نسواري ADJ;NOM;FEM;PL نسواري ADJ;non{NOM};FEM;SG نسواري ADJ;VOC;MASC;SG جږګی N;VOC;SG جږګی N;NOM;SG جږګی N;non{NOM};SG جږګی N;NOM;PL جږګی N;VOC;PL جږګی N;non{NOM};PL زغره N;NOM;PL زغره N;NOM;SG زغره N;non{NOM};PL زغره N;VOC;SG زغره N;VOC;PL زغره N;non{NOM};SG دود N;NOM;PL دود N;VOC;SG دود N;VOC;PL دود N;non{NOM};PL دود N;non{NOM};SG دود N;NOM;SG بړستن N;non{NOM};PL بړستن N;NOM;PL بړستن N;NOM;SG بړستن N;VOC;SG بړستن N;VOC;PL بړستن N;non{NOM};SG رنګ N;non{NOM};SG رنګ N;NOM;SG رنګ N;VOC;SG رنګ N;NOM;PL رنګ N;VOC;PL رنګ N;non{NOM};PL سيند N;non{NOM};PL سيند N;NOM;SG سيند N;NOM;PL سيند N;VOC;PL سيند N;non{NOM};SG سيند N;VOC;SG بوټپوهنه N;VOC;PL بوټپوهنه N;NOM;PL بوټپوهنه N;VOC;SG بوټپوهنه N;non{NOM};SG بوټپوهنه N;NOM;SG بوټپوهنه N;non{NOM};PL جام N;NOM;SG جام N;non{NOM};PL جام N;VOC;SG جام N;non{NOM};SG جام N;VOC;PL جام N;NOM;PL اوسېدونکی N;NOM;SG اوسېدونکی N;NOM;PL اوسېدونکی N;VOC;SG اوسېدونکی N;non{NOM};SG اوسېدونکی N;VOC;PL اوسېدونکی N;non{NOM};PL باران N;VOC;SG باران N;NOM;PL باران N;non{NOM};SG باران N;VOC;PL باران N;non{NOM};PL باران N;NOM;SG شرمښ N;non{NOM};PL شرمښ N;NOM;PL شرمښ N;NOM;SG شرمښ N;VOC;SG شرمښ N;non{NOM};SG شرمښ N;VOC;PL نطفه N;VOC;SG نطفه N;NOM;SG نطفه N;non{NOM};PL نطفه N;VOC;PL نطفه N;NOM;PL نطفه N;non{NOM};SG ځوان N;non{NOM};PL ځوان ADJ;VOC;MASC;SG ځوان N;non{NOM};SG ځوان N;VOC;PL ځوان ADJ;non{NOM};MASC;PL ځوان ADJ;NOM;MASC;PL ځوان ADJ;VOC;MASC;PL ځوان ADJ;NOM;MASC;SG ځوان ADJ;non{NOM};MASC;SG ځوان N;NOM;SG ځوان N;VOC;SG ځوان N;NOM;PL مالک N;NOM;PL مالک N;non{NOM};PL مالک N;NOM;SG مالک N;non{NOM};SG مالک N;VOC;PL مالک N;VOC;SG ونه N;VOC;SG ونه N;non{NOM};SG ونه N;NOM;SG ونه N;NOM;PL ونه N;non{NOM};PL ونه N;VOC;PL طالب N;non{NOM};PL طالب N;non{NOM};SG طالب N;NOM;PL طالب N;VOC;PL طالب N;NOM;SG طالب N;VOC;SG اړخ N;NOM;SG اړخ N;non{NOM};SG اړخ N;non{NOM};PL اړخ N;VOC;SG اړخ N;NOM;PL اړخ N;VOC;PL جګړه N;VOC;SG جګړه N;non{NOM};PL جګړه N;NOM;SG جګړه N;VOC;PL جګړه N;NOM;PL جګړه N;non{NOM};SG سترګې په لار کول V;IPFV;FEM;PL;3;PRS سترګې په لار کول V;IPFV;MASC;PL;3;PST سترګې په لار کول V;PFV;PL;2;PST سترګې په لار کول V;IPFV;PL;1;PRS سترګې په لار کول V;PFV;MASC;SG;3;PRS سترګې په لار کول V;PFV;MASC;SG;3;PST سترګې په لار کول V;PFV;MASC;PL;3;PST سترګې په لار کول V;IPFV;MASC;SG;3;PST سترګې په لار کول V;IPFV;SG;1;PST سترګې په لار کول V;PFV;PL;1;PST سترګې په لار کول V;PFV;SG;1;PRS سترګې په لار کول V;IPFV;PL;1;PST سترګې په لار کول V;PFV;FEM;SG;3;PST سترګې په لار کول V;PFV;SG;2;PRS سترګې په لار کول V;IPFV;FEM;SG;3;PST سترګې په لار کول V;PFV;SG;2;PST سترګې په لار کول V;PFV;SG;1;PST سترګې په لار کول V;IPFV;SG;2;PRS سترګې په لار کول V;PFV;MASC;PL;3;PRS سترګې په لار کول V;PFV;PL;1;PRS سترګې په لار کول V;IPFV;PL;2;PST سترګې په لار کول V;IPFV;FEM;SG;3;PRS سترګې په لار کول V;PFV;FEM;PL;3;PST سترګې په لار کول V;IPFV;MASC;SG;3;PRS سترګې په لار کول V;IPFV;FEM;PL;3;PST سترګې په لار کول V;PFV;PL;2;PRS سترګې په لار کول V;IPFV;PL;2;PRS سترګې په لار کول V;PFV;FEM;SG;3;PRS سترګې په لار کول V;PFV;PL;1;PST سترګې په لار کول V;PFV;FEM;PL;3;PST سترګې په لار کول V;IPFV;SG;2;PST سترګې په لار کول V;IPFV;SG;1;PRS سترګې په لار کول V;PFV;FEM;PL;3;PRS سترګې په لار کول V;IPFV;MASC;PL;3;PRS سترګې په لار کول V;PFV;SG;2;PST ولسي جرګه N;VOC;SG ولسي جرګه N;VOC;PL ولسي جرګه N;non{NOM};SG ولسي جرګه N;non{NOM};PL ولسي جرګه N;NOM;PL ولسي جرګه N;NOM;SG ښکار N;VOC;PL ښکار N;VOC;SG ښکار N;NOM;PL ښکار N;non{NOM};PL ښکار N;non{NOM};SG ښکار N;NOM;SG انځور N;non{NOM};SG انځور N;VOC;PL انځور N;NOM;PL انځور N;NOM;SG انځور N;VOC;SG انځور N;non{NOM};PL جوړول V;IPFV;MASC;SG;3;PST جوړول V;IPFV;FEM;PL;3;PRS جوړول V;PFV;PL;1;PRS جوړول V;IPFV;SG;1;PST جوړول V;IPFV;MASC;PL;3;PST جوړول V;PFV;SG;1;PRS جوړول V;IPFV;SG;2;PST جوړول V;IPFV;FEM;SG;3;PRS جوړول V;IPFV;MASC;SG;3;PRS جوړول V;PFV;SG;2;PRS جوړول V;PFV;MASC;SG;3;PRS جوړول V;IPFV;FEM;PL;3;PST جوړول V;PFV;FEM;SG;3;PST جوړول V;PFV;MASC;PL;3;PST جوړول V;IPFV;SG;1;PRS جوړول V;PFV;FEM;PL;3;PST جوړول V;IPFV;PL;1;PST جوړول V;PFV;PL;1;PST جوړول V;PFV;SG;2;PST جوړول V;PFV;PL;2;PST جوړول V;IPFV;MASC;PL;3;PRS جوړول V;IPFV;PL;2;PRS جوړول V;IPFV;PL;1;PRS جوړول V;PFV;SG;1;PST جوړول V;PFV;MASC;SG;3;PST جوړول V;PFV;PL;2;PRS جوړول V;IPFV;PL;2;PST جوړول V;PFV;MASC;PL;3;PRS جوړول V;PFV;FEM;SG;3;PRS جوړول V;IPFV;FEM;SG;3;PST جوړول V;IPFV;SG;2;PRS جوړول V;PFV;FEM;PL;3;PRS بوخت ADJ;VOC;FEM;SG بوخت ADJ;non{NOM};MASC;SG بوخت ADJ;NOM;MASC;SG بوخت ADJ;VOC;MASC;SG بوخت ADJ;VOC;MASC;PL بوخت ADJ;NOM;FEM;SG بوخت ADJ;non{NOM};FEM;SG بوخت ADJ;non{NOM};FEM;PL بوخت ADJ;VOC;FEM;PL بوخت ADJ;NOM;MASC;PL بوخت ADJ;non{NOM};MASC;PL بوخت ADJ;NOM;FEM;PL پتنګ N;VOC;SG پتنګ N;VOC;PL پتنګ N;non{NOM};PL پتنګ N;NOM;PL پتنګ N;NOM;SG پتنګ N;non{NOM};SG اسمان N;NOM;SG اسمان N;VOC;SG اسمان N;non{NOM};PL اسمان N;VOC;PL اسمان N;non{NOM};SG اسمان N;NOM;PL دړد N;NOM;SG دړد N;VOC;PL دړد N;NOM;PL دړد N;VOC;SG دړد N;non{NOM};PL دړد N;non{NOM};SG بڼوال N;NOM;SG بڼوال N;non{NOM};SG بڼوال N;VOC;PL بڼوال N;non{NOM};PL بڼوال N;VOC;SG بڼوال N;NOM;PL پرېکړه N;VOC;SG پرېکړه N;non{NOM};PL پرېکړه N;VOC;PL پرېکړه N;non{NOM};SG پرېکړه N;NOM;SG پرېکړه N;NOM;PL ويشتل V;IPFV;SG;1;PRS;LGSPEC1 ويشتل V;IPFV;FEM;PL;3;PST ويشتل V;IPFV;PL;2;PRS ويشتل V;PFV;PL;2;PRS;LGSPEC1 ويشتل V;PFV;MASC;SG;3;PST;LGSPEC1 ويشتل V;PFV;MASC;PL;3;PST;LGSPEC1 ويشتل V;IPFV;MASC;PL;3;PRS ويشتل V;PFV;MASC;PL;3;PRS ويشتل V;IPFV;SG;2;PRS;LGSPEC1 ويشتل V;IPFV;SG;2;PRS ويشتل V;PFV;MASC;SG;3;PRS;LGSPEC1 ويشتل V;IPFV;PL;1;PRS ويشتل V;IPFV;PL;2;PST ويشتل V;PFV;MASC;SG;3;PST ويشتل V;IPFV;FEM;SG;3;PST ويشتل V;IPFV;SG;2;PST;LGSPEC1 ويشتل V;IPFV;MASC;SG;3;PRS ويشتل V;IPFV;MASC;PL;3;PST ويشتل V;IPFV;PL;1;PST;LGSPEC1 ويشتل V;IPFV;FEM;SG;3;PRS ويشتل V;IPFV;PL;1;PST ويشتل V;IPFV;SG;1;PST ويشتل V;PFV;PL;2;PST;LGSPEC1 ويشتل V;PFV;SG;2;PRS;LGSPEC1 ويشتل V;IPFV;MASC;SG;3;PST ويشتل V;PFV;FEM;PL;3;PST ويشتل V;PFV;MASC;PL;3;PST ويشتل V;PFV;PL;2;PRS ويشتل V;PFV;MASC;PL;3;PRS;LGSPEC1 ويشتل V;PFV;SG;1;PST ويشتل V;PFV;FEM;SG;3;PST ويشتل V;PFV;PL;2;PST ويشتل V;PFV;FEM;PL;3;PRS;LGSPEC1 ويشتل V;PFV;SG;1;PRS ويشتل V;IPFV;SG;1;PRS ويشتل V;PFV;PL;1;PST ويشتل V;PFV;FEM;SG;3;PRS;LGSPEC1 ويشتل V;PFV;FEM;PL;3;PRS ويشتل V;IPFV;FEM;PL;3;PRS ويشتل V;PFV;PL;1;PRS;LGSPEC1 ويشتل V;IPFV;FEM;SG;3;PST;LGSPEC1 ويشتل V;IPFV;PL;2;PST;LGSPEC1 ويشتل V;IPFV;MASC;SG;3;PST;LGSPEC1 ويشتل V;IPFV;SG;1;PST;LGSPEC1 ويشتل V;IPFV;MASC;PL;3;PRS;LGSPEC1 ويشتل V;IPFV;MASC;PL;3;PST;LGSPEC1 ويشتل V;PFV;SG;1;PST;LGSPEC1 ويشتل V;IPFV;MASC;SG;3;PRS;LGSPEC1 ويشتل V;IPFV;PL;2;PRS;LGSPEC1 ويشتل V;PFV;MASC;SG;3;PRS ويشتل V;PFV;SG;2;PRS ويشتل V;IPFV;SG;2;PST ويشتل V;PFV;FEM;PL;3;PST;LGSPEC1 ويشتل V;PFV;PL;1;PRS ويشتل V;PFV;SG;2;PST;LGSPEC1 ويشتل V;IPFV;FEM;SG;3;PRS;LGSPEC1 ويشتل V;PFV;FEM;SG;3;PRS ويشتل V;PFV;FEM;SG;3;PST;LGSPEC1 ويشتل V;PFV;PL;1;PST;LGSPEC1 ويشتل V;PFV;MASC;PL;3;PST;LGSPEC1 ويشتل V;IPFV;FEM;PL;3;PST;LGSPEC1 ويشتل V;IPFV;PL;1;PRS;LGSPEC1 ويشتل V;PFV;SG;1;PRS;LGSPEC1 ويشتل V;IPFV;MASC;PL;3;PST;LGSPEC1 ويشتل V;PFV;SG;2;PST ويشتل V;IPFV;FEM;PL;3;PRS;LGSPEC1 اسماني ADJ;VOC;FEM;PL اسماني ADJ;non{NOM};MASC;PL اسماني ADJ;non{NOM};FEM;SG اسماني ADJ;NOM;MASC;SG اسماني ADJ;NOM;FEM;SG اسماني ADJ;VOC;MASC;SG اسماني ADJ;NOM;MASC;PL اسماني ADJ;VOC;FEM;SG اسماني ADJ;non{NOM};MASC;SG اسماني ADJ;NOM;FEM;PL اسماني ADJ;VOC;MASC;PL اسماني ADJ;non{NOM};FEM;PL سور ADJ;VOC;MASC;PL سور ADJ;VOC;MASC;SG سور ADJ;NOM;FEM;SG سور ADJ;NOM;MASC;PL سور ADJ;NOM;FEM;PL سور ADJ;non{NOM};MASC;SG سور ADJ;VOC;FEM;PL سور ADJ;non{NOM};MASC;PL سور ADJ;NOM;MASC;SG سور ADJ;non{NOM};FEM;SG سور ADJ;VOC;FEM;SG سور ADJ;non{NOM};FEM;PL لار N;VOC;SG لار N;non{NOM};PL لار N;NOM;SG لار N;non{NOM};SG لار N;VOC;PL لار N;NOM;PL ښار N;NOM;PL ښار N;VOC;SG ښار N;NOM;SG ښار N;non{NOM};PL ښار N;VOC;PL ښار N;non{NOM};SG ځمکپوهنه N;NOM;SG ځمکپوهنه N;non{NOM};PL ځمکپوهنه N;NOM;PL ځمکپوهنه N;non{NOM};SG ځمکپوهنه N;VOC;SG ځمکپوهنه N;VOC;PL روغتون N;VOC;SG روغتون N;non{NOM};PL روغتون N;non{NOM};SG روغتون N;NOM;PL روغتون N;NOM;SG روغتون N;VOC;PL خېټه N;NOM;SG خېټه N;VOC;PL خېټه N;non{NOM};SG خېټه N;VOC;SG خېټه N;NOM;PL خېټه N;non{NOM};PL
aba5527af87612770123c383804aaaadd92a5346
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH14/EX14.5/c14_5.sce
4ea27c379cfdc42d781ee36fd9cbd7d44448fc5d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,806
sce
c14_5.sce
//(14.5) Carbon dioxide at 25C, 1 atm enters a reactor operating at steady state and dissociates, giving an equilibrium mixture of CO2, CO, and O2 that exits at 3200 K, 1 atm. Determine the heat transfer to the reactor, in kJ per kmol of CO2 entering. The effectsof kinetic and potential energy can be ignored and Wcvdot = 0 //solution //Applying the conservation of mass principle, the overall dissociation reaction is described by //CO2 ----> zCO2 + (1-z)CO + ((1-z)/2)O2 p = 1 //in atm pref = 1 //in atm //At 3200 K, Table A-27 gives log10k = -.189 k = 10^log10k //solving k = ((1-z)/2)*((1-z)/(3-z))^.5 gives z = .422 //from tables A-25 and A-23 hfbarCO2 = -393520 //in kj/kmol deltahbarCO2 = 174695-9364 //in kj/kmol hfbarCO = -110530 //in kj/kmol deltahbarCO = 109667-8669 //in kj/kmol hfbarO2 = 0 //in kj/kmol deltahbarO2 = 114809-8682 //in kj/kmol hfbarCO2r = -393520 //in kj/kmol deltahbarCO2r = 0 //in kj/kmol Qcvdot = .422*(hfbarCO2 + deltahbarCO2) + .578*(hfbarCO + deltahbarCO) + .289*(hfbarO2 + deltahbarO2)- (hfbarCO2r + deltahbarCO2r) printf('the heat transfer to the reactor, in kJ per kmol of CO2 entering is: %f',Qcvdot)
5f211b35b48e24ec991367d89a163f9a8598b459
72d93987c9ed2c03635870ef77825b5c30cf4b06
/Inverse.sce
8169b9c62723e95d56faaae6301e73dc5e94659c
[]
no_license
Abilityguy/Linear-Algebra-Scilab
cc6026f7de6e373d99bd1afba2ae34e6eec24fc4
82458ca42a076192cbf38dc076b1d3b50d6609af
refs/heads/master
2020-04-26T05:37:37.432560
2019-06-19T14:15:14
2019-06-19T14:15:14
173,340,616
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,763
sce
Inverse.sce
//Program to find the inverse of the given square matrix through Gauss-Jordan elimination n = input("Enter the value of n: ")//n*n matrix A = eye(n,n)//Initialzing A as an identity matrix //Loop to take the matrix elements through user input for i = 1:n for j = 1:n A(i,j) = int(input("Enter value for A["+string(i)+","+string(j)+"]: ")) end end B = eye(n,n) //Initializing the inverse of the matrix //Loop to copy the A matrix into C matrix C = eye(n,n) for i=1:n for j=1:n C(i,j)=A(i,j) end end disp("The augmented matrix is: ") disp([A B]) //Loop which exchanges rows in the matrix that have zero in the pivot position for i = 1:n if(A(i,i) == 0) j = i+1 while(A(i,i) == 0 & j < n+1) if(A(j,i) ~= 0) for k = 1:n A([i,k],:) = A([j,k],:) B([i,j],:) = B([j,i],:) end end j = j+1 end end end //Checking if we have a zero in any pivot position which will cause gaussian breakdown for i = 1:n if(A(i,i) == 0) disp("Gaussian elimination breaks down and the inverse of the matrix does not exist") abort //exit the program end end //peforming gaussian elimination for i = 1:n-1 for j = i+1:n //Checking pivots again if we get a zero in pivot during gaussian elimination if(A(i,i) == 0) k = i+1 while(A(i,i) == 0 & k < n+1) if(A(k,i) ~= 0) B([i,k],:) = B([k,i],:) A([i,k],:) = A([k,i],:) end k = k+1 end end //Gaussian elimination where we make pivot positions in subsequent rows zero multiplier = A(j,i)/A(i,i) for k = 1:n A(j,k) = A(j,k) - multiplier*A(i,k) B(j,k) = B(j,k) - multiplier*B(i,k) end end end disp("The augmented matrix after gaussian elimination:") disp([A B]) //Checking for zeros in pivot position for i = 1:n if(A(i,i) == 0) disp("Inverse of the matrix does not exist") abort //exit the program end end //Converting the A matrix into a diagonal matrix for i = n:-1:1 for j = i-1:-1:1 multiplier = A(j,i)/A(i,i) for k = n:-1:1 A(j,k) = A(j,k) - multiplier*A(i,k) B(j,k) = B(j,k) - multiplier*B(i,k) end end end //Converting A into an identity matrix, now B is the inverse matrix for i=1:n for j=1:n B(i,j) = B(i,j)/A(i,i) end A(i,i) = 1 end disp("After Gauss Jordan elimination we get the augment matrix as: ") disp([A B]) disp("The inverse of A is: ") disp(B) disp("The inverse of A using built in function: ") disp(inv(C))
79d179bf14f10776be24f5385dba889ce7761aa9
449d555969bfd7befe906877abab098c6e63a0e8
/2321/CH6/EX6.14.1/EX6_14_1.sce
2cd8d71c4c7c19f68015462df038ea8edf4a76b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
EX6_14_1.sce
//Example No. 6.14.1 clc; clear; close; format('v',6); SLL=19.1;//dB(Side Lobe Level) //d=lambda/2;(spacing) dBYlambda=1/2;//(Spacing/wavelength) n=4;//(no. of elements) r=round(10^(SLL/20));//(ratio of main lobe to side lobe) m=n-1;//(degree ) //T3(x0)=r=4*x0^3-3*x0; x0=roots([4 0 -3 -r]);//(Coefficient) x0=x0(1);//taking real value(Coefficient) //E4(z)=T3(x)=4*x^3-3*x=4*a1*z^3-3*a1*z+a0*z //4*a1*z^3=4*x^3 where z^3=(x/x0)^3 a1=4*x0^3/4;//(Coefficient) //a0*z-3*z*a1=-3*x a0=(3/x0*a1-3)*x0;//(Coefficient) disp(a0,a1,"Coefficients of array polynomial a1 & a0 are : "); disp(a0/a1,a1/a1,"Relative current amplitudes are :");
705ce469919573ac43eee82e5ee0b45b96ca1dde
449d555969bfd7befe906877abab098c6e63a0e8
/3665/CH4/EX4.3/Ex4_3.sce
bbec93cd13cd68ae97f905b934f49b9975aee6ee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
464
sce
Ex4_3.sce
clc// // // //Variable declaration d=2.82*10^-10; //distance(m) k=1.38*10^-23; //boltzmann constant(J/K) e=1.6*10^-19; //charge(eV) T=273+25; //temperature(K) sd=5*10^11; //schotky defects(per m^3) //Calculation V=(2*d)^3; //volume of unit cell(m^3) N=4/V; //density of ion pairs x=(log10(N/sd)); Es=2*(k/e)*T*2.303*x; //average energy required(eV) //Result printf("\n average energy required is %0.3f eV",Es)
66c847578e187743a2ce1569637aa2d53d32334d
98187bfe7a07f2d387b0cc75137b39b9eb012d00
/DilatationC.sce
ced5823632789739e857a0fc798c67d4e2bb99ad
[]
no_license
Minial/Squelette
a50b9ec88f135d1392bf336478a7854973c25009
6356c7e1f52d45ff153335565b7049ff2f297b7b
refs/heads/master
2020-04-19T11:41:10.640079
2019-02-03T16:40:38
2019-02-03T16:40:38
168,173,672
0
0
null
null
null
null
UTF-8
Scilab
false
false
547
sce
DilatationC.sce
//Fonction erosion matrice de point binaire function [ImgE]= DilatationC(Img) [TailleX,TailleY]=size(Img) //TailleY=size(Img(1)) ImgE=Img for i= 2:TailleX-1 for j = 2:TailleY-1 if(Img(i+1,j)==1) ImgE(i,j)=1 end if(Img(i-1,j)==1) ImgE(i,j)=1 end if(Img(i,j+1)==1) ImgE(i,j)=1 end if(Img(i,j-1)==1) ImgE(i,j)=1 end end end endfunction
3cea0a6165b7308f971d0f8db5886d8f2c8b9ffb
449d555969bfd7befe906877abab098c6e63a0e8
/2201/CH2/EX2.4/ex2_4.sce
0e55069813c17c22d3da4a785758851a3a83e9b1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
312
sce
ex2_4.sce
// Exa 2.4 clc; clear; close; // Given data K = 8.63*10^-5; T = 300;// in K N_C = 2.8*10^19;// in cm^-3 del_E = 0.25; f_F = exp( (-del_E)/(K*T) ); disp(f_F,"The probability is : "); n_o = N_C*exp( (-del_E)/(K*T) );// in cm^-3 disp(n_o,"The thermal equillibrium electron concentration in cm^-3 is");
fa3f6a12ce442334bd0018fe1b06ba52c923888d
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH16/EX16.1/CH16Exa1.sce
98c44d0c926f95d15e670f7942d96a265feba0a6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
CH16Exa1.sce
// Scilab code Exa16.1 : : Page-672 (2011) clc; clear; R_d = 25; // Radiation dose, milli rad R_c_gy = 25e-03; // Dose in centigray R_Sv = 25*10^-2 // Dose in milli sieverts printf("\n25 mrad = %2.0e cGy = %4.2f mSv", R_c_gy, R_Sv); // Results // 25 mrad = 3e-002 cGy = 0.25 mSv
02b651be64731e45b2b04d79da25d7af08fcb856
449d555969bfd7befe906877abab098c6e63a0e8
/2672/CH7/EX7.9/Ex7_9.sce
4dd7f54ebd6dd23450b3ab9991d8d8c19b5e2b79
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
451
sce
Ex7_9.sce
//Ex_7_9 clc; clear; close; format('v',6); //given data : VEE=5;////V VCC=-5;////V VE=1;////V RB=20;//kohm RE=5;//kohm RC=5;//kohm VBE=0.7;////V VB=VE-VBE;///V IB=VB/RB;///mA IE=(VEE-VE)/RE;//mA IC=IE-IB;//mA VC=VCC+IC*RC;//V Beta=IC/IB;//Current gain Alfa=IC/IE;//Current gain disp(VB,"VB(V) : "); disp(IB,"IB(mA) : "); disp(IE,"IE(mA) : "); disp(IC,"IC(mA) : "); format('v',5); disp(Beta,"Beta : "); disp(Alfa,"Alfa : ");
2668c6f808e77127fb25b1f9ac5b68b8eec51bc9
449d555969bfd7befe906877abab098c6e63a0e8
/3547/CH3/EX3.7/Ex3_7.sce
a36bb89fd28464b0e23c28cb52f1b4cfb0f42595
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,633
sce
Ex3_7.sce
// Example no.3.7 // To calculate (a) the photon lifetime, (b) the threshold current, and (c) the current required to generate a mean photon density of 8.5 × 10^21 m−3 // Page no.130 clc; clear; // Given data w=3*10^(-6); // The active area width in meter d=0.3*10^(-6); // The active area thickness in meter L=500*10^(-6); // The length Te=1*10^(-9); // Electron lifetime Neth=0.8*10^(24); // Threshold electron density aint=46*10^2; // Internal cavity loss in m^-1 n=3.5; // Refrective index of the medium R1=0.65; // The reflectivity of ligth wave which is reflected at A R2=0.65; // The reflectivity of ligth wave which is reflected at B // (a)The photon lifetime amir=(1/(2*L))*log(1/(R1*R2)); // The loss due to mirrors per m c=3*10^8; // Speed of ligth in m/s v=c/n; // Speed of ligth in medium (m/s) Tp=1/(v*(aint+amir)); // The photon lifetime in sec // Displaying the result in command window printf('\n The photon lifetime = %0.2f ps',Tp*10^12); // (b)The threshold current V=w*d*L; //The active volume in m^3 q=1.602*10^(-19); //The electron charge in C Te=10^-9; //The electron lifetime in sec Ith=(Neth*q*V)/Te; //The threshold current in mA // Displaying the result in command window printf('\n The threshold current = %0.1f mA',Ith*10^3); // The answer calculated in book is wrong // (c)The current required to generate a mean photon density of 8.5 × 10^21 m−3 Nph=8.5*10^21; //Mean photon density Tph=Tp; //The photon lifetime in sec I=(Ith+(Nph*q*V)/Tph); //The current required to generate a mean photon density of 8.5 × 10^21 m−3 // Displaying the result in command window printf('\n The current required to generate a mean photon density of 8.5 × 10^21 m^-3 = %0.2f mA',I*10^3) // The answer calculated in book is wrong
0f56581e3cadb507cf51a4c6394335ec49b9fc38
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH3/EX3.6/c3_6.sce
074496fa113a160dae4258d1cfee7b4e3a931250
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,554
sce
c3_6.sce
// (3.6) A closed, rigid tank filled with water vapor, initially at 20 MPa, 520C, is cooled until its temperature reaches 400C. Using the compressibility chart, determine. (a) the specific volume of the water vapor in m3/kg at the initial state.(b) the pressure in MPa at the final state.Compare the results of parts (a) and (b) with the values obtained from the superheated vapor table, Table A-4. //solution //variable initialization p1 = 20 //initial pressure in MPa T1 = 520 // initial temperature in degree celcius T2 = 400 // final temperature in degree celcius //part(a) //from table A-1 Tc = 647.3 //critical temperature in kelvin pc = 22.09 //critical pressure in MPa Tr = (T1+273)/Tc //reduced temperature Pr = p1/pc //reduced pressure Z1 = .83 //compressibility factor R = 8.314 //universal gas constant in SI unit n = 1000/18.02 //number of moles in a kg of water v1 = (Z1*n*R*(T1+273))/(p1*10^6) printf('the specific volume in state1 in m3/Kg is:\n\t v1 = %f',v1) printf('\n and the corresponding value obtained from table A-4 is .01551 m^3/Kg') //part(b) vr = v1*(pc*10^6)/(n*R*Tc) Tr2 = (T2+273)/Tc //at above vr and Tr2 PR = .69 P2 = pc*PR printf('\n\n the pressure in MPa in the final state is: \n\t P2 = %f',P2) printf('\n and the corresponding value from the table is 15.16Mpa')
b174ee61232bce1400c120687dc688f65a58b85c
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH12/EX12.12/12_12.sce
64e28c55b19ac76c0c8c608cca3c3480a1f40780
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
222
sce
12_12.sce
clear; clc; close; Vcc =25; Rl = 4; Vl_p = Vcc; P2q_max = (2*Vcc^2)/((%pi^2)*Rl); Vl = 0.636*Vl_p; disp(P2q_max,'Maximum power dissipated(Watts) = '); disp(Vl,'Input voltage at which this occurs(Volts) = ');
c6ae12ee06a90e11be227611e894091390cd7cb4
449d555969bfd7befe906877abab098c6e63a0e8
/1133/CH2/EX2.2/Example2_2.sce
5cbf80c0d3d6d9a878008a9ef67fc3a45d140b9d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
147
sce
Example2_2.sce
//Example 2.2 clc format(6) disp("We know that,") a=100/sqrt(1+((1000/20)^2)) disp(a,"Below midband : A = A_mid / sqrt(1+(f1/f)^2) =")
7ff2e93f909b6e7e6ec0cc8f2148c112f8029ba7
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH21/EX21.7/Ex21_7.sce
cfabb5ad188cd397274aae161a6894fb87afdaad
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
863
sce
Ex21_7.sce
//calculating synchronous impedance Voc=90//open circuit voltage per phase Isc=15//short circuit current Zs=Voc/Isc mprintf("Synchronous impedance=%d ohm\n", Zs) //calculating synchronous reactance Ra=1//armature resistance per phase Xs=sqrt(Zs^2-Ra^2) mprintf("Synchronous reactance=%f ohm\n", Xs) //Solving part (iii) V=400//line voltage Vt=round(V/sqrt(3))//phase voltage at the terminals of load Ia=15//load current Ef=round([(Vt*.8+Ia*Ra)^2+(Vt*.6+Ia*Xs)^2]^.5) mprintf("Voltage rises from %d V to %d V, when the load is thrown off\n", Vt,Ef) //solving part (iv) //at 0.8 pf lagging VR=(Ef-Vt)/Vt*100 mprintf("Regulation at .8 pf lagging=%f percent\n", VR) //at unity pf Ef=[(Vt*1+Ia*Ra)^2+(Vt*0+Ia*Xs)^2]^.5 VR=(Ef-Vt)/Vt*100 mprintf("Regulation at unity pf=%f percent", VR) //answers vary from the textbook due to round off error
003283d409a1103575f33b63cc598eb7fd5743d7
449d555969bfd7befe906877abab098c6e63a0e8
/1187/CH3/EX3.3/3.sce
fd0778a81545d9444e84ee70c6d3270177a2b967
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
377
sce
3.sce
clc d_jet = 0.0086; // m d_orifice = 0.011; // m x = 2; // m y = 0.6; // m h = 1.75; // m g = 9.81; // m/s^2 A2 = %pi/4*d_orifice^2; Cc = (d_jet/d_orifice)^2; // Coefficient of Contraction Cv = x/2/sqrt(y*h); // Coefficient of velocity Cd = Cv*Cc; // Coefficient of Discharge Q = Cd*A2*sqrt(2*g*h); disp("Rate of discharge = ") disp(Q) disp("m^3/s")
9185ca597a6e54222a10b5251affe89d00965d04
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH5/EX5.10/Ex5_10.sce
c991d4b0018d8757a029be2adf72b4184d82cde3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,723
sce
Ex5_10.sce
//Fluid Systems - By Shiv Kumar //Chapter 5- Francis Turbine //Example 5.10 //To Determine (i) The Guide Blade Angle (ii) The Wheel Vane Angle at Inlet (iii) Diameter of Wheel at inlet (iv)Width of Wheel at Inlet clc clear //Given Data:- //Data Required rho=1000; //Density of water, Kg/m^3 g=9.81; //Acceleration due to gravity, m/s^2 eta_o=75/100; //Overall Efficiency P=148.25; //Power Produced, kW H=7.62; // Working Head, m ui=0.26*sqrt(2*g*H); //Peripheral Velocity at Inlet, m/s Vfi=0.96*sqrt(2*g*H); //Velocity of Flow at Inlet, m/s N=150; //Speed, rpm H_loss=22; //Percentage of Hydraulic Losses in the Turbine (of Available Energy) //As Discharge is Radial, alpha_o=90; //Degrees //Vfo=Vo Vwo=0; //Computations:- Do=ui*60/(%pi*N); //m Q=P*1000/(rho*g*H*eta_o); //m^3/s bo=Q/(%pi*Do*Vfi); //m //By Energy Balance Equation, Vwi=(g*H-(H_loss/100)*g*H)/ui; //m/s alpha_i=atand(Vfi/Vwi); //degrees beta_i=atand(Vfi/(Vwi-ui)); //degrees //Results:- printf(" (i)The Guide Blade Angle , alpha_i=%.2f Degrees\n",alpha_i) printf(" (ii) The Wheel Vane Angle at Inlet, beta_i =%.2f Degrees\n", beta_i ) //The Answer Vary due to Round off Error printf(" (iii) Diameter of Wheel at Inlet, Do =%.4f m\n",Do) //The Answer Vary due to Round off Error printf(" (iv)Width of Wheel at Inlet , bo =%.4f m\n",bo) //The Answer Vary due to Round off Error
22c2742f73207cba693fa67f259c9e3b4359ef5d
af8ee26c8ebd0db851be4f1e7cf8fb7a9684b9eb
/subroutines/loadSrcImg.sce
88fc7470dc50813919688a24dfeb5c2957ddab01
[ "MIT" ]
permissive
nikAizuddin/eigenface_example
bbd50d9071b36366566696ab629ce1c003ea4312
916fdd713259afe0411696da3f41c59c40fbad98
refs/heads/master
2020-12-24T19:28:17.861776
2016-05-04T16:00:21
2016-05-04T16:00:21
57,489,901
1
1
null
null
null
null
UTF-8
Scilab
false
false
630
sce
loadSrcImg.sce
function[] = loadSrcImg() // Load source image for the Main Window's source viewport // GUI-related variables global viewportSrcImg; global listboxSrcImg; global srcImg; // Load the pixel data from the filename specified by the // listbox containing source image filenames. srcImg = loadpgm(listboxSrcImg.string(listboxSrcImg.value)); // The loadpgm returns vector, so we have to resize it into // 112 rows x 92 columns matrix. srcImg = matrix(srcImg,92,112); // Draw the source image to the source viewport. sca(viewportSrcImg); Matplot1(srcImg', [0,0,1,1]); endfunction
8fd3832f6de07c4a2bfa3ec39bd66266db8e1224
449d555969bfd7befe906877abab098c6e63a0e8
/2198/CH2/EX2.12.3/Ex2_12_3.sce
2c171cd7498a8607b21ef03a5df353a68ddc461b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
437
sce
Ex2_12_3.sce
//Ex 2.12.3 clc;clear;close; format('v',8); //Given : NA=3*10^20;//per m^3 Vj=0.2;//Volt V=-10;//Volts A=1*10^-6;//m^2 epsilon_r=16;//for Ge epsilon_o=8.854*10^-12;//permitivity q=1.6*10^-19;//Coulomb W=sqrt(2*epsilon_r*epsilon_o*(Vj-V)/q/NA);//m disp(W*10^6,"Width of depletion region(micro meter) : "); CT=epsilon_r*epsilon_o*A/W;// disp(CT*10^12,"Transition capacitance(pF) : "); //Answer is wrong in the textbook.
585ef957e7f8e80e0bbb15382c358457b81419d4
b26cbe6bc3e201f030705aaf9eb82da94def231f
/tests/transpose-021.tst
4e497178981f6fce44f4d47072ce42b87ce7c063
[]
no_license
RP-pbm/Recurrence-plot
f86c5cd85460661b01a609f8f4281d2cda6b4e07
b5da95f9b30c1a924a002102219bf0a2ad47df2c
refs/heads/master
2022-07-24T12:11:34.163543
2022-07-09T19:32:43
2022-07-09T19:32:43
92,934,698
0
0
null
null
null
null
UTF-8
Scilab
false
false
22
tst
transpose-021.tst
../inputs/sep-4x3.cssv
fe999e680976b32f3c787108c15484a22679a03f
449d555969bfd7befe906877abab098c6e63a0e8
/2915/CH2/EX2.14/Ex2_14.sce
e82ffe5565fa1560ce6d23b06a71c573d6cd3e1d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
312
sce
Ex2_14.sce
//Example 2.14 //To determine area of triangle when 3 angles and a side is given clc,clear A=115 //angle at vertex A a=12 //side opposite to vertex A B=25 //angle at vertex B C=40 //angle at vertex C area_K = a^2*sind(B)*sind(C)/(2*sind(A)) printf('Area of triangle ABC = %.2f square units',area_K)
490fd3b5210db7263f41a8275942c4cf1bcd1c7d
594cb2143db2483dc9a060b26f3ccbd77cdff0d9
/ass2-span.sce
6f042f3ea4087f4346290187081cfcace30d4243
[]
no_license
Srija-1955/scilab-assignment
7c6761eb238359810e87656fcbfbdaf5871b028e
ad979aa462fc5bac54f26d4f8bbba6cbfcff9086
refs/heads/master
2020-12-31T09:47:41.409220
2020-04-04T11:47:30
2020-04-04T11:47:30
238,985,033
0
0
null
null
null
null
UTF-8
Scilab
false
false
470
sce
ass2-span.sce
A=input("Enter the coefficient matrix of nxn: ") function span(A) [a1,a2]=size(A);//n,n1 //forward elimination n=size(A,1); for j=1:a1-1 for i=j+1:a1 A(i,j:n)=A(i,j:n)-A(i,j)/A(j,j)*A(j,j:n) end end disp(A) for i=1:3 for j=i:3 if(A(i,j)<>0) disp('is a pivot column',j,'column') disp(A(:,j)) break end end end endfunction span(A)
f4387eadfbcadaf45393a9705b95336cc3759098
7bf9b615fc7bd8790ccc10d5e8f07824d114a245
/demo_predict.sce
dbc5c5e6290b877f2165833383ffd89e859f21cd
[]
no_license
szhilin/scirt
91b4ea7c9f328999e8f5aa1799b0930256bcdde9
31ea78eb9e7fb547dd6d81fe86b89ccb9f4c761d
refs/heads/master
2021-01-09T06:00:49.769480
2017-02-05T15:56:33
2017-02-05T15:56:33
80,890,335
1
0
null
null
null
null
UTF-8
Scilab
false
false
891
sce
demo_predict.sce
/// Demo for ir_plotmodelset(), ir_predict(), ir_scatter() // Simulate observations for simple dependency y = 1 + x n = 5; // number of observations epsilon = 0.5; // error bound X = [ ones(n,1) (1:5)' ]; // X values y = X*[1 1]' + epsilon*rand(n,1)-0.5; // y values with bounded errors // Show generated interval data and set of models consistent with them figure; ir_plotmodelset(X, y, epsilon); // Show set of feasible models ir_scatter(X, y, epsilon); // Show interval dataset // Select x values to predict and estimate interval prediction of y for them Xp = [1 2.5; 1 5.5]; // X points to predict at [yp, betap, exitcode, active] = ir_predict(Xp, X, y, epsilon); // Prediction // Show predicted intervals ir_scatter(Xp,yp,'b.'); // Show predicted intervals
e76fec377e033d3e3d54e20e70b2862b8642c38d
449d555969bfd7befe906877abab098c6e63a0e8
/3647/CH3/EX3.4/ex3_4.sce
eaec31ef373ce91a06971e66f71970071fd41d28
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
296
sce
ex3_4.sce
//Solutions to Problems In applied mechanics //A N Gobby clear all; clc //initialisation of variables w1=8//lbf s=3//ft m=35//lbf g=32.2//ft/s //CALCULATIONS U=sqrt(g*s)//ft/s T=w1+w1//lbf P=m-w1//lbf Umax=sqrt(P*g*s/w1)//ft/s //RESULTS printf('the centrifugal force=% f ft/s',Umax)
0fb98cacaeec93e4f282c5b426877c27f59fe0ba
ef9a2839953f3586e66c1cf824c9de199f52d088
/mcc_generated_files/X2CCode/ModelParameter.sce
92b9ef474f5f34986ad62e6c22d5844218ad93d2
[]
no_license
MCHP-X2Cdemos/mc_foc_sl_fip_dsPIC33ck_mclv2.x
72f1e06eb18738796d59938474c6d533bd07bb1e
d77e18983439d895b83b6d63fdaad4c8fdb028e7
refs/heads/master
2023-03-20T10:54:54.157111
2021-03-11T22:01:12
2021-03-11T22:01:12
288,478,027
2
0
null
null
null
null
UTF-8
Scilab
false
false
1,259
sce
ModelParameter.sce
// Scilab script file to store Model parameters // This file is automatically executed by initProject.sce // initScript.sce and this script is executed automatically, if model is opened from MPLAB X MCC X2C library. // Simulation settings endTime = 5; stepSize = 1.0E-2; X2C_sampleTime =100E-6;//10kHz control loop // CODE GENERATION PARAMETERS // Speed PI SpeedKi = 1; SpeedKi = 0.5; // Current PI PIFluxKp = 0.8; PIFluxKi = 0.5; PITorqueKp = 0.8; PITorqueKi = 0.5; // PLL parameters MotorLs = 0.41; MotorRs = 0.35; U_DCLINK = 24; I_MAX = 3.95; BEMF_D_UDC = 0.65; PLL_INT = 800; // POWERSTAGE DATA Vbus = 24; Rshunt = 0.025; Igain = -15; // MOTORDATEN Nm_ozin = 7.061552e-3; KRPM_rads = 0.060/2/%pi; Rs = 4.03; Ld = 4.60e-3; Lq = 4.60e-3; Kell = 7.24; n_p = 5; // number of polepairs J = 0.000628 * Nm_ozin; // inertia cf = 0; chy = 0; d = 0; ced = 0; ded = 0; alphaCU = 0; alphaPM = 0; Temp_nom = 25; omega_m0 = 0; theta_m0 = -0.5; psi_pm = Kell/sqrt(3)*60/(2*%pi*1000)/n_p; theta_r0 = theta_m0*2*%pi*n_p; omega_r0 = omega_m0/60*2*%pi*n_p; // Umrechnen auf Rechnenwerte fuer Modell Ld = Ld/2; Lq = Lq/2; Rs = Rs/2; // initalize input for simulation exec("./gen_inputs.sci"); exec("./qei_sim.sce"); exec("./qei_sim2.sce");
2ecc26e3c18fdd7eea21fa75e91583f7d7770754
7b7be9b58f50415293def4aa99ef5795e6394954
/sim/cmd/test/deprop.tst
52cedd884bcddf938ce7760c1b68d3871b56186f
[]
no_license
sabualkaz/sim42
80d1174e4bc6ae14122f70c65e259a9a2472ad47
27b5afe75723c4e5414904710fa6425d5f27e13c
refs/heads/master
2022-07-30T06:23:20.119353
2020-05-23T16:30:01
2020-05-23T16:30:01
265,842,394
0
0
null
2020-05-21T12:26:00
2020-05-21T12:26:00
null
UTF-8
Scilab
false
false
2,436
tst
deprop.tst
# Depeopanizer test (from old Hysim manual) units Field $thermo = VirtualMaterials.Peng-Robinson / -> $thermo thermo + Methane Ethane PROPANE thermo + ISOBUTANE n-BUTANE ISOPENTANE n-PENTANE n-Hexane thermo + n-Heptane n-Octane deprop = Tower.Tower() deprop.Stage_0 + 18 # twenty stages` cd deprop.Stage_0 v = Tower.VapourDraw() v.Port.P = 200 v.Port.Fraction.ISOBUTANE = .01 cond = Tower.EnergyFeed(0) #cond.Port.Energy = 1.667e6 #estReflux = Tower.Estimate('Reflux') #estReflux.Value = .45 estT = Tower.Estimate('T') estT.Value = 25 #reflux = Tower.StageSpecification('Reflux') #reflux.Value = .5042 cd ../Stage_9 f = Tower.Feed() f.Port.T = 50 f.Port.P = 480 f.Port.MoleFlow = 1000 f.Port.Fraction = .1702 .1473 .1132 .1166 .1066 .0963 .0829 .0694 .0558 .0417 f.Port #estT = Tower.Estimate('T') #estT.Value = 100 cd ../Stage_19 l = Tower.LiquidDraw() l.Port.P = 205 l.Port.Fraction.PROPANE = .02 reb = Tower.EnergyFeed(1) #reb.Port.Energy = 8.42e6 estT = Tower.Estimate('T') estT.Value = 250 cd .. /overhead = Stream.Stream_Material() /overhead.In -> Stage_0.v.Port /bottoms = Stream.Stream_Material() /bottoms.In -> Stage_19.l.Port TryToSolve = 1 # start calculation /overhead.Out /bottoms.Out #Now lets do some vol flow specs commonproperties + VolumeFlow StdLiqMolarVol displayproperties + StdLiqMolarVol StdLiqVolumeFlow TryToSolve = 1 TryToRestart = 1 #Delete fractions /deprop.LiquidDraw_19_l.Fraction = None None None None None None None None None None /deprop.LiquidDraw_19_l.StdLiqVolumeFlow = 0.304 /overhead.Out /bottoms.Out /deprop.LiquidDraw_19_l.StdLiqVolumeFlow = /deprop.VapourDraw_0_v.VolumeFlow = 2.0 /overhead.Out /bottoms.Out TryToRestart = 1 #Keep last solution and ramp it up /deprop.VapourDraw_0_v.VolumeFlow = 2.8 /overhead.Out /bottoms.Out /deprop.VapourDraw_0_v.VolumeFlow = 2.0 cd / #Now lets play with re-naming /deprop.Stage_0.v.NewName = VapDist #will not be there /deprop.Stage_0.v #Should be there /deprop.Stage_0.VapDist #Should not allow for repeated names in the same stage /deprop.Stage_0.VapDist.NewName = cond #Now rename to a name of a stream. It should be able to handle #a name equal to another unit operation /deprop.Stage_0.VapDist.NewName = overhead /deprop copy /deprop /bottoms /overhead paste / /bottoms.In /bottomsClone.In
71d7e32821ec0545d74929e3e7bc70eddc720c3a
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH6/EX6.9/Ex6_9.sce
ef2a635b5af6a02961c4cda6b72bdfee03f783b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,384
sce
Ex6_9.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 6 Single Staje BJT Amplifiers Pg no. 200 clear; clc; //Given Data //Figure 6.25 VCC=15;//collector supply voltage in volts RE=1.5D3;//emitter resistance in ohms R1=12D3;//divider network resistance R1 in ohms R2=10D3;//divider network resistance R2 in ohms VBE=0.7;//forward voltage drop of emitter diode in volts Bac=150;//AC CE current gain beta VT=25D-3;//voltage equivalent of temperature in volts Vs=1;//input rms a.c. voltage in volts Rs=600;//source internal impedance in ohms RL=12D3;//load resistance in ohms //Solution Req=RE*RL/(RE+RL);//equivalent output resistance in ohms Rin_dash=Bac*Req;//base input resistance Rin=1/(1/R1+1/R2+1/Rin_dash);//total input resistance in ohms VB=VCC*R2/(R1+R2);//d.c. base to ground voltage in volts VE=VB-VBE;//d.c. emitter to ground voltage in volts IE=VE/RE;//d.c. emitter current in amperes re=VT/IE;//equivalent BJT model emitter resistance in ohms Gv=Req/(Req+re);//voltage gain of CC configuration Ie=Gv*Vs/Req;//a.c. emitter current in amperes Iin=Vs/Rin;//a.c. input current in amperes Gi=Ie/Iin;//a.c. current gain Gp=Gi*Gv;//a.c. power gain printf("Voltage gain Gv = %.3f\n Current gain Gi = %.2f\n Power gain Gp = %.2f\n Total input resistance Rin = %.2f kilo-ohms",Gv,Gi,Gp,Rin/1000); //decimal errors in textbook due to approximations
15947543490e4525693425da1144245f170c806c
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH4/EX4.8/ex_4_8.sce
b545e931d003bd4a98d329c3f303ed080fa0b021
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
214
sce
ex_4_8.sce
//Example 4.8: current taken by load clc; clear; close; //given data : V=250; // voltage in volts L=5*746; // 1 hp=746 watt eta=80;// eficiency of motor in % Input=(L*100)/80; I=Input/V; disp(I,"cureent,I(A) = ")
9391551b2507aee257d1eb8955c2ff603ea907d5
449d555969bfd7befe906877abab098c6e63a0e8
/1736/CH2/EX2.2/Ch02Ex2.sce
72f7ccd634abbc4f1b2df274955a461b3e3c087b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ch02Ex2.sce
// Scilab Code Ex2.2 : Page-62 (2006) clc; clear; epsilon_0 = 8.854e-012; // Absolute electrical permittivity of free space, F/m N = 6.023e+023; // Avogadro's number e = 1.6e-019; // Energy equivalent of 1 eV, eV/J a0 = 5.63e-010; // Lattice parameter of NaCl, m r0 = a0/2; // Nearest neighbour distance for NaCl, m n = 8.4; // Repulsive exponent of NaCl A = 1.748; // Madelung constant for lattice binding energy E = A*e^2/(4*%pi*epsilon_0*r0)*(n-1)/n/e; // Binding energy of NaCl, eV printf("\nThe binding energy of NaCl = %5.3f kcal/mol", E*N*e/(4.186*1e+03)); // Result // The binding energy of NaCl = 181.101 eV
84ac8f731fca6f6df26d9d22cf0f64849d6a683c
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH1/EX1.1/Ex1_1.sce
234b2302ad6cd8b0f864225b87ad3ec5abe379c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex1_1.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 1.1\n\n\n"); // Chapter 1: Fundamental Concepts // Problem 1.1 (page no. 8) // Solution //C=(5/9)*(F-32); //F=32+(9*C/5); //Letting C=F in equation; //F=(5/9)*(F-32); //Therefore F=-160/4; //fahrenheit disp(F,"F="); printf("Both fahrenheit and celsius temperature scales indicate same temperature at %f",F);
9ee7fde0128f9a00a4c44133ba0d44d2c9191520
449d555969bfd7befe906877abab098c6e63a0e8
/257/CH3/EX3.11/example_3_11.sce
b9affc5fb1cee9f8ba822de7fa77f8e981a279ce
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
example_3_11.sce
// given gain of buffer amplifier is 1 s=%s I=1; R=10^6; C=10^-6 C2=0.5*10^-6; Vi=1/(C*s)*I + R*I V1=R * I disp(V1/Vi,"V1/Vi is ") V2=I/(C2*s) + I*R Vo= I*R disp(Vo/V2,"Vo/V2 is ") V1=V2 //because gain=1 (s/(s+1))*Vi == (s+2)/s * Vo // disp(s^2/((s+2)*(s+1)),"transfer function is")
ce5731de5a4710322876fda8d9879bf948f981b4
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH3/EX3.8/EX3_8.sce
b1ec4689c24054be6801e081b83319f5e5457f32
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
EX3_8.sce
//EXAMPLE 3-8 PG NO-177 Za=10-%i*8; Zb=12+%i*0; Zc=8+%i*10; Van=230.94+%i*0; Vbn=-115.47-%i*200; Vcn=-115.47+%i*200; Ia=Van/Za; disp('i) CURRENT (Ia) is in rectangular form = '+string (Ia) +' A '); Ib=Vbn/Zb; disp('ii) CURRENT (Ib) is in rectangular form = '+string (Ib) +' A '); Ic=Vcn/Zc; disp('iii) CURRENT (Ic) is in rectangular form = '+string (Ic) +' A '); In=Ia+Ib+Ic; disp('iv) CURRENT (In) is in rectangular form = '+string (In) +' A '); P=(230.94*18.028*0.78)+(230.94*19.245)+(230.94*18.028*0.62) disp('v) POWER (P) is in rectangular form = '+string (P) +' W ');
0e5e335369f8c17da3f881f22b89fcb6aa051307
230eea69f0afb78a345796b27e155111704f561c
/implementacaoGauss.sce
d1b19f0bca55584ba78b9629da816c583a73366c
[]
no_license
Cogitus/c-digos-de-computa-o-num-rica
cb7a33f2f5dc9159337edd1ccc0d51766419b548
7103e452553439149be3f9aa273c62cdc5b11ff8
refs/heads/master
2020-03-28T21:13:32.299650
2018-10-07T00:09:51
2018-10-07T00:09:51
149,139,235
0
0
null
null
null
null
UTF-8
Scilab
false
false
460
sce
implementacaoGauss.sce
function x = triangularSuperior(A,b) [numLinhas, numColunas] = size(A); A_aumentada = [A b]; //transformar em triangular. for i=1:1:numColunas-1 pivo = A_aumentada(i,i); for j=i+1:1:numLinhas termoSubtracao = A_aumentada(j,i)/pivo; A_aumentada(j,:) = A_aumentada(j,:) - A_aumentada(i,:)*termoSubtracao; end end x = A_aumentada; endfunction
70ee826f578c288df314d37ceb82333ae51bf18a
28b24ec288a5cf2babf644edafb55fc68a19cabf
/edo/pegaso.sce
750d88ee809793708d99768616296346a9c1409f
[]
no_license
ferreiraalves/metodos-numericos
5100e3d66613c266203d87880fc5c944bcc81e0e
31162df9dd824c6a621c34a8a1c5c81ee521c470
refs/heads/master
2020-03-25T21:43:35.324923
2018-12-04T14:32:58
2018-12-04T14:32:58
144,187,337
0
0
null
null
null
null
UTF-8
Scilab
false
false
846
sce
pegaso.sce
function[result] = f(x) //inserir a formula aqui yo result= 3*x^2 + sqrt(x+1) * cos(x)^3 -2; endfunction function[Raiz, Iter, Erro] = pegaso(a,b,Toler,IterMax) x=a; [Fa]= f(x); x=b; [Fb] = f(x); printf('iter\ta\tb\tx\tFx\tdelta_x\n'); k = 0; x=b; Fx=Fb; while 1 k = k+1; DeltaX = -Fx/(Fb-Fa) * (b - a); x = x + DeltaX; Fx = f(x); printf('%f\t',k); printf('%f\t',a); printf('%f\t',b); printf('%f\t',x); printf('%f\t',Fx); printf('%f\n',DeltaX); if ((abs(DeltaX)< Toler & abs(Fx) < Toler)| k>= IterMax) break end if Fx * Fb < 0 a = b; Fa = Fb; else Fa = Fa * Fb / (Fb + Fx); end b = x; Fb = Fx; end Raiz = x; Iter = k; Erro = abs(DeltaX) >= Toler | abs(Fx)>= Toler; disp(Erro) endfunction
5bfd3b9cd7f445b0e50c1e2382bb6f5dbe0fcc80
8b33899f15bd0509e32f6c06319b7b1557c745f5
/f4.sci
b3991beedbd01b327a34b501a59e4ca8d5088e00
[]
no_license
c00kiemon5ter/NumericalAnalysis
fd162663f6a9a4cc6c648e41a1412fa71e83a75c
1ff51ff805017100ebb87a98b5fef7acca3d0692
refs/heads/master
2021-01-01T19:15:21.559444
2014-06-25T09:39:25
2014-06-25T09:39:25
8,290,126
1
1
null
2014-06-25T09:39:25
2013-02-19T12:51:16
Scilab
UTF-8
Scilab
false
false
1,075
sci
f4.sci
// Exercise F4 // ------------ // Solve the y= -5*x + 5*(t^2)+2*t equation with 0<=x<=2 and x0 = 1/3 with the improved Euler method // --------------------------------------------------------- function [k,t,x]=eulercor(a, b, n, x0) // k is the step, t the margin and x is the vector with the approaches h=(b-a)/n; // set the step h t(1)=a; t(1)=t(1)+h; // set the first t value for input to the g function z(1)=x0+h* g(t(1),x0 ) ; // set with euler the first y that will be used for the improved euler x(1)=x0+ (g(t(1),x0)+g(t(1),z(1)) )*h/2 ; for k=2:n // do it again for each point of the compartment t(k)=t(k-1)+h; z(k)=x(k-1)+h* g(t(k-1),x(k-1) ) ; x(k)=x(k-1)+ (g(t(k-1),x(k-1))+g(t(k),z(k)) )*h/2 ; end endfunction // --------------------------------------------------------- function y=g(t, x) // The function i want to approach y= -5*x + 5*(t^2)+2*t; endfunction
937902076b6d8f47789fde0cbd197f2daae08d2d
449d555969bfd7befe906877abab098c6e63a0e8
/3745/CH1/EX1.33/Ex1_33.sce
ca4de805261dd66dd8dca84210ba6ac475cd0316
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
459
sce
Ex1_33.sce
// Ex 33 Page 376 clc;clear;close; // Given V=500;//V Pp=1500*10**3;//W (+ve side) Pn=2000*10**3;//W (-ve side) P=Pp+Pn;//W I=P/V;//A Ip=Pp/(V/2);//A In=Pn/(V/2);//A Iob=In-Ip;//A Ia=Iob/2;//A printf("Current supplied by the main generator = %.f A",I) printf("\n Current supplied on +ve side = %.f A",Ip) printf("\n Current supplied on -ve side = %.f A",In) printf("\n out-off balance Current = %.f A",Iob) printf("\n Current in each armature = %.f A",Ia)
ba65779b1ff289d9c27181250253e0ee4a20ec16
449d555969bfd7befe906877abab098c6e63a0e8
/593/CH3/EX3.5/ex3_5.sce
54e6dd49e5cc5262ff82057d91ee5f4d7d04b2cf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
380
sce
ex3_5.sce
clear; //clc(); // Example 3.5 // Page: 57 printf("Example-3.5 Page no.-57\n\n"); //***Data***// T = 20;//[C] x_benzene = 1.00; p_i = 75.2;//[torr] vapour pressure of the benzene P = 760;//[torr] Pressure of the atmosphere // So y_benzene = (x_benzene*p_i)/P; printf(" Mole fraction of the benzene in air that is saturated with benzene is %0.1f",y_benzene);
362c344149c44c58162918d6763c9c1911877017
449d555969bfd7befe906877abab098c6e63a0e8
/2471/CH8/EX8.11/Ex8_11.sce
b43db5a15edfc4d15b5bf718c3f9b918447dcc7d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
548
sce
Ex8_11.sce
clear ; clc; // Example 8.11 printf('Example 8.11\n\n'); printf('Page No. 240\n\n'); // This question doesnot contain any calculation part. //given P_F_1 = 0.7;// Initial power factor P_F_2 = 0.95;// Final power factor //Refer Figure 8.10 red_I = 26;//reduction in current in per cent printf('The reduction in current is %.0f per cent \n',red_I) P_F_3 = 1.0;// Increased power factor // From figure 8.10 Save = 4;// per cent printf('Increase in power factor from 0.95-1.0 only increases saving further by a %.0f per cent',Save)
1e771297fe830103c49644f141f81c83d79dfdc5
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH3/EX3.18/Ex3_18.sce
cd08724c70d1825c0043110b1c7e53999d78d078
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
329
sce
Ex3_18.sce
//Reactions developed in cantilever beam //Refer fig. 3.45 (a)&(b) //Make assumptions as shown in fig. 3.45(a) and(b) //applying equilibrium conditions VA=60+45*2/2 //kN HA=0 //kN //Taking moment about A MA=((45*2*2)/(3*2))+(60*2.5) //kN-m printf("Required values:-\nVA=%.2f kN\nHA=%.2f kN\nMA=%.2f kN-m",VA,HA,MA)