blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
a9a2851a4a1380a3fae1b052ed281486837126a4
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH15/EX15.10/15_10.sce
4bf4ea14f0950cc919e466ce3d46bdbc17d84492
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
667
sce
15_10.sce
//Chapter 15, Problem 10 clc; //from eqn v=200 (sin 500t) Vm=200; w=500; V=0.707*200; L=200e-3; //inductance R=100; //resistance Xl=w*L; //inductive reactance Z=sqrt(R^2+Xl^2); //impedance I=V/Z; Vl=I*Xl; Vr=I*R; phi=atan(Xl/R); printf("(a) Inductive reactance = %d ohm\n\n",Xl); printf("(b) Impedance Z = %.1f ohm\n\n",Z); printf("(c) Current I = %f A\n\n",I); printf("(d) The p.d. across the coil = %f V\n\n",Vl); printf(" The p.d. across the resistor = %f V\n\n",Vr); printf("(e) Phase angle between voltage and current is given by,\n angle = %d deg\n\n",phi*(180/%pi));
c9d60c1464575b8dbde38c4f1f41f5d63804d6be
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/scicos_blocks/EXPBLK_f.sci
0c3bdc571938db3f2697ea77ce5a6d972cde9da2
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,004
sci
EXPBLK_f.sci
function [x,y,typ]=EXPBLK_f(job,arg1,arg2) // Copyright INRIA x=[];y=[];typ=[]; select job case 'plot' then standard_draw(arg1) case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then x=arg1; graphics=arg1(2);label=graphics(4) model=arg1(3); if size(label,'*')==2 then label=label(2),end while %t do [ok,a,label]=getvalue('Set a^u block parameters',.. 'a (>0)',list('vec',1),label) if ~ok then break,end if or(a<=0) then message('a^u : a must be positive') else graphics(4)=label model(8)=a; x(2)=graphics;x(3)=model break end end x(3)(11)=[] //compatibility case 'define' then in=1 a=%e model=list('expblk',-1,-1,[],[],[],[],%e,[],'c',[],[%t %f],' ',list()) label=[string(in);'%e'] gr_i=['xstringb(orig(1),orig(2),''a^u'',sz(1),sz(2),''fill'');'] x=standard_define([2 2],model,label,gr_i) end
788e793693c0987ad25a6c5fa83234cfbde9e864
449d555969bfd7befe906877abab098c6e63a0e8
/1938/CH6/EX6.24/6_24.sce
ff0df37b08bcfd5b0391127f988fadf89418337b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
444
sce
6_24.sce
clc,clear printf('Example 6.24\n\n') X_d=1,X_q=0.6,R_a=0 //armature resistance and synchronous reactance of direct,quadrature axis phi=acos(0.8) //lag V_t=1 I_a=1 //full load psi=atan( (V_t*sin(phi)+I_a*X_q)/(V_t*cos(phi)+I_a*R_a) ) delta=psi-phi I_s=I_a I_d=I_a*sin(psi) I_q=I_a*cos(psi) E_f=V_t*cos(delta)+I_d*X_d+I_q*R_a regulation=100*(E_f-V_t)/V_t printf('percentage regulation is %.2f percent',regulation)
76e95438add0368afd2eefd6a4e166167ecf366a
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH12/EX6.12.15/Ex6_12_15.sce
0013ce673da94577c12f6b628b148bd08e1fa0c0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
343
sce
Ex6_12_15.sce
//Section-6,Example-7,Page no.-P.49 //To calculate the freezing point of the given aqueous solution. clc; T_bbar=373 T_fbar=273 T_b=373.1 dl_H=1 //(let) dl_H=(dl_Hvap./dl_Hfus.) dl_Tb=(T_b-T_bbar) dl_Tf=dl_Tb*((T_fbar)^2/(T_bbar)^2)*dl_H disp(dl_Tf,' Freezing point of the given aqueous solution') //dl_Tf=dl_Tf*(dl_Hvap./dl_Hfus.)
63a57daf18bcc0ec2fc6edecfe7fe3dd2b058f1c
449d555969bfd7befe906877abab098c6e63a0e8
/3515/CH5/EX5.22/Ex5_22.sce
8b84ae57af5d89be95cf20c811f9d3049907a991
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex5_22.sce
// Exa 5.22 format('v',7); clc; clear; close; // Given data S= -20;// sensitivity of closed to open loop gain in dB // sensitivity of closed to open loop gain = 1/(1+AB) = S // or (1+AB) = -S AB= 10^(-S/20) - 1; disp(AB,"The loop gain AB for which the sensitivity of closed loop gain to open loop gain is -20 dB, is : ") // Part (b) when S= 1/2;// sensitivity of closed to open loop gain in dB //S= 1/(1+AB) AB= 1/S-1; disp(AB,"The loop gain AB for which the sensitivity of closed loop gain to open loop gain is 1/2 ,is : ")
2aa57203edc7c3c643d44aa66bab9d484cb8cac4
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH26/EX26.01/26_01.sce
cecbf61117f927608ba63706538d57fc9c07a3a2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
574
sce
26_01.sce
//Problem 26.01: A coil of resistance 5 ohm and inductive reactance 12 ohm is connected across a supply voltage of 526/_30volts. Determine the active power in the circuit. //initializing the variables: RL = %i*12; // in ohm R = 5; // in ohm rv = 52; // in volts thetav = 30; // in degree //calculation: //voltage V = rv*cos(thetav*%pi/180) + %i*rv*sin(thetav*%pi/180) //impedance, Z Z = R + RL //current I = V/Z //Active power, P Pa = real(V)*real(I) + imag(V)*imag(I) printf("\n\n Result \n\n") printf("\nthe active power in the circuit %.0f W\n",Pa)
eeb4f46d1397b4c2c7ed8b237f53151a57b8a8a0
449d555969bfd7befe906877abab098c6e63a0e8
/1442/CH13/EX13.2/13_2.sce
f49796ad8e50e059f93aec6b1bb4a30c37ae8506
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
13_2.sce
clc //initialisation of variables S1= 6.539 //kJ/kg K S2= 6.7664 //kJ/kg K v1= 0.10976 //m^3 v2= 0.08700 //m^3 P= 3 //Mpa P1= 2 //Mpa T= 350 //K T1= 250 //K S3= 3.1741 //kJ/kg K S4= 3.2071 //kJ/kg K P2= 30 //Mpa P3= 20 //Mpa v3= 0.0014217 //m^3 v4= 0.0012860 //m^3 T2= 320 //K T3= 280 //K //CALCULATIONS r= (S1-S2)/(P*10^3-P1*10^3) r1= (v1-v2)/(T-T1) R= (S3-S4)/(P2*10^3-P3*10^3) R1= (v3-v4)/(T2-T3) //RESULTS printf (' entropy wrt pressre= %.7f kJ/kg K kpa',r) printf (' \n entropy wrt pressre= %.e kJ/kg K kpa',R) printf (' \n volume wrt temperature= %.7f m^3/kg K ',r1) printf (' \n volume wrt temperature= %.2e m^3/kg K ',R1)
55cf81dcd971ee4827ce2c03541e9587cad59f52
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH13/EX13.17/example13_17.sce
c325cfcc4d1e013b2099e75a760ffc952b5ed175
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
542
sce
example13_17.sce
clc // Given that lambda = 0.710 // wavelength of x-ray in angstrom x1 = 1 // coordinate on x axis of plane y1 = 0 // coordinate on y axis of plane z1 = 0 // coordinate on z axis of plane a = 2.814 // lattice parameter of of crystal in angstrom // Sample Problem 17 on page no. 13.30 printf("\n # PROBLEM 17 # \n") printf(" Standard formula used \n") printf(" n*lambda = 2 * d * sin(theta)\n") n = 2 // for second order d = a / sqrt(x1^2 + y1^2 + z1^2) theta = asind((n * lambda) / (2 * d)) printf("\n Glancing angle is %f degree.",theta)
d91f03f8aa44c1cbf88f6c2d54893cfc2eed10aa
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH4/EX4.13/Exa4_13.sce
15fbae735b395a1f40c8d656347de220c7f2b1cb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
422
sce
Exa4_13.sce
//Exa4.13 clc; clear; close; //given data Vz=8;//in volts VS=12;//in volts Vout=8;//in volts RL=10;//in Kohm Rs=5;//in Kohm //part (a) disp("Output voltage will be equal to Vz i.e "+string(Vz)+" Volts"); //part (b) Vrs=VS-Vout;//in volts disp(Vrs,"Voltage across Rs in volts : "); IL=Vout/RL;//in mAmpere Is=(VS-Vout)/Rs;//in mAmpere Iz=Is-IL;//in mAmpere disp(Iz,"Current through zener diode in mA : ");
0d1dd7f8d5012fee29a0e042f05d7cb29e217ab1
449d555969bfd7befe906877abab098c6e63a0e8
/797/CH2/EX2.7.e/2_07_example.sci
ac015937cda18cb6243048f8241bf689d46b37e3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
218
sci
2_07_example.sci
//Example 2-7 Using Capillary Rise to Generate Power in a Hydraulic Turbine h = 5 //rise of water column due to capillary effect [cm] g = 9.81 //gravitational acceleration [m/s^2] rho = 1000 //density of water [kg/m^3]
c81fd07199b422036fa54f285fee8d2be3f20895
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Ashe 180 Track Fast Strafes.sce
3bdce39dd069e3bda2762c92af1f5920e9e865b0
[]
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
65,782
sce
Ashe 180 Track Fast Strafes.sce
Name=Ashe 180 Track Fast Strafes PlayerCharacters=Character Profile BotCharacters=Quaker Bot Strafes.bot IsChallenge=true Timelimit=61.0 PlayerProfile=Character Profile AddedBots=Quaker Bot Strafes.bot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=2 MapName=strafe180v2.map MapScale=4.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=1.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag= WeaponHeroTag=MG, Viper, Ashe DifficultyTag=2 AuthorsTag=Watsyurdeal BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Track the Bots Head, their health constantly regens so perfect accuracy is needed. GameVersion=2.0.2.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=false LockedFOVMin=60.0 LockedFOVMax=120.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Quaker Bot Strafes DodgeProfileNames=Mid Long Strafes;Mid Short Strafes;Mid Very Short Strafes DodgeProfileWeights=3.0;2.0;1.0 DodgeProfileMaxChangeTime=2.5 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Quaker Enemy SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=Character Profile MaxHealth=100.0 WeaponProfileNames=MG;;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=0.1 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=20.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=230.0 MainBBRadius=55.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=20.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=65.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 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.25 ThirdPersonCamera=false TPSArmLength=500.0 TPSOffset=X=0.000 Y=125.000 Z=40.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Quaker Enemy MaxHealth=50.0 WeaponProfileNames=;;Revolver;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=0.1 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1100.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=300.0 MainBBRadius=52.0 MainBBHasHead=true MainBBHeadRadius=40.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=300.0 ProjBBRadius=52.0 ProjBBHasHead=false ProjBBHeadRadius=40.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=20.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Mid Long Strafes MaxTargetDistance=8000.0 MinTargetDistance=7000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.0 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.3 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=Mid Short Strafes MaxTargetDistance=8000.0 MinTargetDistance=7000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=Mid Very Short Strafes MaxTargetDistance=8000.0 MinTargetDistance=7000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.1 MaxLRTimeChange=0.2 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.5 MaxProfileChangeTime=0.9 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Weapon Profile] Name=MG Type=Hitscan ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=0.1 TimeBetweenShots=0.083 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=0.1 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=0.1 DamageFalloffStopDistance=0.1 DamageAtMaxRange=5.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.001 BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.514667 ADSMoveFactor=0.8 ADSStartDelay=0.2 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot=MG Scoped StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=65.809998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=0.1 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,10.0,-2.6,2.4 SpreadSCA=2.0,10.0,-2.6,2.4 SpreadMSA=2.0,10.0,-2.6,2.4 SpreadMCA=2.0,10.0,-2.6,2.4 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=2.0,10.0,-2.6,2.4 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=2.0,10.0,-2.6,2.4 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.15 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Revolver Type=Hitscan ShotsPerClick=1 DamagePerShot=40.0 KnockbackFactor=0.1 TimeBetweenShots=0.5 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=7000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=1.7 MagazineMax=0 AmmoPerShot=0 ReloadTimeFromEmpty=0.1 ReloadTimeFromPartial=0.1 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=40.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.5 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Law Bringer WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=4.0 MinRecoilUp=4.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.44 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=MG Scoped Type=Hitscan ShotsPerClick=1 DamagePerShot=3.0 KnockbackFactor=0.1 TimeBetweenShots=0.067 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=3.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.001 BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.5147 ADSMoveFactor=0.8 ADSStartDelay=0.2 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=65.809998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=0.0,0.1,-2.6,2.4 SpreadSCA=2.0,10.0,-2.6,2.4 SpreadMSA=0.0,0.1,-2.6,2.4 SpreadMCA=2.0,10.0,-2.6,2.4 SpreadSSH=2.0,10.0,-2.6,2.4 SpreadSCH=2.0,10.0,-2.6,2.4 SpreadMSH=2.0,10.0,-2.6,2.4 SpreadMCH=2.0,10.0,-2.6,2.4 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.15 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end Float fogDistanceStart 514.000000 String256 title sasa UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -352.000000 16.000000 305.000000 342.000000 16.000000 305.000000 342.000000 16.000000 34.000000 -352.000000 16.000000 34.000000 -352.000000 0.000000 305.000000 342.000000 0.000000 305.000000 342.000000 0.000000 34.000000 -352.000000 0.000000 34.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 -343.508209 176.000000 317.436768 325.492096 176.000000 317.437042 325.492126 176.000000 301.437317 -343.508087 176.000000 301.436981 -343.508209 16.000000 317.436768 325.492096 16.000000 317.437042 325.492126 16.000000 301.437317 -343.508087 16.000000 301.436981 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 -343.508179 172.000000 36.436687 340.491882 172.000000 36.442501 340.492188 172.000000 20.442135 -343.508148 172.000000 20.436689 -343.508179 12.000000 36.436687 340.491882 12.000000 36.442501 340.492188 12.000000 20.442135 -343.508148 12.000000 20.436689 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 -359.507324 177.000000 318.437012 -343.508057 177.000000 318.436981 -343.508423 177.000000 17.436676 -359.508423 177.000000 17.436768 -359.507324 17.000000 318.437012 -343.508057 17.000000 318.436981 -343.508423 17.000000 17.436676 -359.508423 17.000000 17.436768 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 325.491882 175.000000 317.436890 341.491730 175.000000 317.437012 341.492065 175.000000 34.436935 325.491913 175.000000 34.437088 325.491882 16.000000 317.436890 341.491730 16.000000 317.437012 341.492065 16.000000 34.436935 325.491913 16.000000 34.437088 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 1037.000000 16.000000 1780.000000 1410.352295 16.000000 1406.647583 1229.332764 16.000000 1225.628174 855.980469 16.000000 1598.980591 1037.000000 0.000000 1780.000000 1410.352295 0.000000 1406.647583 1229.332764 0.000000 1225.628174 855.980469 0.000000 1598.980591 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 -906.000000 16.000000 1854.000000 -409.842285 16.000000 2034.586426 -322.285461 16.000000 1794.025513 -818.443115 16.000000 1613.438965 -906.000000 0.000000 1854.000000 -409.842285 0.000000 2034.586426 -322.285461 0.000000 1794.025513 -818.443115 0.000000 1613.438965 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 -810.000000 160.000000 1614.000000 -313.842285 160.000000 1794.586670 -308.369873 160.000000 1779.551636 -804.527588 160.000000 1598.965088 -810.000000 0.000000 1614.000000 -313.842285 0.000000 1794.586670 -308.369873 0.000000 1779.551636 -804.527588 0.000000 1598.965088 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 -903.029419 160.000000 1869.596436 -406.871704 160.000000 2050.183105 -401.399414 160.000000 2035.147949 -897.557129 160.000000 1854.561279 -903.029419 0.000000 1869.596436 -406.871704 0.000000 2050.183105 -401.399414 0.000000 2035.147949 -897.557129 0.000000 1854.561279 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 1720.706787 160.000000 821.819275 1727.721191 160.000000 807.438477 1497.629272 160.000000 695.215210 1490.616333 160.000000 709.595642 1720.706787 0.000000 821.819275 1727.721191 0.000000 807.438477 1497.629272 0.000000 695.215210 1490.616333 0.000000 709.595642 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 1488.000000 16.000000 1293.000000 1719.463867 16.000000 818.438232 1489.372437 16.000000 706.215454 1257.912109 16.000000 1180.779907 1488.000000 0.000000 1293.000000 1719.463867 0.000000 818.438232 1489.372437 0.000000 706.215454 1257.912109 0.000000 1180.779907 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 1410.000000 16.000000 1407.000000 1489.000000 16.000000 1293.000000 1258.000000 16.000000 1180.000000 1229.000000 0.000000 1226.000000 1229.000000 16.000000 1226.000000 1488.000000 0.000000 1293.000000 1258.000000 0.000000 1180.000000 1410.000000 0.000000 1407.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 6 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 2 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 404.000000 16.000000 2054.000000 900.157471 16.000000 1873.413330 812.600342 16.000000 1632.852417 316.442749 16.000000 1813.439087 404.000000 0.000000 2054.000000 900.157471 0.000000 1873.413330 812.600342 0.000000 1632.852417 316.442749 0.000000 1813.439087 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 317.573669 160.000000 1817.823608 823.128235 160.000000 1633.816895 817.656067 160.000000 1618.781494 312.101318 160.000000 1802.788452 317.573669 0.000000 1817.823608 823.128235 0.000000 1633.816895 817.656067 0.000000 1618.781494 312.101318 0.000000 1802.788452 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 900.000000 16.000000 1873.000000 1037.810547 16.000000 1779.928345 856.811218 16.000000 1598.657715 813.000000 0.000000 1632.000000 812.000000 16.000000 1633.000000 1036.865234 0.000000 1779.602295 856.811218 0.000000 1598.657715 900.000000 0.000000 1873.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 2 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -274.934204 16.000000 2062.844727 252.744049 16.000000 2081.270996 261.678162 16.000000 1825.427246 -266.000122 16.000000 1807.000244 -274.934204 0.000000 2062.844727 252.744049 0.000000 2081.270996 261.678162 0.000000 1825.427246 -266.000122 0.000000 1807.000244 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 -275.492615 160.000000 2078.834961 252.185791 160.000000 2097.261719 252.744141 160.000000 2081.271484 -274.934204 160.000000 2062.844727 -275.492615 0.000000 2078.834961 252.185791 0.000000 2097.261719 252.744141 0.000000 2081.271484 -274.934204 0.000000 2062.844727 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 -266.000000 160.000000 1807.000000 261.678436 160.000000 1825.427002 262.236847 160.000000 1809.436890 -265.441528 160.000000 1791.009766 -266.000000 0.000000 1807.000000 261.678436 0.000000 1825.427002 262.236847 0.000000 1809.436890 -265.441528 0.000000 1791.009766 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 -410.000000 16.000000 2034.000000 -275.000000 16.000000 2063.000000 -266.000000 16.000000 1807.000000 -323.000000 0.000000 1794.000000 -322.000000 16.000000 1794.000000 -276.000000 0.000000 2063.000000 -266.000000 0.000000 1807.000000 -411.000000 0.000000 2035.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 6 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1217.000000 160.000000 1219.000000 -843.647705 160.000000 1592.352417 -832.333984 160.000000 1581.038696 -1205.686523 160.000000 1207.686279 -1217.000000 0.000000 1219.000000 -843.647705 0.000000 1592.352417 -832.333984 0.000000 1581.038696 -1205.686523 0.000000 1207.686279 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 -1405.333008 160.000000 1405.333008 -1031.980713 160.000000 1778.685425 -1020.666992 160.000000 1767.371704 -1394.019531 160.000000 1394.019287 -1405.333008 0.000000 1405.333008 -1031.980713 0.000000 1778.685425 -1020.666992 0.000000 1767.371704 -1394.019531 0.000000 1394.019287 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 -1027.000000 16.000000 1764.000000 -906.000000 16.000000 1854.000000 -818.000000 16.000000 1613.000000 -906.000000 0.000000 1854.000000 -845.000000 16.000000 1593.000000 -844.000000 0.000000 1593.000000 -1020.000000 0.000000 1768.000000 -819.000000 0.000000 1614.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1393.000000 16.000000 1395.000000 -1019.647583 16.000000 1768.352417 -844.285034 16.000000 1592.989868 -1217.637573 16.000000 1219.637573 -1393.000000 0.000000 1395.000000 -1019.647583 0.000000 1768.352417 -844.285034 0.000000 1592.989868 -1217.637573 0.000000 1219.637573 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 -1712.952393 16.000000 858.043762 -1448.951782 16.000000 1315.305908 -1235.043823 16.000000 1191.804810 -1499.043579 16.000000 734.543640 -1712.952393 0.000000 858.043762 -1448.951782 0.000000 1315.305908 -1235.043823 0.000000 1191.804810 -1499.043579 0.000000 734.543640 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 -1450.000000 16.000000 1314.000000 -1393.000000 16.000000 1395.000000 -1217.000000 16.000000 1220.000000 -1234.551636 0.000000 1191.900391 -1235.491211 16.000000 1191.558472 -1393.000000 0.000000 1395.000000 -1218.000000 0.000000 1220.000000 -1450.000000 0.000000 1314.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 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 1 0 7 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1499.191162 160.000000 734.092773 -1217.692383 160.000000 1221.665405 -1203.835693 160.000000 1213.665771 -1485.335205 160.000000 726.092834 -1499.191162 0.000000 734.092773 -1217.692383 0.000000 1221.665405 -1203.835693 0.000000 1213.665771 -1485.335205 0.000000 726.092834 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 -1734.893677 160.000000 851.236511 -1726.893799 160.000000 865.092896 -1485.272949 160.000000 725.592102 -1493.273438 160.000000 711.735962 -1734.893677 0.000000 851.236511 -1726.893799 0.000000 865.092896 -1485.272949 0.000000 725.592102 -1493.273438 0.000000 711.735962 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 -1729.333008 160.000000 866.333008 -1465.333862 160.000000 1323.594238 -1451.476929 160.000000 1315.594238 -1715.477417 160.000000 858.332642 -1729.333008 0.000000 866.333008 -1465.333862 0.000000 1323.594238 -1451.476929 0.000000 1315.594238 -1715.477417 0.000000 858.332642 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 -1483.333008 161.000000 1298.333008 -1376.352783 161.000000 1445.569824 -1363.407837 161.000000 1436.165161 -1470.389648 161.000000 1288.927246 -1483.333008 1.000000 1298.333008 -1376.352783 1.000000 1445.569824 -1363.407837 1.000000 1436.165161 -1470.389648 1.000000 1288.927246 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 -846.982666 161.000000 1591.011230 -814.625305 161.000000 1614.527710 -799.342163 161.000000 1593.493896 -831.699768 161.000000 1569.978149 -846.982666 1.000000 1591.011230 -814.625305 1.000000 1614.527710 -799.342163 1.000000 1593.493896 -831.699768 1.000000 1569.978149 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 -1030.029419 161.000000 1782.596436 -897.384094 161.000000 1872.067871 -888.437012 161.000000 1858.803223 -1021.082275 161.000000 1769.331177 -1030.029419 1.000000 1782.596436 -897.384094 1.000000 1872.067871 -888.437012 1.000000 1858.803223 -1021.082275 1.000000 1769.331177 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 -419.029419 162.000000 2048.596436 -262.526001 162.000000 2081.861816 -259.199249 162.000000 2066.212891 -415.702820 162.000000 2032.944946 -419.029419 2.000000 2048.596436 -262.526001 2.000000 2081.861816 -259.199249 2.000000 2066.212891 -415.702820 2.000000 2032.944946 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 -319.627747 162.000000 1796.569580 -266.262909 162.000000 1809.881714 -261.424255 162.000000 1790.475220 -314.789246 162.000000 1777.164063 -319.627747 2.000000 1796.569580 -266.262909 2.000000 1809.881714 -261.424255 2.000000 1790.475220 -314.789246 2.000000 1777.164063 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 261.372253 163.000000 1829.569580 315.962799 163.000000 1822.870972 313.525391 163.000000 1803.019531 258.934723 163.000000 1809.717041 261.372253 3.000000 1829.569580 315.962799 3.000000 1822.870972 313.525391 3.000000 1803.019531 258.934723 3.000000 1809.717041 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 240.471069 16.000000 2082.962891 404.000000 16.000000 2054.000000 316.800720 16.000000 1813.106689 403.514587 0.000000 2053.192383 261.674255 16.000000 1825.293457 263.003143 0.000000 1824.809814 240.471069 0.000000 2082.962891 316.800720 0.000000 1813.106689 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 2 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 257.890625 163.000000 2096.476807 414.950714 163.000000 2065.947266 411.898590 163.000000 2050.242432 254.837280 163.000000 2080.769775 257.890625 3.000000 2096.476807 414.950714 3.000000 2065.947266 411.898590 3.000000 2050.242432 254.837280 3.000000 2080.769775 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 418.999939 160.000000 2065.999756 915.157715 160.000000 1885.412964 909.685547 160.000000 1870.378174 413.527771 160.000000 2050.964844 418.999939 0.000000 2065.999756 915.157715 0.000000 1885.412964 909.685547 0.000000 1870.378174 413.527771 0.000000 2050.964844 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 809.372253 164.000000 1630.569580 856.517090 164.000000 1602.246582 846.216431 164.000000 1585.103760 799.069153 164.000000 1613.425903 809.372253 4.000000 1630.569580 856.517090 4.000000 1602.246582 846.216431 4.000000 1585.103760 799.069153 4.000000 1613.425903 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 914.751038 164.000000 1875.818481 1045.815796 164.000000 1784.046875 1036.639771 164.000000 1770.941406 905.573364 164.000000 1862.712158 914.751038 4.000000 1875.818481 1045.815796 4.000000 1784.046875 1036.639771 4.000000 1770.941406 905.573364 4.000000 1862.712158 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 1044.627319 160.000000 1793.000000 1417.979858 160.000000 1419.647705 1406.665894 160.000000 1408.333984 1033.313599 160.000000 1781.686279 1044.627319 0.000000 1793.000000 1417.979858 0.000000 1419.647705 1406.665894 0.000000 1408.333984 1033.313599 0.000000 1781.686279 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 1418.275146 165.000000 1419.986816 1510.048340 165.000000 1288.922241 1496.943604 165.000000 1279.746216 1405.167969 165.000000 1410.809692 1418.275146 5.000000 1419.986816 1510.048340 5.000000 1288.922241 1496.943604 5.000000 1279.746216 1405.167969 5.000000 1410.809692 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 1245.113770 160.000000 1217.301392 1497.616333 160.000000 699.595642 1483.234253 160.000000 692.581726 1230.732910 160.000000 1210.287231 1245.113770 0.000000 1217.301392 1497.616333 0.000000 699.595642 1483.234253 0.000000 692.581726 1230.732910 0.000000 1210.287231 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 849.294312 160.000000 1600.666992 1255.880493 160.000000 1194.080322 1244.566528 160.000000 1182.766602 837.980591 160.000000 1589.353271 849.294312 0.000000 1600.666992 1255.880493 0.000000 1194.080322 1244.566528 0.000000 1182.766602 837.980591 0.000000 1589.353271 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 1507.627319 160.000000 1289.396240 1739.087891 160.000000 814.832397 1724.706787 160.000000 807.819275 1493.247070 160.000000 1282.382935 1507.627319 0.000000 1289.396240 1739.087891 0.000000 814.832397 1724.706787 0.000000 807.819275 1493.247070 0.000000 1282.382935 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 entity type PlayerSpawn Vector3 position -15.000000 23.000000 177.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamB 0 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -15.181400 16.000000 1959.846802 Vector3 angles -183.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -1137.000000 16.000000 1475.000000 Vector3 angles -218.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -634.000000 16.000000 1822.000000 Vector3 angles -200.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 612.000000 16.000000 1862.000000 Vector3 angles -164.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1118.000000 16.000000 1509.000000 Vector3 angles -136.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1504.251831 16.000000 1010.399231 Vector3 angles -120.000000 0.000000 0.000000 Bool8 teamA 0 entity type VolumeSelect brush vertices 187.000000 17.000000 120.000000 196.000000 17.000000 120.000000 196.000000 17.000000 115.000000 187.000000 17.000000 115.000000 187.000000 16.000000 120.000000 196.000000 16.000000 120.000000 196.000000 16.000000 115.000000 187.000000 16.000000 115.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position -1487.348633 16.000000 992.266968 Vector3 angles -230.000000 0.000000 0.000000 Bool8 teamA 0
8541ebec30cf3a9ffc6d7be68d593afbecc0639f
449d555969bfd7befe906877abab098c6e63a0e8
/3131/CH6/EX6.1/6_1.sce
b4ae90799beb73560ff7a45c5d20c9f33ef4a724
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
575
sce
6_1.sce
clear all; clc; disp("Ex 6_1") a1=45 a=a1*%pi/180 // At joint B , Summing forces along X and Y directions: F_BC=500/sin(a) disp("At joint B:") printf('\n\n F_BC = %0.1f N (C)',F_BC) F_BA=F_BC*cos(a) printf('\n\n F_BA = %0.0f N (T)',F_BA) // At joint C , Summing forces along X and Y directions: disp("At joint C:") F_CA=F_BC*cos(a) printf('\n\n F_CA = %0.0f N (T)',F_CA) Cy=F_BC*sin(a) printf('\n\n Cy = %0.0f N ',Cy) // At joint A , Summing forces along X and Y directions: disp("At joint A:") Ax=500 printf('\n\n Ax = %0.0f N',Ax) Ay=500 printf('\n\n Ay = %0.0f N',Ay)
67ebdd03966ff44090b277cfe5733fce0c19ce0e
449d555969bfd7befe906877abab098c6e63a0e8
/1367/CH2/EX2.2/2_2.sce
6d8dcce037e3d3d8031eae385314d0ab17677496
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
242
sce
2_2.sce
//Ex:2.2 clc; clear; close; z=79;//atomic no. of gold e=7.68*1.6*10^-13;//ke in J e_c=1.6*10^-19;//charge of electron in C e_0=8.854*10^-12;//permittivity F/m d=(2*e_c^2*z)/(4*3.14*e_0*e);//distance in m disp(d,"distance (in m) = ");
a5b9269af20bb3c60b839623fa13e5884349420d
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.1/macros/signal/lattn.sci
53f1401cb56dad32d0cfc80db2cdef5c9b15b85a
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "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
2,503
sci
lattn.sci
function [la,lb]=lattn(n,p,cov) //<la,lb>=lattn(n,p,cov) //macro which solves recursively on n (p being fixed) //the following system (normal equations), i.e. identifies //the AR part(poles) of a vector ARMA(n,p) process // // |Rp+1 Rp+2 . . . . . Rp+n | // |Rp Rp+1 . . . . . Rp+n-1| // | . Rp . . . . . . | // | | // |I -A1 -A2 . . .-An|| . . . . . . . . |=0 // | . . . . . . . . | // | . . . . . . . . | // | . . . . . . . Rp+1 | // |Rp+1-n. . . . . . Rp | // // where {Rk;k=1,nlag} is the sequence of empirical covariances // // n : maximum order of the filter // p : fixed dimension of the MA part. If p is equal to -1, // : the algorithm reduces to the classical Levinson recursions. // cov : matrix containing the Rk(d*d matrices for // : a d-dimensional process).It must be given the // : following way: // // | R0 | // | R1 | // cov=| R2 | // | . | // | . | // |Rnlag| // // la : list-type variable, giving the successively calculated // : polynomials (degree 1 to degree n),with coefficients Ak //! //author: G. Le Vey Date: 9 Febr. 1989 [lhs,rhs]=argn(0); [l,d]=size(cov); if d>l,error('bad dimension for the covariance sequence');end if rhs<>3,error('wrong number of arguments');end a=eye(d);b=eye(d); z=poly(0,'z');la=list();lb=list(); no=p-n-1;cv=cov; if no<0, for j=1:-no,cv=[cov(j*d+1:(j+1)*d,:)';cv];end;p=p-no;end for j=0:n-1, jd=jmat(j+1,d); r1=jd*cv((p+1)*d+1:(p+2+j)*d,:); r2=jd*cv(p*d+1:(p+1+j)*d,:); r3=jd*cv((p-1-j)*d+1:p*d,:); r4=jd*cv((p-j)*d+1:(p+1)*d,:); c1=coeff(a);c2=coeff(b); k1=(c1*r1)*inv(c2*r2); k2=(c2*r3)*inv(c1*r4); a1=a-k1*z*b; b=-k2*a+z*b;a=a1; la(j+1)=a;lb(j+1)=b; end; function [la,lb]=lattp(n,p,cov) // G Levey //! [l,d]=size(cov); id=eye(d); [a,b]=lattn(n,0,cov);a=a(n);b=b(n); z=poly(0,'z');la=list();lb=list(); jd=jmat(n+1,d); for j=0:p-1, r1=jd*cov((j+1)*d+1:(j+n+2)*d,:); r2=jd*cov(j*d+1:(j+n+1)*d,:); c1=coeff(a);c2=coeff(b); k=(c1*r1)*inv(c2*r2); hst=-inv(c1(:,n*d+1:(n+1)*d)); r=k*hst; a=(id-r*z)*a-k*z*b; b=-hst*a; la(j+1)=a; end;
482c00b65c8d905e3f3d3153ceb180a9187c99ad
cb412970af67cd342235f1ad29668c7ac9a2dfed
/mt_demo/t_demo.sci
8f10e3afc02335ba247fa6ae3c6b52bc50ec3c6e
[]
no_license
dowaiko/mt_tutorial41
cdab43af761897afc940ae64deb7df423bdd5776
d21788c424e2c1df2ecc46ca6ae270e393433e85
refs/heads/master
2020-04-10T13:25:27.584350
2019-05-31T13:37:08
2019-05-31T13:37:08
161,050,504
0
1
null
null
null
null
UTF-8
Scilab
false
false
5,442
sci
t_demo.sci
clear; clf; // clear //scf; // add printf('\n'); printf('************** t demo ****************'); printf('\n'); printf('Enter a File Name of T Unit'); UnitSpaceFile = input('File Name(.xls)?: ',"string"); //printf('./' +UnitSpaceFile+'.xls\n'); T_Mat_Sheets = readxls('./' + UnitSpaceFile + '.xls'); // EXELファイルの読み出し Sheet = T_Mat_Sheets(1); // Sheetの抜き出し TMate = Sheet.value; // 数値の取り出し SampleCount = size( TMate, 1); ItemCount = size( TMate, 2); printf('SampleCount ='); disp(string(SampleCount)); printf('ItemCount ='); disp(string(ItemCount)); printf('\n'); // 予備計算 for j = 1: ItemCount, x1( 1, j) = 0, //行列の初期化 //x2( 1, j) = 0, //行列の初期化 for i = 1: SampleCount, x1( 1, j) = x1( 1, j) + TMate( i, j), // 1乗の総和を求める //x2( 1, j) = x2( 1, j) + MTAMate( i, j)^2; // 2乗の総和を求める end, end // 算術平均 for j = 1: ItemCount, m( 1, j) = x1( 1, j) / SampleCount; end //printf('m ='); //disp(string(m)); //printf('\n'); /* 信号空間の検証 */ printf('Enter a File Name of T Signal'); TSigFile = input('File Name(.xls)?: ',"string"); //printf('./' +TSigFile+'.xls\n'); TSig_Sheets = readxls('./' + TSigFile + '.xls'); // EXELファイルの読み出し SigSheet = TSig_Sheets(1); // Sheetの抜き出し TSig = SigSheet.value; // 数値の取り出し SampleCountS = size( TSig, 1); ItemCountS = size( TSig, 2); printf('SampleCountS ='); disp(string(SampleCountS)); printf('ItemCountS ='); disp(string(ItemCountS)); printf('\n'); // if ItemCount <> ItemCountS then printf(' T Signal Material is not Suitable\n'), break; end // 正規化 for j = 1: ItemCountS, for i = 1: SampleCountS, u( i, j) = TSig( i, j) - m( 1, j); end; end //printf('u ='); //disp(string(u)); //printf('\n'); r=0; for i = 1: SampleCountS, r = r + u( i, ItemCountS)^2; end L=zeros(1,ItemCountS-1); St=zeros(1,ItemCountS-1); Beta=zeros(1,ItemCountS-1); Sb=zeros(1,ItemCountS-1); Ve=zeros(1,ItemCountS-1); Eta=zeros(1,ItemCountS-1); for j = 1: ItemCountS-1, for i = 1: SampleCountS, L( 1, j) = L( 1, j) + u( i, ItemCountS)*u(i,j), St( 1, j) = St( 1, j) + u(i,j)^2, end, Beta( 1, j) = L( 1, j) / r, Sb( 1, j) = Beta( 1, j)*L( 1, j), Ve( 1, j) = (St( 1, j)-Sb( 1, j))/(SampleCountS-1), Eta( 1, j) = (Sb( 1, j)-Ve( 1, j))/(Ve( 1, j)*r), if Eta( 1, j)<0 then Eta( 1, j)=0; end; end //printf('Beta ='); //disp(string(Beta)); //printf('Eta ='); //disp(string(Eta)); printf('\n'); /* 評価対象の検証 */ printf('Enter a File Name of T Evaluation1'); TEvaFile = input('File Name(.xls)?: ',"string"); //printf('./' +TEvaFile+'.xls\n'); TEva_Sheets = readxls('./' + TEvaFile + '.xls'); // EXELファイルの読み出し EvaSheet = TEva_Sheets(1); // Sheetの抜き出し TEva = EvaSheet.value; // 数値の取り出し SampleCountE = size( TEva, 1); ItemCountE = size( TEva, 2); printf('SampleCountE ='); disp(string(SampleCountE)); printf('ItemCountE ='); disp(string(ItemCountE)); printf('\n'); // if ItemCount <> ItemCountE then printf(' T Evaluation Material is not Suitable\n'), break; end // 正規化 for j = 1: ItemCountE-1, for i = 1: SampleCountE, w( i, j) = TEva( i, j) - m( 1, j); end; end // 予測 Mn = zeros(SampleCountE,1); Md = zeros(SampleCountE,1); for i = 1: SampleCountE, for j = 1: ItemCountE-1, Mn( i, 1) = Mn( i, 1) + Eta( 1, j) * w( i, j) / Beta( 1, j), Md( i, 1) = Md( i, 1) + Eta( 1, j); end, M( i, 1) = Mn( i, 1) / Md( i, 1), Z( i, 1) = M( i, 1) + m( 1, ItemCount); end subplot(2,1,1); plot( Z( :, 1), TEva( :, ItemCountE), '.'); plot( Z( :, 1), Z( :, 1), 'k-'); a=get("current_axes"); a.data_bounds=[3000,3000;6000,6000] xlabel("Predicted PPD[10^4KW]"); ylabel("Actual PPD[10^4KW]"); /* 評価対象の検証 */ printf('Enter a File Name of T Evaluation2'); TEvaFile = input('File Name(.xls)?: ',"string"); //printf('./' +TEvaFile+'.xls\n'); TEva_Sheets = readxls('./' + TEvaFile + '.xls'); // EXELファイルの読み出し EvaSheet = TEva_Sheets(1); // Sheetの抜き出し TEva = EvaSheet.value; // 数値の取り出し SampleCountE = size( TEva, 1); ItemCountE = size( TEva, 2); printf('SampleCountE ='); disp(string(SampleCountE)); printf('ItemCountE ='); disp(string(ItemCountE)); printf('\n'); // if ItemCount <> ItemCountE then printf(' T Evaluation Material is not Suitable\n'), break; end // 正規化 for j = 1: ItemCountE-1, for i = 1: SampleCountE, w( i, j) = TEva( i, j) - m( 1, j); end; end // 予測 Mn = zeros(SampleCountE,1); Md = zeros(SampleCountE,1); for i = 1: SampleCountE, for j = 1: ItemCountE-1, Mn( i, 1) = Mn( i, 1) + Eta( 1, j) * w( i, j) / Beta( 1, j), Md( i, 1) = Md( i, 1) + Eta( 1, j); end, M( i, 1) = Mn( i, 1) / Md( i, 1), Z( i, 1) = M( i, 1) + m( 1, ItemCount); end subplot(2,1,2); plot( Z( :, 1), TEva( :, ItemCountE), '.'); plot( Z( :, 1), Z( :, 1), 'k-'); a=get("current_axes"); a.data_bounds=[3000,3000;6000,6000] xlabel("Predicted PPD[10^4KW]"); ylabel("Actual PPD[10^4KW]");
8a5e05106f73b7ec150f907015cba96371eeeea8
b948892b36eefdb35c47c821c51f69bb60989633
/Deslocamento.sce
d1dad1e45e0c1000e7cf2bf0cf62d65bc0aebbbf
[]
no_license
lucas-medeiros/Digital-Signal-Processing
c5479eab20119e72ccb6adfe1c1d45fddf6dae7c
ba329ce5e5f6ca9ba7d46faba8661e9344627f9d
refs/heads/master
2020-07-15T04:51:18.868263
2019-08-31T02:20:15
2019-08-31T02:20:15
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,054
sce
Deslocamento.sce
function des = Deslocamento(ent) //ent = vetor de entrada tipo = input('Insira o tipo de deslocamento (+1) ou (-1): '); //tipo = tipo de deslocamento //-> tipo = +1 == atraso //-> tipo = -1 == avanço tam = input('Insira o tamanho do deslocamento: '); //tam = tamanho do deslocamento n = length(ent); //tamanho do vetor de entrada if(tam > n) then //se o deslocamento for maior que o vetor de entrada o programa é encerrado printf('Tamanho de deslocamento inválido'); return end vet = zeros([-4*n:1:4*n]); //vetor preenchido com zeros for i = 1:1:n vet(i+4*n) = ent(i); //copia o vetor de entrada pra um vetor maior preenchido com zeros end n2 = length(vet); //tamanho do novo vetor des = vet; for j = tam+1:1:(n2-tam-1) //evita o erro de "Invalid index" des(j) = vet(j + tam*tipo); //realiza o deslocamento end printf('Vetor original: '); disp(vet) printf('Vetor deslocado: '); disp(des) endfunction
0d9a70e2f46e96920a8cbf306a4183b445a2efae
952f05b9b2293792559cddaf7ee402ccc22b0b8d
/icclim/test-cases/test-cases-read-the-docs/read-the-docs-example-14.tst
40ca9e11b29f24654b7100ac340ff2c551dc9b9e
[ "Apache-2.0" ]
permissive
ptrgast/icclim
a5c768bde9f5ce0562ef8250262ca1d70213c461
1c43cc7fc5d779f04fb72361a80bde3b232a9580
refs/heads/master
2020-05-18T18:44:15.153378
2020-02-04T07:46:40
2020-02-04T07:46:40
184,594,303
0
0
NOASSERTION
2020-02-04T07:46:41
2019-05-02T14:19:16
Python
UTF-8
Scilab
false
false
313
tst
read-the-docs-example-14.tst
[Read-the-docs-example-14] # Read the docs - example 14 user_indice: {'indice_name': 'my_indice', 'calc_operation': 'anomaly'} in_files: ['tasmax_day_MPI-ESM-LR_historical_r1i1p1_19900101-19991231.nc'] dt1: 1998-01-01 dt2: 1999-12-31 base_dt1: 1990-01-01 base_dt2: 1992-12-31 callback: callback.defaultCallback2
04632078484efd11968f40896fc96978e0d5cb7a
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH7/EX7.4/Ex7_4.sce
6d40a2d49c2879c69f4d4cd924c9fe35df53e223
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
444
sce
Ex7_4.sce
// Example 7.4 clc; clear; close; // Given data format('v',5); fc= 1*10^3;// in Hz alpha= 1.414; C= 0.1*10^-6;// in F (assume) C_desh= C*alpha^2/4;// in F C_desh= C_desh*10^6;// in µF disp("The value of C'' is : "+string(C_desh)+" µF"); C_desh= C_desh*10^-6;// in F R_desh= 1/(2*%pi*fc*sqrt(C*C_desh));// in Ω R_desh= R_desh*10^-3;// in kΩ disp("The value of R'' is : "+string(R_desh)+" kΩ (standard value 2.2 kΩ)")
adc14521a828b32525b3dfc9861dc977cdc40470
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Pole Peeker.sce
ce567042f6db57a845fbd44b6337899b5c4c4335
[]
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
44,223
sce
Pole Peeker.sce
Name=Pole Peeker PlayerCharacters=PP Challenger BotCharacters=PP Target.bot IsChallenge=true Timelimit=60.0 PlayerProfile=PP Challenger AddedBots=PP Target.bot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=2 MapName=pole_field.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=1.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=MCA-14, Click-timing WeaponHeroTag=Semi-auto DifficultyTag=3 AuthorsTag=pleasewait BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=true Description=Practice to eliminate a peeker. ---------------------------------- Note: MCA stands for "Midweek Competitive Aiming", a local event for the competitive aiming community in Japan. GameVersion=1.0.8.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=PP Target DodgeProfileNames=PP Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=60.0 DodgeProfileMinChangeTime=60.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=PP Target SeeThroughWalls=true NoDodging=false NoAiming=false [Character Profile] Name=PP Challenger MaxHealth=100.0 WeaponProfileNames=PP Semi-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=0.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=15.0 BlockSpawnDistance=4096.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=512.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=PP Target MaxHealth=15.0 WeaponProfileNames=;;;;;;; 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=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=512.0 VerticalSpawnOffset=-26.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=PP Dodging MaxTargetDistance=0.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.35 MaxLRTimeChange=0.5 MinFBTimeChange=0.000001 MaxFBTimeChange=0.000001 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=1.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=60.0 MaxProfileChangeTime=60.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.1 BlockedMovementReactionMax=0.1 [Weapon Profile] Name=PP Semi-auto Type=Hitscan ShotsPerClick=1 DamagePerShot=10.0 KnockbackFactor=0.0 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=1000000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=4 AmmoPerShot=1 ReloadTimeFromEmpty=0.7 ReloadTimeFromPartial=0.7 DamageFalloffStartDistance=1000000.0 DamageFalloffStopDistance=1000000.0 DamageAtMaxRange=10.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.1 HitSoundCooldown=0.1 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 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=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.0 AimPunchCooldown=0.0 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=4 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=50 ADSFOVOverride=30.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=0.1 DamageAtCenter=0.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.0 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,0.0,0.0 SpreadSCA=1.0,1.0,0.0,0.0 SpreadMSA=1.0,1.0,0.0,0.0 SpreadMCA=1.0,1.0,0.0,0.0 SpreadSSH=1.0,1.0,0.0,0.0 SpreadSCH=1.0,1.0,0.0,0.0 SpreadMSH=1.0,1.0,0.0,0.0 SpreadMCH=1.0,1.0,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.1 TimeToRecoilReset=0.1 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=false TrackVertical=false AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=true UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.0 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 528.000000 272.000000 384.000000 528.000000 272.000000 384.000000 528.000000 144.000000 128.000000 528.000000 144.000000 128.000000 512.000000 272.000000 384.000000 512.000000 272.000000 384.000000 512.000000 144.000000 128.000000 512.000000 144.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 384.000000 512.000000 272.000000 400.000000 512.000000 272.000000 400.000000 512.000000 144.000000 384.000000 512.000000 144.000000 384.000000 256.000000 272.000000 400.000000 256.000000 272.000000 400.000000 256.000000 144.000000 384.000000 256.000000 144.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 112.000000 512.000000 272.000000 128.000000 512.000000 272.000000 128.000000 512.000000 144.000000 112.000000 512.000000 144.000000 112.000000 256.000000 272.000000 128.000000 256.000000 272.000000 128.000000 256.000000 144.000000 112.000000 256.000000 144.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 -256.000000 256.000000 1168.000000 768.000000 256.000000 1168.000000 768.000000 256.000000 144.000000 -256.000000 256.000000 144.000000 -256.000000 240.000000 1168.000000 768.000000 240.000000 1168.000000 768.000000 240.000000 144.000000 -256.000000 240.000000 144.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 -256.000000 768.000000 1184.000000 768.000000 768.000000 1184.000000 768.000000 768.000000 1168.000000 -256.000000 768.000000 1168.000000 -256.000000 256.000000 1184.000000 768.000000 256.000000 1184.000000 768.000000 256.000000 1168.000000 -256.000000 256.000000 1168.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 -256.000000 768.000000 144.000000 768.000000 768.000000 144.000000 768.000000 768.000000 128.000000 -256.000000 768.000000 128.000000 -256.000000 256.000000 144.000000 768.000000 256.000000 144.000000 768.000000 256.000000 128.000000 -256.000000 256.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 -272.000000 768.000000 1168.000000 -256.000000 768.000000 1168.000000 -256.000000 768.000000 144.000000 -272.000000 768.000000 144.000000 -272.000000 256.000000 1168.000000 -256.000000 256.000000 1168.000000 -256.000000 256.000000 144.000000 -272.000000 256.000000 144.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 768.000000 768.000000 1168.000000 784.000000 768.000000 1168.000000 784.000000 768.000000 144.000000 768.000000 768.000000 144.000000 768.000000 256.000000 1168.000000 784.000000 256.000000 1168.000000 784.000000 256.000000 144.000000 768.000000 256.000000 144.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 149.221634 768.000000 775.756836 180.735474 768.000000 781.313599 186.292236 768.000000 749.799805 154.778381 768.000000 744.243042 149.221634 256.000000 775.756836 180.735474 256.000000 781.313599 186.292236 256.000000 749.799805 154.778381 256.000000 744.243042 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 331.778412 768.000000 778.756836 363.292206 768.000000 773.200134 357.735504 768.000000 741.686218 326.221619 768.000000 747.242920 331.778412 256.000000 778.756836 363.292206 256.000000 773.200134 357.735504 256.000000 741.686218 326.221619 256.000000 747.242920 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 420.000000 768.000000 758.000000 450.070251 768.000000 747.055298 439.125580 768.000000 716.985168 409.055359 768.000000 727.929749 420.000000 256.000000 758.000000 450.070251 256.000000 747.055298 439.125580 256.000000 716.985168 409.055359 256.000000 727.929749 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 504.000000 768.000000 722.000000 531.712830 768.000000 706.000061 515.712891 768.000000 678.287292 488.000061 768.000000 694.287109 504.000000 256.000000 722.000000 531.712830 256.000000 706.000061 515.712891 256.000000 678.287292 488.000061 256.000000 694.287109 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 240.000000 768.000000 784.000000 272.000000 768.000000 784.000000 272.000000 768.000000 752.000000 240.000000 768.000000 752.000000 240.000000 256.000000 784.000000 272.000000 256.000000 784.000000 272.000000 256.000000 752.000000 240.000000 256.000000 752.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 -95.284607 768.000000 650.256897 -70.771164 768.000000 670.825928 -50.201904 768.000000 646.312561 -74.715347 768.000000 625.743347 -95.284607 256.000000 650.256897 -70.771164 256.000000 670.825928 -50.201904 256.000000 646.312561 -74.715347 256.000000 625.743347 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 -256.000000 784.000000 1168.000000 768.000000 784.000000 1168.000000 768.000000 784.000000 144.000000 -256.000000 784.000000 144.000000 -256.000000 768.000000 1168.000000 768.000000 768.000000 1168.000000 768.000000 768.000000 144.000000 -256.000000 768.000000 144.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 583.000000 768.000000 671.000000 607.513489 768.000000 650.430908 586.944336 768.000000 625.917419 562.430786 768.000000 646.486572 583.000000 256.000000 671.000000 607.513489 256.000000 650.430908 586.944336 256.000000 625.917419 562.430786 256.000000 646.486572 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 650.000000 768.000000 608.000000 670.569092 768.000000 583.486511 646.055725 768.000000 562.917419 625.486572 768.000000 587.430847 650.000000 256.000000 608.000000 670.569092 256.000000 583.486511 646.055725 256.000000 562.917419 625.486572 256.000000 587.430847 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 -208.999969 768.000000 506.000000 -192.999878 768.000000 533.712830 -165.287125 768.000000 517.712769 -181.287155 768.000000 490.000061 -208.999969 256.000000 506.000000 -192.999878 256.000000 533.712830 -165.287125 256.000000 517.712769 -181.287155 256.000000 490.000061 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 512.000000 288.000000 384.000000 512.000000 288.000000 384.000000 512.000000 272.000000 128.000000 512.000000 272.000000 128.000000 288.000000 288.000000 384.000000 288.000000 288.000000 384.000000 288.000000 272.000000 128.000000 288.000000 272.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 128.000000 288.000000 288.000000 384.000000 288.000000 288.000000 384.000000 288.000000 272.000000 128.000000 288.000000 272.000000 128.000000 256.000000 288.000000 384.000000 256.000000 288.000000 384.000000 256.000000 272.000000 128.000000 256.000000 272.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 -159.000000 768.000000 583.000000 -138.430817 768.000000 607.513672 -113.917480 768.000000 586.944458 -134.486664 768.000000 562.431030 -159.000000 256.000000 583.000000 -138.430817 256.000000 607.513672 -113.917480 256.000000 586.944458 -134.486664 256.000000 562.431030 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 -4.000000 256.000000 678.143677 -50.201904 256.000000 646.312561 -20.000000 256.000000 705.856445 -70.771164 768.000000 670.825928 -20.000000 768.000000 705.856445 -70.771164 256.000000 670.825928 -50.201904 768.000000 646.312561 -4.000000 768.000000 678.143677 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -20.000000 768.000000 705.856445 7.712830 768.000000 721.856445 23.712830 768.000000 694.143738 -4.000000 768.000000 678.143677 -20.000000 256.000000 705.856445 7.712830 256.000000 721.856445 23.712830 256.000000 694.143738 -4.000000 256.000000 678.143677 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 71.472351 256.000000 716.964905 23.712830 256.000000 694.143738 60.527710 256.000000 747.035034 7.712830 768.000000 721.856445 60.527710 768.000000 747.035034 7.712830 256.000000 721.856445 23.712830 768.000000 694.143738 71.472351 768.000000 716.964905 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 60.527710 768.000000 747.035034 90.597855 768.000000 757.979614 101.542519 768.000000 727.909546 71.472351 768.000000 716.964905 60.527710 256.000000 747.035034 90.597855 256.000000 757.979614 101.542519 256.000000 727.909546 71.472351 256.000000 716.964905 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 154.778381 256.000000 744.243042 101.542519 256.000000 727.909546 149.221634 256.000000 775.756836 90.597855 768.000000 757.979614 149.221634 768.000000 775.756836 90.597855 256.000000 757.979614 101.542519 768.000000 727.909546 154.778381 768.000000 744.243042 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 240.000000 256.000000 752.000000 186.292236 256.000000 749.799805 240.000000 256.000000 784.000000 180.735474 768.000000 781.313599 240.000000 768.000000 784.000000 180.735474 256.000000 781.313599 186.292236 768.000000 749.799805 240.000000 768.000000 752.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 326.221619 256.000000 747.242920 272.000000 256.000000 752.000000 331.778412 256.000000 778.756836 272.000000 768.000000 784.000000 331.778412 768.000000 778.756836 272.000000 256.000000 784.000000 272.000000 768.000000 752.000000 326.221619 768.000000 747.242920 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 409.055359 256.000000 727.929749 357.735504 256.000000 741.686218 420.000000 256.000000 758.000000 363.292206 768.000000 773.200134 420.000000 768.000000 758.000000 363.292206 256.000000 773.200134 357.735504 768.000000 741.686218 409.055359 768.000000 727.929749 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 450.070251 256.000000 747.055298 504.000000 256.000000 722.000000 439.125580 256.000000 716.985168 488.000061 768.000000 694.287109 439.125580 768.000000 716.985168 488.000061 256.000000 694.287109 504.000000 768.000000 722.000000 450.070251 768.000000 747.055298 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 562.430786 256.000000 646.486572 515.712891 256.000000 678.287292 583.000000 256.000000 671.000000 531.712830 768.000000 706.000061 583.000000 768.000000 671.000000 531.712830 256.000000 706.000061 515.712891 768.000000 678.287292 562.430786 768.000000 646.486572 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 625.486572 256.000000 587.430847 586.944336 256.000000 625.917419 650.000000 256.000000 608.000000 607.513489 768.000000 650.430908 650.000000 768.000000 608.000000 607.513489 256.000000 650.430908 586.944336 768.000000 625.917419 625.486572 768.000000 587.430847 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 677.143677 256.000000 518.000183 646.055725 256.000000 562.917419 704.856506 256.000000 534.000122 670.569092 768.000000 583.486511 704.856506 768.000000 534.000122 670.569092 256.000000 583.486511 646.055725 768.000000 562.917419 677.143677 768.000000 518.000183 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices -134.486664 256.000000 562.431030 -165.287125 256.000000 517.712769 -159.000000 256.000000 583.000000 -192.999878 768.000000 533.712830 -159.000000 768.000000 583.000000 -192.999878 256.000000 533.712830 -165.287125 768.000000 517.712769 -134.486664 768.000000 562.431030 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -74.715347 256.000000 625.743347 -113.917480 256.000000 586.944458 -95.284607 256.000000 650.256897 -138.430817 768.000000 607.513672 -95.284607 768.000000 650.256897 -138.430817 256.000000 607.513672 -113.917480 768.000000 586.944458 -74.715347 768.000000 625.743347 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 704.856506 768.000000 534.000122 720.856384 768.000000 506.287354 693.143616 768.000000 490.287354 677.143677 768.000000 518.000183 704.856506 256.000000 534.000122 720.856384 256.000000 506.287354 693.143616 256.000000 490.287354 677.143677 256.000000 518.000183 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 -256.000000 768.000000 506.000000 -208.000000 768.000000 506.000000 -208.000000 768.000000 490.000000 -256.000000 768.000000 490.000000 -256.000000 256.000000 506.000000 -208.000000 256.000000 506.000000 -208.000000 256.000000 490.000000 -256.000000 256.000000 490.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 720.000000 768.000000 506.000000 768.000000 768.000000 506.000000 768.000000 768.000000 490.000000 720.000000 768.000000 490.000000 720.000000 256.000000 506.000000 768.000000 256.000000 506.000000 768.000000 256.000000 490.000000 720.000000 256.000000 490.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 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 256.000000 256.000000 256.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 808.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 entity type PlayerSpawn Vector3 position 160.811005 256.000000 802.170654 Vector3 angles 170.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 67.354286 256.000000 775.059998 Vector3 angles 160.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 351.702881 256.000000 799.613953 Vector3 angles 190.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 443.243652 256.000000 775.080322 Vector3 angles 200.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
6f77b1606223f5021dc899a00687da38bcb82c85
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH3/EX3.25/example25_sce.sce
5e5f8af08b8515c6b1b61ded4e1418497c9f99f3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
215
sce
example25_sce.sce
//chapter 3 //example 3.25 //page 125 printf("\n") printf("given\n") Vf=.7;E=6;Vb1=3; Vc=Vb1-Vf-(-E) Vo=Vb1-Vf disp("when input is +E") Vo=E+Vc Vc=E-Vb1-Vf Vo=Vb1+Vf disp("when input is -E") Vo=-E+(-Vc)
649317b82142c3fb56319d1ec6a41e8831187293
449d555969bfd7befe906877abab098c6e63a0e8
/1736/CH1/EX1.1/Ch01Ex1.sce
dafad34343eb1df712e149a60db209c5cd72af37
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
479
sce
Ch01Ex1.sce
// Scilab Code Ex1.1 Page-13 (2006) clc; clear; r = 1.278e-010; // Atomic radius of fcc structure, m a = 4*r/sqrt(2); // Lattice parameter of fcc strucure, m V = a^3; // Volume of fcc unit cell, metre, cube printf("\nThe lattice parameter of fcc strucure = %4.2e m", a); printf("\nThe volume of fcc unit cell = %5.2e metre, cube", V); // Result // The lattice parameter of fcc strucure = 3.61e-010 m // The volume of fcc unit cell = 4.72e-029 metre cube
35308caca0933404524d1f88c814181bec70e2f7
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.56/Ch02Ex56.sce
8dd15704d0974d9ef1f81a9bfbd6dddb226c746e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
667
sce
Ch02Ex56.sce
// Scilab Code Ex2.56:: Page-2.46(2009) clc; clear; R = 1; // For simplicity assume radius of curvature of the lens to be unity, cm D_n = 0.251; // Diameter of 3rd dark ring, cm D_nplusp = 0.548; // Diameter of 9th dark ring, cm n = 3; // Order of 3rd Newton ring p = 9 - n; // Order of 6th Newton ring from 3rd ring // As D_nplusp^2 - D_n^2 = 4*p*R*lambda, solving for lambda lambda = (D_nplusp^2 - D_n^2)/(4*p*R); // Wavelength of light used D_15 = sqrt(D_n^2+4*(15-n)*lambda*R); // Diameter of 15th dark ring, cm printf("\nThe diameter of 15th dark ring = %5.3f cm", D_15); // Result // The diameter of 15th dark ring = 0.733 cm
f7315cbc1ab1142c7f797138fbaa7b0b7603469b
449d555969bfd7befe906877abab098c6e63a0e8
/869/CH12/EX12.3/12_3.sce
2587ed7b89ca45a91f5c65e5a445fc8292f87427
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
462
sce
12_3.sce
clc //initialisation of variables W= 1000 //lb/ft L= 10 //in b1= 4 //in h1= 1 //in b2= 1 //in h2= 6 //in //CALCULATIONS Mmax= 12500 //lb ft y= ((b1*h1*h1/2)+(b2*h2*((h2/2)+h1)))/(b1*h1+b2*h2) Ina= (b1*h1^3/12)+b1*h1*(y-h1/2)^2+(b2*h2^3/12)+b2*h2*(h1+h2-y-(h2/2))^2 sigmat= Mmax*12*y/Ina sigmac= Mmax*12*(h1+h2-y)/Ina //RESULTS printf ('maximum tensile stress= %.2f psi',sigmat) printf ('\n maximum compressive bending stress= %.2f psi',sigmac)
35d76977344f72bcec838144b427d2053d9fc919
449d555969bfd7befe906877abab098c6e63a0e8
/1373/CH13/EX13.2/Chapter13_Example2.sce
f399645ebf0738db283e42e2372cd0c265b0fe3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,657
sce
Chapter13_Example2.sce
//Chapter-13, Example 13.2, Page 545 //============================================================================= clc clear //INPUT DATA yh2=0.4;//Mole fraction og H2 yo2=0.6;//Mole fraction of O2 vh2=1;//velocity of H2 in m/s vo2=0;//velocity of O2 in m/s //CALCULATIONS V=(yh2*vh2)+(yo2*vo2);//Molar average velocity in m/s M=(yh2*2)+(yo2*32);//Molecular weight of the mixture mh2=(yh2*2)/M;//Mass fraction of H2 mo2=(yo2*32)/M;//Mass fraction of O2 v=(mh2*vh2)+(mo2*vo2);//Mass average velocity in m/s x1=(mh2*vh2);//Mass flux x2=(mo2*vo2);//Mass flux y1=(v*vh2);//Molar flux y2=(yo2*vo2);//Molar flux jh2=(mh2*(vh2-v));//Mass diffusion flux jo2=(mo2*(vo2-v));//Mass diffusion flux Jh2=(yh2*(vh2-V));//Molar diffusion flux Jo2=(yo2*(vo2-V));//Molar diffusion flux //OUTPUT mprintf('Molar average velocity is %3.1f m/s \nMass average velocity is %3.2f m/s \n Mass flux of H2 when it is stationary is %3.2fp kg/m2.s3 \nMass flux of O2 when it is stationary is %3.0f kg/m^2.s \nMolar flux of H2 when it is stationary is %3.2fC k.mol/m^2.s \nMolar flux of O2 when it is stationary is %3.0f k.mol/m^2.s \nMass diffusion flux of H2 across a surface moving with mass average velocity is %3.4fp kg/m^2.s \nMass diffusion flux of O2 across a surface moving with mass average velocity is %3.4fp kg/m^2.s \nMolar diffusion flux across a surface moving with molar average velociy for H2 is %3.2fC k.mol/m^2.s \nMolar diffusion flux across a surface moving with molar average velociy for O2 is %3.2fC k.mol/m^2.s',V,v,x1,x2,y1,y2,jh2,jo2,Jh2,Jo2) //=================================END OF PROGRAM==============================
66ca735113253e3bceedb9f45c52de7926aeef9f
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.10_1.tst
9b53fcc465d6e1ae4d6d6b2a675a542e64ef628c
[]
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
260,194
tst
5.10_1.tst
10 1280:1 2176:1 2341:1 2373:1 4833:1 5010:1 5565:15 6468:1 6539:1 6930:1 7024:1 7050:1 7794:1 9112:1 9341:1 9508:1 11199:1 11233:1 11757:1 11847:1 12522:1 12718:1 13048:1 15500:1 15594:1 15996:1 16054:1 17498:1 18351:1 18429:1 18511:1 19064:1 19189:1 19222:1 19663:1 20647:1 21109:1 10 11:1 1280:1 1352:1 1583:1 2176:1 2227:1 2341:1 2373:2 2687:1 2891:1 3150:1 3269:1 4560:1 4668:1 4809:1 4833:2 5010:1 5336:1 5455:1 5565:73 5590:1 6468:1 6539:1 6777:1 6822:1 6835:1 6926:1 6930:1 7024:1 7050:1 7794:1 8145:1 8333:1 8449:1 9112:1 9341:1 9486:1 9508:1 9853:1 10237:1 10919:1 11199:1 11233:1 11303:1 11543:1 11746:1 11757:2 11847:1 12522:1 12718:1 13048:1 14104:1 14392:1 14594:1 14716:1 14763:1 14986:1 15064:1 15225:1 15386:1 15500:1 15594:1 15962:1 15996:1 16054:1 16181:1 16293:1 16967:1 17498:1 17554:1 18094:1 18169:1 18351:1 18429:1 18511:1 19052:1 19064:1 19189:1 19222:1 19601:1 19663:1 19714:1 19717:1 19762:1 19974:1 20147:1 20417:1 20630:1 20647:2 20788:1 21109:1 21258:1 10 11:1 1280:1 1352:1 1583:1 1964:1 2125:1 2176:1 2227:1 2341:1 2373:2 2687:1 2891:1 2973:1 3150:1 3269:1 4234:1 4560:1 4668:1 4809:1 4833:2 5010:1 5336:1 5405:1 5455:1 5565:113 5590:1 5645:1 6468:1 6518:1 6539:1 6777:1 6822:1 6835:1 6926:1 6930:1 7024:1 7050:1 7336:1 7635:1 7744:1 7794:1 7862:1 8145:1 8333:1 8449:1 8978:1 9014:1 9103:1 9112:1 9341:1 9486:1 9508:1 9853:1 9875:1 10237:1 10372:1 10919:1 11171:1 11199:1 11233:1 11303:1 11538:1 11543:1 11746:1 11757:2 11847:1 11945:1 12522:1 12718:1 13048:1 13080:1 13555:1 14024:1 14104:1 14392:1 14594:1 14706:1 14716:1 14763:1 14986:1 14996:1 15064:1 15225:1 15376:1 15386:1 15500:1 15594:1 15962:1 15996:1 16054:1 16181:1 16293:1 16548:1 16967:1 17498:1 17554:1 17839:1 18007:1 18094:1 18169:1 18351:1 18429:1 18494:1 18511:1 19052:1 19064:1 19189:1 19222:1 19515:1 19601:1 19663:1 19667:1 19714:1 19717:1 19762:1 19974:1 20016:1 20147:1 20417:1 20630:1 20647:2 20788:1 21109:1 21258:1 10 11:1 1280:1 1352:1 1583:1 1964:1 2125:1 2176:1 2227:1 2341:1 2373:2 2687:1 2891:1 2973:1 3150:1 3269:1 3302:1 3805:1 4234:1 4560:1 4668:1 4809:1 4833:2 5010:1 5336:1 5405:1 5455:1 5565:125 5590:1 5645:1 6468:1 6518:1 6539:1 6640:1 6777:1 6822:1 6835:1 6926:1 6930:1 7024:1 7050:1 7336:1 7635:1 7744:1 7794:1 7862:1 8145:1 8333:1 8449:1 8978:1 9014:1 9103:1 9112:1 9341:1 9486:1 9508:1 9696:1 9853:1 9875:1 10237:1 10372:1 10495:1 10919:1 11171:1 11199:1 11233:1 11303:1 11311:1 11538:1 11543:1 11746:1 11757:2 11847:1 11945:1 12522:1 12718:1 13048:1 13080:1 13555:1 13860:1 14024:1 14104:1 14298:1 14392:1 14594:1 14706:1 14716:1 14763:1 14986:1 14996:1 15064:1 15225:1 15376:1 15386:1 15500:1 15594:1 15962:1 15996:1 16054:1 16181:1 16293:1 16548:1 16967:1 17498:1 17554:1 17839:1 18007:1 18094:1 18169:1 18351:1 18429:1 18494:1 18511:1 19052:1 19064:1 19189:1 19222:1 19515:1 19601:1 19663:1 19667:1 19714:1 19717:1 19734:1 19762:1 19974:1 20016:1 20147:1 20157:1 20417:1 20630:1 20647:2 20788:1 21109:1 21258:1 10 11:1 740:1 1280:1 1352:1 1583:1 1643:1 1964:1 2125:1 2176:1 2227:1 2300:1 2341:1 2373:2 2687:1 2891:1 2973:1 3150:2 3269:1 3302:1 3805:1 4234:1 4518:1 4560:1 4668:1 4809:1 4833:2 5010:1 5163:1 5336:1 5405:1 5455:1 5497:1 5565:128 5590:1 5645:1 5960:1 6468:1 6518:1 6539:1 6582:1 6640:1 6777:1 6822:1 6835:1 6926:1 6930:1 7024:1 7050:1 7336:1 7635:1 7744:1 7763:1 7794:1 7862:1 8145:1 8333:1 8449:1 8978:1 9014:1 9059:1 9103:1 9112:1 9341:1 9486:1 9508:1 9696:1 9853:1 9875:1 10237:1 10372:1 10495:1 10516:1 10919:1 11171:1 11199:1 11233:1 11303:1 11311:1 11538:1 11543:1 11739:1 11746:1 11757:2 11847:1 11945:1 12522:1 12718:1 13048:1 13080:1 13555:1 13860:1 14024:1 14104:1 14298:1 14392:1 14594:1 14706:1 14716:1 14763:1 14986:1 14996:1 15064:1 15225:1 15376:1 15386:1 15500:1 15594:1 15856:1 15962:1 15996:1 16054:1 16181:1 16293:1 16548:1 16967:1 17498:1 17554:1 17839:1 18007:1 18094:1 18169:1 18351:1 18429:1 18494:1 18511:2 19052:1 19064:1 19189:1 19222:1 19515:1 19601:1 19663:1 19667:1 19714:1 19717:1 19734:1 19762:1 19772:1 19974:1 20016:1 20147:1 20157:1 20417:1 20630:1 20647:2 20788:1 21109:1 21258:1 10 11:1 740:1 939:1 1280:1 1352:1 1583:1 1643:1 1964:1 2125:1 2176:1 2227:1 2300:2 2341:1 2373:2 2687:1 2708:1 2891:1 2973:1 3150:2 3269:1 3302:1 3805:1 4234:2 4458:1 4518:1 4560:1 4668:1 4809:1 4833:2 5010:1 5163:1 5336:1 5405:1 5455:1 5497:1 5565:173 5590:1 5645:1 5960:1 6468:1 6518:1 6539:1 6582:2 6640:1 6777:1 6822:1 6835:1 6883:1 6926:1 6930:1 7024:1 7050:1 7336:1 7403:1 7635:1 7744:1 7763:1 7794:1 7862:1 8145:1 8333:1 8449:1 8978:1 9014:1 9059:1 9103:1 9112:1 9217:1 9341:1 9486:1 9508:1 9696:1 9853:1 9875:1 9899:1 10237:1 10372:1 10495:1 10516:1 10919:1 11171:1 11199:1 11233:1 11303:1 11311:1 11538:1 11543:1 11739:1 11746:1 11757:2 11847:1 11945:1 12522:1 12718:1 13048:1 13080:1 13555:1 13860:1 14024:1 14104:1 14298:1 14392:1 14532:1 14594:1 14606:1 14672:1 14706:1 14716:1 14763:1 14986:1 14996:1 15064:1 15225:1 15376:1 15386:1 15500:1 15594:1 15621:1 15856:2 15962:1 15996:1 16054:1 16181:1 16293:1 16548:1 16720:1 16967:1 17498:1 17554:1 17839:1 18007:1 18094:1 18169:1 18351:1 18429:1 18494:1 18511:3 19052:1 19064:1 19189:1 19222:1 19240:1 19515:1 19601:1 19663:1 19667:1 19714:1 19717:1 19734:1 19762:1 19772:1 19974:1 20016:1 20147:1 20157:1 20417:1 20611:1 20630:1 20647:2 20788:1 21109:1 21258:1 10 11:1 383:1 740:1 787:1 939:1 1280:1 1352:1 1386:1 1583:1 1643:1 1964:1 2125:1 2176:1 2178:1 2227:1 2300:2 2341:1 2373:2 2485:1 2687:1 2708:1 2891:1 2973:1 3150:2 3269:1 3302:1 3493:1 3805:1 3932:1 4234:3 4458:1 4518:1 4560:1 4668:1 4775:1 4809:1 4826:1 4833:2 5010:1 5105:1 5163:1 5165:1 5336:1 5405:1 5455:1 5497:1 5540:1 5565:190 5590:1 5645:1 5960:1 6081:1 6201:1 6468:1 6518:2 6539:1 6582:3 6640:1 6777:1 6822:1 6835:1 6883:1 6917:1 6926:1 6930:1 7024:1 7050:1 7336:1 7403:1 7635:1 7744:1 7763:1 7794:1 7855:1 7862:1 8145:1 8333:1 8341:1 8449:1 8978:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9303:1 9341:1 9486:1 9508:1 9696:1 9711:1 9853:1 9875:1 9899:1 10047:1 10068:1 10237:1 10372:2 10495:1 10516:1 10562:1 10814:1 10823:1 10840:1 10919:1 11171:1 11199:1 11231:1 11233:1 11280:1 11303:1 11311:1 11344:1 11538:1 11543:1 11739:1 11746:1 11757:2 11847:1 11896:1 11945:1 12522:1 12718:1 12841:1 13048:1 13064:1 13080:2 13431:1 13555:1 13860:1 14024:1 14083:1 14104:1 14298:1 14392:1 14532:1 14562:1 14594:1 14606:1 14672:1 14706:1 14716:1 14763:1 14805:1 14986:1 14996:1 15064:1 15078:1 15225:1 15376:1 15386:1 15470:1 15500:1 15594:1 15621:1 15856:2 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16293:1 16366:1 16548:1 16720:1 16967:1 17008:1 17498:1 17554:1 17839:1 17911:1 18007:1 18038:1 18039:1 18094:1 18169:1 18351:1 18429:1 18494:2 18511:3 18516:1 18555:1 18680:1 19052:1 19060:1 19064:1 19183:1 19189:1 19222:1 19240:1 19346:1 19515:2 19601:1 19605:1 19663:1 19667:2 19714:1 19717:1 19734:1 19762:1 19772:1 19974:1 20016:1 20147:1 20157:1 20160:1 20369:1 20402:1 20417:1 20611:1 20630:1 20647:2 20788:1 21109:1 21258:1 10 11:2 85:1 383:1 740:1 787:1 914:1 939:1 1280:1 1352:1 1386:1 1583:1 1643:1 1964:1 2125:1 2176:1 2178:1 2227:1 2287:1 2300:2 2341:1 2373:3 2485:1 2687:1 2708:1 2891:2 2973:1 3150:2 3269:1 3302:1 3493:1 3805:1 3821:1 3932:1 4234:3 4458:1 4518:1 4560:1 4662:1 4668:1 4775:1 4809:1 4826:1 4833:3 5010:1 5105:1 5163:1 5165:1 5336:1 5405:1 5455:1 5497:1 5540:1 5565:214 5590:1 5616:1 5645:1 5960:1 6081:1 6201:1 6468:1 6518:2 6539:1 6581:1 6582:3 6640:1 6777:1 6822:1 6835:1 6883:1 6917:1 6926:1 6930:1 7024:1 7050:1 7336:1 7403:1 7635:1 7744:1 7763:1 7794:1 7855:1 7862:1 8145:1 8333:1 8341:1 8449:1 8723:1 8978:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9303:1 9341:1 9486:1 9508:1 9696:1 9711:1 9789:1 9853:1 9875:1 9899:1 10047:1 10068:1 10237:2 10372:2 10495:1 10516:1 10562:1 10814:1 10823:1 10840:1 10919:1 11171:1 11199:1 11231:1 11233:1 11280:1 11303:1 11311:1 11344:1 11538:1 11543:1 11739:1 11746:2 11757:3 11847:1 11896:1 11945:1 12522:1 12718:1 12841:1 12862:1 13048:1 13064:1 13080:2 13431:1 13464:1 13555:1 13860:1 14024:1 14083:1 14104:1 14298:1 14392:1 14532:1 14562:1 14594:1 14606:1 14672:1 14706:1 14716:1 14763:1 14805:1 14986:1 14996:1 15064:1 15078:1 15225:1 15376:1 15386:1 15470:1 15500:1 15594:1 15621:1 15856:2 15927:1 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16293:1 16366:1 16548:1 16720:1 16967:1 17008:1 17375:1 17498:1 17554:1 17752:1 17839:1 17911:1 18007:1 18038:1 18039:1 18094:1 18169:1 18351:1 18429:1 18494:2 18511:3 18516:1 18555:1 18680:1 19052:1 19060:1 19064:1 19183:1 19189:1 19222:1 19240:1 19346:1 19515:2 19601:1 19605:1 19663:1 19667:2 19714:1 19717:1 19734:1 19762:1 19772:1 19974:1 20016:1 20147:1 20157:1 20160:1 20369:1 20402:1 20417:1 20611:1 20630:1 20647:3 20788:1 21109:1 21258:2 10 11:2 85:1 330:1 383:1 397:1 460:1 740:1 787:1 914:1 939:1 1195:1 1258:1 1280:1 1315:1 1352:1 1386:1 1419:1 1583:1 1643:1 1825:1 1964:1 2125:1 2176:1 2178:1 2227:1 2287:1 2300:2 2341:1 2373:3 2485:1 2687:1 2708:1 2891:2 2973:1 3150:2 3269:1 3302:1 3383:1 3493:1 3805:1 3821:1 3932:1 4234:3 4458:1 4518:1 4560:1 4598:1 4662:1 4668:1 4775:1 4809:1 4826:1 4833:3 4843:1 5010:1 5105:1 5163:1 5165:1 5336:1 5405:1 5455:1 5497:1 5540:1 5565:236 5590:1 5616:1 5645:1 5960:1 6081:1 6201:1 6350:1 6468:1 6518:2 6539:1 6581:1 6582:3 6640:1 6702:1 6777:1 6782:1 6822:1 6835:1 6883:1 6917:1 6926:1 6930:1 7024:1 7050:1 7336:1 7403:1 7490:1 7635:1 7744:1 7763:1 7794:1 7855:1 7862:1 8145:1 8333:1 8341:1 8449:1 8723:1 8978:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9303:1 9341:1 9486:1 9508:1 9632:1 9696:1 9711:1 9789:1 9853:1 9875:1 9899:1 10047:1 10068:1 10237:2 10372:2 10495:1 10516:1 10550:1 10562:1 10814:1 10823:1 10840:1 10919:1 11171:1 11199:1 11224:1 11231:1 11233:1 11280:1 11303:1 11311:1 11344:1 11538:1 11543:1 11739:1 11746:2 11757:3 11847:1 11896:1 11945:1 12522:1 12579:1 12610:1 12718:1 12841:1 12862:1 13048:1 13064:1 13080:2 13431:1 13464:1 13555:1 13860:1 13929:1 14024:1 14083:1 14104:1 14298:1 14304:1 14392:1 14532:1 14562:1 14594:1 14606:1 14672:1 14706:1 14716:1 14763:1 14805:1 14986:1 14996:1 15064:1 15078:1 15225:1 15376:1 15386:1 15470:1 15500:1 15594:1 15621:1 15856:2 15857:1 15927:1 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16293:1 16366:1 16548:1 16720:1 16967:1 17008:1 17375:1 17498:1 17554:1 17752:1 17839:1 17911:1 17987:1 18007:1 18038:1 18039:1 18094:1 18169:1 18271:1 18351:1 18395:1 18429:1 18494:2 18511:3 18516:1 18555:1 18680:1 18767:1 19013:1 19052:1 19060:1 19064:1 19183:1 19189:1 19222:1 19240:1 19346:1 19389:1 19515:2 19601:1 19605:1 19616:1 19663:1 19667:2 19714:1 19717:1 19734:1 19762:1 19772:1 19974:1 20016:1 20147:1 20157:1 20160:1 20369:1 20402:1 20417:1 20611:1 20630:1 20647:3 20788:1 20933:1 20977:1 21109:1 21258:2 10 11:2 13:1 37:1 85:1 330:1 383:1 397:1 460:1 570:1 740:1 742:1 787:1 914:1 939:1 1040:1 1139:1 1195:1 1210:1 1258:1 1280:1 1284:2 1315:1 1324:1 1352:1 1364:1 1386:1 1418:1 1419:1 1422:1 1472:1 1583:1 1643:1 1825:1 1964:1 2016:1 2125:1 2176:1 2178:1 2227:1 2287:1 2295:1 2300:2 2341:1 2373:3 2485:1 2491:1 2587:1 2687:2 2708:1 2891:2 2973:1 2990:1 3150:2 3231:1 3269:1 3302:1 3314:2 3325:1 3383:1 3493:2 3504:1 3621:1 3655:1 3805:1 3821:1 3932:1 3963:2 4106:1 4234:3 4250:1 4257:1 4458:1 4518:1 4560:1 4589:1 4598:1 4611:1 4662:1 4668:1 4775:1 4809:1 4826:1 4833:3 4843:1 4885:1 4964:2 5010:1 5105:1 5163:1 5165:1 5256:1 5336:1 5405:1 5416:1 5455:1 5497:1 5540:1 5565:272 5590:1 5616:1 5634:1 5645:1 5891:1 5903:1 5960:1 5990:1 6081:2 6102:1 6201:1 6295:1 6350:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6602:1 6640:1 6702:1 6777:1 6782:1 6822:1 6835:1 6864:1 6883:1 6917:1 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7277:1 7313:1 7336:1 7403:1 7490:1 7510:1 7635:2 7744:1 7763:1 7794:1 7855:1 7862:1 8034:1 8145:1 8212:1 8333:1 8341:2 8449:1 8611:1 8650:1 8723:1 8978:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9283:1 9303:2 9341:1 9414:1 9486:1 9508:1 9632:1 9696:1 9711:2 9789:1 9853:2 9875:1 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10372:2 10414:1 10495:1 10516:1 10550:1 10562:1 10814:2 10823:1 10840:1 10843:2 10919:1 11088:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:1 11280:2 11289:1 11303:1 11311:4 11344:1 11538:1 11543:1 11636:1 11732:1 11739:1 11746:2 11757:3 11847:1 11849:1 11870:1 11896:1 11945:1 12085:1 12126:1 12522:1 12546:1 12579:1 12610:1 12709:1 12718:1 12841:1 12862:1 13048:1 13064:1 13080:2 13128:1 13362:1 13431:1 13464:1 13555:1 13643:1 13860:1 13929:1 14020:1 14024:1 14036:1 14083:1 14104:1 14298:1 14304:1 14392:1 14532:1 14562:1 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14763:1 14805:1 14877:1 14942:1 14986:1 14996:1 15064:1 15078:1 15225:1 15302:2 15307:1 15371:1 15376:1 15386:1 15470:2 15500:1 15594:1 15621:1 15639:1 15715:1 15856:2 15857:1 15927:1 15958:1 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16279:1 16293:1 16366:1 16548:1 16720:1 16799:1 16810:1 16878:1 16967:1 17008:1 17186:1 17375:1 17498:1 17547:1 17554:1 17726:1 17752:1 17839:1 17901:1 17911:1 17978:1 17987:1 18007:1 18038:2 18039:1 18094:1 18169:1 18271:1 18317:1 18351:3 18395:1 18429:1 18439:1 18494:2 18511:3 18516:1 18555:1 18680:1 18715:1 18740:1 18767:1 18771:1 18843:1 19013:1 19052:1 19060:1 19064:1 19183:1 19189:1 19222:1 19240:1 19336:1 19346:1 19389:1 19395:1 19515:2 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19717:1 19734:1 19738:1 19762:1 19772:1 19784:1 19797:1 19853:1 19942:1 19974:1 20016:1 20038:1 20147:1 20157:1 20160:1 20335:1 20369:1 20402:1 20417:1 20547:1 20611:1 20630:1 20647:3 20682:1 20788:1 20933:1 20977:1 21026:1 21109:1 21167:1 21183:1 21258:2 21267:1 21389:1 21436:1 10 11:3 13:1 37:1 85:1 133:1 330:1 383:1 397:1 460:1 570:1 740:1 742:1 787:1 898:1 914:1 939:1 1040:1 1139:1 1195:1 1210:1 1258:1 1280:1 1284:2 1315:1 1324:1 1352:1 1364:1 1386:1 1418:1 1419:1 1422:1 1472:1 1583:1 1643:1 1825:1 1964:1 2016:1 2083:1 2125:1 2176:1 2178:1 2227:1 2287:1 2295:1 2300:2 2341:1 2373:4 2485:1 2491:1 2587:1 2687:2 2708:1 2891:2 2973:1 2990:1 3150:2 3231:1 3269:1 3302:1 3314:2 3325:1 3344:1 3383:1 3493:2 3504:1 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3932:1 3963:2 4106:1 4234:3 4250:2 4257:1 4360:1 4458:1 4518:1 4560:1 4589:1 4598:1 4611:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4885:1 4903:1 4964:2 5010:1 5105:1 5163:1 5165:1 5256:1 5336:1 5405:1 5416:1 5455:1 5497:1 5540:1 5565:300 5590:1 5616:1 5634:1 5645:1 5891:1 5903:1 5960:1 5990:1 6081:2 6102:1 6201:1 6295:1 6350:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6602:1 6640:1 6693:1 6702:1 6777:2 6782:1 6822:1 6835:1 6864:1 6883:1 6917:1 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7154:1 7277:1 7313:1 7336:1 7403:1 7490:1 7510:1 7635:2 7744:1 7763:1 7794:1 7855:1 7862:1 8034:1 8145:1 8212:1 8317:1 8333:1 8341:2 8449:1 8611:1 8650:1 8723:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9283:1 9303:3 9341:1 9414:1 9486:1 9508:1 9632:1 9696:1 9711:2 9789:1 9853:2 9875:1 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10372:2 10414:1 10480:1 10495:1 10516:1 10550:1 10562:1 10814:2 10823:1 10840:1 10843:2 10919:1 11088:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:1 11280:2 11289:1 11303:1 11311:4 11344:1 11386:1 11538:1 11543:1 11636:1 11732:1 11739:1 11746:2 11757:4 11847:1 11849:1 11870:1 11896:1 11945:1 12085:1 12126:1 12522:1 12546:1 12579:1 12610:1 12709:1 12718:1 12841:1 12862:1 13048:1 13064:1 13080:2 13128:1 13285:1 13293:1 13362:1 13429:1 13431:1 13464:1 13555:1 13643:1 13860:1 13929:1 13937:1 14019:1 14020:1 14024:1 14036:1 14083:1 14104:1 14298:1 14304:1 14392:1 14532:1 14562:1 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14736:1 14763:1 14805:1 14877:1 14942:1 14986:1 14996:1 15064:1 15078:1 15116:1 15225:1 15302:2 15307:1 15371:1 15376:1 15386:1 15470:2 15500:1 15594:1 15621:1 15639:1 15640:1 15715:1 15856:2 15857:1 15927:1 15958:1 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16279:1 16293:2 16366:1 16548:1 16720:1 16799:1 16810:1 16878:1 16967:1 17008:1 17186:1 17375:1 17498:1 17547:1 17554:1 17566:1 17726:1 17752:1 17839:1 17901:1 17911:1 17976:1 17978:1 17987:1 18007:1 18038:2 18039:1 18094:1 18169:1 18271:1 18317:1 18326:1 18351:3 18395:1 18429:1 18439:1 18494:2 18511:3 18516:1 18555:1 18680:1 18715:1 18740:1 18767:1 18771:1 18843:1 19013:1 19052:1 19060:1 19064:1 19183:1 19189:1 19222:1 19240:1 19298:1 19336:1 19346:1 19389:1 19395:1 19515:2 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19734:1 19738:1 19762:1 19772:1 19784:1 19797:1 19853:1 19942:1 19974:2 20016:1 20038:1 20147:1 20157:1 20160:1 20335:1 20369:1 20402:1 20417:1 20524:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20788:1 20871:1 20933:1 20956:1 20977:1 21026:1 21109:1 21167:1 21183:1 21258:2 21267:1 21271:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:1 85:1 133:1 330:1 383:1 397:1 460:1 570:1 740:1 742:1 787:1 898:1 914:1 939:1 1040:1 1076:1 1095:1 1139:1 1195:1 1205:2 1210:1 1217:1 1258:1 1280:1 1284:2 1315:1 1324:1 1352:1 1364:1 1386:1 1418:1 1419:1 1422:1 1472:1 1543:1 1583:1 1584:1 1643:1 1815:1 1825:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:1 2167:1 2176:1 2178:1 2227:1 2287:1 2295:1 2300:2 2341:2 2373:4 2391:1 2485:1 2491:1 2587:1 2605:1 2613:1 2684:1 2687:2 2708:1 2815:1 2891:2 2973:1 2990:1 3150:3 3227:1 3231:1 3269:1 3302:1 3314:2 3325:1 3344:1 3383:1 3493:3 3504:1 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3932:1 3963:2 4085:1 4106:1 4234:3 4250:2 4257:1 4345:1 4348:1 4360:1 4458:1 4518:1 4560:1 4589:1 4592:1 4598:1 4611:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5336:1 5405:1 5416:1 5455:1 5497:1 5540:1 5565:335 5590:1 5616:1 5634:1 5645:2 5844:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6078:1 6081:4 6102:1 6201:1 6295:1 6350:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:1 6640:1 6693:1 6702:1 6777:2 6782:1 6822:1 6835:1 6864:1 6883:2 6917:2 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:1 7635:2 7744:1 7763:1 7794:1 7855:1 7862:1 8034:1 8145:1 8194:1 8212:1 8221:1 8317:1 8333:1 8341:4 8449:1 8611:2 8650:1 8723:1 8787:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9283:1 9303:5 9341:1 9414:1 9486:1 9508:1 9632:1 9696:1 9711:3 9789:1 9831:1 9853:2 9875:2 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10372:2 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10814:4 10823:1 10840:1 10843:2 10919:1 11021:1 11088:1 11116:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:1 11280:3 11289:1 11303:1 11311:4 11344:1 11386:1 11538:1 11543:1 11636:1 11732:1 11739:1 11746:2 11757:4 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 12002:1 12085:1 12126:1 12522:1 12546:1 12579:1 12610:1 12709:1 12718:1 12728:1 12782:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13128:2 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13464:1 13555:1 13643:1 13653:1 13705:1 13779:1 13860:1 13929:1 13937:1 14019:1 14020:1 14024:1 14036:1 14083:1 14104:1 14298:1 14304:1 14392:1 14532:1 14562:1 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14736:1 14763:1 14805:1 14877:1 14942:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15225:1 15302:2 15307:1 15371:1 15376:1 15386:1 15470:3 15500:1 15594:1 15621:1 15639:1 15640:1 15715:1 15725:1 15767:1 15786:1 15828:1 15856:2 15857:1 15927:1 15948:1 15958:1 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16279:1 16293:2 16366:1 16548:1 16720:1 16799:1 16810:1 16878:1 16963:1 16967:1 17008:1 17180:1 17186:1 17375:1 17420:1 17498:1 17547:1 17554:1 17566:1 17726:1 17752:1 17839:1 17901:1 17911:1 17976:1 17978:1 17987:1 18007:1 18019:1 18038:4 18039:1 18094:1 18169:1 18184:1 18271:1 18317:1 18326:1 18351:3 18395:1 18429:1 18439:1 18459:1 18494:2 18511:3 18516:1 18555:1 18569:1 18680:1 18715:1 18740:1 18767:1 18771:1 18843:1 19013:1 19052:1 19060:1 19064:1 19183:1 19189:1 19222:1 19240:1 19249:1 19298:1 19336:1 19346:1 19389:1 19395:1 19515:2 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20402:1 20417:1 20524:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20827:1 20871:1 20933:1 20949:1 20956:1 20977:1 21014:1 21026:1 21109:1 21136:1 21167:1 21183:1 21258:2 21267:1 21271:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:1 85:1 133:1 330:1 383:1 397:1 460:1 570:1 740:1 742:1 787:1 898:1 914:1 939:1 1040:1 1076:1 1095:1 1139:1 1195:1 1205:2 1210:1 1217:1 1258:1 1280:1 1284:2 1315:1 1324:1 1352:1 1364:1 1386:1 1418:1 1419:1 1422:1 1472:1 1543:1 1551:1 1583:1 1584:1 1640:1 1643:1 1815:1 1825:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:1 2167:1 2176:1 2178:1 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:1 2587:1 2605:1 2613:1 2684:2 2687:2 2708:1 2815:1 2891:2 2973:1 2990:1 3150:3 3227:2 3231:1 3269:1 3302:1 3314:2 3325:1 3344:1 3383:1 3493:4 3504:1 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3932:1 3963:2 4085:1 4106:1 4234:3 4250:2 4257:1 4345:1 4348:1 4360:1 4458:1 4518:1 4560:1 4589:1 4592:1 4598:1 4611:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5336:1 5405:1 5416:1 5440:1 5455:1 5497:1 5540:1 5565:347 5590:1 5616:1 5634:1 5645:2 5844:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:5 6102:1 6201:1 6295:1 6350:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:1 6640:1 6693:1 6702:1 6777:2 6782:1 6822:1 6835:1 6864:1 6883:2 6917:2 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:1 7635:2 7744:1 7763:1 7794:1 7855:1 7862:1 8034:1 8145:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:5 8449:1 8611:2 8650:1 8723:1 8787:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9283:1 9303:6 9341:1 9414:1 9486:1 9508:1 9632:1 9696:1 9711:4 9789:1 9831:1 9853:2 9875:2 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10372:2 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10814:5 10823:1 10840:1 10843:2 10919:1 11021:1 11088:1 11116:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:1 11280:4 11289:1 11303:1 11311:4 11344:1 11386:1 11538:1 11543:1 11636:1 11732:1 11739:1 11746:2 11757:4 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 12002:1 12085:1 12126:1 12522:1 12546:1 12579:1 12610:1 12709:1 12718:1 12728:1 12782:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13128:3 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13464:1 13555:1 13643:1 13653:1 13705:1 13779:1 13860:1 13929:1 13937:1 14019:1 14020:1 14024:1 14036:1 14083:1 14104:1 14186:1 14298:1 14304:1 14392:1 14532:1 14562:1 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14736:1 14763:1 14805:1 14877:1 14925:1 14942:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15225:1 15302:2 15307:1 15371:1 15376:1 15386:1 15470:4 15500:1 15594:1 15621:1 15639:1 15640:1 15715:1 15725:1 15767:1 15786:1 15828:1 15856:2 15857:1 15927:1 15948:1 15958:1 15962:1 15996:1 16035:1 16052:1 16054:1 16181:1 16279:1 16293:2 16366:1 16548:1 16720:1 16769:1 16799:1 16810:1 16878:1 16963:1 16967:1 17008:1 17049:1 17180:1 17186:2 17375:1 17420:1 17498:1 17547:1 17554:1 17566:1 17726:1 17752:1 17839:1 17901:1 17911:1 17976:1 17978:1 17987:1 18007:1 18019:1 18038:5 18039:1 18094:1 18169:1 18184:1 18271:1 18317:1 18326:1 18351:3 18395:1 18429:1 18439:1 18459:1 18494:2 18511:3 18516:1 18555:1 18569:1 18680:1 18715:1 18740:1 18767:1 18771:1 18778:1 18843:1 19013:1 19052:1 19060:1 19064:1 19183:1 19189:1 19209:1 19222:1 19240:1 19249:1 19298:1 19336:1 19346:1 19389:1 19395:1 19515:2 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20397:1 20402:1 20417:1 20524:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20827:1 20871:1 20933:1 20949:1 20956:1 20977:1 21014:1 21026:1 21109:1 21136:1 21167:1 21183:1 21258:2 21267:1 21271:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:2 85:1 133:1 330:1 383:1 397:1 460:1 570:1 740:1 742:1 787:1 898:1 914:1 939:1 974:1 1040:1 1076:1 1095:1 1139:1 1195:1 1205:2 1210:1 1217:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:1 1352:1 1364:2 1386:1 1399:1 1418:1 1419:1 1422:2 1472:1 1540:1 1543:1 1551:1 1583:1 1584:1 1638:1 1640:1 1643:1 1667:1 1815:1 1825:1 1831:1 1845:1 1847:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:1 2167:1 2175:1 2176:1 2178:1 2183:1 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:2 2587:2 2605:1 2613:1 2684:2 2687:2 2708:1 2815:1 2891:2 2973:1 2990:1 3150:3 3227:2 3231:1 3269:1 3302:1 3314:2 3325:1 3344:1 3383:1 3493:4 3504:1 3534:1 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3932:1 3963:2 3974:1 4085:1 4104:1 4106:1 4234:3 4250:2 4257:1 4345:1 4348:2 4360:1 4458:1 4518:1 4560:1 4589:1 4592:1 4598:1 4611:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5336:1 5375:1 5382:1 5405:1 5416:1 5440:1 5455:1 5497:1 5540:1 5565:390 5590:1 5616:1 5634:1 5645:2 5844:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:6 6102:1 6201:1 6287:1 6295:1 6318:1 6350:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:1 6640:1 6693:1 6702:1 6717:1 6734:1 6777:2 6782:1 6822:1 6835:1 6864:1 6883:2 6894:1 6917:2 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7127:1 7137:1 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:1 7635:2 7744:1 7763:1 7777:1 7794:1 7855:1 7856:1 7862:1 8034:1 8145:1 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:6 8440:1 8449:1 8611:2 8612:1 8650:1 8723:1 8787:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9283:1 9303:7 9341:1 9414:2 9486:1 9508:1 9632:1 9681:1 9696:1 9711:4 9735:1 9789:1 9831:1 9853:2 9875:2 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10372:3 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:1 10814:6 10823:1 10840:1 10843:2 10908:1 10919:1 11021:1 11088:1 11092:1 11116:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:2 11280:4 11286:1 11289:1 11303:1 11311:4 11344:1 11386:1 11538:1 11543:1 11636:1 11732:1 11739:1 11746:2 11757:4 11791:2 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 12002:3 12085:1 12126:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12701:1 12709:1 12718:1 12728:1 12782:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13128:3 13202:1 13217:1 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13464:1 13505:1 13555:1 13643:1 13653:1 13705:1 13735:1 13779:1 13860:1 13929:1 13937:1 13995:1 14003:1 14019:1 14020:1 14024:1 14036:1 14075:1 14083:1 14104:1 14139:1 14186:1 14298:1 14304:1 14392:1 14443:1 14496:1 14529:1 14532:1 14562:1 14580:1 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14736:1 14763:1 14805:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15225:1 15247:1 15302:2 15307:1 15371:1 15376:1 15386:1 15388:1 15470:4 15500:1 15594:1 15605:1 15621:1 15639:1 15640:1 15644:1 15715:1 15725:1 15767:1 15786:1 15828:1 15853:1 15856:2 15857:1 15927:1 15948:1 15958:1 15962:1 15988:1 15996:1 16031:1 16035:1 16052:1 16054:1 16081:1 16137:1 16181:1 16222:1 16279:1 16293:2 16366:1 16548:1 16720:1 16726:1 16769:1 16799:1 16810:1 16878:1 16963:1 16967:1 17008:1 17049:1 17180:1 17186:2 17375:1 17420:1 17498:1 17547:1 17554:1 17566:1 17726:1 17752:1 17839:1 17901:1 17911:1 17920:1 17976:1 17978:2 17987:1 18007:1 18019:1 18038:6 18039:1 18094:1 18167:1 18169:1 18184:1 18271:1 18317:1 18326:1 18351:3 18395:1 18398:1 18409:1 18429:1 18439:1 18459:1 18494:2 18511:3 18516:1 18555:1 18569:1 18680:1 18715:1 18740:1 18767:1 18771:1 18778:1 18843:1 19002:1 19013:1 19046:1 19052:1 19060:1 19064:1 19183:1 19189:1 19209:1 19222:1 19240:1 19249:1 19298:1 19327:1 19336:1 19346:1 19389:1 19395:1 19480:1 19507:1 19515:2 19526:1 19541:1 19553:1 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20095:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20397:1 20402:1 20417:1 20524:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20827:1 20871:1 20933:1 20949:1 20956:1 20977:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:1 21183:1 21258:2 21267:1 21271:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:2 85:1 133:1 330:1 383:1 397:1 460:1 570:1 740:1 742:1 787:1 898:1 914:1 939:1 974:1 1040:1 1076:1 1095:1 1139:1 1195:1 1205:2 1210:1 1217:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:2 1352:1 1364:2 1386:1 1399:2 1418:1 1419:1 1422:3 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:2 1640:1 1643:1 1667:2 1815:1 1825:1 1831:1 1845:2 1847:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2183:2 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:2 2587:2 2605:1 2613:1 2684:2 2687:2 2708:1 2815:1 2891:2 2973:1 2990:1 3150:3 3227:2 3231:1 3269:1 3302:1 3314:2 3325:1 3344:1 3383:1 3493:4 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3932:1 3963:2 3974:1 4085:1 4104:2 4106:1 4190:1 4193:1 4234:3 4250:2 4257:1 4319:1 4345:1 4348:3 4360:1 4458:1 4518:1 4560:1 4589:1 4592:1 4598:1 4611:1 4638:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5323:1 5336:2 5375:1 5382:2 5405:1 5416:1 5440:1 5455:1 5497:1 5540:1 5565:411 5590:1 5616:1 5634:1 5645:2 5844:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:7 6102:1 6108:1 6110:1 6201:1 6287:2 6295:1 6318:2 6350:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:1 6640:1 6693:1 6702:1 6717:2 6734:2 6777:2 6782:1 6822:1 6835:1 6864:1 6883:3 6894:1 6917:2 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7127:2 7137:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:1 7635:2 7720:1 7744:1 7763:1 7777:1 7794:1 7855:1 7856:1 7862:1 8034:1 8082:1 8145:1 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:7 8440:1 8449:1 8611:2 8612:1 8650:1 8723:1 8787:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9283:1 9303:8 9341:1 9414:2 9486:1 9508:1 9632:1 9681:2 9696:1 9711:4 9735:1 9789:1 9831:1 9853:2 9875:3 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10312:1 10342:1 10372:3 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10814:7 10823:1 10840:1 10843:2 10908:2 10919:1 11021:1 11088:1 11092:1 11116:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:2 11280:4 11286:2 11289:1 11303:1 11311:4 11344:1 11347:1 11386:1 11538:1 11543:1 11636:1 11732:1 11739:1 11746:2 11757:4 11791:2 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 11988:1 12002:3 12085:1 12126:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12701:2 12709:1 12718:1 12728:1 12782:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13128:3 13202:1 13217:1 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13464:1 13505:2 13555:1 13643:1 13653:1 13705:1 13735:2 13779:1 13860:1 13929:1 13937:1 13995:1 14003:1 14019:1 14020:1 14024:1 14036:1 14075:1 14083:1 14104:1 14139:2 14186:1 14298:1 14304:1 14392:1 14443:2 14496:1 14529:1 14532:1 14562:1 14580:2 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14736:1 14763:1 14805:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15225:1 15247:2 15277:1 15302:2 15307:1 15371:1 15376:2 15386:1 15388:2 15470:4 15500:1 15594:1 15605:2 15621:1 15639:1 15640:1 15644:1 15715:1 15725:1 15767:1 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15962:1 15988:2 15996:1 16031:1 16035:1 16052:1 16054:1 16081:1 16137:1 16181:1 16222:2 16279:1 16293:2 16366:1 16548:1 16549:1 16720:1 16726:2 16769:1 16799:1 16810:1 16878:1 16963:1 16967:1 17008:1 17049:1 17180:1 17186:2 17286:1 17375:1 17420:1 17498:1 17547:1 17554:1 17566:1 17676:1 17726:1 17752:1 17761:1 17839:1 17901:1 17911:1 17920:2 17976:1 17978:2 17987:1 18007:1 18019:1 18038:7 18039:1 18094:1 18167:2 18169:1 18184:1 18271:1 18317:1 18326:1 18351:3 18395:1 18398:1 18409:2 18429:1 18439:1 18459:1 18494:2 18511:3 18516:1 18555:1 18569:1 18680:1 18715:1 18740:1 18767:1 18771:1 18778:1 18843:1 19002:1 19013:1 19046:1 19052:1 19060:1 19064:1 19183:1 19189:1 19209:1 19222:1 19240:1 19249:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19480:2 19507:1 19515:2 19526:1 19541:1 19553:1 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20095:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20397:1 20402:1 20417:1 20524:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20827:1 20871:1 20933:1 20949:1 20956:1 20977:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:2 21183:1 21258:2 21267:1 21271:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:2 85:1 96:1 133:1 174:1 318:1 330:1 383:1 397:1 450:1 460:1 570:1 740:1 742:1 787:1 812:1 898:1 914:1 939:1 974:1 1040:2 1076:1 1095:1 1139:1 1195:1 1205:2 1210:1 1217:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:2 1352:1 1364:2 1386:1 1399:2 1418:1 1419:1 1422:3 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:2 1640:1 1643:1 1667:2 1815:1 1825:1 1831:1 1845:2 1847:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2183:2 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:2 2587:2 2605:1 2613:1 2669:1 2684:2 2687:2 2708:1 2797:1 2815:1 2891:2 2973:1 2990:1 3106:1 3150:3 3227:2 3231:2 3269:1 3302:1 3314:2 3325:1 3344:1 3383:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3932:1 3963:2 3974:1 4001:1 4085:1 4104:2 4106:1 4190:1 4193:1 4234:3 4250:2 4257:2 4298:1 4319:1 4345:1 4348:3 4360:1 4425:1 4431:1 4458:1 4518:1 4560:1 4589:1 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:1 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5323:1 5336:2 5375:1 5382:2 5405:1 5416:1 5440:1 5455:1 5486:1 5497:1 5540:1 5565:436 5590:1 5616:1 5634:1 5645:2 5844:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6201:1 6287:2 6295:1 6318:2 6350:1 6433:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:1 6640:1 6693:1 6702:1 6717:2 6734:2 6777:2 6782:1 6822:1 6835:1 6864:1 6883:3 6894:1 6917:2 6926:1 6930:1 6943:1 7024:1 7050:1 7093:2 7102:1 7127:2 7137:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:2 7635:2 7636:1 7666:1 7720:1 7744:1 7763:1 7777:1 7794:1 7855:1 7856:1 7862:1 8034:1 8082:1 8145:1 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:8 8372:1 8440:1 8449:1 8611:2 8612:2 8650:1 8723:1 8787:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9242:1 9283:1 9303:9 9341:1 9414:2 9481:1 9486:1 9508:1 9632:1 9681:2 9696:1 9711:5 9735:1 9789:1 9831:1 9853:2 9875:3 9899:1 9907:1 10047:1 10068:2 10087:1 10151:1 10237:2 10297:1 10312:1 10342:1 10372:3 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10789:1 10814:8 10823:1 10840:1 10843:2 10908:2 10919:1 10932:1 11021:1 11088:1 11092:1 11116:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:2 11280:5 11286:2 11289:1 11303:1 11311:5 11344:1 11347:1 11386:1 11538:1 11543:1 11636:1 11657:1 11732:1 11739:1 11746:2 11757:4 11791:2 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 11988:1 12002:3 12085:1 12103:1 12126:1 12181:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12701:2 12709:1 12718:1 12728:1 12782:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13128:4 13202:1 13217:1 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13452:1 13464:1 13505:2 13551:1 13555:1 13643:1 13653:1 13705:1 13735:2 13779:1 13860:1 13929:1 13937:1 13995:1 14003:1 14019:1 14020:1 14024:1 14036:1 14075:1 14083:1 14104:1 14139:2 14186:1 14298:1 14304:1 14305:1 14316:1 14392:1 14443:2 14496:1 14529:1 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14672:1 14706:1 14716:1 14736:1 14763:1 14767:1 14805:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15225:1 15247:2 15277:1 15302:3 15307:1 15354:1 15371:1 15376:2 15386:1 15388:2 15402:1 15420:1 15470:5 15500:1 15594:1 15605:2 15621:1 15639:1 15640:1 15644:1 15715:1 15725:1 15767:1 15785:1 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15988:2 15996:1 16029:1 16031:1 16035:1 16052:1 16054:1 16081:1 16137:1 16181:1 16222:2 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16720:1 16726:2 16769:1 16799:1 16810:1 16878:1 16888:1 16963:1 16967:1 17008:1 17049:1 17097:1 17180:1 17186:2 17286:1 17343:1 17369:1 17375:1 17392:1 17420:1 17498:1 17547:2 17554:1 17566:1 17676:1 17726:1 17752:1 17761:1 17816:1 17839:1 17901:1 17911:1 17920:2 17976:1 17978:2 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18167:2 18169:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:3 18395:1 18398:1 18409:2 18429:1 18439:1 18459:1 18494:2 18511:3 18516:1 18545:1 18555:1 18569:1 18666:1 18680:1 18715:1 18740:1 18767:1 18771:1 18778:1 18843:1 19002:1 19013:1 19046:1 19052:1 19060:1 19064:1 19135:1 19146:1 19183:1 19189:1 19209:1 19222:1 19240:1 19249:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19480:2 19507:1 19515:2 19526:1 19541:1 19553:1 19601:1 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19831:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20095:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20827:1 20871:1 20887:1 20933:1 20949:1 20956:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:2 21179:1 21183:1 21258:2 21267:1 21271:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:2 85:1 96:1 133:1 174:1 318:2 330:2 383:1 397:1 450:1 460:1 570:1 676:1 740:1 742:1 787:1 812:1 898:1 914:1 939:1 974:1 1040:2 1076:1 1095:1 1139:1 1195:1 1205:2 1210:1 1217:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:2 1352:1 1364:2 1386:1 1399:2 1418:1 1419:1 1422:3 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:2 1640:1 1643:1 1667:2 1815:1 1825:1 1831:1 1845:2 1847:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2183:2 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:2 2523:1 2587:2 2605:1 2613:1 2669:1 2684:2 2687:3 2698:1 2708:2 2714:1 2797:1 2815:1 2891:2 2973:1 2990:1 3106:2 3150:3 3227:2 3231:2 3269:1 3298:1 3302:1 3314:2 3325:1 3344:1 3383:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3932:1 3963:2 3974:1 4001:2 4015:1 4085:1 4104:2 4106:1 4190:1 4193:1 4234:3 4250:2 4257:2 4298:1 4319:1 4345:1 4348:3 4360:1 4425:2 4431:1 4458:1 4518:1 4560:1 4589:1 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:2 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5323:1 5336:2 5375:1 5382:2 5405:1 5416:1 5440:1 5455:1 5486:1 5497:1 5540:1 5565:472 5590:1 5616:1 5634:1 5645:2 5844:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6201:1 6287:2 6295:1 6318:2 6350:1 6433:1 6468:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6734:2 6777:2 6782:1 6822:1 6835:1 6864:1 6883:3 6894:1 6917:2 6926:1 6930:1 6943:1 7024:1 7050:1 7089:1 7093:2 7102:1 7127:2 7137:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:2 7635:2 7636:1 7666:1 7720:1 7744:1 7763:1 7777:1 7794:1 7823:1 7828:1 7855:1 7856:1 7862:1 8034:1 8082:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:8 8372:2 8440:1 8449:2 8599:1 8611:2 8612:2 8650:1 8723:1 8787:1 8803:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9242:2 9283:1 9303:9 9341:1 9414:2 9481:1 9486:2 9508:1 9632:1 9681:2 9696:1 9697:1 9711:5 9735:1 9789:1 9831:1 9853:3 9875:3 9899:1 9907:1 9918:1 10047:1 10068:2 10087:1 10151:1 10237:2 10297:1 10312:1 10342:1 10372:3 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10789:1 10814:8 10823:1 10840:1 10843:2 10908:2 10919:1 10932:1 11021:1 11088:2 11092:1 11116:1 11171:1 11199:2 11224:1 11231:1 11233:1 11245:2 11280:5 11286:2 11289:1 11303:1 11311:6 11344:1 11347:1 11386:1 11538:1 11543:1 11636:1 11657:1 11666:1 11732:1 11739:1 11746:2 11757:4 11791:2 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 11988:1 12002:3 12085:1 12103:2 12126:1 12181:2 12273:1 12300:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12701:2 12709:2 12718:1 12728:1 12782:1 12786:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:1 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13452:2 13464:1 13505:2 13551:1 13555:1 13643:1 13653:1 13671:1 13697:1 13705:1 13735:2 13779:1 13860:1 13929:1 13937:1 13995:1 14003:1 14019:1 14020:1 14024:1 14036:1 14075:1 14083:1 14104:1 14139:2 14186:1 14239:1 14298:1 14304:1 14305:2 14316:2 14368:1 14392:1 14443:2 14496:1 14529:1 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14706:1 14716:1 14736:1 14763:1 14767:2 14805:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:1 15354:1 15371:1 15376:2 15386:1 15388:2 15402:1 15420:2 15470:5 15500:1 15594:1 15605:2 15621:1 15639:1 15640:1 15644:1 15715:1 15725:1 15767:1 15785:2 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15988:2 15996:1 16029:2 16031:1 16035:1 16052:1 16054:1 16081:1 16137:1 16181:1 16222:2 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16720:1 16726:2 16769:1 16799:1 16810:1 16875:1 16878:1 16888:1 16906:1 16924:1 16963:1 16967:1 17008:1 17049:1 17097:2 17180:1 17186:2 17286:1 17343:2 17369:2 17375:1 17392:1 17420:1 17498:1 17547:2 17554:1 17566:1 17676:1 17726:1 17752:1 17761:1 17816:2 17839:1 17901:1 17911:1 17920:2 17976:1 17978:2 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18167:2 18169:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:3 18395:1 18398:1 18409:2 18429:1 18439:1 18459:1 18494:2 18511:3 18516:1 18545:2 18555:1 18556:1 18569:1 18666:1 18680:1 18715:1 18740:1 18767:1 18771:1 18778:1 18843:1 19002:1 19013:1 19046:1 19052:1 19060:1 19064:1 19135:2 19146:1 19183:1 19189:1 19209:1 19222:1 19240:1 19249:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19480:2 19507:1 19515:2 19526:1 19541:1 19553:1 19601:2 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19831:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20812:1 20827:1 20871:1 20887:1 20933:1 20949:1 20956:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21258:2 21267:1 21271:1 21295:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:2 85:1 96:1 133:1 174:1 318:3 330:2 383:1 397:1 450:1 460:1 570:1 650:1 676:1 740:1 742:1 786:1 787:1 812:1 898:1 914:1 939:1 974:1 1040:2 1076:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:1 1217:1 1225:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:2 1352:1 1364:2 1386:1 1399:2 1418:1 1419:1 1422:3 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:2 1640:1 1643:1 1667:2 1815:1 1825:1 1831:1 1845:2 1847:1 1858:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2183:2 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2523:1 2587:2 2605:1 2613:1 2669:1 2684:2 2687:3 2698:1 2708:2 2714:1 2797:1 2815:1 2891:2 2973:1 2990:1 3058:1 3106:2 3150:3 3227:2 3231:2 3269:1 3298:1 3302:1 3306:1 3314:2 3325:1 3344:1 3383:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3930:1 3932:1 3963:2 3974:1 4001:3 4015:1 4085:1 4104:2 4106:1 4184:1 4190:1 4193:1 4234:4 4250:2 4257:2 4298:1 4319:1 4345:1 4348:3 4360:1 4425:3 4431:1 4458:1 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:3 5010:1 5105:1 5148:1 5163:1 5165:1 5240:1 5256:1 5323:1 5336:2 5375:1 5382:2 5405:1 5416:1 5440:1 5455:1 5486:1 5487:1 5497:1 5540:1 5565:521 5590:1 5616:1 5634:1 5645:2 5844:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6189:1 6201:1 6287:2 6295:1 6318:2 6350:1 6433:1 6468:1 6473:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6734:2 6777:2 6782:1 6822:1 6835:1 6849:1 6864:1 6883:3 6894:1 6917:2 6926:1 6930:1 6943:2 7024:1 7050:1 7089:1 7093:2 7102:1 7127:2 7137:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7472:1 7490:1 7510:2 7635:2 7636:1 7666:1 7688:1 7720:1 7744:1 7756:1 7763:1 7777:1 7794:1 7823:1 7828:1 7855:1 7856:1 7862:1 7991:1 8034:1 8077:1 8082:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:8 8372:2 8440:1 8449:2 8599:1 8611:2 8612:2 8634:1 8650:1 8723:1 8748:1 8787:1 8803:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9103:1 9112:1 9141:2 9217:1 9230:1 9242:3 9283:1 9303:9 9341:1 9414:2 9437:1 9481:1 9486:2 9508:1 9632:1 9681:2 9696:1 9697:1 9711:5 9735:1 9789:1 9831:1 9853:3 9863:1 9875:3 9899:1 9907:1 9918:1 10047:1 10068:2 10087:1 10151:1 10194:1 10237:2 10297:1 10312:1 10332:1 10342:1 10372:3 10414:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10789:1 10814:8 10823:1 10840:1 10843:2 10908:2 10919:1 10932:1 11021:1 11088:2 11092:1 11116:1 11171:1 11199:2 11201:1 11224:1 11231:1 11233:1 11245:2 11280:5 11286:2 11289:1 11303:1 11311:6 11344:2 11347:1 11386:1 11491:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:1 11732:1 11739:1 11746:2 11757:4 11791:2 11833:1 11847:1 11849:1 11870:1 11896:1 11945:2 11988:1 12002:3 12085:1 12103:3 12126:1 12181:3 12273:1 12300:1 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12701:2 12709:2 12718:1 12728:1 12782:1 12786:1 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:1 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13452:3 13464:1 13505:2 13551:1 13555:1 13643:1 13653:1 13671:1 13697:1 13705:1 13735:2 13756:1 13779:1 13860:1 13929:1 13937:1 13995:1 14003:1 14019:1 14020:1 14024:1 14036:1 14075:1 14083:1 14104:1 14124:1 14139:2 14186:1 14198:1 14239:1 14298:1 14304:1 14305:3 14316:3 14368:1 14392:1 14443:2 14496:1 14529:1 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14706:1 14716:1 14736:1 14744:1 14763:1 14767:3 14805:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:1 15354:1 15371:1 15376:2 15386:1 15388:2 15402:1 15420:3 15428:1 15470:5 15500:1 15594:1 15605:2 15621:1 15639:1 15640:1 15644:1 15715:1 15725:1 15767:1 15785:3 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15966:1 15988:2 15996:1 16029:3 16031:1 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16181:1 16222:2 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16720:1 16726:2 16769:1 16799:1 16801:2 16810:1 16875:1 16878:1 16888:1 16906:1 16924:1 16963:1 16967:1 17008:1 17049:1 17097:3 17110:1 17175:1 17180:1 17186:2 17286:1 17343:3 17369:3 17375:1 17392:1 17420:1 17471:1 17498:1 17547:2 17554:1 17566:1 17676:1 17726:1 17752:1 17761:1 17816:3 17839:1 17901:1 17911:1 17920:2 17976:1 17978:3 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18167:2 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:3 18362:1 18395:1 18398:1 18407:1 18409:2 18429:1 18439:2 18459:1 18494:2 18511:3 18516:1 18545:3 18555:1 18556:1 18569:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:2 19002:1 19013:1 19036:1 19046:1 19052:1 19056:1 19060:1 19064:1 19135:3 19146:1 19156:1 19183:1 19189:1 19209:1 19222:1 19224:1 19240:1 19249:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19480:2 19507:1 19515:2 19526:1 19541:1 19553:1 19601:3 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19831:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:1 20547:1 20611:1 20630:1 20647:4 20682:1 20713:1 20766:1 20788:1 20812:1 20827:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21258:2 21267:1 21271:1 21295:1 21355:1 21389:1 21436:1 10 11:3 13:1 37:2 85:1 89:1 96:1 133:1 174:1 318:4 330:3 348:1 383:1 397:1 450:1 460:1 570:1 650:1 676:1 740:1 742:1 786:1 787:1 812:1 898:1 914:1 939:1 974:1 1040:3 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:1 1217:1 1225:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:2 1352:1 1364:2 1386:1 1399:2 1418:1 1419:1 1422:3 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:2 1640:1 1643:1 1667:2 1815:1 1816:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1939:1 1964:1 1983:1 2016:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2183:2 2227:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2523:1 2587:2 2605:1 2613:1 2663:1 2669:1 2684:2 2687:3 2698:1 2708:2 2714:3 2797:1 2815:1 2891:2 2973:1 2990:1 3058:1 3106:3 3150:3 3227:2 3231:2 3269:1 3298:1 3302:1 3306:1 3314:2 3325:1 3344:1 3383:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3805:1 3821:1 3871:1 3930:1 3932:1 3963:2 3974:1 4001:4 4015:1 4085:1 4104:2 4106:1 4184:1 4190:1 4193:1 4234:4 4250:2 4257:2 4298:1 4319:1 4345:1 4348:3 4360:1 4425:4 4431:1 4458:1 4493:1 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:4 5010:1 5105:1 5148:1 5163:1 5165:1 5226:1 5240:1 5256:1 5277:1 5323:1 5336:2 5375:1 5382:2 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5497:1 5540:1 5565:551 5590:1 5616:1 5634:1 5645:2 5844:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6201:1 6287:2 6295:1 6318:2 6350:1 6433:1 6468:1 6473:1 6477:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6734:2 6777:2 6782:1 6822:1 6835:1 6849:1 6864:1 6874:1 6883:3 6894:1 6917:2 6926:1 6930:1 6943:3 7024:1 7050:1 7084:1 7089:1 7093:2 7102:1 7127:2 7137:2 7154:1 7192:1 7277:1 7313:1 7336:1 7403:1 7430:1 7472:1 7490:1 7505:1 7510:2 7635:2 7636:1 7666:1 7688:1 7720:1 7744:1 7756:1 7763:1 7777:1 7794:1 7823:2 7828:1 7855:1 7856:1 7862:1 7885:2 7991:1 8034:1 8077:1 8082:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8333:1 8341:8 8372:3 8440:1 8449:2 8520:1 8599:2 8611:3 8612:2 8634:1 8650:1 8723:1 8748:1 8787:1 8803:1 8934:1 8958:1 8978:1 8981:1 9014:1 9059:1 9093:1 9103:1 9112:1 9141:2 9217:1 9230:1 9242:4 9283:1 9303:9 9341:1 9414:2 9437:1 9481:1 9486:2 9508:1 9632:1 9681:2 9696:1 9697:1 9711:5 9735:1 9789:1 9831:1 9853:3 9863:1 9875:3 9899:1 9900:1 9907:1 9918:1 10047:1 10068:2 10087:2 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10789:1 10814:8 10823:1 10840:1 10843:2 10908:2 10919:1 10932:1 11016:1 11021:1 11088:2 11092:1 11116:1 11171:1 11199:2 11201:1 11204:1 11224:1 11231:1 11233:1 11245:2 11280:5 11286:2 11289:1 11303:1 11311:6 11344:2 11347:1 11386:1 11491:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11746:2 11755:1 11757:4 11791:2 11833:1 11847:1 11849:2 11870:1 11896:1 11935:1 11945:2 11988:1 12002:4 12085:1 12103:4 12126:1 12181:4 12252:1 12273:2 12300:2 12408:2 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12644:1 12701:2 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:2 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13452:4 13464:1 13505:2 13524:1 13551:1 13555:1 13643:1 13653:1 13671:1 13697:3 13705:1 13735:2 13756:1 13760:1 13779:1 13860:1 13929:1 13937:1 13995:1 14003:1 14019:1 14020:2 14024:1 14036:1 14075:1 14083:1 14104:1 14124:1 14139:2 14186:1 14198:1 14228:1 14239:1 14243:1 14298:1 14304:1 14305:4 14316:4 14368:1 14392:1 14443:2 14496:1 14529:2 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14744:1 14763:1 14767:4 14779:1 14805:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15116:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:1 15354:1 15371:1 15376:2 15386:1 15388:2 15402:1 15420:4 15428:1 15470:5 15500:1 15594:1 15600:2 15605:2 15621:1 15639:1 15640:1 15644:1 15713:1 15715:1 15722:1 15725:1 15767:1 15785:4 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15966:1 15988:2 15996:1 16029:4 16031:1 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16181:1 16222:2 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16720:1 16726:2 16769:1 16799:1 16801:2 16810:1 16875:2 16878:1 16888:1 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:4 17110:1 17175:1 17180:1 17186:2 17286:1 17343:4 17369:4 17375:1 17380:1 17392:1 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17547:2 17554:1 17566:1 17676:1 17726:1 17752:1 17761:1 17816:4 17839:1 17901:1 17911:1 17920:2 17976:1 17978:3 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18126:1 18158:1 18167:2 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:3 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:2 18429:1 18439:2 18459:1 18494:2 18511:3 18516:1 18545:4 18555:1 18556:2 18569:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:2 18917:1 19002:1 19013:1 19036:1 19046:1 19052:1 19056:1 19060:1 19064:1 19135:4 19146:1 19156:1 19167:1 19183:1 19189:1 19209:1 19222:1 19224:1 19240:1 19249:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19409:1 19421:1 19480:2 19507:1 19515:2 19526:1 19541:1 19553:1 19601:3 19605:1 19616:1 19654:1 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19831:1 19853:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20147:1 20157:1 20160:1 20298:1 20335:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:1 20535:1 20547:1 20611:1 20630:1 20647:4 20682:2 20713:1 20766:1 20788:1 20812:1 20827:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21258:2 21267:1 21271:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21473:1 10 11:3 13:1 37:2 85:1 89:1 96:1 133:1 174:1 316:1 318:5 330:3 348:1 383:1 397:1 450:1 458:1 460:1 570:1 650:1 676:1 740:1 742:1 786:2 787:1 812:1 898:1 914:1 939:1 974:2 990:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:1 1217:1 1225:1 1238:1 1258:1 1280:1 1284:2 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1418:1 1419:1 1422:3 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:3 1640:1 1643:1 1667:2 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2523:1 2587:2 2605:1 2613:1 2663:1 2669:1 2684:2 2687:3 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2973:1 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3298:1 3302:1 3306:1 3314:2 3325:1 3344:1 3383:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3672:1 3805:1 3821:1 3871:1 3880:1 3890:1 3930:1 3932:1 3963:2 3974:1 4001:5 4015:1 4085:1 4104:4 4106:1 4184:2 4190:1 4193:1 4234:4 4240:1 4250:2 4257:2 4288:1 4297:1 4298:1 4319:1 4326:1 4345:1 4348:3 4360:1 4369:1 4425:5 4431:1 4458:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5336:2 5375:2 5382:3 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5497:1 5510:1 5540:1 5565:619 5590:1 5616:1 5634:1 5645:2 5844:1 5845:1 5856:1 5867:1 5891:1 5903:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:1 6477:1 6515:1 6518:2 6539:1 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6822:1 6835:1 6849:1 6864:1 6874:2 6883:3 6894:1 6917:2 6926:1 6930:1 6943:3 6960:1 7024:1 7050:1 7084:1 7089:1 7093:2 7102:1 7127:2 7137:2 7154:1 7192:1 7221:1 7277:1 7313:1 7336:1 7403:1 7430:1 7472:1 7490:1 7505:1 7510:2 7635:2 7636:1 7666:1 7688:1 7720:1 7744:1 7756:1 7763:1 7777:1 7794:1 7823:2 7828:1 7855:1 7856:1 7862:1 7885:2 7991:1 8034:1 8077:1 8082:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8320:1 8333:1 8341:8 8372:3 8440:1 8449:2 8520:1 8545:1 8599:2 8611:3 8612:2 8634:1 8650:1 8723:1 8748:1 8787:1 8803:1 8823:1 8934:1 8944:1 8958:1 8978:1 8981:1 9014:1 9059:1 9093:1 9103:1 9112:1 9121:1 9141:2 9217:1 9230:1 9242:5 9283:1 9303:9 9341:1 9414:2 9437:1 9481:1 9486:2 9508:1 9632:1 9681:2 9696:1 9697:1 9711:5 9735:1 9789:1 9801:1 9831:1 9853:3 9862:1 9863:1 9875:3 9899:1 9900:2 9907:1 9918:1 10047:1 10068:2 10087:2 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10789:1 10814:8 10823:1 10840:1 10843:2 10889:1 10908:2 10919:1 10932:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:1 11199:3 11201:1 11204:1 11224:1 11231:1 11233:1 11245:2 11279:1 11280:5 11286:2 11289:1 11303:1 11311:6 11344:2 11347:1 11386:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11746:2 11755:1 11757:4 11791:2 11833:1 11847:1 11849:2 11870:1 11896:1 11935:1 11945:2 11988:1 12002:4 12043:1 12075:1 12085:1 12103:5 12126:1 12181:5 12252:1 12273:2 12300:2 12408:2 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12644:1 12701:3 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:2 13243:1 13285:1 13293:1 13362:1 13375:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:1 13555:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:1 13860:1 13929:1 13937:1 13995:2 14003:1 14019:1 14020:2 14024:1 14036:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14186:1 14198:1 14228:1 14239:1 14243:1 14298:1 14304:1 14305:5 14316:5 14368:1 14392:1 14443:2 14496:2 14503:1 14529:2 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:1 15354:1 15371:1 15376:2 15386:1 15388:4 15402:1 15412:1 15420:5 15428:1 15470:5 15500:1 15563:1 15594:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:1 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15966:1 15988:4 15996:1 16029:5 16031:1 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16181:1 16222:2 16266:1 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16720:1 16726:2 16769:1 16799:1 16801:3 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:5 17110:1 17175:1 17180:1 17186:2 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17547:2 17554:1 17566:1 17578:1 17676:1 17726:1 17752:1 17761:1 17784:1 17816:5 17839:1 17872:1 17901:1 17911:1 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18126:1 18158:1 18167:3 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:3 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18439:2 18444:1 18459:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:2 18917:1 19002:1 19013:1 19036:1 19046:1 19052:1 19056:1 19060:1 19064:1 19135:5 19146:1 19156:1 19167:1 19183:1 19189:1 19209:1 19222:1 19224:1 19240:1 19249:1 19263:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19409:1 19421:1 19480:2 19498:1 19507:1 19515:2 19526:1 19541:1 19553:1 19554:1 19601:3 19605:1 19616:1 19654:2 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19831:1 19853:1 19908:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20147:1 20157:1 20160:1 20170:1 20219:1 20298:1 20335:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:1 20535:2 20547:1 20611:1 20630:1 20647:4 20682:2 20713:1 20766:1 20788:1 20812:1 20827:1 20842:1 20868:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:1 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21258:2 21267:1 21271:1 21292:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21473:1 10 11:3 13:1 37:2 85:1 89:1 96:1 133:1 174:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 570:1 650:1 676:1 740:1 742:1 786:2 787:1 812:1 898:1 914:1 939:1 974:2 990:2 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:1 1217:1 1225:1 1238:1 1258:1 1275:1 1280:1 1284:3 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1418:1 1419:1 1422:3 1445:1 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:3 1640:1 1643:1 1667:2 1677:1 1732:1 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2125:2 2167:1 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2523:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:3 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2973:1 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3298:1 3302:1 3306:1 3314:2 3317:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3621:1 3655:1 3672:2 3805:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 4001:5 4015:1 4085:1 4104:4 4106:1 4184:2 4190:1 4193:1 4234:4 4240:1 4250:2 4257:2 4288:1 4297:1 4298:1 4319:1 4326:1 4345:1 4348:3 4360:1 4369:1 4425:5 4431:1 4458:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4775:1 4809:1 4826:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5199:1 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5336:2 5375:2 5382:3 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5497:1 5510:1 5540:1 5565:637 5590:1 5616:1 5634:1 5645:2 5844:1 5845:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:1 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:1 6822:1 6835:1 6849:1 6864:1 6874:2 6883:3 6894:1 6917:2 6926:1 6930:1 6943:3 6960:1 7024:1 7050:1 7084:1 7089:1 7093:2 7102:2 7127:2 7137:2 7154:1 7192:1 7221:1 7277:1 7313:1 7336:1 7403:1 7430:1 7472:1 7490:1 7505:1 7510:2 7635:2 7636:1 7666:1 7688:1 7720:1 7744:1 7756:1 7763:1 7777:1 7794:1 7823:2 7828:1 7855:1 7856:1 7862:1 7885:2 7968:1 7991:1 8034:1 8077:1 8082:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8320:1 8333:1 8341:8 8372:3 8440:1 8449:2 8520:1 8545:1 8599:2 8611:3 8612:2 8634:1 8650:1 8723:1 8748:1 8787:1 8803:1 8823:1 8934:1 8944:1 8958:1 8978:1 8981:1 9014:1 9059:1 9093:1 9103:1 9112:1 9121:1 9141:2 9217:1 9230:1 9242:5 9283:1 9303:9 9341:1 9414:2 9437:1 9481:1 9486:2 9508:1 9632:1 9681:2 9696:1 9697:1 9711:5 9735:1 9789:1 9801:1 9831:1 9853:3 9862:1 9863:1 9875:3 9899:1 9900:2 9907:1 9918:1 10047:1 10068:2 10087:2 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10687:2 10786:1 10789:1 10814:8 10823:1 10840:1 10843:2 10889:1 10908:2 10919:1 10932:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:1 11199:3 11201:1 11204:1 11224:1 11231:1 11233:1 11245:2 11279:1 11280:5 11286:2 11289:1 11303:1 11311:7 11344:2 11347:1 11386:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11746:2 11755:1 11757:4 11791:2 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11988:1 12002:4 12043:1 12075:1 12085:1 12103:5 12126:1 12181:5 12252:1 12273:2 12300:2 12408:2 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12644:1 12701:3 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:1 12862:1 12897:1 12952:1 13041:1 13048:1 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:2 13243:1 13285:1 13293:1 13362:1 13370:1 13375:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:1 13555:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:1 13860:1 13929:1 13937:1 13995:2 14003:1 14019:1 14020:2 14024:1 14036:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14186:1 14198:1 14228:1 14239:1 14243:1 14298:1 14304:1 14305:5 14316:5 14368:1 14392:1 14443:2 14496:2 14503:1 14529:2 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:2 15354:1 15371:1 15376:2 15386:1 15388:4 15400:1 15402:1 15412:1 15420:5 15428:1 15470:5 15500:1 15509:1 15563:1 15588:1 15594:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:1 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15966:1 15988:4 15996:1 16029:5 16031:1 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16173:1 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16720:1 16726:2 16769:1 16789:1 16799:1 16801:3 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:5 17110:1 17175:1 17180:1 17186:2 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17547:2 17554:1 17566:1 17578:1 17676:1 17726:1 17752:1 17761:1 17784:1 17816:5 17839:1 17872:1 17901:1 17911:1 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18126:1 18158:1 18167:3 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:4 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18439:2 18444:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:2 18917:1 19002:1 19013:1 19036:1 19046:1 19052:1 19056:1 19060:1 19064:1 19135:5 19146:1 19156:1 19167:1 19183:1 19189:1 19209:1 19222:2 19224:1 19240:1 19249:1 19263:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19409:1 19421:1 19461:1 19468:1 19480:2 19498:1 19507:1 19515:2 19526:1 19541:1 19553:1 19554:1 19601:3 19605:1 19616:1 19654:2 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19784:1 19797:1 19820:1 19831:1 19853:1 19908:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20147:1 20157:1 20160:1 20170:1 20219:1 20298:1 20335:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:2 20535:2 20547:1 20611:1 20630:1 20647:4 20682:2 20713:1 20766:1 20788:1 20812:1 20827:1 20842:1 20868:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:2 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21258:2 21267:1 21271:1 21292:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21473:1 10 11:3 13:1 22:1 37:2 85:1 89:1 96:2 133:1 174:1 253:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 570:1 650:1 676:1 740:1 742:1 782:1 786:3 787:1 812:2 898:1 914:1 939:1 967:1 974:2 990:2 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:2 1217:1 1225:1 1238:1 1258:1 1275:1 1280:1 1284:3 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:3 1445:1 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:3 1640:1 1643:1 1667:2 1677:1 1732:1 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2125:3 2167:1 2172:1 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3298:1 3302:1 3306:1 3314:2 3317:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:5 3504:1 3534:2 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3805:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 4001:5 4015:1 4085:1 4104:4 4106:1 4184:3 4190:1 4193:1 4234:4 4240:1 4250:2 4257:2 4288:1 4297:1 4298:1 4319:1 4326:1 4345:1 4348:3 4360:1 4369:1 4425:5 4431:1 4434:1 4445:1 4458:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5199:2 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5336:2 5345:1 5375:2 5382:3 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:1 5510:1 5540:1 5565:681 5590:1 5616:1 5634:1 5645:2 5844:1 5845:1 5848:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:8 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:1 6822:1 6835:1 6849:1 6864:1 6874:2 6883:3 6894:1 6917:2 6926:1 6930:1 6943:3 6960:1 7024:1 7050:1 7084:1 7089:1 7093:2 7102:2 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7635:2 7636:1 7666:2 7688:1 7720:1 7744:1 7756:1 7763:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7885:2 7968:1 7991:1 8034:1 8077:1 8082:1 8084:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8320:1 8333:1 8341:8 8372:3 8440:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:2 8634:1 8650:1 8723:1 8732:1 8748:1 8787:1 8803:1 8823:1 8934:1 8944:1 8958:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9141:2 9144:1 9217:1 9230:1 9242:5 9283:1 9303:9 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9508:2 9560:1 9632:1 9681:2 9696:1 9697:1 9711:5 9735:1 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:3 9899:1 9900:2 9907:1 9918:1 9933:1 10047:1 10068:2 10087:2 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10676:1 10687:2 10786:1 10789:1 10814:8 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:1 11199:3 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:5 11286:2 11289:1 11303:1 11311:7 11344:2 11347:1 11386:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11746:2 11755:1 11757:4 11791:2 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11988:1 12002:4 12043:1 12075:1 12085:1 12103:5 12126:1 12181:5 12252:1 12273:2 12300:2 12396:1 12408:2 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12644:1 12701:3 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:1 12862:1 12897:1 12952:1 13041:1 13048:2 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:2 13243:1 13285:1 13293:1 13362:1 13370:1 13375:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:1 13555:1 13630:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13995:2 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14443:2 14496:2 14503:1 14529:2 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:2 15325:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:1 15402:1 15412:1 15420:5 15428:1 15470:5 15500:1 15509:1 15563:1 15588:1 15594:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:1 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15966:2 15988:4 15996:1 16029:5 16031:1 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16173:1 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16561:1 16720:1 16726:2 16769:1 16789:2 16799:1 16801:3 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:5 17110:1 17175:1 17180:1 17186:2 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17547:2 17554:1 17566:1 17578:1 17676:1 17726:1 17752:1 17761:1 17784:1 17816:5 17839:1 17872:1 17901:1 17911:1 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:8 18039:1 18094:1 18126:1 18158:1 18167:3 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:4 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19135:5 19146:1 19156:1 19167:1 19183:1 19189:2 19209:1 19222:2 19224:1 19240:1 19249:1 19263:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19409:1 19421:1 19461:1 19468:1 19480:2 19492:1 19498:1 19507:1 19515:2 19526:1 19535:1 19541:1 19553:1 19554:1 19601:3 19605:1 19616:1 19654:3 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19908:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:1 20170:1 20219:1 20298:1 20311:1 20335:1 20366:1 20369:1 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:2 20535:2 20547:1 20611:1 20630:1 20647:4 20682:2 20713:1 20766:1 20788:1 20812:1 20827:1 20842:1 20868:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:2 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21258:2 21267:1 21271:1 21292:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21473:1 10 11:3 13:1 22:1 37:2 85:1 89:1 96:2 133:1 174:1 253:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 566:1 570:1 650:1 676:1 740:1 742:1 782:1 786:3 787:1 812:2 898:1 914:1 939:1 967:1 974:2 990:2 1036:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:2 1217:1 1225:1 1238:1 1258:1 1275:1 1280:1 1284:3 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:3 1445:1 1472:1 1540:2 1543:1 1551:1 1583:1 1584:1 1638:3 1640:1 1643:1 1667:2 1677:1 1732:1 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2125:3 2167:1 2172:1 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:1 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3298:2 3302:1 3306:1 3314:2 3317:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:6 3504:1 3534:2 3548:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3782:1 3805:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 4001:5 4015:1 4027:1 4085:1 4104:4 4106:1 4184:3 4190:1 4193:1 4234:4 4240:1 4250:2 4257:2 4288:1 4297:1 4298:1 4319:1 4326:1 4345:1 4348:3 4360:1 4369:1 4425:5 4431:1 4434:1 4445:1 4458:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5336:2 5345:1 5375:2 5382:3 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:1 5510:1 5540:1 5565:714 5590:1 5616:1 5634:1 5645:2 5777:1 5844:1 5845:1 5848:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:9 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:2 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:1 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:1 6874:2 6883:3 6894:1 6917:2 6926:1 6930:1 6943:3 6960:1 7024:1 7050:1 7084:1 7089:1 7093:2 7102:2 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7635:2 7636:1 7666:2 7688:1 7720:1 7744:1 7756:1 7763:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7885:2 7968:1 7991:1 8034:1 8077:1 8082:1 8084:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8320:1 8333:1 8341:9 8372:3 8440:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:2 8634:1 8650:1 8723:1 8732:1 8748:1 8787:1 8803:1 8823:1 8934:1 8944:1 8958:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9141:2 9144:1 9217:1 9230:1 9242:5 9283:1 9303:10 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9508:2 9560:1 9632:1 9681:2 9696:1 9697:1 9711:6 9735:1 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:3 9899:1 9900:2 9907:1 9918:1 9933:1 10047:1 10068:2 10087:2 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10562:1 10676:1 10687:2 10786:1 10789:1 10814:9 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:1 11199:3 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:6 11286:2 11289:1 11303:1 11304:1 11311:8 11344:2 11347:1 11386:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:2 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11988:1 12002:4 12043:1 12075:1 12085:1 12103:5 12126:1 12181:5 12252:1 12273:2 12300:2 12396:1 12408:2 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12644:1 12701:3 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:2 12862:1 12897:1 12952:1 13041:1 13048:2 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:2 13243:1 13285:1 13293:1 13362:1 13370:2 13375:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:1 13555:1 13630:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:2 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14443:2 14496:2 14503:1 14529:2 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:2 15325:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:1 15402:1 15412:1 15420:5 15428:1 15470:6 15500:1 15509:1 15563:1 15588:1 15594:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:1 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:1 15962:1 15966:2 15988:4 15996:1 16029:5 16031:1 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16173:1 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16561:1 16720:1 16726:2 16769:1 16789:3 16799:1 16801:3 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:5 17110:1 17175:1 17180:1 17186:2 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17547:2 17554:1 17566:1 17578:1 17676:1 17726:1 17752:1 17761:1 17768:1 17784:1 17816:5 17839:1 17872:1 17901:1 17911:2 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:9 18039:1 18094:1 18126:1 18158:1 18167:3 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:4 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19135:5 19146:1 19156:1 19167:1 19183:2 19189:2 19209:1 19222:2 19224:1 19240:1 19249:1 19263:1 19298:1 19327:2 19336:1 19346:1 19389:1 19395:1 19400:1 19409:1 19421:1 19461:1 19468:1 19480:2 19492:1 19498:1 19507:1 19515:2 19526:1 19535:1 19541:1 19553:1 19554:1 19601:3 19605:1 19616:1 19654:3 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:1 20170:1 20219:1 20298:1 20311:1 20335:1 20366:1 20369:2 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:2 20535:2 20547:1 20611:1 20630:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21109:2 21136:1 21167:1 21173:2 21179:1 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21473:1 10 11:3 13:1 22:1 37:2 85:1 89:1 96:2 133:1 174:1 253:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 566:2 570:1 650:1 676:1 740:1 742:1 782:1 786:3 787:1 812:2 898:1 914:1 939:1 967:1 974:2 990:2 1007:1 1036:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:2 1217:1 1225:1 1238:1 1258:1 1275:1 1280:1 1284:3 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:3 1445:1 1472:1 1540:2 1543:1 1545:1 1551:1 1583:1 1584:1 1638:3 1640:1 1643:1 1667:2 1677:1 1683:1 1732:1 1777:1 1813:1 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2102:1 2125:3 2167:1 2172:1 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:2 2295:1 2300:2 2341:2 2355:1 2373:4 2391:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3277:1 3298:2 3302:1 3306:1 3314:2 3317:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:7 3504:1 3534:2 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3782:1 3805:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 3976:1 4001:5 4015:1 4027:1 4085:1 4104:4 4106:1 4184:3 4187:1 4190:1 4193:1 4212:1 4234:4 4240:1 4250:2 4257:2 4288:1 4297:1 4298:1 4319:2 4326:1 4345:1 4348:3 4360:1 4369:1 4371:1 4425:5 4431:1 4434:1 4445:1 4458:1 4477:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4799:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5336:2 5345:1 5375:2 5382:3 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:1 5510:1 5540:1 5565:748 5590:1 5616:1 5634:1 5645:2 5757:1 5777:1 5844:1 5845:1 5848:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5990:1 6064:1 6069:1 6078:1 6081:10 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:3 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:3 6874:2 6883:3 6894:1 6917:2 6926:1 6930:1 6943:3 6960:2 7024:1 7050:1 7082:1 7084:1 7089:1 7093:2 7102:2 7103:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7618:1 7635:2 7636:1 7666:3 7688:1 7720:1 7744:1 7756:1 7763:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:1 7885:2 7968:1 7991:1 8034:1 8077:1 8082:2 8084:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8317:1 8320:1 8333:1 8341:10 8372:3 8401:1 8440:2 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:2 8634:1 8650:1 8723:1 8732:1 8748:1 8787:1 8803:1 8823:1 8934:2 8944:1 8958:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9141:2 9144:1 9217:1 9230:1 9242:5 9283:1 9303:11 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9508:2 9528:1 9560:1 9632:1 9681:2 9696:1 9697:1 9711:7 9735:1 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:3 9885:1 9899:1 9900:2 9907:1 9918:1 9933:1 9935:1 9961:1 10047:1 10068:2 10087:2 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10345:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10676:1 10687:2 10698:1 10722:1 10786:1 10789:1 10814:10 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:1 11199:3 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:7 11286:2 11289:1 11303:1 11304:1 11311:9 11344:2 11347:2 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:2 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11988:1 12002:5 12043:1 12075:1 12085:1 12103:5 12126:1 12181:5 12252:1 12273:2 12300:2 12396:1 12408:2 12442:1 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12623:1 12644:1 12695:1 12701:3 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:3 12862:1 12897:1 12952:1 13041:1 13048:2 13064:1 13080:2 13091:1 13128:4 13202:1 13217:1 13233:2 13243:1 13268:1 13285:1 13293:1 13362:1 13370:2 13375:1 13419:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:1 13555:1 13630:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14443:2 14496:2 14503:1 14529:2 14532:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:2 15325:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:1 15402:1 15412:1 15420:5 15428:1 15470:7 15500:1 15509:1 15563:1 15588:1 15594:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:1 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:2 15962:1 15966:2 15988:4 15996:1 16029:5 16031:2 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16173:1 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16366:1 16472:1 16548:1 16549:1 16561:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:3 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:5 17110:1 17175:1 17180:1 17186:2 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17547:2 17554:1 17566:1 17578:1 17676:2 17694:1 17726:1 17752:1 17761:1 17768:1 17784:1 17816:5 17839:1 17872:1 17901:1 17911:3 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:10 18039:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:3 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:4 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19135:5 19146:1 19156:1 19167:1 19183:3 19189:2 19209:1 19222:2 19224:1 19240:1 19249:1 19263:1 19298:1 19327:2 19336:2 19346:1 19389:1 19395:1 19400:2 19409:1 19421:1 19461:1 19468:1 19480:2 19492:1 19498:1 19507:1 19515:2 19526:1 19535:1 19541:1 19553:1 19554:1 19601:3 19605:1 19616:1 19654:3 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:1 20170:1 20199:1 20219:1 20298:1 20311:1 20335:1 20343:2 20366:1 20369:3 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:2 20535:2 20547:1 20611:1 20630:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:1 21109:2 21136:1 21167:2 21171:1 21173:2 21179:1 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 37:2 85:1 89:1 96:2 133:1 174:1 253:1 260:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 531:1 566:2 570:1 576:1 650:1 676:1 740:1 742:1 782:1 786:3 787:1 812:2 898:2 914:1 939:1 967:1 974:2 990:2 1007:1 1036:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:2 1217:1 1225:1 1238:2 1258:1 1275:1 1280:1 1284:3 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1540:2 1543:1 1545:1 1551:1 1583:1 1584:1 1638:4 1640:1 1643:1 1667:2 1677:1 1683:1 1732:1 1777:1 1813:1 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2102:1 2125:3 2167:1 2172:1 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:2 2295:1 2300:2 2341:2 2355:1 2368:1 2373:4 2391:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3298:2 3302:1 3306:1 3314:2 3317:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:9 3504:1 3534:2 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3673:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 3976:1 4001:5 4015:1 4027:1 4085:1 4104:4 4106:1 4173:1 4184:3 4187:1 4190:1 4193:1 4212:1 4234:4 4240:1 4250:2 4257:2 4288:1 4297:1 4298:1 4319:2 4326:1 4345:1 4348:3 4360:1 4369:1 4371:1 4388:1 4425:5 4431:1 4434:1 4445:1 4458:1 4477:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4799:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 4975:1 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5334:1 5336:2 5345:1 5375:2 5382:4 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:1 5510:1 5520:1 5540:1 5565:773 5590:1 5616:1 5630:1 5634:1 5645:2 5757:1 5777:1 5832:1 5844:1 5845:1 5848:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5990:1 6064:2 6068:1 6069:1 6078:1 6081:12 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:3 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6476:1 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:3 6874:2 6883:4 6894:1 6917:2 6926:1 6930:1 6943:3 6960:2 7024:1 7030:1 7050:1 7082:1 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7618:2 7635:2 7636:1 7666:3 7688:1 7689:1 7720:1 7744:1 7756:1 7763:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7968:1 7991:1 8034:1 8077:1 8082:2 8084:1 8104:1 8145:2 8172:1 8194:1 8212:1 8221:1 8258:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8440:2 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:3 8634:1 8650:1 8718:1 8723:1 8732:1 8748:1 8787:1 8803:1 8823:1 8934:2 8944:2 8951:1 8958:1 8977:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9141:3 9144:1 9217:1 9230:1 9242:5 9283:1 9303:13 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9632:1 9681:2 9696:1 9697:1 9711:9 9735:1 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:4 9885:1 9899:1 9900:2 9907:1 9918:1 9933:1 9935:1 9961:1 10047:1 10068:3 10087:2 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10332:1 10342:1 10345:1 10372:3 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10660:1 10676:1 10687:2 10698:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:1 11199:4 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11311:10 11344:2 11347:2 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11964:1 11988:1 12002:5 12021:1 12043:2 12075:1 12085:1 12103:5 12114:1 12126:1 12181:5 12252:1 12273:2 12300:2 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12543:1 12546:1 12576:1 12579:1 12610:1 12623:1 12644:1 12695:1 12701:4 12709:2 12718:1 12728:1 12752:2 12756:1 12782:1 12786:2 12841:3 12862:1 12877:1 12897:1 12952:1 13041:1 13048:2 13064:1 13080:2 13091:1 13128:5 13202:1 13217:1 13233:2 13243:1 13268:1 13285:1 13293:1 13362:1 13370:2 13375:1 13419:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:1 13555:1 13630:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14443:2 14496:2 14503:1 14529:2 14532:1 14549:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:2 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:2 15325:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:1 15402:1 15412:1 15420:5 15428:1 15470:9 15500:1 15509:1 15563:1 15578:1 15588:1 15594:1 15599:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:2 15962:1 15966:2 15988:4 15996:1 16029:5 16031:2 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16173:1 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16366:1 16472:1 16529:1 16548:1 16549:1 16561:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:3 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17097:5 17110:1 17175:1 17180:1 17186:2 17216:1 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:2 17694:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:5 17839:1 17872:2 17901:1 17911:3 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:12 18039:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:4 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:4 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18456:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19135:5 19146:1 19156:1 19167:1 19183:3 19189:2 19209:1 19222:2 19224:1 19228:1 19240:1 19249:1 19263:1 19298:1 19316:1 19327:2 19336:2 19346:1 19389:1 19395:1 19400:2 19409:1 19421:1 19461:1 19468:1 19480:2 19492:1 19498:1 19507:1 19515:2 19526:1 19535:1 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:4 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:2 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:1 20170:1 20199:1 20219:1 20298:1 20311:1 20330:1 20335:1 20343:2 20366:1 20369:3 20371:1 20393:1 20397:1 20402:1 20417:1 20524:1 20525:2 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:1 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:1 21109:2 21136:1 21167:2 21171:1 21173:2 21179:1 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:2 85:1 89:1 96:2 109:1 133:1 174:1 253:1 260:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 531:1 566:2 570:1 576:1 589:1 650:1 676:1 740:1 742:1 782:1 786:4 787:1 812:2 819:1 898:2 914:1 939:1 967:1 974:2 990:2 1007:1 1036:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:2 1217:1 1225:1 1238:2 1258:1 1275:1 1280:1 1284:3 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1540:2 1543:1 1545:1 1551:1 1583:1 1584:1 1638:4 1640:1 1643:1 1667:2 1677:1 1683:2 1732:1 1777:1 1813:1 1815:1 1816:1 1824:1 1825:1 1831:1 1841:1 1845:2 1847:1 1858:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2102:1 2125:3 2167:1 2172:2 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:2 2295:1 2300:2 2341:2 2355:1 2368:1 2373:4 2391:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3298:2 3302:1 3306:1 3314:2 3317:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:9 3504:1 3534:2 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3673:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 3976:1 4001:5 4015:1 4027:1 4085:1 4104:4 4106:1 4173:1 4184:4 4187:2 4190:1 4193:1 4212:1 4234:5 4240:1 4250:2 4257:2 4288:1 4297:1 4298:2 4319:2 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4425:5 4431:1 4434:1 4445:1 4458:1 4477:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:1 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4799:1 4800:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 4975:1 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5334:1 5336:2 5345:1 5375:2 5382:4 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:1 5506:1 5510:1 5520:1 5540:1 5565:815 5590:1 5616:1 5630:1 5634:1 5645:2 5757:1 5777:1 5832:1 5844:1 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6081:12 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:3 6242:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6476:1 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:4 6874:2 6883:4 6894:1 6917:2 6926:1 6930:1 6943:3 6960:2 7024:1 7030:1 7050:1 7082:1 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7618:2 7635:2 7636:1 7642:1 7666:3 7688:1 7689:1 7720:1 7744:1 7756:1 7763:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7968:1 7991:1 8034:1 8077:1 8082:2 8084:1 8104:1 8138:1 8145:2 8172:1 8194:1 8212:1 8221:1 8237:1 8258:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8440:2 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:3 8634:1 8650:1 8718:1 8723:1 8732:1 8748:1 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8951:1 8958:1 8969:1 8977:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:5 9283:1 9303:13 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9627:1 9632:1 9681:2 9696:1 9697:1 9711:9 9735:1 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:2 9907:1 9917:1 9918:1 9933:1 9935:1 9961:1 10011:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:1 10372:3 10412:1 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10647:1 10660:1 10676:1 10687:2 10698:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 10975:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:2 11199:4 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11311:10 11344:3 11347:2 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11964:1 11988:1 12002:6 12003:1 12021:1 12043:2 12075:1 12085:1 12103:5 12114:1 12126:1 12181:5 12252:1 12273:2 12300:2 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12543:1 12546:1 12576:1 12579:1 12610:1 12623:1 12644:1 12695:1 12701:4 12709:2 12718:1 12728:1 12752:2 12756:1 12766:1 12782:1 12786:2 12841:3 12862:1 12877:1 12897:1 12952:1 13003:1 13035:1 13041:1 13048:2 13064:2 13080:2 13091:1 13128:5 13202:1 13217:1 13233:2 13243:1 13268:1 13285:1 13293:1 13354:1 13362:1 13370:2 13375:1 13419:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13671:1 13674:1 13697:3 13705:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14398:1 14443:2 14496:2 14503:1 14529:2 14532:1 14549:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:2 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:2 15325:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:5 15428:1 15470:9 15488:1 15500:1 15505:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15599:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:2 15962:1 15966:2 15988:4 15996:1 16029:5 16031:2 16035:1 16052:1 16054:1 16068:1 16081:1 16137:1 16173:2 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16356:1 16366:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:1 16561:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:3 16804:1 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17089:1 17097:5 17110:1 17175:1 17180:1 17186:2 17216:1 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:2 17694:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:5 17839:1 17872:2 17901:1 17911:3 17920:2 17972:1 17976:1 17978:3 17987:1 18007:1 18019:1 18038:12 18039:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:4 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:4 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18456:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:1 19020:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19135:5 19146:2 19156:1 19167:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19249:1 19263:1 19268:1 19298:1 19316:1 19327:2 19336:2 19346:2 19389:1 19395:1 19400:2 19409:1 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:2 19520:1 19526:1 19535:2 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:4 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19762:1 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:2 20009:1 20016:1 20038:1 20056:1 20061:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:1 20199:1 20219:1 20298:1 20311:1 20330:1 20335:1 20343:2 20366:1 20369:3 20371:1 20393:2 20397:1 20402:1 20417:1 20524:1 20525:3 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:2 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:1 21109:2 21136:1 21167:2 21171:1 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:2 85:1 89:1 96:2 109:1 133:1 174:1 218:1 253:1 260:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 531:1 566:2 570:1 576:1 589:1 650:1 676:1 740:1 742:1 782:1 786:4 787:2 812:2 819:1 898:2 914:1 939:1 967:1 974:2 990:2 1007:2 1036:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1195:1 1205:2 1210:2 1217:1 1225:1 1238:2 1258:1 1275:1 1280:1 1284:4 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1540:2 1543:1 1545:1 1551:1 1583:1 1584:1 1638:4 1640:1 1643:1 1667:2 1677:1 1683:2 1732:1 1777:1 1813:1 1815:1 1816:1 1824:1 1825:2 1831:2 1841:1 1845:2 1847:1 1858:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2102:1 2125:3 2132:1 2167:1 2172:2 2175:1 2176:1 2178:1 2180:1 2183:2 2227:1 2276:1 2287:2 2295:1 2300:2 2341:2 2355:1 2368:1 2373:4 2391:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2903:1 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3298:2 3301:1 3302:1 3306:1 3311:1 3314:2 3317:1 3320:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:9 3504:1 3534:2 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3673:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 3976:1 3996:1 4001:5 4015:1 4027:1 4059:1 4085:1 4104:4 4106:1 4173:1 4184:4 4187:2 4190:1 4193:1 4212:2 4234:5 4240:1 4250:2 4257:2 4288:1 4297:1 4298:2 4319:2 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4425:5 4431:1 4434:1 4445:1 4458:1 4477:1 4493:2 4505:1 4518:1 4560:1 4589:2 4592:1 4598:1 4611:2 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4799:1 4800:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 4975:1 5010:1 5105:1 5127:1 5148:1 5163:1 5165:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5334:1 5336:2 5345:1 5375:2 5382:4 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:850 5590:1 5616:1 5630:1 5634:1 5645:2 5757:1 5777:1 5832:1 5844:1 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6081:12 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:3 6242:1 6269:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6476:1 6477:1 6515:1 6518:2 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:4 6866:1 6874:2 6883:4 6894:1 6917:2 6926:1 6930:1 6943:3 6960:2 7024:1 7030:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7618:2 7635:2 7636:1 7642:1 7666:3 7688:1 7689:1 7720:1 7744:1 7756:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7968:1 7991:1 8034:1 8077:1 8082:2 8084:1 8104:1 8138:1 8145:2 8172:1 8194:1 8212:1 8221:1 8237:1 8258:1 8261:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8440:2 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:3 8634:1 8650:1 8718:1 8723:1 8732:1 8748:1 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8950:1 8951:1 8958:1 8969:1 8977:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:5 9283:1 9303:13 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9627:1 9632:1 9681:2 9696:1 9697:1 9711:9 9735:1 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:2 9907:2 9917:1 9918:1 9933:1 9935:1 9961:1 10011:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10412:1 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10647:1 10660:1 10676:1 10687:2 10698:1 10721:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 10975:1 11016:1 11021:1 11079:1 11088:2 11092:1 11116:1 11171:2 11199:4 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11311:12 11344:3 11347:2 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11964:1 11988:1 12002:8 12003:1 12021:1 12043:2 12075:1 12085:1 12103:5 12114:1 12126:1 12181:5 12252:1 12273:2 12300:2 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12644:1 12695:1 12701:4 12709:2 12718:1 12719:1 12728:1 12752:2 12756:1 12766:1 12782:1 12786:2 12841:3 12862:1 12866:1 12877:1 12889:1 12897:1 12952:1 13003:1 13035:1 13041:1 13048:2 13064:2 13080:2 13091:1 13128:5 13202:1 13217:1 13233:2 13243:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13671:1 13674:1 13696:1 13697:3 13705:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14398:1 14443:2 14496:2 14503:1 14529:2 14532:1 14549:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:2 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:2 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:3 15325:1 15344:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:5 15428:1 15470:9 15488:1 15500:1 15505:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15599:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:2 15962:1 15966:2 15988:4 15996:1 16029:5 16031:2 16035:2 16052:1 16054:1 16068:1 16081:1 16137:1 16173:2 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:1 16561:1 16666:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:3 16804:1 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17049:1 17089:1 17097:5 17110:1 17175:1 17180:1 17186:2 17216:1 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:2 17694:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:5 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17955:1 17972:1 17976:1 17978:3 17981:1 17987:1 18007:1 18019:1 18038:12 18039:1 18089:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:4 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:5 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18456:1 18459:1 18462:1 18494:2 18511:3 18516:1 18545:5 18555:1 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:1 19020:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19106:1 19135:5 19146:2 19156:1 19167:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19346:2 19389:1 19395:1 19400:2 19409:1 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:2 19520:1 19526:1 19535:2 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:4 19663:1 19667:2 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20056:1 20061:1 20071:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:1 20175:1 20199:1 20219:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20397:1 20402:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:2 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:2 21136:1 21167:2 21171:1 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:2 85:1 89:1 96:2 109:1 133:1 174:1 218:1 253:1 260:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 531:1 546:1 566:2 570:1 576:1 589:1 650:1 676:1 740:1 742:1 782:1 786:4 787:2 812:2 819:1 898:2 914:1 939:1 967:1 974:3 990:2 1007:2 1036:1 1040:3 1041:1 1076:1 1090:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:3 1210:2 1217:1 1225:1 1238:2 1258:1 1275:1 1280:1 1284:4 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1540:2 1543:1 1545:1 1551:1 1583:1 1584:1 1638:4 1640:1 1643:1 1667:2 1677:1 1683:2 1732:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1847:1 1858:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2102:1 2125:3 2132:1 2167:1 2172:2 2175:1 2176:2 2178:1 2180:1 2183:2 2227:1 2276:1 2287:2 2295:1 2300:2 2303:1 2341:3 2355:1 2368:1 2373:4 2391:1 2477:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2903:1 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3298:2 3301:1 3302:1 3306:1 3311:1 3314:2 3317:1 3320:1 3325:1 3344:1 3383:1 3484:1 3491:1 3493:9 3504:1 3534:2 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:2 3673:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:2 3888:1 3890:1 3930:1 3932:1 3959:1 3963:2 3974:1 3976:2 3996:1 4001:5 4015:1 4027:1 4059:1 4085:1 4104:4 4106:1 4173:1 4184:4 4187:2 4190:1 4193:1 4212:2 4234:5 4240:1 4250:2 4257:2 4288:1 4297:1 4298:2 4319:3 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4425:5 4431:1 4434:1 4445:1 4458:1 4477:1 4493:2 4505:1 4518:1 4537:1 4560:1 4589:2 4592:1 4598:1 4611:2 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4799:1 4800:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 4975:1 5010:1 5105:1 5127:1 5148:2 5163:1 5165:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5334:1 5336:2 5345:1 5375:2 5382:4 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:876 5590:1 5616:1 5630:1 5634:1 5645:2 5757:1 5777:1 5832:1 5844:2 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6081:12 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:3 6242:1 6269:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6476:1 6477:1 6515:1 6518:3 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:4 6866:1 6874:2 6883:4 6894:1 6917:2 6926:1 6930:1 6943:3 6960:2 7024:1 7030:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:2 7618:2 7635:2 7636:1 7642:1 7666:3 7688:1 7689:1 7720:1 7744:1 7756:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7968:1 7991:1 8034:1 8077:1 8082:3 8084:1 8104:1 8138:1 8145:2 8172:1 8194:1 8212:1 8221:1 8237:1 8258:1 8261:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8440:3 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:3 8634:1 8650:1 8718:1 8723:1 8732:1 8748:1 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8950:1 8951:1 8958:1 8969:1 8977:1 8978:1 8981:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:5 9249:1 9283:1 9303:13 9341:1 9344:1 9414:2 9437:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9627:1 9632:1 9681:2 9696:1 9697:1 9711:9 9735:2 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:2 9907:2 9917:1 9918:1 9933:1 9935:1 9961:1 10011:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10412:1 10414:1 10428:1 10434:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10647:1 10660:1 10676:1 10687:2 10698:1 10721:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 10975:1 11016:1 11021:2 11079:1 11088:2 11092:1 11116:1 11171:2 11199:4 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11311:12 11344:3 11347:3 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11657:1 11666:2 11670:1 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11964:1 11988:1 12002:9 12003:1 12021:1 12043:2 12075:1 12085:1 12103:5 12114:1 12126:1 12181:5 12252:1 12273:2 12274:1 12300:2 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12644:1 12695:1 12701:4 12709:2 12718:1 12719:1 12728:2 12752:2 12756:1 12766:1 12782:1 12786:2 12841:3 12862:1 12866:1 12877:1 12889:1 12897:1 12952:1 13003:1 13035:1 13041:1 13048:2 13064:2 13080:3 13091:1 13128:5 13202:1 13217:1 13233:2 13243:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13705:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14368:1 14392:1 14398:1 14443:2 14496:2 14503:1 14529:3 14532:1 14549:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:2 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:1 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:2 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:4 15307:3 15325:1 15344:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:5 15428:1 15470:9 15488:1 15500:1 15505:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15599:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:2 15962:1 15966:2 15988:4 15996:1 16029:5 16031:3 16035:2 16052:1 16054:1 16068:1 16081:1 16137:1 16173:2 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:1 16561:1 16666:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:3 16804:1 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17040:1 17049:1 17089:1 17097:5 17110:1 17175:1 17180:1 17186:2 17216:1 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:3 17694:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:5 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17955:1 17972:1 17976:1 17978:3 17981:1 17987:1 18007:1 18019:1 18038:12 18039:1 18089:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:4 18169:1 18182:1 18184:1 18205:1 18271:1 18317:1 18326:1 18351:5 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18456:1 18459:1 18462:1 18494:3 18511:3 18516:1 18545:5 18555:2 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:2 19020:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19106:1 19135:5 19146:2 19156:1 19167:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19346:2 19389:1 19395:1 19400:2 19409:1 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:3 19520:1 19526:1 19535:2 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:4 19663:1 19667:3 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20056:1 20061:1 20071:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:1 20175:1 20199:1 20219:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20397:1 20402:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:2 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:2 21136:1 21167:2 21171:1 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:2 85:1 89:1 96:2 109:1 133:1 174:1 218:1 253:1 260:1 316:1 318:5 330:3 335:1 348:1 383:1 397:1 450:1 458:1 460:1 531:1 546:1 566:2 570:1 576:1 589:1 644:1 650:1 676:1 740:1 742:1 782:1 786:4 787:2 812:2 819:1 898:2 914:1 939:1 967:1 974:3 990:3 1007:2 1036:1 1040:4 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:3 1210:2 1217:1 1225:1 1238:2 1258:1 1275:1 1280:1 1284:4 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1540:2 1543:1 1545:1 1551:1 1583:1 1584:1 1638:4 1640:1 1643:1 1667:2 1677:1 1683:2 1732:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1847:1 1858:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2083:1 2100:1 2102:1 2125:3 2132:1 2167:1 2172:2 2175:1 2176:2 2178:1 2180:1 2183:2 2227:1 2276:1 2287:2 2295:1 2300:2 2303:1 2341:3 2355:1 2368:1 2373:4 2391:1 2477:1 2485:1 2491:3 2518:1 2523:1 2549:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:2 2687:4 2698:1 2708:2 2714:3 2768:1 2797:1 2800:1 2815:1 2891:2 2903:1 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3121:1 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3298:2 3301:1 3302:1 3306:1 3311:1 3314:2 3317:2 3320:1 3325:1 3344:1 3383:1 3484:2 3491:1 3493:9 3504:1 3534:2 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3655:1 3672:3 3673:1 3721:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:3 3888:1 3890:1 3930:1 3932:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:5 4015:1 4027:1 4059:1 4085:1 4104:4 4106:1 4173:1 4184:4 4187:2 4190:1 4193:1 4212:2 4234:5 4240:1 4250:2 4257:2 4288:1 4297:1 4298:2 4319:3 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4425:5 4431:1 4434:1 4445:1 4458:1 4477:1 4493:2 4505:1 4518:1 4537:1 4560:1 4589:2 4592:1 4598:1 4611:2 4629:1 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:1 4759:1 4775:1 4799:1 4800:1 4809:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4948:1 4964:2 4971:5 4975:1 5010:1 5105:1 5127:1 5148:2 5163:1 5165:1 5166:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5277:1 5323:1 5334:1 5336:2 5345:1 5375:2 5382:4 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:891 5590:1 5616:1 5630:1 5634:1 5645:2 5757:1 5777:1 5832:1 5844:2 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6081:12 6102:1 6108:1 6110:1 6142:1 6185:1 6189:1 6198:1 6201:3 6242:1 6269:1 6287:2 6295:1 6318:2 6350:1 6430:2 6433:1 6468:1 6473:2 6476:1 6477:1 6515:1 6518:3 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:1 6864:4 6866:1 6874:2 6883:4 6894:1 6917:2 6926:1 6930:1 6943:3 6960:2 7024:1 7030:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:3 7618:2 7635:2 7636:1 7642:1 7666:3 7688:1 7689:1 7720:1 7744:1 7756:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7968:1 7991:1 8034:1 8077:1 8082:3 8084:1 8100:1 8104:1 8138:1 8145:2 8172:1 8194:1 8212:1 8221:1 8237:1 8258:1 8261:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8440:3 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:3 8634:1 8650:1 8718:1 8723:1 8732:1 8748:2 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8948:1 8950:1 8951:1 8958:1 8969:1 8977:1 8978:1 8981:1 8999:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:5 9249:1 9283:1 9303:13 9341:1 9344:1 9414:2 9437:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9627:1 9632:1 9681:2 9696:1 9697:1 9711:9 9735:2 9789:1 9801:1 9831:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:2 9907:2 9911:1 9917:1 9918:1 9933:1 9935:1 9961:1 10011:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10412:1 10414:1 10428:1 10434:1 10438:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10647:1 10660:1 10676:1 10687:2 10698:1 10721:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10919:1 10932:1 10975:1 11016:1 11021:2 11079:1 11088:2 11092:1 11097:1 11116:1 11171:2 11199:4 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11275:1 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11311:13 11344:3 11347:3 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11640:1 11657:1 11666:2 11670:1 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11896:1 11935:1 11945:2 11964:1 11988:1 12002:9 12003:1 12021:1 12043:2 12072:1 12075:1 12085:1 12103:5 12114:1 12126:1 12181:5 12252:1 12273:2 12274:1 12300:2 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12628:1 12644:1 12695:1 12701:4 12709:2 12718:1 12719:1 12728:2 12752:2 12756:1 12766:1 12782:1 12786:2 12841:3 12859:1 12862:1 12866:1 12877:1 12889:1 12897:1 12952:1 13000:1 13003:1 13032:1 13035:1 13041:1 13048:2 13064:2 13080:3 13091:1 13128:5 13202:1 13217:1 13233:2 13243:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13452:5 13454:1 13464:1 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13705:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:1 13794:2 13860:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:1 14198:1 14228:1 14239:1 14243:1 14258:1 14298:1 14300:1 14304:1 14305:5 14316:5 14341:1 14368:1 14392:1 14398:1 14443:2 14496:2 14503:1 14508:1 14529:3 14532:1 14549:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:2 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:2 14763:1 14767:5 14779:1 14805:1 14809:1 14842:1 14877:2 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:5 15307:3 15325:1 15344:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:5 15428:1 15470:9 15488:1 15500:1 15505:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15599:1 15600:2 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15767:1 15785:5 15786:1 15827:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:1 15958:1 15960:2 15962:1 15966:2 15988:4 15996:1 16029:5 16031:3 16035:2 16052:1 16054:1 16068:1 16081:1 16137:1 16173:2 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:1 16561:1 16666:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:3 16804:1 16810:1 16875:2 16878:1 16888:2 16906:2 16924:1 16963:1 16967:1 17008:1 17040:1 17049:1 17089:1 17097:5 17110:1 17175:1 17180:1 17186:2 17216:1 17286:1 17343:5 17369:5 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:3 17694:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:5 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17955:1 17972:1 17976:1 17978:3 17981:1 17987:1 18007:1 18019:1 18038:12 18039:1 18089:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:4 18169:1 18182:1 18184:1 18205:1 18224:1 18246:1 18271:1 18317:1 18326:1 18351:5 18352:1 18358:1 18362:1 18395:1 18398:1 18407:1 18409:4 18429:1 18434:1 18439:2 18444:1 18456:1 18459:1 18462:1 18494:3 18511:3 18516:1 18545:5 18555:2 18556:2 18569:1 18573:1 18648:1 18666:1 18680:1 18715:1 18740:1 18764:1 18767:1 18771:1 18778:1 18843:3 18900:1 18917:1 19002:1 19004:1 19013:2 19020:1 19036:2 19046:1 19052:1 19056:1 19060:1 19064:1 19075:1 19106:1 19135:5 19146:2 19156:1 19167:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19243:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:1 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:3 19520:1 19526:1 19535:2 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:4 19663:1 19667:3 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20056:1 20061:1 20071:1 20095:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:1 20175:1 20199:1 20219:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20397:1 20402:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20766:1 20782:1 20788:1 20812:1 20827:1 20842:1 20868:2 20871:1 20887:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:2 21136:1 21167:2 21171:1 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:1 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:2 85:1 89:1 96:2 109:1 133:1 174:1 185:1 218:1 224:1 253:1 260:1 315:1 316:1 318:6 330:3 335:2 348:1 383:1 397:1 450:1 458:1 460:1 502:1 531:1 533:1 546:1 566:2 570:1 576:1 589:1 644:1 650:1 676:1 740:1 742:1 782:1 786:4 787:2 812:2 819:1 898:3 914:1 939:1 966:1 967:1 974:3 990:3 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:3 1210:2 1217:1 1225:1 1238:2 1258:1 1275:1 1280:1 1284:4 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1638:4 1640:1 1643:1 1667:2 1677:1 1683:2 1732:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1847:1 1858:1 1861:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2076:1 2083:1 2100:1 2102:1 2125:3 2132:1 2167:1 2172:2 2175:1 2176:2 2178:1 2180:1 2183:2 2209:1 2227:1 2276:1 2287:2 2295:1 2300:2 2303:1 2311:1 2341:3 2355:1 2361:1 2368:1 2373:4 2391:1 2418:1 2472:1 2477:1 2485:1 2491:3 2518:1 2523:1 2535:1 2549:1 2581:1 2587:2 2605:1 2613:1 2638:1 2663:1 2669:1 2684:3 2687:4 2698:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2903:1 2950:1 2973:2 2990:1 3015:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3283:1 3287:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:2 3320:1 3325:1 3344:1 3383:1 3403:1 3447:1 3484:2 3491:1 3493:9 3504:1 3506:1 3534:2 3543:1 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3651:1 3655:1 3672:3 3673:1 3721:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:3 3888:1 3890:1 3930:1 3932:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:6 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4173:1 4181:1 4184:4 4187:2 4190:1 4193:1 4212:2 4213:1 4234:5 4240:1 4250:2 4257:2 4288:1 4297:1 4298:2 4319:3 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4425:6 4431:1 4434:1 4445:2 4458:1 4477:1 4493:2 4505:1 4518:1 4537:1 4560:1 4589:2 4592:1 4598:1 4611:2 4629:2 4638:1 4662:1 4668:1 4669:1 4699:1 4708:1 4710:2 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4923:1 4948:1 4964:2 4971:6 4975:1 5010:1 5024:1 5105:1 5127:1 5148:2 5163:1 5165:1 5166:1 5174:1 5199:3 5212:1 5226:1 5240:1 5256:1 5265:1 5277:1 5323:1 5334:1 5336:2 5345:1 5375:2 5382:4 5405:1 5416:1 5440:1 5454:2 5455:1 5486:1 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:944 5590:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5832:1 5844:2 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6080:1 6081:12 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6198:1 6201:3 6242:1 6269:1 6287:2 6295:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:3 6476:1 6477:1 6515:1 6518:3 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:4 6866:1 6874:2 6883:4 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:3 6960:2 7024:1 7030:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:4 7618:2 7623:1 7635:2 7636:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:1 7744:1 7756:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7968:1 7991:2 8034:1 8060:1 8077:1 8082:3 8084:1 8100:1 8104:1 8138:1 8144:1 8145:2 8172:1 8194:1 8212:1 8221:1 8237:1 8258:1 8261:1 8269:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8440:3 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8611:3 8612:3 8634:1 8650:1 8718:1 8723:1 8732:1 8748:2 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8948:1 8950:2 8951:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:2 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9133:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:6 9249:1 9283:1 9303:13 9341:1 9344:1 9414:2 9437:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9627:1 9632:1 9681:2 9696:1 9697:1 9701:1 9706:1 9711:9 9735:2 9789:1 9801:2 9831:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:2 9907:2 9911:1 9917:2 9918:1 9933:1 9935:1 9961:1 10011:1 10045:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10412:1 10414:1 10428:1 10434:1 10438:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10721:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10909:1 10919:1 10932:1 10975:1 11016:1 11021:2 11079:1 11088:2 11092:1 11097:1 11116:1 11171:2 11182:1 11199:5 11201:1 11204:1 11224:1 11231:1 11233:2 11245:2 11275:1 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11309:1 11311:16 11344:3 11347:3 11359:1 11386:1 11424:1 11491:1 11506:1 11510:1 11538:1 11543:1 11636:1 11640:1 11657:1 11666:2 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:1 12002:10 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:6 12114:1 12126:1 12181:6 12252:1 12273:2 12274:1 12300:2 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:4 12709:2 12718:1 12719:1 12728:2 12752:2 12756:1 12766:1 12782:1 12786:2 12841:3 12859:1 12862:1 12866:1 12877:1 12889:1 12897:1 12952:1 13000:1 13003:1 13032:1 13035:1 13041:1 13048:2 13064:2 13080:3 13091:1 13128:5 13202:1 13217:1 13229:1 13233:2 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13452:6 13454:1 13464:1 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13705:1 13722:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:2 13794:2 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:2 14198:1 14228:1 14239:1 14243:1 14251:1 14258:1 14267:1 14298:1 14300:1 14304:1 14305:6 14316:6 14341:1 14368:1 14392:1 14398:1 14443:2 14496:2 14503:1 14508:1 14529:3 14530:1 14532:1 14549:1 14562:1 14579:1 14580:2 14594:1 14606:1 14638:2 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:2 14751:1 14763:1 14767:6 14779:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:6 15307:3 15325:1 15344:1 15354:1 15371:1 15376:3 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:6 15428:2 15470:9 15488:1 15500:1 15505:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15599:1 15600:2 15604:1 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:1 15767:1 15785:6 15786:1 15827:1 15828:1 15853:2 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:3 15988:4 15996:1 16029:6 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16418:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:1 16561:1 16666:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:4 16804:1 16810:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16963:1 16967:1 16984:1 17008:1 17040:1 17049:1 17089:2 17097:6 17110:2 17175:2 17180:1 17186:2 17216:1 17286:1 17343:6 17369:6 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:6 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17976:1 17978:3 17981:1 17987:1 18007:1 18019:1 18038:12 18039:1 18082:1 18089:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:4 18169:1 18182:1 18184:1 18205:1 18224:1 18246:1 18253:1 18271:1 18300:1 18317:1 18326:1 18351:5 18352:1 18358:1 18362:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18511:3 18516:1 18545:6 18555:2 18556:2 18569:1 18573:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:1 18767:1 18771:1 18778:2 18843:3 18900:1 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19106:1 19135:6 19146:2 19156:1 19167:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19243:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:3 19520:1 19526:1 19535:2 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:5 19663:1 19667:3 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:1 20175:1 20199:1 20219:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20397:1 20402:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20842:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20949:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:3 21136:1 21167:2 21171:1 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:2 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:3 85:1 89:1 96:2 109:1 133:1 174:1 185:1 218:1 224:1 253:1 260:1 315:1 316:1 318:7 330:3 335:2 348:1 383:1 397:1 450:1 458:1 460:1 477:1 502:2 531:1 533:1 546:1 566:2 570:1 576:1 589:1 644:1 650:2 676:1 740:1 742:1 782:1 786:5 787:2 812:3 819:1 898:3 914:1 939:1 966:1 967:1 974:3 990:3 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:4 1210:2 1217:1 1225:2 1238:2 1258:1 1275:1 1280:1 1284:5 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:1 1472:1 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1638:6 1640:1 1643:1 1667:2 1677:1 1683:2 1732:1 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1847:1 1858:1 1861:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2076:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:1 2180:1 2183:2 2209:1 2227:1 2276:1 2287:2 2295:1 2300:2 2303:1 2311:1 2341:3 2355:1 2361:1 2368:1 2373:4 2391:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2605:1 2613:1 2638:1 2663:1 2669:1 2684:3 2687:4 2698:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2903:1 2950:1 2973:2 2990:1 3015:1 3041:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3283:1 3287:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:2 3320:1 3325:1 3344:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:9 3504:1 3506:1 3534:2 3543:1 3548:1 3571:1 3590:1 3606:1 3612:1 3621:1 3651:1 3655:1 3672:3 3673:1 3721:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:3 3888:1 3890:1 3930:2 3932:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:7 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4173:1 4181:1 4184:5 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:5 4240:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:3 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:7 4431:1 4434:1 4445:2 4458:1 4477:1 4493:2 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4629:2 4638:1 4662:1 4668:1 4669:1 4699:2 4708:2 4710:2 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4923:1 4948:1 4964:2 4971:7 4975:1 5010:1 5024:1 5105:1 5127:2 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:3 5212:1 5226:1 5240:1 5256:1 5265:1 5277:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5440:1 5454:2 5455:1 5486:2 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:989 5590:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5832:1 5844:2 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6080:1 6081:12 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6198:1 6201:3 6242:1 6269:1 6287:2 6295:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:4 6476:1 6477:1 6515:1 6518:3 6524:1 6539:2 6581:1 6582:3 6590:1 6602:2 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:4 6866:1 6874:2 6883:4 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:4 6960:2 7024:1 7030:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:2 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7311:1 7313:1 7336:1 7351:1 7403:1 7430:1 7472:1 7479:1 7490:1 7505:1 7510:4 7618:2 7623:1 7635:2 7636:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:1 7727:1 7739:1 7744:1 7756:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7919:1 7968:1 7991:2 8034:2 8060:1 8077:1 8082:3 8084:1 8100:1 8104:1 8138:1 8144:1 8145:2 8172:1 8194:1 8212:1 8221:1 8237:1 8258:1 8261:1 8269:1 8314:1 8317:1 8320:1 8333:1 8341:12 8361:1 8372:3 8401:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:1 8599:2 8610:1 8611:3 8612:3 8634:1 8650:1 8658:1 8718:1 8723:1 8732:1 8748:2 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8948:1 8950:2 8951:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9093:1 9103:1 9112:1 9121:1 9122:1 9133:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:7 9249:1 9283:1 9303:13 9341:1 9344:1 9414:3 9437:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9627:1 9632:1 9681:2 9696:1 9697:1 9701:1 9706:1 9711:9 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:2 9907:2 9911:1 9917:2 9918:1 9933:1 9935:1 9961:1 10011:1 10045:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10412:1 10414:1 10428:1 10434:1 10438:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10721:1 10722:1 10786:1 10789:1 10813:1 10814:12 10823:1 10840:1 10843:2 10889:2 10908:2 10909:1 10919:1 10932:1 10975:1 11016:1 11021:2 11079:1 11088:2 11092:1 11097:1 11116:1 11171:2 11182:1 11199:6 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11275:1 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11309:1 11311:16 11344:4 11347:3 11359:1 11386:1 11424:1 11491:2 11506:1 11510:2 11534:1 11538:1 11543:1 11636:1 11640:1 11656:1 11657:1 11666:2 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11833:1 11847:2 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:1 12002:10 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:7 12114:1 12126:1 12181:7 12252:1 12273:2 12274:1 12300:2 12326:1 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12709:2 12718:1 12719:1 12726:1 12728:2 12752:2 12756:1 12766:1 12782:1 12786:2 12841:3 12859:1 12862:1 12866:1 12877:1 12889:1 12897:1 12933:1 12952:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:3 13091:1 13128:5 13202:1 13217:1 13229:1 13233:2 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13452:7 13454:1 13464:1 13490:1 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13705:1 13722:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13779:2 13794:2 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14139:2 14140:1 14186:2 14198:2 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14298:1 14300:1 14304:1 14305:7 14316:7 14341:1 14368:1 14392:1 14398:1 14437:1 14443:3 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:2 14751:1 14763:1 14767:7 14779:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:1 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:6 15307:3 15316:1 15325:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:7 15428:2 15470:9 15488:1 15500:2 15505:2 15507:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:1 15600:2 15604:1 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:1 15767:1 15785:7 15786:1 15827:1 15828:1 15853:3 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:4 15988:4 15996:1 16029:7 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:1 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16418:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:2 16561:1 16666:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:5 16804:1 16810:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16963:1 16967:1 16984:1 17008:1 17040:1 17049:1 17089:2 17097:7 17110:2 17175:2 17180:1 17186:2 17216:1 17286:1 17343:7 17369:7 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:1 17452:1 17471:1 17480:1 17498:1 17532:1 17547:2 17554:1 17566:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:7 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:12 18039:1 18082:1 18089:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:1 18253:1 18271:1 18300:1 18317:1 18326:1 18351:6 18352:1 18358:1 18362:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18511:3 18516:1 18545:7 18555:2 18556:2 18569:1 18573:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:2 18843:4 18900:1 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19106:1 19135:7 19146:2 19156:2 19167:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19243:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:3 19520:1 19526:1 19535:2 19541:1 19553:2 19554:1 19601:3 19605:1 19616:1 19654:6 19663:1 19667:3 19676:1 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:1 20175:1 20199:1 20219:2 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20397:1 20402:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20751:1 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20842:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20936:1 20949:2 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:3 21136:1 21167:2 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21354:1 21355:1 21369:3 21389:1 21432:1 21436:1 21460:1 21473:1 10 11:3 13:1 22:1 26:1 37:3 85:1 89:1 96:2 109:1 133:1 142:1 174:1 185:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:4 335:2 348:1 383:1 397:1 450:1 458:1 460:1 477:1 502:3 531:1 533:1 546:1 566:2 570:1 576:1 589:1 644:1 650:2 676:1 740:1 742:1 782:1 786:6 787:2 812:3 819:1 898:3 914:1 939:1 966:1 967:1 974:3 990:4 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:4 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:6 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:4 1445:2 1472:1 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1638:6 1640:1 1643:1 1667:2 1677:1 1683:2 1732:2 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1846:1 1847:1 1858:1 1861:1 1873:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2076:1 2078:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:1 2180:1 2183:2 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:2 2303:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2613:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2698:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2903:1 2922:1 2950:1 2973:2 2990:1 3015:1 3041:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3227:2 3231:2 3269:1 3277:2 3283:1 3287:1 3293:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:2 3320:1 3325:1 3344:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:9 3504:1 3506:1 3534:2 3543:1 3548:1 3571:1 3573:1 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3721:1 3722:1 3782:1 3805:1 3817:1 3821:1 3871:1 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4173:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:5 4240:1 4248:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:3 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4445:2 4458:1 4477:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4873:1 4885:1 4903:1 4923:1 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5105:1 5127:2 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:3 5212:1 5226:1 5240:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5440:2 5454:2 5455:1 5486:2 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1037 5590:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5832:1 5844:3 5845:1 5848:2 5850:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6064:2 6068:1 6069:1 6078:1 6080:1 6081:13 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:3 6524:1 6539:3 6581:1 6582:3 6590:1 6602:2 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:4 6866:1 6874:3 6883:4 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 7024:1 7030:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:3 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7311:1 7313:1 7336:1 7351:1 7403:1 7430:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7618:2 7623:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:1 7727:1 7739:1 7744:1 7756:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7919:1 7968:1 7991:2 8034:3 8060:1 8077:1 8082:3 8084:1 8091:1 8100:1 8104:1 8138:1 8144:1 8145:2 8172:1 8192:1 8194:1 8212:1 8221:1 8237:2 8258:1 8261:1 8269:1 8294:1 8314:1 8317:1 8320:1 8333:1 8341:13 8361:1 8372:3 8386:1 8401:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:1 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8718:1 8723:1 8732:1 8748:2 8777:1 8787:1 8803:1 8823:1 8934:2 8944:2 8948:1 8950:2 8951:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9121:1 9122:1 9133:1 9141:3 9142:1 9144:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:14 9341:1 9344:1 9414:3 9437:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9627:1 9632:1 9681:2 9696:1 9697:1 9701:1 9706:1 9709:1 9711:9 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:4 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:2 9918:1 9933:1 9935:1 9961:1 10011:1 10045:1 10047:1 10068:3 10087:2 10095:1 10136:1 10151:1 10194:1 10195:1 10211:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10380:1 10412:1 10414:1 10428:1 10434:1 10438:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10721:1 10722:1 10786:2 10787:1 10789:1 10813:1 10814:13 10823:1 10840:1 10843:2 10889:2 10908:2 10909:1 10919:1 10932:1 10975:1 11016:1 11021:2 11079:1 11088:2 11092:1 11097:1 11116:1 11171:2 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11275:2 11279:1 11280:9 11286:2 11289:1 11303:1 11304:1 11309:1 11311:17 11344:4 11347:3 11359:1 11386:1 11424:1 11441:1 11491:2 11506:1 11510:2 11534:1 11538:1 11543:1 11636:1 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11812:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:1 12002:12 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12252:1 12273:2 12274:1 12300:2 12326:1 12343:1 12378:1 12396:1 12408:2 12442:1 12496:1 12522:1 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12709:2 12718:1 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:2 12862:1 12866:1 12877:1 12889:1 12897:1 12933:1 12952:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:3 13091:1 13128:5 13137:1 13202:1 13217:1 13229:1 13233:2 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13731:1 13735:2 13749:1 13756:1 13760:1 13761:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14134:1 14139:2 14140:1 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14298:1 14300:1 14304:1 14305:8 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:2 14751:1 14763:1 14767:8 14779:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15277:1 15302:6 15307:4 15316:1 15325:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15466:1 15470:9 15488:1 15500:4 15505:2 15507:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:2 15604:1 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:1 15767:1 15785:8 15786:1 15827:1 15828:1 15853:3 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:4 15996:1 16029:8 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16418:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:2 16561:1 16666:1 16720:1 16726:2 16769:1 16779:1 16785:1 16789:3 16799:1 16801:6 16804:1 16810:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16963:1 16967:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17286:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:8 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:13 18039:1 18082:1 18089:1 18090:1 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18300:1 18317:1 18326:1 18351:7 18352:2 18358:1 18362:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18511:3 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18843:4 18900:1 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:1 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19591:1 19601:3 19605:1 19616:1 19654:8 19663:1 19667:3 19676:1 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20280:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20647:4 20682:2 20713:1 20751:2 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20842:1 20864:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20936:1 20949:2 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21432:1 21436:1 21460:1 21473:2 10 1:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:1 174:1 185:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:4 335:2 348:1 383:1 397:1 450:1 458:1 460:1 477:1 502:3 531:1 533:1 546:1 566:2 570:1 576:1 589:1 644:2 650:2 676:1 740:1 742:1 782:1 786:6 787:2 812:3 819:1 898:3 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:4 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:2 1406:1 1418:1 1419:1 1422:5 1424:1 1445:2 1472:1 1475:2 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1638:6 1640:1 1643:1 1667:2 1677:1 1683:2 1732:2 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1846:1 1847:1 1858:1 1861:1 1873:1 1880:1 1891:1 1914:1 1939:1 1964:1 1983:1 2016:1 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:2 2180:1 2183:2 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:2 2303:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2613:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2901:1 2903:1 2922:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3210:1 3227:2 3231:2 3269:1 3273:2 3277:2 3283:1 3287:1 3293:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:3 3320:1 3325:1 3344:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:10 3504:1 3506:1 3534:2 3543:1 3548:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3721:1 3722:1 3782:1 3805:1 3817:1 3821:1 3858:1 3871:1 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4173:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:5 4240:1 4248:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:3 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4862:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5105:1 5127:2 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:3 5212:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:1 5440:2 5454:2 5455:1 5486:2 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1080 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5832:1 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6025:1 6064:3 6068:1 6069:1 6078:1 6080:1 6081:14 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:5 6866:1 6874:3 6883:6 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 7024:1 7030:1 7042:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:3 7103:1 7125:1 7127:2 7137:2 7154:1 7192:1 7221:2 7277:1 7311:1 7313:1 7336:1 7351:1 7403:1 7430:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7618:2 7623:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:1 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:1 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7919:1 7968:1 7991:2 8034:3 8060:1 8067:1 8077:1 8082:3 8084:1 8091:1 8100:1 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8212:1 8221:1 8237:2 8246:1 8258:1 8261:1 8269:1 8294:1 8314:1 8317:1 8320:1 8333:1 8341:14 8361:1 8372:3 8386:1 8401:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8718:1 8723:1 8732:1 8741:1 8748:2 8777:1 8787:1 8803:1 8823:1 8897:1 8934:2 8944:2 8948:1 8950:2 8951:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9117:1 9121:1 9122:1 9133:1 9141:3 9142:2 9143:1 9144:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:15 9341:1 9344:1 9414:3 9427:1 9437:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9606:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:1 9701:1 9706:1 9709:1 9711:10 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9933:1 9935:1 9961:2 10011:1 10039:1 10045:1 10047:1 10068:3 10087:2 10095:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10297:1 10299:1 10312:1 10318:1 10332:1 10342:1 10345:2 10372:3 10380:1 10412:1 10414:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10721:1 10722:1 10786:2 10787:1 10789:1 10813:1 10814:14 10823:1 10840:1 10843:2 10889:2 10908:2 10909:1 10919:2 10932:1 10975:1 10994:2 11016:1 11021:2 11079:1 11088:2 11092:1 11097:1 11116:1 11139:1 11171:2 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11275:2 11279:1 11280:10 11286:2 11289:1 11303:1 11304:1 11309:1 11311:20 11344:4 11347:3 11359:1 11386:1 11424:1 11441:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:2 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11757:4 11791:3 11811:1 11812:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:1 12002:12 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12326:2 12343:1 12350:1 12378:1 12396:1 12408:2 12442:1 12460:1 12496:1 12522:1 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:1 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12709:2 12718:1 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:2 12862:1 12866:1 12877:1 12889:1 12897:1 12933:1 12952:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13128:5 13137:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14134:1 14139:2 14140:1 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:2 14751:1 14763:1 14767:8 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14986:1 14996:1 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15266:1 15277:1 15302:6 15307:4 15316:1 15325:1 15341:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15466:1 15470:10 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:2 15604:1 15605:2 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15827:1 15828:1 15853:3 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:4 15996:1 16029:8 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16418:1 16452:1 16472:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16666:1 16720:1 16726:2 16729:1 16769:1 16779:1 16785:1 16789:3 16799:2 16801:6 16804:1 16810:2 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17286:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17519:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:8 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:14 18039:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18300:1 18317:1 18326:1 18351:7 18352:2 18358:1 18362:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:3 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:1 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:1 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:2 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:1 19498:1 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19591:1 19601:3 19605:1 19616:1 19654:8 19663:1 19667:4 19676:1 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20280:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:2 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20842:1 20864:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20936:2 20949:2 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21049:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:1 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21432:1 21436:1 21460:1 21473:2 10 1:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:1 160:1 174:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:4 335:2 348:1 383:1 397:1 450:1 458:1 460:1 477:1 502:3 531:1 533:1 546:1 566:2 570:1 576:1 589:1 644:2 650:2 676:1 740:1 742:1 782:1 786:6 787:2 812:3 819:1 898:3 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:4 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:3 1406:1 1418:1 1419:1 1422:5 1424:1 1445:2 1472:1 1475:2 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1638:6 1640:1 1643:1 1667:3 1677:1 1683:2 1732:2 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1846:1 1847:1 1858:1 1861:1 1873:1 1880:1 1891:1 1914:1 1939:1 1946:1 1964:1 1983:1 2016:1 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:2 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:2 2303:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2613:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2901:1 2903:1 2922:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3210:1 3227:2 3231:2 3269:1 3273:2 3277:2 3283:1 3287:1 3293:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:3 3320:1 3325:1 3344:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:11 3504:1 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3821:1 3858:1 3871:1 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4140:1 4173:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4248:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:3 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4862:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:1 5440:2 5454:2 5455:1 5486:2 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1113 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5798:1 5832:1 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6025:1 6047:1 6064:3 6068:1 6069:1 6078:1 6080:1 6081:15 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:1 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:6 6866:1 6872:1 6874:3 6883:6 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 7024:1 7030:1 7042:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7192:1 7221:2 7277:1 7311:1 7313:1 7336:1 7351:1 7365:1 7403:1 7430:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7548:1 7618:2 7623:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:2 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7919:1 7968:1 7991:2 8034:3 8060:1 8067:1 8077:1 8082:3 8084:1 8091:1 8100:1 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8212:1 8221:1 8237:2 8246:1 8258:1 8261:1 8269:1 8294:1 8314:1 8317:1 8320:1 8333:1 8341:15 8361:1 8372:3 8386:1 8401:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8718:1 8723:1 8732:2 8741:1 8748:2 8777:1 8787:1 8803:1 8823:1 8897:1 8934:2 8944:2 8948:1 8950:2 8951:1 8953:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:1 9121:1 9122:1 9133:1 9141:3 9142:2 9143:1 9144:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:16 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9606:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:11 9726:1 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9933:1 9935:1 9961:2 10011:1 10039:1 10045:1 10047:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10312:1 10318:1 10319:1 10332:1 10342:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10813:1 10814:15 10823:1 10840:1 10843:2 10845:1 10889:2 10908:2 10909:1 10919:2 10932:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11246:1 11267:1 11275:2 11279:1 11280:11 11286:2 11289:1 11303:1 11304:1 11309:1 11311:20 11344:5 11347:3 11359:1 11386:1 11424:1 11441:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11811:1 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:2 12002:12 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:1 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:2 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12706:1 12709:3 12718:1 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:2 12862:1 12866:1 12877:1 12889:1 12897:1 12933:1 12952:1 12992:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13128:5 13137:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13589:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14134:1 14139:2 14140:1 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:2 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15266:1 15277:1 15302:6 15307:4 15316:1 15325:1 15341:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15466:1 15470:11 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:2 15604:1 15605:3 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15827:1 15828:1 15853:3 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:4 15991:1 15996:1 16029:8 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16408:1 16418:1 16452:1 16472:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16666:1 16671:1 16720:1 16726:2 16729:1 16769:1 16779:1 16785:1 16789:4 16799:3 16801:6 16804:1 16810:2 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17258:1 17286:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:8 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:15 18039:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:1 18300:1 18317:1 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:3 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18611:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:1 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:3 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:2 19498:1 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19654:8 19663:1 19667:4 19676:1 19697:1 19714:1 19716:1 19717:1 19720:1 19721:1 19734:1 19738:1 19739:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20280:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:2 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20842:1 20864:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20936:2 20949:2 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21432:1 21436:1 21460:1 21473:2 10 1:1 4:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:1 160:1 174:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:4 335:2 348:1 357:1 383:1 397:1 450:1 458:1 460:1 477:1 502:3 531:1 533:1 546:1 566:2 570:1 576:1 589:1 603:1 644:2 650:2 676:1 740:1 742:1 782:1 786:6 787:2 812:3 819:2 827:1 898:3 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:4 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1299:1 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:3 1406:1 1418:1 1419:1 1422:5 1424:1 1445:2 1472:1 1475:2 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1638:6 1640:1 1643:1 1667:3 1677:1 1683:2 1732:2 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1846:1 1847:1 1858:1 1861:1 1873:1 1880:1 1891:1 1914:1 1939:1 1946:1 1964:1 1983:1 2016:1 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:2 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:2 2303:1 2305:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2412:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2613:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2901:1 2903:1 2922:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3210:1 3227:2 3231:2 3269:1 3273:2 3277:2 3283:1 3287:1 3293:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:3 3320:1 3325:1 3344:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:11 3504:1 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3820:1 3821:1 3858:1 3871:1 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4140:1 4173:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4248:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:3 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4862:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:1 5440:2 5454:2 5455:1 5486:3 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1136 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5798:1 5832:1 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6025:1 6047:1 6064:3 6068:1 6069:1 6078:1 6080:1 6081:15 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:1 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:6 6866:1 6872:1 6874:3 6883:6 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 7024:1 7030:1 7042:1 7050:1 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7192:1 7221:2 7277:1 7311:1 7313:1 7336:1 7351:1 7365:1 7403:1 7430:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7548:1 7618:2 7623:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:2 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7919:1 7968:1 7991:2 8034:3 8060:1 8067:1 8077:1 8082:3 8084:1 8091:1 8100:2 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8212:1 8221:1 8237:2 8245:1 8246:1 8258:1 8261:1 8269:1 8294:1 8314:1 8317:1 8320:1 8333:1 8341:15 8361:1 8372:3 8386:1 8401:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8718:1 8723:1 8732:2 8741:1 8748:3 8777:1 8787:1 8803:1 8823:1 8897:1 8934:2 8944:2 8948:1 8950:3 8951:1 8953:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:1 9121:1 9122:1 9133:1 9141:3 9142:2 9143:1 9144:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:16 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9450:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9606:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:11 9726:1 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9933:1 9935:1 9961:2 10011:1 10039:1 10045:1 10047:1 10049:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10312:1 10318:1 10319:1 10332:1 10342:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10813:1 10814:15 10823:1 10840:1 10843:2 10845:1 10889:2 10908:2 10909:1 10919:2 10932:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11246:1 11267:1 11275:3 11279:1 11280:11 11286:2 11289:1 11303:1 11304:1 11309:1 11311:20 11344:5 11347:3 11359:1 11386:1 11424:1 11441:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11811:1 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:2 12002:12 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:1 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:2 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12706:1 12709:3 12718:1 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:3 12862:1 12866:1 12877:1 12889:1 12897:1 12933:1 12952:1 12992:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13128:5 13137:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13589:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14124:2 14134:1 14139:2 14140:1 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14471:1 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:3 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15266:1 15277:1 15302:6 15307:4 15316:1 15325:1 15341:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15466:1 15469:1 15470:11 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:2 15604:1 15605:3 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15818:1 15827:1 15828:1 15853:3 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:4 15991:1 15996:1 16029:8 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16408:1 16418:1 16452:1 16472:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16666:1 16671:1 16720:1 16726:2 16729:1 16769:1 16779:1 16785:1 16789:4 16799:3 16801:6 16804:1 16810:2 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17258:1 17286:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:8 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:15 18039:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:1 18300:1 18317:1 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:3 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18611:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:2 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19244:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:3 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:2 19498:1 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19654:8 19663:1 19667:4 19676:1 19697:1 19714:1 19716:1 19717:1 19720:2 19721:1 19734:1 19738:1 19739:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20280:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:2 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20842:1 20864:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20936:2 20949:2 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21432:1 21436:1 21460:1 21473:2 10 1:1 4:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:1 160:1 174:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:4 335:2 348:1 357:1 383:1 397:1 450:1 458:1 460:1 477:1 502:3 531:1 533:1 546:1 566:2 570:1 576:1 589:1 603:1 644:2 650:2 676:1 740:1 742:1 782:1 786:6 787:2 812:3 819:2 827:1 898:3 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:5 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1298:1 1299:1 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:3 1406:1 1418:1 1419:1 1422:5 1424:1 1445:2 1472:1 1475:2 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1638:6 1640:1 1643:1 1667:3 1677:1 1683:2 1732:2 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:2 1841:1 1845:2 1846:1 1847:1 1858:1 1861:1 1873:1 1880:1 1891:1 1914:1 1939:1 1946:1 1964:1 1983:1 2016:1 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:2 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:2 2303:1 2305:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2412:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2613:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2870:1 2891:2 2901:1 2903:1 2922:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3210:1 3227:2 3231:2 3269:1 3273:2 3277:2 3283:1 3287:1 3293:1 3298:2 3301:1 3302:1 3306:1 3311:1 3314:3 3317:3 3320:1 3325:1 3344:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:11 3504:1 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3820:1 3821:1 3858:1 3871:1 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:2 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4059:1 4079:1 4085:1 4095:1 4104:4 4106:1 4140:1 4173:1 4178:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4244:1 4248:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:3 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:1 4862:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:1 5440:2 5454:2 5455:1 5486:3 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1160 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5798:1 5832:1 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6025:1 6047:1 6064:3 6068:1 6069:1 6078:1 6080:1 6081:15 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6430:2 6433:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:1 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:6 6866:1 6872:1 6874:3 6883:6 6894:1 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 7024:1 7030:1 7042:1 7050:2 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7192:1 7221:2 7277:1 7311:2 7313:1 7336:1 7351:1 7365:1 7403:1 7430:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7548:1 7618:2 7623:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:2 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7875:2 7885:2 7913:1 7919:1 7968:1 7980:1 7991:2 8034:3 8060:1 8067:1 8077:1 8082:3 8084:1 8091:1 8100:2 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8212:1 8221:1 8237:2 8245:1 8246:1 8258:1 8261:1 8269:1 8294:1 8314:1 8317:1 8320:1 8333:1 8341:15 8361:1 8372:3 8386:1 8401:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8718:1 8723:1 8732:2 8741:1 8748:3 8777:1 8787:1 8803:1 8823:1 8897:1 8934:2 8944:2 8948:1 8950:3 8951:1 8953:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:2 9121:1 9122:1 9133:1 9139:1 9141:3 9142:2 9143:1 9144:1 9195:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:16 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9450:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9606:1 9612:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:11 9726:1 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9933:1 9935:1 9961:2 10011:1 10039:1 10043:1 10045:1 10047:1 10049:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10312:1 10318:1 10319:1 10332:1 10342:1 10344:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10813:1 10814:15 10823:1 10840:1 10843:2 10845:1 10889:2 10908:2 10909:1 10919:2 10932:1 10972:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11246:1 11267:1 11275:3 11279:1 11280:11 11286:2 11289:1 11303:1 11304:1 11309:1 11311:20 11344:5 11347:3 11350:1 11359:1 11386:1 11424:1 11441:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11811:1 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:2 12002:12 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:2 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:1 12610:1 12614:1 12623:2 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12706:1 12709:3 12711:1 12718:2 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:3 12862:1 12866:1 12877:1 12889:1 12897:1 12933:2 12952:1 12992:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13128:5 13137:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13589:1 13630:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14001:1 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14117:1 14124:2 14134:1 14139:2 14140:1 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14471:1 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:3 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15266:1 15277:1 15302:6 15307:4 15316:1 15325:1 15341:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15466:1 15469:1 15470:11 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:2 15604:1 15605:3 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15818:1 15827:1 15828:1 15853:3 15856:2 15857:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:4 15991:1 15996:1 16029:8 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16408:1 16418:1 16452:1 16472:1 16511:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16665:1 16666:1 16671:1 16720:1 16726:2 16729:1 16769:1 16779:1 16785:1 16789:4 16799:3 16801:6 16804:1 16810:2 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17258:1 17286:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17676:3 17694:1 17715:1 17726:1 17752:1 17761:1 17768:1 17784:2 17816:8 17823:1 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:15 18039:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:1 18300:1 18317:1 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:3 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18611:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 19002:1 19004:1 19013:2 19020:1 19036:3 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:2 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19244:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:3 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:2 19498:1 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19654:8 19663:1 19667:4 19676:1 19697:1 19714:1 19716:1 19717:1 19720:3 19721:1 19734:1 19738:1 19739:1 19750:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19942:1 19974:3 20009:1 20016:1 20038:1 20044:1 20046:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20280:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:2 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20842:1 20864:1 20868:2 20871:1 20877:1 20887:1 20891:1 20933:1 20936:2 20949:2 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21417:1 21432:1 21436:1 21460:1 21473:2 10 1:1 4:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:1 160:1 174:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:4 335:2 348:1 357:1 383:1 397:1 450:1 458:1 460:1 477:1 502:3 531:1 533:2 546:1 566:2 570:1 576:1 589:1 603:1 644:2 650:2 676:1 740:1 742:1 770:1 782:1 786:6 787:2 812:3 819:2 827:1 898:3 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:5 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1298:1 1299:1 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1386:2 1399:3 1406:1 1418:1 1419:1 1422:5 1424:1 1445:2 1472:1 1475:2 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1637:1 1638:6 1640:1 1643:1 1667:4 1677:1 1683:2 1719:1 1732:2 1772:1 1777:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1831:3 1841:1 1845:2 1846:1 1847:1 1858:1 1861:1 1873:1 1880:1 1891:1 1914:1 1939:1 1946:1 1964:1 1983:1 2016:1 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:2 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:2 2303:1 2305:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2412:1 2418:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2613:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2842:1 2870:1 2891:2 2901:1 2903:1 2922:1 2943:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3079:1 3106:3 3121:1 3124:1 3140:1 3150:4 3186:1 3210:1 3227:2 3231:2 3269:1 3273:2 3277:2 3282:1 3283:1 3287:1 3293:1 3298:2 3301:2 3302:1 3306:1 3311:1 3314:4 3317:3 3320:1 3325:1 3344:1 3365:1 3383:1 3403:1 3406:1 3447:1 3484:2 3491:1 3493:11 3504:1 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3676:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3820:1 3821:1 3858:1 3871:1 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:3 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4053:1 4059:1 4079:1 4085:1 4095:1 4097:1 4104:4 4106:1 4140:1 4173:1 4178:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4244:1 4248:1 4250:2 4257:2 4277:1 4288:1 4297:1 4298:2 4319:4 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:2 4862:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:1 5440:2 5454:2 5455:1 5486:3 5487:1 5492:1 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1200 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5757:1 5777:1 5798:1 5832:1 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5933:1 5960:1 5963:1 5990:1 6025:1 6047:1 6064:3 6068:1 6069:1 6078:1 6080:1 6081:15 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6370:1 6430:2 6433:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:1 6640:1 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:6 6866:1 6872:1 6874:3 6883:6 6894:2 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 6978:2 6984:1 7024:1 7030:1 7042:1 7050:2 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7192:1 7221:2 7277:1 7311:2 7313:1 7336:1 7351:1 7365:1 7373:1 7403:1 7430:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7548:1 7618:2 7623:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:3 7777:1 7794:2 7823:2 7828:1 7855:1 7856:1 7862:1 7870:1 7875:2 7885:2 7913:1 7919:1 7968:1 7980:1 7991:2 8034:3 8060:1 8067:1 8077:1 8082:4 8084:1 8091:1 8100:2 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8203:1 8212:1 8221:1 8237:2 8245:1 8246:1 8258:1 8261:1 8269:2 8294:1 8314:1 8317:1 8320:1 8333:1 8341:15 8361:1 8372:3 8386:1 8401:2 8419:1 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8718:1 8723:1 8732:2 8741:1 8748:3 8777:1 8787:1 8803:1 8823:1 8897:1 8934:2 8944:2 8948:1 8950:3 8951:1 8953:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:2 9121:1 9122:1 9133:1 9139:1 9141:3 9142:2 9143:1 9144:1 9195:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:16 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9450:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9592:1 9606:1 9612:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:11 9726:1 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9933:1 9935:1 9961:2 10011:1 10039:1 10043:1 10045:1 10047:1 10049:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10312:1 10318:1 10319:1 10332:1 10342:1 10344:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10806:2 10813:1 10814:15 10823:1 10840:1 10843:2 10845:1 10889:2 10908:3 10909:1 10919:2 10932:1 10972:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:2 11245:2 11246:1 11267:1 11275:3 11279:1 11280:11 11286:2 11289:1 11303:1 11304:1 11309:1 11311:22 11344:5 11347:4 11350:1 11359:1 11386:1 11424:1 11441:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11811:1 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11964:1 11988:2 12002:13 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:2 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:2 12610:1 12614:1 12623:2 12625:1 12628:1 12644:1 12649:1 12672:1 12695:1 12701:5 12706:1 12709:3 12711:1 12718:2 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:3 12862:1 12866:1 12877:1 12889:1 12897:1 12933:2 12952:1 12992:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13128:5 13137:1 13186:1 13196:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:1 13267:1 13268:1 13285:1 13293:1 13307:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13559:1 13589:1 13630:1 13642:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13725:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13929:1 13937:1 13971:1 13995:3 14001:1 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14117:1 14124:2 14134:1 14139:2 14140:1 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14314:1 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14471:1 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:3 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:1 15218:1 15225:1 15247:2 15266:1 15277:1 15302:6 15307:4 15316:1 15325:1 15341:1 15344:1 15354:2 15371:1 15376:4 15386:1 15388:4 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15452:1 15466:1 15469:1 15470:11 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:2 15604:1 15605:4 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15818:1 15827:1 15828:1 15853:3 15856:2 15857:2 15924:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:4 15991:1 15996:1 16029:8 16031:3 16035:2 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16279:1 16293:2 16356:1 16366:1 16368:1 16408:2 16418:1 16452:1 16472:1 16511:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16665:1 16666:1 16671:1 16720:1 16726:2 16729:1 16769:1 16779:1 16785:1 16789:4 16799:3 16801:6 16804:1 16810:2 16814:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17098:1 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17258:1 17286:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17676:4 17694:1 17715:1 17726:1 17751:1 17752:1 17761:1 17768:1 17784:2 17816:8 17823:2 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:1 18038:15 18039:1 18081:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:1 18300:1 18317:1 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:4 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:3 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18611:1 18648:1 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 19002:1 19004:1 19013:2 19020:1 19036:4 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:2 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19244:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:3 19336:3 19345:1 19346:2 19389:1 19395:1 19400:2 19409:2 19421:1 19461:2 19468:1 19480:2 19492:2 19498:2 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19654:8 19663:1 19667:4 19676:1 19697:1 19714:1 19716:1 19717:1 19720:3 19721:1 19734:1 19738:1 19739:1 19750:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19939:1 19942:1 19974:3 20009:1 20016:1 20037:1 20038:1 20044:1 20046:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20280:1 20298:1 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20469:1 20524:1 20525:3 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:2 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20839:1 20842:1 20864:1 20868:2 20871:1 20877:2 20887:1 20891:1 20933:1 20936:2 20949:2 20952:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21417:1 21432:1 21436:1 21460:1 21473:2 10 1:1 4:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:2 160:1 174:1 176:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:5 335:2 348:1 357:1 383:1 397:1 450:1 458:1 460:1 476:1 477:1 502:3 531:1 533:2 546:1 566:2 570:1 576:1 589:1 603:1 644:2 650:2 676:1 740:1 742:1 770:1 782:1 786:6 787:2 812:3 819:2 827:1 898:4 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1029:1 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:5 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1298:1 1299:1 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1383:1 1386:2 1389:1 1399:4 1406:1 1418:1 1419:1 1422:7 1424:1 1445:2 1472:1 1475:2 1477:1 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1637:1 1638:6 1640:1 1643:1 1667:4 1677:1 1683:2 1695:1 1719:1 1732:2 1772:1 1777:1 1807:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1830:1 1831:3 1841:1 1845:2 1846:1 1847:1 1856:1 1858:1 1861:1 1873:1 1875:1 1880:1 1881:1 1891:1 1914:1 1939:1 1946:1 1964:1 1983:1 2016:2 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2112:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:3 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:3 2303:1 2305:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2412:1 2418:1 2429:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2607:1 2613:1 2618:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2696:1 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2842:1 2870:1 2891:2 2901:1 2903:1 2922:1 2943:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3079:1 3106:3 3121:1 3124:1 3140:1 3150:5 3186:1 3210:1 3227:3 3231:2 3269:1 3273:2 3277:2 3282:1 3283:1 3287:1 3293:1 3298:2 3301:2 3302:1 3306:1 3311:1 3314:4 3317:3 3320:1 3325:1 3344:1 3365:1 3383:1 3403:1 3406:1 3447:1 3463:1 3484:2 3491:1 3493:11 3504:2 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3676:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3820:1 3821:1 3858:1 3871:2 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:4 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4053:1 4059:1 4079:1 4085:1 4095:1 4097:1 4102:1 4104:6 4106:1 4140:1 4173:1 4178:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4244:1 4248:1 4250:3 4257:2 4277:1 4288:1 4297:1 4298:2 4319:5 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4480:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:2 4844:1 4862:1 4872:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5043:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:1 5425:1 5440:2 5454:2 5455:1 5486:3 5487:1 5492:2 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1240 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5680:1 5716:1 5745:1 5757:1 5777:1 5798:1 5832:2 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5909:1 5933:1 5960:1 5963:1 5990:1 6025:1 6047:1 6064:3 6068:1 6069:1 6078:1 6080:1 6081:15 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6370:1 6430:3 6433:1 6467:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:2 6640:2 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6767:1 6768:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:7 6866:1 6872:1 6874:3 6883:6 6894:2 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 6978:3 6984:2 7024:1 7030:1 7042:1 7050:2 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7173:1 7192:1 7221:2 7277:1 7311:2 7313:1 7336:1 7351:1 7365:1 7373:1 7403:1 7430:1 7435:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7524:1 7548:1 7618:2 7623:1 7634:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:3 7777:1 7794:2 7804:1 7823:2 7828:1 7855:1 7856:1 7862:1 7870:1 7875:2 7885:2 7913:1 7919:1 7921:1 7968:1 7980:1 7991:2 7999:1 8034:3 8060:1 8067:1 8077:1 8082:4 8084:1 8091:1 8100:2 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8203:1 8212:1 8221:2 8237:2 8245:1 8246:1 8258:1 8261:1 8269:2 8294:1 8314:1 8317:1 8320:1 8333:1 8341:15 8361:1 8372:3 8386:1 8401:2 8419:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8666:1 8718:1 8723:1 8732:2 8741:1 8748:3 8777:1 8787:1 8803:1 8823:1 8880:1 8897:1 8934:2 8944:2 8948:1 8950:5 8951:1 8953:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:2 9121:1 9122:1 9133:1 9139:1 9141:3 9142:2 9143:1 9144:1 9195:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:16 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9450:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9589:1 9592:1 9606:1 9612:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:11 9726:1 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9927:1 9933:1 9935:1 9961:2 10011:1 10039:1 10043:1 10045:1 10047:1 10049:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10312:1 10318:1 10319:1 10332:1 10342:1 10344:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10662:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10806:3 10813:1 10814:15 10823:1 10840:2 10843:2 10845:1 10889:2 10908:3 10909:1 10919:2 10932:1 10972:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:3 11242:1 11245:2 11246:1 11267:1 11275:3 11279:1 11280:11 11286:2 11287:1 11289:2 11299:1 11303:1 11304:1 11309:1 11311:22 11344:5 11347:5 11350:1 11359:1 11386:1 11424:2 11441:1 11444:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11729:1 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11811:1 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11954:1 11964:1 11988:2 12002:14 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:2 12525:1 12536:1 12543:1 12546:1 12576:1 12579:1 12587:2 12610:1 12614:1 12623:3 12625:1 12628:1 12644:1 12649:1 12662:1 12672:1 12695:1 12701:5 12706:1 12709:3 12711:1 12718:2 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:3 12862:1 12866:1 12877:1 12889:1 12897:1 12933:2 12952:1 12992:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13128:5 13137:1 13186:2 13196:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:2 13267:1 13268:1 13285:1 13293:1 13307:1 13331:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13559:1 13589:1 13630:1 13642:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13725:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13916:1 13929:1 13937:1 13971:1 13995:3 14001:1 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14117:1 14124:2 14134:1 14139:2 14140:2 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14314:1 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14468:1 14471:1 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14620:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:3 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:2 15218:1 15225:1 15247:2 15266:1 15277:1 15296:1 15302:7 15307:4 15316:1 15325:1 15341:1 15344:1 15349:1 15354:2 15371:1 15376:4 15386:1 15388:6 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15452:1 15466:1 15469:1 15470:11 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:3 15604:1 15605:4 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15818:1 15827:1 15828:1 15853:3 15856:3 15857:3 15924:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:6 15991:1 15996:1 16027:1 16029:8 16031:4 16035:3 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16272:1 16279:1 16293:2 16295:1 16356:1 16366:1 16368:1 16373:1 16408:2 16418:1 16452:1 16468:1 16472:1 16511:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16574:1 16665:1 16666:1 16671:1 16720:1 16726:2 16729:1 16748:1 16769:1 16779:1 16785:2 16789:4 16799:3 16801:6 16804:1 16810:2 16814:1 16830:1 16863:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17098:1 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17219:1 17258:1 17286:1 17308:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:1 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17626:1 17676:4 17694:1 17715:1 17726:1 17751:2 17752:1 17757:1 17761:1 17768:1 17784:2 17811:1 17816:8 17823:2 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:2 18038:15 18039:1 18056:1 18081:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:1 18300:1 18317:2 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:6 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:4 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18588:1 18611:1 18637:1 18648:2 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 19002:1 19004:2 19013:2 19020:1 19036:4 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:2 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19244:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:4 19336:3 19345:1 19346:2 19361:1 19389:1 19395:1 19400:2 19409:2 19414:1 19421:1 19461:2 19468:1 19480:2 19492:2 19498:2 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19642:1 19654:8 19663:1 19667:4 19676:1 19697:2 19714:1 19716:1 19717:1 19720:3 19721:1 19734:1 19738:1 19739:1 19750:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19939:1 19942:1 19974:3 20009:2 20016:1 20037:1 20038:1 20044:1 20046:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20140:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20241:1 20280:1 20298:2 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20461:1 20469:1 20524:1 20525:3 20528:1 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:3 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20839:1 20842:1 20864:1 20868:2 20871:1 20877:2 20887:1 20891:1 20933:1 20936:2 20949:3 20952:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21417:1 21432:1 21436:1 21460:1 21473:2 10 1:1 4:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:2 160:1 174:1 176:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:8 330:5 335:2 347:1 348:1 357:1 383:1 397:1 450:1 455:1 458:1 460:1 476:1 477:1 502:3 531:1 533:2 546:1 566:2 570:1 576:1 589:1 603:1 644:2 650:2 676:1 740:1 742:1 770:1 782:1 786:6 787:2 812:3 819:2 827:1 898:4 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1029:1 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1175:1 1195:1 1205:5 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1298:1 1299:1 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1383:1 1386:2 1389:1 1399:5 1406:1 1418:1 1419:1 1422:7 1424:1 1445:2 1472:1 1475:2 1477:1 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1637:1 1638:6 1640:1 1643:1 1667:4 1677:1 1683:2 1695:1 1719:1 1732:2 1772:1 1777:1 1807:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1830:1 1831:3 1841:1 1845:2 1846:1 1847:1 1856:1 1858:1 1861:1 1873:1 1875:1 1880:1 1881:1 1891:1 1914:1 1939:1 1946:1 1964:1 1983:1 2016:2 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2112:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:3 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:3 2303:1 2305:1 2311:1 2341:4 2355:1 2361:1 2368:1 2373:4 2391:1 2412:1 2418:1 2429:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2607:1 2613:1 2618:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2696:1 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2842:1 2870:1 2891:2 2901:1 2903:1 2922:1 2943:1 2950:1 2973:2 2990:1 3015:1 3017:1 3039:1 3041:1 3058:1 3079:1 3106:3 3121:1 3124:1 3140:1 3150:5 3186:1 3210:1 3227:3 3231:2 3269:1 3273:2 3277:2 3282:1 3283:1 3287:1 3293:1 3298:2 3301:2 3302:1 3306:1 3311:1 3314:4 3317:3 3320:1 3325:1 3344:1 3365:1 3383:1 3403:1 3406:1 3447:1 3463:1 3484:2 3491:1 3493:12 3504:2 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:4 3673:1 3676:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3820:1 3821:1 3858:1 3871:2 3880:4 3888:1 3890:1 3927:1 3930:2 3932:1 3948:1 3959:2 3963:2 3974:1 3976:4 3982:1 3996:1 4001:8 4015:1 4027:1 4050:1 4053:1 4059:1 4079:1 4085:1 4095:1 4097:1 4102:1 4104:6 4106:1 4140:1 4173:1 4178:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4244:1 4248:1 4250:3 4257:2 4277:1 4288:1 4297:1 4298:2 4319:5 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4405:1 4425:8 4431:1 4434:1 4444:1 4445:2 4458:1 4477:1 4480:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:2 4844:1 4862:1 4872:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:8 4975:1 5010:1 5024:1 5043:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:2 5425:1 5440:2 5454:2 5455:1 5486:3 5487:1 5492:2 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1249 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5680:1 5716:1 5745:1 5757:1 5777:1 5798:1 5832:2 5844:3 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5909:1 5933:1 5960:1 5963:1 5990:1 6025:1 6036:1 6047:1 6064:4 6068:1 6069:1 6078:1 6080:1 6081:16 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6370:1 6430:3 6433:1 6467:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:2 6640:2 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6767:1 6768:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:7 6866:1 6872:2 6874:3 6883:6 6894:2 6897:1 6907:1 6917:2 6923:1 6926:1 6930:1 6943:5 6960:2 6978:3 6984:2 7024:1 7030:1 7042:1 7050:2 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7173:1 7174:1 7192:1 7221:2 7277:1 7311:2 7313:1 7336:1 7351:1 7365:1 7373:1 7403:1 7430:1 7435:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7524:1 7548:1 7618:2 7623:1 7634:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:1 7760:1 7763:1 7767:1 7773:3 7777:1 7794:2 7804:1 7823:2 7828:1 7855:1 7856:1 7862:1 7870:1 7875:2 7885:2 7913:1 7919:1 7921:1 7968:1 7980:1 7991:2 7999:1 8034:3 8060:1 8067:1 8077:1 8082:4 8084:1 8091:1 8100:2 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8203:1 8212:1 8221:2 8237:2 8245:1 8246:1 8258:1 8261:1 8269:2 8294:1 8314:1 8317:1 8320:1 8333:1 8341:16 8361:1 8372:3 8386:1 8401:2 8419:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8666:1 8718:1 8723:1 8732:2 8741:1 8748:3 8777:1 8787:1 8803:1 8823:1 8880:1 8897:2 8934:2 8944:2 8948:1 8950:5 8951:1 8953:1 8958:1 8969:1 8977:1 8978:1 8981:2 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:2 9121:1 9122:1 9133:1 9139:1 9141:3 9142:2 9143:1 9144:1 9195:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:17 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9450:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9560:1 9589:1 9592:1 9606:1 9612:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:12 9726:2 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9927:1 9933:1 9935:1 9961:2 10011:1 10039:1 10043:1 10045:1 10047:1 10049:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10311:1 10312:1 10318:1 10319:1 10332:1 10342:1 10344:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:1 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10662:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10806:3 10813:1 10814:16 10823:1 10840:2 10843:2 10845:1 10889:2 10908:3 10909:1 10919:2 10932:1 10972:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:3 11242:1 11245:2 11246:1 11267:1 11275:3 11279:1 11280:12 11286:2 11287:1 11289:2 11299:1 11303:1 11304:1 11309:1 11311:22 11344:5 11347:5 11350:1 11359:1 11386:1 11424:2 11441:1 11444:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11729:1 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11798:1 11811:1 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11954:1 11964:1 11988:2 12002:14 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:8 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:2 12525:1 12536:1 12543:1 12546:1 12576:2 12579:1 12587:2 12610:1 12614:1 12623:3 12625:1 12628:1 12644:1 12649:1 12662:1 12672:1 12695:1 12701:5 12706:1 12709:3 12711:1 12718:2 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:3 12862:1 12866:1 12877:1 12889:1 12897:1 12933:2 12952:1 12992:1 13000:1 13003:1 13032:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13115:1 13128:5 13137:1 13186:2 13196:1 13202:1 13217:1 13229:1 13233:2 13240:1 13243:2 13267:1 13268:1 13285:1 13293:1 13307:1 13331:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:8 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13559:1 13589:1 13630:1 13642:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13725:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13916:1 13929:1 13937:1 13971:1 13995:3 14001:1 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14117:1 14124:2 14134:1 14139:2 14140:2 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14314:1 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14468:1 14471:1 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14620:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:3 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:2 15218:1 15225:1 15247:2 15266:1 15277:1 15296:1 15302:7 15307:4 15316:1 15325:1 15341:2 15344:1 15349:1 15354:2 15371:1 15376:4 15386:1 15388:6 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15452:1 15466:1 15469:1 15470:12 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:3 15604:1 15605:4 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15818:1 15827:1 15828:1 15853:3 15856:3 15857:3 15924:1 15927:1 15948:2 15958:1 15960:3 15962:1 15966:5 15988:6 15991:1 15996:1 16027:1 16029:8 16031:4 16035:3 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16272:1 16279:1 16293:2 16295:1 16356:1 16366:1 16368:1 16373:1 16408:2 16418:1 16424:1 16452:1 16465:1 16468:1 16472:1 16511:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16574:1 16665:1 16666:1 16671:1 16720:1 16726:2 16729:1 16748:1 16769:1 16779:1 16785:2 16789:4 16799:3 16801:6 16804:1 16810:2 16814:1 16824:1 16830:1 16863:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:1 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:8 17098:1 17110:2 17175:2 17180:1 17186:2 17198:1 17216:1 17219:1 17258:1 17286:1 17308:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:2 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17626:1 17676:4 17694:1 17715:1 17726:1 17751:2 17752:1 17757:1 17761:1 17768:1 17784:2 17811:1 17816:8 17823:2 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:2 18038:16 18039:1 18056:1 18081:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:2 18300:1 18317:2 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:6 18429:2 18434:1 18439:3 18444:1 18454:1 18456:1 18459:1 18462:1 18494:3 18503:1 18511:4 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18588:1 18611:1 18637:1 18648:2 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 18981:1 19002:1 19004:2 19013:2 19020:1 19036:4 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:2 19135:8 19146:2 19156:2 19167:1 19175:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19244:1 19249:1 19263:1 19267:1 19268:1 19298:1 19316:1 19327:5 19336:3 19345:1 19346:2 19361:1 19389:1 19395:1 19400:2 19409:2 19414:1 19421:1 19461:2 19468:1 19480:2 19492:2 19498:2 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19642:1 19654:8 19663:1 19667:4 19676:1 19677:1 19697:2 19714:1 19716:1 19717:1 19720:3 19721:1 19734:1 19738:1 19739:1 19750:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19939:1 19942:1 19974:3 19979:1 20009:2 20016:1 20037:1 20038:1 20044:1 20046:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20140:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20241:1 20280:1 20298:2 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20461:1 20469:1 20524:1 20525:3 20528:1 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:3 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20839:1 20842:1 20864:1 20868:2 20871:1 20877:2 20887:1 20891:1 20933:1 20936:2 20949:3 20952:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21389:1 21417:1 21432:1 21436:1 21460:1 21473:2 10 1:1 4:1 11:3 13:1 22:1 26:2 37:3 85:1 89:1 96:2 109:1 133:1 142:2 160:1 174:1 176:1 185:1 208:1 218:1 224:1 253:1 260:1 315:1 316:1 318:9 330:5 335:2 347:1 348:1 357:1 383:1 397:1 450:1 455:1 458:1 460:1 476:1 477:1 502:3 531:1 533:2 546:1 566:2 570:1 576:1 584:1 589:1 603:1 644:2 650:2 676:1 740:1 742:1 770:1 782:1 786:6 787:2 812:3 819:2 827:1 898:4 914:1 932:1 939:1 966:1 967:1 974:3 990:4 1007:2 1029:1 1036:1 1040:5 1041:1 1076:1 1090:1 1093:1 1095:1 1105:1 1139:1 1143:1 1175:1 1195:1 1205:5 1210:2 1217:1 1225:2 1238:2 1258:1 1259:1 1275:1 1280:1 1284:7 1298:1 1299:1 1314:1 1315:1 1324:1 1347:2 1352:1 1364:2 1383:1 1386:2 1389:1 1399:5 1406:1 1418:1 1419:1 1422:8 1424:1 1445:2 1472:1 1475:2 1477:1 1501:1 1540:2 1543:1 1545:1 1551:1 1560:1 1583:1 1584:1 1589:1 1637:1 1638:6 1640:1 1643:1 1667:5 1677:1 1683:2 1695:1 1719:1 1732:2 1772:1 1777:1 1807:1 1813:1 1815:1 1816:1 1819:1 1824:1 1825:2 1830:1 1831:3 1841:1 1845:2 1846:1 1847:1 1856:1 1858:1 1861:1 1873:1 1875:1 1880:1 1881:1 1885:1 1891:2 1914:1 1939:1 1946:1 1964:1 1983:1 2016:2 2055:1 2063:1 2076:1 2078:1 2083:1 2100:1 2102:1 2112:1 2125:4 2132:1 2167:1 2172:2 2175:1 2176:2 2178:5 2180:1 2183:2 2191:1 2201:1 2209:1 2227:1 2276:1 2286:1 2287:2 2295:1 2300:3 2303:1 2305:1 2311:1 2341:5 2355:1 2361:1 2368:1 2373:4 2391:1 2412:1 2418:1 2429:1 2472:1 2477:1 2485:1 2491:4 2518:1 2523:1 2535:1 2549:1 2581:1 2587:3 2597:1 2605:1 2607:1 2613:1 2618:1 2637:1 2638:1 2663:1 2669:1 2684:4 2687:4 2696:1 2698:1 2701:1 2708:2 2714:3 2730:1 2768:1 2797:1 2800:1 2815:1 2832:1 2842:1 2870:1 2891:2 2901:1 2903:1 2917:1 2922:1 2943:1 2950:1 2973:2 2990:1 3010:1 3015:1 3017:1 3039:1 3041:1 3058:1 3079:1 3106:3 3121:1 3124:1 3140:1 3150:6 3186:1 3210:1 3227:3 3231:2 3269:1 3273:2 3277:2 3282:1 3283:1 3286:1 3287:1 3293:1 3296:1 3298:2 3301:2 3302:1 3306:1 3311:1 3314:4 3317:4 3320:1 3325:1 3344:1 3365:1 3383:1 3403:1 3406:1 3447:1 3463:1 3484:3 3491:1 3493:13 3504:2 3506:1 3534:2 3543:1 3548:1 3557:1 3571:2 3573:2 3590:1 3600:1 3606:1 3612:2 3621:1 3651:1 3655:1 3672:5 3673:1 3676:1 3712:1 3721:1 3722:1 3735:1 3782:1 3805:1 3817:1 3820:1 3821:1 3858:1 3871:2 3880:5 3888:1 3890:1 3919:1 3927:1 3930:2 3932:1 3948:1 3959:3 3963:2 3974:1 3976:4 3982:1 3996:1 4001:9 4015:1 4027:1 4050:1 4053:1 4059:1 4079:1 4085:1 4095:1 4097:1 4102:1 4104:6 4106:1 4140:1 4173:1 4178:1 4181:1 4184:6 4187:2 4190:1 4193:1 4212:2 4213:1 4233:1 4234:6 4240:1 4244:1 4248:1 4250:3 4257:2 4277:1 4288:1 4297:1 4298:2 4319:5 4325:1 4326:1 4345:1 4348:4 4360:1 4369:1 4371:1 4388:1 4401:1 4405:1 4425:9 4431:1 4434:1 4444:1 4445:2 4452:1 4458:1 4477:1 4480:1 4493:4 4505:1 4518:1 4537:1 4560:1 4589:3 4592:1 4596:1 4598:1 4611:2 4618:1 4629:2 4638:1 4662:1 4663:1 4668:1 4669:1 4699:3 4708:2 4710:2 4741:1 4746:1 4759:1 4775:1 4799:1 4800:1 4809:1 4812:1 4826:1 4828:1 4833:4 4843:2 4844:1 4862:1 4872:1 4873:1 4885:1 4903:1 4923:2 4948:1 4964:2 4971:9 4975:1 5010:1 5024:1 5036:1 5043:1 5105:1 5127:2 5136:1 5139:1 5148:2 5163:1 5165:1 5166:1 5174:1 5194:1 5199:4 5212:1 5220:1 5226:1 5240:1 5250:1 5256:1 5265:1 5277:2 5314:1 5323:1 5334:1 5336:3 5345:1 5375:3 5382:5 5405:1 5416:1 5421:2 5425:1 5440:2 5454:2 5455:1 5486:3 5487:1 5492:2 5495:1 5497:2 5506:1 5510:1 5520:1 5540:1 5565:1291 5590:1 5608:1 5616:1 5630:1 5634:1 5643:1 5645:2 5680:1 5716:1 5745:1 5757:1 5777:1 5798:1 5832:2 5844:4 5845:1 5848:2 5850:1 5854:1 5856:1 5867:1 5891:1 5903:1 5909:1 5933:1 5960:1 5963:1 5983:1 5990:1 6025:1 6036:1 6047:1 6064:4 6068:1 6069:1 6078:1 6080:1 6081:17 6102:1 6108:1 6110:1 6114:1 6142:1 6160:1 6185:1 6189:1 6191:1 6198:1 6201:3 6241:1 6242:1 6244:1 6269:1 6287:2 6295:1 6301:1 6318:2 6350:1 6362:1 6370:1 6430:3 6433:1 6467:1 6468:1 6473:5 6476:1 6477:1 6515:1 6518:4 6524:1 6539:3 6547:1 6581:1 6582:3 6590:1 6602:2 6638:2 6640:2 6678:1 6693:2 6702:1 6717:2 6732:1 6734:2 6747:1 6748:1 6767:1 6768:1 6777:2 6782:1 6818:2 6822:1 6835:1 6849:2 6864:7 6866:1 6872:2 6874:3 6883:6 6894:2 6897:1 6907:1 6917:4 6923:1 6926:1 6930:1 6943:5 6960:2 6978:3 6984:2 7024:1 7030:1 7042:1 7050:2 7082:2 7084:1 7089:1 7093:2 7102:4 7103:1 7110:1 7125:1 7127:2 7137:2 7138:1 7154:1 7173:1 7174:1 7192:1 7221:2 7277:1 7311:2 7313:1 7336:1 7351:1 7365:1 7373:1 7403:1 7430:1 7435:1 7454:1 7472:1 7479:1 7490:1 7505:1 7510:4 7524:1 7548:1 7618:2 7623:1 7634:1 7635:2 7636:1 7641:1 7642:1 7666:4 7688:1 7689:1 7711:1 7720:2 7727:1 7739:1 7744:1 7756:2 7760:1 7763:1 7767:1 7773:3 7777:1 7794:2 7804:1 7823:2 7828:1 7855:1 7856:1 7862:1 7870:1 7875:2 7885:2 7913:1 7919:1 7921:1 7965:1 7968:1 7980:1 7991:2 7999:1 8034:3 8060:1 8067:1 8077:1 8082:4 8084:1 8091:1 8100:2 8104:1 8138:1 8144:1 8145:2 8172:1 8179:1 8192:1 8194:1 8203:1 8212:1 8221:2 8237:2 8245:1 8246:1 8258:1 8261:1 8269:2 8294:1 8314:1 8317:1 8320:1 8333:1 8341:17 8361:1 8372:3 8386:1 8401:2 8419:2 8438:1 8440:3 8443:1 8449:2 8451:1 8520:1 8538:1 8545:2 8599:2 8610:2 8611:3 8612:3 8614:1 8634:1 8650:1 8658:1 8666:1 8718:1 8723:1 8732:2 8741:1 8748:3 8777:1 8787:1 8803:1 8823:1 8871:1 8880:1 8897:2 8934:2 8944:2 8948:1 8950:5 8951:1 8953:1 8958:1 8969:1 8977:2 8978:1 8981:2 8985:1 8999:1 9014:3 9059:1 9070:1 9093:1 9103:1 9112:1 9113:1 9117:2 9121:1 9122:1 9124:1 9133:1 9139:1 9141:4 9142:2 9143:1 9144:1 9195:1 9217:1 9230:1 9242:8 9249:1 9283:1 9303:18 9341:1 9344:1 9357:1 9405:1 9414:3 9427:1 9437:1 9450:1 9453:1 9481:1 9486:2 9501:1 9508:2 9528:1 9554:1 9560:1 9589:1 9592:1 9606:1 9612:1 9624:1 9627:1 9632:1 9681:2 9696:1 9697:2 9701:1 9706:1 9709:1 9711:13 9726:2 9735:2 9789:1 9801:2 9831:1 9839:1 9853:4 9862:1 9863:1 9875:6 9884:1 9885:1 9887:1 9899:1 9900:4 9907:2 9911:1 9917:3 9918:1 9927:1 9933:1 9935:1 9961:2 10011:1 10039:1 10043:1 10045:1 10047:2 10049:1 10068:3 10087:2 10095:1 10105:1 10136:1 10140:1 10151:1 10194:1 10195:1 10211:1 10237:2 10287:1 10297:1 10299:1 10311:1 10312:1 10318:1 10319:1 10332:1 10342:1 10344:1 10345:2 10372:3 10380:1 10412:1 10414:1 10424:1 10428:1 10434:2 10438:1 10461:1 10480:1 10495:1 10516:1 10550:1 10559:1 10562:1 10570:1 10590:1 10647:1 10660:1 10662:1 10676:1 10680:1 10687:2 10698:1 10699:1 10708:1 10721:1 10722:1 10786:2 10787:1 10789:1 10806:3 10813:1 10814:17 10823:1 10840:2 10843:2 10845:1 10889:2 10908:4 10909:1 10919:2 10932:1 10972:1 10975:1 10994:2 11016:1 11021:2 11049:1 11079:1 11081:1 11088:3 11092:1 11097:1 11116:1 11139:1 11171:3 11182:1 11199:8 11200:1 11201:2 11204:1 11224:1 11231:1 11233:4 11242:1 11245:2 11246:1 11267:1 11275:3 11279:1 11280:13 11286:2 11287:1 11289:2 11299:1 11303:1 11304:1 11309:1 11311:24 11344:5 11347:5 11350:1 11359:1 11386:1 11424:2 11441:1 11444:1 11491:2 11506:1 11510:2 11524:1 11534:1 11538:1 11543:1 11636:3 11640:1 11656:1 11657:1 11666:3 11670:2 11674:1 11705:1 11729:2 11732:1 11739:1 11741:1 11746:2 11755:1 11756:1 11757:4 11791:3 11798:1 11811:2 11812:1 11825:1 11833:1 11847:3 11849:2 11870:1 11873:1 11896:1 11922:1 11935:1 11945:2 11954:1 11964:1 11988:2 12002:14 12003:1 12021:1 12043:2 12072:1 12075:1 12085:2 12103:8 12114:1 12126:1 12181:9 12247:1 12252:1 12273:2 12274:1 12300:2 12321:1 12326:2 12343:1 12350:1 12378:1 12380:1 12396:1 12406:1 12408:2 12424:1 12427:1 12442:2 12460:1 12496:1 12521:1 12522:2 12525:1 12534:1 12536:1 12543:1 12546:1 12576:2 12579:1 12587:2 12610:1 12614:1 12623:3 12625:1 12628:1 12644:1 12649:1 12662:1 12672:1 12695:1 12701:5 12706:1 12709:3 12711:1 12718:2 12719:1 12726:1 12728:2 12752:2 12756:1 12766:2 12782:1 12786:2 12841:3 12859:3 12862:1 12866:1 12877:1 12889:1 12897:1 12933:2 12952:1 12992:1 13000:1 13003:1 13032:1 13033:1 13035:1 13041:1 13047:1 13048:2 13064:2 13080:4 13091:1 13115:1 13128:6 13137:1 13186:2 13196:1 13202:1 13217:1 13229:1 13233:2 13239:1 13240:1 13243:2 13267:1 13268:1 13285:1 13293:1 13307:1 13331:1 13354:1 13362:2 13370:2 13375:1 13419:1 13429:1 13431:1 13444:1 13452:9 13454:1 13462:1 13464:1 13490:2 13505:2 13524:1 13551:2 13555:1 13559:1 13589:1 13630:1 13642:1 13643:1 13653:1 13655:1 13671:1 13674:1 13696:1 13697:3 13704:1 13705:1 13722:1 13724:1 13725:1 13731:2 13735:2 13749:1 13756:1 13760:1 13761:1 13763:1 13779:2 13794:2 13803:1 13812:1 13860:1 13909:1 13916:1 13929:1 13937:1 13971:1 13995:3 14001:1 14003:1 14019:1 14020:2 14024:1 14036:1 14037:1 14038:1 14063:1 14070:1 14075:1 14083:1 14104:1 14117:1 14124:2 14134:1 14139:2 14140:2 14186:2 14198:3 14228:1 14239:1 14243:2 14251:1 14258:1 14267:1 14287:1 14298:1 14300:1 14304:1 14305:8 14314:1 14316:8 14341:1 14368:1 14392:1 14398:1 14437:2 14443:3 14468:1 14471:1 14496:3 14503:1 14508:1 14519:1 14529:3 14530:1 14532:1 14549:1 14558:1 14559:1 14562:1 14573:1 14579:1 14580:2 14594:1 14606:1 14614:1 14620:1 14638:2 14641:1 14669:1 14672:1 14676:1 14706:1 14716:1 14736:1 14743:1 14744:3 14751:1 14761:1 14763:1 14767:8 14768:1 14779:1 14785:1 14805:1 14809:1 14842:1 14857:1 14877:2 14915:1 14925:1 14942:1 14952:1 14960:2 14969:1 14970:2 14971:1 14973:1 14985:1 14986:1 14996:2 15012:1 15029:1 15064:1 15078:1 15092:1 15116:1 15118:1 15199:2 15218:1 15225:1 15247:2 15266:1 15277:1 15296:1 15302:7 15307:4 15316:1 15325:1 15341:2 15343:2 15344:1 15349:1 15354:2 15371:1 15376:4 15386:1 15388:6 15389:1 15400:2 15402:1 15412:1 15420:8 15428:2 15452:1 15466:1 15469:1 15470:13 15474:1 15488:2 15500:4 15505:2 15507:1 15509:1 15512:1 15563:1 15569:1 15578:1 15588:1 15594:1 15597:1 15599:2 15600:3 15604:1 15605:5 15621:1 15635:1 15639:1 15640:1 15644:2 15713:1 15715:1 15722:1 15725:1 15728:2 15767:1 15785:8 15786:1 15818:1 15827:1 15828:1 15853:3 15856:3 15857:3 15924:1 15927:1 15948:2 15953:1 15958:1 15960:3 15962:1 15966:5 15988:6 15991:1 15996:1 16027:1 16029:8 16031:4 16035:3 16052:1 16054:1 16068:1 16076:1 16081:1 16137:1 16158:1 16173:2 16181:1 16222:2 16240:2 16266:1 16272:1 16279:1 16293:2 16295:1 16356:1 16366:1 16368:1 16373:1 16408:2 16418:1 16424:1 16452:1 16465:1 16468:1 16472:1 16511:1 16514:1 16518:1 16529:1 16548:1 16549:2 16553:1 16561:1 16574:1 16665:1 16666:1 16671:1 16720:1 16726:2 16729:1 16748:1 16769:1 16779:1 16785:2 16789:4 16799:3 16801:7 16804:1 16810:2 16814:1 16824:1 16830:1 16863:1 16875:2 16878:1 16879:1 16888:2 16906:2 16924:1 16947:1 16963:2 16967:1 16977:1 16984:1 17008:1 17040:1 17049:1 17089:3 17097:9 17098:1 17110:2 17175:2 17180:2 17186:2 17198:1 17216:1 17219:1 17258:1 17286:1 17288:1 17308:1 17343:8 17369:8 17375:1 17380:2 17392:1 17401:2 17407:1 17420:1 17451:2 17452:2 17471:1 17473:1 17476:1 17480:1 17485:1 17498:1 17509:1 17519:2 17532:1 17547:2 17554:1 17566:1 17574:1 17578:1 17626:1 17676:4 17694:1 17715:1 17726:1 17751:2 17752:1 17757:1 17761:1 17768:1 17772:1 17784:2 17811:1 17816:9 17823:2 17839:1 17866:1 17872:2 17901:1 17911:3 17920:2 17951:1 17955:1 17972:1 17974:1 17976:1 17978:4 17981:1 17987:1 18007:1 18019:2 18038:17 18039:1 18056:1 18081:1 18082:1 18089:1 18090:2 18094:1 18125:1 18126:1 18158:1 18167:5 18169:1 18182:2 18184:1 18205:1 18224:1 18246:2 18253:1 18271:1 18274:2 18300:1 18317:2 18326:1 18351:7 18352:2 18358:1 18362:1 18383:1 18395:1 18397:1 18398:1 18407:1 18409:6 18429:2 18434:1 18439:3 18444:1 18446:1 18454:1 18456:2 18459:1 18462:1 18466:1 18494:3 18503:1 18511:4 18516:1 18545:8 18555:2 18556:2 18569:1 18573:1 18588:1 18611:1 18637:1 18648:2 18666:1 18677:1 18680:1 18715:1 18740:1 18744:1 18764:2 18767:1 18771:1 18778:3 18821:1 18843:4 18900:2 18917:1 18981:1 19002:1 19004:3 19013:2 19020:1 19036:4 19046:1 19052:1 19056:2 19060:1 19064:1 19075:1 19078:1 19106:2 19135:9 19146:2 19156:2 19167:1 19175:1 19180:1 19183:3 19189:2 19198:1 19209:1 19210:1 19222:2 19224:1 19228:1 19240:1 19241:1 19243:1 19244:1 19249:1 19263:1 19267:1 19268:1 19298:1 19315:1 19316:1 19327:5 19336:3 19345:1 19346:2 19361:1 19372:1 19389:1 19395:1 19400:2 19409:2 19414:1 19421:1 19461:2 19468:1 19480:2 19492:2 19498:2 19507:1 19515:3 19520:1 19526:2 19535:2 19541:1 19553:2 19554:1 19587:1 19591:1 19601:3 19605:1 19616:1 19642:1 19654:8 19663:1 19667:4 19676:1 19677:1 19697:2 19714:1 19716:1 19717:1 19720:3 19721:1 19734:1 19738:1 19739:1 19750:1 19756:1 19762:2 19772:1 19776:1 19784:1 19797:1 19820:1 19831:1 19853:1 19865:1 19908:1 19939:1 19942:1 19974:3 19979:1 20009:2 20016:1 20037:1 20038:1 20044:1 20046:1 20049:1 20056:1 20058:1 20061:1 20071:1 20095:1 20112:1 20114:1 20128:1 20138:1 20140:1 20147:1 20157:1 20160:2 20170:3 20175:1 20199:1 20219:2 20241:2 20280:1 20298:2 20311:1 20330:1 20335:2 20343:2 20366:1 20369:3 20371:1 20393:2 20396:1 20397:1 20402:1 20406:1 20417:1 20461:1 20469:1 20524:1 20525:3 20528:1 20535:2 20547:1 20556:1 20565:1 20600:1 20611:1 20630:1 20633:1 20646:1 20647:4 20682:2 20713:1 20751:3 20760:1 20766:2 20782:1 20788:1 20812:1 20827:1 20830:1 20839:1 20842:1 20864:1 20868:2 20871:1 20877:2 20887:1 20891:1 20933:1 20936:2 20949:3 20952:1 20954:1 20956:1 20967:1 20977:1 21005:1 21014:1 21026:1 21037:1 21049:1 21085:1 21090:2 21109:3 21136:1 21167:3 21168:1 21171:2 21173:2 21179:2 21183:1 21212:1 21233:1 21258:2 21267:1 21271:1 21292:1 21293:2 21295:1 21303:1 21354:1 21355:1 21369:3 21370:1 21373:1 21381:1 21389:1 21417:1 21432:1 21436:1 21460:1 21473:2
b2936d0d6a82c8e3b6997109a7844738f1e97c2b
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH1/EX1.6/ex_1_6.sce
643e466e9a81e0c7766181235a355c8fbebc758a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
787
sce
ex_1_6.sce
// Example 1.6: which supply voltage will keep brighness of diode constant clc, clear v1=1.8; // in volts v2=3; // in volts vs=24; // in volts rs=820;// in ohms Imin=((vs-v2)/rs);//case1 Imax=((vs-v1)/rs); vs1=5; // in volts rs1=120;// in ohms Imin1=((vs1-v2)/rs1);//case2 Imax1=((vs1-v1)/rs1); r1=470; // in ohmI1=(vs-v1)/r1; // in ampere disp(Imax,"maximum current in ampere in case1(A) = ") disp(Imin,"minimum current in ampere in case1(A) = ") disp(Imax1,"maximum current in ampere in case2(A) = ") disp(Imin1,"minimum current in ampere in case2(A) = ") disp("Brightness in the first case will remain constant wheras in second case it will be changing ,therefore, in order to get an approximately constant brighntness we use as large a supply voltage as possible")
114c2605cfa06db49828a5dbef34fcc6e059f964
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH23/EX23.9/ex_23_9.sce
e611b4ea258a2c444845f19f42ddd4787120d91d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
623
sce
ex_23_9.sce
//find clc //solution //given vd=60//mm//valve dia pb=1.2//N/mm^2 dx2=10//mm C=5 dx1=35//mm t=500//N/mm^2 G=80000//N/mm^2 W1=(%pi/4)*vd^2//N dxmax=dx1+dx2 W=W1*dxmax/dx1//N K=(4*C-1)/(4*C-4)+(0.615/C) printf("dia of sprig wire is,%f vmm\n",sqrt((K*8*W*C)/(t*%pi))) printf("dia is say 12.7 mm,taking standard conditions rfom table 23.2\n") d=12.7 D=C*d printf("mean dia is,%f mm\n",D) printf("numbr of tunrs are,%f \n",dxmax*G*d/(8*W*C^3)) printf("numbr of turns are say 11\n") n=11 nb=n+2 fL=nb*d + dxmax + 0.15*dxmax printf("free length is ,%f mm\n",fL) printf("pitch of coil is,%f mm",fL/(nb-1))
e0dcc7fb865c51f090e4744a0456dead87d8e53b
449d555969bfd7befe906877abab098c6e63a0e8
/2216/CH7/EX7.4/ex_7_4.sce
8a938b161698ff3d479d5fa01fe7e36ad8568258
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
365
sce
ex_7_4.sce
//Example 7.4: Internal and quantum efficiency clc; clear; close; //given data : format('v',4) disp("part (a)") tau_rr=1; tau_nr=tau_rr; eta_int=1/(1+(tau_rr/tau_nr)); disp(eta_int,"Internal quantum efficiency = ") disp("part (b)") format('v',7) ns=3.7; na=1.5; as=0; eta_ext=eta_int*(1-as)*((2*na^3)/(ns*(ns+na)^2)); disp(eta_ext,"External quantum efficiency = ")
653824ff4ad95778094c9b558f602c72953b42a1
449d555969bfd7befe906877abab098c6e63a0e8
/1580/CH12/EX12.2/Ch12Ex2.sce
16293792842a601880adce2883e7e7bfec4f494c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
517
sce
Ch12Ex2.sce
// Scilab Code Ex12.2: Page-12.13 (2004) clc;clear; n1 = 1.53; // Refractive index of fibre core n2 = 1.50; // Refractive index of fibre cladding lamb = 1e-6; // absolute wavelength. m d = 50e-6; // radius of core in m V = 2*%pi/lamb*d*sqrt(n1^2 - n2^2); // volume of opical fibre N = V^2/2; // no. of possible modes printf("\nV of opical fibre = %6.2f ", V); printf("\nNo. of possible modes = %5.3f ", N); // Results // V of opical fibre = 94.72 // No. of possible modes = 4485.735
51b1b97fc3b2d605395164ba80216404cea1bdf1
449d555969bfd7befe906877abab098c6e63a0e8
/104/CH4/EX4.9/4_9.sce
23b72d3a4c875d8d286e71a7510deb80c1b98bc9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
517
sce
4_9.sce
//incremental encoder //2 sinusoidal signals //generates four zero crossings per cycle(zc) //printwheel has 96 characters on its pheriphery(ch) and encoder has 480 cycles(cyc) zc=4 ch=96 cyc=480 zcpr=cyc*zc //zero crossings per revolution disp(zcpr,"zero_crossings_per_revolution=") zcpc=zcpr/ch //zreo crossings per character disp(zcpc,"zero_crossings_per_character=") //500khz clock is used //500 pulses/zero crossing shaft_speed=500000/500 x=shaft_speed/zcpr disp(x,"ans=") //in rev per sec
fdd0a6155a3e0aca8b2401b0390cdd6b0b7d85bd
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.18_12.tst
3b34de122cb9df233be26ab4dc8583cc4b3ad93f
[]
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
538,448
tst
5.18_12.tst
18 196:2 257:1 270:1 600:1 651:1 769:1 783:1 1236:2 1258:1 1260:1 1292:1 1607:1 1790:2 1988:1 2254:1 2285:1 2316:1 2348:2 2370:1 2479:2 2557:1 2595:1 2635:1 2642:1 2791:1 3004:1 3197:1 3353:1 3879:1 3907:1 3950:1 3999:1 4002:1 4521:1 4607:1 4667:1 5028:1 5330:1 5334:1 5567:1 5724:1 6059:1 6299:1 6315:1 6338:1 6501:1 6927:3 7099:1 7134:1 7606:1 7692:1 7995:1 8004:1 8029:1 8791:3 9260:1 9278:1 9429:1 9702:1 9876:1 9950:2 10175:1 10331:2 11012:1 11120:3 11264:1 11356:1 11416:1 11894:1 12040:1 12389:1 12433:1 12695:1 12972:1 13494:1 13551:2 13575:1 13963:1 14054:1 14113:1 14209:1 14335:1 14679:1 14740:1 14755:2 14757:1 15189:1 15316:1 15326:1 15411:2 15414:1 15847:1 16010:1 16054:1 16078:1 16355:1 16381:1 16604:1 16651:1 17146:2 17450:1 17730:1 17757:1 17908:1 17957:1 18197:1 18238:1 18348:1 18438:2 18461:1 18464:1 18712:1 18812:2 18888:2 19162:2 19183:1 19214:59 19528:1 19827:2 19981:1 20160:1 20197:1 20596:1 20635:1 20711:1 20751:1 21050:1 21079:1 21138:1 21146:2 21156:1 21345:2 21501:1 21537:1 21630:1 21938:1 21994:1 22096:1 22132:1 22212:2 22462:1 22710:1 22783:1 22860:1 22888:1 23012:1 23032:1 23063:1 23246:1 23254:1 23332:2 23408:1 23422:1 23483:1 23600:1 23634:1 23703:1 23726:2 23879:1 24010:1 24081:1 24133:1 24230:1 24355:1 24384:2 24496:1 24725:1 24812:1 24869:1 24952:1 25112:1 25335:1 25350:1 25594:1 25600:1 25706:2 25795:1 25945:1 26062:1 26147:1 26154:1 26282:1 26302:1 26743:1 26932:1 26987:3 27163:1 27284:3 27342:1 27371:2 27467:1 27559:1 27580:1 27764:1 27808:1 27820:1 27861:2 28323:1 28541:1 28653:1 28778:2 29122:1 29704:1 29752:1 29775:1 29793:1 29887:1 18 132:1 196:4 257:1 270:2 600:1 651:1 759:1 769:1 783:1 902:1 1016:1 1236:4 1258:2 1260:1 1292:2 1440:1 1607:1 1680:1 1790:4 1927:1 1988:2 2076:1 2081:1 2254:1 2259:1 2285:2 2297:1 2316:1 2348:3 2370:2 2479:4 2557:1 2595:2 2635:2 2642:2 2759:1 2791:1 3004:1 3112:1 3120:1 3197:2 3353:1 3879:1 3907:1 3950:1 3999:2 4002:1 4521:2 4607:2 4667:2 5028:1 5278:1 5330:1 5334:2 5457:1 5567:1 5724:2 6059:1 6282:1 6299:2 6315:1 6338:2 6501:1 6515:1 6519:1 6617:1 6626:1 6765:1 6927:5 6949:1 7099:1 7134:1 7606:1 7692:1 7971:1 7995:1 8004:2 8029:2 8195:1 8705:1 8791:5 8868:1 8896:1 9260:1 9278:2 9429:1 9702:1 9736:1 9876:2 9950:4 10175:1 10303:1 10331:3 11012:1 11120:5 11264:1 11356:1 11416:1 11711:1 11894:1 12040:1 12376:1 12389:1 12433:2 12695:2 12848:1 12972:2 13494:1 13551:4 13575:2 13695:1 13963:1 14054:2 14097:1 14113:1 14175:1 14209:1 14335:2 14679:1 14740:1 14755:3 14757:2 15189:2 15316:2 15326:1 15411:3 15414:2 15847:1 15918:2 16010:1 16054:2 16078:1 16195:1 16355:2 16381:1 16578:1 16604:2 16651:1 16903:1 17035:1 17146:4 17419:2 17450:2 17600:1 17730:1 17757:1 17908:2 17957:2 18197:1 18238:2 18348:2 18438:4 18461:1 18464:2 18712:1 18749:1 18812:4 18888:3 19162:3 19183:2 19214:139 19345:1 19528:1 19827:4 19981:1 20160:3 20197:2 20282:1 20596:1 20635:1 20711:1 20751:1 20908:1 20956:1 21050:2 21079:2 21138:1 21146:4 21156:2 21345:3 21482:1 21501:1 21537:1 21630:1 21683:1 21938:1 21994:1 22096:2 22132:2 22212:4 22462:2 22710:1 22738:1 22783:1 22784:1 22860:2 22888:1 23012:2 23032:1 23063:2 23246:2 23254:2 23332:3 23408:1 23422:2 23483:2 23600:1 23634:2 23670:1 23703:1 23726:4 23879:1 24010:2 24019:1 24081:2 24133:2 24230:1 24355:2 24384:4 24496:2 24725:2 24812:2 24869:1 24952:2 25006:1 25112:1 25335:2 25350:2 25594:1 25600:2 25685:1 25706:4 25795:2 25843:1 25945:1 26062:1 26065:1 26131:1 26147:2 26154:2 26282:2 26302:1 26743:1 26932:1 26987:5 27163:1 27284:5 27342:1 27371:3 27372:1 27467:1 27559:1 27580:1 27764:2 27808:2 27820:1 27861:4 27954:1 28323:1 28516:1 28541:1 28584:1 28591:1 28653:1 28778:4 29122:2 29704:2 29752:2 29775:2 29793:1 29887:2 18 132:1 196:4 257:1 270:2 331:1 600:1 651:1 660:1 759:1 769:1 783:1 902:1 1016:1 1236:4 1258:2 1260:1 1292:2 1429:1 1430:1 1440:1 1473:1 1523:1 1607:1 1680:1 1790:4 1927:1 1964:1 1988:2 2076:1 2081:1 2087:1 2131:1 2181:1 2232:1 2247:1 2254:1 2259:1 2285:2 2297:1 2316:1 2348:4 2370:2 2418:1 2479:4 2557:1 2595:2 2633:1 2635:2 2642:2 2740:1 2759:1 2791:1 2860:1 2970:1 3004:1 3112:1 3120:1 3197:2 3212:1 3267:1 3319:1 3353:1 3736:1 3879:1 3907:1 3950:1 3999:2 4002:1 4247:1 4521:2 4607:2 4667:2 4685:1 4838:1 4850:1 5028:1 5278:1 5330:1 5334:2 5457:1 5567:1 5724:2 6059:1 6233:1 6271:1 6282:1 6299:2 6315:1 6338:2 6442:1 6501:2 6515:1 6519:1 6609:1 6617:1 6626:1 6765:1 6927:5 6949:1 6980:1 7099:1 7134:1 7606:2 7687:1 7692:1 7971:1 7995:1 8003:1 8004:2 8029:2 8195:1 8377:1 8565:1 8705:1 8791:5 8868:1 8896:1 9045:1 9193:1 9260:1 9278:2 9429:1 9702:1 9736:1 9876:2 9950:4 10175:1 10303:1 10331:4 11012:1 11120:5 11264:1 11305:1 11356:1 11416:1 11488:1 11556:1 11711:1 11894:1 11978:1 12040:1 12089:1 12158:1 12376:1 12389:1 12433:2 12695:2 12848:1 12972:2 13037:1 13279:1 13494:1 13551:4 13575:2 13695:1 13883:1 13963:1 14054:2 14097:1 14113:2 14175:1 14209:1 14335:2 14679:1 14740:1 14755:4 14757:2 14870:1 14875:1 15035:1 15189:2 15311:1 15316:2 15326:1 15352:1 15353:1 15411:3 15414:2 15847:1 15918:3 15946:1 15970:1 16010:1 16054:2 16078:1 16195:1 16344:1 16355:2 16381:1 16578:1 16604:2 16651:1 16903:1 17035:1 17146:4 17354:1 17419:3 17450:2 17600:1 17730:1 17757:1 17762:1 17814:1 17908:2 17957:2 18027:1 18037:1 18197:1 18238:2 18348:2 18438:4 18447:1 18461:1 18464:2 18712:1 18749:1 18812:4 18888:4 19162:4 19183:2 19214:273 19345:1 19528:1 19827:4 19981:1 20062:1 20160:4 20197:2 20282:1 20596:1 20610:1 20635:1 20711:1 20751:1 20908:1 20956:1 21050:2 21079:2 21138:1 21146:4 21156:2 21345:3 21482:1 21488:1 21501:1 21537:1 21630:1 21683:1 21906:1 21913:1 21938:1 21994:1 22096:2 22132:2 22212:4 22462:2 22710:1 22738:1 22783:1 22784:1 22860:2 22888:1 22903:1 23012:2 23032:1 23063:2 23246:2 23254:2 23332:3 23408:1 23422:2 23483:2 23600:1 23634:2 23670:1 23703:1 23726:4 23879:1 24010:2 24019:1 24081:2 24133:2 24230:1 24355:2 24369:1 24384:4 24496:2 24725:2 24812:2 24822:1 24869:1 24952:2 25006:1 25112:1 25166:1 25314:1 25335:2 25350:2 25594:1 25600:2 25685:1 25706:4 25795:2 25843:1 25945:1 26038:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26240:1 26282:2 26302:1 26312:1 26552:1 26743:1 26932:1 26987:5 27163:1 27284:5 27342:1 27371:4 27372:1 27467:1 27559:1 27580:1 27764:2 27808:2 27820:1 27861:4 27954:1 28148:1 28323:1 28516:1 28541:1 28566:1 28584:1 28591:1 28634:1 28653:1 28778:4 29122:2 29704:2 29752:2 29775:2 29793:1 29887:2 18 132:1 196:4 257:1 270:2 331:1 363:1 600:1 651:1 660:1 693:1 759:1 769:1 783:1 902:1 957:1 1016:1 1236:4 1258:2 1260:1 1262:1 1292:2 1318:1 1429:1 1430:1 1440:1 1473:2 1491:1 1523:1 1607:1 1680:1 1745:1 1790:4 1927:1 1964:1 1988:2 2076:1 2081:1 2087:1 2131:1 2181:1 2232:2 2241:1 2247:1 2254:1 2259:1 2285:2 2297:1 2316:1 2333:1 2348:5 2370:2 2418:2 2479:4 2557:1 2595:2 2633:1 2635:2 2642:2 2740:1 2759:1 2791:1 2860:1 2970:2 3004:1 3079:1 3112:1 3120:1 3197:2 3212:1 3267:1 3319:1 3353:1 3736:1 3865:1 3877:1 3879:1 3898:1 3907:1 3950:1 3999:2 4002:1 4115:1 4247:1 4486:1 4521:2 4525:1 4607:2 4667:2 4685:1 4726:1 4838:1 4850:1 4938:1 5028:1 5278:1 5330:1 5334:2 5424:1 5457:1 5567:1 5613:1 5724:2 5927:1 5939:1 6059:1 6233:1 6271:1 6282:1 6299:2 6315:1 6338:2 6442:1 6501:2 6515:1 6518:1 6519:1 6609:1 6617:1 6626:1 6765:1 6927:5 6949:1 6980:1 7063:1 7099:1 7134:1 7143:1 7529:1 7606:2 7687:1 7692:1 7971:1 7995:1 8003:1 8004:2 8029:2 8195:1 8377:1 8486:1 8537:1 8565:2 8572:1 8574:1 8705:1 8791:5 8868:1 8896:1 9045:1 9193:1 9223:1 9252:1 9260:1 9278:2 9429:1 9702:1 9736:1 9876:3 9950:4 10175:1 10189:1 10262:1 10303:1 10331:5 10480:1 10772:1 11012:1 11068:1 11120:5 11264:1 11305:1 11356:1 11416:1 11444:1 11488:1 11556:1 11711:1 11894:1 11978:1 12040:1 12089:1 12098:1 12124:1 12158:1 12376:1 12389:1 12416:1 12422:1 12433:2 12695:2 12848:1 12972:2 13037:1 13279:2 13494:1 13551:4 13575:2 13666:1 13695:1 13726:1 13756:1 13783:1 13790:1 13883:1 13963:1 13968:1 14054:2 14097:1 14113:2 14130:1 14175:1 14209:1 14335:2 14507:1 14679:1 14686:1 14740:1 14755:5 14757:2 14808:1 14870:1 14875:1 15035:1 15189:2 15311:1 15316:2 15326:1 15352:1 15353:1 15411:3 15414:2 15582:1 15656:1 15847:1 15918:3 15946:1 15970:1 16010:1 16054:2 16078:1 16195:1 16344:1 16355:2 16381:1 16552:1 16578:1 16604:2 16651:1 16892:1 16903:1 16920:1 17035:1 17146:4 17354:1 17419:3 17450:2 17600:1 17620:1 17730:1 17757:1 17762:1 17814:1 17908:2 17953:1 17957:2 18003:1 18027:1 18037:1 18084:1 18197:1 18228:1 18238:2 18348:2 18361:1 18388:1 18407:1 18438:4 18447:1 18461:1 18464:2 18509:1 18527:1 18712:2 18749:1 18812:4 18888:5 18990:1 19162:5 19183:2 19214:412 19345:1 19528:1 19674:1 19827:4 19981:1 19985:1 20062:1 20160:4 20197:2 20282:1 20513:1 20596:1 20610:1 20635:1 20711:1 20751:1 20799:1 20908:1 20956:1 21050:2 21079:2 21138:1 21146:4 21156:2 21345:3 21482:1 21488:1 21501:1 21537:1 21629:1 21630:1 21683:1 21731:1 21894:1 21906:1 21913:1 21938:1 21994:1 22082:1 22096:2 22132:2 22212:4 22462:2 22645:1 22685:1 22710:1 22738:1 22783:1 22784:1 22860:2 22888:1 22903:1 23011:1 23012:2 23032:1 23063:2 23246:2 23254:2 23332:3 23357:1 23408:1 23422:2 23483:2 23568:1 23600:1 23634:2 23670:1 23703:2 23726:4 23754:1 23879:1 23894:1 24000:1 24010:2 24019:1 24025:1 24081:2 24133:2 24190:1 24230:1 24355:2 24369:1 24384:4 24496:2 24700:1 24725:2 24812:2 24822:1 24853:1 24859:1 24863:1 24869:1 24952:2 25006:1 25112:1 25166:1 25194:1 25314:1 25335:2 25350:2 25594:1 25600:2 25612:1 25685:1 25706:4 25795:2 25798:1 25843:1 25945:1 26038:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26240:1 26282:2 26302:1 26312:1 26477:1 26552:1 26743:1 26775:1 26921:1 26932:1 26987:5 27163:1 27284:5 27342:1 27371:5 27372:1 27419:1 27467:1 27559:1 27580:1 27653:1 27722:1 27764:2 27808:2 27820:1 27834:1 27861:4 27954:1 28148:1 28240:1 28323:1 28516:1 28541:1 28566:1 28584:1 28591:1 28634:2 28653:1 28776:1 28778:4 28833:1 29021:1 29122:2 29252:1 29624:1 29704:2 29706:1 29752:2 29775:2 29793:1 29887:2 18 7:1 132:1 196:4 235:1 257:1 270:2 288:1 331:1 363:1 600:1 613:1 626:1 651:1 660:1 693:1 759:1 769:1 783:1 902:1 928:1 957:1 980:1 1016:1 1187:1 1236:4 1258:2 1260:1 1262:1 1292:2 1318:1 1429:1 1430:1 1440:1 1473:2 1491:1 1523:2 1598:1 1607:1 1680:1 1742:1 1745:2 1790:4 1927:1 1942:1 1964:1 1988:2 2076:1 2081:1 2084:1 2087:1 2131:1 2181:1 2200:1 2232:2 2241:1 2247:1 2251:1 2254:1 2259:1 2285:2 2297:1 2316:2 2333:1 2348:7 2370:2 2418:2 2429:1 2479:4 2557:1 2564:1 2595:2 2633:1 2635:2 2642:2 2740:2 2759:1 2791:1 2860:2 2967:1 2970:2 3004:1 3079:1 3112:1 3120:1 3197:2 3212:1 3267:1 3319:1 3353:1 3736:1 3766:1 3789:1 3865:1 3877:1 3879:1 3898:1 3907:2 3950:1 3999:2 4002:1 4115:1 4247:1 4486:1 4521:2 4525:1 4607:2 4667:2 4685:1 4726:1 4838:1 4850:1 4938:1 4990:1 5028:1 5167:1 5278:1 5330:1 5334:2 5394:1 5424:2 5457:1 5567:1 5613:1 5724:2 5927:1 5939:1 6059:1 6233:1 6271:1 6282:1 6299:2 6315:1 6338:2 6442:1 6501:2 6515:1 6518:1 6519:1 6542:1 6609:1 6617:1 6626:1 6765:1 6927:5 6949:1 6980:1 7063:1 7093:1 7097:1 7099:1 7134:1 7143:1 7529:1 7606:2 7687:1 7692:1 7721:1 7935:1 7952:1 7971:1 7995:2 8003:1 8004:2 8023:1 8029:3 8195:1 8377:1 8486:1 8537:2 8565:2 8570:1 8572:1 8574:1 8705:1 8754:1 8791:5 8868:1 8880:1 8896:1 8993:1 9045:2 9193:1 9201:1 9223:1 9252:1 9260:1 9278:2 9429:1 9702:1 9736:1 9858:1 9876:3 9950:4 9997:1 10175:1 10189:1 10215:1 10262:1 10303:1 10331:7 10480:1 10772:2 10871:1 10907:1 10977:1 11012:1 11068:2 11120:5 11264:2 11290:1 11305:1 11356:1 11416:1 11444:1 11488:1 11556:1 11711:1 11894:1 11978:1 12029:1 12040:1 12086:1 12089:2 12098:1 12124:1 12158:1 12376:1 12389:2 12416:1 12422:1 12433:2 12534:1 12648:1 12695:2 12848:1 12972:2 13037:1 13064:1 13279:2 13338:1 13494:1 13551:4 13574:1 13575:2 13666:2 13695:1 13726:1 13756:1 13783:1 13790:1 13816:1 13883:1 13963:1 13968:1 14054:2 14097:1 14113:2 14130:1 14175:1 14209:1 14335:2 14507:1 14679:1 14686:1 14740:1 14755:7 14757:2 14808:1 14870:2 14875:1 15035:1 15189:2 15311:1 15316:2 15326:1 15352:1 15353:1 15411:3 15414:2 15582:1 15656:2 15703:1 15847:1 15918:4 15946:1 15970:1 16010:1 16054:2 16078:1 16195:1 16241:1 16259:1 16330:1 16344:1 16355:2 16381:1 16552:1 16578:1 16604:2 16651:1 16653:1 16800:1 16892:1 16903:1 16920:1 17035:1 17121:1 17141:1 17146:4 17354:1 17419:4 17450:2 17600:1 17620:1 17730:1 17757:1 17762:1 17814:1 17908:2 17953:1 17957:2 17986:1 18003:1 18017:1 18027:1 18033:1 18037:1 18084:1 18187:1 18197:1 18228:1 18238:2 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18464:2 18509:1 18527:1 18712:4 18749:1 18812:4 18888:7 18990:1 19162:7 19183:2 19214:521 19345:1 19407:1 19455:1 19528:1 19674:1 19765:1 19827:4 19863:1 19869:1 19885:1 19981:1 19985:1 20062:1 20160:6 20197:2 20205:1 20282:1 20513:1 20524:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20751:1 20799:1 20908:1 20956:1 21003:1 21050:2 21079:2 21138:1 21146:4 21156:2 21227:1 21345:3 21482:1 21488:1 21501:1 21537:1 21629:1 21630:1 21683:1 21731:1 21810:1 21894:1 21906:1 21913:1 21938:1 21994:1 22082:1 22096:2 22132:2 22152:1 22189:1 22212:4 22462:2 22614:1 22645:1 22658:1 22685:1 22710:1 22738:1 22783:1 22784:1 22860:2 22888:1 22903:1 23011:1 23012:2 23032:1 23063:2 23246:2 23254:2 23332:3 23350:1 23357:1 23408:1 23422:2 23483:2 23568:1 23600:1 23634:2 23670:1 23703:3 23726:4 23754:2 23879:1 23887:1 23894:2 24000:1 24010:2 24019:1 24025:1 24081:2 24133:2 24190:1 24230:1 24355:2 24369:1 24384:4 24496:2 24700:1 24725:2 24812:2 24822:1 24853:1 24859:2 24863:1 24869:1 24952:2 25006:1 25112:1 25166:1 25194:1 25314:1 25335:2 25350:2 25594:1 25600:2 25612:1 25660:1 25685:1 25706:4 25795:2 25798:1 25810:1 25843:1 25878:1 25945:1 26038:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26240:1 26282:2 26302:1 26312:1 26477:1 26552:1 26668:1 26706:1 26743:1 26775:1 26874:1 26921:1 26932:1 26987:5 27163:1 27215:1 27229:1 27284:5 27342:1 27371:7 27372:1 27419:1 27467:1 27478:1 27559:1 27580:1 27653:1 27654:1 27722:1 27726:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27954:1 28002:1 28034:1 28074:1 28148:1 28240:1 28314:1 28323:1 28516:2 28541:1 28549:1 28566:1 28584:1 28591:1 28604:1 28634:2 28653:1 28720:1 28724:1 28776:1 28778:4 28833:1 28935:1 28962:1 29021:1 29122:2 29252:1 29301:1 29355:1 29422:1 29624:1 29704:2 29706:1 29752:2 29775:2 29793:1 29887:2 18 7:1 22:1 132:1 196:4 217:1 235:1 257:1 270:2 288:1 331:1 363:1 600:1 613:1 622:1 626:1 651:1 660:1 693:1 702:1 759:1 769:2 783:1 798:1 902:1 928:2 957:1 980:1 1016:1 1073:1 1187:1 1236:4 1258:2 1259:1 1260:1 1262:1 1292:2 1318:1 1429:1 1430:1 1440:1 1473:2 1491:1 1523:2 1598:1 1607:1 1680:1 1742:1 1745:3 1790:4 1927:1 1931:1 1942:1 1964:1 1988:2 2022:1 2025:1 2076:1 2081:1 2084:2 2087:1 2131:1 2181:1 2200:1 2232:2 2241:1 2246:1 2247:1 2251:1 2254:1 2259:1 2285:2 2297:1 2299:1 2316:2 2333:1 2335:1 2348:7 2370:2 2418:3 2429:1 2461:1 2479:4 2553:1 2557:1 2564:1 2595:2 2618:1 2633:1 2635:2 2642:2 2740:2 2741:1 2759:1 2791:1 2860:2 2967:1 2970:2 3004:1 3079:1 3112:1 3120:1 3197:2 3212:1 3267:1 3319:1 3353:1 3373:1 3736:1 3748:1 3766:2 3789:1 3820:1 3865:1 3877:1 3879:1 3898:1 3907:2 3950:1 3999:2 4002:1 4065:1 4069:1 4115:1 4247:1 4486:1 4521:2 4525:1 4563:1 4607:2 4667:2 4685:1 4726:1 4746:1 4812:1 4838:1 4850:1 4938:1 4990:2 5028:1 5031:1 5167:1 5181:1 5191:1 5278:2 5330:1 5334:2 5394:1 5424:2 5457:1 5567:1 5580:1 5613:1 5628:1 5709:1 5724:2 5927:1 5939:1 6059:1 6090:1 6233:1 6271:1 6281:1 6282:1 6299:2 6315:1 6338:2 6442:1 6484:1 6501:2 6515:1 6518:1 6519:2 6542:1 6609:1 6617:1 6626:1 6630:1 6765:1 6927:5 6949:1 6980:1 7063:1 7093:1 7097:1 7099:1 7134:1 7143:1 7204:1 7240:1 7306:1 7529:1 7606:2 7631:1 7687:1 7692:1 7721:2 7935:1 7952:1 7971:1 7995:2 8003:1 8004:2 8023:1 8029:4 8195:1 8377:1 8486:2 8537:2 8565:2 8570:1 8572:1 8574:1 8705:1 8754:2 8791:5 8868:1 8880:1 8884:1 8885:1 8896:1 8993:1 9045:2 9193:1 9201:1 9223:1 9252:1 9260:1 9278:2 9409:1 9429:1 9519:1 9689:1 9702:1 9736:1 9858:1 9876:3 9950:4 9997:1 10175:1 10189:1 10215:1 10234:1 10262:1 10303:1 10331:7 10480:1 10629:1 10772:2 10871:2 10907:1 10925:1 10977:1 11012:1 11068:2 11120:5 11264:2 11266:1 11289:1 11290:1 11305:1 11356:1 11416:1 11444:1 11465:1 11488:1 11556:1 11711:1 11894:1 11978:1 12029:1 12040:1 12086:1 12089:2 12098:1 12124:1 12158:1 12376:1 12389:2 12416:1 12422:1 12433:2 12522:1 12534:1 12648:1 12695:2 12848:1 12972:2 13037:1 13064:1 13131:1 13145:1 13279:2 13338:1 13482:1 13494:1 13551:4 13574:1 13575:2 13645:1 13666:2 13695:1 13708:1 13726:1 13756:1 13783:1 13790:1 13816:1 13883:1 13894:1 13963:1 13968:1 14046:1 14054:2 14097:1 14107:1 14113:2 14130:1 14175:1 14209:1 14335:2 14393:1 14507:1 14679:1 14686:1 14704:1 14740:1 14755:7 14757:2 14803:1 14808:1 14870:2 14875:1 14929:1 15035:1 15189:2 15311:1 15316:2 15326:1 15352:1 15353:1 15411:4 15414:2 15582:1 15656:2 15703:1 15755:1 15847:1 15918:4 15946:1 15970:1 16010:1 16054:2 16078:1 16195:1 16241:1 16259:1 16330:1 16344:1 16355:2 16381:1 16385:1 16391:1 16465:1 16552:1 16575:1 16578:1 16604:2 16651:1 16653:1 16800:1 16892:1 16903:1 16920:1 17035:1 17071:1 17121:1 17141:1 17146:4 17334:1 17354:1 17419:4 17450:2 17600:1 17620:1 17715:1 17730:1 17757:1 17762:1 17814:1 17908:2 17953:1 17957:2 17971:1 17976:1 17986:1 18001:1 18003:1 18017:1 18027:1 18033:1 18037:1 18084:1 18187:1 18197:2 18228:1 18238:2 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18464:2 18509:1 18527:1 18712:4 18749:1 18775:1 18812:4 18888:7 18990:1 19075:1 19162:7 19183:2 19214:680 19298:1 19345:1 19407:1 19455:1 19528:1 19674:1 19765:1 19827:4 19863:1 19869:1 19885:1 19892:1 19970:1 19981:1 19985:1 20062:1 20072:1 20135:1 20160:7 20197:3 20205:1 20282:1 20340:1 20513:1 20524:1 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20749:1 20751:1 20799:1 20811:1 20888:1 20908:1 20956:1 21003:1 21050:2 21079:2 21138:1 21146:4 21156:2 21227:1 21292:1 21345:4 21482:1 21488:1 21501:1 21537:1 21555:1 21598:1 21629:1 21630:1 21633:1 21683:1 21731:1 21810:1 21894:1 21906:1 21913:1 21938:1 21994:1 22082:1 22096:2 22132:2 22152:1 22189:1 22191:1 22212:4 22462:2 22614:1 22645:1 22658:1 22685:1 22710:1 22738:1 22783:1 22784:1 22860:2 22888:2 22903:1 22909:1 22957:1 22993:1 23011:1 23012:2 23032:1 23063:2 23114:1 23213:1 23246:2 23252:1 23254:2 23259:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23568:1 23600:1 23634:2 23659:1 23670:1 23703:3 23726:4 23754:3 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 24000:1 24010:2 24019:1 24025:1 24081:2 24133:2 24190:1 24230:1 24355:2 24369:1 24384:4 24417:1 24496:2 24691:1 24700:1 24725:2 24731:1 24812:2 24822:1 24853:1 24859:2 24863:1 24869:1 24952:2 25000:1 25006:1 25112:1 25166:1 25194:1 25314:1 25335:2 25350:2 25553:1 25594:1 25600:2 25612:1 25660:1 25685:1 25706:4 25795:2 25798:1 25810:1 25843:1 25878:1 25945:1 26038:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26240:1 26282:2 26302:1 26312:1 26358:1 26477:1 26519:1 26552:1 26563:1 26612:1 26668:1 26706:1 26743:1 26775:1 26874:1 26921:1 26932:1 26987:5 27036:1 27163:1 27215:1 27229:1 27284:5 27342:1 27349:1 27371:7 27372:1 27419:1 27458:1 27467:1 27478:1 27505:1 27559:1 27580:1 27653:1 27654:1 27687:1 27722:1 27726:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27954:1 28002:1 28034:1 28069:1 28074:1 28148:1 28240:1 28282:1 28314:1 28315:1 28323:1 28385:1 28502:1 28516:4 28541:1 28549:1 28565:1 28566:1 28584:1 28591:1 28604:1 28634:2 28653:1 28672:1 28720:1 28724:1 28776:1 28778:4 28820:1 28833:1 28935:1 28962:1 29021:1 29122:2 29172:1 29252:1 29301:1 29355:1 29422:1 29624:1 29704:2 29706:1 29752:2 29775:2 29777:1 29793:1 29887:2 18 7:1 22:1 132:1 196:4 217:1 218:1 235:1 257:1 270:2 288:1 331:1 363:1 534:1 600:1 613:1 622:1 626:1 651:1 660:1 693:1 702:1 759:1 769:2 783:1 798:1 902:1 928:2 956:1 957:1 980:1 1016:1 1073:1 1187:1 1236:4 1258:2 1259:1 1260:1 1262:1 1275:1 1292:2 1318:1 1406:1 1429:1 1430:1 1440:1 1473:2 1491:1 1523:2 1596:1 1598:1 1607:1 1680:1 1742:1 1745:3 1790:4 1833:1 1927:1 1931:1 1942:1 1964:1 1988:2 2022:1 2025:1 2030:1 2075:1 2076:1 2081:1 2084:3 2087:1 2131:1 2181:1 2200:1 2206:1 2232:2 2241:1 2246:1 2247:1 2251:1 2254:1 2259:1 2285:2 2297:1 2299:1 2301:1 2316:2 2333:1 2335:1 2348:8 2370:2 2418:3 2429:1 2461:1 2479:4 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2740:2 2741:1 2759:1 2791:1 2860:2 2967:2 2970:2 3004:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:1 3267:1 3319:1 3353:1 3373:1 3736:1 3748:1 3766:2 3789:1 3820:1 3865:1 3877:1 3879:1 3898:1 3907:2 3950:1 3999:2 4002:1 4065:1 4069:1 4115:1 4159:1 4231:1 4247:1 4315:1 4486:1 4521:2 4525:1 4563:1 4607:2 4667:2 4685:1 4726:1 4746:1 4812:1 4838:1 4850:1 4938:1 4990:2 5028:4 5031:1 5167:1 5181:1 5191:1 5268:1 5278:2 5330:1 5334:2 5394:1 5424:2 5457:1 5567:1 5580:1 5613:1 5628:1 5709:1 5724:2 5927:1 5939:1 6059:1 6090:1 6233:1 6260:1 6271:1 6281:1 6282:2 6299:2 6315:1 6338:2 6442:1 6484:1 6501:2 6515:1 6518:1 6519:2 6542:1 6609:1 6617:1 6626:1 6630:1 6765:1 6927:5 6949:1 6980:1 7063:1 7093:1 7097:1 7099:1 7134:1 7143:1 7204:1 7228:1 7240:1 7249:1 7306:1 7404:1 7437:1 7529:1 7606:2 7631:1 7687:1 7692:1 7721:3 7826:1 7935:1 7952:1 7971:1 7978:2 7995:2 8003:1 8004:2 8008:1 8023:1 8029:5 8089:1 8195:1 8377:1 8486:2 8513:1 8537:2 8565:2 8570:1 8572:1 8574:1 8705:1 8754:3 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8993:1 9045:2 9193:1 9201:1 9214:1 9223:1 9252:1 9260:1 9278:2 9329:1 9368:1 9409:1 9429:1 9519:1 9567:1 9689:1 9702:1 9736:1 9746:1 9771:1 9858:1 9876:3 9950:4 9997:1 10106:1 10175:1 10189:1 10215:1 10234:1 10262:1 10303:1 10331:8 10436:1 10480:1 10629:1 10642:1 10714:1 10721:2 10772:2 10871:3 10907:1 10922:1 10925:1 10964:1 10977:2 11012:1 11063:1 11068:2 11120:5 11264:2 11266:1 11289:1 11290:1 11305:1 11356:1 11416:1 11444:1 11465:1 11488:1 11499:1 11556:1 11711:1 11807:1 11894:1 11978:1 12002:1 12029:1 12040:2 12055:1 12069:1 12086:1 12089:2 12098:1 12124:1 12158:1 12376:1 12389:2 12416:1 12422:1 12433:2 12522:1 12534:1 12648:1 12695:2 12848:1 12972:2 13037:1 13064:2 13131:1 13145:1 13184:1 13272:1 13279:2 13338:1 13451:1 13482:1 13494:1 13551:4 13566:1 13574:1 13575:2 13645:1 13666:2 13695:1 13708:2 13726:1 13756:1 13783:1 13790:1 13816:1 13883:1 13894:1 13963:1 13968:1 14046:1 14054:2 14097:1 14107:1 14113:2 14130:1 14175:1 14209:1 14222:1 14260:1 14335:2 14393:1 14507:1 14677:1 14679:1 14686:1 14704:1 14740:1 14755:8 14757:2 14803:1 14808:1 14870:2 14875:1 14929:1 15035:1 15176:1 15189:2 15311:1 15316:2 15326:1 15352:1 15353:1 15411:4 15414:2 15582:1 15643:1 15656:2 15703:1 15755:1 15847:1 15918:4 15946:1 15970:1 16010:1 16054:2 16078:1 16089:1 16195:1 16241:1 16259:1 16292:1 16330:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:1 16575:1 16578:1 16604:2 16651:1 16653:1 16678:1 16799:1 16800:1 16892:1 16903:1 16920:1 16945:1 17035:1 17071:1 17121:1 17141:1 17146:4 17248:1 17334:1 17354:1 17357:1 17419:4 17450:2 17600:1 17620:2 17700:2 17715:1 17730:1 17757:1 17762:1 17814:1 17882:1 17908:2 17953:1 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:1 18027:1 18033:1 18037:1 18084:1 18135:1 18187:1 18197:2 18228:1 18238:2 18334:1 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18509:1 18527:1 18712:4 18749:1 18775:1 18812:4 18888:8 18990:1 19075:1 19162:8 19183:2 19214:775 19298:1 19345:1 19407:1 19441:1 19452:1 19455:1 19528:1 19674:1 19704:1 19765:1 19827:4 19863:1 19869:1 19885:1 19892:1 19915:1 19964:1 19970:2 19981:1 19985:1 20044:1 20062:1 20072:1 20094:1 20135:1 20160:7 20171:1 20197:3 20205:1 20282:1 20340:1 20504:1 20513:1 20524:1 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20749:1 20751:1 20773:1 20799:1 20811:1 20888:1 20908:1 20956:2 21003:1 21036:1 21050:2 21079:2 21138:1 21146:4 21156:2 21213:1 21227:1 21265:1 21292:1 21345:4 21457:1 21482:1 21488:1 21501:1 21537:1 21555:1 21598:1 21629:1 21630:1 21633:1 21683:1 21731:2 21810:1 21894:1 21906:1 21913:1 21938:1 21985:1 21994:1 22043:1 22082:1 22096:2 22132:2 22152:1 22189:1 22191:1 22212:4 22296:1 22404:1 22439:1 22462:2 22476:1 22606:1 22614:1 22645:1 22658:1 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22807:1 22860:2 22888:2 22903:1 22909:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:1 23063:2 23114:1 23213:1 23246:2 23252:1 23254:2 23259:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23568:1 23600:1 23634:2 23649:1 23659:1 23670:1 23703:3 23726:4 23754:3 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23967:1 24000:1 24010:2 24019:1 24025:1 24081:2 24133:2 24169:1 24190:1 24230:1 24355:2 24369:1 24384:4 24417:1 24426:1 24485:1 24496:2 24691:1 24700:1 24725:2 24731:1 24812:2 24822:1 24853:1 24859:2 24863:1 24869:1 24877:1 24952:2 25000:1 25006:1 25112:1 25166:1 25181:1 25194:1 25314:1 25335:2 25350:2 25425:1 25538:1 25553:1 25594:1 25600:2 25612:1 25633:1 25660:1 25685:1 25706:4 25718:1 25795:2 25798:1 25810:1 25843:1 25878:1 25945:1 26038:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26282:2 26302:1 26312:1 26358:1 26477:1 26519:1 26552:1 26563:1 26612:1 26668:1 26706:1 26743:1 26775:1 26874:1 26921:1 26932:1 26987:5 27036:1 27163:1 27184:1 27215:1 27229:1 27284:5 27342:1 27349:1 27371:8 27372:1 27419:1 27458:1 27467:1 27478:1 27505:1 27559:1 27580:1 27653:1 27654:1 27687:1 27722:1 27726:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27921:1 27954:1 27958:1 28002:1 28034:1 28036:1 28069:1 28074:1 28148:1 28240:1 28282:1 28314:1 28315:1 28323:1 28385:1 28502:1 28516:5 28524:1 28541:1 28549:1 28560:1 28565:1 28566:1 28584:1 28591:1 28604:1 28634:2 28653:1 28660:1 28672:1 28720:1 28724:1 28776:1 28778:4 28811:1 28820:1 28833:1 28935:1 28962:1 29021:1 29122:2 29172:1 29250:1 29252:1 29301:1 29355:1 29422:2 29624:1 29661:1 29685:1 29704:2 29706:1 29752:2 29768:1 29775:2 29777:1 29793:1 29887:2 18 7:1 22:1 68:1 132:1 196:4 217:1 218:1 235:1 257:1 270:2 272:1 288:1 331:2 363:1 534:1 600:1 613:1 622:1 626:1 651:1 660:1 693:1 702:1 752:1 759:1 769:2 783:1 798:1 902:1 928:2 956:1 957:1 980:1 1016:1 1073:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1318:1 1406:1 1422:1 1429:1 1430:1 1440:1 1473:2 1491:1 1523:2 1596:1 1598:1 1607:1 1680:1 1742:1 1745:3 1790:4 1833:1 1927:1 1931:1 1942:1 1964:1 1988:2 2022:1 2025:1 2030:1 2075:1 2076:1 2081:1 2084:3 2087:1 2106:1 2131:1 2181:1 2200:1 2206:1 2232:2 2241:1 2246:1 2247:1 2251:2 2254:1 2259:1 2285:2 2297:1 2299:1 2301:1 2316:2 2333:1 2335:1 2348:9 2370:2 2418:4 2429:1 2459:1 2461:1 2479:4 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2740:2 2741:1 2759:1 2791:1 2860:2 2871:1 2967:2 2970:3 3004:1 3017:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:2 3267:1 3319:1 3324:1 3353:1 3373:1 3402:1 3736:1 3748:1 3766:2 3789:1 3820:1 3828:1 3865:1 3877:1 3879:1 3898:1 3907:2 3950:1 3999:2 4002:1 4012:1 4065:1 4069:1 4115:1 4122:1 4137:1 4159:1 4231:1 4247:1 4315:1 4486:1 4521:2 4525:1 4563:1 4607:2 4667:2 4685:2 4707:1 4726:1 4746:1 4812:1 4838:1 4850:1 4928:1 4938:1 4990:2 5028:4 5031:1 5138:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:1 5334:2 5394:1 5424:2 5457:1 5478:1 5567:1 5580:1 5613:1 5619:1 5628:1 5677:1 5709:1 5724:2 5752:1 5927:1 5939:1 6059:2 6090:1 6233:1 6260:1 6271:1 6281:1 6282:2 6299:2 6315:1 6338:2 6442:2 6484:1 6501:3 6515:1 6518:1 6519:2 6542:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:1 6927:5 6949:1 6980:1 7063:1 7093:1 7097:1 7099:1 7134:1 7143:1 7204:1 7228:1 7240:1 7249:1 7306:1 7352:1 7404:1 7437:1 7529:1 7606:2 7631:1 7687:1 7692:2 7721:3 7826:1 7935:1 7952:1 7971:1 7978:2 7995:2 8003:1 8004:2 8008:1 8016:1 8023:1 8029:5 8044:1 8089:1 8195:1 8222:1 8335:1 8377:1 8422:1 8486:2 8513:2 8537:2 8565:2 8570:1 8572:1 8574:1 8705:1 8743:1 8754:3 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8993:1 9045:2 9193:1 9201:1 9214:1 9223:1 9252:1 9260:1 9278:2 9310:1 9329:2 9368:1 9409:1 9429:1 9519:1 9567:1 9689:1 9702:1 9736:1 9746:1 9771:1 9858:1 9876:3 9950:4 9997:1 10024:1 10106:1 10154:1 10175:1 10189:1 10215:1 10231:1 10234:1 10262:1 10295:1 10303:1 10331:9 10417:1 10436:1 10480:1 10629:1 10642:1 10714:2 10721:2 10772:2 10811:1 10871:3 10891:1 10907:1 10922:1 10925:1 10964:1 10977:2 11012:1 11063:1 11068:2 11120:5 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11444:1 11456:1 11465:1 11488:1 11499:1 11556:1 11618:1 11711:1 11760:1 11807:1 11894:1 11978:1 12002:1 12029:1 12040:2 12055:1 12069:1 12086:1 12089:2 12098:1 12119:1 12124:1 12158:1 12341:1 12376:1 12389:2 12416:1 12422:1 12433:2 12522:1 12534:1 12648:1 12675:1 12695:2 12848:1 12972:2 13037:1 13064:2 13090:1 13131:1 13145:1 13184:1 13272:1 13279:2 13338:1 13451:1 13482:1 13494:1 13551:4 13566:1 13574:1 13575:2 13645:1 13666:2 13695:1 13708:2 13726:1 13756:1 13783:1 13790:1 13816:1 13883:1 13894:1 13963:1 13968:1 14046:1 14054:2 14090:1 14097:1 14107:1 14113:3 14130:1 14175:1 14209:1 14222:1 14260:1 14335:2 14393:1 14507:1 14677:1 14679:1 14686:1 14704:1 14740:1 14755:9 14757:2 14803:1 14808:1 14870:2 14875:1 14929:1 15035:1 15089:1 15176:1 15189:2 15311:1 15316:2 15326:1 15352:1 15353:1 15354:1 15410:1 15411:4 15414:2 15480:1 15582:1 15643:1 15656:2 15703:1 15755:1 15823:1 15847:1 15918:4 15946:1 15970:1 16010:1 16054:2 16078:1 16089:1 16195:1 16241:1 16259:1 16292:1 16330:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:2 16575:1 16578:1 16604:2 16651:1 16653:1 16678:1 16701:1 16786:1 16799:1 16800:1 16874:1 16892:1 16903:1 16920:1 16945:1 17035:1 17071:1 17080:1 17121:1 17141:1 17146:4 17191:1 17248:1 17334:1 17354:1 17357:1 17410:1 17419:4 17450:2 17600:1 17620:2 17700:2 17715:1 17730:1 17757:2 17762:1 17814:1 17882:1 17908:2 17953:1 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:1 18027:1 18033:1 18037:1 18084:1 18135:1 18187:1 18197:2 18228:1 18238:2 18257:1 18265:1 18323:1 18334:1 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18509:1 18527:1 18602:1 18679:1 18712:4 18749:1 18775:1 18812:4 18888:9 18990:1 19030:1 19075:1 19162:9 19183:2 19214:877 19298:1 19345:1 19407:1 19431:1 19441:1 19452:1 19455:1 19528:1 19674:1 19680:1 19704:1 19765:1 19827:4 19863:1 19869:1 19885:1 19892:1 19915:1 19964:1 19970:2 19981:1 19985:1 20044:1 20062:2 20072:1 20094:1 20100:1 20103:1 20135:1 20160:7 20171:1 20197:3 20205:1 20282:1 20289:1 20340:1 20346:1 20498:1 20504:1 20513:1 20524:1 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20888:1 20908:1 20956:2 21003:1 21036:1 21050:2 21079:2 21138:1 21146:4 21156:2 21213:1 21227:1 21265:1 21292:1 21314:1 21345:5 21411:1 21457:1 21482:1 21488:1 21501:1 21537:1 21555:1 21598:1 21629:1 21630:2 21633:1 21683:1 21723:1 21731:3 21787:1 21810:1 21880:1 21894:1 21906:1 21913:1 21938:1 21985:1 21994:1 22043:1 22082:1 22096:2 22132:2 22152:1 22189:1 22191:1 22212:4 22296:1 22404:1 22439:1 22462:2 22476:1 22606:1 22614:1 22645:1 22658:1 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22807:1 22860:2 22879:1 22888:2 22903:1 22909:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:1 23063:2 23114:1 23211:1 23213:1 23246:2 23252:1 23254:2 23259:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23527:1 23568:1 23600:1 23634:2 23649:1 23659:1 23670:2 23696:1 23703:3 23726:4 23754:3 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23967:1 24000:1 24010:2 24019:1 24025:1 24081:2 24133:2 24169:1 24190:1 24230:2 24355:2 24369:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24691:1 24700:2 24725:2 24731:1 24812:2 24822:1 24853:1 24859:2 24863:1 24869:1 24877:1 24952:2 25000:1 25006:1 25112:1 25122:1 25145:1 25163:1 25166:1 25181:1 25194:1 25314:2 25335:2 25350:2 25425:1 25538:1 25553:1 25594:1 25600:2 25612:1 25633:1 25660:1 25685:1 25706:4 25718:1 25795:2 25798:1 25810:1 25843:1 25878:1 25945:1 26038:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26282:2 26302:1 26312:2 26358:1 26477:1 26519:1 26552:1 26563:1 26612:1 26668:1 26706:1 26743:1 26775:1 26874:1 26921:1 26932:1 26987:5 27007:1 27036:1 27163:1 27184:1 27194:1 27215:1 27229:1 27284:5 27342:1 27349:1 27371:9 27372:1 27401:1 27419:1 27458:1 27467:2 27478:1 27505:1 27559:1 27580:1 27653:1 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27921:1 27954:1 27958:1 28002:1 28034:1 28036:2 28069:1 28074:1 28147:1 28148:1 28240:1 28282:1 28314:1 28315:1 28323:1 28385:1 28418:1 28502:1 28516:5 28524:1 28541:1 28549:1 28560:1 28565:1 28566:1 28584:1 28591:1 28604:1 28634:2 28645:1 28653:1 28660:1 28672:1 28720:1 28724:1 28776:1 28778:4 28811:1 28820:1 28833:1 28920:1 28935:1 28957:1 28962:1 29021:1 29122:2 29172:1 29210:1 29250:1 29252:1 29301:1 29355:1 29358:1 29422:2 29624:1 29661:1 29685:1 29704:2 29706:1 29752:2 29768:1 29775:2 29777:1 29793:1 29822:1 29887:2 18 7:1 22:1 68:1 132:1 196:4 217:1 218:1 235:2 257:1 270:2 272:1 288:1 331:2 363:1 534:1 600:1 613:1 622:1 626:1 651:1 660:1 685:1 693:1 702:1 752:1 759:1 769:2 783:1 798:1 902:1 928:3 956:1 957:1 980:1 1016:1 1073:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1318:1 1406:1 1422:1 1429:1 1430:1 1436:1 1440:1 1473:2 1491:1 1523:2 1527:1 1531:1 1596:2 1598:1 1607:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1927:1 1931:1 1942:2 1964:1 1988:2 2022:1 2025:1 2030:1 2075:1 2076:1 2081:1 2084:3 2087:1 2106:1 2123:1 2131:1 2181:1 2200:1 2206:1 2232:3 2241:1 2246:1 2247:1 2251:2 2254:1 2259:1 2285:2 2295:1 2297:1 2299:1 2301:1 2307:1 2316:2 2318:2 2333:1 2335:2 2348:9 2370:2 2418:4 2429:1 2459:1 2461:1 2479:4 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:2 2871:1 2967:2 2970:3 3004:1 3017:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:3 3267:1 3319:1 3324:1 3353:1 3373:1 3402:1 3413:1 3736:1 3748:1 3766:2 3789:1 3820:1 3828:1 3865:1 3877:1 3879:1 3898:1 3905:1 3907:2 3950:1 3999:2 4002:1 4012:1 4065:1 4069:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:1 4183:1 4220:1 4231:1 4247:1 4315:1 4486:1 4521:2 4525:1 4563:1 4607:2 4667:2 4685:2 4707:1 4726:1 4746:1 4812:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:2 5028:5 5031:1 5049:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:1 5334:2 5394:1 5424:2 5453:1 5457:1 5466:1 5478:1 5537:2 5567:1 5580:1 5613:1 5619:1 5628:1 5677:1 5709:1 5724:2 5752:1 5927:1 5939:1 5995:1 6059:2 6090:1 6233:1 6260:2 6271:1 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:2 6484:1 6501:3 6515:2 6518:1 6519:2 6542:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:1 6797:2 6927:5 6949:1 6980:1 7063:1 7093:1 7097:2 7099:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7404:1 7437:1 7529:1 7606:2 7631:1 7687:1 7692:2 7721:3 7826:1 7902:1 7935:1 7952:1 7971:1 7978:2 7995:2 8003:1 8004:2 8008:1 8016:1 8023:1 8029:8 8044:1 8089:1 8195:1 8216:1 8222:1 8335:1 8377:1 8422:1 8486:2 8513:3 8537:2 8565:2 8570:1 8572:1 8574:1 8705:1 8743:1 8754:3 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8993:1 9045:2 9074:2 9193:1 9201:1 9214:1 9223:1 9252:1 9260:1 9278:2 9310:1 9329:2 9368:1 9409:1 9429:1 9519:1 9567:1 9689:1 9702:1 9736:1 9746:1 9765:1 9771:1 9858:1 9876:3 9950:4 9997:1 10024:1 10106:1 10154:1 10175:1 10189:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:1 10295:1 10303:1 10331:9 10417:1 10436:1 10480:1 10547:2 10629:1 10642:1 10714:2 10721:2 10772:2 10811:1 10871:3 10891:1 10907:1 10922:1 10925:1 10964:2 10977:2 10994:1 11012:1 11063:1 11068:2 11120:5 11137:1 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11444:1 11456:1 11465:1 11488:1 11499:1 11556:1 11618:1 11711:1 11760:1 11807:1 11894:1 11978:1 11987:1 12002:1 12029:1 12040:2 12055:1 12067:1 12069:1 12086:1 12089:2 12098:1 12111:1 12116:1 12119:1 12124:1 12158:1 12210:1 12341:1 12376:1 12389:2 12416:1 12422:1 12433:2 12522:1 12534:1 12556:1 12648:1 12675:1 12695:2 12848:1 12972:2 13037:1 13064:2 13090:1 13131:1 13145:1 13184:1 13265:1 13272:1 13279:2 13338:1 13451:1 13482:1 13494:1 13520:1 13551:4 13566:1 13574:1 13575:2 13637:1 13645:1 13666:2 13695:1 13708:2 13726:1 13756:1 13783:1 13790:1 13816:1 13883:1 13894:1 13963:1 13968:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14113:3 14130:1 14175:1 14209:1 14222:1 14260:1 14300:1 14335:2 14393:1 14507:1 14592:2 14677:1 14679:1 14686:1 14704:1 14740:1 14755:9 14757:2 14803:1 14808:1 14870:2 14875:1 14929:1 15035:1 15089:1 15176:1 15189:2 15290:1 15311:1 15316:2 15326:1 15352:1 15353:1 15354:2 15410:1 15411:4 15414:2 15480:1 15483:1 15512:1 15582:1 15627:1 15643:1 15656:2 15703:1 15755:1 15823:1 15847:1 15918:5 15929:1 15937:1 15946:1 15970:1 16010:1 16054:2 16078:1 16089:1 16195:1 16221:1 16241:1 16259:1 16292:1 16330:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:2 16575:1 16578:1 16604:2 16612:1 16651:1 16653:1 16678:1 16695:1 16701:1 16786:1 16799:1 16800:1 16874:1 16892:1 16902:1 16903:1 16920:1 16945:1 17035:1 17071:1 17080:1 17121:1 17141:1 17146:4 17191:1 17248:1 17334:1 17354:1 17357:1 17410:1 17419:5 17439:1 17450:2 17600:1 17620:2 17700:2 17715:1 17730:1 17757:2 17762:1 17814:1 17882:1 17908:2 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:1 18027:1 18033:1 18037:1 18072:1 18084:1 18089:1 18135:1 18187:1 18195:1 18197:2 18228:1 18238:2 18257:1 18265:1 18323:1 18334:1 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18497:1 18509:1 18527:1 18602:1 18670:1 18679:1 18712:4 18749:1 18775:1 18812:4 18888:9 18990:1 19007:1 19030:1 19075:1 19162:9 19183:2 19214:1001 19298:1 19308:1 19345:1 19373:2 19407:1 19431:1 19441:1 19452:1 19455:1 19469:1 19528:1 19674:1 19680:1 19704:1 19765:1 19827:4 19863:1 19869:1 19885:1 19892:1 19915:1 19964:1 19970:2 19981:1 19985:2 20044:2 20062:3 20072:1 20093:1 20094:1 20100:1 20103:1 20135:1 20160:8 20171:1 20197:3 20205:2 20282:1 20289:2 20340:1 20346:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20888:1 20908:1 20956:2 21003:1 21004:1 21036:1 21050:2 21079:2 21138:1 21146:4 21156:2 21213:1 21227:1 21265:1 21292:1 21314:1 21328:1 21345:5 21411:1 21457:1 21482:1 21488:1 21501:1 21537:1 21555:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21683:1 21723:1 21731:3 21759:1 21787:1 21810:1 21880:1 21892:1 21894:2 21906:1 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:2 22096:2 22132:2 22152:1 22189:1 22191:1 22212:4 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22569:2 22606:1 22614:1 22645:1 22658:1 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22860:2 22879:1 22888:2 22903:1 22909:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:1 23063:2 23091:1 23114:1 23211:1 23213:1 23246:2 23252:1 23254:2 23259:1 23265:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23527:1 23568:1 23600:1 23634:2 23649:1 23659:1 23670:3 23696:1 23703:3 23726:4 23754:3 23794:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:1 23967:1 24000:1 24010:2 24019:1 24025:1 24066:1 24081:2 24084:1 24133:2 24169:1 24190:1 24230:2 24355:2 24369:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24633:1 24691:1 24700:2 24710:1 24716:1 24725:2 24731:1 24812:2 24822:1 24853:1 24859:2 24863:1 24869:1 24877:2 24952:2 25000:1 25006:1 25112:1 25122:1 25145:1 25149:1 25163:1 25166:1 25181:1 25194:1 25305:1 25314:2 25335:2 25350:2 25425:1 25538:1 25553:1 25584:1 25594:1 25600:2 25612:1 25633:1 25660:1 25685:1 25706:4 25718:1 25795:2 25798:1 25810:1 25843:1 25878:1 25909:1 25945:1 26038:1 26043:1 26062:1 26065:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26282:2 26302:1 26312:3 26358:1 26477:1 26519:1 26535:1 26552:1 26563:1 26612:1 26668:1 26690:1 26706:1 26743:2 26775:1 26874:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:1 27163:1 27174:1 27184:2 27194:1 27207:2 27215:1 27229:1 27284:5 27342:1 27349:1 27371:9 27372:1 27401:1 27419:1 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27653:1 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27954:1 27958:1 28002:1 28034:1 28036:2 28069:1 28074:1 28147:1 28148:1 28195:2 28240:1 28282:1 28314:1 28315:1 28323:1 28385:1 28418:1 28465:1 28502:1 28516:5 28524:1 28541:1 28549:1 28560:1 28565:1 28566:1 28584:1 28591:1 28604:1 28617:1 28634:2 28645:1 28653:1 28660:1 28672:1 28695:1 28720:1 28724:1 28776:1 28778:4 28811:1 28820:1 28824:1 28833:1 28920:1 28935:1 28957:1 28962:1 29021:1 29122:2 29172:1 29210:1 29227:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29624:1 29636:1 29661:1 29685:1 29704:2 29706:1 29752:2 29768:1 29775:2 29777:1 29793:1 29822:1 29887:2 18 7:1 22:1 68:1 132:1 196:4 213:1 217:1 218:1 235:2 257:1 270:2 272:1 288:1 331:2 363:1 534:1 600:1 613:1 622:1 626:1 651:1 660:1 685:1 693:1 702:4 737:1 752:1 759:1 769:2 783:1 798:1 902:1 928:3 956:1 957:2 980:1 982:1 1016:1 1073:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:1 1406:1 1422:1 1429:1 1430:1 1436:1 1440:1 1473:2 1491:1 1523:2 1524:1 1527:1 1531:1 1596:3 1598:1 1607:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1927:1 1931:1 1942:2 1964:1 1988:2 2022:1 2025:1 2030:1 2075:1 2076:1 2081:1 2084:3 2087:1 2106:1 2123:1 2131:1 2181:1 2200:1 2206:1 2232:3 2241:1 2246:1 2247:1 2251:2 2254:1 2259:1 2285:2 2295:1 2297:1 2299:1 2301:1 2307:1 2308:1 2316:2 2318:2 2333:1 2335:2 2348:9 2370:2 2418:4 2429:1 2459:1 2461:1 2479:4 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:2 2871:1 2967:2 2970:3 3004:1 3017:1 3025:1 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:3 3267:1 3319:1 3324:1 3353:1 3365:1 3373:1 3374:1 3402:1 3413:1 3615:1 3736:1 3748:1 3766:2 3789:1 3820:1 3828:1 3829:1 3865:1 3877:2 3879:1 3898:1 3905:1 3907:2 3950:1 3987:1 3999:2 4002:1 4012:1 4065:1 4069:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:1 4183:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4486:2 4521:2 4525:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:1 4726:1 4746:1 4778:1 4812:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:2 5028:5 5031:1 5049:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:1 5334:2 5394:2 5424:2 5453:1 5457:1 5466:1 5478:1 5537:3 5567:1 5580:1 5613:1 5619:1 5628:1 5677:1 5709:1 5718:1 5724:2 5752:1 5927:1 5939:1 5995:1 6059:2 6090:1 6233:1 6260:2 6271:1 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:3 6484:1 6501:3 6515:2 6518:1 6519:2 6542:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:1 6797:3 6927:5 6949:1 6980:1 7063:1 7093:1 7097:2 7099:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7404:1 7437:1 7529:2 7606:3 7631:1 7687:1 7692:2 7721:3 7826:1 7902:1 7935:1 7952:1 7971:1 7978:2 7995:2 8003:1 8004:2 8008:1 8016:1 8023:1 8029:9 8044:1 8089:1 8195:1 8216:1 8222:1 8335:1 8377:1 8422:1 8486:2 8513:3 8537:2 8565:2 8570:1 8572:2 8574:1 8705:1 8743:1 8754:3 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8993:1 9037:1 9045:2 9074:2 9193:1 9201:1 9214:1 9223:1 9252:1 9260:1 9278:2 9310:1 9319:1 9329:2 9368:1 9409:1 9429:1 9519:1 9567:1 9689:1 9702:1 9736:1 9746:1 9765:1 9771:1 9858:1 9876:3 9896:1 9950:4 9997:1 10012:1 10024:1 10058:1 10106:1 10154:1 10175:1 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:2 10295:1 10303:1 10331:9 10417:1 10436:1 10480:1 10547:2 10629:1 10642:1 10714:2 10721:2 10725:1 10772:2 10811:1 10871:3 10891:1 10907:1 10922:1 10925:1 10964:2 10977:2 10994:2 11012:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11444:1 11456:1 11465:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11807:1 11894:1 11966:1 11978:1 11987:1 12002:1 12029:1 12040:2 12055:1 12067:1 12069:1 12086:1 12089:2 12098:2 12111:1 12116:1 12119:2 12124:1 12158:1 12210:1 12258:1 12341:1 12376:1 12389:2 12416:1 12422:1 12433:2 12522:1 12534:1 12556:1 12648:1 12675:1 12695:2 12848:1 12972:2 13037:1 13064:2 13090:1 13131:1 13145:1 13184:1 13265:1 13272:1 13279:2 13338:1 13451:1 13482:1 13494:1 13520:1 13551:4 13566:1 13574:1 13575:2 13637:1 13645:1 13666:2 13695:1 13700:1 13708:2 13726:1 13756:1 13783:1 13790:1 13816:1 13883:1 13894:1 13963:1 13968:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14113:3 14130:2 14175:1 14209:1 14222:1 14260:1 14300:1 14335:2 14393:1 14507:1 14592:3 14677:1 14679:1 14686:1 14704:1 14740:1 14755:9 14757:2 14803:1 14808:1 14870:2 14875:1 14928:1 14929:1 15035:1 15089:1 15176:1 15189:2 15290:1 15311:1 15316:2 15326:1 15352:1 15353:1 15354:2 15410:1 15411:4 15414:2 15480:1 15483:1 15512:1 15582:1 15627:1 15643:1 15656:3 15703:1 15755:1 15817:2 15823:1 15847:1 15918:5 15929:1 15937:1 15946:1 15970:1 16010:1 16054:2 16078:1 16089:1 16195:1 16221:1 16241:1 16259:1 16288:1 16292:2 16330:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:3 16575:1 16578:1 16604:2 16612:2 16651:1 16653:1 16678:1 16695:1 16701:1 16753:1 16786:1 16799:1 16800:1 16874:1 16892:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17071:1 17080:1 17121:1 17141:1 17146:4 17191:1 17248:1 17284:1 17334:1 17354:1 17357:1 17410:1 17419:5 17439:1 17450:2 17600:1 17620:2 17700:2 17715:1 17718:1 17730:1 17757:2 17762:1 17814:1 17882:1 17908:2 17924:1 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:2 18020:2 18027:1 18033:1 18037:1 18072:1 18084:1 18089:1 18135:1 18187:1 18195:1 18197:2 18228:2 18238:2 18257:1 18265:1 18323:1 18334:1 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18497:1 18509:1 18527:1 18602:1 18670:1 18679:1 18712:4 18749:1 18775:1 18812:4 18888:9 18990:2 19007:1 19030:1 19075:1 19162:9 19183:2 19214:1134 19298:1 19308:1 19342:1 19345:1 19373:2 19396:1 19407:1 19431:1 19441:1 19452:1 19455:1 19469:1 19528:1 19674:1 19680:1 19704:1 19765:1 19827:4 19863:1 19869:1 19885:1 19892:1 19915:1 19956:1 19964:1 19970:2 19981:1 19985:3 20044:3 20062:3 20072:1 20093:1 20094:1 20100:1 20103:1 20135:1 20160:8 20171:1 20197:3 20205:2 20282:1 20289:2 20340:1 20346:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20888:1 20908:1 20956:2 20993:1 21003:1 21004:1 21036:1 21050:2 21079:2 21109:1 21138:1 21146:4 21156:2 21213:1 21227:1 21265:1 21292:1 21314:1 21328:1 21345:5 21411:1 21457:1 21482:1 21488:1 21501:1 21537:1 21555:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21683:1 21723:1 21731:3 21759:1 21787:1 21810:1 21880:1 21892:1 21894:2 21906:1 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22152:1 22189:1 22191:1 22204:1 22212:4 22240:1 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22515:1 22569:3 22606:1 22614:1 22645:1 22658:1 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22860:2 22879:1 22888:2 22903:1 22909:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:1 23063:2 23091:1 23114:1 23211:1 23213:1 23246:2 23252:1 23254:2 23259:1 23265:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23527:1 23568:1 23600:1 23634:2 23649:1 23659:1 23670:3 23696:1 23703:3 23717:1 23726:4 23754:3 23794:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:1 23967:1 24000:1 24010:2 24019:1 24025:2 24066:1 24081:2 24084:1 24133:2 24169:1 24190:1 24230:2 24355:2 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24633:1 24691:1 24699:1 24700:2 24710:1 24716:1 24725:2 24731:1 24812:2 24822:1 24853:1 24859:2 24863:1 24869:1 24877:3 24952:2 25000:1 25006:1 25112:1 25122:1 25145:1 25149:1 25163:1 25166:1 25181:1 25194:1 25305:1 25314:3 25335:2 25350:2 25385:1 25425:1 25538:1 25553:1 25584:2 25594:1 25600:2 25612:1 25633:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:2 25798:1 25810:1 25843:1 25878:1 25909:1 25945:1 26038:1 26043:1 26062:1 26065:1 26076:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26282:2 26302:1 26312:3 26358:1 26416:1 26477:1 26519:1 26535:1 26552:1 26563:1 26612:1 26623:1 26668:1 26690:1 26706:1 26743:2 26754:1 26775:1 26874:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:1 27163:1 27174:1 27184:2 27194:1 27207:3 27215:1 27229:1 27284:5 27342:1 27349:1 27371:9 27372:1 27401:1 27419:1 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28147:1 28148:1 28157:1 28195:3 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28385:1 28418:1 28465:1 28502:1 28516:5 28524:1 28541:1 28549:1 28560:1 28565:1 28566:1 28584:1 28591:1 28604:1 28617:1 28634:2 28645:1 28653:1 28660:1 28672:1 28695:1 28720:1 28724:1 28776:1 28778:4 28811:1 28820:1 28824:1 28833:1 28920:1 28935:2 28957:1 28962:1 29021:1 29122:2 29172:1 29210:2 29227:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29439:1 29512:1 29624:1 29636:2 29661:1 29685:1 29704:2 29706:1 29752:2 29754:1 29768:1 29775:2 29777:1 29793:1 29822:1 29887:2 18 7:1 22:1 68:1 132:1 196:4 213:1 217:1 218:1 222:1 235:2 257:1 270:2 272:1 288:1 331:2 363:1 394:1 534:1 598:1 600:1 613:1 622:1 626:1 651:1 660:1 685:1 693:1 702:4 717:1 737:1 752:1 759:1 769:2 783:1 798:1 902:1 928:3 944:1 956:1 957:2 980:1 982:1 1016:1 1073:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:1 1406:1 1422:1 1429:1 1430:1 1436:1 1440:1 1473:2 1491:1 1523:2 1524:1 1527:1 1531:1 1596:3 1598:1 1607:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1927:1 1931:1 1942:2 1964:1 1988:2 2022:1 2025:1 2030:1 2075:1 2076:1 2081:1 2084:4 2087:1 2106:1 2123:1 2131:1 2181:1 2200:1 2206:1 2232:3 2241:1 2246:1 2247:1 2251:2 2254:1 2258:1 2259:1 2285:2 2286:1 2295:1 2297:1 2299:1 2301:1 2307:1 2308:1 2316:2 2318:3 2333:1 2335:2 2348:10 2370:2 2418:4 2429:1 2459:1 2461:1 2479:4 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:3 2871:1 2967:2 2970:3 3004:1 3017:2 3025:1 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:3 3267:1 3319:1 3324:1 3353:1 3365:1 3373:1 3374:1 3402:1 3410:2 3413:1 3431:1 3456:1 3615:1 3631:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3865:1 3877:2 3879:1 3898:1 3905:1 3907:2 3931:1 3944:1 3950:1 3987:1 3999:2 4002:1 4012:1 4065:1 4069:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:1 4183:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4449:1 4486:2 4521:2 4525:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:1 4726:1 4745:1 4746:1 4778:1 4812:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5028:6 5031:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:1 5334:2 5394:2 5424:2 5453:1 5457:1 5466:1 5478:1 5537:3 5567:1 5580:1 5613:1 5619:1 5628:1 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5823:1 5927:1 5939:1 5995:1 6059:2 6070:1 6090:1 6233:1 6260:2 6271:1 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:3 6484:1 6501:3 6515:2 6517:1 6518:1 6519:2 6542:1 6602:1 6603:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:1 6797:3 6927:5 6949:1 6980:2 7063:1 7093:1 7097:2 7099:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7404:1 7437:1 7529:2 7606:3 7631:1 7687:1 7692:2 7721:4 7826:1 7883:1 7902:1 7935:2 7952:1 7971:1 7975:1 7978:3 7995:2 7997:1 8003:1 8004:2 8008:1 8016:1 8023:1 8029:9 8044:2 8089:1 8195:1 8216:1 8222:1 8335:1 8377:1 8422:1 8486:2 8513:4 8537:2 8565:3 8570:1 8572:2 8574:1 8602:1 8705:1 8743:1 8754:4 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9193:1 9201:1 9214:1 9223:1 9250:1 9252:1 9260:1 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9375:1 9409:2 9429:1 9519:1 9567:1 9689:1 9702:1 9736:1 9746:1 9765:1 9771:1 9858:1 9876:3 9896:1 9950:4 9997:1 10012:1 10024:1 10058:1 10106:1 10154:1 10175:1 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:2 10295:1 10303:1 10331:10 10417:1 10436:1 10480:1 10547:2 10629:1 10642:1 10714:2 10721:2 10725:1 10772:2 10796:1 10811:1 10871:4 10891:1 10907:1 10922:1 10925:1 10964:2 10977:2 10994:2 11012:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11251:1 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11444:1 11456:1 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11807:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:1 12029:1 12040:2 12042:1 12055:1 12067:1 12069:1 12086:1 12089:3 12098:2 12111:1 12116:1 12119:2 12124:1 12158:1 12210:1 12258:1 12341:1 12376:1 12389:2 12409:1 12416:1 12422:1 12433:2 12520:1 12522:1 12534:1 12556:1 12648:1 12675:1 12695:2 12848:1 12972:2 13037:1 13064:2 13090:1 13131:1 13145:1 13184:1 13265:1 13272:1 13279:3 13317:1 13338:1 13451:1 13482:1 13494:1 13520:1 13551:4 13566:1 13574:1 13575:2 13637:1 13645:1 13666:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13783:1 13790:2 13816:1 13883:1 13894:1 13963:1 13968:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14113:3 14130:2 14175:1 14209:1 14222:1 14260:1 14300:1 14335:2 14393:1 14402:1 14507:1 14592:3 14677:1 14679:1 14686:1 14704:1 14709:1 14740:1 14755:10 14757:2 14803:1 14808:1 14870:2 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:1 15189:2 15290:1 15311:1 15316:2 15326:1 15352:1 15353:1 15354:2 15410:1 15411:5 15414:2 15480:1 15483:1 15512:2 15582:1 15592:1 15627:1 15643:1 15656:3 15703:1 15755:1 15817:2 15823:1 15836:1 15847:1 15918:5 15929:1 15937:1 15946:1 15970:1 16010:1 16054:2 16078:1 16089:1 16195:1 16221:1 16241:1 16259:2 16288:1 16292:2 16330:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:3 16575:1 16578:1 16604:2 16612:2 16651:1 16653:1 16678:1 16695:2 16701:1 16722:1 16753:1 16786:1 16799:1 16800:1 16874:1 16892:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17071:1 17080:1 17108:1 17121:1 17141:1 17146:4 17191:1 17248:1 17284:1 17334:1 17354:1 17357:1 17410:1 17419:5 17439:2 17450:2 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17730:1 17757:2 17762:1 17814:1 17882:1 17908:2 17924:1 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:2 18020:2 18027:1 18033:2 18037:1 18072:2 18084:1 18089:1 18135:1 18187:1 18195:1 18197:2 18228:2 18238:2 18257:1 18265:1 18323:1 18334:1 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18497:1 18509:1 18527:1 18602:1 18670:1 18679:1 18712:5 18721:1 18749:1 18775:1 18812:4 18869:1 18888:10 18975:1 18990:2 19007:1 19030:1 19075:1 19162:10 19183:2 19214:1241 19298:1 19308:1 19342:1 19345:1 19373:2 19396:1 19407:1 19431:1 19441:1 19452:1 19455:1 19469:1 19528:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19863:2 19869:1 19885:1 19892:1 19915:1 19956:1 19964:1 19970:2 19981:1 19985:3 20044:3 20062:3 20072:1 20093:2 20094:1 20100:1 20103:1 20135:1 20146:1 20160:8 20171:1 20197:3 20205:2 20282:1 20289:2 20309:1 20340:1 20346:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20712:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20832:1 20860:1 20888:1 20908:1 20956:2 20993:1 21003:1 21004:1 21036:1 21050:2 21055:1 21079:2 21109:1 21138:1 21146:4 21156:2 21213:1 21227:1 21265:1 21292:1 21314:1 21323:1 21328:1 21345:5 21401:1 21411:1 21457:1 21482:1 21488:1 21501:1 21537:1 21555:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21683:1 21723:1 21731:3 21759:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:1 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22152:2 22189:1 22190:1 22191:1 22204:1 22212:4 22240:1 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:1 22515:1 22542:1 22569:3 22606:1 22614:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22860:2 22879:1 22888:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:1 23063:2 23091:1 23114:1 23211:1 23213:2 23246:2 23252:1 23254:2 23259:1 23265:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23527:1 23568:1 23600:1 23634:2 23649:1 23659:1 23670:3 23696:1 23703:4 23717:1 23726:4 23754:3 23778:1 23794:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:1 23967:1 24000:1 24010:2 24019:1 24025:2 24066:1 24081:2 24084:1 24133:2 24169:1 24190:1 24230:2 24291:1 24355:2 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24633:1 24663:1 24691:1 24699:1 24700:2 24710:1 24716:1 24725:2 24731:1 24812:2 24822:1 24834:1 24853:1 24859:2 24863:1 24869:1 24877:3 24952:2 25000:1 25006:1 25112:1 25122:1 25145:1 25149:1 25154:1 25163:1 25166:1 25181:1 25194:1 25305:1 25314:3 25335:2 25350:2 25385:1 25425:1 25440:1 25538:1 25553:1 25584:3 25594:1 25600:2 25612:1 25633:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:2 25798:1 25810:1 25843:1 25878:1 25909:2 25945:1 25948:1 26026:1 26038:1 26043:1 26062:1 26065:1 26076:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26282:2 26302:1 26312:3 26358:1 26416:1 26477:1 26519:1 26535:1 26552:1 26563:1 26605:1 26612:1 26623:1 26668:1 26690:1 26706:2 26743:2 26754:1 26775:1 26874:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:1 27163:1 27174:1 27184:4 27194:1 27207:3 27215:2 27229:1 27255:1 27284:5 27342:1 27349:1 27371:10 27372:1 27401:1 27419:1 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28147:1 28148:1 28157:1 28195:3 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28385:1 28418:1 28465:1 28502:1 28516:5 28524:1 28541:1 28549:1 28560:1 28565:1 28566:1 28584:1 28591:1 28604:1 28617:1 28634:3 28645:1 28653:1 28660:1 28672:1 28695:1 28720:1 28724:1 28776:1 28778:4 28811:1 28820:1 28824:1 28833:1 28920:1 28935:2 28957:1 28962:1 29021:1 29122:2 29172:2 29210:2 29227:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29439:1 29509:1 29512:1 29614:1 29624:1 29636:2 29661:1 29685:1 29704:2 29706:1 29752:2 29754:1 29768:1 29775:2 29777:1 29793:1 29822:1 29887:2 18 7:1 22:1 68:1 132:1 196:4 213:1 217:1 218:1 222:1 235:2 257:1 270:2 272:1 288:1 331:2 363:1 394:1 534:1 598:1 600:1 613:1 622:1 626:1 651:1 660:1 685:1 693:1 702:5 717:1 737:1 752:2 759:1 769:2 783:1 798:1 902:1 905:1 928:3 944:1 956:1 957:2 980:1 982:1 1016:2 1073:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1422:1 1429:1 1430:1 1436:1 1440:1 1473:2 1491:1 1523:2 1524:1 1527:1 1531:1 1596:3 1598:1 1607:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:1 1927:1 1931:1 1942:2 1964:1 1988:2 2022:1 2025:1 2030:1 2075:1 2076:1 2081:1 2084:4 2087:1 2106:1 2123:1 2131:1 2181:1 2200:1 2206:1 2232:3 2234:1 2241:1 2246:1 2247:1 2251:2 2254:1 2258:1 2259:1 2270:1 2285:2 2286:1 2295:1 2297:1 2299:1 2301:1 2307:1 2308:1 2316:2 2318:3 2324:1 2333:1 2335:2 2348:11 2370:2 2418:4 2429:1 2459:1 2461:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:3 2871:1 2952:1 2967:2 2970:3 3004:1 3017:2 3025:1 3026:1 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:3 3267:1 3319:1 3324:1 3353:1 3365:1 3373:1 3374:1 3402:1 3410:2 3413:1 3431:1 3456:1 3615:1 3631:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3865:1 3877:2 3879:1 3898:1 3905:1 3907:2 3931:2 3944:1 3950:1 3987:1 3999:2 4002:1 4012:1 4065:1 4069:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:1 4183:1 4196:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4449:1 4486:2 4521:2 4525:1 4540:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:2 4726:1 4745:1 4746:1 4778:1 4812:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5028:7 5031:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:1 5334:2 5394:2 5424:2 5453:1 5457:1 5460:1 5466:2 5478:1 5537:4 5567:1 5580:1 5613:1 5619:1 5628:1 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:1 5823:1 5927:1 5939:1 5995:1 6059:2 6070:2 6090:1 6233:1 6236:1 6260:2 6271:1 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:3 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:2 6797:4 6927:5 6949:1 6980:3 7012:1 7063:1 7093:2 7097:2 7099:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7404:1 7437:1 7529:2 7606:4 7631:1 7687:1 7692:2 7721:4 7762:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:2 7971:2 7975:1 7978:3 7995:2 7997:2 8003:1 8004:2 8008:1 8016:1 8023:1 8029:10 8044:2 8054:1 8089:1 8195:1 8216:1 8221:1 8222:1 8335:1 8373:1 8377:1 8422:1 8486:2 8513:4 8537:2 8565:3 8570:1 8572:2 8574:1 8602:1 8691:1 8705:1 8743:1 8754:4 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9193:1 9201:1 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9375:1 9409:2 9429:1 9519:1 9567:1 9637:1 9689:1 9702:1 9736:1 9746:1 9765:1 9771:1 9858:1 9876:3 9896:1 9950:4 9997:1 10012:1 10024:1 10058:1 10106:1 10154:1 10175:1 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:2 10295:1 10303:2 10308:1 10331:11 10417:1 10436:1 10480:1 10547:2 10560:1 10629:1 10642:1 10714:2 10721:2 10725:1 10772:2 10796:1 10811:1 10871:4 10891:1 10907:1 10922:1 10925:1 10928:1 10964:2 10977:2 10994:2 11012:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11234:1 11251:2 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11444:1 11456:3 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:1 12029:1 12040:2 12042:1 12055:1 12067:2 12069:1 12074:1 12086:1 12089:3 12098:2 12111:1 12116:1 12119:2 12124:1 12158:1 12210:1 12258:1 12341:1 12376:1 12389:2 12409:2 12416:1 12422:1 12433:2 12520:1 12522:1 12534:1 12556:1 12648:1 12675:1 12695:2 12848:1 12908:1 12972:2 13037:1 13064:2 13090:1 13131:1 13145:1 13184:1 13265:1 13272:1 13279:3 13317:1 13338:1 13451:1 13482:1 13494:1 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13637:1 13645:1 13666:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13783:1 13790:2 13816:1 13883:1 13894:1 13963:1 13968:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14113:3 14130:2 14175:1 14209:1 14222:1 14244:1 14260:1 14300:1 14335:2 14393:1 14402:1 14507:1 14592:4 14651:1 14677:1 14679:1 14686:1 14704:1 14709:1 14740:1 14755:11 14757:2 14803:1 14804:1 14808:1 14870:2 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:1 15189:2 15290:1 15311:1 15316:2 15326:1 15352:1 15353:1 15354:2 15410:1 15411:5 15414:2 15480:1 15483:1 15512:2 15582:1 15592:1 15627:1 15643:1 15656:3 15703:1 15755:1 15817:2 15823:1 15836:1 15847:1 15918:5 15929:1 15937:1 15946:1 15970:1 16010:1 16054:2 16078:1 16089:1 16195:1 16221:1 16241:1 16259:2 16288:1 16292:2 16330:1 16338:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:3 16575:1 16578:1 16604:2 16612:2 16651:1 16653:1 16678:1 16695:2 16701:1 16722:1 16753:1 16786:1 16799:1 16800:1 16874:1 16892:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17141:1 17146:4 17191:1 17248:1 17284:1 17334:1 17354:1 17357:1 17410:1 17419:5 17439:2 17450:2 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17730:1 17757:2 17762:1 17814:1 17882:1 17908:2 17924:1 17935:1 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:2 18020:3 18027:1 18033:2 18037:1 18072:2 18078:2 18084:1 18089:1 18135:1 18187:1 18195:1 18197:2 18228:2 18238:2 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18497:2 18509:1 18527:1 18573:1 18602:1 18670:1 18679:1 18712:6 18721:1 18749:1 18775:1 18812:4 18869:1 18888:11 18975:1 18990:2 19007:1 19030:2 19075:1 19162:11 19183:2 19214:1378 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19407:1 19431:1 19441:1 19452:1 19455:1 19469:1 19528:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19981:1 19985:3 20039:1 20044:3 20062:3 20072:1 20093:2 20094:2 20100:1 20103:1 20135:1 20146:1 20160:8 20171:1 20195:1 20197:3 20205:2 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:1 20613:1 20635:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20832:1 20860:1 20888:1 20908:1 20956:2 20993:1 21003:1 21004:1 21036:1 21048:1 21050:2 21055:2 21079:2 21109:1 21138:1 21146:4 21156:2 21213:1 21227:1 21265:1 21292:1 21314:1 21323:1 21328:1 21345:6 21401:1 21411:1 21457:1 21482:1 21483:1 21488:1 21501:1 21537:1 21555:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21683:1 21723:1 21731:3 21759:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:1 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22152:2 22189:1 22190:1 22191:1 22204:1 22212:4 22240:1 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:1 22515:1 22524:1 22542:1 22569:4 22603:1 22606:1 22614:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:1 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:1 23063:2 23091:1 23114:1 23211:1 23213:3 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23527:1 23568:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:3 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23794:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:1 23967:1 24000:1 24002:1 24010:2 24019:1 24025:2 24066:1 24081:2 24084:1 24133:2 24169:1 24190:1 24230:2 24285:1 24291:1 24355:2 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24633:1 24663:1 24691:1 24699:1 24700:2 24710:1 24716:1 24725:2 24731:1 24803:1 24812:2 24822:1 24834:1 24853:1 24859:2 24863:1 24869:1 24877:3 24952:2 25000:1 25006:1 25112:1 25122:1 25145:1 25149:1 25154:1 25163:1 25166:1 25181:1 25194:1 25305:1 25314:5 25335:2 25350:2 25385:1 25425:1 25440:1 25538:1 25541:1 25553:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:2 25798:1 25810:1 25827:1 25843:1 25878:1 25909:2 25945:1 25948:2 26026:1 26038:1 26043:1 26062:1 26065:1 26076:2 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26282:2 26302:1 26312:4 26358:1 26416:1 26477:1 26519:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26668:1 26690:1 26706:2 26743:2 26754:1 26775:1 26874:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27163:1 27174:1 27184:5 27194:1 27207:4 27215:2 27229:1 27243:1 27255:1 27284:5 27342:1 27349:1 27371:11 27372:1 27401:1 27419:1 27425:1 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27799:1 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28144:1 28147:1 28148:1 28157:1 28195:4 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28385:1 28418:1 28465:1 28502:1 28516:5 28524:1 28541:1 28549:1 28560:2 28565:1 28566:1 28584:1 28591:1 28604:1 28617:1 28634:3 28645:1 28653:1 28660:1 28672:1 28678:1 28695:1 28720:2 28724:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29122:2 29172:2 29210:2 29224:1 29226:1 29227:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29439:1 29509:1 29512:1 29614:1 29624:1 29636:2 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29768:1 29775:2 29777:1 29781:1 29793:1 29822:1 29887:2 18 7:1 22:1 68:1 132:1 196:4 213:1 217:1 218:1 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:1 363:1 394:1 534:1 598:1 600:1 613:1 622:1 626:1 651:1 660:2 685:1 693:1 702:5 717:1 737:1 752:3 759:1 769:2 783:1 798:1 896:1 902:1 905:1 928:3 944:1 956:1 957:2 980:1 982:1 1016:2 1073:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:2 1491:1 1523:2 1524:1 1527:1 1531:1 1579:1 1596:3 1598:1 1607:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:2 1964:1 1988:2 1990:1 2022:1 2025:1 2030:1 2041:1 2075:1 2076:1 2081:1 2084:4 2087:1 2106:1 2123:1 2131:1 2181:1 2200:1 2206:1 2232:3 2234:1 2241:1 2246:1 2247:1 2251:2 2254:1 2258:1 2259:1 2270:1 2285:2 2286:1 2295:1 2297:1 2299:1 2301:1 2302:1 2307:1 2308:1 2316:2 2318:3 2324:2 2333:1 2335:2 2342:1 2348:12 2370:2 2418:4 2429:1 2459:1 2461:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:3 2871:2 2952:2 2967:2 2970:3 3004:1 3017:3 3025:1 3026:1 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:5 3267:3 3319:1 3324:1 3353:1 3365:1 3373:1 3374:1 3402:1 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3615:1 3631:1 3671:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3865:1 3877:2 3879:1 3898:1 3905:1 3907:2 3931:2 3944:1 3950:1 3987:1 3991:1 3999:2 4002:1 4012:1 4065:1 4069:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:1 4183:1 4196:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4329:1 4403:1 4449:1 4486:2 4521:2 4525:1 4540:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:1 4778:1 4812:1 4827:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5028:9 5031:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:2 5334:2 5394:2 5424:2 5453:1 5457:1 5460:1 5466:2 5478:1 5537:4 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:1 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6059:2 6070:2 6090:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:3 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:3 6797:4 6869:1 6885:1 6912:1 6927:5 6949:1 6980:4 7012:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7404:1 7437:1 7529:2 7606:4 7631:1 7687:1 7692:2 7721:4 7762:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:1 8004:2 8008:1 8016:1 8023:1 8029:12 8044:3 8054:1 8077:1 8089:1 8195:1 8216:1 8221:2 8222:1 8335:1 8373:1 8377:2 8422:2 8486:2 8490:1 8513:4 8537:2 8565:4 8570:1 8572:2 8574:1 8602:1 8678:1 8691:1 8705:1 8729:1 8743:1 8754:4 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:1 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9375:1 9409:2 9417:1 9429:1 9519:1 9567:1 9637:1 9689:1 9702:1 9736:1 9743:1 9746:1 9765:1 9771:1 9858:1 9876:3 9896:1 9950:4 9997:1 10012:1 10024:1 10058:1 10106:1 10154:1 10175:1 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:2 10295:1 10303:2 10308:1 10331:12 10417:1 10436:1 10480:1 10547:2 10548:1 10560:1 10629:1 10642:1 10654:1 10714:2 10721:2 10725:1 10772:2 10796:1 10811:1 10871:4 10891:1 10907:1 10922:1 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11234:1 11251:2 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:1 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:1 12074:2 12086:1 12089:3 12098:2 12111:1 12116:1 12119:2 12124:1 12158:1 12210:1 12258:1 12341:1 12376:1 12389:2 12409:2 12416:1 12422:1 12433:2 12520:1 12522:1 12534:2 12556:1 12648:1 12656:1 12675:1 12695:2 12848:1 12908:1 12972:2 13037:1 13064:2 13090:1 13111:1 13121:1 13131:1 13145:1 13184:1 13265:1 13272:1 13279:3 13317:2 13338:1 13451:1 13482:1 13494:2 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13783:1 13790:2 13816:1 13883:2 13894:1 13963:1 13968:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14108:1 14113:3 14130:2 14175:1 14209:1 14222:1 14244:1 14260:1 14300:1 14335:2 14393:1 14402:1 14507:1 14539:1 14592:4 14651:1 14677:1 14679:1 14686:1 14704:1 14709:1 14740:1 14755:12 14757:2 14803:1 14804:1 14808:1 14870:2 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:1 15189:2 15290:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:1 15354:2 15393:1 15410:1 15411:5 15414:2 15480:1 15483:1 15498:1 15512:2 15582:1 15592:1 15627:1 15643:1 15656:3 15703:1 15708:1 15755:1 15817:2 15823:1 15836:1 15847:1 15918:6 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16078:1 16089:1 16129:1 16195:1 16221:1 16241:1 16259:2 16288:1 16292:2 16297:1 16330:1 16338:1 16344:1 16355:2 16381:1 16385:1 16391:2 16465:1 16552:3 16575:1 16578:1 16604:2 16612:2 16651:1 16653:1 16678:1 16695:2 16701:1 16722:1 16753:1 16786:1 16799:1 16800:1 16874:1 16892:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:1 17248:1 17284:1 17334:1 17354:1 17357:1 17410:1 17419:6 17439:2 17450:2 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17908:2 17924:1 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:2 18020:3 18027:1 18033:2 18037:2 18072:2 18078:2 18084:1 18089:1 18110:1 18135:1 18187:1 18195:1 18197:2 18228:2 18238:2 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18388:1 18407:2 18438:4 18447:1 18461:1 18462:1 18464:2 18497:2 18509:2 18527:1 18573:1 18595:1 18602:1 18670:1 18679:1 18712:6 18721:1 18749:1 18775:1 18812:4 18869:1 18888:12 18938:1 18975:1 18990:2 19007:1 19030:3 19075:1 19162:12 19183:2 19214:1532 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19407:1 19431:1 19441:1 19452:1 19455:1 19458:1 19469:1 19528:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19981:1 19985:3 20013:1 20039:1 20044:3 20062:6 20072:1 20093:2 20094:2 20100:1 20103:1 20135:1 20146:1 20160:9 20171:1 20195:1 20197:3 20205:2 20217:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20407:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:2 20613:1 20626:1 20635:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20832:2 20860:1 20888:1 20908:1 20956:2 20993:1 21003:1 21004:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21109:1 21138:1 21146:4 21156:2 21183:1 21213:1 21227:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:1 21336:1 21345:6 21401:1 21411:1 21422:1 21457:1 21482:1 21483:1 21488:2 21501:1 21537:1 21555:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21672:1 21683:1 21723:1 21731:4 21759:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:1 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22152:2 22189:1 22190:1 22191:1 22194:1 22204:1 22212:4 22240:1 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:1 22515:1 22524:1 22542:1 22569:4 22603:1 22606:1 22614:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23032:2 23055:1 23063:2 23091:1 23114:2 23211:1 23213:3 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23399:1 23405:1 23408:1 23414:1 23422:2 23483:2 23486:1 23527:1 23568:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:3 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:2 23967:1 23977:1 24000:1 24002:1 24010:2 24019:1 24025:2 24066:1 24081:2 24084:1 24133:2 24169:1 24190:1 24230:2 24285:1 24291:1 24355:2 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24633:1 24663:1 24691:1 24699:1 24700:3 24710:1 24713:1 24716:1 24720:1 24725:2 24731:1 24741:1 24793:1 24803:1 24812:2 24822:2 24834:1 24853:1 24859:2 24863:1 24869:1 24877:4 24952:2 25000:1 25006:1 25060:1 25112:1 25122:1 25145:1 25149:1 25154:1 25163:1 25166:2 25181:1 25194:1 25204:1 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25536:1 25537:1 25538:1 25541:1 25553:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:1 25878:1 25905:1 25909:2 25945:1 25948:2 26026:1 26038:1 26043:2 26062:1 26065:1 26076:2 26107:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26282:3 26302:1 26312:6 26358:1 26416:1 26477:1 26519:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26668:1 26690:1 26706:2 26743:2 26754:1 26775:1 26874:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27163:1 27174:1 27184:5 27194:1 27207:4 27215:2 27229:1 27243:1 27255:1 27284:5 27342:1 27349:1 27371:12 27372:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27799:2 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:4 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28385:1 28418:1 28439:1 28465:2 28502:1 28516:5 28524:1 28541:2 28549:1 28560:2 28565:1 28566:2 28584:1 28591:1 28604:1 28617:1 28634:3 28645:1 28653:1 28660:1 28672:1 28678:1 28695:1 28720:3 28724:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29122:2 29172:2 29210:2 29224:1 29226:1 29227:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29439:1 29509:1 29512:1 29543:1 29614:1 29624:1 29636:2 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29768:1 29775:2 29777:1 29781:1 29793:1 29822:1 29887:2 18 7:1 22:1 27:1 68:1 132:1 196:4 213:2 217:1 218:1 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:1 363:1 394:1 451:1 534:1 598:2 600:1 613:1 622:1 626:1 651:1 660:2 685:1 693:1 702:5 717:1 737:1 752:3 759:1 769:2 783:1 798:1 896:1 902:1 905:1 928:3 944:1 956:1 957:2 980:1 982:1 1016:2 1073:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:2 1491:1 1523:2 1524:1 1527:1 1531:1 1579:1 1596:4 1598:1 1607:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:2 1964:1 1988:2 1990:1 2022:1 2025:1 2030:1 2041:1 2075:1 2076:1 2081:1 2084:4 2087:1 2106:1 2123:1 2131:1 2181:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:1 2246:1 2247:1 2251:2 2254:1 2258:1 2259:1 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:1 2302:1 2307:1 2308:1 2316:2 2318:3 2324:2 2333:1 2335:2 2342:1 2348:13 2370:2 2418:4 2429:1 2459:1 2461:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:3 2871:2 2952:2 2967:3 2970:3 3004:1 3017:3 3025:1 3026:1 3035:1 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:6 3267:3 3319:1 3324:1 3341:1 3353:1 3365:1 3373:1 3374:1 3402:1 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3615:1 3631:1 3671:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3865:1 3877:2 3879:1 3898:1 3905:1 3907:2 3931:2 3944:1 3946:1 3950:1 3987:1 3991:1 3999:2 4002:1 4012:1 4065:1 4069:1 4090:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:2 4183:1 4196:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4329:1 4403:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:1 4778:1 4812:1 4827:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5028:9 5031:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5308:1 5330:2 5334:2 5362:1 5394:2 5424:2 5453:1 5457:1 5460:1 5466:2 5478:1 5537:4 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:1 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6059:2 6070:2 6090:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:1 6626:1 6630:1 6765:1 6777:3 6797:4 6869:1 6885:1 6912:1 6927:5 6949:1 6980:4 6999:1 7012:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7404:2 7437:1 7476:1 7529:2 7564:1 7606:4 7631:1 7687:1 7692:2 7721:4 7762:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:1 8004:2 8008:1 8016:1 8022:1 8023:1 8029:12 8044:3 8054:1 8077:1 8089:1 8195:1 8216:1 8221:2 8222:1 8335:1 8373:1 8377:2 8422:2 8486:2 8490:1 8513:4 8537:2 8565:4 8570:2 8572:2 8574:1 8602:1 8603:1 8678:1 8691:1 8705:1 8729:1 8743:1 8754:4 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:1 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9519:1 9567:1 9637:1 9689:1 9702:1 9736:1 9743:1 9746:1 9765:1 9771:1 9858:1 9876:3 9888:1 9896:1 9921:1 9950:4 9997:1 10012:1 10024:1 10058:1 10106:1 10154:1 10156:1 10175:2 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:2 10295:1 10303:3 10308:1 10331:13 10417:1 10436:1 10480:1 10547:2 10548:1 10560:1 10629:1 10642:1 10654:1 10714:2 10721:2 10725:1 10731:1 10772:2 10796:1 10811:1 10871:4 10891:1 10907:1 10922:1 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11234:1 11251:2 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:1 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:1 12074:2 12086:1 12089:3 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:1 12210:1 12258:1 12341:1 12376:1 12389:2 12409:2 12416:1 12422:1 12433:2 12520:1 12522:1 12534:2 12556:1 12581:1 12648:1 12656:1 12675:1 12695:2 12700:1 12798:1 12848:1 12908:1 12928:1 12972:2 12993:1 13037:1 13064:3 13090:1 13111:1 13121:1 13131:1 13145:1 13184:1 13265:1 13267:1 13272:1 13279:4 13317:2 13338:1 13451:1 13482:1 13494:2 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13681:1 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13783:1 13790:2 13816:1 13883:2 13894:1 13963:1 13968:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14175:1 14178:1 14209:1 14222:1 14244:1 14260:1 14300:1 14335:2 14377:1 14393:1 14398:1 14402:1 14507:1 14539:1 14592:4 14651:1 14677:1 14679:2 14686:1 14703:1 14704:1 14709:1 14740:1 14755:13 14757:2 14803:1 14804:1 14808:1 14870:2 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:1 15189:2 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15393:1 15410:1 15411:5 15414:2 15480:1 15483:1 15498:1 15512:3 15582:1 15592:1 15627:1 15643:1 15656:3 15703:1 15708:1 15755:1 15817:2 15823:1 15836:1 15847:1 15892:1 15918:7 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16078:1 16089:1 16129:1 16195:1 16221:1 16241:1 16259:2 16288:1 16292:2 16297:1 16330:1 16338:1 16344:1 16355:2 16381:1 16385:1 16391:2 16453:1 16465:1 16552:3 16575:1 16578:1 16604:2 16612:2 16651:1 16653:1 16678:1 16695:2 16701:1 16722:1 16753:1 16786:1 16799:1 16800:1 16874:1 16892:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:1 17248:1 17284:1 17334:1 17354:1 17357:1 17410:1 17419:7 17439:2 17450:2 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:1 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:2 18020:3 18027:1 18033:2 18037:2 18072:2 18078:3 18084:1 18089:1 18110:1 18135:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18385:1 18388:1 18407:2 18438:4 18447:1 18453:1 18461:1 18462:1 18464:2 18497:2 18509:2 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18712:6 18721:1 18749:1 18775:1 18781:1 18812:4 18869:1 18888:13 18938:1 18975:1 18990:2 19007:1 19030:3 19075:1 19162:13 19183:2 19214:1649 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19407:1 19431:1 19441:2 19452:2 19455:1 19458:1 19469:1 19528:1 19601:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19981:1 19985:3 20013:1 20039:1 20044:4 20062:6 20072:1 20093:3 20094:2 20100:1 20103:1 20117:1 20135:1 20146:1 20160:10 20171:1 20195:1 20197:3 20205:2 20217:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20407:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:2 20613:1 20626:1 20635:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:1 20799:1 20811:1 20832:2 20860:1 20888:1 20908:1 20956:2 20960:1 20993:1 21003:1 21004:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21109:1 21138:1 21146:4 21156:2 21183:1 21213:1 21227:1 21232:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:1 21336:1 21345:6 21400:1 21401:1 21411:1 21422:1 21457:1 21482:1 21483:1 21488:2 21492:1 21501:1 21537:1 21555:1 21557:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21672:1 21683:1 21723:1 21731:4 21759:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22152:2 22189:1 22190:1 22191:1 22194:1 22204:1 22212:4 22240:1 22293:1 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:1 22515:1 22524:1 22542:1 22569:4 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:1 23032:2 23055:1 23063:2 23091:1 23114:2 23153:1 23211:1 23213:3 23221:1 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23405:1 23408:1 23414:1 23415:1 23422:2 23483:2 23486:1 23527:1 23568:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:3 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:2 23967:1 23977:1 24000:1 24002:1 24010:2 24019:1 24025:2 24066:1 24081:2 24084:1 24133:2 24169:1 24190:1 24230:2 24285:1 24291:1 24355:2 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24633:1 24663:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:1 24713:1 24716:1 24720:1 24725:2 24731:1 24741:1 24793:1 24803:1 24812:2 24822:2 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24952:2 25000:1 25006:1 25060:1 25085:1 25112:1 25122:1 25145:1 25149:1 25154:1 25163:1 25166:2 25181:1 25194:1 25204:1 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25536:1 25537:1 25538:1 25541:1 25553:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:1 25878:1 25905:1 25909:3 25945:1 25948:2 26026:1 26038:1 26043:2 26062:1 26065:1 26076:2 26107:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26282:3 26302:1 26312:7 26358:1 26413:1 26416:1 26477:1 26519:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26668:1 26690:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27163:1 27174:1 27184:5 27194:1 27207:4 27215:2 27229:1 27243:1 27255:1 27284:5 27342:1 27349:1 27371:13 27372:1 27385:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27774:1 27799:2 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:4 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28385:1 28418:1 28439:1 28465:2 28488:1 28502:1 28516:6 28524:1 28541:3 28549:1 28560:2 28565:1 28566:2 28584:1 28591:1 28604:1 28617:1 28634:3 28645:1 28653:1 28660:1 28672:1 28674:1 28678:1 28695:1 28720:3 28724:1 28725:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29122:2 29172:2 29210:3 29224:1 29226:1 29227:1 29249:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29439:1 29509:1 29512:1 29543:1 29614:1 29624:1 29636:3 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29760:1 29768:1 29775:2 29777:1 29781:1 29793:1 29822:1 29887:2 18 7:1 22:1 27:1 68:1 132:1 196:4 213:2 217:1 218:1 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:1 363:1 389:1 394:1 451:1 534:1 571:1 598:2 600:1 613:1 622:1 626:1 651:1 660:2 685:1 693:1 702:5 717:1 737:1 752:3 759:1 769:2 772:1 783:1 798:1 896:1 902:1 905:1 927:1 928:3 944:1 956:1 957:2 980:1 982:1 1016:2 1073:1 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:2 1491:1 1521:1 1523:2 1524:1 1527:1 1531:1 1579:2 1583:1 1596:4 1598:1 1607:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:2 1964:1 1988:2 1990:1 2022:1 2025:1 2030:1 2041:1 2075:1 2076:1 2081:1 2084:4 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:1 2246:1 2247:1 2251:2 2254:1 2257:1 2258:1 2259:1 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:1 2302:1 2307:1 2308:1 2313:1 2316:2 2318:3 2324:2 2333:1 2335:2 2342:1 2348:14 2359:1 2370:2 2418:4 2429:1 2459:1 2461:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2860:4 2871:2 2918:1 2952:2 2967:3 2970:3 3004:1 3017:4 3025:1 3026:1 3035:2 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3341:1 3353:1 3365:1 3373:1 3374:1 3402:1 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3615:1 3631:1 3671:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3864:1 3865:1 3877:2 3879:1 3897:1 3898:1 3905:1 3907:2 3931:2 3944:1 3946:2 3950:1 3987:1 3991:1 3999:2 4002:1 4012:1 4065:1 4069:1 4090:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:2 4183:1 4196:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4329:1 4403:2 4449:1 4486:2 4521:2 4525:1 4540:1 4551:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:1 4778:1 4812:1 4827:2 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:9 5031:1 5041:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5268:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5478:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:1 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6059:2 6070:2 6090:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:1 6756:1 6765:1 6777:3 6797:5 6869:1 6885:1 6912:1 6927:5 6949:1 6980:4 6999:1 7012:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:2 7437:1 7476:1 7529:2 7564:1 7606:4 7631:1 7687:1 7692:2 7721:4 7762:1 7778:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:2 8004:2 8008:1 8016:1 8022:1 8023:1 8029:12 8044:4 8054:1 8077:1 8089:1 8195:1 8216:1 8221:2 8222:1 8335:1 8373:1 8377:2 8391:1 8422:2 8486:2 8490:1 8513:4 8537:2 8565:4 8570:2 8572:2 8574:1 8602:1 8603:1 8678:1 8691:1 8705:1 8729:1 8743:1 8754:4 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:1 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9519:1 9567:1 9637:2 9689:1 9702:1 9736:1 9743:1 9746:1 9765:1 9771:1 9858:1 9876:3 9888:1 9896:1 9921:1 9950:4 9997:1 10012:1 10024:1 10052:1 10058:1 10106:1 10154:1 10156:1 10175:2 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:3 10295:1 10303:3 10308:1 10328:1 10331:14 10417:1 10436:1 10480:1 10547:2 10548:1 10560:1 10629:1 10642:1 10654:1 10714:2 10721:2 10725:1 10731:1 10772:2 10796:1 10811:1 10858:1 10871:4 10891:1 10894:1 10907:1 10922:1 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11234:1 11251:2 11261:1 11264:2 11266:1 11287:1 11289:2 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11786:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:1 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:1 12074:2 12086:1 12089:4 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:1 12210:1 12258:1 12341:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12556:1 12581:1 12648:1 12656:1 12675:1 12695:2 12700:1 12798:1 12848:1 12908:1 12928:1 12972:2 12993:1 13037:1 13064:3 13090:1 13111:1 13121:1 13131:1 13145:1 13184:1 13265:1 13267:1 13272:1 13279:4 13317:2 13338:1 13451:1 13482:1 13494:2 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13681:1 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13783:1 13790:2 13816:1 13883:3 13894:1 13933:1 13963:1 13968:2 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14175:1 14178:1 14209:1 14222:1 14244:1 14260:1 14300:1 14335:2 14377:1 14393:1 14398:2 14402:1 14507:1 14510:1 14539:1 14592:5 14651:1 14677:1 14679:2 14686:1 14693:1 14703:1 14704:1 14709:1 14740:1 14755:14 14757:2 14803:1 14804:1 14808:1 14870:3 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:2 15189:2 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15385:1 15393:1 15410:1 15411:5 15414:2 15480:1 15483:1 15498:1 15512:3 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:1 15708:1 15755:1 15762:1 15817:2 15823:1 15836:1 15847:1 15892:1 15918:7 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16195:1 16221:1 16241:1 16259:2 16288:1 16292:2 16297:1 16330:1 16338:1 16344:1 16355:2 16381:1 16385:1 16391:2 16453:1 16465:1 16552:3 16575:1 16578:1 16604:2 16612:3 16651:1 16653:1 16678:1 16695:2 16701:1 16722:1 16753:1 16762:1 16786:1 16799:1 16800:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:2 17248:1 17284:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:7 17439:2 17450:2 17488:1 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17725:1 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:1 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:3 18084:1 18089:1 18110:1 18135:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18385:1 18388:1 18407:2 18438:4 18447:2 18453:1 18461:1 18462:1 18464:2 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18712:6 18721:1 18749:1 18775:1 18781:1 18812:4 18869:1 18888:14 18938:1 18975:1 18990:2 19007:1 19030:3 19075:1 19162:14 19183:2 19214:1744 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:2 19452:2 19455:1 19458:1 19469:1 19528:1 19601:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19851:1 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19981:1 19985:3 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:3 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:10 20171:1 20195:1 20197:3 20205:2 20217:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20355:1 20407:1 20421:1 20495:1 20498:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:2 20613:1 20626:1 20635:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:2 20799:1 20811:1 20832:2 20860:1 20888:1 20908:1 20956:2 20960:1 20993:1 21003:1 21004:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21109:1 21138:1 21146:4 21156:2 21177:1 21183:1 21213:1 21227:1 21232:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:1 21336:1 21345:6 21348:1 21367:1 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:2 21492:1 21501:1 21537:1 21555:1 21557:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22152:2 22189:1 22190:1 22191:1 22194:1 22204:1 22212:4 22240:1 22293:1 22296:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:1 22515:1 22524:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:1 23032:2 23055:1 23063:2 23091:1 23114:2 23134:1 23153:1 23180:1 23211:1 23213:3 23221:1 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23405:1 23408:1 23414:1 23415:1 23422:2 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:4 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:2 23967:1 23977:1 24000:1 24002:1 24010:2 24019:1 24025:2 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24285:1 24291:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24633:1 24663:1 24668:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:1 24713:1 24716:1 24720:1 24725:2 24731:1 24741:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24952:2 25000:1 25006:1 25060:1 25085:1 25112:1 25122:1 25145:1 25149:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:1 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25536:1 25537:1 25538:1 25541:1 25553:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:1 25878:1 25905:1 25909:3 25945:1 25948:2 26026:1 26038:1 26043:2 26062:1 26065:1 26076:2 26107:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26282:3 26302:1 26312:7 26358:1 26413:1 26416:1 26477:1 26519:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26668:1 26690:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27163:1 27174:1 27184:6 27194:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27342:1 27349:1 27371:14 27372:1 27385:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27634:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27774:1 27799:2 27808:2 27820:1 27834:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:1 28502:1 28516:6 28524:1 28541:3 28549:1 28560:2 28565:1 28566:2 28584:1 28591:1 28604:1 28617:1 28634:3 28645:1 28653:1 28660:1 28672:1 28674:1 28678:1 28695:1 28720:3 28724:1 28725:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29058:1 29122:2 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29422:2 29439:1 29509:1 29512:1 29543:1 29614:1 29624:1 29636:3 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29760:1 29768:1 29775:2 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 68:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:2 363:1 382:2 389:1 394:1 451:1 457:1 534:1 571:1 598:2 600:1 613:1 622:1 626:1 651:1 660:2 685:1 693:1 702:5 717:1 737:1 752:3 759:1 769:2 772:1 783:1 798:1 893:1 896:1 902:1 905:1 927:1 928:3 944:1 956:1 957:2 980:1 982:1 1016:2 1073:1 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:2 1491:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1579:2 1583:1 1596:4 1598:1 1607:1 1624:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:2 1964:1 1988:2 1990:1 2022:1 2025:1 2030:1 2041:1 2075:1 2076:1 2081:1 2084:4 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:2 2246:1 2247:1 2251:2 2254:1 2257:1 2258:1 2259:1 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:1 2302:1 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:15 2359:1 2370:2 2418:4 2429:1 2459:1 2461:1 2463:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2838:1 2860:5 2871:2 2880:1 2918:1 2952:2 2967:3 2970:3 3004:1 3017:5 3025:1 3026:1 3035:2 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3325:1 3341:1 3353:1 3365:1 3373:1 3374:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3560:1 3615:1 3631:1 3642:1 3671:1 3688:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3864:1 3865:1 3877:2 3879:1 3897:1 3898:1 3905:1 3907:2 3931:2 3944:1 3946:2 3950:1 3987:1 3991:1 3999:2 4002:1 4012:1 4065:1 4069:1 4090:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:2 4183:1 4196:1 4220:1 4231:1 4247:1 4279:1 4282:1 4315:1 4329:1 4403:2 4449:1 4486:2 4521:2 4525:1 4540:1 4551:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:2 4778:1 4812:1 4827:2 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:9 5031:1 5041:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:1 5268:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5478:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:2 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6035:1 6059:2 6070:2 6090:1 6128:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:1 6756:1 6765:1 6777:3 6797:5 6869:1 6885:1 6912:1 6927:5 6928:1 6949:1 6962:1 6980:4 6999:1 7012:1 7055:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:2 7437:1 7476:1 7529:2 7564:1 7606:4 7631:1 7687:1 7692:2 7721:4 7731:1 7762:1 7778:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:3 8004:2 8008:1 8016:1 8022:1 8023:1 8029:13 8044:5 8050:1 8054:1 8077:1 8089:1 8195:1 8216:1 8221:2 8222:1 8335:1 8373:1 8377:2 8391:1 8422:2 8486:2 8490:1 8513:5 8537:2 8565:6 8570:2 8572:2 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:1 8729:1 8743:1 8754:4 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:1 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9519:1 9567:1 9637:2 9689:1 9702:1 9736:1 9743:1 9746:1 9765:1 9771:1 9858:1 9876:3 9888:1 9896:1 9921:1 9950:4 9997:1 10012:1 10024:1 10052:1 10058:1 10106:1 10154:1 10156:1 10175:2 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:3 10295:1 10303:3 10308:1 10328:1 10331:15 10404:1 10417:1 10436:1 10480:1 10547:2 10548:1 10560:1 10629:1 10642:1 10654:1 10714:2 10721:2 10725:1 10731:1 10772:2 10796:1 10811:1 10858:1 10871:4 10891:1 10894:1 10907:1 10922:1 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11120:5 11137:1 11212:1 11234:1 11251:3 11261:1 11264:2 11266:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:1 11655:1 11711:1 11760:1 11786:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:1 12074:2 12086:1 12089:5 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:1 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12556:1 12581:1 12648:1 12656:2 12675:1 12695:2 12700:1 12798:1 12848:1 12908:1 12928:1 12972:2 12993:1 13037:2 13064:3 13090:1 13111:1 13121:1 13131:1 13145:1 13184:1 13265:1 13267:1 13272:1 13279:4 13317:3 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13681:1 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13779:1 13783:1 13790:2 13816:1 13883:3 13894:1 13933:1 13957:1 13963:1 13968:2 13975:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14175:1 14178:1 14209:1 14222:1 14244:1 14260:1 14300:1 14335:2 14377:1 14393:1 14398:2 14402:1 14507:1 14510:1 14539:1 14592:5 14651:1 14677:1 14679:2 14686:1 14693:1 14703:1 14704:1 14709:1 14740:1 14755:15 14757:2 14803:1 14804:1 14808:1 14870:4 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:2 15189:2 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15385:1 15393:1 15410:1 15411:5 15414:2 15480:1 15483:1 15498:1 15512:3 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:1 15708:1 15755:1 15762:1 15817:2 15823:1 15836:1 15847:1 15892:1 15918:7 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:1 16195:1 16221:1 16241:1 16259:2 16260:1 16288:1 16292:2 16297:1 16330:1 16338:1 16344:2 16355:2 16381:1 16385:1 16391:2 16453:1 16465:1 16552:3 16575:1 16578:1 16604:2 16612:3 16651:1 16653:1 16678:1 16690:1 16695:2 16701:1 16722:1 16753:1 16762:1 16786:1 16799:1 16800:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:2 17248:1 17284:1 17324:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:7 17439:2 17450:2 17455:1 17488:1 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17725:1 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:1 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:3 18084:1 18089:1 18094:1 18110:1 18135:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18244:1 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18385:2 18388:1 18407:2 18438:4 18447:3 18453:1 18461:1 18462:1 18464:2 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18712:6 18721:1 18749:1 18775:1 18781:1 18812:4 18869:1 18888:15 18938:1 18975:1 18990:2 19007:1 19030:3 19069:1 19075:1 19162:15 19183:2 19192:1 19214:1793 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:2 19452:2 19455:1 19458:1 19469:1 19528:1 19601:1 19656:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19851:1 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19981:1 19985:3 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:3 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:11 20171:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20355:1 20407:1 20421:1 20495:1 20498:1 20499:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:3 20613:1 20626:1 20635:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:2 20799:1 20811:1 20832:3 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:1 21003:1 21004:2 21020:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21109:1 21138:1 21146:4 21156:2 21177:1 21183:2 21213:1 21227:1 21232:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:1 21336:1 21345:6 21348:1 21367:2 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:2 21492:1 21501:1 21523:1 21537:1 21555:1 21557:1 21591:1 21598:1 21616:1 21629:1 21630:2 21633:1 21657:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22138:1 22152:2 22189:1 22190:1 22191:1 22194:1 22204:1 22212:4 22240:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:2 22515:1 22524:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:1 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23114:2 23134:1 23153:1 23180:1 23211:1 23213:4 23221:1 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23405:1 23408:1 23414:1 23415:1 23422:2 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:4 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:3 23960:1 23967:1 23977:1 24000:1 24002:1 24010:2 24019:1 24025:2 24049:1 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24285:1 24291:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24586:1 24633:1 24663:1 24668:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:1 24713:1 24716:1 24720:1 24725:2 24731:1 24741:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:1 24952:2 25000:1 25006:1 25023:1 25060:1 25085:1 25112:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:2 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25536:1 25537:1 25538:2 25541:1 25553:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:1 25878:1 25905:1 25909:3 25945:1 25948:2 26026:1 26038:1 26043:2 26062:1 26065:1 26076:2 26107:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26282:3 26302:1 26312:7 26358:1 26413:1 26416:1 26470:1 26477:1 26519:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26639:1 26668:1 26690:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27163:1 27174:1 27184:6 27194:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27342:1 27349:1 27371:15 27372:1 27385:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27634:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27847:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:1 28502:1 28516:6 28524:1 28541:3 28549:1 28560:2 28565:1 28566:2 28584:1 28591:1 28604:1 28617:1 28634:4 28645:1 28653:1 28660:1 28672:1 28674:1 28678:1 28695:1 28720:3 28724:1 28725:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:2 28904:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29058:1 29122:2 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29400:1 29414:1 29422:2 29439:1 29509:1 29512:1 29529:1 29543:1 29614:1 29624:1 29636:3 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29760:1 29768:1 29775:2 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 68:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:2 363:1 382:2 389:1 394:1 451:1 457:1 534:1 571:1 598:2 600:1 613:1 622:1 626:1 651:1 660:2 685:1 693:1 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 783:1 798:1 893:1 896:1 902:1 905:1 927:1 928:3 944:1 956:1 957:2 976:1 980:1 982:1 1016:2 1073:1 1126:1 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:2 1491:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1579:2 1583:1 1596:4 1598:1 1607:1 1624:1 1627:1 1680:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:3 1964:1 1988:2 1990:1 2022:1 2025:1 2030:1 2041:1 2062:1 2075:1 2076:1 2081:1 2084:5 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:2 2246:1 2247:1 2251:2 2254:1 2257:1 2258:1 2259:1 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:2 2302:1 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:16 2359:1 2370:2 2418:4 2429:1 2459:1 2461:1 2463:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:1 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2838:1 2860:5 2871:2 2880:1 2918:1 2952:2 2967:3 2970:3 3004:1 3017:6 3025:1 3026:1 3035:2 3055:1 3079:1 3112:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3325:1 3341:1 3353:1 3365:1 3373:1 3374:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3560:1 3615:1 3631:1 3642:1 3671:1 3688:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3864:1 3865:1 3877:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:2 3944:1 3946:2 3950:1 3987:1 3991:1 3999:2 4002:1 4012:1 4065:1 4069:1 4090:1 4097:1 4115:2 4122:1 4137:1 4159:1 4166:2 4183:1 4196:1 4220:1 4231:1 4247:1 4279:1 4282:1 4309:1 4315:1 4329:1 4403:2 4449:1 4486:2 4521:2 4525:1 4540:1 4551:1 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:2 4778:1 4812:1 4827:2 4833:1 4838:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:9 5031:1 5041:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:1 5253:1 5268:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5478:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:2 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6035:1 6059:2 6070:2 6090:1 6128:1 6164:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:2 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:1 6756:1 6765:1 6777:3 6797:5 6869:1 6885:1 6912:1 6927:5 6928:1 6949:1 6962:1 6980:4 6999:1 7012:1 7023:1 7055:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:2 7437:1 7476:1 7529:2 7564:1 7606:4 7631:1 7687:1 7692:2 7721:5 7731:1 7762:1 7778:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:4 8004:2 8008:1 8016:1 8022:1 8023:1 8029:14 8044:6 8050:1 8054:1 8077:1 8089:1 8195:1 8216:1 8221:2 8222:1 8335:1 8373:1 8377:2 8391:1 8422:2 8486:2 8490:1 8513:5 8537:2 8565:6 8570:2 8572:2 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:1 8729:1 8743:1 8754:5 8791:5 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:2 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9519:1 9567:1 9637:3 9689:1 9702:1 9736:1 9743:1 9746:1 9765:1 9771:1 9858:1 9876:3 9888:1 9896:1 9921:1 9950:4 9997:1 10012:1 10024:1 10052:1 10058:1 10106:1 10154:1 10156:1 10175:2 10189:1 10198:1 10215:1 10231:1 10234:1 10252:1 10262:1 10274:3 10295:1 10303:3 10308:1 10328:2 10331:16 10404:1 10417:1 10436:1 10480:1 10547:2 10548:1 10560:1 10629:1 10642:1 10654:1 10714:2 10721:2 10725:1 10731:1 10772:2 10796:1 10811:2 10858:1 10871:5 10891:1 10894:1 10907:1 10922:1 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11120:5 11137:1 11182:1 11212:1 11234:1 11251:3 11261:1 11264:2 11266:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:2 11623:1 11655:1 11711:1 11760:1 11786:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:1 12074:2 12086:1 12089:5 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:1 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12556:2 12581:1 12648:1 12656:3 12675:1 12695:2 12700:1 12798:1 12811:1 12848:1 12908:1 12928:1 12972:2 12993:1 13037:2 13064:3 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13265:1 13267:1 13272:1 13279:4 13317:3 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13681:1 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13779:1 13783:1 13790:2 13816:1 13883:3 13894:2 13933:1 13957:1 13963:1 13968:2 13975:1 14020:1 14046:1 14054:2 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14175:1 14178:1 14209:1 14222:1 14244:1 14260:1 14300:1 14335:2 14377:1 14393:1 14398:2 14402:1 14431:1 14507:1 14510:1 14539:1 14592:5 14651:1 14677:1 14679:2 14686:1 14693:1 14703:1 14704:1 14709:1 14740:1 14755:16 14757:2 14803:1 14804:1 14808:1 14870:4 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:2 15189:2 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15480:1 15483:1 15498:1 15512:3 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15755:1 15762:1 15817:2 15823:2 15836:1 15847:1 15892:1 15918:7 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:1 16195:1 16221:1 16241:1 16259:2 16260:1 16288:1 16292:2 16297:1 16330:1 16338:1 16344:2 16355:2 16381:1 16385:1 16391:2 16453:1 16465:1 16552:3 16575:1 16578:1 16604:2 16612:3 16651:1 16653:1 16678:1 16690:1 16695:2 16701:1 16722:1 16753:1 16762:1 16786:1 16799:1 16800:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:2 17248:1 17284:1 17324:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:7 17439:2 17450:2 17455:1 17488:1 17583:1 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:1 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17986:2 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18244:1 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18385:2 18388:1 18407:2 18438:4 18447:4 18453:1 18461:1 18462:1 18464:2 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18781:1 18812:4 18869:1 18888:16 18938:1 18975:1 18990:2 19007:1 19030:3 19069:1 19075:1 19162:16 19183:2 19192:1 19214:1858 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:2 19452:2 19455:1 19458:1 19469:1 19528:1 19601:1 19656:1 19674:1 19680:1 19704:1 19755:1 19765:1 19827:4 19851:1 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19981:1 19985:3 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:3 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:11 20171:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20355:1 20407:1 20421:1 20495:1 20498:1 20499:1 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:3 20613:1 20626:1 20635:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:2 20799:1 20811:1 20832:4 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:1 21003:1 21004:2 21020:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21109:1 21138:1 21146:4 21156:2 21177:1 21183:2 21213:1 21227:1 21232:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:3 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:2 21492:1 21501:1 21523:1 21537:1 21555:1 21557:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21818:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22132:2 22138:1 22152:2 22189:1 22190:1 22191:1 22194:1 22204:1 22212:4 22240:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:2 22515:1 22524:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22777:1 22780:1 22783:1 22784:1 22795:1 22807:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:1 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23114:2 23134:1 23153:1 23180:1 23211:1 23213:4 23221:1 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23405:1 23408:1 23414:1 23415:1 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:4 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:3 23960:1 23967:1 23977:1 24000:1 24002:1 24010:2 24019:1 24025:2 24049:1 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24285:1 24291:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24586:1 24633:1 24663:1 24668:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:1 24713:1 24716:1 24720:1 24725:2 24731:1 24741:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:1 24952:2 25000:1 25006:1 25023:1 25060:1 25085:1 25112:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:2 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:1 25878:1 25905:1 25909:3 25910:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26062:1 26065:1 26076:2 26107:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:1 26416:1 26470:1 26477:1 26519:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26639:1 26668:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:1 26909:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27163:1 27174:1 27183:1 27184:6 27194:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27342:1 27349:1 27371:16 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27559:1 27580:1 27634:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:1 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:1 27847:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:1 28502:1 28516:6 28524:1 28541:3 28549:1 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:1 28634:4 28645:1 28653:1 28660:1 28672:1 28674:1 28678:1 28695:1 28720:3 28724:1 28725:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:2 28904:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29057:1 29058:1 29122:2 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:1 29250:1 29252:1 29291:1 29301:1 29326:1 29355:1 29358:1 29400:1 29414:1 29422:2 29439:1 29509:1 29512:1 29529:1 29543:1 29614:1 29624:1 29636:3 29640:1 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29760:1 29768:1 29775:2 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 68:1 90:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:3 363:1 382:4 389:1 394:1 451:3 457:1 534:1 571:1 598:3 600:1 613:1 622:1 626:1 651:1 660:2 685:1 693:1 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 783:1 791:1 798:1 893:2 896:1 902:1 905:1 927:1 928:3 933:1 944:1 956:1 957:2 976:1 980:1 982:1 1016:2 1073:1 1126:1 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:1 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:3 1491:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1579:2 1583:1 1596:4 1598:1 1607:2 1624:1 1627:1 1680:1 1715:1 1742:1 1745:3 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:3 1964:1 1988:2 1990:1 1991:1 2022:1 2025:1 2030:1 2041:1 2062:1 2075:1 2076:1 2081:1 2084:5 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:3 2246:1 2247:1 2251:2 2254:1 2257:1 2258:1 2259:1 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:2 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:16 2359:1 2370:2 2418:4 2429:1 2459:1 2461:1 2463:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:2 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2838:1 2860:5 2871:2 2880:1 2918:1 2952:2 2967:4 2970:3 3004:1 3017:6 3025:2 3026:1 3035:2 3055:1 3079:1 3086:1 3112:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3325:2 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:1 3615:1 3631:1 3642:1 3671:1 3688:1 3736:1 3748:2 3766:2 3789:2 3820:1 3828:1 3829:1 3864:1 3865:1 3877:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:2 3944:1 3946:2 3950:2 3987:1 3991:1 3999:2 4002:1 4012:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:1 4137:1 4159:1 4166:2 4183:1 4196:1 4220:1 4231:1 4247:1 4257:1 4279:1 4282:1 4309:1 4315:1 4329:1 4403:2 4449:1 4486:2 4521:2 4525:1 4540:1 4551:2 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:3 4778:1 4812:1 4827:2 4833:1 4838:1 4844:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:10 5031:1 5041:1 5049:1 5083:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:1 5253:1 5268:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:3 5644:1 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6035:2 6059:2 6070:2 6090:1 6126:1 6128:1 6164:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:3 6299:2 6315:1 6338:2 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:3 6542:1 6570:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:2 6756:1 6765:1 6777:3 6797:5 6854:1 6869:1 6885:1 6912:1 6927:5 6928:1 6949:1 6962:1 6980:4 6999:2 7012:1 7023:1 7055:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:3 7437:1 7476:1 7529:2 7564:2 7606:4 7631:1 7687:1 7692:2 7721:5 7731:2 7762:1 7778:1 7825:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:4 8004:2 8008:1 8016:1 8022:1 8023:1 8029:16 8044:6 8050:1 8054:1 8077:1 8089:1 8142:1 8174:1 8195:1 8216:1 8221:2 8222:1 8275:1 8335:1 8373:1 8377:2 8391:1 8422:2 8486:2 8490:1 8513:5 8537:2 8565:8 8570:3 8572:2 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:2 8729:1 8743:1 8754:5 8791:5 8804:1 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:2 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:2 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9519:1 9567:1 9614:1 9637:3 9689:1 9702:1 9736:1 9743:1 9746:1 9765:2 9771:1 9858:1 9876:3 9881:1 9884:1 9888:1 9896:1 9921:1 9937:1 9950:4 9997:1 10012:1 10017:1 10024:1 10052:1 10058:1 10106:1 10154:1 10156:2 10175:3 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10274:3 10295:1 10303:3 10308:1 10328:2 10331:16 10404:2 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10714:2 10721:2 10725:1 10731:2 10772:2 10796:1 10811:2 10858:1 10871:5 10891:1 10894:1 10907:1 10922:2 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11120:5 11137:1 11182:1 11212:1 11234:1 11251:3 11261:1 11264:2 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11556:1 11618:2 11623:1 11655:1 11711:1 11760:1 11786:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:2 12074:2 12086:1 12089:5 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:2 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12556:2 12581:1 12632:1 12648:1 12656:3 12675:1 12695:2 12700:2 12718:1 12798:2 12811:1 12844:1 12848:1 12908:1 12928:1 12972:2 12993:1 13037:2 13064:4 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13253:1 13265:1 13267:1 13272:1 13279:5 13317:4 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13551:4 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13779:1 13783:1 13790:2 13816:1 13883:3 13894:2 13933:1 13957:2 13963:1 13968:2 13975:1 14020:2 14046:1 14054:2 14065:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14166:1 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:2 14335:2 14377:1 14393:1 14398:2 14402:1 14431:1 14507:1 14510:1 14539:1 14592:5 14651:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:16 14757:2 14803:1 14804:1 14808:1 14870:4 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:2 15189:2 15280:1 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15480:1 15483:1 15498:1 15512:4 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15755:1 15762:1 15817:2 15823:2 15836:1 15847:1 15892:1 15918:7 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:1 16221:1 16241:1 16259:2 16260:2 16288:1 16292:2 16297:1 16314:1 16330:1 16338:1 16344:2 16355:2 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16552:3 16575:1 16578:1 16604:2 16612:3 16651:1 16653:1 16656:1 16678:1 16690:1 16695:2 16701:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:2 17248:1 17284:1 17293:1 17324:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:7 17439:2 17450:2 17455:2 17488:1 17583:1 17600:1 17620:2 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17978:1 17986:2 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18385:3 18388:1 18407:2 18438:4 18447:4 18453:2 18461:1 18462:1 18464:2 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18781:1 18809:1 18812:4 18869:1 18888:16 18938:1 18942:1 18975:1 18990:2 19007:1 19030:3 19069:1 19075:1 19162:16 19183:2 19192:1 19214:1952 19257:1 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:3 19452:3 19455:1 19458:1 19469:1 19528:1 19601:1 19656:1 19674:1 19680:1 19704:1 19755:1 19765:1 19809:1 19827:4 19851:1 19863:2 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:3 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:4 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:12 20171:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20355:1 20407:1 20421:1 20495:1 20498:1 20499:2 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:2 20799:1 20811:1 20832:4 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21109:1 21138:1 21146:4 21156:2 21177:1 21183:3 21213:1 21227:1 21232:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:3 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:2 21492:1 21501:1 21523:1 21537:1 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22117:1 22132:2 22138:2 22152:2 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:3 22515:1 22524:1 22527:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22777:1 22780:1 22783:1 22784:1 22795:1 22807:1 22812:1 22848:1 22856:1 22860:2 22879:1 22888:2 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:3 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23114:2 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:2 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:4 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:4 23960:1 23967:1 23977:1 24000:1 24002:1 24010:2 24019:1 24025:2 24049:1 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24285:1 24291:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24586:1 24633:1 24663:1 24668:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24741:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:2 24952:2 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:3 25237:1 25289:1 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25442:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25905:1 25909:4 25910:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26062:2 26065:1 26076:2 26107:1 26128:1 26131:1 26147:2 26154:2 26208:1 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:2 26416:1 26470:1 26477:1 26519:1 26522:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26639:1 26668:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:2 26909:1 26921:1 26932:1 26987:5 27007:1 27036:1 27097:2 27151:1 27163:1 27174:1 27183:1 27184:6 27194:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27309:1 27342:1 27349:1 27371:16 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27518:1 27559:1 27580:1 27634:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:1 27847:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:2 28502:1 28516:7 28524:1 28541:3 28549:1 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:1 28634:5 28645:1 28653:1 28660:1 28661:1 28672:1 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:3 28904:1 28907:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29057:1 29058:1 29091:1 29122:2 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29252:1 29291:1 29301:1 29326:1 29338:1 29355:1 29358:1 29400:1 29414:2 29422:2 29439:1 29509:1 29512:1 29529:2 29543:1 29614:1 29624:1 29636:3 29640:1 29661:1 29663:1 29685:1 29704:2 29706:1 29752:2 29754:1 29760:2 29768:1 29775:2 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 68:1 90:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:1 288:1 309:1 331:2 344:3 363:1 382:4 389:1 394:1 451:3 457:1 534:1 571:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:1 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 783:1 791:1 798:1 893:2 896:1 902:1 905:1 927:1 928:3 933:1 944:1 956:1 957:2 976:1 980:1 982:1 1016:2 1073:1 1126:1 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:3 1491:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1579:2 1583:1 1596:4 1598:1 1607:2 1624:1 1627:1 1671:1 1680:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:3 1964:1 1988:2 1990:1 1991:1 2022:1 2025:1 2030:1 2041:1 2062:1 2075:1 2076:1 2081:1 2084:6 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:3 2246:1 2247:1 2251:3 2254:1 2257:1 2258:1 2259:2 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:2 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:16 2359:1 2370:2 2418:4 2429:1 2459:1 2461:1 2463:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:2 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2838:1 2860:5 2871:2 2880:1 2918:1 2952:2 2967:5 2970:3 3004:1 3017:6 3025:2 3026:1 3035:2 3055:1 3079:1 3086:2 3112:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3325:2 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:1 3615:1 3631:1 3642:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:1 3789:2 3820:1 3828:1 3829:1 3864:1 3865:1 3877:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:2 3944:1 3946:2 3950:2 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:1 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4220:1 4231:1 4247:1 4257:2 4279:1 4282:1 4309:1 4315:1 4329:1 4403:2 4449:1 4486:2 4521:2 4525:1 4540:1 4551:3 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:3 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:10 5031:1 5041:1 5049:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:1 5253:1 5268:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:3 5644:2 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6035:2 6059:2 6070:2 6090:1 6126:2 6128:1 6164:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:3 6299:2 6315:1 6338:2 6367:1 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:4 6542:1 6570:1 6584:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:2 6695:1 6756:1 6765:1 6777:3 6797:5 6854:1 6869:1 6885:1 6912:1 6927:5 6928:1 6949:1 6962:1 6980:5 6999:2 7012:1 7023:1 7055:1 7063:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:3 7437:1 7476:1 7529:2 7564:2 7606:4 7631:1 7687:1 7692:2 7721:6 7731:2 7762:1 7778:1 7825:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7971:2 7975:1 7978:3 7995:2 7997:2 8003:4 8004:2 8008:1 8016:1 8022:1 8023:1 8029:17 8044:6 8050:1 8054:1 8077:1 8089:1 8142:1 8174:1 8195:1 8216:1 8221:2 8222:1 8257:1 8275:1 8335:1 8373:1 8377:2 8391:1 8422:2 8432:1 8486:2 8490:1 8513:5 8537:2 8565:8 8570:4 8572:2 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:2 8729:1 8743:1 8754:6 8791:5 8804:1 8868:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:2 8957:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9192:1 9193:2 9201:2 9214:1 9223:1 9239:1 9250:1 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9689:1 9702:1 9736:1 9743:1 9746:1 9765:3 9771:1 9858:1 9876:3 9881:4 9884:1 9886:1 9888:2 9896:1 9914:1 9921:2 9937:1 9950:4 9997:1 10012:1 10017:1 10024:1 10052:1 10058:1 10106:1 10154:1 10156:2 10175:3 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10270:1 10274:3 10295:1 10303:3 10308:1 10328:2 10331:16 10404:2 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10772:2 10796:1 10811:2 10858:1 10871:6 10877:1 10888:1 10891:1 10894:1 10907:1 10922:2 10925:1 10928:1 10962:1 10964:2 10977:2 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11113:1 11120:5 11137:1 11182:1 11212:1 11234:1 11251:3 11261:2 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11512:1 11556:1 11573:1 11615:2 11618:2 11623:1 11625:1 11655:1 11711:1 11760:1 11786:1 11807:1 11873:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:1 12067:3 12069:2 12074:2 12086:1 12089:5 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:2 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12556:2 12581:1 12632:1 12648:1 12656:3 12675:1 12695:2 12700:2 12718:1 12798:2 12811:1 12844:2 12848:1 12908:1 12928:1 12972:2 12993:1 13037:3 13064:5 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13253:1 13265:1 13267:1 13272:1 13279:6 13317:4 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13551:4 13565:1 13566:1 13574:1 13575:2 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13779:1 13783:1 13790:2 13816:1 13860:1 13883:3 13894:2 13933:1 13957:2 13963:1 13968:2 13975:1 14020:3 14046:1 14054:2 14065:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:1 14398:2 14402:1 14431:1 14507:1 14510:1 14539:1 14592:5 14651:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:16 14757:2 14803:1 14804:1 14808:1 14870:4 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:2 15189:2 15280:1 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15480:1 15483:1 15498:1 15512:5 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15755:1 15762:1 15817:2 15823:2 15836:1 15847:1 15892:1 15918:9 15920:1 15929:1 15937:1 15946:1 15970:1 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:1 16221:1 16241:1 16259:2 16260:2 16288:1 16292:2 16297:2 16314:1 16330:1 16338:1 16344:2 16355:2 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16552:3 16575:1 16578:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16690:1 16695:2 16701:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:2 17248:1 17284:1 17293:1 17324:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:9 17433:1 17439:2 17450:2 17455:2 17463:1 17488:1 17583:1 17600:1 17607:1 17620:2 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17978:1 17985:1 17986:2 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18348:2 18361:1 18369:1 18383:1 18385:3 18388:1 18407:2 18438:4 18447:4 18453:3 18461:1 18462:1 18464:2 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18781:1 18809:1 18812:4 18869:1 18888:16 18938:1 18942:2 18975:1 18990:2 19007:1 19030:3 19032:1 19069:1 19075:1 19162:16 19183:2 19192:1 19214:2013 19257:1 19268:1 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:3 19452:3 19455:1 19458:1 19469:1 19477:1 19528:1 19601:1 19656:1 19674:1 19680:1 19704:1 19755:1 19765:1 19809:1 19827:4 19851:1 19863:2 19867:1 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:4 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:5 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:14 20171:1 20181:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:1 20331:1 20340:1 20346:1 20355:1 20407:1 20421:1 20495:1 20498:1 20499:2 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:2 20799:1 20811:1 20832:4 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21036:1 21048:1 21050:2 21055:2 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21156:2 21177:1 21183:3 21213:1 21227:1 21232:1 21265:1 21272:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:3 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:3 21492:1 21501:1 21523:1 21537:1 21542:1 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:1 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21985:1 21994:1 22020:1 22043:1 22082:3 22096:2 22117:1 22132:2 22138:2 22152:2 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:3 22515:1 22524:1 22527:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22777:1 22780:1 22783:1 22784:1 22795:1 22807:1 22812:1 22848:1 22856:1 22860:2 22879:1 22888:2 22899:1 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:3 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:2 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:5 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23944:2 23951:4 23960:1 23967:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24025:2 24049:1 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24285:1 24291:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:1 24433:1 24485:1 24496:2 24500:1 24586:1 24633:1 24663:1 24668:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:2 24952:2 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:3 25235:1 25237:1 25286:1 25289:1 25305:1 25314:5 25335:2 25350:2 25385:1 25413:1 25425:1 25440:1 25442:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25905:1 25909:5 25910:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26051:1 26062:2 26064:2 26065:1 26076:2 26107:1 26128:2 26131:1 26147:2 26154:2 26208:2 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:2 26416:1 26470:1 26477:1 26519:1 26522:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26639:1 26668:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:2 26909:1 26921:1 26932:1 26987:5 27007:1 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:1 27184:6 27194:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27309:1 27342:1 27349:1 27371:16 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27505:1 27516:1 27518:1 27559:1 27580:1 27634:1 27641:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:1 27847:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28127:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:2 28502:1 28516:7 28524:1 28541:3 28549:1 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:1 28634:5 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:3 28904:1 28907:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29057:1 29058:1 29060:2 29062:2 29091:2 29122:2 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29291:1 29301:1 29326:1 29338:1 29355:1 29358:1 29400:1 29414:2 29422:2 29439:1 29509:1 29512:1 29529:2 29543:1 29614:1 29624:1 29636:3 29640:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:3 29768:1 29775:2 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 68:1 90:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:1 309:1 331:2 344:3 363:1 382:5 389:1 394:1 451:3 457:1 534:1 551:1 571:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 783:1 791:1 798:1 893:3 896:1 902:1 905:1 914:1 927:1 928:3 933:1 944:1 956:1 957:2 976:1 980:1 982:1 1016:2 1073:1 1126:2 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1473:3 1474:1 1491:1 1493:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2041:1 2062:1 2075:1 2076:2 2081:1 2084:7 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:3 2246:1 2247:1 2251:3 2254:1 2257:1 2258:1 2259:3 2270:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:2 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:16 2359:1 2370:2 2418:4 2429:1 2459:1 2461:1 2463:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:2 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2838:1 2860:5 2871:2 2880:1 2918:1 2952:2 2967:7 2970:3 3004:1 3017:8 3025:2 3026:1 3035:2 3055:1 3079:1 3086:2 3112:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3325:2 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:1 3615:1 3631:1 3642:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:1 3864:1 3865:1 3877:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:2 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4015:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:1 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4220:1 4231:1 4247:1 4257:2 4279:1 4282:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4607:2 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:4 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:12 5031:1 5041:1 5049:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:1 5253:1 5268:1 5273:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:4 5644:2 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:1 5927:1 5939:1 5995:1 6035:3 6059:2 6070:2 6090:1 6126:2 6128:1 6164:1 6233:1 6236:1 6260:2 6271:2 6281:1 6282:3 6299:2 6315:1 6338:2 6367:1 6385:1 6442:4 6484:1 6501:4 6515:2 6517:1 6518:1 6519:4 6542:1 6570:1 6584:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:2 6695:1 6756:1 6765:1 6777:3 6797:5 6854:1 6869:1 6885:2 6891:1 6912:1 6927:5 6928:1 6949:1 6962:1 6980:5 6999:2 7012:1 7023:1 7055:1 7063:1 7090:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7437:1 7476:1 7529:2 7564:3 7606:4 7624:1 7631:1 7687:1 7692:2 7721:7 7731:2 7762:1 7778:1 7825:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7970:1 7971:2 7975:1 7978:3 7995:2 7997:2 8003:4 8004:2 8008:1 8016:1 8022:1 8023:1 8029:17 8044:8 8050:1 8054:1 8077:1 8089:1 8142:1 8174:1 8195:1 8216:1 8221:3 8222:1 8257:1 8275:1 8329:1 8335:2 8373:1 8377:2 8391:1 8422:2 8432:1 8486:2 8490:1 8513:7 8537:2 8565:9 8570:4 8572:2 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:3 8729:1 8743:1 8754:7 8791:5 8804:1 8868:1 8875:1 8880:1 8884:1 8885:1 8891:1 8896:1 8900:2 8936:1 8957:1 8958:1 8973:1 8993:1 9037:1 9045:2 9074:2 9116:1 9192:1 9193:2 9201:2 9214:1 9223:1 9239:1 9250:2 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9771:1 9858:1 9876:3 9881:4 9884:1 9886:1 9888:2 9896:1 9914:1 9921:2 9937:1 9950:4 9997:2 10012:1 10017:2 10024:1 10052:1 10058:1 10106:1 10153:1 10154:1 10156:2 10175:3 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10270:1 10274:3 10295:1 10303:3 10308:1 10328:2 10331:16 10404:3 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10772:2 10796:1 10811:2 10858:1 10871:7 10877:1 10888:1 10891:1 10894:1 10907:1 10922:2 10925:1 10928:1 10962:1 10964:2 10977:3 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11113:1 11120:5 11137:1 11182:1 11212:1 11234:1 11251:3 11261:2 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11512:1 11536:1 11556:1 11573:1 11615:2 11618:2 11623:1 11625:1 11655:1 11711:1 11760:1 11786:1 11807:1 11818:1 11873:1 11874:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:2 12067:4 12069:2 12074:3 12086:1 12089:5 12098:2 12111:1 12116:1 12119:3 12124:1 12158:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:4 12675:1 12695:2 12700:2 12718:1 12798:2 12811:1 12844:2 12848:1 12908:1 12928:1 12972:2 12993:1 13037:3 13064:7 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13253:1 13265:1 13267:1 13272:1 13279:6 13317:4 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13545:1 13551:4 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13816:1 13860:1 13883:3 13894:3 13933:1 13957:3 13963:1 13968:2 13975:1 14020:3 14046:1 14054:2 14065:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14156:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:1 14398:2 14402:1 14431:1 14507:1 14510:1 14539:1 14592:5 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:16 14757:2 14803:1 14804:1 14808:1 14870:4 14875:1 14906:1 14912:1 14928:1 14929:1 15035:1 15089:1 15176:3 15189:2 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15382:1 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:6 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15755:1 15762:1 15817:2 15823:2 15836:1 15847:1 15892:1 15918:9 15920:1 15929:1 15937:1 15946:1 15970:1 16002:1 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:1 16221:1 16241:1 16259:2 16260:3 16288:1 16292:2 16297:2 16314:1 16330:1 16338:1 16344:2 16355:2 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16552:3 16575:1 16578:1 16583:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16683:1 16690:1 16695:2 16701:1 16706:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17141:1 17146:4 17191:3 17225:1 17248:1 17284:1 17293:1 17324:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:9 17421:1 17433:2 17439:2 17450:2 17455:3 17463:1 17488:1 17583:1 17600:1 17607:1 17612:1 17615:1 17620:2 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17767:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17978:1 17985:1 17986:2 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18348:2 18361:1 18369:1 18383:1 18385:3 18388:1 18407:2 18438:4 18447:4 18453:4 18461:1 18462:1 18464:2 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18781:1 18809:1 18812:4 18869:1 18888:16 18938:1 18942:2 18975:1 18990:2 19007:1 19030:3 19032:1 19069:1 19075:1 19162:16 19183:2 19192:1 19214:2101 19257:1 19268:1 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:5 19452:5 19455:1 19458:1 19469:1 19477:1 19528:1 19601:1 19656:1 19674:1 19680:1 19704:1 19755:1 19765:1 19809:1 19827:4 19851:1 19863:3 19867:1 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:4 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:6 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:15 20171:1 20181:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:2 20331:1 20340:1 20346:1 20355:1 20356:1 20407:1 20421:1 20495:1 20498:1 20499:3 20504:1 20513:1 20524:2 20554:1 20596:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:3 20799:1 20811:1 20832:5 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:3 21048:1 21050:2 21055:2 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21156:2 21162:1 21177:1 21183:3 21213:1 21227:1 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:4 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:3 21492:1 21501:1 21523:1 21537:1 21542:1 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21659:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:1 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21963:1 21985:1 21994:1 22020:1 22025:1 22043:1 22082:3 22096:2 22117:1 22132:2 22138:2 22152:2 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:3 22515:1 22516:1 22524:1 22527:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22777:1 22780:1 22783:1 22784:1 22795:1 22807:1 22812:1 22848:1 22856:1 22860:2 22879:1 22888:2 22899:1 22900:2 22903:2 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:3 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:6 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23913:1 23944:2 23946:1 23951:4 23960:1 23967:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24025:2 24049:1 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24285:1 24291:1 24328:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:2 24433:1 24485:1 24496:2 24500:1 24533:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:2 24952:2 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:3 25235:1 25237:1 25286:1 25289:1 25305:1 25314:5 25335:2 25350:2 25385:1 25406:1 25413:1 25425:1 25440:1 25442:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25905:1 25909:6 25910:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26051:1 26062:3 26064:2 26065:1 26076:2 26107:1 26128:2 26131:2 26147:2 26154:2 26208:2 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:3 26416:1 26470:1 26477:1 26519:1 26522:1 26535:1 26552:1 26563:2 26605:1 26612:1 26623:1 26630:1 26639:1 26668:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26987:5 27007:1 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27309:1 27342:1 27349:1 27371:16 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:1 27505:1 27516:1 27518:1 27559:1 27580:1 27634:1 27641:1 27653:2 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:2 27847:1 27861:4 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28127:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:3 28502:1 28516:9 28518:1 28524:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:1 28634:6 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:3 28904:1 28907:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29057:1 29058:1 29060:2 29062:2 29091:2 29122:2 29123:1 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29272:1 29291:1 29301:1 29326:1 29338:1 29355:1 29358:1 29400:1 29414:3 29422:3 29439:1 29509:1 29512:1 29529:3 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:2 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 68:1 84:1 90:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:1 309:1 331:2 344:3 363:1 382:5 389:1 394:1 450:1 451:3 457:1 534:1 551:1 571:1 576:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 783:1 791:1 798:1 887:1 893:3 896:1 902:1 905:1 914:1 927:1 928:3 933:1 944:1 956:1 957:2 970:1 976:1 980:1 982:1 1016:2 1073:1 1126:3 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1459:1 1473:3 1474:1 1491:1 1493:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:1 2062:1 2075:1 2076:2 2081:1 2084:8 2085:1 2087:1 2106:1 2123:1 2131:1 2181:1 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:3 2246:1 2247:1 2251:3 2254:1 2257:1 2258:1 2259:4 2270:1 2272:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:16 2359:1 2370:2 2418:4 2429:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:2 2618:1 2633:1 2635:2 2642:2 2650:1 2732:1 2740:2 2741:1 2759:1 2791:1 2808:1 2838:1 2860:5 2871:2 2880:1 2918:1 2952:2 2967:9 2970:3 3004:1 3017:8 3025:2 3026:1 3035:2 3055:1 3079:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3316:1 3319:1 3324:1 3325:2 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:1 3615:1 3631:1 3642:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:1 3833:1 3864:1 3865:1 3877:3 3878:1 3879:1 3897:1 3898:1 3905:2 3907:2 3931:2 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4015:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:1 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4220:1 4231:1 4247:1 4257:2 4279:1 4282:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4607:2 4666:1 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:4 4760:1 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:13 5031:1 5041:1 5049:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:4 5644:2 5677:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5823:2 5927:1 5939:1 5995:1 6035:3 6059:2 6070:2 6090:1 6126:2 6128:1 6164:1 6233:1 6236:1 6246:1 6260:2 6271:2 6281:1 6282:3 6299:2 6315:1 6338:2 6367:2 6385:1 6442:4 6484:1 6501:4 6515:2 6516:1 6517:1 6518:1 6519:4 6542:1 6570:1 6584:1 6602:1 6603:1 6609:1 6617:1 6618:2 6626:1 6630:2 6695:1 6756:1 6765:1 6777:3 6797:5 6854:1 6869:1 6885:2 6891:1 6912:1 6927:5 6928:1 6949:1 6962:1 6980:7 6999:2 7012:1 7023:1 7055:1 7063:1 7090:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7437:1 7476:1 7529:2 7564:3 7606:4 7624:1 7631:1 7687:1 7692:2 7721:8 7731:2 7747:1 7762:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7970:1 7971:2 7975:1 7978:4 7995:2 7997:2 8003:4 8004:2 8008:1 8016:1 8022:1 8023:1 8029:18 8044:8 8050:1 8054:1 8077:1 8089:1 8142:1 8174:1 8195:1 8216:2 8221:3 8222:1 8257:1 8275:1 8329:1 8335:2 8373:1 8377:2 8391:1 8422:2 8432:1 8486:2 8490:1 8513:8 8537:2 8565:10 8570:4 8572:2 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:3 8729:1 8743:1 8754:8 8791:5 8804:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8891:1 8896:1 8900:2 8936:1 8957:2 8958:3 8973:1 8993:1 9037:1 9045:2 9074:2 9116:1 9192:1 9193:2 9201:2 9214:1 9223:1 9239:1 9250:2 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9771:1 9858:1 9876:3 9881:4 9884:1 9886:1 9888:2 9896:1 9914:1 9921:2 9937:1 9950:4 9997:2 10012:1 10017:2 10024:1 10052:1 10058:1 10106:1 10114:1 10153:1 10154:1 10156:2 10175:3 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10270:2 10274:3 10295:1 10303:3 10308:1 10328:2 10331:16 10404:3 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10772:2 10796:1 10811:2 10847:1 10858:1 10871:8 10877:1 10888:1 10891:1 10894:1 10907:1 10922:2 10925:1 10928:1 10962:1 10964:2 10977:3 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:5 11137:1 11175:1 11182:1 11212:1 11234:1 11251:3 11261:3 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11512:1 11536:1 11556:1 11573:1 11615:2 11618:2 11623:1 11625:1 11655:1 11662:1 11711:1 11760:1 11786:1 11807:1 11818:1 11873:1 11874:1 11894:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:2 12067:5 12069:2 12074:3 12086:1 12089:5 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:1 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:4 12675:1 12695:2 12700:2 12718:1 12798:2 12811:1 12844:2 12848:1 12895:1 12908:1 12928:1 12972:2 12993:1 13037:3 13064:9 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13222:1 13226:1 13253:1 13265:1 13267:1 13272:1 13279:7 13317:4 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13545:1 13551:4 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13816:1 13860:1 13883:3 13894:4 13933:1 13957:3 13963:1 13968:2 13975:1 14020:3 14046:1 14054:2 14065:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14156:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:1 14398:2 14402:1 14431:1 14507:1 14510:1 14539:1 14592:5 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:16 14757:2 14803:1 14804:1 14808:1 14825:1 14870:4 14875:1 14906:1 14912:1 14928:1 14929:1 14988:1 15035:1 15089:1 15164:1 15176:3 15189:2 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15382:1 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:9 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15762:1 15817:2 15823:3 15836:2 15847:1 15892:1 15918:9 15920:1 15929:1 15937:1 15946:1 15970:1 16002:2 16010:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:1 16221:1 16241:1 16259:2 16260:3 16288:1 16292:2 16297:2 16314:1 16330:1 16338:1 16344:2 16355:2 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16508:1 16552:4 16575:1 16578:1 16583:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16690:1 16695:2 16701:1 16706:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 17035:1 17068:1 17071:1 17080:1 17108:1 17121:1 17133:1 17135:1 17141:1 17146:4 17191:3 17225:1 17248:1 17284:1 17293:1 17324:1 17334:1 17354:1 17357:1 17406:1 17410:1 17412:1 17419:9 17421:2 17433:2 17439:2 17450:2 17455:3 17463:1 17488:1 17583:1 17600:1 17607:1 17612:2 17615:1 17620:2 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17767:1 17771:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:2 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:1 18369:1 18383:1 18385:3 18388:1 18407:2 18438:4 18447:4 18453:4 18461:1 18462:1 18464:2 18496:1 18497:3 18509:3 18527:1 18573:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18781:1 18809:1 18812:4 18869:1 18888:16 18938:1 18942:2 18975:2 18990:2 19007:1 19030:3 19032:1 19069:2 19075:1 19162:16 19183:2 19192:1 19214:2169 19257:1 19268:1 19298:1 19308:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:5 19450:1 19452:5 19455:1 19458:1 19469:1 19477:2 19528:1 19601:1 19642:1 19656:1 19674:1 19680:1 19704:1 19755:1 19765:1 19809:1 19827:4 19851:1 19863:3 19867:1 19869:1 19885:1 19892:1 19915:1 19927:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:5 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:9 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:15 20171:1 20181:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:2 20331:1 20340:1 20346:1 20355:1 20356:1 20407:1 20421:1 20495:1 20498:1 20499:3 20504:1 20513:1 20524:2 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:3 20799:1 20811:1 20832:5 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:4 21048:1 21050:2 21055:3 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21156:2 21162:1 21177:1 21183:3 21213:1 21227:1 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:4 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21659:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:1 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21955:1 21963:1 21985:1 21994:1 22020:1 22025:1 22043:1 22078:1 22082:3 22096:2 22117:1 22132:2 22138:2 22152:2 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:3 22515:1 22516:1 22524:1 22527:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22777:1 22780:1 22783:1 22784:1 22795:1 22804:1 22807:1 22812:1 22848:1 22856:1 22860:2 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:3 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23332:4 23350:1 23357:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:7 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23879:1 23886:1 23887:1 23894:2 23913:1 23944:2 23946:1 23951:4 23960:1 23967:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24025:3 24049:1 24066:1 24081:2 24084:1 24133:2 24169:1 24186:1 24190:1 24202:1 24230:2 24272:1 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:2 24433:1 24485:1 24496:2 24500:1 24533:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:2 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25194:1 25204:3 25235:1 25237:1 25286:1 25289:1 25305:1 25314:5 25335:3 25350:2 25385:1 25406:1 25413:2 25425:1 25440:1 25442:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25905:1 25909:9 25910:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26107:1 26128:2 26131:2 26147:2 26154:2 26208:2 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:3 26416:1 26466:1 26470:1 26477:1 26519:1 26522:1 26535:1 26552:1 26563:2 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26987:5 27007:1 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27309:1 27342:1 27349:1 27371:16 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27634:1 27641:1 27653:3 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:3 27847:1 27861:4 27872:1 27897:2 27921:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28127:1 28144:1 28147:1 28148:1 28157:1 28180:1 28195:5 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:3 28502:1 28516:10 28518:1 28524:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:1 28631:1 28634:7 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28728:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:3 28904:1 28907:1 28920:1 28935:2 28942:1 28957:1 28962:1 29021:1 29057:1 29058:1 29060:2 29062:2 29086:1 29091:2 29122:2 29123:1 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29272:1 29291:1 29301:1 29326:1 29338:1 29355:1 29358:1 29400:1 29414:3 29422:3 29439:1 29509:1 29512:1 29529:3 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:3 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 382:6 389:1 394:1 450:1 451:3 457:1 470:1 534:1 551:1 571:1 576:1 597:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 783:1 791:1 798:1 808:1 887:1 893:4 896:1 902:1 905:1 914:1 927:1 928:3 933:1 944:1 956:1 957:2 970:1 976:1 980:1 982:1 1016:2 1073:1 1126:3 1141:1 1155:1 1187:1 1191:1 1236:4 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1459:1 1473:3 1474:1 1491:1 1493:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:1 2062:1 2075:1 2076:3 2081:1 2084:12 2085:1 2087:1 2106:1 2123:1 2131:1 2154:1 2181:2 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:3 2246:1 2247:1 2251:4 2254:1 2257:1 2258:1 2259:4 2270:1 2272:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:2 2336:1 2342:1 2348:16 2359:1 2370:3 2418:4 2429:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2498:1 2522:1 2533:1 2553:1 2557:1 2564:1 2595:2 2614:2 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:1 2740:2 2741:1 2759:1 2791:1 2800:1 2808:1 2838:1 2860:6 2871:2 2880:1 2918:1 2952:2 2967:9 2970:3 3004:1 3012:1 3017:10 3025:2 3026:1 3035:2 3055:1 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:1 3615:1 3631:1 3642:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:1 3833:1 3864:1 3865:1 3877:3 3878:1 3879:1 3897:1 3898:1 3905:2 3907:2 3931:2 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4015:1 4041:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:1 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:1 4247:1 4257:2 4279:1 4282:1 4290:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4607:2 4666:1 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:4 4760:1 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:1 4990:3 5005:1 5028:13 5031:1 5032:1 5041:1 5049:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:5 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:4 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5761:1 5823:2 5927:1 5939:1 5995:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6164:1 6177:1 6233:1 6236:1 6243:1 6246:1 6260:2 6271:2 6281:1 6282:4 6299:2 6315:1 6338:2 6367:2 6385:1 6442:4 6484:1 6501:4 6515:2 6516:1 6517:1 6518:1 6519:4 6542:1 6570:1 6584:2 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6626:1 6630:2 6695:1 6756:1 6765:1 6777:3 6797:5 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:5 6928:1 6949:1 6962:1 6980:7 6999:2 7012:1 7023:1 7055:1 7063:1 7090:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7419:1 7437:1 7476:1 7480:1 7529:2 7561:1 7564:3 7604:1 7606:4 7624:1 7631:1 7632:1 7687:2 7692:2 7721:12 7731:2 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7970:1 7971:2 7975:1 7978:4 7986:1 7995:2 7997:2 8003:4 8004:2 8008:1 8016:1 8022:1 8023:1 8029:18 8044:10 8050:1 8054:1 8077:1 8089:1 8142:1 8174:1 8195:1 8216:2 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8373:1 8377:2 8391:1 8422:2 8432:1 8486:2 8490:1 8513:8 8537:2 8565:12 8570:5 8572:2 8573:1 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:4 8729:1 8743:1 8754:12 8791:5 8804:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8900:2 8936:1 8957:2 8958:3 8973:1 8993:1 9037:1 9045:2 9074:2 9080:1 9116:1 9141:1 9192:1 9193:2 9201:2 9214:1 9223:1 9239:1 9250:2 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:1 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9771:1 9788:1 9858:1 9876:3 9878:1 9881:6 9884:17 9886:1 9888:2 9896:1 9904:1 9914:1 9921:2 9937:1 9950:4 9997:2 10012:1 10017:2 10024:1 10052:1 10058:1 10106:1 10114:1 10153:1 10154:1 10156:2 10175:3 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10270:2 10274:3 10295:1 10303:3 10308:1 10328:2 10331:16 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10772:2 10796:1 10811:3 10847:1 10858:1 10871:12 10877:1 10888:1 10891:1 10894:1 10907:1 10920:1 10922:2 10925:1 10928:1 10962:1 10964:2 10977:3 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:5 11137:1 11175:1 11182:1 11212:1 11234:1 11251:3 11261:3 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11511:1 11512:1 11536:1 11556:1 11573:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11662:1 11711:1 11760:1 11786:1 11807:1 11818:1 11856:1 11873:1 11874:1 11894:1 11941:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:2 12067:5 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:2 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:1 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:5 12675:1 12695:2 12700:2 12718:1 12798:2 12811:1 12844:2 12848:1 12895:1 12908:1 12928:1 12972:2 12993:1 13037:4 13058:1 13064:9 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13222:1 13226:1 13253:1 13265:1 13267:1 13272:1 13279:7 13317:5 13338:1 13451:1 13482:1 13494:2 13498:1 13520:1 13545:1 13551:4 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13797:1 13816:1 13860:1 13881:1 13883:3 13894:4 13933:1 13957:4 13963:1 13968:2 13975:1 14020:3 14046:1 14054:2 14065:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14156:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:1 14398:2 14402:1 14431:1 14507:1 14510:1 14539:1 14557:1 14592:5 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:16 14757:2 14803:1 14804:1 14808:1 14825:1 14870:5 14875:1 14906:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15089:1 15103:1 15164:1 15166:1 15168:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15382:1 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:9 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15892:1 15918:10 15920:1 15929:1 15937:1 15946:1 15970:1 16002:2 16010:1 16045:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:1 16221:1 16241:1 16259:2 16260:4 16288:1 16292:2 16294:1 16297:2 16314:1 16330:1 16338:1 16344:2 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16508:1 16552:4 16575:1 16578:1 16583:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16690:1 16695:2 16701:1 16706:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16999:1 17007:1 17035:1 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:1 17141:1 17146:4 17184:1 17191:4 17225:1 17248:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17406:1 17410:1 17412:2 17419:10 17421:2 17433:2 17439:2 17450:2 17455:4 17463:1 17488:1 17583:1 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17767:1 17771:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:1 18369:1 18383:1 18385:3 18388:1 18407:2 18438:4 18447:4 18453:4 18461:1 18462:1 18464:2 18496:1 18497:3 18509:3 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18781:1 18809:1 18812:4 18834:1 18869:1 18888:16 18938:1 18942:2 18975:2 18990:2 19007:1 19030:3 19032:1 19069:2 19075:1 19162:16 19183:2 19192:1 19211:1 19214:2235 19257:1 19264:1 19268:1 19298:1 19308:1 19316:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19431:1 19441:5 19450:1 19452:5 19455:1 19458:1 19469:1 19477:2 19528:1 19531:1 19534:1 19601:1 19642:1 19656:1 19674:1 19680:1 19704:1 19755:3 19765:1 19809:1 19827:4 19851:1 19863:6 19867:2 19869:1 19885:1 19892:1 19915:2 19927:1 19929:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:5 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:9 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:15 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:2 20331:1 20340:1 20346:2 20355:1 20356:1 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:4 20799:1 20811:1 20832:6 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:4 21048:1 21050:2 21055:3 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:1 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:6 21400:1 21401:1 21411:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21659:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:1 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21945:1 21955:1 21963:1 21985:1 21994:1 22020:1 22025:1 22043:1 22078:1 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22542:1 22569:5 22603:1 22606:1 22611:1 22614:1 22644:1 22645:1 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22773:1 22777:1 22780:1 22783:1 22784:1 22795:1 22804:1 22807:1 22812:2 22848:1 22856:1 22860:2 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22930:1 22947:1 22957:1 22991:1 22993:1 23011:1 23012:2 23013:3 23021:1 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:4 23350:1 23357:1 23362:1 23363:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:7 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23875:1 23879:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:3 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:2 24272:1 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:2 24433:1 24485:1 24496:2 24500:1 24533:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:1 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25286:1 25289:1 25305:1 25314:5 25335:3 25350:2 25385:1 25406:1 25413:2 25425:1 25440:1 25442:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25734:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25900:1 25905:1 25909:9 25910:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26107:1 26128:4 26131:2 26147:2 26154:2 26208:2 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:3 26416:1 26466:1 26470:1 26477:1 26519:1 26522:1 26535:1 26552:1 26563:2 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26975:1 26987:5 27007:1 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:5 27215:2 27229:1 27243:1 27255:1 27284:5 27309:1 27342:1 27349:1 27371:16 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:1 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27606:1 27634:1 27641:1 27653:3 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:3 27847:1 27861:4 27866:1 27872:1 27892:1 27897:2 27921:1 27948:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28127:1 28144:1 28147:1 28148:1 28157:1 28180:2 28195:5 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:3 28502:1 28516:11 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:1 28634:8 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28728:1 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 29021:1 29057:1 29058:1 29060:2 29062:2 29086:1 29091:2 29122:2 29123:1 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29272:1 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29422:3 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:3 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:6 389:1 394:1 450:1 451:3 457:1 470:1 534:1 551:1 571:1 576:1 597:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:1 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1016:2 1073:1 1126:3 1141:1 1155:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1459:1 1473:3 1474:1 1491:1 1493:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:2 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:1 2062:1 2075:1 2076:3 2081:1 2084:13 2085:1 2087:1 2106:1 2123:1 2131:1 2154:1 2181:2 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:4 2246:1 2247:1 2251:4 2254:1 2257:1 2258:1 2259:4 2270:1 2272:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:3 2336:1 2342:1 2348:17 2359:1 2370:3 2418:4 2429:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2498:1 2522:1 2533:2 2553:1 2557:1 2564:1 2595:2 2614:2 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2791:1 2800:1 2808:1 2838:1 2860:6 2871:2 2880:1 2881:1 2918:1 2952:2 2967:10 2970:3 3004:1 3012:1 3017:10 3025:2 3026:1 3035:2 3055:1 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:2 3615:1 3631:1 3642:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:1 3833:2 3864:1 3865:1 3877:4 3878:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4015:1 4041:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:1 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:2 4247:1 4257:2 4279:1 4282:1 4290:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4603:1 4607:2 4666:1 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:4 4760:2 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:2 4990:3 5005:1 5028:14 5031:1 5032:1 5041:1 5049:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:4 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5761:1 5823:2 5927:2 5939:1 5995:1 5998:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6152:1 6164:1 6177:1 6233:1 6236:1 6243:1 6246:1 6260:2 6271:2 6281:1 6282:4 6299:2 6315:1 6338:2 6367:3 6385:1 6442:4 6484:1 6501:4 6515:2 6516:1 6517:1 6518:1 6519:4 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6626:1 6630:2 6695:1 6756:1 6763:1 6765:1 6777:3 6797:6 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:5 6928:1 6949:1 6962:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7090:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7419:1 7437:1 7476:1 7480:1 7529:2 7561:1 7564:3 7604:1 7606:4 7624:1 7631:1 7632:1 7687:2 7692:2 7721:13 7731:2 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:1 7902:2 7935:2 7952:3 7970:1 7971:2 7975:2 7978:5 7986:1 7995:2 7997:2 8003:5 8004:2 8008:1 8016:1 8022:1 8023:1 8029:19 8044:10 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8373:1 8377:2 8391:1 8422:2 8432:1 8483:1 8486:2 8490:1 8513:8 8537:2 8565:12 8570:5 8572:2 8573:1 8574:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:4 8729:1 8743:1 8754:13 8791:5 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8900:2 8936:1 8957:2 8958:4 8973:1 8993:1 9037:1 9045:2 9065:1 9074:2 9080:1 9116:1 9141:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:1 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9858:1 9876:3 9878:1 9881:6 9884:17 9886:1 9888:2 9896:2 9904:1 9914:1 9921:2 9937:1 9950:4 9997:2 10012:1 10017:2 10024:2 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:3 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10270:3 10274:3 10295:1 10303:3 10308:1 10328:2 10331:17 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10772:2 10796:1 10811:3 10847:1 10858:1 10871:13 10877:1 10888:1 10891:1 10894:1 10907:1 10920:1 10922:2 10925:1 10928:1 10962:1 10964:2 10977:3 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:5 11137:1 11175:1 11182:1 11212:1 11234:1 11251:3 11261:3 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11662:1 11711:1 11760:1 11786:1 11807:1 11818:1 11856:1 11873:1 11874:1 11894:1 11941:1 11954:1 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:5 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12972:2 12993:1 13037:5 13058:1 13064:10 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13222:2 13226:1 13253:1 13265:1 13267:1 13272:1 13279:7 13317:5 13338:1 13451:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:1 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13797:1 13816:1 13860:1 13881:1 13883:3 13894:4 13933:1 13957:4 13963:1 13968:2 13975:1 14020:3 14046:1 14054:2 14065:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:1 14398:2 14402:1 14429:1 14431:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:17 14757:2 14761:1 14803:1 14804:1 14808:1 14825:1 14870:5 14875:1 14906:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15089:1 15103:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15326:1 15331:1 15352:1 15353:2 15354:2 15382:1 15385:1 15393:1 15410:1 15411:5 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:10 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15875:1 15892:1 15918:10 15920:1 15929:1 15937:1 15946:1 15970:1 16002:2 16010:1 16045:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:2 16221:1 16241:1 16259:2 16260:4 16288:1 16292:2 16294:1 16297:2 16314:1 16330:1 16338:1 16344:2 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16508:1 16552:5 16575:1 16578:1 16583:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16690:1 16695:2 16701:1 16706:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16999:1 17007:1 17035:1 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:1 17146:4 17184:1 17191:4 17225:1 17248:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17406:1 17410:1 17412:2 17419:10 17421:2 17433:2 17439:2 17450:2 17455:4 17463:2 17488:1 17583:1 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17767:1 17771:1 17814:1 17855:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:2 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:1 18369:1 18383:1 18385:4 18388:1 18407:2 18438:4 18441:1 18447:4 18453:4 18461:1 18462:1 18464:2 18496:1 18497:3 18509:3 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18781:1 18809:1 18812:4 18834:1 18869:1 18888:17 18938:1 18942:2 18975:2 18990:2 19007:1 19030:3 19032:1 19069:2 19075:1 19162:17 19183:2 19192:1 19211:1 19214:2285 19257:1 19264:1 19268:2 19298:1 19308:1 19316:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19426:1 19431:1 19441:5 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19528:1 19531:1 19534:1 19601:1 19603:1 19642:1 19656:1 19674:1 19680:1 19704:1 19755:3 19765:1 19809:1 19827:4 19851:1 19863:6 19867:3 19869:1 19885:1 19892:1 19915:2 19927:1 19929:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:10 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:15 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:2 20331:1 20340:1 20346:2 20355:1 20356:1 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:4 20799:1 20811:1 20832:6 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:1 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:6 21348:1 21367:6 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21659:1 21663:1 21672:1 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21945:1 21955:1 21963:1 21985:1 21994:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22569:6 22603:1 22606:1 22611:1 22614:1 22644:1 22645:2 22658:1 22661:2 22685:1 22688:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22795:1 22804:1 22807:1 22812:2 22848:1 22856:1 22860:2 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22930:1 22934:1 22947:1 22957:1 22991:1 22993:1 23004:1 23011:1 23012:2 23013:3 23021:1 23028:1 23032:2 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:4 23350:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:7 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23805:1 23819:1 23858:1 23875:1 23879:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:2 24272:2 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24417:1 24426:2 24433:1 24485:1 24496:2 24500:1 24533:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24793:1 24803:1 24812:2 24822:3 24834:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25269:1 25286:1 25289:1 25305:1 25314:5 25335:3 25350:2 25385:1 25406:1 25413:2 25425:1 25440:1 25442:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25900:1 25905:1 25909:10 25910:1 25929:1 25945:1 25948:2 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26107:1 26128:5 26131:2 26147:2 26154:2 26208:3 26240:1 26256:1 26258:1 26282:3 26302:1 26312:7 26358:1 26413:3 26416:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26975:1 26987:5 27000:1 27007:1 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27284:5 27309:1 27342:1 27349:1 27366:1 27371:17 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:1 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:1 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:3 27847:1 27861:4 27866:1 27872:2 27892:1 27897:2 27921:1 27948:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28118:1 28127:1 28133:1 28144:1 28147:1 28148:1 28157:1 28180:2 28195:6 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:3 28502:1 28516:11 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:2 28634:8 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28728:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 29021:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:2 29123:1 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29272:1 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29422:3 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:3 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:6 389:1 394:1 450:1 451:3 457:1 470:1 473:1 493:1 534:1 551:1 571:1 576:1 597:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1011:1 1016:2 1073:1 1126:3 1141:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1321:1 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1459:1 1473:3 1474:1 1491:1 1493:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:2 1696:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:1 2062:1 2075:1 2076:3 2081:1 2084:14 2085:1 2087:1 2106:1 2123:1 2131:1 2154:1 2181:2 2192:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:4 2246:1 2247:1 2251:4 2254:1 2257:1 2258:1 2259:4 2265:1 2270:1 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:3 2336:1 2342:1 2348:19 2359:1 2370:3 2418:4 2429:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2498:1 2522:1 2533:2 2553:1 2557:1 2564:1 2595:2 2614:3 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2791:1 2800:1 2807:1 2808:1 2838:1 2843:1 2860:6 2871:2 2880:1 2881:1 2918:1 2952:2 2967:10 2970:3 3004:1 3012:1 3017:12 3025:2 3026:1 3035:2 3049:1 3055:2 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3365:1 3373:1 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:3 3615:1 3631:1 3642:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:2 3833:2 3864:1 3865:1 3877:4 3878:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4015:1 4041:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:3 4237:1 4247:1 4257:2 4279:1 4282:1 4290:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4603:1 4607:2 4638:1 4666:1 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:4 4760:2 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:2 4953:1 4990:3 5005:1 5028:14 5031:1 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:4 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5761:1 5823:2 5896:1 5927:2 5939:1 5995:1 5998:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:1 6152:1 6164:1 6177:1 6233:1 6236:1 6243:1 6246:1 6260:2 6271:2 6281:1 6282:5 6299:2 6315:1 6322:1 6338:2 6367:3 6385:1 6442:4 6484:1 6501:4 6515:2 6516:1 6517:1 6518:1 6519:4 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6630:2 6695:1 6756:1 6763:1 6765:2 6777:3 6797:6 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:6 6928:1 6949:1 6962:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7071:1 7090:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7419:1 7421:1 7437:1 7476:1 7480:1 7529:2 7561:1 7564:3 7604:1 7606:4 7624:1 7631:1 7632:1 7687:2 7692:2 7721:14 7731:2 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:2 7902:2 7935:2 7952:3 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:19 8044:12 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8373:1 8377:2 8391:1 8422:2 8432:1 8483:1 8486:2 8490:1 8513:10 8537:2 8565:12 8570:5 8572:2 8573:1 8574:1 8591:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:4 8729:1 8743:1 8754:14 8791:6 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8900:2 8936:1 8957:2 8958:4 8973:1 8979:1 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9116:1 9141:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:1 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9858:1 9876:3 9878:1 9881:6 9884:17 9886:1 9888:2 9896:2 9904:1 9914:1 9921:2 9937:1 9950:4 9997:2 10012:1 10017:2 10024:2 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10252:1 10262:1 10270:3 10274:3 10295:1 10303:3 10308:1 10328:2 10331:19 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10847:1 10858:1 10871:14 10877:1 10888:1 10891:1 10894:1 10907:1 10920:1 10922:3 10925:1 10928:1 10940:1 10962:1 10964:2 10977:3 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:6 11137:1 11175:1 11182:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11711:1 11760:1 11786:1 11807:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11941:1 11954:2 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:6 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12972:2 12993:1 13037:6 13046:1 13058:1 13064:10 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13222:2 13226:1 13253:1 13265:1 13267:1 13268:1 13272:1 13279:7 13317:5 13338:1 13451:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:2 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13797:1 13816:1 13860:1 13881:1 13883:3 13894:4 13930:1 13933:1 13944:1 13957:4 13963:1 13968:2 13975:1 14020:3 14036:1 14046:1 14054:2 14065:1 14083:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:1 14398:2 14402:1 14429:1 14431:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:19 14757:2 14761:1 14803:1 14804:1 14808:1 14825:1 14870:5 14875:1 14906:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15089:1 15103:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15322:1 15326:1 15331:1 15352:1 15353:2 15354:2 15382:1 15385:1 15393:1 15410:1 15411:6 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:10 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15875:1 15892:1 15918:10 15920:1 15929:1 15937:1 15946:1 15970:1 16002:3 16010:1 16045:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:2 16221:1 16241:1 16256:1 16259:2 16260:4 16288:1 16292:2 16294:1 16297:2 16314:1 16330:1 16338:1 16344:2 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16508:1 16552:5 16575:1 16578:1 16583:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16690:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:1 17146:4 17184:1 17191:5 17225:1 17248:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17406:1 17410:1 17412:2 17419:10 17421:3 17433:2 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17583:1 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:1 17767:1 17771:1 17803:1 17814:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:1 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:1 18369:1 18383:1 18385:4 18388:1 18407:2 18438:4 18441:1 18447:5 18453:4 18461:1 18462:1 18464:2 18496:1 18497:3 18509:3 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:1 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18781:1 18809:1 18812:4 18834:1 18869:2 18888:19 18938:1 18942:2 18975:2 18990:2 19007:1 19030:3 19032:1 19069:2 19075:1 19162:19 19183:2 19192:1 19211:1 19214:2331 19257:1 19264:1 19268:2 19298:1 19308:1 19316:1 19342:1 19345:1 19373:3 19396:1 19405:1 19407:1 19426:1 19431:1 19441:5 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19528:1 19531:1 19534:1 19601:1 19603:1 19642:1 19656:1 19674:1 19680:1 19704:1 19755:3 19765:1 19809:1 19827:4 19851:1 19863:7 19867:3 19869:1 19885:1 19892:1 19915:2 19927:1 19929:1 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:10 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:15 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:2 20309:3 20331:1 20340:1 20346:2 20355:1 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:5 20799:1 20811:1 20832:7 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:1 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:7 21348:1 21367:7 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21659:1 21663:1 21672:2 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21880:1 21892:1 21894:2 21906:2 21913:1 21938:1 21945:1 21955:1 21957:1 21963:1 21985:1 21994:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22159:1 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22569:6 22603:1 22606:1 22611:1 22614:1 22644:1 22645:2 22658:1 22661:2 22669:1 22685:1 22688:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22795:1 22804:1 22807:2 22812:2 22848:1 22856:1 22859:1 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:1 22930:1 22934:1 22939:1 22947:1 22957:1 22991:1 22993:1 23004:1 23011:1 23012:2 23013:3 23021:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:5 23350:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:8 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23802:1 23805:1 23819:1 23858:1 23875:1 23879:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23975:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:2 24272:2 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:1 24417:1 24426:2 24433:2 24485:1 24496:2 24500:1 24533:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24793:1 24803:1 24812:2 24822:3 24834:1 24838:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25269:1 25286:1 25289:1 25295:1 25305:1 25314:5 25335:3 25350:2 25385:1 25406:1 25413:2 25416:1 25425:1 25440:1 25442:1 25533:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25900:1 25905:1 25909:10 25910:1 25929:1 25945:1 25948:2 25957:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26107:1 26128:5 26131:2 26147:2 26154:2 26208:4 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26945:1 26975:1 26987:6 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:6 27309:1 27329:1 27342:1 27349:1 27366:1 27371:19 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:2 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:3 27847:1 27861:4 27866:1 27872:2 27892:1 27897:2 27921:1 27948:1 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28144:1 28147:1 28148:1 28157:1 28180:2 28195:6 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:2 28488:3 28502:1 28516:11 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:2 28634:8 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28728:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 29021:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:2 29123:1 29143:1 29172:2 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29272:1 29290:1 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:3 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:3 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:6 389:1 394:1 450:1 451:3 457:1 470:1 473:1 493:1 534:1 551:1 571:1 576:1 597:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1011:1 1016:2 1073:1 1126:3 1141:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1312:1 1318:2 1321:1 1406:1 1409:1 1422:1 1429:1 1430:2 1436:1 1440:1 1459:1 1473:3 1474:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:2 1696:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:1 2062:1 2075:1 2076:3 2081:1 2084:14 2085:1 2087:1 2106:1 2123:1 2131:1 2154:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:4 2246:1 2247:1 2251:4 2254:1 2257:1 2258:1 2259:4 2265:2 2270:1 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:3 2336:1 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2498:1 2522:1 2533:2 2553:1 2557:1 2564:1 2595:2 2614:3 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2791:1 2800:1 2807:1 2808:1 2838:1 2843:1 2860:6 2871:2 2880:1 2881:1 2918:1 2952:2 2967:10 2970:3 3004:1 3012:1 3017:12 3025:2 3026:1 3035:2 3049:1 3055:2 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3365:1 3373:3 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:3 3615:1 3631:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:2 3833:2 3864:1 3865:1 3877:4 3878:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3999:2 4002:1 4012:1 4015:1 4041:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:3 4237:1 4247:1 4257:2 4279:1 4282:1 4290:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4603:1 4607:2 4638:1 4666:1 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:5 4760:2 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4877:1 4928:1 4938:2 4953:1 4990:3 4993:1 5005:1 5028:14 5031:1 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:2 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5752:1 5756:2 5761:1 5823:2 5896:1 5927:2 5939:1 5995:1 5998:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:1 6152:1 6164:1 6177:1 6233:1 6236:1 6243:1 6246:1 6260:2 6271:2 6281:1 6282:5 6299:2 6315:1 6322:1 6338:2 6367:3 6385:1 6442:4 6484:1 6501:4 6515:2 6516:1 6517:1 6518:1 6519:4 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6630:2 6695:1 6756:1 6763:1 6765:2 6777:3 6797:6 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:6 6928:1 6949:1 6962:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7071:1 7090:1 7093:2 7097:2 7099:1 7103:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7419:1 7421:1 7437:1 7476:1 7480:1 7529:2 7561:1 7564:3 7604:1 7606:4 7624:1 7631:1 7632:2 7687:2 7692:2 7721:14 7731:2 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:2 7902:2 7935:2 7952:3 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:19 8044:12 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8373:1 8377:2 8391:1 8422:2 8432:1 8483:1 8486:2 8490:1 8513:10 8537:2 8565:13 8570:5 8572:2 8573:1 8574:1 8591:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:4 8729:1 8743:1 8754:14 8777:1 8791:6 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8900:2 8936:1 8957:2 8958:4 8973:1 8979:1 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9116:1 9141:2 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:2 9890:1 9896:2 9904:1 9914:1 9921:2 9937:1 9950:4 9997:2 10012:1 10017:2 10024:2 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10847:1 10858:2 10871:14 10877:1 10888:1 10891:1 10894:1 10907:1 10920:1 10922:3 10925:1 10928:1 10940:1 10962:1 10964:2 10977:3 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:6 11137:1 11175:1 11182:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:1 11300:1 11305:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11711:1 11760:1 11786:1 11807:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11941:2 11954:2 11966:1 11978:1 11987:1 12002:2 12029:1 12040:2 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:6 12670:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12935:1 12972:2 12993:1 13037:6 13046:1 13058:1 13064:10 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13222:2 13226:1 13253:1 13265:1 13267:1 13268:1 13272:1 13279:8 13317:5 13338:1 13451:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:2 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13797:1 13816:1 13860:1 13881:1 13883:3 13894:4 13930:1 13933:2 13944:1 13957:4 13963:1 13968:2 13975:1 14020:3 14036:1 14046:1 14054:2 14065:1 14083:1 14090:1 14097:1 14107:1 14108:1 14113:4 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14335:2 14377:1 14393:3 14398:2 14402:1 14429:1 14431:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:2 14804:1 14808:1 14825:1 14870:5 14875:1 14906:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15089:1 15103:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15322:1 15326:1 15331:1 15352:1 15353:2 15354:3 15382:1 15385:1 15393:1 15410:1 15411:6 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:10 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15875:1 15892:1 15918:10 15920:1 15929:1 15937:1 15946:1 15970:1 16002:3 16010:1 16045:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:2 16195:2 16221:1 16241:1 16256:1 16259:2 16260:4 16288:1 16292:2 16294:1 16297:2 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16453:2 16465:1 16508:1 16552:5 16575:1 16578:1 16583:1 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16690:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:1 17146:4 17184:1 17191:5 17225:1 17229:1 17248:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17406:1 17410:1 17412:2 17419:10 17421:3 17433:3 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17583:1 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:2 17767:1 17771:1 17803:1 17814:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:2 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:1 18369:1 18383:1 18385:4 18388:1 18407:2 18438:4 18441:1 18447:5 18453:4 18461:1 18462:1 18464:2 18496:1 18497:3 18509:3 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18781:1 18809:1 18812:4 18834:1 18869:2 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:3 19032:1 19069:2 19075:1 19162:20 19183:2 19192:1 19211:1 19214:2439 19257:1 19264:1 19268:2 19298:1 19308:1 19316:1 19342:1 19345:2 19373:3 19396:1 19405:1 19407:1 19426:1 19431:1 19441:5 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19528:1 19531:1 19534:2 19601:1 19603:1 19642:1 19656:1 19674:1 19680:1 19704:1 19755:3 19765:1 19809:1 19827:4 19851:1 19863:7 19867:3 19869:1 19885:1 19892:1 19915:2 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20039:1 20044:4 20062:6 20072:1 20086:1 20093:10 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:16 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:3 20309:3 20331:1 20340:1 20346:2 20355:1 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20773:1 20784:5 20799:1 20811:1 20832:7 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:1 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:1 21345:7 21348:1 21367:7 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21633:1 21657:1 21659:1 21663:1 21672:2 21683:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21880:1 21891:1 21892:1 21894:2 21906:2 21913:1 21938:1 21945:1 21955:1 21957:1 21963:1 21985:1 21994:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22159:1 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22569:6 22603:1 22606:1 22611:1 22614:1 22644:1 22645:2 22658:1 22661:2 22669:1 22685:1 22688:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:1 22807:2 22812:2 22848:1 22856:1 22859:1 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:1 22930:1 22934:1 22939:1 22947:1 22957:1 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:5 23350:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23670:8 23683:1 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23802:1 23805:1 23819:1 23858:1 23875:1 23879:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23975:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:2 24272:2 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:1 24417:1 24426:2 24433:2 24485:1 24496:2 24500:1 24533:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:1 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24785:1 24793:1 24803:1 24812:2 24822:3 24834:1 24838:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25269:1 25286:1 25289:1 25295:1 25305:1 25314:5 25335:3 25350:2 25385:1 25406:1 25413:2 25416:1 25425:1 25440:1 25442:1 25533:1 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25863:1 25878:1 25900:1 25905:1 25909:10 25910:1 25929:1 25945:1 25948:2 25957:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26107:1 26128:5 26131:2 26147:2 26154:2 26208:4 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26975:2 26987:6 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:6 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:2 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:3 27847:1 27861:4 27866:1 27872:2 27892:1 27897:2 27921:1 27948:2 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28144:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:6 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:3 28488:3 28502:1 28516:11 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:2 28634:8 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28728:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:2 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29272:1 29290:1 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:3 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:3 29777:1 29781:1 29793:1 29820:1 29822:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 470:1 473:1 493:1 534:1 551:1 571:1 576:1 595:1 597:1 598:3 600:1 613:1 622:2 626:1 651:1 660:2 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1011:1 1016:2 1073:1 1126:3 1141:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1422:1 1429:2 1430:2 1436:1 1440:1 1459:1 1473:3 1474:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:1 1607:2 1624:1 1627:1 1657:1 1671:1 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:1 2062:1 2075:1 2076:3 2081:1 2084:14 2085:1 2086:1 2087:1 2106:1 2123:1 2131:1 2154:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:4 2246:1 2247:1 2250:1 2251:4 2254:1 2257:1 2258:1 2259:4 2265:2 2270:1 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2333:1 2335:3 2336:1 2341:1 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2487:1 2498:1 2522:1 2533:2 2553:1 2557:1 2564:1 2595:2 2614:3 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2791:1 2800:1 2807:1 2808:1 2838:1 2843:1 2860:6 2871:2 2880:1 2881:1 2918:1 2952:2 2967:11 2970:3 3004:1 3012:1 3017:13 3025:2 3026:1 3035:2 3049:1 3055:2 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3365:1 3373:3 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:3 3615:1 3631:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:2 3833:2 3864:1 3865:1 3877:4 3878:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3939:1 3944:1 3946:2 3950:3 3977:1 3987:1 3991:1 3996:1 3999:2 4002:1 4012:1 4015:1 4041:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:3 4237:1 4247:1 4257:2 4279:1 4282:1 4290:1 4309:1 4315:1 4329:1 4403:2 4431:1 4449:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4603:1 4607:2 4638:1 4666:1 4667:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:5 4760:2 4778:1 4812:1 4827:2 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4928:1 4938:2 4953:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5394:3 5422:1 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:1 5927:2 5939:1 5995:1 5998:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:1 6152:1 6164:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:2 6281:1 6282:5 6299:2 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:5 6515:2 6516:1 6517:1 6518:1 6519:4 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6695:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:6 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:6 6928:1 6949:1 6962:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7071:1 7090:1 7093:2 7097:2 7099:1 7103:1 7107:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7249:1 7306:1 7352:1 7366:1 7404:5 7419:1 7421:1 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:2 7687:2 7692:2 7721:14 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:3 7902:2 7935:2 7952:4 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:19 8044:13 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8337:1 8373:1 8377:2 8391:1 8422:2 8432:1 8483:1 8486:2 8490:1 8513:10 8537:2 8565:13 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:1 8652:1 8678:1 8691:1 8705:1 8708:4 8729:1 8743:1 8754:14 8777:1 8791:6 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8900:2 8936:1 8957:2 8958:5 8973:1 8979:1 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:1 9116:1 9141:2 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:2 9278:2 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:2 9890:1 9896:2 9904:1 9909:1 9914:1 9921:2 9937:1 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10847:1 10858:2 10871:14 10877:1 10888:1 10891:1 10894:1 10907:1 10920:1 10922:3 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11012:1 11021:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:6 11137:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11711:1 11760:1 11786:1 11807:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:2 11954:3 11966:1 11978:1 11987:1 12002:2 12029:1 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:6 12670:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13037:6 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13131:1 13145:1 13148:1 13184:1 13222:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:9 13317:5 13338:1 13451:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13695:2 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:1 13790:2 13797:1 13816:1 13860:1 13881:1 13883:3 13894:4 13930:1 13933:2 13944:1 13957:4 13963:1 13968:2 13975:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:5 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14260:1 14300:3 14324:1 14335:2 14377:1 14393:3 14398:2 14402:1 14429:1 14431:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15089:1 15103:1 15145:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:3 15382:1 15385:1 15393:1 15410:1 15411:6 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:11 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15875:1 15892:1 15918:10 15920:1 15929:1 15937:1 15946:1 15970:1 16002:4 16010:1 16045:1 16048:1 16054:2 16066:1 16078:1 16089:1 16129:1 16151:3 16195:2 16221:1 16241:1 16256:1 16259:3 16260:4 16288:1 16292:2 16294:1 16297:2 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16508:1 16552:5 16575:1 16578:1 16583:1 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16690:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:2 16774:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:1 17146:4 17184:1 17191:6 17225:1 17229:1 17248:1 17262:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17406:1 17410:1 17412:2 17419:10 17421:4 17433:4 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17583:1 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:2 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:2 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:2 18438:4 18441:1 18447:5 18453:4 18461:1 18462:1 18464:2 18476:1 18496:1 18497:3 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18781:1 18809:1 18812:4 18820:1 18834:1 18869:3 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19162:20 19183:2 19192:1 19211:1 19214:2570 19257:1 19264:1 19268:2 19298:1 19308:1 19316:1 19342:1 19345:2 19373:3 19396:1 19405:1 19407:1 19426:1 19431:2 19441:5 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19528:1 19531:1 19534:2 19601:1 19603:1 19642:1 19656:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:4 19851:1 19863:7 19867:3 19869:1 19885:1 19892:1 19893:1 19915:2 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20086:1 20093:11 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:16 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:3 20309:4 20331:1 20340:1 20346:2 20355:2 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20749:1 20751:1 20757:1 20773:1 20784:6 20799:1 20811:1 20832:7 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21003:1 21004:2 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:2 21345:7 21348:1 21367:7 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:2 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21955:1 21957:1 21963:1 21985:1 21994:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22159:1 22170:1 22172:1 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22569:6 22603:1 22606:1 22611:1 22614:1 22644:1 22645:2 22658:1 22661:2 22669:1 22685:1 22688:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:1 22807:2 22812:2 22848:1 22856:1 22859:1 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:1 22930:1 22934:1 22939:1 22947:1 22957:1 22963:1 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:5 23350:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:1 23405:1 23408:1 23414:1 23415:3 23422:2 23466:1 23483:2 23486:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:9 23683:1 23696:1 23703:5 23708:1 23717:1 23726:4 23754:3 23778:1 23781:1 23794:1 23796:1 23802:1 23805:1 23819:1 23858:1 23875:1 23879:1 23881:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23975:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:2 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:1 24417:1 24426:2 24433:2 24485:1 24496:2 24500:1 24510:1 24533:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24734:1 24741:1 24747:1 24759:1 24785:2 24793:1 24803:1 24812:2 24822:3 24834:1 24838:1 24853:1 24859:2 24863:1 24869:1 24877:5 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:2 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:1 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25416:1 25425:1 25440:1 25442:1 25533:2 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:2 25850:1 25863:1 25878:1 25886:1 25900:1 25905:1 25909:10 25910:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26107:1 26128:6 26131:2 26147:2 26154:2 26156:1 26208:4 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26948:1 26975:2 26987:6 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:6 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:2 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27836:3 27847:1 27861:4 27866:1 27872:2 27892:1 27897:2 27921:1 27948:2 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:6 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:11 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:2 28634:8 28645:1 28653:1 28660:1 28661:1 28672:2 28674:1 28678:1 28695:1 28720:3 28724:1 28725:2 28728:2 28776:1 28778:4 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:2 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:1 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:3 29777:1 29781:1 29785:1 29793:1 29820:1 29822:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 470:1 473:1 493:1 534:1 551:1 571:1 576:1 595:1 597:1 598:3 600:1 613:1 622:2 626:1 651:2 660:3 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1011:1 1016:2 1073:1 1126:3 1129:1 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:2 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1624:1 1627:1 1657:1 1671:1 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:14 2085:1 2086:1 2087:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:4 2246:1 2247:1 2250:1 2251:4 2254:1 2257:1 2258:1 2259:4 2265:2 2270:2 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2333:1 2335:3 2336:1 2341:1 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:3 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2785:1 2791:1 2800:1 2807:1 2808:1 2838:1 2843:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:14 3025:2 3026:1 3035:2 3049:1 3055:2 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:2 3410:2 3413:1 3431:1 3443:1 3456:1 3468:1 3514:1 3560:3 3608:1 3615:1 3631:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3820:1 3828:1 3829:3 3833:2 3864:1 3865:1 3877:4 3878:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:3 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4403:2 4431:1 4449:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:4 4563:1 4603:1 4607:2 4622:1 4638:1 4666:1 4667:3 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:5 4760:2 4778:1 4812:1 4827:3 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5167:1 5181:1 5186:1 5191:1 5233:2 5253:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:2 5453:1 5457:1 5460:1 5466:2 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5939:1 5995:1 5998:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:2 6152:1 6164:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:3 6281:1 6282:7 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:1 6517:1 6518:1 6519:4 6530:1 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:6 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:7 6928:1 6949:1 6962:1 6974:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7071:1 7090:1 7093:2 7097:2 7099:1 7103:1 7107:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7241:1 7249:1 7306:1 7352:1 7366:1 7404:6 7419:1 7421:1 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:2 7687:2 7692:2 7721:14 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:3 7902:2 7935:2 7952:4 7954:1 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:20 8044:14 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8483:1 8486:2 8490:1 8513:11 8537:2 8565:13 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:1 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8754:14 8777:1 8791:7 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8899:1 8900:2 8936:1 8957:2 8958:5 8973:1 8979:1 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:1 9116:1 9141:2 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:2 9890:1 9896:2 9904:1 9909:1 9914:1 9921:2 9937:1 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10847:1 10858:2 10871:14 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:3 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:1 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:7 11137:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11685:1 11711:1 11760:1 11786:1 11806:1 11807:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:2 11954:3 11966:1 11978:1 11987:1 12002:2 12029:1 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12341:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:1 12656:7 12670:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13037:7 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13184:1 13222:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:9 13317:5 13338:1 13451:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13666:2 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:2 13797:1 13816:1 13860:1 13881:1 13883:4 13894:4 13930:1 13933:2 13944:1 13957:4 13963:1 13968:2 13975:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14258:1 14260:1 14300:3 14324:1 14335:2 14377:1 14393:3 14398:2 14402:1 14429:1 14431:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15382:1 15385:1 15393:1 15410:1 15411:6 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:11 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:1 15918:11 15920:1 15929:1 15937:1 15946:2 15970:1 16002:4 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16151:3 16166:1 16168:1 16195:2 16221:1 16241:1 16256:1 16259:3 16260:4 16288:1 16292:2 16294:1 16297:2 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16508:1 16552:5 16553:1 16575:1 16578:1 16583:1 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:1 17146:5 17184:1 17191:6 17225:1 17229:1 17248:1 17262:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17406:1 17410:1 17412:2 17419:11 17421:4 17433:4 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17583:2 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:2 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:3 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:2 18438:5 18441:1 18447:6 18453:4 18461:1 18462:1 18464:2 18476:1 18496:1 18497:3 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18781:1 18809:1 18812:5 18820:1 18834:1 18869:3 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19162:20 19183:2 19192:1 19211:1 19214:2608 19257:1 19264:1 19268:2 19298:1 19303:1 19308:1 19316:1 19342:1 19345:2 19373:3 19378:1 19396:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19519:1 19528:1 19531:1 19534:2 19601:1 19603:1 19642:1 19656:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:5 19833:1 19851:1 19863:7 19867:3 19869:1 19885:1 19892:1 19893:1 19915:2 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:11 20094:2 20100:1 20103:1 20117:2 20135:1 20146:1 20160:17 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:3 20303:1 20309:4 20331:1 20340:1 20346:2 20355:2 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:6 20799:1 20811:1 20832:8 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:1 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21336:2 21345:7 21348:1 21367:8 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:2 21503:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22159:1 22170:1 22172:1 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22569:6 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22671:1 22685:1 22688:1 22695:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:1 22807:2 22812:2 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:1 22930:1 22934:1 22939:1 22947:1 22957:1 22963:1 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:5 23350:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:1 23408:1 23414:1 23415:3 23422:2 23436:1 23466:1 23483:2 23486:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:10 23683:1 23696:1 23703:5 23708:1 23717:1 23726:5 23754:3 23778:1 23781:1 23794:1 23796:1 23802:1 23805:1 23819:1 23858:1 23875:1 23879:1 23881:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23975:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:2 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:1 24390:1 24396:1 24417:1 24426:2 24433:2 24471:1 24485:1 24496:2 24500:1 24510:1 24533:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:1 24773:1 24785:2 24793:1 24803:1 24812:2 24822:4 24834:1 24838:2 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:3 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:1 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25416:1 25425:1 25426:1 25440:1 25442:1 25533:2 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:3 25850:1 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:10 25910:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:6 26131:2 26147:2 26154:2 26156:1 26208:4 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:2 26987:7 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:6 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:7 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:2 27722:1 27726:1 27750:1 27756:2 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27835:1 27836:3 27847:1 27861:4 27866:1 27872:2 27892:1 27897:2 27921:1 27948:2 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:6 28239:1 28240:1 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28418:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:12 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:2 28634:8 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:1 28695:1 28720:3 28724:1 28725:2 28728:2 28776:1 28778:5 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:1 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29429:1 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29626:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:4 29777:1 29781:1 29785:1 29793:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 470:1 473:1 493:1 504:1 534:1 551:1 571:1 576:1 595:1 597:1 598:3 600:1 613:1 622:2 626:1 651:2 660:3 667:1 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1011:1 1016:2 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1624:1 1627:1 1657:1 1671:1 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:1 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:14 2085:1 2086:1 2087:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:4 2246:1 2247:1 2250:1 2251:4 2253:1 2254:1 2257:1 2258:1 2259:4 2265:2 2270:2 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:1 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2333:1 2335:3 2336:1 2341:1 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:4 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2785:1 2791:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:15 3025:2 3026:1 3035:2 3049:1 3055:3 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:3 3410:2 3413:1 3431:1 3443:1 3452:1 3456:1 3468:1 3514:1 3560:4 3608:1 3615:1 3631:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:2 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:1 3877:4 3878:2 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:3 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4403:2 4431:1 4449:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:4 4557:1 4563:1 4603:1 4607:2 4622:1 4638:1 4666:1 4667:3 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:5 4760:2 4773:1 4775:1 4778:1 4812:1 4827:3 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:1 5186:1 5191:1 5233:2 5240:1 5253:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:2 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:1 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5939:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:2 6152:1 6164:1 6171:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:3 6281:1 6282:7 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:1 6517:1 6518:1 6519:4 6530:1 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:6 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6949:1 6962:1 6974:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7071:1 7090:1 7093:2 7097:2 7099:1 7103:1 7107:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7241:1 7249:1 7306:1 7352:1 7366:1 7404:6 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:14 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:20 8044:15 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8171:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:1 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8483:1 8486:2 8490:1 8513:11 8537:2 8565:13 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:1 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8754:14 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8899:1 8900:2 8936:1 8957:2 8958:5 8973:1 8979:1 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:1 9116:1 9141:2 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9329:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:2 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:2 9890:1 9896:2 9904:1 9909:1 9914:1 9921:2 9925:1 9937:1 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10039:1 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10570:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10816:1 10847:1 10858:2 10871:14 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:4 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:1 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:8 11137:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11685:1 11711:1 11760:1 11786:1 11806:1 11807:1 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:1 11978:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:2 12656:7 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13037:9 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13184:1 13222:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:9 13317:5 13338:1 13352:1 13451:1 13477:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:2 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:2 13797:1 13816:1 13850:1 13860:1 13881:1 13883:4 13894:4 13930:1 13933:2 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14258:2 14260:1 14300:3 14324:2 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:1 14431:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14603:1 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15382:1 15385:1 15393:1 15410:1 15411:6 15414:2 15446:1 15467:1 15480:1 15483:1 15498:1 15512:11 15571:1 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15817:2 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:1 15918:11 15920:1 15929:1 15935:1 15937:1 15946:2 15970:1 16002:5 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16151:3 16166:1 16168:1 16195:2 16221:1 16241:1 16256:1 16259:3 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16508:1 16552:5 16553:1 16575:1 16578:1 16583:1 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:2 17146:6 17184:1 17191:7 17225:1 17229:1 17248:1 17262:1 17284:1 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17406:1 17410:2 17412:2 17419:11 17421:5 17433:4 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17583:2 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:2 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:3 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:2 18438:6 18441:1 18447:6 18453:4 18461:1 18462:1 18464:2 18476:1 18496:1 18497:3 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19162:20 19183:2 19192:1 19211:1 19214:2695 19257:1 19264:1 19268:2 19298:1 19303:1 19308:1 19316:1 19342:1 19345:2 19373:3 19378:1 19396:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19851:1 19863:7 19867:3 19869:1 19885:1 19892:1 19893:1 19915:2 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:11 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20160:17 20171:1 20181:1 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:3 20303:1 20309:5 20331:1 20340:1 20346:2 20355:3 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:7 20799:1 20801:1 20811:1 20832:8 20858:1 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:8 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:2 21503:1 21523:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22569:6 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22671:1 22685:1 22688:1 22695:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:1 22807:2 22812:2 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:1 22945:1 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23026:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:1 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:10 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23754:3 23778:1 23781:1 23794:1 23796:1 23802:1 23805:1 23819:1 23858:1 23875:2 23879:1 23881:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23975:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:2 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24417:1 24426:2 24433:2 24471:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:2 24773:1 24785:2 24793:1 24803:1 24812:2 24822:4 24832:1 24834:1 24838:3 24843:1 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:3 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:2 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25416:2 25425:1 25426:1 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25553:1 25579:1 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:3 25850:1 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:10 25910:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:7 26131:2 26147:2 26154:2 26156:1 26208:4 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27835:2 27836:3 27847:1 27861:4 27866:1 27872:2 27892:1 27897:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:6 28239:1 28240:2 28269:1 28282:1 28283:1 28314:1 28315:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:12 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:2 28634:8 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:1 28695:1 28720:3 28724:1 28725:2 28728:2 28776:1 28778:6 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29626:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:2 29695:1 29704:2 29706:1 29752:2 29754:1 29760:4 29768:1 29775:4 29776:1 29777:1 29781:1 29785:1 29793:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 470:1 473:1 493:1 504:1 534:1 551:1 571:1 576:1 595:1 597:1 598:3 600:1 613:1 622:3 626:1 651:2 660:3 667:1 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 1011:1 1016:2 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:1 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1624:1 1627:1 1657:1 1671:2 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2032:1 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:14 2085:1 2086:1 2087:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:5 2246:1 2247:1 2250:1 2251:4 2253:1 2254:1 2257:1 2258:1 2259:4 2265:2 2270:2 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2333:1 2335:3 2336:1 2341:1 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:4 2618:1 2633:1 2635:2 2642:2 2650:1 2704:1 2732:2 2740:2 2741:1 2759:1 2785:1 2791:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:16 3025:2 3026:1 3035:2 3049:1 3055:3 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:3 3410:2 3413:1 3431:1 3443:1 3452:1 3456:1 3468:1 3514:1 3560:4 3608:1 3615:1 3631:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:1 3876:1 3877:4 3878:3 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:3 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4383:1 4403:2 4431:1 4449:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4557:1 4563:1 4603:1 4607:2 4622:1 4638:1 4666:1 4667:3 4673:1 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:5 4760:3 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:1 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:2 5436:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:1 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5939:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:2 6152:1 6164:1 6171:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:3 6281:1 6282:7 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:1 6517:1 6518:1 6519:5 6530:1 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:6 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6949:1 6962:1 6974:1 6980:8 6999:2 7012:1 7023:1 7055:1 7063:1 7071:1 7090:1 7093:2 7097:2 7099:1 7103:2 7107:1 7134:1 7143:1 7204:1 7219:1 7224:2 7228:1 7240:1 7241:1 7249:1 7306:1 7352:1 7366:1 7404:6 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:14 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:21 8044:16 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8171:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:2 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8483:1 8486:2 8490:1 8513:11 8537:2 8565:13 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:1 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8754:14 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:1 8891:1 8896:1 8899:1 8900:2 8936:1 8957:2 8958:6 8973:1 8979:1 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:1 9116:1 9141:2 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9329:2 9362:1 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:1 9582:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:2 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9904:1 9909:1 9914:1 9921:3 9925:1 9929:1 9937:1 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10039:1 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10570:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10816:1 10847:1 10858:2 10871:14 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:4 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:1 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:8 11136:1 11137:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11581:1 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11685:1 11711:1 11760:1 11786:1 11806:1 11807:1 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11978:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:2 12656:7 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13037:9 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13184:1 13222:2 13225:1 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:9 13317:5 13338:1 13352:1 13451:1 13477:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:2 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:2 13797:1 13816:1 13850:1 13860:1 13881:1 13883:4 13894:4 13930:1 13933:2 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:1 14244:1 14256:1 14258:2 14260:1 14300:3 14324:2 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:1 14431:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14603:1 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14703:2 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15220:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15382:1 15385:1 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15581:1 15582:1 15592:1 15614:1 15627:1 15643:1 15656:4 15698:1 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:2 15820:1 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:1 15918:12 15920:1 15929:1 15935:1 15937:1 15946:2 15970:1 16002:5 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16151:3 16166:1 16168:1 16195:2 16221:1 16241:1 16256:1 16259:3 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16508:1 16552:6 16553:1 16575:1 16578:1 16583:2 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:2 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:2 17146:6 17184:1 17191:8 17225:1 17229:1 17248:1 17262:1 17284:2 17293:1 17324:1 17334:1 17351:1 17354:1 17357:1 17399:1 17400:1 17406:1 17409:1 17410:2 17412:2 17419:12 17421:5 17433:5 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17544:1 17583:2 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:2 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:3 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:2 18438:6 18441:1 18447:6 18453:5 18461:1 18462:1 18464:2 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19162:20 19183:2 19192:1 19211:1 19214:2725 19257:1 19264:1 19268:2 19298:1 19303:1 19308:1 19316:1 19342:1 19345:2 19373:3 19378:1 19396:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:1 19469:1 19477:2 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19851:1 19863:7 19867:3 19869:1 19885:1 19892:1 19893:1 19915:2 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20160:18 20171:1 20181:2 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:1 20282:1 20289:3 20303:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:3 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:8 20799:1 20801:1 20811:1 20832:8 20858:1 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:9 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21492:1 21501:2 21503:1 21523:1 21536:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:1 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:1 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:1 22462:2 22476:1 22504:4 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22558:1 22569:6 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22671:1 22685:1 22688:1 22695:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:1 22807:2 22812:2 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:1 22945:1 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23026:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:1 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:11 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23754:3 23778:1 23781:1 23794:2 23796:1 23802:1 23805:1 23819:1 23858:1 23875:2 23879:1 23881:1 23886:1 23887:1 23894:2 23913:1 23914:1 23944:2 23946:1 23951:5 23960:1 23967:1 23975:1 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:3 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24417:1 24426:2 24433:2 24471:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:2 24773:1 24785:2 24793:1 24803:1 24812:2 24822:4 24832:1 24834:1 24838:3 24843:1 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24952:3 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:3 25171:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25241:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:2 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25416:2 25425:1 25426:1 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25553:1 25579:2 25584:3 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25810:1 25827:1 25843:3 25850:1 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:11 25910:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:7 26131:2 26147:2 26154:2 26156:1 26208:4 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26690:1 26694:1 26706:2 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:1 27641:1 27653:4 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27834:1 27835:2 27836:3 27847:1 27861:4 27866:1 27872:3 27892:1 27897:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:6 28239:1 28240:2 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:12 28518:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:3 28634:8 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:1 28695:1 28720:3 28724:1 28725:2 28728:3 28776:1 28778:6 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29626:1 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29766:1 29768:1 29775:5 29776:1 29777:1 29781:1 29785:1 29793:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:2 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 470:1 473:1 493:1 504:1 534:1 551:1 571:1 576:1 595:1 597:1 598:3 600:1 613:1 622:3 626:1 651:2 660:3 667:1 685:1 693:2 702:5 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:2 1038:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:1 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:1 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1624:1 1627:1 1657:1 1671:2 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1815:1 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2032:1 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:15 2085:1 2086:1 2087:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:5 2246:1 2247:1 2250:1 2251:4 2253:1 2254:1 2257:1 2258:1 2259:4 2265:2 2270:2 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2331:1 2333:1 2335:3 2336:1 2341:1 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2704:1 2732:2 2740:2 2741:1 2746:1 2759:1 2763:1 2785:1 2791:1 2794:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:18 3025:2 3026:1 3035:2 3042:1 3049:1 3055:3 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:3 3410:2 3413:1 3431:2 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3560:4 3608:1 3615:1 3629:1 3631:1 3638:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:1 3876:1 3877:4 3878:3 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4383:1 4403:2 4431:1 4449:2 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4557:1 4563:1 4603:1 4607:2 4622:1 4638:1 4666:1 4667:3 4673:2 4676:1 4685:2 4706:1 4707:3 4726:1 4745:1 4746:5 4760:3 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:1 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:2 5436:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:6 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5939:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:2 6152:1 6164:1 6171:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:3 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:1 6517:1 6518:1 6519:5 6530:1 6539:1 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:6 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6949:1 6962:1 6974:1 6980:8 6999:2 7012:1 7023:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:1 7103:3 7107:1 7134:1 7143:1 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7302:1 7306:1 7352:1 7366:1 7404:6 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:15 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:22 8044:18 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8171:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:2 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8483:1 8486:2 8490:1 8513:12 8537:2 8565:14 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:2 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8753:1 8754:15 8762:2 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:2 8888:1 8891:1 8896:1 8899:1 8900:2 8936:1 8957:2 8958:6 8973:1 8979:2 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:1 9116:1 9141:2 9155:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9329:2 9362:1 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:2 9582:1 9604:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:2 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9904:1 9909:1 9914:1 9921:3 9925:1 9929:1 9937:1 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10039:1 10052:1 10058:1 10106:1 10114:2 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10570:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:2 10750:1 10772:2 10796:1 10811:3 10816:1 10847:1 10856:1 10858:2 10871:15 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:1 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:8 11136:1 11137:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11581:1 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11685:1 11691:1 11711:1 11760:1 11786:1 11806:1 11807:2 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11978:1 11980:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12898:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13037:9 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13222:2 13225:1 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:10 13317:6 13338:1 13352:1 13451:1 13477:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:2 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:3 13797:1 13816:1 13850:1 13860:1 13881:1 13883:4 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14136:1 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:2 14244:1 14256:1 14258:2 14260:1 14300:3 14324:2 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:1 14431:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:6 14603:1 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14697:1 14703:2 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15152:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15199:1 15220:1 15235:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15382:1 15385:2 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15581:1 15582:1 15592:2 15614:1 15627:1 15643:1 15656:4 15698:1 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:2 15820:2 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:2 15918:12 15920:1 15929:1 15935:1 15937:1 15946:2 15970:1 16002:5 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16143:1 16151:3 16166:1 16168:1 16195:2 16221:1 16241:1 16256:1 16259:3 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16494:1 16508:2 16522:1 16552:6 16553:1 16575:1 16578:1 16583:2 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16694:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:2 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:2 17146:6 17184:1 17190:1 17191:8 17225:1 17229:1 17248:1 17262:1 17284:2 17293:1 17324:1 17334:1 17351:1 17354:1 17357:2 17399:1 17400:1 17406:1 17409:1 17410:2 17412:2 17419:12 17421:5 17433:5 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:1 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:2 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:3 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:2 18438:6 18441:1 18447:6 18453:5 18461:1 18462:1 18464:2 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19160:1 19162:20 19169:1 19183:2 19192:1 19211:1 19214:2775 19257:1 19264:1 19268:2 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:3 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:1 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19851:1 19863:8 19867:3 19869:1 19885:1 19892:1 19893:1 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:18 20171:1 20181:2 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:2 20282:1 20289:3 20303:1 20306:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:3 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:9 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21265:1 21272:1 21277:1 21292:1 21308:1 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:10 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:1 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:2 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:5 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22558:1 22569:6 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22671:1 22685:1 22688:1 22695:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:3 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:2 22945:1 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23026:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:2 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:1 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:11 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23754:3 23778:1 23781:1 23794:2 23796:1 23802:1 23805:1 23819:1 23853:1 23858:1 23875:2 23879:1 23881:1 23886:1 23887:1 23889:1 23894:2 23913:1 23914:1 23920:1 23944:2 23946:1 23951:6 23960:1 23967:1 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:3 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24417:1 24426:2 24433:2 24471:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:2 24773:1 24785:2 24793:1 24803:1 24812:2 24822:4 24832:1 24834:1 24838:3 24843:1 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24952:3 24993:1 25000:1 25006:1 25023:1 25060:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:3 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:2 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25553:1 25579:2 25583:1 25584:3 25590:1 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25804:1 25810:1 25827:1 25843:3 25850:1 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:11 25910:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:7 26131:2 26147:2 26154:2 26156:1 26208:5 26232:1 26240:1 26256:1 26258:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26688:1 26690:1 26694:1 26706:2 26717:1 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27159:1 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:6 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:2 27641:1 27653:4 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:4 27866:1 27872:3 27892:1 27897:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28020:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:6 28239:1 28240:2 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:14 28518:1 28523:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28584:1 28587:1 28591:1 28604:1 28617:2 28631:3 28634:9 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:1 28695:1 28720:3 28724:1 28725:2 28728:3 28776:1 28778:6 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:1 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29626:2 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:1 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:1 196:4 213:2 217:1 218:2 222:1 235:2 257:1 270:2 272:2 288:2 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 470:1 473:1 479:1 493:1 504:1 534:1 551:1 571:1 576:1 595:2 597:1 598:3 600:1 613:1 622:3 626:1 651:2 660:3 667:1 685:1 693:2 702:6 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:2 1038:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1624:1 1627:1 1657:1 1671:2 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1815:1 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:15 2085:1 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:5 2246:1 2247:1 2250:1 2251:4 2253:1 2254:1 2257:1 2258:1 2259:4 2265:2 2270:2 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2331:1 2333:1 2335:3 2336:1 2341:2 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2704:1 2732:2 2740:2 2741:1 2746:1 2759:1 2763:2 2785:1 2791:1 2794:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:19 3025:2 3026:1 3035:2 3042:1 3049:1 3055:3 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:3 3410:2 3413:1 3431:2 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3560:4 3608:1 3615:1 3629:1 3631:1 3638:1 3642:1 3649:1 3670:1 3671:1 3688:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:1 3876:1 3877:4 3878:4 3879:1 3897:1 3898:1 3905:2 3907:2 3931:3 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:1 4069:1 4090:1 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4383:2 4403:2 4431:1 4449:2 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4557:1 4563:1 4603:1 4607:2 4622:1 4638:1 4666:1 4667:3 4673:2 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:4 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:1 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:2 5436:2 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:7 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5939:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6126:2 6128:1 6130:2 6152:1 6164:1 6171:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:3 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:1 6517:1 6518:1 6519:5 6530:1 6539:1 6542:1 6570:1 6584:3 6602:3 6603:1 6609:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:7 6807:1 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6949:1 6962:1 6974:1 6980:8 6981:1 6999:2 7012:1 7023:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:1 7103:3 7107:1 7134:1 7143:1 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7302:1 7306:1 7352:1 7366:1 7404:6 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:15 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:22 8044:19 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8171:1 8174:1 8195:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8483:1 8486:2 8490:1 8513:12 8537:2 8565:14 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:2 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8753:1 8754:15 8762:2 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:2 8888:1 8891:1 8896:1 8899:1 8900:2 8936:1 8957:2 8958:6 8973:1 8979:2 8993:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:2 9116:1 9141:2 9155:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9329:2 9362:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:2 9582:1 9604:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:2 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9904:1 9909:1 9914:1 9921:3 9925:1 9929:1 9937:2 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10039:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:1 10570:1 10618:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:3 10750:1 10772:2 10796:1 10811:3 10816:1 10847:1 10856:1 10858:2 10871:15 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:1 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:8 11136:1 11137:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11581:2 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11655:1 11656:1 11662:1 11685:1 11691:1 11711:1 11760:1 11786:1 11806:1 11807:2 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11978:1 11980:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:3 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:1 12844:2 12848:1 12895:1 12898:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13037:9 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13222:2 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:10 13317:6 13338:1 13352:1 13451:1 13477:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:1 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:2 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:3 13797:1 13816:1 13850:1 13860:1 13881:1 13883:4 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14136:1 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:2 14244:1 14256:1 14258:2 14260:1 14300:3 14324:3 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:7 14603:1 14651:1 14658:1 14677:1 14679:3 14686:1 14693:1 14697:1 14703:3 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15152:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15199:1 15220:1 15235:1 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15382:1 15385:2 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15581:1 15582:1 15592:2 15614:1 15627:1 15643:1 15656:4 15698:2 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:4 15820:2 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:2 15918:12 15920:1 15929:1 15935:1 15937:1 15946:2 15970:1 16002:5 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16143:1 16151:3 16166:1 16168:1 16195:2 16221:1 16241:1 16256:1 16259:3 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16494:1 16508:2 16522:1 16552:6 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16694:1 16695:2 16701:2 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:2 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:2 17146:6 17168:1 17184:1 17190:1 17191:9 17225:1 17229:1 17248:1 17262:1 17284:2 17293:1 17324:1 17334:1 17351:1 17354:1 17357:2 17399:1 17400:1 17406:1 17409:2 17410:2 17412:2 17419:12 17421:5 17433:6 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:3 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:4 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:3 18072:2 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:2 18438:6 18441:1 18447:6 18453:5 18461:1 18462:1 18464:2 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19160:1 19162:20 19169:1 19183:2 19192:1 19211:1 19214:2844 19257:1 19264:1 19268:2 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:3 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:1 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19851:1 19863:8 19867:3 19869:1 19885:1 19892:1 19893:2 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:18 20171:1 20181:2 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:2 20257:1 20282:1 20289:3 20303:1 20306:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:4 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:1 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:10 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:2 21055:4 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21265:1 21272:1 21277:1 21292:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:10 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:2 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:5 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22558:1 22569:7 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22671:1 22685:1 22688:1 22695:1 22710:1 22738:1 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:3 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:2 22945:1 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23026:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:3 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:1 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:12 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23853:1 23858:1 23875:2 23879:1 23881:1 23886:1 23887:1 23889:1 23894:2 23913:1 23914:1 23920:1 23944:2 23946:1 23951:6 23960:1 23967:1 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:4 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24417:1 24426:2 24433:2 24471:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:3 24773:1 24785:2 24793:1 24803:1 24812:2 24822:4 24832:1 24834:1 24838:3 24843:1 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24952:3 24993:1 25000:1 25006:1 25020:1 25023:1 25060:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:3 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:2 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25553:1 25579:2 25583:1 25584:3 25590:1 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25804:1 25810:1 25827:1 25843:3 25850:2 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:11 25910:1 25912:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:7 26131:2 26147:2 26154:2 26156:1 26208:5 26232:1 26240:1 26256:1 26258:1 26262:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26688:1 26690:1 26694:1 26706:2 26717:1 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27097:2 27151:1 27159:1 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:7 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:2 27641:1 27653:4 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:1 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:4 27866:1 27872:4 27892:1 27897:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28020:1 28034:1 28036:2 28069:1 28074:1 28098:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:7 28239:1 28240:2 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:14 28518:1 28523:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28569:1 28584:1 28587:1 28591:1 28604:1 28617:2 28631:4 28634:9 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:1 28695:1 28720:3 28724:1 28725:2 28728:4 28776:1 28778:6 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:1 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29626:2 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:1 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 22:1 27:1 49:1 68:1 84:1 90:1 93:1 98:1 132:2 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 450:1 451:3 457:1 465:1 468:1 470:1 473:1 479:1 493:1 504:1 534:1 551:1 571:1 576:1 595:2 597:1 598:3 600:1 613:1 622:3 626:1 651:2 660:3 667:1 685:1 693:2 702:6 717:1 718:1 737:1 752:3 759:1 769:2 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 925:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:2 1038:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1624:1 1627:1 1657:1 1671:2 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1815:1 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:1 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2200:1 2206:1 2232:3 2234:1 2241:1 2244:5 2246:1 2247:1 2250:1 2251:5 2253:1 2254:1 2255:1 2257:1 2258:1 2259:4 2265:3 2270:2 2272:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2331:1 2333:1 2335:3 2336:1 2341:2 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2688:1 2704:1 2732:2 2740:2 2741:1 2746:1 2759:1 2763:2 2785:1 2791:1 2794:2 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:19 3025:2 3026:1 3035:2 3042:2 3049:1 3055:3 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:3 3406:1 3410:2 3413:1 3431:2 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3560:4 3608:1 3615:1 3629:1 3631:1 3638:2 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:1 3876:1 3877:4 3878:4 3879:1 3897:1 3898:1 3905:2 3907:2 3931:4 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:1 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:1 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4383:2 4403:2 4431:1 4449:3 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4603:1 4607:2 4622:1 4638:1 4666:1 4667:3 4673:2 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:4 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:1 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:2 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:8 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5931:2 5939:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6099:1 6126:2 6128:1 6130:2 6152:1 6164:1 6171:1 6177:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:3 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:1 6517:1 6518:1 6519:5 6530:1 6539:1 6542:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:8 6807:1 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6931:1 6949:1 6962:1 6974:1 6980:10 6981:1 6999:2 7012:1 7023:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:1 7103:3 7107:1 7134:1 7143:1 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7302:2 7306:1 7352:1 7366:1 7404:6 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7747:1 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:2 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:22 8044:20 8050:1 8054:1 8077:1 8089:1 8114:1 8142:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8472:1 8483:1 8486:2 8490:1 8513:13 8537:3 8565:15 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:3 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8753:1 8754:16 8762:2 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:2 8888:1 8891:1 8896:1 8899:1 8900:2 8936:1 8957:2 8958:6 8973:1 8979:2 8992:1 8993:1 9013:1 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:2 9116:1 9141:2 9155:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9329:2 9352:1 9362:2 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:2 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9904:1 9909:1 9914:1 9921:3 9925:1 9929:1 9937:2 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10039:1 10048:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10547:2 10548:1 10557:1 10560:2 10570:1 10618:1 10624:1 10629:1 10642:1 10654:1 10696:1 10707:1 10714:2 10721:2 10725:1 10731:3 10750:1 10772:2 10796:1 10811:3 10816:2 10847:1 10856:1 10858:2 10871:16 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:1 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11120:8 11136:1 11137:1 11154:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11581:2 11591:1 11614:1 11615:2 11618:2 11623:1 11625:1 11636:1 11655:1 11656:1 11662:1 11685:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11806:1 11807:3 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11978:1 11980:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:1 12158:1 12165:1 12184:3 12210:1 12258:1 12334:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12895:1 12898:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13001:1 13037:9 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13222:2 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:11 13317:7 13338:1 13352:1 13451:1 13477:1 13482:1 13494:2 13498:1 13500:1 13520:2 13545:1 13551:4 13563:2 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:4 13797:1 13816:1 13850:1 13860:1 13881:1 13883:4 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14136:1 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:2 14244:1 14256:1 14258:2 14260:1 14300:3 14324:3 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:8 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:3 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15152:1 15164:1 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15199:2 15220:1 15235:2 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15573:1 15581:1 15582:1 15592:3 15614:1 15627:1 15643:1 15656:4 15698:2 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:4 15820:2 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:3 15918:12 15920:1 15929:1 15935:1 15937:1 15946:2 15970:1 16002:6 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16143:1 16151:3 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16429:1 16453:2 16465:1 16494:1 16508:2 16522:1 16552:6 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:3 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:2 17146:6 17168:1 17184:1 17190:1 17191:9 17225:1 17229:1 17248:1 17262:1 17284:2 17293:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17399:1 17400:1 17406:1 17409:2 17410:2 17412:2 17419:12 17421:6 17433:6 17439:2 17450:2 17455:4 17462:1 17463:2 17488:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17635:1 17686:1 17700:2 17704:1 17715:1 17718:3 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17857:1 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:4 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:3 18048:1 18072:2 18073:1 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:2 18361:2 18369:1 18383:1 18385:4 18388:1 18407:3 18429:1 18438:6 18441:1 18447:6 18453:5 18461:1 18462:1 18464:2 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18647:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19160:1 19162:20 19169:1 19183:2 19192:1 19211:1 19214:2957 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:1 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19851:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:2 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:18 20171:1 20181:2 20182:1 20195:1 20197:3 20205:2 20217:1 20221:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:4 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:10 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:2 21055:6 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:10 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:1 21542:2 21555:1 21557:2 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22003:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:3 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:6 22515:1 22516:1 22524:1 22527:1 22535:1 22542:1 22558:1 22569:8 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:2 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:3 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:2 22945:2 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:2 23013:3 23021:1 23026:1 23028:1 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:3 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:1 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:13 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23944:2 23946:1 23951:7 23960:1 23967:1 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:4 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:4 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:3 24773:1 24785:2 24793:1 24803:1 24812:2 24822:4 24832:1 24834:1 24838:3 24843:1 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24929:1 24952:3 24993:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:3 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25286:1 25289:1 25295:1 25299:2 25305:1 25314:7 25335:3 25350:2 25385:1 25406:1 25413:2 25414:1 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25553:1 25579:2 25583:1 25584:3 25590:1 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25804:1 25810:1 25827:1 25843:3 25850:2 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:11 25910:1 25912:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:7 26131:3 26147:2 26154:2 26156:1 26198:1 26208:5 26232:2 26240:1 26256:1 26258:1 26262:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:1 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26688:2 26690:1 26694:1 26706:2 26717:1 26743:2 26754:1 26771:1 26775:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27089:1 27097:2 27151:1 27159:2 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:8 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:4 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:4 27892:1 27897:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28020:1 28034:1 28036:2 28069:1 28074:1 28095:1 28098:1 28109:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:8 28239:1 28240:2 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:14 28518:1 28523:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28569:1 28584:1 28587:1 28591:1 28604:1 28617:2 28631:4 28634:10 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:1 28695:1 28720:3 28724:1 28725:2 28728:4 28776:1 28778:6 28811:1 28820:1 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:2 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29614:1 29624:1 29626:2 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:1 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 22:1 27:1 49:1 51:1 68:1 84:1 90:1 93:1 98:1 132:2 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 457:1 464:1 465:1 468:1 470:1 473:1 479:1 493:1 504:1 534:1 551:1 571:1 576:1 595:2 597:1 598:3 600:1 613:1 622:4 626:1 651:2 660:4 667:1 685:1 693:2 702:6 717:1 718:1 737:1 752:3 759:1 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 925:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:4 1038:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:1 1567:1 1579:2 1583:1 1596:4 1598:1 1599:3 1607:2 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1815:1 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:3 1964:1 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:1 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:5 2246:1 2247:1 2250:1 2251:5 2253:1 2254:1 2255:1 2257:1 2258:1 2259:4 2265:4 2270:2 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:2 2318:4 2324:2 2327:1 2331:1 2333:1 2335:3 2336:1 2341:2 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2688:1 2704:1 2732:2 2740:2 2741:1 2746:1 2759:1 2763:2 2785:1 2791:1 2794:2 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:20 3025:2 3026:1 3035:2 3042:2 3049:1 3055:3 3079:1 3082:1 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3402:3 3406:1 3410:2 3413:1 3431:2 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3608:1 3615:1 3629:1 3631:1 3638:2 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:2 3876:1 3877:5 3878:5 3879:1 3897:1 3898:1 3905:2 3907:2 3931:4 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4183:1 4196:1 4212:1 4220:2 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4431:1 4432:1 4449:3 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:2 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:5 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:2 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:8 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5931:2 5939:1 5966:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6099:1 6126:2 6128:1 6130:2 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:2 6517:1 6518:1 6519:7 6530:1 6539:1 6542:1 6563:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6695:1 6747:1 6756:1 6763:1 6765:2 6771:1 6777:3 6797:8 6807:1 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6931:1 6949:1 6962:1 6974:1 6980:10 6981:1 6999:2 7012:1 7023:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:1 7103:3 7107:1 7134:1 7143:1 7201:1 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7302:2 7306:1 7352:1 7366:1 7404:6 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7747:2 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:22 8044:21 8050:1 8054:1 8074:1 8077:1 8089:1 8114:1 8142:1 8144:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8472:1 8483:1 8486:2 8490:1 8513:13 8537:3 8565:15 8570:6 8572:2 8573:1 8574:1 8591:1 8602:1 8603:3 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8753:1 8754:16 8762:2 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:2 8888:1 8891:1 8896:1 8899:1 8900:2 8915:1 8936:1 8957:2 8958:6 8973:1 8979:2 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:2 9116:1 9141:2 9155:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9409:2 9417:1 9429:1 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:3 9769:1 9771:1 9788:1 9799:2 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9904:1 9909:1 9914:1 9921:3 9925:1 9929:1 9937:2 9950:4 9996:1 9997:2 10012:1 10017:2 10024:2 10039:1 10048:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:2 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10618:1 10624:1 10629:1 10642:1 10654:1 10672:1 10696:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:3 10750:1 10772:2 10789:1 10796:1 10811:3 10816:2 10847:1 10856:1 10858:2 10871:16 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:8 11136:1 11137:1 11154:1 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11460:1 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11556:1 11573:1 11581:2 11591:1 11592:1 11614:1 11615:2 11618:2 11623:1 11625:1 11636:1 11655:1 11656:1 11662:1 11685:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11806:1 11807:3 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:2 12158:1 12165:1 12184:3 12210:1 12258:1 12334:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12895:1 12898:1 12908:1 12928:1 12930:1 12935:1 12972:2 12993:1 13001:1 13037:10 13046:1 13058:1 13064:11 13090:1 13111:1 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13222:3 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:11 13317:7 13338:1 13352:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:2 13500:1 13520:2 13545:1 13551:4 13563:2 13565:1 13566:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:4 13797:1 13816:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:3 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14136:1 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:2 14244:1 14256:1 14258:2 14260:1 14300:3 14324:3 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:8 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:3 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15189:2 15199:2 15220:1 15235:2 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:1 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15573:1 15581:1 15582:1 15592:3 15614:1 15627:1 15643:1 15656:4 15698:2 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:4 15820:2 15823:5 15825:1 15836:2 15847:1 15875:1 15886:1 15892:3 15918:14 15920:1 15929:1 15935:1 15937:1 15946:2 15970:1 16002:6 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16078:1 16089:1 16097:1 16129:1 16143:1 16151:3 16163:1 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:1 16330:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16522:1 16552:7 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:3 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17102:1 17108:1 17121:1 17133:1 17135:2 17141:2 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:2 17293:1 17322:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17399:1 17400:1 17406:1 17409:2 17410:2 17412:2 17419:14 17421:6 17433:6 17439:2 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:3 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:4 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:4 18388:1 18407:3 18429:1 18438:6 18441:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18647:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19160:1 19162:20 19169:1 19183:2 19192:1 19211:1 19214:3021 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:1 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19851:1 19860:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:2 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:20 20171:1 20181:2 20182:1 20195:1 20197:4 20205:2 20217:1 20221:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20407:1 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:6 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:11 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:1 21542:2 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22003:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:3 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:6 22515:1 22516:1 22524:1 22527:1 22535:2 22542:1 22558:1 22569:8 22589:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:2 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:2 22945:2 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:3 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:13 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23747:1 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23944:2 23946:1 23951:7 23960:1 23967:1 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:5 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:1 24747:1 24759:3 24773:1 24785:2 24793:1 24803:1 24812:2 24822:5 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24929:1 24952:3 24993:1 24998:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25286:1 25289:1 25295:1 25296:1 25299:2 25305:1 25314:7 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:1 25579:2 25583:1 25584:3 25590:1 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25804:1 25810:1 25827:1 25843:3 25850:2 25863:1 25878:1 25886:1 25887:1 25900:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26036:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:8 26131:3 26147:2 26154:2 26156:1 26198:1 26208:5 26232:2 26240:1 26256:1 26258:1 26262:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:2 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26688:2 26690:1 26694:1 26706:2 26717:1 26743:2 26754:1 26771:1 26775:1 26857:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27089:1 27097:2 27151:1 27159:2 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:8 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:5 27892:1 27897:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28020:1 28034:1 28036:2 28069:1 28074:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:2 28195:8 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:14 28518:1 28523:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28569:1 28584:1 28587:1 28591:1 28604:1 28617:2 28631:5 28634:10 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28720:3 28724:1 28725:2 28728:5 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:2 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29566:1 29614:1 29624:1 29626:2 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:1 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 571:1 576:1 591:1 595:3 597:1 598:4 600:1 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:6 717:1 718:1 737:1 752:3 759:1 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 925:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:4 1038:1 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:1 1567:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:2 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1715:1 1742:1 1745:3 1768:1 1790:4 1815:1 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:3 1964:2 1988:2 1990:1 1991:1 1992:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:1 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:1 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:5 2246:1 2247:1 2250:1 2251:6 2253:1 2254:1 2255:1 2257:1 2258:1 2259:4 2265:4 2270:3 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:20 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2688:1 2704:2 2732:2 2740:2 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:1 3012:1 3017:20 3025:2 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:2 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3400:1 3402:3 3406:1 3410:2 3413:1 3431:2 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:1 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:2 3875:1 3876:1 3877:5 3878:6 3879:1 3897:1 3898:1 3905:2 3907:2 3931:4 3939:1 3944:1 3946:2 3950:3 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4212:1 4220:2 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4431:1 4432:1 4449:4 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4583:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:2 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:6 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:14 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:2 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:2 5362:1 5373:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:8 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:1 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5931:2 5939:1 5966:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6099:1 6126:2 6128:1 6130:2 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:2 6517:1 6518:1 6519:7 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6695:1 6747:1 6756:1 6763:1 6765:2 6771:2 6777:3 6797:8 6807:1 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:8 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:10 6981:1 6999:2 7012:1 7023:1 7028:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:1 7103:3 7107:1 7134:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7302:2 7306:1 7352:1 7366:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7747:2 7762:1 7763:1 7778:1 7819:1 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:3 7997:2 8003:6 8004:2 8008:1 8016:1 8022:1 8023:1 8029:24 8044:21 8050:1 8054:1 8074:1 8077:1 8089:1 8114:1 8142:1 8144:1 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8472:1 8483:1 8486:2 8490:1 8513:13 8537:3 8554:1 8565:16 8570:7 8571:1 8572:2 8573:1 8574:1 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8747:1 8753:1 8754:16 8762:2 8777:1 8791:8 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8884:1 8885:1 8887:2 8888:1 8891:1 8896:1 8899:1 8900:2 8915:1 8936:1 8957:2 8958:6 8973:1 8979:2 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:3 9116:1 9141:2 9155:1 9192:1 9193:2 9201:2 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:1 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9904:2 9909:1 9914:1 9921:3 9925:1 9929:1 9937:2 9950:4 9996:1 9997:2 10012:1 10017:2 10018:1 10024:2 10039:1 10048:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:2 10331:20 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10618:1 10624:1 10629:1 10642:1 10654:1 10672:1 10696:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:3 10750:1 10772:2 10789:1 10796:1 10811:3 10816:2 10847:1 10856:1 10858:2 10871:16 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:8 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:2 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:1 11421:1 11442:1 11444:1 11456:4 11460:1 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11614:1 11615:2 11618:2 11623:1 11625:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11806:1 11807:3 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:1 11987:1 12002:2 12029:2 12040:3 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12151:2 12158:1 12165:1 12184:3 12210:1 12258:1 12287:1 12290:1 12334:1 12341:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:1 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:10 13046:1 13058:1 13064:11 13090:1 13111:2 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13222:4 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:2 13500:1 13520:2 13545:1 13551:4 13563:2 13565:1 13566:1 13572:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14136:1 14156:1 14164:1 14166:2 14175:1 14178:1 14209:1 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:3 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:8 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:3 14704:1 14709:1 14740:1 14755:20 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:1 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15698:3 15703:2 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:4 15820:2 15823:5 15825:1 15836:2 15847:1 15863:1 15875:1 15886:1 15892:3 15918:15 15920:2 15929:1 15935:1 15937:1 15946:2 15970:1 16002:6 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16068:1 16078:1 16089:1 16097:1 16129:2 16143:1 16151:3 16163:1 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:7 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:2 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:3 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:2 17141:2 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:2 17293:1 17322:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:2 17419:15 17421:6 17433:6 17439:2 17444:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:3 17725:2 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:4 17953:2 17957:3 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:4 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18635:1 18647:1 18670:1 18679:2 18697:1 18712:6 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:20 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19160:1 19162:20 19169:1 19183:2 19192:1 19211:1 19214:3104 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:3 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:21 20171:1 20181:2 20182:1 20195:1 20197:4 20205:2 20217:1 20221:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20732:1 20736:1 20749:1 20751:1 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:6 21071:1 21079:2 21086:1 21109:1 21138:1 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:11 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:1 21540:1 21542:2 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:1 21996:1 22003:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22515:1 22516:1 22524:1 22527:1 22535:2 22542:1 22558:1 22569:8 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:2 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:1 22784:1 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22909:1 22913:2 22930:1 22934:1 22939:2 22945:2 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23180:1 23199:1 23211:1 23213:4 23221:3 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:13 23683:1 23696:1 23703:5 23708:1 23717:1 23726:6 23730:1 23747:1 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23944:2 23946:1 23951:8 23960:1 23967:1 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:6 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:1 24803:1 24812:2 24822:5 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24929:1 24948:1 24952:3 24972:1 24993:1 24998:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25283:1 25286:1 25289:1 25295:1 25296:1 25299:2 25305:1 25314:7 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:1 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25804:1 25810:1 25827:1 25843:3 25850:2 25863:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:1 25948:2 25957:1 26015:1 26026:1 26036:1 26038:1 26043:2 26045:1 26051:2 26062:3 26064:2 26065:1 26076:2 26096:1 26107:1 26128:9 26131:3 26147:2 26154:2 26156:1 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:5 26302:1 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:2 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:1 26771:1 26775:1 26857:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:8 27000:1 27007:2 27036:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:1 27174:1 27183:2 27184:7 27194:1 27195:1 27207:8 27215:2 27229:1 27243:1 27255:1 27282:1 27284:8 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:20 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:6 27892:1 27897:2 27904:1 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 28002:1 28020:1 28034:1 28036:2 28069:1 28074:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:3 28195:8 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:14 28518:1 28523:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:2 28631:6 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28720:3 28724:1 28725:2 28728:6 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:1 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29566:1 29591:1 29614:1 29624:1 29626:2 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:1 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 19:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:2 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 571:1 576:1 591:1 595:3 597:1 598:4 600:2 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:6 717:1 718:1 737:1 752:3 759:1 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 905:1 914:1 925:1 927:1 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:4 1038:1 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:1 1567:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:3 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1714:1 1715:1 1742:1 1745:3 1768:1 1773:1 1790:4 1815:2 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:4 1964:2 1988:2 1990:1 1991:1 1992:1 2008:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:1 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:1 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:6 2246:1 2247:1 2250:1 2251:6 2253:1 2254:1 2255:1 2257:2 2258:1 2259:4 2265:4 2270:3 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:22 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2688:1 2704:2 2732:2 2740:2 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2895:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:2 3012:1 3017:20 3025:2 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:2 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3210:1 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3400:1 3402:3 3406:1 3410:2 3413:1 3431:2 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:1 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:2 3875:1 3876:1 3877:5 3878:7 3879:1 3897:1 3898:1 3905:2 3907:2 3914:1 3931:4 3932:1 3939:1 3944:1 3946:2 3950:4 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4035:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4201:1 4212:1 4220:2 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4431:1 4432:1 4449:4 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4583:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:2 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:7 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4973:1 4990:3 4993:1 5005:1 5028:15 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5181:2 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:3 5362:1 5373:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5537:8 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:2 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5928:1 5931:2 5939:1 5966:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6099:1 6126:2 6128:1 6130:2 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:6 6484:1 6501:6 6515:2 6516:2 6517:1 6518:1 6519:7 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6662:1 6695:1 6747:1 6756:1 6763:1 6765:2 6771:2 6777:3 6797:8 6801:1 6807:1 6808:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:9 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:11 6981:1 6999:2 7012:1 7023:1 7028:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:2 7103:3 7107:1 7134:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7302:2 7306:1 7352:1 7366:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:4 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7746:1 7747:2 7762:1 7763:1 7778:1 7819:2 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:4 7997:2 8003:6 8004:2 8008:1 8010:1 8016:1 8022:1 8023:1 8029:24 8044:21 8050:1 8054:1 8074:1 8077:1 8089:1 8114:1 8142:1 8144:1 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8432:1 8445:1 8472:1 8483:1 8486:2 8490:1 8513:13 8537:3 8554:1 8565:16 8570:7 8571:1 8572:2 8573:1 8574:1 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8747:1 8753:1 8754:16 8762:2 8777:1 8791:9 8798:1 8804:1 8819:1 8866:1 8868:1 8870:1 8875:2 8880:1 8881:1 8884:1 8885:1 8887:2 8888:1 8891:1 8896:1 8899:1 8900:2 8915:1 8936:1 8957:2 8958:6 8973:1 8979:2 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:3 9116:1 9141:2 9155:1 9192:1 9193:2 9201:3 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:2 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:1 9637:3 9660:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9819:1 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:3 9890:1 9896:2 9897:1 9904:2 9909:1 9914:1 9921:4 9925:1 9929:1 9937:3 9950:4 9996:1 9997:2 10012:1 10017:2 10018:1 10024:2 10039:1 10048:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:3 10331:22 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10618:2 10624:1 10629:1 10642:1 10654:1 10672:1 10696:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:4 10750:1 10772:2 10789:1 10796:1 10811:3 10816:2 10847:1 10856:1 10858:2 10871:16 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:9 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11212:1 11234:1 11251:3 11261:4 11264:3 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:2 11421:1 11430:1 11442:1 11444:1 11456:4 11460:1 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11614:1 11615:2 11618:2 11623:1 11625:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11806:1 11807:3 11815:1 11816:1 11818:1 11856:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:1 11987:1 12002:2 12029:2 12040:4 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12138:1 12151:2 12158:1 12165:1 12184:3 12210:1 12258:1 12287:1 12290:1 12334:1 12341:2 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:1 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:10 13046:1 13058:1 13064:11 13088:1 13090:1 13111:2 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13222:4 13223:1 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:2 13500:1 13520:2 13545:1 13551:4 13563:2 13565:1 13566:1 13572:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14026:1 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:6 14130:2 14136:1 14156:1 14164:1 14166:2 14175:1 14178:1 14209:2 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:3 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:8 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:4 14704:1 14709:1 14740:2 14755:22 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:1 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:1 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15698:3 15703:3 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:4 15820:2 15823:6 15825:1 15836:2 15847:1 15863:1 15875:1 15886:1 15892:3 15918:15 15920:2 15929:1 15935:1 15937:1 15946:2 15970:1 16002:7 16010:1 16045:1 16048:1 16049:1 16054:2 16066:1 16068:1 16078:1 16089:1 16097:1 16129:2 16143:1 16151:3 16163:1 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:7 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:3 16612:3 16613:1 16651:1 16653:1 16656:1 16678:1 16682:1 16683:1 16684:1 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16815:1 16865:4 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17058:1 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:2 17141:2 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:2 17293:1 17322:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:2 17419:15 17421:6 17433:6 17439:2 17444:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:3 17725:3 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:4 17953:2 17957:3 17970:1 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18089:1 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18308:1 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:5 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18635:1 18647:1 18670:1 18679:2 18697:1 18712:7 18721:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:22 18938:1 18942:2 18975:2 18990:2 19007:1 19030:4 19032:1 19069:2 19075:1 19160:1 19162:22 19169:1 19183:2 19192:1 19211:1 19214:3142 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19741:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:3 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:2 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:21 20171:1 20181:3 20182:1 20195:1 20197:4 20205:2 20217:2 20221:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:1 20711:1 20712:2 20718:1 20732:1 20736:1 20749:1 20751:2 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:7 21071:1 21079:2 21086:1 21109:1 21138:2 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:11 21368:1 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:2 21540:1 21542:2 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:1 21963:1 21985:1 21994:2 21996:1 22003:1 22008:1 22020:1 22025:1 22043:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22181:1 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22515:1 22516:1 22524:1 22527:1 22535:2 22542:1 22558:1 22569:8 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:2 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:2 22784:1 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:2 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22905:1 22909:1 22913:2 22930:1 22934:1 22939:2 22945:2 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23155:1 23180:1 23199:1 23211:1 23213:4 23221:4 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:13 23683:1 23696:1 23703:6 23708:1 23717:1 23726:6 23730:1 23747:1 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23944:2 23946:1 23951:8 23960:1 23967:2 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:7 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:1 24803:1 24812:2 24822:5 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24929:1 24948:1 24952:3 24972:1 24993:1 24998:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25283:1 25286:1 25289:1 25295:1 25296:1 25299:2 25305:1 25314:7 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:1 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25804:1 25810:1 25827:1 25843:3 25850:2 25863:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:2 25948:2 25957:1 26015:1 26026:1 26036:1 26038:1 26043:2 26045:1 26051:2 26062:4 26064:2 26065:1 26076:2 26096:1 26107:1 26128:9 26131:3 26147:2 26154:2 26156:1 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:5 26302:2 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:2 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:1 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26678:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:1 26771:1 26775:1 26857:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:9 27000:1 27007:2 27036:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:2 27174:1 27183:2 27184:7 27194:1 27195:1 27207:8 27215:2 27229:1 27243:1 27255:1 27282:1 27284:9 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:22 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27503:1 27505:1 27516:1 27518:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:7 27892:1 27897:2 27904:1 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 27980:1 28002:1 28020:1 28034:1 28036:2 28069:1 28074:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:1 28147:1 28148:1 28149:1 28157:1 28180:3 28195:8 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:2 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:15 28518:1 28523:1 28524:1 28538:1 28541:3 28549:2 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:2 28631:7 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28720:3 28724:1 28725:2 28728:7 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:2 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:1 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29566:1 29591:1 29614:1 29624:1 29626:3 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:2 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 19:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 151:1 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:2 264:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 571:1 576:1 591:1 595:3 597:1 598:4 600:3 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:7 717:1 718:1 737:1 752:3 759:1 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 903:1 905:2 914:1 925:1 927:2 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:1 998:1 1011:1 1016:4 1038:2 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:2 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:2 1567:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:3 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1714:1 1715:1 1742:1 1745:3 1768:1 1773:1 1790:4 1815:2 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:4 1964:2 1988:2 1990:1 1991:1 1992:1 2008:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:1 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:1 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:6 2246:1 2247:1 2250:1 2251:6 2253:1 2254:1 2255:1 2257:2 2258:1 2259:4 2265:4 2270:4 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:23 2359:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2678:1 2680:1 2688:1 2704:2 2732:2 2740:3 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2895:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:2 3012:1 3017:20 3025:2 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:2 3086:2 3112:1 3115:1 3118:1 3120:1 3197:2 3210:1 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3400:1 3402:3 3406:1 3410:2 3413:1 3431:3 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:1 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3765:1 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:2 3875:1 3876:1 3877:5 3878:7 3879:1 3897:1 3898:1 3905:2 3907:2 3914:1 3931:4 3932:1 3939:1 3944:1 3946:2 3950:4 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4035:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4201:1 4212:1 4220:3 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4431:1 4432:1 4449:4 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4583:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:2 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:7 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4956:1 4973:1 4990:3 4993:1 5005:1 5028:16 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5156:1 5167:1 5176:1 5181:2 5186:1 5191:1 5233:2 5240:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:3 5362:1 5373:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5532:1 5537:9 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:2 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5928:1 5931:3 5939:1 5966:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6099:1 6108:1 6126:2 6128:2 6130:2 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:7 6484:1 6501:7 6515:2 6516:2 6517:1 6518:1 6519:7 6523:1 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6662:1 6695:1 6747:1 6756:1 6763:1 6765:3 6771:2 6777:3 6797:9 6801:1 6807:1 6808:1 6809:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:9 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:11 6981:1 6999:2 7012:1 7023:1 7028:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:2 7103:3 7107:1 7134:1 7137:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7256:1 7302:2 7306:1 7352:1 7366:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:1 7564:3 7593:1 7604:1 7606:5 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7746:1 7747:2 7762:1 7763:1 7778:1 7819:2 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:4 7997:2 8003:6 8004:2 8008:1 8010:1 8016:1 8022:1 8023:1 8029:24 8044:21 8050:1 8054:1 8074:1 8077:1 8089:1 8097:1 8114:1 8142:1 8144:1 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8256:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8424:1 8432:1 8445:1 8472:1 8481:1 8483:1 8486:2 8490:1 8513:14 8537:3 8554:1 8565:16 8570:7 8571:1 8572:2 8573:1 8574:2 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8747:1 8753:1 8754:16 8762:2 8777:1 8791:9 8798:2 8804:1 8819:1 8866:2 8868:1 8870:1 8875:2 8880:1 8881:1 8884:1 8885:1 8887:2 8888:1 8890:1 8891:1 8896:1 8899:1 8900:2 8915:1 8935:1 8936:1 8957:2 8958:6 8973:1 8979:3 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:3 9116:1 9141:2 9155:1 9192:1 9193:2 9201:3 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9259:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:2 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:1 9637:3 9660:1 9685:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9819:1 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:4 9890:1 9896:2 9897:1 9904:2 9909:1 9914:1 9921:5 9925:1 9929:1 9937:4 9950:4 9996:1 9997:3 10012:1 10017:2 10018:1 10024:2 10039:1 10043:1 10048:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:3 10331:23 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10618:3 10624:1 10629:1 10642:1 10654:1 10672:1 10696:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:5 10738:1 10750:1 10772:2 10789:1 10796:1 10811:3 10816:2 10847:1 10856:1 10858:2 10871:16 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:9 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11203:1 11212:1 11234:1 11251:3 11261:4 11264:3 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:3 11421:1 11430:1 11442:1 11443:1 11444:1 11456:4 11460:1 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11602:1 11614:1 11615:2 11618:2 11623:1 11625:1 11633:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11806:1 11807:3 11815:1 11816:1 11818:1 11846:1 11856:1 11870:1 11873:1 11874:1 11894:1 11909:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:1 11987:1 12002:2 12029:2 12040:4 12042:1 12045:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12138:1 12151:2 12158:1 12165:1 12184:3 12210:1 12258:1 12287:1 12290:1 12331:1 12334:1 12341:2 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:1 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:10 13046:1 13054:1 13058:1 13064:11 13088:1 13090:1 13111:3 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13206:1 13222:4 13223:1 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:3 13500:1 13520:2 13544:1 13545:1 13551:4 13563:2 13565:1 13566:1 13572:1 13573:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14026:1 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:7 14119:1 14130:2 14136:1 14156:1 14164:2 14166:2 14175:1 14178:1 14209:3 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:4 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14588:1 14592:9 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:5 14704:1 14709:1 14740:2 14755:23 14757:2 14761:1 14803:3 14804:1 14808:1 14825:1 14870:5 14875:1 14900:2 14906:1 14908:1 14912:1 14928:1 14929:1 14988:1 14994:1 15035:1 15067:1 15069:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15313:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:1 15381:1 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15673:1 15698:3 15703:3 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:5 15820:2 15823:6 15825:1 15836:2 15845:1 15847:1 15863:1 15875:1 15886:1 15892:3 15918:15 15920:2 15929:1 15935:1 15937:1 15946:2 15970:1 16002:7 16010:1 16045:1 16048:1 16049:1 16054:2 16061:1 16066:1 16068:1 16077:1 16078:1 16089:1 16097:1 16129:2 16137:1 16143:1 16146:1 16151:3 16163:1 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16425:1 16428:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:7 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:3 16612:3 16613:1 16651:1 16653:1 16656:1 16663:1 16678:1 16682:1 16683:1 16684:1 16688:1 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16812:1 16815:1 16865:5 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17058:1 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:2 17141:2 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:3 17293:1 17322:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:3 17419:15 17421:6 17433:6 17439:2 17444:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:4 17725:3 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17796:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:5 17953:2 17957:3 17970:1 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18089:2 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18298:1 18308:1 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:5 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18635:1 18647:1 18670:1 18679:2 18697:1 18712:7 18721:1 18739:1 18740:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:23 18916:1 18938:1 18942:2 18969:1 18975:2 18990:2 19007:1 19030:5 19032:1 19069:2 19075:1 19160:1 19162:23 19169:1 19183:2 19192:1 19195:1 19211:1 19214:3285 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19645:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19741:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:3 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:2 19983:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20113:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:21 20171:1 20181:4 20182:1 20195:1 20197:4 20205:2 20217:2 20221:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20325:1 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20400:1 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:2 20711:1 20712:2 20718:1 20730:1 20732:1 20736:1 20749:1 20751:2 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:7 21071:1 21079:2 21086:1 21109:1 21138:2 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:11 21368:1 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:4 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:2 21540:1 21542:2 21545:1 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21757:1 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:2 21963:1 21985:1 21991:1 21994:2 21996:1 22003:1 22008:1 22020:1 22025:1 22031:1 22043:1 22077:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22181:2 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22515:1 22516:1 22521:1 22524:1 22527:1 22535:2 22542:1 22558:1 22569:9 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:3 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:2 22784:1 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:3 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22905:1 22909:1 22913:2 22930:1 22934:1 22939:3 22945:2 22947:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23155:1 23180:1 23199:1 23211:1 23213:4 23221:5 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23398:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:13 23683:1 23696:1 23703:6 23708:1 23717:1 23726:6 23730:1 23747:1 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23931:1 23944:2 23946:1 23951:8 23960:1 23967:3 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:7 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24533:1 24540:1 24573:1 24584:1 24586:1 24588:1 24610:1 24633:1 24639:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:2 24803:1 24812:2 24822:5 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24929:1 24948:1 24952:3 24972:1 24988:1 24990:1 24993:1 24998:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25283:1 25286:1 25289:1 25295:1 25296:1 25299:2 25305:1 25314:8 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:2 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25709:1 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25800:1 25804:1 25810:1 25827:1 25843:3 25850:2 25863:1 25869:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:2 25946:1 25948:2 25957:1 26015:1 26026:1 26036:1 26038:2 26043:2 26045:1 26051:2 26062:4 26064:2 26065:1 26076:2 26096:1 26107:1 26128:9 26131:3 26147:2 26154:2 26156:2 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:5 26302:2 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:2 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:2 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26678:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:2 26771:1 26775:1 26854:1 26857:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:9 27000:1 27007:2 27036:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:2 27174:1 27183:2 27184:7 27194:1 27195:1 27207:9 27215:2 27229:1 27243:1 27255:1 27282:1 27284:9 27297:1 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:23 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27503:1 27505:1 27516:1 27518:1 27540:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:7 27892:1 27897:2 27904:1 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 27980:1 28002:1 28020:1 28034:1 28036:2 28037:1 28069:1 28074:1 28089:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:2 28147:1 28148:1 28149:1 28157:1 28180:3 28195:9 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:3 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:16 28518:1 28523:1 28524:1 28538:1 28541:3 28549:3 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:3 28631:7 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28720:3 28724:1 28725:2 28728:7 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:2 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:2 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29566:1 29591:1 29596:1 29614:1 29624:1 29626:3 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:6 29776:1 29777:1 29781:1 29785:1 29793:2 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 19:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 151:1 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:2 264:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 561:1 571:1 576:1 591:1 595:3 597:1 598:4 600:3 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:7 717:1 718:1 737:1 752:3 759:2 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 903:1 905:2 914:1 925:1 927:2 928:3 933:1 944:2 956:1 957:2 970:2 976:1 980:1 982:2 998:1 1011:1 1016:4 1038:2 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1218:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:2 1395:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1531:1 1552:1 1560:3 1567:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:4 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1714:1 1715:1 1742:1 1745:3 1768:1 1773:1 1790:4 1815:2 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1940:1 1942:4 1964:2 1988:2 1990:1 1991:1 1992:1 2008:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:2 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:1 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:6 2246:1 2247:1 2250:1 2251:7 2253:1 2254:1 2255:1 2257:2 2258:1 2259:4 2265:4 2270:4 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:23 2359:1 2364:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2530:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:5 2618:1 2633:1 2635:2 2642:3 2650:1 2678:1 2680:1 2688:1 2689:1 2704:2 2732:2 2740:3 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2895:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:3 3012:1 3017:20 3025:2 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:2 3086:2 3112:1 3115:1 3118:1 3120:2 3197:2 3210:1 3212:6 3267:4 3279:1 3316:1 3319:1 3324:1 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:1 3400:1 3402:3 3406:1 3410:2 3413:1 3431:4 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:1 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3765:1 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:2 3864:1 3865:2 3875:1 3876:1 3877:5 3878:7 3879:1 3897:1 3898:1 3905:2 3907:2 3914:1 3931:4 3932:1 3939:1 3944:1 3946:2 3950:5 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4035:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4201:1 4212:1 4220:3 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4431:1 4432:1 4449:4 4477:1 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4583:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:3 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:7 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4956:1 4957:1 4973:1 4990:3 4993:1 5005:1 5028:17 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5154:1 5156:1 5167:1 5176:1 5181:2 5186:1 5191:1 5233:2 5240:1 5241:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:4 5362:1 5373:1 5376:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5532:1 5537:9 5567:1 5572:1 5580:1 5592:1 5613:1 5619:1 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:2 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5928:1 5931:4 5939:1 5966:1 5971:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6090:1 6096:1 6099:1 6108:1 6126:2 6128:3 6130:2 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:7 6484:1 6501:7 6515:2 6516:2 6517:1 6518:1 6519:7 6523:1 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6662:1 6695:1 6747:1 6756:1 6763:1 6765:3 6771:2 6777:3 6797:9 6801:1 6807:1 6808:1 6809:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:9 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:12 6981:1 6999:2 7012:1 7023:1 7028:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:2 7103:3 7107:1 7134:1 7137:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7256:1 7302:2 7306:1 7352:1 7366:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7529:2 7561:2 7564:3 7593:1 7604:1 7606:5 7610:1 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7746:1 7747:2 7762:1 7763:1 7778:1 7819:2 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7940:1 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:4 7997:2 8003:6 8004:2 8006:1 8008:1 8010:1 8016:1 8022:1 8023:1 8029:24 8044:21 8050:1 8054:1 8055:1 8074:1 8077:1 8089:1 8097:1 8114:1 8142:1 8144:2 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8256:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8424:1 8432:1 8445:1 8472:1 8481:1 8483:1 8486:2 8490:1 8513:16 8537:3 8554:1 8565:16 8570:7 8571:1 8572:2 8573:1 8574:2 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8747:1 8753:1 8754:16 8762:2 8777:1 8791:9 8798:3 8804:1 8819:1 8866:2 8868:2 8870:1 8875:2 8880:1 8881:1 8884:1 8885:1 8887:2 8888:1 8890:1 8891:1 8896:1 8899:1 8900:2 8915:1 8935:1 8936:1 8957:2 8958:6 8973:1 8979:3 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:3 9116:1 9137:1 9141:2 9155:1 9192:1 9193:2 9201:3 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9259:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:2 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:1 9637:3 9660:1 9685:1 9689:1 9702:1 9713:1 9736:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9819:1 9845:1 9858:1 9876:3 9878:1 9881:6 9884:32 9886:1 9888:4 9890:1 9896:2 9897:1 9904:2 9909:1 9914:1 9921:5 9925:1 9929:1 9937:4 9950:4 9996:1 9997:3 10012:1 10017:2 10018:1 10024:2 10039:1 10043:1 10048:1 10052:1 10058:1 10106:1 10114:2 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10303:3 10308:1 10312:1 10328:3 10331:23 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10576:1 10618:3 10624:1 10629:1 10642:1 10654:1 10672:1 10696:1 10697:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:5 10738:1 10750:1 10772:2 10789:1 10796:1 10811:3 10816:3 10847:1 10856:1 10858:2 10871:16 10877:1 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:5 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:9 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11203:1 11212:1 11234:1 11251:3 11261:4 11264:3 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:3 11421:1 11430:1 11442:1 11443:1 11444:1 11456:4 11460:1 11465:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11602:1 11614:1 11615:2 11618:2 11623:1 11625:1 11633:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11806:1 11807:3 11815:1 11816:1 11818:1 11846:1 11856:1 11870:1 11873:1 11874:1 11894:1 11909:1 11936:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:1 11987:1 12002:2 12029:2 12040:4 12042:1 12045:1 12052:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12138:1 12151:2 12158:1 12165:1 12184:3 12210:1 12258:1 12287:1 12290:1 12331:1 12334:1 12341:2 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12468:1 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:1 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:2 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:11 13046:1 13054:1 13058:1 13064:11 13088:1 13090:1 13111:3 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13206:1 13222:4 13223:1 13225:2 13226:1 13253:1 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:3 13500:1 13520:2 13544:1 13545:1 13551:4 13563:2 13565:1 13566:1 13572:1 13573:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13714:1 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14026:1 14036:1 14046:1 14054:2 14065:2 14083:1 14090:1 14097:1 14107:1 14108:1 14113:7 14119:1 14130:2 14136:1 14156:1 14164:2 14166:2 14175:1 14178:1 14209:3 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:4 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14571:1 14588:1 14592:9 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:5 14704:1 14709:1 14740:2 14755:23 14757:2 14761:1 14803:4 14804:1 14808:1 14825:1 14870:5 14875:1 14900:2 14906:1 14908:1 14912:1 14928:1 14929:1 14983:1 14988:1 14994:1 15035:1 15067:1 15069:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15313:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:2 15381:1 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15567:1 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15673:1 15698:3 15703:3 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15817:5 15820:2 15823:6 15825:1 15836:2 15845:1 15847:1 15863:1 15875:1 15886:1 15892:3 15918:16 15920:2 15929:1 15935:1 15937:1 15946:2 15970:1 16002:7 16010:1 16045:1 16048:1 16049:1 16054:2 16061:1 16066:1 16068:1 16077:1 16078:1 16089:1 16097:1 16129:2 16137:1 16143:1 16146:1 16151:3 16163:1 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16414:1 16425:1 16428:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:7 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:4 16612:3 16613:1 16651:1 16653:1 16656:1 16663:2 16678:1 16682:1 16683:2 16684:1 16688:2 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16812:1 16815:1 16865:5 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17058:1 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:2 17141:2 17145:1 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:3 17293:1 17322:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17380:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:3 17419:16 17421:6 17433:6 17439:2 17444:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:1 17612:2 17615:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:4 17725:3 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17796:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:2 17935:2 17944:5 17953:2 17957:3 17970:1 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18089:2 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18278:1 18298:1 18308:1 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:5 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18609:1 18635:1 18647:1 18670:1 18679:2 18697:1 18712:7 18721:1 18739:1 18740:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:1 18812:6 18820:1 18834:1 18869:4 18888:23 18916:1 18938:1 18942:2 18969:1 18975:2 18990:2 19007:1 19030:5 19032:1 19069:2 19075:1 19153:1 19160:1 19162:23 19169:1 19183:2 19192:1 19195:1 19211:1 19214:3338 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19645:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19741:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:3 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:3 19983:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20113:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:22 20171:1 20181:4 20182:1 20195:1 20197:4 20205:2 20217:2 20221:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20325:1 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20373:1 20400:1 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:2 20711:1 20712:2 20718:1 20730:1 20732:1 20736:1 20749:1 20751:3 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:2 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:7 21071:1 21079:2 21086:1 21100:1 21109:1 21138:2 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:11 21368:1 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:5 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:2 21540:1 21542:2 21545:1 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21704:1 21723:1 21731:4 21757:1 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:2 21963:1 21985:1 21991:1 21994:3 21996:1 22003:1 22008:1 22020:1 22025:1 22031:1 22043:1 22077:1 22078:2 22082:3 22096:2 22117:1 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22181:2 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22348:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22515:1 22516:1 22521:1 22524:1 22527:1 22535:2 22542:1 22558:1 22569:9 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:4 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:2 22784:2 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:3 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22905:1 22909:1 22913:2 22930:1 22934:1 22939:3 22945:2 22947:1 22951:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23155:1 23180:1 23199:2 23211:1 23213:4 23221:5 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23398:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:13 23672:1 23683:1 23696:1 23703:6 23708:1 23717:1 23726:6 23730:1 23747:1 23754:3 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23931:1 23944:2 23946:1 23951:8 23960:1 23967:4 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:7 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24531:1 24533:1 24540:1 24573:1 24580:1 24584:1 24586:1 24588:1 24610:1 24633:1 24639:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:2 24803:1 24812:2 24822:5 24829:1 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24929:1 24948:1 24952:3 24953:1 24972:1 24988:1 24990:1 24993:1 24998:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25283:1 25286:1 25289:1 25295:1 25296:1 25299:2 25305:1 25314:8 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:2 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:2 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25709:1 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25800:1 25804:2 25810:1 25827:1 25843:3 25850:2 25863:1 25869:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:2 25946:1 25948:2 25957:1 25959:1 26015:1 26026:1 26036:1 26038:2 26043:2 26045:1 26051:2 26062:5 26064:2 26065:1 26076:2 26096:1 26107:1 26128:10 26131:3 26147:2 26154:2 26156:2 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:5 26302:2 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:2 26470:1 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:2 26553:1 26563:2 26576:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26678:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:2 26771:1 26775:1 26854:1 26857:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:9 27000:1 27007:2 27036:1 27070:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:3 27174:1 27183:2 27184:7 27194:1 27195:1 27207:9 27215:2 27229:1 27243:1 27255:1 27282:1 27284:9 27297:1 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:23 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27503:1 27505:1 27516:1 27518:1 27540:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:2 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:7 27892:1 27897:2 27904:1 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 27980:1 28002:1 28020:1 28034:1 28036:2 28037:1 28069:1 28074:1 28089:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:2 28147:1 28148:1 28149:1 28157:1 28180:3 28195:9 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:3 28366:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:16 28518:1 28523:1 28524:1 28538:1 28541:3 28549:3 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:3 28631:7 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28720:3 28724:1 28725:2 28728:7 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28904:1 28907:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:2 29060:2 29062:2 29086:2 29091:2 29122:3 29123:1 29143:1 29172:4 29180:2 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29566:1 29591:1 29596:1 29614:1 29624:1 29626:3 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:7 29776:1 29777:1 29781:1 29785:1 29793:2 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 19:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 151:1 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:2 264:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 561:1 571:1 576:1 591:1 595:3 597:1 598:4 600:3 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:7 717:1 718:1 737:1 752:3 759:2 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 903:1 905:2 914:1 925:1 927:2 928:3 933:2 944:2 956:1 957:2 970:2 976:1 980:1 982:2 998:1 1011:1 1016:4 1038:2 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1218:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:2 1395:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1444:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1530:1 1531:1 1552:1 1560:3 1567:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:4 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1714:2 1715:1 1742:1 1745:3 1768:1 1773:1 1790:4 1794:1 1815:2 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1938:1 1940:1 1942:4 1964:2 1988:2 1990:1 1991:1 1992:1 2008:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:16 2085:2 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:2 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:6 2246:1 2247:1 2250:1 2251:7 2253:1 2254:1 2255:1 2257:2 2258:1 2259:5 2265:4 2270:4 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:24 2359:1 2364:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2530:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:6 2618:1 2633:1 2635:2 2642:3 2650:1 2678:1 2680:1 2688:1 2689:1 2704:3 2732:2 2740:3 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2825:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2895:2 2916:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:3 3012:1 3017:20 3025:3 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:3 3086:2 3112:1 3115:1 3118:1 3120:2 3197:2 3210:1 3212:6 3267:4 3279:1 3316:1 3319:1 3324:2 3325:3 3341:1 3353:1 3364:1 3365:1 3373:3 3374:1 3379:2 3400:1 3402:3 3406:1 3410:2 3413:1 3431:4 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:1 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3765:1 3766:2 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:3 3864:1 3865:2 3875:1 3876:1 3877:5 3878:8 3879:1 3897:1 3898:1 3905:2 3907:2 3914:1 3917:1 3931:4 3932:1 3939:1 3944:1 3946:2 3950:5 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4035:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4201:1 4212:1 4220:3 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4431:1 4432:1 4449:4 4477:1 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4583:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:3 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:8 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4956:1 4957:1 4973:1 4990:3 4993:1 4999:1 5005:1 5028:17 5031:2 5032:1 5041:1 5049:1 5071:1 5080:1 5083:1 5094:1 5138:1 5153:1 5154:1 5156:1 5167:1 5176:1 5181:2 5186:1 5191:1 5233:2 5240:1 5241:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:4 5362:1 5373:1 5376:1 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5532:1 5537:9 5542:1 5567:1 5572:1 5580:1 5592:1 5613:1 5619:2 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:3 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5928:1 5931:4 5939:1 5966:1 5971:1 5977:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6071:1 6090:1 6096:1 6099:1 6108:1 6126:2 6128:3 6130:2 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6208:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:7 6484:1 6501:7 6515:2 6516:2 6517:1 6518:1 6519:7 6523:1 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:4 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6662:1 6695:1 6747:1 6756:1 6763:1 6765:3 6771:2 6777:3 6797:9 6801:1 6807:1 6808:1 6809:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:9 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:12 6981:1 6999:2 7012:1 7023:1 7028:1 7039:1 7055:2 7063:1 7071:1 7090:1 7093:2 7097:3 7099:2 7103:3 7107:1 7134:1 7137:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7256:1 7302:2 7306:1 7352:1 7366:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7507:1 7529:2 7561:2 7564:3 7583:1 7593:1 7604:1 7606:5 7610:1 7624:1 7631:1 7632:3 7687:2 7692:2 7721:16 7731:3 7746:1 7747:2 7762:1 7763:1 7778:1 7819:2 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7940:1 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:4 7997:2 8003:6 8004:2 8006:1 8008:1 8010:2 8016:1 8022:1 8023:1 8029:24 8044:21 8050:1 8054:1 8055:1 8074:1 8077:1 8089:1 8097:1 8114:1 8142:1 8144:2 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8256:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8424:1 8432:1 8445:1 8472:1 8481:1 8483:1 8486:2 8490:1 8513:16 8537:3 8554:1 8565:16 8570:8 8571:1 8572:2 8573:1 8574:2 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8654:1 8678:1 8691:1 8694:1 8705:1 8708:4 8729:1 8743:1 8747:1 8753:1 8754:16 8762:2 8777:1 8791:9 8798:3 8804:1 8819:1 8866:2 8868:2 8870:1 8875:2 8880:1 8881:1 8884:1 8885:1 8887:2 8888:1 8890:1 8891:1 8896:1 8899:1 8900:2 8915:1 8935:1 8936:1 8957:2 8958:6 8973:1 8979:3 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9080:1 9108:1 9114:3 9116:1 9137:1 9141:2 9155:1 9192:1 9193:2 9201:3 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9259:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:2 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:2 9637:3 9660:1 9685:1 9689:1 9702:1 9713:1 9736:1 9739:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9819:1 9845:1 9858:1 9876:3 9878:1 9881:7 9884:33 9886:1 9888:4 9890:1 9896:2 9897:1 9904:2 9909:1 9914:1 9921:6 9925:1 9929:1 9937:5 9950:4 9952:1 9996:1 9997:3 10012:1 10017:2 10018:1 10024:2 10039:1 10043:1 10048:1 10052:1 10058:1 10106:1 10114:3 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10300:1 10303:3 10308:1 10312:1 10328:3 10331:24 10404:4 10417:1 10435:1 10436:1 10467:1 10480:1 10482:1 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10576:1 10618:3 10624:2 10629:1 10642:1 10654:1 10672:1 10696:1 10697:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:6 10738:1 10750:1 10772:2 10789:1 10796:1 10811:3 10816:3 10847:1 10856:1 10858:2 10871:16 10877:2 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:6 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:1 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:9 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11203:1 11212:1 11234:1 11251:3 11261:5 11264:3 11265:1 11266:1 11280:1 11287:1 11289:3 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:3 11421:1 11430:1 11442:1 11443:1 11444:1 11456:4 11460:1 11465:1 11472:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11602:1 11614:1 11615:3 11618:2 11623:1 11625:1 11633:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:1 11786:1 11789:1 11806:1 11807:3 11815:1 11816:1 11818:1 11846:1 11856:1 11870:1 11873:1 11874:1 11894:1 11909:1 11936:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:2 11987:1 12002:2 12029:2 12040:4 12042:1 12045:1 12052:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12138:1 12151:2 12158:1 12165:1 12184:3 12185:1 12210:1 12258:1 12287:1 12290:1 12331:1 12334:1 12341:3 12349:1 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:4 12416:1 12422:1 12433:2 12468:1 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:2 12639:1 12648:2 12656:8 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:2 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:11 13046:1 13054:1 13058:1 13064:11 13088:1 13090:2 13107:1 13111:3 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13206:1 13222:4 13223:2 13225:2 13226:1 13253:1 13260:1 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13392:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:3 13500:1 13520:2 13544:1 13545:1 13551:4 13563:2 13565:1 13566:1 13572:1 13573:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13714:1 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13845:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13950:1 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14026:1 14036:1 14046:1 14054:2 14065:2 14083:1 14090:2 14097:1 14107:1 14108:1 14113:7 14119:1 14130:2 14136:1 14156:1 14164:2 14166:2 14175:1 14178:1 14209:3 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:4 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14571:1 14588:1 14592:9 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:6 14704:1 14709:1 14740:2 14755:24 14757:2 14761:1 14783:1 14803:4 14804:1 14808:1 14809:1 14825:1 14870:5 14875:1 14900:2 14906:1 14908:1 14912:1 14928:1 14929:1 14983:1 14988:1 14994:1 15035:1 15067:1 15069:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15313:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:2 15381:1 15382:1 15385:3 15393:1 15410:1 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15567:1 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15673:1 15698:3 15703:3 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15815:1 15817:5 15820:2 15823:6 15825:1 15836:2 15845:1 15847:1 15863:1 15875:1 15886:1 15892:3 15918:17 15920:2 15929:1 15935:1 15937:1 15946:2 15950:1 15970:1 16002:7 16010:1 16045:1 16048:1 16049:1 16054:2 16061:1 16066:1 16068:1 16077:1 16078:1 16089:1 16097:1 16129:3 16137:1 16143:1 16146:1 16151:3 16163:1 16166:1 16168:1 16195:3 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16414:1 16421:1 16425:1 16428:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:8 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:4 16612:3 16613:1 16651:1 16653:1 16656:1 16663:2 16678:1 16682:1 16683:2 16684:1 16688:2 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16812:1 16815:1 16865:5 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17058:1 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:3 17141:2 17145:1 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:3 17293:1 17322:1 17324:1 17334:1 17351:1 17354:1 17357:2 17358:1 17372:1 17380:1 17396:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:3 17419:17 17421:6 17433:6 17439:2 17444:2 17448:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:2 17612:2 17615:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:4 17725:3 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17796:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:3 17935:2 17944:5 17953:2 17957:3 17970:2 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18089:2 18094:1 18110:1 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18278:1 18298:1 18308:2 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:5 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18609:1 18635:1 18647:1 18670:1 18679:2 18697:1 18712:7 18721:1 18739:1 18740:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:2 18812:6 18820:1 18834:1 18869:4 18888:24 18916:1 18938:1 18942:2 18969:1 18975:2 18990:2 19007:1 19030:5 19032:1 19069:2 19075:1 19104:1 19153:1 19160:1 19162:24 19169:1 19183:2 19192:1 19195:1 19211:1 19214:3362 19257:1 19264:1 19268:3 19298:1 19303:1 19308:1 19316:1 19329:1 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:1 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19642:1 19645:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19741:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:4 19869:1 19885:1 19892:1 19893:3 19913:1 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:3 19983:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20113:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:23 20171:1 20181:5 20182:1 20195:1 20197:4 20205:2 20217:2 20221:1 20237:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:5 20325:1 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20373:1 20393:1 20400:1 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20557:1 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:3 20711:1 20712:2 20718:1 20730:1 20732:1 20736:1 20749:1 20751:3 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:9 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:3 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:7 21071:1 21079:2 21086:2 21100:1 21109:1 21138:2 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21367:11 21368:2 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21482:1 21483:1 21488:5 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:2 21540:1 21542:2 21545:1 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21685:1 21704:1 21723:1 21731:4 21757:1 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:2 21963:1 21985:1 21991:1 21994:3 21996:1 22003:1 22008:1 22020:1 22025:1 22031:1 22043:1 22077:1 22078:2 22082:3 22096:2 22117:2 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22181:2 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22348:1 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22507:1 22515:1 22516:1 22521:1 22524:1 22527:2 22535:2 22542:1 22558:1 22569:9 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:4 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:2 22784:2 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:3 22860:2 22864:1 22879:1 22888:2 22899:1 22900:2 22902:1 22903:3 22905:1 22909:1 22913:2 22930:1 22934:1 22939:3 22945:2 22947:1 22951:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23155:1 23180:1 23199:2 23211:1 23213:4 23221:6 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23398:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:1 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:14 23672:1 23683:1 23696:1 23703:6 23708:1 23717:1 23722:1 23726:6 23730:1 23747:1 23754:3 23777:1 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:1 23894:3 23913:1 23914:1 23920:1 23931:1 23944:2 23946:1 23951:8 23960:1 23967:4 23975:2 23977:1 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:8 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24531:1 24533:1 24540:1 24573:1 24580:1 24584:1 24586:1 24588:1 24610:1 24633:1 24639:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:2 24803:1 24812:2 24822:5 24829:1 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24927:1 24929:1 24948:1 24952:3 24953:1 24972:1 24988:1 24990:1 24993:1 24998:1 25000:1 25006:2 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25283:1 25286:1 25289:2 25295:1 25296:1 25299:2 25305:1 25314:8 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:3 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:2 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25709:1 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25800:1 25804:2 25810:1 25820:1 25827:1 25843:3 25850:2 25863:1 25869:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:2 25946:1 25948:2 25957:1 25959:1 26015:1 26026:1 26036:1 26038:2 26043:2 26045:1 26051:2 26062:5 26064:2 26065:1 26076:2 26096:1 26107:1 26128:10 26131:3 26147:2 26154:2 26156:2 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:5 26302:2 26312:7 26358:1 26413:3 26416:1 26443:1 26451:1 26466:2 26470:1 26471:1 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:2 26553:1 26563:2 26576:1 26598:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26678:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:2 26771:1 26775:1 26852:1 26854:1 26857:1 26864:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:9 27000:1 27007:2 27036:1 27070:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:3 27174:1 27183:2 27184:7 27194:1 27195:1 27207:9 27215:2 27222:1 27228:1 27229:1 27243:1 27255:1 27282:1 27284:9 27297:1 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:24 27372:1 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27478:1 27482:2 27492:1 27499:1 27503:1 27505:1 27516:1 27518:1 27540:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:3 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:8 27892:1 27897:2 27904:1 27905:1 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 27980:1 28002:1 28020:1 28034:1 28036:2 28037:1 28069:1 28074:1 28089:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:2 28147:1 28148:1 28149:1 28157:1 28180:3 28195:9 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:3 28366:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:16 28518:1 28523:1 28524:1 28538:1 28541:3 28549:3 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:3 28631:8 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28698:1 28720:3 28724:1 28725:2 28728:8 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28881:1 28904:1 28907:2 28911:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28997:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:2 29060:2 29062:2 29077:1 29085:1 29086:2 29091:2 29122:3 29123:1 29143:2 29172:4 29180:2 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29307:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29565:1 29566:1 29591:1 29596:1 29599:1 29614:1 29624:1 29626:3 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29681:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:7 29776:1 29777:1 29781:1 29785:1 29793:2 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 19:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 151:1 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:2 264:1 270:2 272:2 288:3 309:1 331:3 344:4 356:1 363:1 366:1 382:7 389:1 390:1 394:1 399:1 416:1 450:1 451:3 453:1 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 561:1 571:1 576:1 591:1 595:3 597:1 598:4 600:3 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:7 717:1 718:1 737:1 752:3 759:2 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 903:1 905:2 914:1 925:1 927:2 928:3 933:2 944:2 956:1 957:2 970:2 976:1 980:1 982:2 998:1 1011:1 1016:4 1038:2 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1218:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:2 1395:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1444:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1530:1 1531:1 1552:1 1560:3 1567:1 1568:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:4 1608:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1714:2 1715:1 1742:1 1745:3 1768:1 1773:1 1790:4 1794:1 1815:2 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1938:2 1940:1 1942:4 1964:2 1988:2 1990:1 1991:1 1992:1 2008:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2075:2 2076:3 2081:1 2084:17 2085:2 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:2 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:6 2246:1 2247:1 2250:1 2251:7 2253:1 2254:1 2255:1 2257:2 2258:1 2259:5 2265:4 2270:4 2272:2 2274:1 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:24 2359:1 2364:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2522:1 2530:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:6 2618:1 2633:1 2635:2 2642:3 2650:1 2678:1 2680:1 2688:1 2689:1 2704:5 2732:2 2740:3 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2825:1 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2895:2 2916:1 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:3 3012:1 3017:21 3025:3 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:5 3086:2 3112:1 3115:1 3118:1 3120:2 3197:2 3210:1 3212:6 3267:4 3279:1 3316:1 3319:1 3324:2 3325:3 3341:1 3353:1 3361:1 3364:1 3365:1 3373:3 3374:1 3379:2 3400:1 3402:4 3406:1 3410:2 3413:1 3431:4 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:1 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3765:1 3766:3 3769:3 3789:2 3813:1 3820:1 3828:1 3829:3 3833:3 3864:1 3865:2 3875:1 3876:1 3877:5 3878:8 3879:1 3897:1 3898:1 3905:2 3907:2 3914:1 3917:2 3931:5 3932:1 3939:1 3944:1 3946:2 3950:5 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4035:1 4041:1 4054:1 4059:1 4065:2 4069:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4201:1 4212:1 4220:3 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4308:1 4309:1 4315:1 4321:2 4329:1 4376:1 4383:2 4403:2 4409:1 4431:1 4432:1 4449:4 4477:1 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4581:1 4583:1 4603:1 4607:2 4622:1 4638:1 4666:2 4667:3 4673:3 4676:1 4685:3 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:8 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4956:1 4957:1 4973:1 4990:3 4993:1 4999:1 5005:1 5028:17 5031:2 5032:1 5041:1 5049:1 5071:2 5080:1 5083:1 5094:1 5138:1 5153:1 5154:2 5156:1 5167:1 5176:1 5181:2 5186:1 5191:1 5233:2 5240:1 5241:1 5253:1 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:4 5362:1 5373:1 5376:2 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5515:1 5532:1 5537:9 5542:2 5567:1 5572:1 5580:1 5592:1 5613:1 5619:2 5622:2 5628:5 5644:2 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:3 5756:2 5761:1 5798:1 5802:1 5823:2 5896:2 5927:2 5928:1 5931:4 5939:1 5942:1 5966:1 5971:1 5977:1 5982:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6071:2 6090:1 6096:1 6099:1 6108:1 6126:2 6128:3 6130:2 6139:1 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6208:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:7 6484:1 6501:7 6515:2 6516:2 6517:1 6518:1 6519:7 6523:1 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:6 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6662:1 6695:1 6747:1 6756:1 6763:1 6765:3 6771:2 6777:3 6797:9 6801:1 6807:1 6808:1 6809:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:9 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:12 6981:1 6999:2 7012:1 7023:1 7028:1 7039:1 7054:1 7055:2 7063:1 7071:1 7072:1 7090:1 7093:2 7097:3 7099:2 7103:3 7107:1 7134:1 7137:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7256:1 7302:2 7306:1 7352:1 7366:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7507:1 7529:2 7561:2 7564:3 7583:1 7593:1 7604:1 7606:5 7610:1 7624:1 7631:1 7632:3 7687:2 7692:2 7721:17 7731:3 7746:1 7747:2 7762:1 7763:1 7778:1 7819:2 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7940:1 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:4 7997:2 8003:6 8004:2 8006:1 8008:1 8010:2 8016:1 8022:1 8023:1 8029:24 8044:22 8050:1 8054:1 8055:1 8074:1 8077:1 8089:1 8097:1 8114:1 8142:1 8144:2 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8256:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8424:1 8432:1 8445:1 8472:1 8481:1 8483:1 8486:2 8490:1 8513:17 8537:3 8554:1 8565:16 8570:10 8571:1 8572:2 8573:1 8574:2 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8654:2 8678:1 8691:1 8694:1 8705:1 8708:4 8726:1 8729:1 8743:1 8747:1 8753:1 8754:17 8762:2 8777:1 8791:9 8798:3 8804:1 8819:1 8866:2 8868:2 8870:1 8875:2 8880:1 8881:1 8884:1 8885:1 8887:2 8888:1 8890:1 8891:1 8896:1 8899:1 8900:2 8915:1 8935:1 8936:1 8957:2 8958:6 8973:1 8979:3 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9078:1 9080:1 9108:1 9114:3 9116:1 9137:1 9141:2 9155:1 9192:1 9193:2 9201:3 9214:1 9223:2 9239:1 9250:2 9252:1 9258:1 9259:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:2 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:2 9637:3 9660:1 9685:1 9689:1 9702:1 9713:1 9736:1 9739:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9819:1 9845:1 9858:1 9876:3 9878:1 9881:8 9884:33 9886:1 9888:5 9890:1 9896:2 9897:1 9904:3 9909:1 9914:1 9921:7 9925:1 9929:1 9937:5 9950:4 9952:1 9996:1 9997:3 10012:1 10017:2 10018:1 10024:2 10039:1 10043:1 10048:1 10052:1 10058:1 10106:1 10114:3 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10300:1 10303:3 10308:1 10312:1 10328:3 10331:24 10404:4 10417:2 10435:1 10436:1 10445:1 10456:1 10467:1 10480:1 10482:2 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10576:2 10618:3 10624:2 10629:1 10642:1 10654:1 10672:1 10696:1 10697:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:6 10738:1 10750:1 10772:2 10789:1 10796:1 10811:3 10816:4 10824:1 10847:1 10856:1 10858:2 10871:17 10877:2 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:6 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:2 11001:1 11012:2 11021:1 11035:2 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:9 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11203:1 11212:1 11234:1 11251:3 11261:5 11264:3 11265:1 11266:1 11280:1 11287:1 11289:4 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:3 11421:1 11430:1 11442:1 11443:1 11444:1 11456:4 11460:1 11465:1 11472:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11602:1 11614:1 11615:3 11618:2 11623:1 11625:1 11633:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:2 11786:1 11789:2 11806:1 11807:3 11815:1 11816:1 11818:1 11846:1 11856:1 11870:1 11873:1 11874:1 11894:1 11909:1 11936:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:2 11987:1 12002:2 12029:2 12040:4 12042:1 12045:1 12052:1 12055:2 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12138:1 12151:2 12158:1 12165:1 12184:3 12185:2 12210:1 12258:1 12287:1 12290:1 12331:1 12334:1 12341:3 12349:2 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:5 12416:1 12422:1 12433:2 12468:1 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:2 12639:1 12648:2 12656:9 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:3 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:11 13046:1 13054:1 13058:1 13064:11 13088:1 13090:2 13107:1 13111:3 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13188:1 13204:1 13206:1 13222:4 13223:2 13225:2 13226:1 13253:1 13260:2 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13392:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:3 13500:1 13520:2 13544:1 13545:1 13551:4 13563:3 13565:2 13566:1 13572:1 13573:1 13574:1 13575:2 13577:1 13598:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13714:1 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13845:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:1 13933:2 13937:1 13944:1 13950:2 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14026:1 14036:1 14046:1 14054:2 14065:2 14083:1 14090:2 14097:1 14107:1 14108:1 14113:7 14119:1 14130:2 14136:1 14156:1 14164:2 14166:2 14175:1 14178:1 14209:3 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:4 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14460:1 14507:1 14510:1 14539:1 14557:1 14571:1 14588:1 14592:9 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:6 14704:1 14709:1 14740:2 14755:24 14757:2 14761:1 14783:1 14803:4 14804:1 14808:1 14809:1 14825:1 14870:5 14875:1 14900:2 14906:1 14908:1 14912:1 14928:1 14929:1 14976:1 14983:1 14988:1 14994:1 15035:1 15067:1 15069:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15313:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:2 15381:1 15382:1 15385:3 15393:1 15410:2 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15567:2 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15673:1 15698:3 15703:3 15708:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15815:2 15817:5 15820:2 15823:6 15825:1 15836:2 15845:1 15847:1 15863:1 15875:1 15886:1 15892:3 15918:17 15920:2 15929:1 15935:1 15937:1 15946:2 15950:1 15970:1 16002:7 16010:1 16045:1 16048:1 16049:1 16054:2 16061:1 16066:1 16068:1 16077:1 16078:1 16089:1 16097:1 16129:3 16137:1 16143:1 16146:1 16151:3 16163:1 16166:1 16168:1 16195:4 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16411:1 16414:2 16421:2 16425:1 16428:1 16429:1 16453:2 16465:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:8 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:4 16612:3 16613:1 16651:1 16653:1 16656:1 16663:2 16678:1 16682:2 16683:2 16684:1 16688:2 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16812:1 16815:1 16865:5 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:2 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17058:1 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:3 17141:2 17145:1 17146:6 17168:1 17184:1 17190:1 17191:10 17225:1 17229:1 17248:1 17262:1 17279:1 17284:3 17293:1 17322:1 17324:1 17334:1 17342:1 17351:1 17354:1 17357:2 17358:1 17372:1 17380:2 17396:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:3 17419:17 17421:6 17433:6 17439:2 17444:2 17448:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17544:1 17583:3 17584:1 17600:1 17607:2 17612:2 17615:1 17619:1 17620:2 17624:1 17634:1 17635:1 17657:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:4 17725:3 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17796:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:3 17935:2 17944:5 17953:2 17957:3 17970:2 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18085:1 18089:2 18094:1 18110:2 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18278:1 18298:1 18308:2 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:5 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18609:1 18635:1 18647:1 18670:1 18679:2 18697:1 18712:8 18721:1 18739:1 18740:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:2 18812:6 18820:1 18834:1 18869:4 18888:24 18916:1 18938:1 18942:2 18969:1 18975:2 18990:2 19007:1 19030:5 19032:1 19069:2 19075:1 19104:1 19153:1 19160:1 19162:24 19169:1 19183:2 19192:1 19195:1 19211:1 19214:3413 19257:1 19264:1 19268:5 19298:1 19303:1 19308:1 19316:1 19329:2 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:2 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19634:1 19642:1 19645:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19741:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:5 19869:1 19885:1 19892:1 19893:3 19913:1 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:3 19983:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20113:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:23 20171:1 20181:6 20182:1 20195:1 20197:4 20205:2 20217:2 20221:1 20237:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:6 20325:1 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20373:1 20393:1 20400:1 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20557:2 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:3 20711:1 20712:2 20718:1 20730:1 20732:1 20736:1 20749:1 20751:3 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:10 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20956:2 20960:1 20993:3 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:7 21071:1 21079:2 21086:2 21100:1 21109:1 21138:2 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21265:1 21272:1 21277:1 21282:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21351:1 21367:11 21368:2 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21465:1 21482:1 21483:1 21488:5 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:2 21540:1 21542:2 21545:1 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21685:2 21704:1 21723:1 21731:4 21757:1 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:2 21963:1 21985:1 21991:1 21994:3 21996:1 22003:1 22008:1 22020:1 22025:1 22031:1 22043:1 22077:1 22078:2 22082:3 22096:2 22117:2 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22181:2 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22348:2 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22507:1 22515:1 22516:1 22521:1 22524:1 22527:2 22535:2 22542:1 22558:1 22569:9 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:4 22671:1 22685:1 22688:1 22695:1 22710:1 22738:2 22743:1 22773:1 22777:1 22780:1 22783:2 22784:2 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:3 22860:2 22864:1 22879:1 22887:1 22888:2 22899:1 22900:2 22902:1 22903:3 22905:1 22909:1 22913:2 22930:1 22934:1 22939:3 22945:2 22947:1 22951:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23155:1 23180:1 23199:3 23211:2 23213:4 23221:6 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23398:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:2 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23625:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:14 23672:1 23683:1 23696:1 23703:7 23708:1 23717:1 23722:1 23726:6 23730:1 23747:1 23754:3 23777:1 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:2 23894:3 23913:1 23914:1 23920:1 23931:1 23944:2 23946:1 23951:8 23960:1 23967:4 23975:2 23977:2 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24026:1 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:8 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24531:1 24533:1 24540:1 24573:1 24580:1 24584:1 24586:1 24588:1 24610:1 24633:1 24639:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:1 24683:1 24691:1 24699:1 24700:3 24704:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:2 24803:1 24812:2 24822:5 24829:1 24832:1 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24927:2 24929:1 24948:2 24952:3 24953:1 24972:1 24988:1 24990:1 24993:1 24998:1 25000:1 25006:2 25019:1 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25258:1 25269:1 25283:1 25286:1 25289:2 25295:1 25296:1 25299:2 25305:1 25314:8 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:3 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:2 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25709:1 25718:1 25734:1 25762:1 25771:1 25795:3 25798:2 25800:1 25804:3 25810:1 25820:1 25827:1 25843:3 25850:2 25863:1 25869:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:2 25946:1 25948:2 25957:1 25959:1 25996:1 26015:1 26026:1 26036:1 26038:2 26043:2 26045:1 26051:2 26062:5 26064:2 26065:1 26076:2 26096:1 26107:1 26128:10 26131:3 26147:2 26154:2 26156:2 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:5 26302:2 26312:7 26358:1 26413:3 26416:1 26443:2 26451:1 26466:2 26470:1 26471:2 26477:1 26497:1 26519:1 26522:1 26535:1 26544:1 26552:2 26553:1 26563:2 26576:1 26598:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26678:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:2 26771:1 26775:1 26852:1 26854:1 26857:1 26864:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:9 27000:1 27007:2 27036:1 27070:1 27074:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:3 27174:1 27183:2 27184:7 27194:1 27195:1 27207:9 27215:2 27222:1 27228:2 27229:1 27243:1 27255:1 27282:1 27284:9 27297:1 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:24 27372:2 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27474:1 27478:1 27482:2 27492:1 27499:1 27503:1 27505:1 27516:1 27518:1 27540:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:3 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:8 27892:1 27897:2 27904:1 27905:1 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 27980:1 27997:1 28002:1 28020:1 28034:1 28035:1 28036:2 28037:1 28069:1 28074:1 28089:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:2 28147:1 28148:1 28149:1 28157:1 28180:4 28195:9 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:3 28366:1 28371:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:16 28518:1 28523:1 28524:1 28538:1 28541:3 28549:3 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:3 28631:8 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28698:1 28720:3 28724:1 28725:2 28728:8 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28881:1 28904:1 28907:2 28911:1 28912:1 28917:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28997:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:2 29060:2 29062:2 29077:1 29085:1 29086:2 29091:2 29122:3 29123:1 29143:2 29172:4 29180:2 29210:3 29224:1 29226:1 29227:1 29249:2 29250:1 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29307:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29565:1 29566:1 29580:1 29591:1 29596:1 29599:1 29614:1 29624:1 29626:3 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29681:1 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:7 29776:1 29777:1 29781:1 29785:1 29793:2 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2 18 7:1 11:1 19:1 22:1 27:2 49:1 51:1 68:1 80:1 84:1 90:1 93:1 98:1 132:2 151:1 196:4 213:2 217:1 218:2 222:1 230:1 235:2 257:2 264:1 270:2 272:2 288:3 309:1 331:4 344:4 356:1 363:1 366:1 382:7 383:1 389:1 390:1 394:1 399:1 416:1 450:1 451:3 453:1 457:1 464:1 465:1 468:1 470:1 473:2 479:1 493:1 504:1 534:1 551:1 561:1 571:1 576:1 591:1 595:3 597:1 598:4 600:3 613:1 622:4 626:1 647:1 651:2 660:4 667:1 685:1 693:2 702:7 717:1 718:1 737:1 752:3 759:2 769:3 772:1 781:1 783:1 791:1 798:1 808:1 867:1 887:1 893:4 896:3 902:1 903:1 905:3 914:1 925:1 927:2 928:3 933:2 944:2 956:1 957:3 970:2 976:1 980:1 982:2 998:1 1011:1 1016:4 1038:2 1063:1 1073:1 1126:3 1129:2 1141:1 1144:1 1155:1 1171:1 1187:1 1191:1 1196:1 1218:1 1236:4 1255:2 1258:2 1259:2 1260:1 1262:2 1275:1 1292:3 1302:1 1312:1 1318:2 1321:1 1331:2 1395:1 1406:1 1409:1 1416:2 1422:1 1429:2 1430:2 1436:1 1440:1 1444:1 1459:2 1473:3 1474:1 1489:1 1491:1 1493:1 1512:1 1521:1 1523:2 1524:1 1527:1 1530:1 1531:1 1552:1 1560:3 1567:1 1568:1 1579:2 1583:1 1596:4 1597:1 1598:1 1599:3 1607:4 1608:1 1613:1 1624:1 1627:1 1641:1 1657:1 1671:2 1680:2 1696:1 1712:1 1714:2 1715:1 1742:1 1745:3 1768:1 1773:1 1790:4 1794:1 1815:2 1833:1 1904:1 1911:1 1925:2 1927:2 1931:1 1938:2 1940:1 1942:5 1964:2 1988:2 1990:1 1991:1 1992:1 2008:1 2022:1 2025:1 2030:1 2032:2 2039:1 2041:2 2062:1 2070:1 2075:2 2076:3 2081:1 2084:17 2085:2 2086:1 2087:1 2090:1 2106:1 2123:1 2124:1 2131:1 2154:1 2156:2 2162:1 2181:2 2192:2 2193:1 2200:1 2206:1 2232:3 2234:1 2241:1 2244:6 2246:1 2247:1 2250:1 2251:7 2253:1 2254:1 2255:1 2257:2 2258:1 2259:5 2265:4 2270:4 2272:2 2274:2 2285:2 2286:1 2290:1 2295:1 2297:1 2299:1 2301:3 2302:2 2307:2 2308:1 2313:1 2316:3 2318:4 2324:2 2327:1 2331:2 2333:1 2335:3 2336:1 2341:3 2342:1 2348:26 2359:1 2364:1 2370:3 2378:1 2418:4 2429:1 2433:1 2443:1 2445:1 2459:1 2461:1 2463:1 2465:1 2477:1 2479:4 2487:1 2498:1 2519:1 2522:1 2530:1 2533:2 2552:1 2553:1 2557:1 2564:1 2595:2 2614:6 2618:1 2633:1 2635:2 2642:3 2650:1 2678:1 2680:1 2688:1 2689:1 2704:5 2732:2 2740:3 2741:1 2746:1 2749:1 2759:1 2763:2 2785:1 2791:1 2794:3 2795:1 2800:1 2807:1 2808:1 2825:2 2838:1 2843:1 2844:1 2860:6 2863:1 2871:2 2880:1 2881:1 2895:2 2916:2 2918:1 2941:1 2952:2 2964:1 2967:11 2970:3 3004:3 3012:1 3017:21 3025:3 3026:1 3027:1 3035:2 3042:3 3049:1 3055:3 3079:1 3082:5 3086:2 3112:1 3115:1 3118:1 3120:2 3197:2 3210:1 3212:6 3267:4 3279:1 3316:1 3319:1 3324:2 3325:3 3341:1 3353:1 3361:1 3364:1 3365:1 3373:3 3374:1 3379:2 3400:1 3402:4 3406:1 3410:2 3413:1 3431:4 3443:1 3448:1 3452:1 3456:1 3468:1 3514:1 3555:1 3560:4 3578:2 3608:1 3615:1 3629:1 3631:1 3638:3 3640:1 3642:1 3649:1 3670:1 3671:1 3688:1 3713:1 3736:1 3748:2 3765:1 3766:3 3769:3 3789:2 3813:1 3820:1 3828:1 3829:4 3833:3 3864:1 3865:2 3875:1 3876:1 3877:5 3878:9 3879:1 3897:1 3898:1 3905:2 3907:2 3914:1 3917:3 3931:5 3932:1 3939:1 3944:1 3946:2 3950:5 3977:1 3981:1 3982:1 3987:1 3991:1 3996:1 3999:3 4002:1 4012:1 4015:1 4035:1 4041:1 4054:1 4059:1 4065:2 4069:1 4089:1 4090:2 4097:1 4108:1 4115:2 4122:2 4137:2 4159:1 4166:2 4167:1 4176:1 4183:1 4196:1 4201:1 4212:1 4220:3 4231:4 4237:1 4247:1 4257:2 4279:1 4282:1 4284:1 4290:1 4308:1 4309:1 4315:1 4321:2 4329:1 4332:1 4376:1 4383:2 4403:2 4409:1 4431:1 4432:1 4449:4 4477:1 4479:1 4484:1 4486:2 4521:2 4525:1 4540:1 4551:5 4553:1 4557:1 4563:1 4581:1 4583:1 4603:1 4607:2 4622:1 4625:1 4638:1 4666:2 4667:3 4673:3 4676:1 4685:4 4706:1 4707:3 4718:1 4726:1 4745:1 4746:5 4760:9 4767:1 4773:1 4775:1 4778:1 4812:1 4814:1 4827:3 4833:1 4838:2 4844:2 4848:1 4850:1 4876:1 4877:1 4911:1 4928:1 4938:2 4953:1 4956:1 4957:2 4973:1 4990:3 4993:1 4999:1 5005:1 5028:18 5031:2 5032:1 5041:1 5049:1 5071:2 5080:1 5083:1 5094:1 5138:1 5153:1 5154:2 5156:1 5167:1 5176:1 5181:2 5186:1 5191:1 5233:2 5240:1 5241:1 5253:2 5254:1 5268:1 5273:1 5278:3 5280:1 5308:1 5330:2 5334:4 5362:1 5373:1 5376:2 5394:3 5422:1 5424:3 5436:2 5439:1 5453:1 5457:1 5460:1 5466:2 5471:1 5477:1 5478:1 5491:1 5499:1 5512:1 5515:1 5532:1 5537:9 5542:2 5567:1 5572:1 5580:1 5592:1 5613:1 5619:2 5622:2 5628:5 5644:2 5657:1 5677:1 5692:1 5709:1 5711:1 5718:1 5724:2 5732:1 5734:1 5752:3 5756:2 5761:1 5798:1 5802:1 5823:2 5859:1 5896:3 5927:2 5928:1 5931:4 5939:1 5942:1 5966:1 5971:1 5977:1 5982:1 5995:1 5998:1 6025:1 6035:4 6059:2 6070:2 6071:3 6090:1 6096:1 6099:1 6108:1 6126:2 6128:3 6130:3 6139:1 6152:1 6155:1 6164:1 6171:1 6177:1 6180:1 6208:1 6233:2 6236:1 6243:1 6246:1 6260:2 6271:4 6281:1 6282:9 6299:3 6315:1 6322:1 6338:2 6367:3 6385:1 6442:7 6484:1 6501:7 6515:2 6516:2 6517:1 6518:1 6519:7 6523:1 6527:1 6530:1 6539:1 6542:1 6563:1 6570:1 6584:6 6602:3 6603:1 6609:1 6612:1 6617:1 6618:2 6621:1 6622:1 6626:1 6629:1 6630:2 6633:1 6658:1 6662:1 6695:1 6747:1 6756:1 6763:1 6765:3 6771:2 6777:3 6797:9 6801:1 6807:1 6808:1 6809:1 6854:1 6869:1 6885:2 6891:1 6912:1 6917:1 6927:9 6928:1 6931:1 6949:1 6958:1 6962:1 6974:1 6980:13 6981:1 6999:2 7012:1 7023:1 7028:1 7039:1 7054:1 7055:2 7063:1 7071:2 7072:1 7090:1 7093:2 7097:3 7099:2 7103:3 7107:1 7134:1 7137:1 7143:1 7201:2 7204:1 7219:2 7224:2 7228:1 7240:1 7241:1 7249:1 7256:1 7302:2 7306:1 7352:1 7366:1 7396:1 7404:6 7405:1 7419:1 7420:1 7421:2 7422:1 7437:1 7442:1 7476:1 7480:1 7507:1 7508:1 7525:1 7529:2 7561:2 7564:3 7583:1 7593:1 7604:1 7606:5 7610:1 7624:1 7631:1 7632:3 7687:2 7692:2 7721:17 7731:3 7746:1 7747:2 7762:1 7763:1 7778:1 7810:1 7819:2 7825:1 7826:1 7834:1 7882:1 7883:4 7902:2 7935:2 7940:1 7952:4 7954:1 7970:1 7971:4 7975:2 7978:5 7986:1 7995:4 7997:2 8003:6 8004:2 8006:1 8008:1 8010:2 8016:1 8018:1 8022:1 8023:1 8029:24 8044:22 8050:1 8054:1 8055:1 8074:1 8077:1 8089:1 8097:1 8114:1 8142:1 8144:2 8167:1 8171:1 8174:1 8195:1 8212:1 8216:3 8221:3 8222:1 8256:1 8257:1 8275:1 8308:1 8329:3 8335:3 8337:1 8373:1 8377:3 8391:1 8422:2 8424:1 8432:1 8445:1 8462:1 8472:1 8481:1 8483:1 8486:2 8490:1 8513:17 8537:3 8554:1 8565:16 8570:11 8571:1 8572:3 8573:1 8574:2 8591:1 8600:1 8602:1 8603:3 8644:1 8652:1 8654:3 8678:1 8691:1 8694:1 8705:1 8708:4 8726:1 8729:1 8743:1 8747:1 8753:1 8754:17 8762:2 8777:1 8791:9 8798:3 8804:1 8819:1 8866:2 8868:2 8870:1 8875:2 8880:1 8881:1 8884:1 8885:1 8887:2 8888:1 8890:1 8891:1 8896:1 8899:1 8900:2 8915:1 8935:1 8936:1 8957:2 8958:6 8973:1 8979:3 8992:1 8993:1 9013:2 9037:1 9044:1 9045:2 9065:1 9074:2 9078:1 9080:1 9108:1 9114:3 9116:1 9137:1 9141:2 9155:1 9192:1 9193:2 9201:4 9214:1 9223:2 9232:1 9239:1 9250:2 9252:1 9258:1 9259:1 9260:2 9268:3 9273:1 9278:2 9305:1 9310:1 9312:1 9313:1 9319:1 9321:1 9327:1 9329:2 9352:1 9362:2 9367:1 9368:1 9373:1 9375:1 9406:1 9409:2 9417:1 9429:2 9431:1 9453:2 9459:1 9487:1 9494:1 9519:1 9567:2 9582:1 9601:1 9604:1 9614:2 9637:3 9660:1 9685:1 9689:1 9702:1 9713:1 9736:1 9739:1 9743:1 9746:1 9765:4 9769:1 9771:1 9788:1 9799:2 9819:1 9845:1 9858:1 9876:3 9878:1 9881:8 9884:33 9886:1 9888:5 9890:1 9896:2 9897:1 9904:3 9909:1 9914:1 9921:7 9925:1 9929:1 9937:5 9950:4 9952:1 9996:1 9997:3 10012:1 10017:2 10018:1 10024:2 10039:1 10043:1 10048:1 10052:1 10058:1 10106:1 10114:3 10116:1 10151:1 10153:1 10154:1 10156:2 10175:4 10189:1 10198:1 10215:1 10231:1 10234:2 10235:1 10251:1 10252:3 10262:1 10270:3 10274:3 10283:1 10295:1 10300:1 10303:3 10308:1 10312:1 10318:1 10328:3 10331:26 10404:4 10417:2 10435:1 10436:1 10445:1 10456:1 10467:1 10480:1 10482:2 10540:1 10547:2 10548:1 10557:1 10560:2 10570:1 10572:1 10576:2 10618:3 10624:2 10629:1 10642:1 10654:1 10671:1 10672:1 10696:1 10697:1 10707:1 10709:1 10714:2 10721:2 10725:1 10731:6 10738:1 10750:1 10772:2 10789:1 10796:1 10811:3 10816:4 10824:1 10847:1 10856:1 10858:2 10871:17 10877:2 10888:1 10891:1 10894:1 10903:1 10907:1 10920:1 10922:6 10925:1 10928:1 10940:1 10943:1 10962:1 10964:2 10977:4 10994:3 11001:1 11012:2 11021:1 11035:2 11063:1 11068:2 11071:1 11103:1 11113:1 11115:1 11120:9 11136:1 11137:1 11154:1 11155:2 11175:1 11182:1 11201:1 11203:1 11212:1 11234:1 11251:3 11261:5 11264:3 11265:1 11266:1 11280:1 11287:1 11289:4 11290:1 11295:2 11300:2 11305:1 11309:1 11318:1 11345:1 11356:1 11416:3 11421:1 11430:1 11442:1 11443:1 11444:1 11456:4 11460:1 11465:1 11472:1 11478:1 11487:1 11488:1 11499:1 11507:1 11511:1 11512:1 11536:1 11545:1 11556:1 11573:1 11581:2 11591:1 11592:1 11602:1 11614:1 11615:3 11618:2 11623:1 11625:1 11633:1 11636:1 11655:1 11656:1 11662:1 11685:1 11688:1 11691:1 11711:1 11723:1 11740:1 11760:2 11786:1 11789:2 11806:1 11807:3 11815:1 11816:1 11818:1 11846:1 11856:1 11870:1 11873:1 11874:1 11894:1 11909:1 11936:1 11941:3 11954:4 11966:2 11976:1 11978:2 11980:2 11987:1 12002:2 12029:2 12039:1 12040:4 12042:1 12045:1 12052:1 12055:2 12066:1 12067:6 12069:2 12074:3 12086:1 12089:6 12098:2 12111:1 12116:1 12119:3 12124:1 12138:1 12151:2 12158:1 12165:1 12184:3 12185:3 12210:1 12258:2 12269:1 12287:1 12290:1 12331:1 12334:1 12341:3 12349:3 12353:1 12368:1 12376:1 12386:1 12389:2 12394:1 12395:1 12409:5 12416:1 12422:1 12433:2 12468:1 12471:1 12496:1 12520:1 12522:1 12534:2 12552:2 12556:2 12566:1 12581:1 12590:1 12632:2 12639:1 12648:2 12656:9 12670:1 12674:1 12675:1 12695:2 12700:2 12713:1 12718:1 12757:1 12790:1 12798:2 12811:1 12842:2 12844:2 12848:1 12888:1 12895:1 12898:3 12908:1 12928:1 12930:2 12935:1 12972:2 12993:1 13001:1 13037:11 13046:1 13054:1 13058:1 13064:11 13088:1 13090:2 13107:1 13111:3 13121:1 13122:1 13131:1 13145:1 13148:1 13149:1 13184:1 13188:1 13204:1 13206:2 13222:5 13223:2 13225:2 13226:1 13253:1 13260:3 13265:1 13267:1 13268:2 13272:1 13279:12 13317:8 13338:1 13352:1 13392:1 13412:1 13451:1 13477:1 13482:1 13494:2 13498:3 13500:1 13520:2 13544:1 13545:1 13551:4 13563:3 13565:2 13566:1 13572:1 13573:1 13574:1 13575:2 13577:1 13598:1 13624:1 13636:1 13637:1 13645:1 13656:1 13666:3 13681:2 13690:1 13695:2 13700:1 13708:2 13714:1 13726:1 13742:1 13745:1 13748:1 13756:1 13757:1 13759:1 13778:1 13779:1 13783:2 13790:5 13797:1 13816:1 13845:1 13850:1 13860:1 13881:1 13883:5 13894:4 13930:2 13933:2 13937:1 13944:1 13950:2 13957:4 13963:1 13968:2 13975:1 14013:1 14020:4 14026:1 14036:1 14046:1 14054:2 14065:2 14083:1 14090:2 14097:1 14107:1 14108:1 14113:7 14119:1 14130:3 14136:1 14156:1 14164:2 14166:2 14175:1 14178:1 14209:3 14222:2 14244:1 14256:1 14258:2 14260:1 14261:1 14300:4 14324:4 14335:2 14377:1 14388:1 14393:3 14398:2 14402:1 14429:2 14431:1 14450:1 14451:1 14456:1 14460:1 14476:1 14507:1 14510:1 14539:1 14557:1 14571:1 14588:1 14592:9 14603:1 14651:1 14658:1 14677:1 14679:3 14686:2 14693:1 14697:1 14703:6 14704:1 14709:1 14740:2 14755:26 14757:2 14761:1 14783:1 14803:4 14804:1 14808:1 14809:1 14825:1 14870:5 14875:1 14900:2 14906:1 14908:1 14912:1 14928:1 14929:1 14976:1 14983:1 14988:1 14994:1 15035:1 15067:1 15069:1 15089:1 15103:1 15145:1 15149:1 15152:1 15164:2 15166:1 15168:1 15170:1 15175:1 15176:3 15181:1 15189:2 15199:3 15220:1 15235:3 15260:1 15280:1 15290:1 15293:1 15311:1 15313:1 15316:2 15319:1 15322:1 15326:1 15331:1 15352:1 15353:3 15354:4 15355:2 15381:1 15382:1 15385:3 15393:1 15410:2 15411:6 15414:2 15432:1 15446:1 15467:1 15480:1 15483:1 15498:1 15512:12 15537:1 15567:2 15571:1 15573:1 15581:1 15582:1 15592:4 15614:1 15627:1 15643:1 15656:4 15673:1 15698:3 15703:4 15708:1 15713:1 15726:1 15755:1 15757:1 15761:1 15762:1 15785:1 15815:2 15817:5 15820:2 15823:6 15825:1 15836:2 15845:1 15847:1 15863:1 15875:1 15886:1 15892:3 15918:18 15920:2 15929:1 15935:1 15937:1 15946:2 15950:1 15970:1 16002:7 16010:1 16045:1 16048:1 16049:1 16054:2 16061:1 16066:1 16068:1 16077:1 16078:1 16089:1 16097:1 16129:3 16137:1 16143:1 16146:1 16151:3 16163:1 16166:1 16168:1 16195:4 16221:1 16241:1 16256:1 16259:4 16260:4 16288:1 16292:2 16294:1 16297:2 16306:1 16314:1 16319:2 16330:1 16333:1 16338:1 16344:2 16346:1 16355:2 16380:1 16381:1 16385:1 16386:1 16391:2 16402:1 16411:1 16414:2 16421:3 16425:1 16428:1 16429:1 16453:2 16465:1 16482:1 16487:1 16494:1 16508:3 16520:1 16522:1 16552:8 16553:1 16575:1 16578:1 16583:3 16587:1 16601:1 16604:4 16612:3 16613:1 16651:1 16653:1 16656:1 16663:2 16678:1 16682:2 16683:2 16684:1 16688:2 16690:1 16694:1 16695:2 16701:2 16704:1 16706:1 16722:1 16753:1 16762:1 16770:2 16772:1 16774:1 16786:1 16799:1 16800:1 16812:1 16815:1 16865:5 16869:1 16874:1 16892:1 16901:1 16902:2 16903:1 16920:3 16929:1 16945:1 16990:1 16993:1 16999:1 17007:1 17035:2 17058:1 17068:1 17071:1 17080:1 17081:1 17102:1 17108:1 17121:1 17133:3 17135:3 17141:2 17145:1 17146:6 17168:1 17184:1 17190:1 17191:10 17206:1 17225:1 17229:1 17248:1 17262:1 17279:1 17284:3 17293:1 17322:1 17324:1 17334:1 17342:1 17351:1 17354:1 17357:2 17358:1 17372:1 17380:2 17396:1 17399:1 17400:1 17406:1 17409:3 17410:2 17412:3 17414:1 17419:18 17421:6 17433:6 17439:2 17444:2 17447:1 17448:1 17450:2 17455:4 17457:1 17462:1 17463:2 17488:1 17509:1 17535:1 17544:1 17583:3 17584:1 17600:1 17607:2 17612:2 17615:1 17619:1 17620:2 17624:1 17634:1 17635:1 17657:1 17673:1 17686:1 17700:2 17704:1 17706:1 17715:1 17718:4 17725:4 17730:1 17757:2 17762:3 17767:1 17771:1 17787:1 17796:1 17803:1 17814:1 17820:1 17855:1 17857:2 17860:1 17882:1 17883:1 17908:2 17924:3 17935:2 17944:5 17953:2 17957:3 17970:2 17971:1 17976:1 17978:1 17985:1 17986:3 17993:1 17997:1 18001:1 18003:1 18017:3 18020:3 18027:1 18028:1 18033:2 18037:4 18048:1 18072:2 18073:1 18078:4 18084:1 18085:1 18089:2 18094:1 18110:2 18135:1 18143:1 18166:1 18187:1 18195:1 18197:2 18199:1 18215:1 18216:1 18228:2 18238:3 18241:1 18244:1 18250:1 18257:2 18265:1 18278:1 18298:1 18308:2 18323:1 18334:1 18337:1 18346:1 18348:3 18361:2 18369:1 18383:1 18385:5 18388:1 18407:3 18429:1 18438:6 18441:1 18445:1 18447:7 18453:5 18461:1 18462:1 18464:2 18465:1 18476:1 18496:1 18497:4 18509:4 18527:1 18541:1 18573:1 18583:1 18595:1 18602:1 18606:1 18607:1 18609:1 18635:1 18647:1 18670:1 18679:2 18697:2 18712:8 18721:1 18739:1 18740:1 18749:1 18775:1 18778:1 18780:1 18781:1 18809:2 18812:6 18820:1 18834:1 18869:4 18888:26 18916:1 18932:1 18938:1 18942:2 18969:1 18975:2 18990:3 19007:1 19030:5 19032:1 19069:2 19075:1 19104:1 19153:1 19160:1 19162:26 19169:1 19183:2 19192:1 19195:1 19211:1 19214:3478 19257:1 19264:1 19268:5 19298:1 19303:1 19308:1 19316:1 19329:3 19330:1 19342:1 19345:2 19373:4 19377:1 19378:1 19396:1 19401:1 19405:1 19407:1 19426:1 19431:2 19441:5 19444:1 19447:1 19450:1 19452:5 19455:1 19457:1 19458:2 19469:2 19477:2 19485:2 19519:1 19528:1 19531:1 19534:3 19601:1 19603:1 19634:1 19642:1 19645:1 19656:1 19663:1 19665:1 19674:1 19680:1 19704:1 19710:1 19741:1 19755:3 19765:1 19809:1 19827:6 19833:1 19847:1 19851:1 19860:1 19863:8 19867:5 19869:1 19885:1 19892:1 19893:3 19913:1 19915:3 19927:1 19929:2 19946:1 19956:1 19964:1 19970:2 19971:1 19981:3 19983:1 19985:7 20013:2 20030:1 20039:1 20044:4 20062:6 20072:1 20074:1 20086:1 20093:12 20094:2 20100:1 20103:1 20113:1 20117:2 20135:1 20143:1 20146:1 20148:1 20160:24 20171:1 20181:7 20182:1 20195:1 20197:4 20205:2 20217:2 20221:1 20237:1 20250:2 20257:1 20282:2 20289:3 20303:1 20306:1 20309:6 20325:1 20330:1 20331:1 20333:1 20340:1 20346:2 20355:5 20356:2 20373:1 20393:1 20400:1 20407:2 20421:1 20422:1 20495:1 20498:1 20499:4 20504:1 20513:2 20524:2 20550:1 20554:1 20557:3 20596:1 20598:1 20603:1 20605:1 20610:3 20613:1 20620:1 20626:1 20635:1 20660:3 20711:1 20712:2 20718:1 20730:1 20732:1 20736:1 20749:1 20751:3 20757:1 20773:1 20784:11 20787:1 20799:1 20801:1 20811:1 20832:10 20858:1 20860:1 20869:1 20888:1 20898:1 20908:1 20913:1 20956:2 20960:1 20993:3 21001:1 21003:1 21004:2 21013:1 21020:1 21028:1 21036:4 21048:1 21050:3 21055:7 21071:1 21079:2 21086:2 21100:1 21109:1 21138:2 21146:4 21149:1 21152:2 21156:2 21162:1 21177:1 21183:4 21210:1 21213:1 21227:2 21232:1 21242:1 21243:1 21265:1 21272:1 21277:1 21282:1 21292:1 21301:1 21308:2 21314:1 21323:1 21328:2 21329:1 21336:2 21345:7 21348:1 21351:1 21367:11 21368:2 21400:1 21401:1 21411:1 21415:1 21422:1 21426:1 21455:1 21457:1 21465:1 21482:1 21483:1 21488:5 21491:1 21492:1 21501:2 21503:1 21523:1 21536:1 21537:2 21540:1 21542:2 21545:1 21555:1 21557:2 21563:1 21591:1 21598:1 21616:1 21624:1 21629:1 21630:2 21632:1 21633:1 21657:1 21659:1 21663:1 21672:2 21675:2 21683:1 21685:3 21704:1 21723:1 21731:4 21757:1 21759:1 21772:1 21787:1 21810:1 21811:2 21818:1 21838:1 21839:1 21866:1 21875:1 21878:1 21880:1 21891:1 21892:1 21894:2 21906:3 21913:1 21938:1 21945:1 21951:1 21955:1 21957:2 21963:1 21985:1 21991:1 21994:3 21996:1 22003:1 22008:1 22020:1 22025:1 22031:1 22043:1 22048:1 22077:1 22078:2 22082:3 22096:2 22117:2 22132:2 22133:1 22138:3 22152:2 22159:2 22170:1 22172:1 22181:2 22182:1 22189:1 22190:4 22191:2 22194:1 22204:1 22212:4 22240:1 22242:1 22293:1 22296:1 22348:2 22375:1 22381:1 22404:1 22439:1 22445:2 22462:2 22476:1 22504:7 22507:1 22515:1 22516:1 22521:1 22524:1 22527:2 22535:2 22542:1 22558:1 22569:9 22589:1 22602:1 22603:1 22606:1 22611:1 22614:1 22623:1 22644:1 22645:2 22658:1 22661:2 22666:1 22669:1 22670:4 22671:1 22685:1 22688:1 22695:1 22704:1 22710:1 22738:2 22743:1 22773:1 22777:2 22780:1 22783:2 22784:2 22794:1 22795:1 22804:4 22807:3 22812:2 22813:1 22816:1 22824:1 22848:1 22856:1 22859:3 22860:2 22864:1 22879:1 22887:1 22888:2 22899:1 22900:2 22902:1 22903:3 22905:1 22909:1 22913:2 22930:1 22934:1 22939:3 22945:2 22947:1 22951:1 22957:1 22963:2 22991:1 22993:1 23004:2 23011:1 23012:3 23013:3 23021:1 23026:1 23028:2 23032:2 23054:1 23055:1 23063:2 23064:1 23091:1 23092:1 23104:1 23106:1 23112:1 23114:3 23134:1 23153:1 23155:1 23180:1 23199:3 23211:2 23213:4 23221:6 23230:1 23246:2 23252:1 23254:2 23256:1 23259:1 23265:1 23268:1 23283:1 23294:1 23301:1 23313:1 23326:1 23332:5 23338:1 23350:1 23351:1 23352:1 23357:2 23362:1 23363:1 23397:1 23398:1 23399:1 23401:2 23405:2 23408:1 23414:1 23415:3 23422:2 23436:1 23444:1 23466:1 23483:2 23486:1 23495:2 23527:1 23557:1 23568:1 23598:1 23600:1 23607:1 23625:1 23634:2 23648:1 23649:1 23659:1 23660:1 23670:14 23672:1 23683:1 23696:1 23703:7 23708:1 23717:1 23722:2 23726:6 23730:1 23747:1 23754:3 23777:1 23778:1 23781:1 23794:3 23796:1 23802:1 23805:1 23819:1 23821:1 23853:1 23858:1 23875:2 23879:1 23881:1 23882:1 23886:1 23887:1 23889:2 23894:3 23913:1 23914:1 23920:1 23931:1 23944:2 23946:1 23951:8 23960:1 23967:4 23975:2 23977:2 24000:1 24001:1 24002:1 24010:2 24019:1 24020:1 24025:5 24026:1 24040:1 24049:1 24066:1 24081:2 24084:1 24105:1 24133:2 24155:1 24169:1 24186:1 24190:1 24202:1 24230:3 24272:9 24285:1 24291:1 24328:1 24339:1 24355:2 24361:1 24369:1 24373:1 24384:4 24388:2 24390:1 24396:1 24399:1 24417:1 24426:2 24433:2 24471:1 24478:1 24485:1 24496:2 24500:1 24510:1 24531:1 24533:1 24540:1 24573:1 24580:1 24584:1 24586:1 24588:1 24610:1 24633:1 24639:1 24663:1 24667:1 24668:1 24670:1 24679:1 24682:2 24683:1 24691:1 24699:1 24700:3 24704:1 24707:1 24710:1 24712:2 24713:1 24716:2 24720:1 24725:2 24731:1 24732:1 24734:1 24741:3 24747:1 24759:3 24772:1 24773:1 24785:2 24793:2 24803:1 24812:2 24822:5 24829:1 24832:2 24834:1 24838:3 24843:1 24846:1 24849:1 24853:1 24855:1 24859:2 24863:1 24869:1 24877:5 24888:1 24907:3 24922:1 24927:3 24929:1 24948:2 24952:3 24953:1 24972:1 24988:1 24990:1 24993:1 24998:1 25000:1 25006:2 25019:1 25020:1 25023:1 25060:1 25074:1 25085:2 25112:1 25113:1 25120:1 25122:2 25145:1 25149:1 25153:1 25154:1 25163:1 25166:4 25171:1 25176:1 25181:1 25182:1 25194:1 25202:1 25204:4 25210:1 25235:1 25237:1 25239:1 25241:1 25253:1 25258:1 25269:1 25283:1 25286:1 25289:2 25295:1 25296:1 25299:2 25305:1 25314:8 25335:3 25349:1 25350:2 25385:1 25406:1 25413:2 25414:1 25416:3 25425:1 25426:2 25440:1 25442:1 25533:3 25536:1 25537:1 25538:2 25541:1 25549:1 25553:2 25579:3 25583:1 25584:3 25590:2 25592:1 25594:1 25600:2 25612:1 25627:1 25633:1 25640:1 25660:1 25685:1 25702:1 25705:1 25706:4 25709:1 25718:1 25730:1 25734:1 25762:1 25771:1 25795:3 25798:2 25800:1 25804:3 25810:1 25820:1 25827:1 25843:3 25850:2 25863:1 25869:1 25878:1 25886:1 25887:1 25900:1 25901:1 25905:1 25909:11 25910:1 25912:1 25922:1 25929:1 25945:2 25946:1 25948:2 25957:1 25959:1 25996:1 26015:1 26026:1 26036:1 26038:2 26043:2 26045:1 26051:2 26062:5 26064:2 26065:1 26076:2 26096:1 26107:1 26128:10 26131:3 26147:2 26154:2 26156:2 26198:1 26208:5 26232:3 26240:1 26256:1 26258:1 26262:1 26282:6 26302:2 26312:7 26358:1 26413:3 26416:1 26443:2 26451:1 26466:2 26470:1 26471:3 26477:1 26497:1 26511:1 26519:1 26522:1 26535:1 26544:1 26552:2 26553:1 26563:2 26576:1 26597:1 26598:1 26605:2 26612:1 26623:1 26630:1 26639:1 26668:1 26675:1 26678:1 26679:1 26688:3 26690:1 26694:1 26706:2 26717:1 26742:2 26743:2 26745:1 26754:2 26766:1 26771:1 26775:1 26852:1 26854:1 26857:1 26864:1 26874:1 26882:3 26909:1 26921:1 26932:1 26941:1 26945:1 26946:1 26948:1 26975:3 26987:9 27000:1 27007:2 27036:1 27070:1 27074:1 27079:1 27089:1 27097:2 27151:1 27152:1 27159:2 27163:3 27174:1 27183:2 27184:7 27194:1 27195:1 27207:9 27215:2 27222:2 27228:2 27229:1 27243:1 27255:1 27282:1 27284:9 27297:1 27303:1 27309:1 27329:1 27342:1 27349:1 27366:1 27371:26 27372:2 27385:1 27400:1 27401:1 27419:1 27425:2 27458:1 27467:2 27474:1 27478:1 27482:2 27492:1 27499:1 27503:1 27505:1 27507:1 27516:1 27518:1 27540:1 27556:1 27559:1 27580:1 27586:1 27590:1 27606:1 27610:1 27634:3 27641:1 27653:5 27654:1 27681:1 27687:3 27722:1 27726:1 27750:1 27756:3 27763:1 27764:2 27774:1 27799:2 27808:2 27812:2 27820:1 27830:2 27834:1 27835:2 27836:3 27847:1 27861:5 27866:1 27872:9 27892:1 27897:2 27904:1 27905:2 27921:1 27938:1 27948:2 27950:1 27954:1 27958:3 27980:1 27997:1 28002:1 28020:1 28034:1 28035:1 28036:2 28037:1 28069:1 28071:1 28074:1 28089:1 28095:1 28098:1 28109:1 28116:1 28118:1 28127:1 28133:1 28134:1 28144:1 28146:2 28147:1 28148:1 28149:1 28157:1 28180:4 28195:9 28239:1 28240:2 28251:1 28269:1 28282:1 28283:1 28314:1 28315:1 28316:1 28323:3 28366:1 28371:1 28376:1 28377:1 28382:1 28385:1 28395:1 28418:1 28429:1 28439:2 28465:3 28468:1 28488:3 28502:1 28516:16 28518:1 28523:1 28524:1 28538:1 28541:3 28549:3 28560:2 28565:1 28566:2 28567:1 28569:1 28584:1 28587:1 28591:1 28604:1 28617:3 28631:9 28634:11 28645:1 28653:1 28660:1 28661:2 28672:2 28674:1 28678:1 28684:2 28695:1 28698:1 28720:3 28724:1 28725:2 28728:9 28738:1 28768:1 28776:1 28778:6 28811:1 28820:2 28824:2 28833:1 28835:4 28881:2 28904:1 28907:2 28911:1 28912:1 28917:1 28918:1 28920:1 28935:2 28942:1 28951:1 28957:1 28962:1 28983:1 28997:1 28998:3 29005:1 29021:1 29032:1 29033:1 29057:1 29058:2 29060:2 29062:2 29077:1 29085:1 29086:2 29091:2 29122:3 29123:1 29143:2 29172:4 29180:2 29210:3 29224:1 29226:1 29227:1 29249:2 29250:2 29251:1 29252:1 29253:1 29256:1 29272:1 29290:2 29291:1 29301:1 29307:1 29326:1 29338:1 29355:1 29357:1 29358:1 29376:1 29400:1 29414:4 29420:1 29422:4 29429:2 29439:1 29509:1 29512:1 29529:4 29543:1 29565:1 29566:1 29580:1 29591:1 29596:1 29599:1 29614:1 29624:1 29626:3 29635:1 29636:3 29640:1 29658:1 29661:1 29663:1 29670:1 29681:2 29685:3 29695:1 29704:2 29706:1 29752:2 29754:1 29760:5 29764:1 29765:1 29766:1 29768:1 29775:7 29776:1 29777:1 29781:1 29785:1 29793:2 29813:1 29820:1 29822:1 29827:1 29833:1 29841:1 29887:2
88e249234c4d6446b02790c4808cd8ca82bb967e
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH18/EX18.2/example18_2.sce
d5042b2f33541b98875a9f49372165b90fb1530e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
425
sce
example18_2.sce
clc // Given that X = -4.2e-6 // magnetic susceptibility H = 1.19e5 // magnetic field in A/m mu_ = 4 * %pi * 1e-7 // magnetic permeability of space // Sample Problem 2 on page no. 18.21 printf("\n # PROBLEM 2 # \n") printf("Standard formula used \n ") printf(" I = cai*H \n") I = X * H B = mu_ * (H + I) mur = (1 + I/H) printf("\n Magnetisation is %f A/m.\n Flux density is %f T.\n Relative permeability is %f .",I,B,mur)
a7a54770a6c1c2dd22af2127cb0ec48b02da497a
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH6/EX6.12/6_12.sce
e2c85a23322272a6a1ccaf285860c3d662ca710f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
818
sce
6_12.sce
//Chapter 6, Problem 12 clc; C1=1*10^-6; //Capacitance C2=3*10^-6; C3=5*10^-6; C4=6*10^-6; V=100; //Voltage across capacitor C=C1+C2+C3+C4; //Calculating equivalent capacitance in series Q=C*V; //Calcuating total charge Q1=C1*V; //Calculating charge on each capacitor Q2=C2*V; Q3=C3*V; Q4=C4*V; disp("(a)"); printf("Equivalent capacitance C for parallel = %f uF\n\n\n",C*10^6); disp("(b)"); printf("Total charge = %f mC\n\n",Q*1000); disp("(2)"); disp("Charge on each capacitor"); printf("Charge on capacitor1 = %f mC\n",Q1*1000); printf("Charge on capacitor2 = %f mC\n",Q2*1000); printf("Charge on capacitor3 = %f mC\n",Q3*1000); printf("Charge on capacitor4 = %f mC\n",Q4*1000);
c5c35b95920f171c20ef47c2561a888bd4e3fbf6
449d555969bfd7befe906877abab098c6e63a0e8
/2777/CH4/EX4.23/Ex4_23.sce
9157d1c87277e2ad616122554a4fd74be8d979c8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,033
sce
Ex4_23.sce
// ELECTRICAL MACHINES // R.K.Srivastava // First Impression 2011 // CENGAGE LEARNING INDIA PVT. LTD // CHAPTER : 4 : DIRECT CURRENT MACHINES // EXAMPLE : 4.23 clear ; clc ; close ; // Clear the work space and console // GIVEN DATA N1 = 600; // Speed of the DC shunt Motor in RPM Out_hp = 10; // Output of the DC shunt Motor in HP V = 220; // Motor operating Volatge in Volts Ra = 1.5; // Armature Resistance in Ohms Rf = 250; // Field Resistance in Ohms eta = 88/100; // Operating Efficiency of the Motor Rf_a = 50; // Resistance inserted to the field circuit // CALCULATIONS out = Out_hp * 746 // Output of the DC Motor in watts I = out/(V * eta); // Rated current in Amphere If1 = V/Rf; // Field current in Amphere Ia1 = I - If1; // Aramature current in Amphere E1 = V - Ra*Ia1; // Back EMF in Volts If2 = V/(Rf+Rf_a); // New Field current in Amphere after 50 Ohms Resistance inserted to the field circuit // Refer page no. 217 we have T1 = K*If1*Ia1 proportional to 1/W1^2 and T1 = K*If2*Ia2 proportional to 1/W2^2 thus T1/T2 = (If1*Ia1)/(If2*Ia2) = (W2^2)/(W1^2) = (N2^2)/(N1^2), Ia2 = (If1*Ia1*W1^2)/(If1*W1^2) = (0.88*37.65*N2^2)/(0.733*600*600) // Now New EMF E2 is E2 = V - Ia2*Ra, E1/E2 = (k*If1*N1)/(k*If2*N2), E2 = (0.733*N2)/(0.88*600) = 220 - (0.88*37.65*1.5*N2^2)/(0.733*600*600) Thus we have 0.001388*N2^2 = 220 - 1.833*10^-4*N2 N2 = poly ([-220 0.001388 1.833*10^-4],'x','coeff'); // Expression for the new speed of the motor in Quadratic form r = roots (N2); // Value of the New speed of the motor in RPM // DISPLAY RESULTS disp("EXAMPLE : 4.23 : SOLUTION :-") ; printf("\n (a) New speed of the motor, N2 = %.2f RPM nearly %.f RPM \n",r(2,1),r(2,1));
12cd464311efeb7c81f4167ab7ba1b8bce64a928
b9602336613b26d0b9c22a09d219c0ed8e158b4e
/Examples/Examples_MatFunc/determinant.sce
8d8c86f63c0da24b2aa7c4dfb6c399629bf5752e
[ "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
208
sce
determinant.sce
// Function Name: determinant // Returns the determinant of input matrix // Calculating the determinant. inputMat = [-1.2, 1, 1.9; -4, 2.6, 5; -2.3, 8, -7]; result = armaMatFunc("determinant",inputMat)
81ad0821a175611d0db5506016d609c56587d91a
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH4/EX4.9/4_9.sce
524a64a52c29ba4976428d3a17d2d6212fc2450d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
186
sce
4_9.sce
clc //initialisation of variables a= 1.360 //l^2 atm mole^-1 b= 0.0317 //l mole^-1 R= 0.08205 //J/mol K //CALCULATIONS T= 2*a/(b*R) //RESULTS printf (' Temperature= %.f K',T-6)
ae9514dc06d9a5e488e2d862061f808ce51c4a64
449d555969bfd7befe906877abab098c6e63a0e8
/1922/CH4/EX4.9/4_9.sce
7fed8f217f5df06e43b93528e2128c3f8067c6fd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
485
sce
4_9.sce
clc clear //Initialization of variables R=8.314 cp=35.58 n=100/16 T1=300 //K T2=500 //K k=1.305 P2=3 //Mpa P1=0.5 //Mpa Ts=290 //K //calculations cv=cp-R Wi=n*R*T1/(k-1) *((P2/P1)^((k-1)/k) -1) Hi=Wi Ha=n*cp*(T2-T1) eta=abs(Hi/Ha) dss1=cp*log(T2/T1) - R*log(P2/P1) Wl1=Ts*dss1 dss2=n*cp*log(T2/T1) dss3=abs(Ha/Ts) dsst=dss2+dss3 Wl2=-Ts*dss2 +Ha Wlost=Wl1+Wl2 //results printf("Thermodynamic efficiency = %.3f",eta) printf("\n Net work lost = %d kJ",Wlost)
86e74e926482ebe0e022ac2e5f5660d1ab9fce3d
449d555969bfd7befe906877abab098c6e63a0e8
/1208/CH4/EX4.9/Exa9.sce
ef1007f000602d29837e0626a01c57addf1691d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
950
sce
Exa9.sce
//Exa 9 clc; clear; close; //given data : //initial cash outflows ICO=50000;//in Rs. //cash in flows of 1st,2nd,3rd and 4th years CIF1=20000;//in Rs. CIF2=15000;//in Rs. CIF3=25000;//in Rs. CIF4=10000;//in Rs. //P.V factor at 10% rate of discount PV1=0.909; PV2=0.826; PV3=0.751; PV4=0.683; //Present value for all cash in flows P1=CIF1*PV1;// in Rs P2=CIF2*PV2;// in Rs P3=CIF3*PV3;// in Rs P4=CIF4*PV4;// in Rs //Total Present Value P=P1+P2+P3+P4;// in Rs //Net Present Value NPV=P-ICO;// in Rs disp(NPV,"Net Present Value is : ") //profitabolity index PVI=P/ICO;// unitless disp(PVI,"Profitability Index of the project as calculated is : ") disp("As Profitability Index of the project is greater than 1, the proposal can be accepted.") //Net profitability NPVI=NPV/ICO; disp(NPVI,"Net profitability of the project is : ") disp("As Net Profitability Index of the project is +ve, the proposal may be accepted.")
4a5bc5bd86b3b729ec9552e0471b8d9b4ea00c34
bacd6919260d728f4316702bbe1edf811810bede
/legacy/39.pow_frac/console/Untitled4matrix.sce
eb8497e1d8ed54b264d6772634baebae23972374
[]
no_license
vopl/sp
332d8c2ff536fc5d8772ff2f3fbeca9b50c47641
a4313f4d7af47cc3132d7546947d4d668c7e487e
refs/heads/master
2020-04-16T02:09:36.036424
2016-10-05T18:08:30
2016-10-05T18:08:30
65,293,458
0
0
null
null
null
null
UTF-8
Scilab
false
false
693
sce
Untitled4matrix.sce
stacksize('max'); w=20; h = -1; ma = read("P:\finance\spectrumSeparator\nhel.Composite\31\console\ma",h,w); mp = read("P:\finance\spectrumSeparator\nhel.Composite\31\console\mp",h,w); t = read("P:\finance\spectrumSeparator\nhel.Composite\31\console\mt",h,1); me = ma .*(cos(mp) + %i*sin(mp)); x = t; y = 1:w; y = (y-1)/w*2*%pi; clf; plot(y, real(me(1173,:)),'k'); plot(y+2*%pi, real(me(1173,:)),'k'); plot(y+4*%pi, real(me(1173,:)),'k'); //abort; //plot(t, real(me(:,2)),'k'); //plot(t, real(me(:,3)),'k'); //plot(t, real(me(:,4)),'k'); //abort e = abs(me); clf; f = gcf(); f.color_map = graycolormap(512); colorbar(min(e), max(e)); grayplot(x,y, e );
48f48d3e69efb898473c4591c0588dac7b6f03a3
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH35/EX35.13/35_13.sce
b19e5056f4cc6fcf8c2c8c5ccfec9ad40b1a4a06
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
315
sce
35_13.sce
//ques-35.13 //Calculating force constant of a Br Br bond clc w_n=323.2;//wave number (in /cm) m1=78.9183;//mass of Br(79) (in amu) m2=80.9163;//mass of Br(81) (in amu) r_m=(m1*m2)/((m1+m2)*6.023*10^23);//reduced mass k=4*(%pi*3*10^10*w_n)^2*r_m; printf("Thr required force constant is %.3f N/m.",k/1000);
1379e57ae683f66dfe2e0427cb7b610e4763e09a
449d555969bfd7befe906877abab098c6e63a0e8
/3401/CH9/EX9.4/Ex9_4.sce
edb448c6d812fd5732ae1a221fe3b30ffc843711
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
242
sce
Ex9_4.sce
clc T=300 //K k=8.617*10**-5//eV/K e=1.6*10**-19 //C esp=11.7 esp0=8.85*10^-14 phibe=0.67 //V Jst=6*10**-5 //A/cm^2 A=exp(phibe/(k*T))*(Jst/T^2) disp(A,"Richardson constant in A/K^2-cm^2 is=") //textbook ans is different
53a4ef854f313c48e27a24a8ebeff90e82d83f42
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/evstr.man.tst
e167231d0340f16e3c3ce8b3c3d04a91c7346266
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
115
tst
evstr.man.tst
clear;lines(0); a=1; b=2; Z=['a','b'] ; evstr(Z) a=1; b=2; Z =list(['%(1)','%(1)-%(2)'],['a+1','b+1']); evstr(Z)
8ed8bb2e7c1fbe48725bb88897c6b7fcf30b43fc
449d555969bfd7befe906877abab098c6e63a0e8
/3269/CH2/EX2.6/Ex2_6.sce
11eed8f7d56f3d3dc6b3cfc0feea111a46ac3bec
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex2_6.sce
// Example 2.6 clear all; clc; // Given data T12 = 64.8; // Half life = 64.8 hour lambda = 0.693/T12; // Decay constant in hour^(-1) t = 12; // Analysis time of gold sample in hours alpha = 0.9; // Activity of gold sample after analysis time // 1. // Calculation R = alpha/(1-exp(-lambda*t)); // Result printf('\n Theoretical maximum activity = %3.1f curie (Ci) \n',R); // 2. // Calculation // The expression to calculate 80 percent of maximum activity is \n 0.8R = R*(1-exp(-lambda*t)) t = -log(0.2)/lambda; // Result printf('\n Time to reach 80 percent of maximum activity = %d hours \n',t);
40a7f79a620c0a785c9934985558f7b2c7ae5205
449d555969bfd7befe906877abab098c6e63a0e8
/2006/CH5/EX5.15/ex5_15.sce
33775fa72c59e6c9d76d0e2f952a39b4d43be1fe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
758
sce
ex5_15.sce
clc; W=500; // Power output from steam turbine in MW Q=10; // Heat loss to surroundings in MW p1=12.5; // Pressure of staem at steam turbine inlet in MPa p2=10; // Pressure of staem at steam turbine outlet in kPa V1=50; // Velocity of steam at steam turbine inlet in m/s V2=100; // Velocity of steam at steam turbine outlet in m/s x2=0.85; // Quality of steam at steam turbine outlet h1=3341.8; // Specific enthalpy of staem at inlet from steam table in kJ/kg hf2=191.83; hg2=2584.7;// Specific enthalpies of fluid and steam at outlet from steam table in kJ/kg h2=(1-x2)*hf2+x2*hg2;// Specific enthalpy of staem at outlet in kJ/kg m=(W-Q)*10^3/((h1-h2)+(V1^2-V2^2)/2000); // Mass flow rate of steam disp ("kg/s",m,"Mass flow rate of steam = ");
d47506d760e08380298f6554be0cc71d3d6657db
bade93cbfc1f25160dfbe9493bfa83f853326475
/mwc/romana/relic/d/usr/bin/emacs/me.tst
3fbd5f87004f8393e3d8f8cf90bf31402e4a7763
[ "BSD-3-Clause" ]
permissive
gspu/Coherent
c8a9b956b1126ffc34df3c874554ee2eb7194299
299bea1bb52a4dcc42a06eabd5b476fce77013ef
refs/heads/master
2021-12-01T17:49:53.618512
2021-11-25T22:27:12
2021-11-25T22:27:12
214,182,273
26
6
null
null
null
null
IBM852
Scilab
false
false
35
tst
me.tst
└ello world <s└ello there 
7cd1d4ceca2b110e28b9a3cb3ab16e87ecf1b1a6
449d555969bfd7befe906877abab098c6e63a0e8
/863/CH1/EX1.6/Ex1_6.txt
ab3d6c6295cdf7b156cffbdda6589cbd59aa1b09
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
txt
Ex1_6.txt
//Caption:Calculate (a)Rise time in output waveform (b)Minimum upper cut off frequency and displayed rise time //Ex1.6 clc; clear; close; tr=10//Rise time of input waveform(in micro sec) fu=350//Upper cut off frequency(in KHz) ti=100//Input rise time(in ns) trc=0.35*(10^(-3))/350 tro=sqrt(((tr)*(10^(-6)))^2+(trc^2))*10^6 disp(tro,'(a)Rise Time(in Micro sec)=') tc=ti*(10^(-9))/3 fh=0.35*10^(-6)/tc Tro=sqrt((ti*(10^(-9)))^2+(tc^2))*10^9 disp(Tro,fh,'(b)Minimum upper cut off frequency(in Mhz) and rise time(in ns)=')
72c6fe5a248fc6835b5d3f6d07e3612feaa4b825
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH8/EX8.8/Ex8_8.sce
e9f5ec01b877ebb2a72a81a44cc4314d4fa4df39
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,190
sce
Ex8_8.sce
// Problem 8.8,Page no.212 clc;clear; close; //Outer spring n_1=10 //number of coils D_1=3 //cm //Diameter of coil d_1=3 //mm //diameter of wire dell_1=2 //cm //deflection of spring //Inner spring n_2=8 //number of coils G=80 //GPa //Modulus of rigidity //Calculation R_1=D_1*2**-1 P_1=G*10**9*dell_1*10**-2*(d_1*10**-3)**4*(64*(R_1*10**-2)**3*n_1)**-1 //Load carried outer spring for compression of 2 cm P_2=100-P_1 //N //Load carried by inner spring k_2=P_2*0.01**-1 //N/m //stiffness of inner spring //D_2=D_1*10**-2-d_1*10**-3-2*dell_1*10**-2-d_2 //Diameter of inner spring //Further simplifying above equation we get //D_2=0.023-d_2 //Now from stiffness equation of inner spring //k=G*d_2**4*(8*D_2**3*n_2)**-1 //Now substituting values and further simplifying we get //d**4=(0.023-d)**3*312500**-1 //As d is small compared with 0.023,as a first appromixation d_2_1=(0.023**3*312500**-1)**0.25 //m //Second Approximation d_2_2=((0.023-d_2_1)**3*312500**-1)**0.25 //m //Final approximation d_2_3=((0.023-d_2_2)**3*312500**-1)**0.25*100 //cm //Result printf("Stiffness of inner spring is %.2f",k_2);printf(" N/m") printf("\n Wire Diameter of inner spring is %.3f cm",d_2_3)
4492761f7fc0efbd3ecd3d6e18e15a821639ae5b
18cbceafa51692cec0d288cd11a9d4024eacd919
/02/And16S1.tst
433c261cf88d4a7a478d762a8723ec5f568b81f9
[ "MIT" ]
permissive
hw4282/nand2tetris
a4f95dba8fbe779974befa8d422be7b9be9e0f28
87a4ac19595871f3e6b695dd7371898d1ea2f896
refs/heads/master
2021-04-28T09:09:01.446446
2018-02-26T06:03:38
2018-02-26T06:03:38
122,032,122
0
0
null
null
null
null
UTF-8
Scilab
false
false
310
tst
And16S1.tst
load And16S1.hdl, output-file And16S1.out, compare-to And16S1.cmp, output-list a%B2.16.1 b%B2.1.2 out%B2.16.1; set a %B0000000000000000, set b 0, eval, output; set a %B0000000000000000, set b 1, eval, output; set a %B1111111111111111, set b 0, eval, output; set a %B1111111111111111, set b 1, eval, output;
5b21a8b51f2e3fa9bcdd8c39b92beb1e94771b56
717ddeb7e700373742c617a95e25a2376565112c
/1766/CH1/EX1.3/EX1_3.sce
db2877352fec881ccff3f9ae9e399a744aebf3d1
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
461
sce
EX1_3.sce
clc;funcprot(0);//Example 1.3 //Initilisation of Variables A=1.5;.........//Arrea of window glass in m^2 L=6*10^-3;.........//Thickness of window glass in mm t1=30;........//Outer surface temparature in degree celsius t2=20;........//Inner surface temparature in degree celsius K=0.78;........//thermal conductivity of glass in W/(m*K) //Calculations Q=(K*A*(t1-t2))/L;........//Conduction heat transfer in W disp(Q,"Conduction heat transfer in W")
87cbb7dedaad59f444e6d96d585dd75bea393947
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH6/EX6.8/6_8.sce
77de455e90494702f6b70f3a0c63e310ee2dc545
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
327
sce
6_8.sce
//Chapter 6, Problem 8 clc A=800e-4 //area of paper C=4425e-12 //capacitance in pF e0=8.85e-12 //permitivity of free space er=2.5 //dielectric d=(e0*er*A)/C //thickness of paper printf("The thickness of the paper = %.1f mm",d*10^3)
ef67faf518e51cef6fc0d33b92b7d0cf6a5346a2
449d555969bfd7befe906877abab098c6e63a0e8
/539/CH9/EX9.4.c/Example_9_4c.sce
31dce8820049dc443459f4769372eb1984123a60
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
315
sce
Example_9_4c.sce
//Determining eutectoid ferrite clear; clc; printf("\t Example 9.4\n"); C0=0.35; Ca=0.022; C_Fe3C=6.7; C_p=0.76; Wp=(C0-Ca)/(C_p-Ca); W_a=(C_p-C0)/(C_p-Ca); Wa=(C_Fe3C-C0)/(C_Fe3C-Ca); printf("\n\tPart C"); Wae=Wa-W_a; printf("\nMass fraction of eutectoid ferrite : %.3f\n",Wae); //End
6cca2c58c2044dba883c1c4194db85eab5f92a2b
449d555969bfd7befe906877abab098c6e63a0e8
/2840/CH11/EX11.7/ex11_7.sce
847615101f74db85eabb0691d9cbbcc89ee9667e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
298
sce
ex11_7.sce
clc; clear all; //let Ef-Ev=0.4eV=x and Ef1-Ev=y x=0.4;//Ef-Ev in eV k=1.38*1e-34;//boltzmann constant T=300;//tempreture in kelvin //now p=Nv*exp(-x/(k*T))=Na and p'=Nv*exp(-y/(k*T))=2Na so ratio of this 2 is 2=exp(x-y/(k*T)) y=x-k*T*log(2);//Ef1-Ev in eV disp('eV',y,'Ef1-Ev in eV is=')
7ad71e6fa7ad3708112a2b1f939698b242a720cb
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH7/EX7.18/7_18.sce
cf1b8342f97606dc80353b22ad0aab1110f94d0f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
901
sce
7_18.sce
clear; clc; close; Idss = 8*10^(-3); Vp = 4; Vdd = 20; Rd = 4*10^(3); Rs = 1.8*10^(3); Vg = 20*10^(3)*(-20)/((20+68)*10^(3)); Vgs1 = 0; Id1 = Idss; Vgs2 = Vp/2; Id2 = Idss/4; Vgs3 = Vp; Id3 = 0; x = [Vgs1 Vgs2 Vgs3]; y = [Id1 Id2 Id3]; yi=smooth([x;y],0.1); a = gca(); a.thickness = 2; a.data_bounds = [-5 0;5 8*10^(-3)]; a.y_location = 'middle'; a.x_label.text = 'Vgs'; a.y_label.text = 'Id(mA)'; a.title.text = 'Q-point for network'; a.grid = [1 1]; plot2d(yi(1,:)',yi(2,:)',[3]); Id1 = 0; Vgs1 = Vg+Id1*Rs; Vgs2 = 0; Id2 = (Vgs2-Vg)/Rs; Id3 = 4*10^(-3); Vgs3 = Vg+Id3*Rs; x = [Vgs1 Vgs2 Vgs3]; y = [Id1 Id2 Id3]; plot2d(x,y); Vgsq = 1.6; Idq = 3.1*10^(-3); Vds = -Vdd+Idq*(Rd+Rs); disp(Vgsq,'Q-point value of Vgs(found after interpolation) is :'); disp(Idq,'Q-point value of Id(found after interpolation) is :'); disp(Vds,'Vds(Volts) = ');
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
88f23f7058044555c95527ac66a098211866c075
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/auto/scicos.sci
64cd5335dc160a0805f42a98c0c4945c41b3258a
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
24,578
sci
scicos.sci
function [scs_m,newparameters,needcompile,edited]=scicos(scs_m,menus) if ~exists('MODE_X') then MODE_X = 0; end // scicos - block diagram graphic editor //%SYNTAX // scs_m=scicos(scs_m,job) //%PARAMETERS // scs_m : scilab list, scicos main data structure // scs_m(1) contains system name and other infos // scs_m(i+1) contains description of ith block diagram element // menus : vector of character strings,optional parameter giving usable menus //! // Copyright INRIA [lhs,rhs]=argn(0) //check if superblock editing mode [l,mac]=where() slevel=prod(size(find(mac=='scicos'))) super_block=slevel>1 if ~super_block then // define scicos libraries if exists('scicoslib')==0 then load('SCI/macros/scicos/lib'),end if exists('blockslib')==0 then load('SCI/macros/scicos_blocks/lib'),end end scicos_ver='scicos2.4' // set current version of scicos Main_Scicos_window=1000 //Initialisation newparameters=list() enable_undo=%f edited=%f path='./' exp_dir=PWD WIDTH_default=1000;HIGHT_default=800; if ~super_block then // global variables pal_mode=%f // Palette edition mode newblocks=[] // table of added functions in pal_mode super_path=[] // path to the currently opened superblock errcatch(-1,'continue','nomessage') load('.scicos_pal') if iserror(-1) then errclear(-1) errcatch(-1,'continue') save('.scicos_pal',scicos_pal) if iserror(-1) then errclear(-1) message('Cannot save .scicos_pal in current directory') end end end // if rhs>=1 then if type(scs_m)==10 then //diagram is given by its filename fil=scs_m alreadyran=%f [ok,scs_m,cpr,edited]=do_load(fil,'diagram') if ~ok then return,end if size(cpr)==0 then needcompile=4 state0=list() else state0=cpr(1); needcompile=0 end else //diagram is given by its data structure if ~super_block then cpr=list();needcompile=4;alreadyran=%f,state0=list() end end else xset('window',Main_Scicos_window); scs_m=empty_diagram() cpr=list();needcompile=4;alreadyran=%f;state0=list() end // if type(scs_m)<>15 then error('first argument must be a scicos list'),end //Menu definitions menu_e=['Palettes','Context','Smart Move','Move (m)','Copy (c)','Copy Region',.. 'Replace','Align','Link (l)','Delete (d)','Delete Region','Add new block',.. 'Flip (f)','Undo (u)','Pal editor'] menu_s=['Setup','Compile','Eval','Run'] menu_f=['Replot (r)','New','Region to Super Block','Purge','Rename','Save (s)','Save As',.. 'Load','Load as Palette','Save as Palette','Save as Interf. Func.',.. 'Set Diagram Info','Navigator','Export','Export All','Quit (q)'] menu_b=['Open/Set (o)','Resize','Icon','Icon Editor','Color','Label','Get Info (i)','Identification','Documentation'] menu_v=['Window','Background color','Default link colors','ID fonts','3D aspect',.. 'Add color','Focus','Shift','Zoom in','Zoom out','Help','Calc'] menus=tlist(['xxx','Diagram','Edit','Simulate','Object','Misc'],.. menu_f,menu_e,menu_s,menu_b,menu_v) //Create callbacks w='menus(''Edit'')(';rpar=')' Edit=w(ones(menu_e))+string(1:size(menu_e,'*'))+rpar(ones(menu_e)) w='menus(''Simulate'')(';rpar=')' Simulate=w(ones(menu_s))+string(1:size(menu_s,'*'))+rpar(ones(menu_s)) w='menus(''Diagram'')(';rpar=')' Diagram=w(ones(menu_f))+string(1:size(menu_f,'*'))+rpar(ones(menu_f)) w='menus(''Object'')(';rpar=')' Object=w(ones(menu_b))+string(1:size(menu_b,'*'))+rpar(ones(menu_b)) w='menus(''Misc'')(';rpar=')' Misc=w(ones(menu_v))+string(1:size(menu_v,'*'))+rpar(ones(menu_v)) //keyboard definiton %tableau=emptystr([1:100]); %tableau(-31+[100,99,109,117,102,111,115,105,114,108,113]) =.. ['Delete (d)','Copy (c)','Move (m)','Undo (u)','Flip (f)','Open/Set (o)',.. 'Save (s)','Get Info (i)','Replot (r)','Link (l)','Quit (q)']; //viewport wpar=scs_m(1) wsiz=wpar(1) options=wpar(7) if ~super_block then xset('window',Main_Scicos_window); curwin=xget('window'); palettes=list(); noldwin=0 windows=[1 curwin] pixmap=xget('pixmap')==1 // oldfont=xget('font') %rect=[]; for i=0:5 xset('font',oldfont(1),i) ktmp=xstringl(0,0,['this is a test']) %rect=[%rect;[ktmp(3) ktmp(4) ] ] end //%rect=%rect/%rect(1) xset('font',oldfont(1),oldfont(2)) // else noldwin=size(windows,1) windows=[windows;slevel curwin] palettes=palettes; end //initialize graphics xdel(curwin) xset('window',curwin); xset('default') xbasc(); if pixmap then xset('pixmap',1); end xset('pattern',1) xset('dashes',1) if ~set_cmap(options('Cmap')) then // add colors if required options('3D')(1)=%f //disable 3D block shape end if pixmap then xset('wwpc');end xbasc();xselect() dr=driver();driver('Rec'); set_background() // ration between xset and xget wdim wsiz=wpar(1) if MODE_X then //resize physical window xset("wresize",1); xset('wdim',wsiz(1),wsiz(2)) end window_set_size(wsiz) if size(wsiz,'*')<5 then wsiz(5)=wsiz(1);wsiz(6)=wsiz(2);end f_xsetech(wsiz) xset('alufunction',6) execstr('Edit_'+string(curwin)+'=Edit') execstr('Simulate_'+string(curwin)+'=Simulate') execstr('Object_'+string(curwin)+'=Object') execstr('Misc_'+string(curwin)+'=Misc') execstr('Diagram_'+string(curwin)+'=Diagram') //scs_m(1)(1)(2)=maxi(scs_m(1)(1)(2),450) //draw diagram and menus drawobjs(scs_m) if pixmap then xset('wshow'),end menu_stuff() menuss=menus; menuss(1)=menus(1)(2:$); menubar(curwin,menuss) if ~super_block then delmenu(curwin,'stop') addmenu(curwin,'stop',list(1,'haltscicos')) unsetmenu(curwin,'stop') else unsetmenu(curwin,'Simulate') end //set context (variable definition...) if size(scs_m(1))>4 then if type(scs_m(1)(5))==10 then execstr(scs_m(1)(5)) , else scs_m(1)(5)=' ' end end %pt=[];%win=0; Cmenu='Open/Set (o)' while %t // disp(Cmenu),disp(%pt) while %t do if Cmenu==[]&%pt==[] then [btn,xc,yc,win,Cmenu]=cosclick() if Cmenu<> [] then %pt=[]; break elseif btn>31 then %pt=[xc;yc];%win=win;Cmenu=%tableau(min(100,btn-31)); if Cmenu==emptystr() then Cmenu=[];%pt=[];end break end else break end end select Cmenu case 'Quit (q)' then // OK if or(winsid()==Main_Scicos_window & ~MODE_X) then wdm12=round(xget('wdim')) if maxi(abs((scs_m(1)(1)(1:2)-wdm12))./wdm12)>0.01 then scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); edited=%t end end Cmenu=[] do_exit() break case 'Palettes' then Cmenu='Open/Set (o)' [palettes,windows]=do_palettes(palettes,windows) case 'New' then Cmenu='Open/Set (o)' r=2 if edited then r=message(['Diagram has not been saved'; 'Are you sure you want to proceed'],['No';'Yes']) end if r==2 then if alreadyran then do_terminate(),end //terminate current simulation alreadyran=%f scs_m=empty_diagram() wpar=scs_m(1);wsiz=wpar(1); f_xsetech(wsiz) xbasc();drawobjs(scs_m) edited=%f end case 'Smart Move' then // Move Cmenu='Open/Set (o)' xinfo('Click object to move, drag and click (left to fix, right to cancel)') [%pt,scs_m]=do_move(%pt,scs_m) xinfo(' ') case 'Move (m)' then // Move xinfo('Click object to move, drag and click (left to fix, right to cancel)') [%pt,scs_m]=do_stupidmove(%pt,scs_m) xinfo(' ') case 'Copy (c)' then // Copy Cmenu='Open/Set (o)' xinfo('Click on the object to copy, drag, click (left to copy, right to cancel)') [%pt,scs_m,needcompile]=do_copy(%pt,scs_m,needcompile) xinfo(' ') case 'Copy Region' then // Copy Region Cmenu='Open/Set (o)' xinfo('Copy Region: Click, drag region, click (left to fix, right to cancel)') [scs_m,needcompile]=do_copy_region(scs_m,needcompile); xinfo(' ') case 'Replace' then // Replace Cmenu=[] xinfo('Click on new object , click on object to be replaced') scs_m_save=scs_m;nc_save=needcompile;enable_undo=%t [scs_m,needcompile]=do_replace(scs_m,needcompile); xinfo(' ') case 'Align' then Cmenu='Open/Set (o)' xinfo('Click on an a port , click on a port of object to be moved') scs_m_save=scs_m;nc_save=needcompile; scs_m=prt_align(scs_m) xinfo(' ') case 'Link (l)' then // Link Cmenu='Open/Set (o)' xinfo('Click link origin, drag, click left for final or intermediate points or right to cancel') [%pt,scs_m,needcompile]=getlink(%pt,scs_m,needcompile); xinfo(' ') case 'Delete (d)' then // Delete Cmenu='Open/Set (o)' xinfo('Delete: Click on the object to delete') [%pt,scs_m,needcompile]=do_delete(%pt,scs_m,needcompile) xinfo(' ') case 'Delete Region' then // Delete region Cmenu='Open/Set (o)' xinfo('Delete Region: Click, drag region and click (left to delete, right to cancel)') [scs_m,needcompile]=do_delete_region(scs_m,needcompile); xinfo(' ') %pt=[] case 'Flip (f)' then Cmenu='Open/Set (o)' xinfo('Click on block to be flipped') scs_m_save=scs_m;nc_save=needcompile; scs_m=do_tild(scs_m) xinfo(' ') %pt=[] case 'Undo (u)' then Cmenu='Open/Set (o)' %pt=[] if enable_undo then disablemenus() scs_m=scs_m_save;needcompile=nc_save wpar=scs_m(1) wdm=wpar(1) do_xsetech(wdm) drawobjs(scs_m), xset('alufunction',6); if pixmap then xset('wshow'),end enable_undo=%f enablemenus() end case 'Replot (r)' then Cmenu='Open/Set (o)' %pt=[]; disablemenus() xset('alufunction',3);xbasc();xselect();xset('alufunction',6); if ~MODE_X then wdm12=round(xget('wdim')) if maxi(abs((scs_m(1)(1)(1:2)-wdm12))./wdm12)>0.01 then scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); edited=%t end end wdm=scs_m(1)(1) f_xsetech(wdm) drawobjs(scs_m), if pixmap then xset('wshow'),end enablemenus() case 'Window' then Cmenu='Open/Set (o)' disablemenus() if ~MODE_X then wdm12=round(xget('wdim')) scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); end wpar=scs_m(1);wdx=wpar(1); wpar=do_window(wpar) edited=or(wpar<>scs_m(1)) if or(wdx<>wpar(1)) then xset('alufunction',3);xbasc();xselect();xset('alufunction',6); wd=wpar(1) window_set_size(wd) if ~MODE_X then wdm12=round(xget('wdim')) else wdm12=wd end scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); wdm=scs_m(1)(1) wdm(5:6)=(wd(1:2)./wdx(1:2)).*wdm(5:6) scs_m(1)(1)(5)=wdm(5);scs_m(1)(1)(6)=wdm(6); f_xsetech(wdm) drawobjs(scs_m), if pixmap then xset('wshow'),end end enablemenus() case 'Setup' then Cmenu='Open/Set (o)' wpar=do_setup(scs_m(1)) scs_m(1)=wpar case 'Context' then Cmenu=[] while %t do [context,ok]=do_context(scs_m(1)(5)) if ~ok then break,end ierr=execstr(context,'errcatch') if ierr==0 then scs_m(1)(5)=context; disablemenus() [scs_m,cpr,needcompile,ok]=do_eval(scs_m,cpr) if needcompile<>4&size(cpr)>0 then state0=cpr(1),end edited=%t alreadyran=%f enablemenus() break, else message(['Incorrect context definition,'; 'see message in Scilab window']) end end case 'Compile' then nc_save=4 Cmenu='Open/Set (o)' [cpr,ok]=do_compile(scs_m) if ok then newparameters=list() tcur=0 //temps courant de la simulation alreadyran=%f state0=cpr(1); needcompile=0; else needcompile=4, end case 'Run' then nc_save=4 Cmenu='Open/Set (o)' ok=%t [ok,tcur,cpr,alreadyran,needcompile,state0]=do_run(cpr) if ok then newparameters=list(),end case 'Rename' then Cmenu='Open/Set (o)' [scs_m,edited]=do_rename(scs_m) case 'Save (s)' then Cmenu='Open/Set (o)' %pt=[] if ~MODE_X then wdm12=round(xget('wdim')) scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); end ok=do_save(scs_m) if ok&~super_block then edited=%f,end case 'Save As' then if ~MODE_X then wdm12=round(xget('wdim')) scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); end disablemenus() Cmenu='Open/Set (o)' [scs_m,editedx]=do_SaveAs() if ~super_block then edited=editedx;end enablemenus() case 'FSave' then if ~MODE_X then wdm12=round(xget('wdim')) scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); end Cmenu='Open/Set (o)' ok=do_fsave(fscs_m) if ~super_block then edited=edited&~ok; end case 'Load' then Cmenu='Open/Set (o)' if edited&~super_block then r=message(['Diagram has not been saved'; 'Are you sure you want to proceed'],['No';'Yes']) if r==0 then break; else if alreadyran then do_terminate(),end //terminate current simulation alreadyran=%f end end disablemenus() [ok,scs_m,cpr,edited]=do_load() if super_block then edited=%t;end if ok then wpar=scs_m(1); options=wpar(7) if ~set_cmap(options('Cmap')) then options('3D')(1)=%f //disable 3D block shape end wdm=wpar(1) xset('alufunction',3);xbasc();xselect(); set_background() window_set_size(wdm) if size(wdm,'*')<5 then wdm(5)=wdm(1);wdm(6)=wdm(2);scs_m(1)(1)=wdm;end f_xsetech(wdm) xselect(); xset('alufunction',6) drawobjs(scs_m), execstr(scs_m(1)(5)) , if size(cpr)==0 then needcompile=4 alreadyran=%f else state0=cpr(1) needcompile=0 alreadyran=%f end end enablemenus() case 'Purge' then Cmenu='Open/Set (o)' disablemenus() scs_m=do_purge(scs_m); enablemenus() needcompile=4; edited=%t case 'Shift' then Cmenu='Open/Set (o)' xinfo('Click on the point you want to put in the middle of the window') wdm=do_view(scs_m) do_xsetech(wdm) wpar=scs_m(1) scs_m_save=scs_m,nc_save=needcompile,enable_undo=%t,edited=%t wpar(1)=wdm;scs_m(1)=wpar drawobjs(scs_m), xinfo(' ') if pixmap then xset('wshow'),end case 'Focus' then Cmenu='Open/Set (o)' xinfo('Select rectangle to focus into') wdm=do_focus(scs_m) do_xsetech(wdm) wpar=scs_m(1) scs_m_save=scs_m,nc_save=needcompile,enable_undo=%t,edited=%t wpar(1)=wdm;scs_m(1)=wpar drawobjs(scs_m), xinfo(' ') if pixmap then xset('wshow'),end case 'Zoom in' then Cmenu='Open/Set (o)' xinfo('Zoom in') wdm=do_zoomin(scs_m) do_xsetech(wdm) wpar=scs_m(1) scs_m_save=scs_m,nc_save=needcompile,enable_undo=%t,edited=%t wpar(1)=wdm;scs_m(1)=wpar drawobjs(scs_m), xinfo(' ') if pixmap then xset('wshow'),end case 'Zoom out' then Cmenu='Open/Set (o)' xinfo('Zoom out') wdm=do_zoomout(scs_m) do_xsetech(wdm) wpar=scs_m(1) scs_m_save=scs_m,nc_save=needcompile,enable_undo=%t,edited=%t wpar(1)=wdm;scs_m(1)=wpar drawobjs(scs_m), xinfo(' ') if pixmap then xset('wshow'),end case 'Calc' then Cmenu=[] xinfo('You may enter any Scilab instruction. enter return to terminate') scs_gc=save_scs_gc() disablemenus() pause //xinfo(' ') restore_scs_gc(scs_gc);scs_gc=null() enablemenus() Cmenu='Replot (r)' case 'Save as Interf. Func.' then Cmenu=[] ok=%f while ~ok then fname=xgetfile('*.sci') if fname<>emptystr() then [dir,name,ext]=splitfilepath(fname) select ext case 'sci' then ok=%t else message('Only *.sci files allowed'); ok=%f end else ok=%t end end if fname<>emptystr() then scs_m(1)(2)(1)=name [ok,wh]=getvalue(['Enter the type of Interf. Func. to create'],.. ['Block(0) or SuperBlock(1)'],list('vec','1'),.. ['1']) if ok then scs_m(1)(2)(1)=name if wh==0 then path=save_csuper(scs_m,dir) else path=save_super(scs_m,dir) end errcatch(-1,'continue') if path<>[] then getf(path),end if iserror(-1) then errclear(-1) message(name+': error. Perhaps bad name') end end end case 'Region to Super Block' then Cmenu='Open/Set (o)' xinfo(' Click, drag region and click (left to fix, right to cancel)') disablemenus() scs_m=do_region2block(scs_m) enablemenus() case 'Nyquist' then syst=analyse(scs_m) sl=bloc2ss(syst) xset('window',curwin+1);xbasc() nyquist(sl) xset('window',curwin); case 'Open/Set (o)' then xinfo('Click to open block or make a link') k=[] while %t if %pt==[] then [btn,xc,yc,win,Cmenu]=cosclick() if Cmenu<>[] then %pt=[];break elseif btn>31 then Cmenu=%tableau(min(100,btn-31));%pt=[xc;yc];%win=win if Cmenu==emptystr() then Cmenu=[];%pt=[]; end break end else xc=%pt(1);yc=%pt(2);win=%win;%pt=[] end disablemenus() if windows(find(win==windows(:,2)),1)==100000 then //click in navigator [Path,k,ok]=whereintree(Tree,xc,yc) if ok&k<>[] then Path($)=null();Path($)=null();end if ~ok then k=[],end else k=getobj(scs_m,[xc;yc]) Path=k end if k<>[] then super_path=[super_path,k] [o,modified,newparametersb,needcompileb,editedb]=clickin(scs_m(Path)) if Cmenu=='Link (l)' then %pt=[xc,yc]; enablemenus() break end // in case previous window has been destroyed if ~or(curwin==winsid()) then xset('window',curwin); xset('default') xbasc(); if pixmap then xset('pixmap',1); end xset('pattern',1) xset('dashes',1) if ~set_cmap(options('Cmap')) then // add colors if required options('3D')(1)=%f //disable 3D block shape end if pixmap then xset('wwpc');end xbasc();xselect() dr=driver();driver('Rec'); set_background() window_set_size(wsiz) if size(wsiz,'*')<5 then wsiz(5)=wsiz(1);wsiz(6)=wsiz(2);end f_xsetech(wsiz) xset('alufunction',6) drawobjs(scs_m) if pixmap then xset('wshow'),end menu_stuff() if ~super_block then delmenu(curwin,'stop') addmenu(curwin,'stop',list(1,'haltscicos')) unsetmenu(curwin,'stop') else unsetmenu(curwin,'Simulate') end // end //end of redrawing deleted parent if needcompileb==4 then kw=find(windows(:,1)==100000) if kw<>[] then xdel(windows(kw,2)) Tree=list() end end edited=edited|editedb super_path($-size(k,2)+1:$)=[] if editedb then scs_m_save=scs_m;nc_save=needcompile if ~pal_mode then needcompile=max(needcompile,needcompileb) end scs_m=update_redraw_obj(scs_m,Path,o) end //note if block parameters have been modified if modified&~pal_mode then model=o(3) newparameters=mark_newpars(k,newparametersb,newparameters) end end enablemenus() end xinfo(' ') case 'Resize' then Cmenu=[] scs_m_save=scs_m;nc_save=needcompile;enable_undo=%t xinfo('Click block to resize') scs_m=do_resize(scs_m) xinfo(' ') edited=%t case 'Icon' then Cmenu=[] xinfo('Click on block to edit its icon') scs_m_save=scs_m;nc_save=needcompile;enable_undo=%t scs_m=do_block(scs_m) xinfo(' ') edited=%t case 'Icon Editor' then Cmenu=[] scs_m_save=scs_m;nc_save=needcompile;enable_undo=%t disablemenus() scs_m=do_icon_edit(scs_m) Cmenu=[] enablemenus() xinfo(' ') edited=%t case 'Color' then xinfo('Click on object to paint') scs_m_save=scs_m;nc_save=needcompile;enable_undo=%t [%pt,scs_m]=do_color(%pt,scs_m) xinfo(' ') edited=%t case 'Label' then Cmenu=[] xinfo('Click block to label') scs_m_save=scs_m;nc_save=needcompile;enable_undo=%t [mod,scs_m]=do_label(scs_m) edited=edited|mod xinfo(' ') case 'Eval' then Cmenu='Open/Set (o)' disablemenus() [scs_m,cpr,needcompile,ok]=do_eval(scs_m,cpr) if needcompile<>4 then state0=cpr(1),end alreadyran=%f enablemenus() case 'Help' then Cmenu=[] xinfo('Click on object or menu to get help') do_help() xinfo(' ') case 'Add new block' then Cmenu='Open/Set (o)' [scs_m,fct]=do_addnew(scs_m) if fct<>[] then getf(fct), newblocks=[newblocks;fct] end case 'Pal editor' then Cmenu=[] load('.scicos_pal') scicos_palnew=do_edit_pal(scicos_pal) if scicos_palnew<>[] then scicos_pal=scicos_palnew errcatch(-1,'continue') save('.scicos_pal',scicos_pal) if iserror(-1) then errclear(-1) message('Cannot save .scicos_pal in current directory') end end case 'Load as Palette' then Cmenu=[] [palettes,windows]=do_load_as_palette(palettes,windows) case 'Save as Palette' then Cmenu=[] if ~MODE_X then wdm12=round(xget('wdim')) scs_m(1)(1)(1)=wdm12(1);scs_m(1)(1)(2)=wdm12(2); end spmode=pal_mode pal_mode=%t [scs_m,editedx]=do_SaveAs() if ~super_block then edited=editedx,end pal_mode=spmode case 'Background color' then Cmenu=[] [edited,options]=do_options(scs_m(1)(7),'Background') scs_m(1)(7)=options if edited then scs_m(1)(7)=options set_background() Cmenu='Replot (r)' end case 'Default link colors' then Cmenu=[] [edited,options]=do_options(scs_m(1)(7),'LinkColor') scs_m(1)(7)=options, if edited then Cmenu='Replot (r)',end case 'ID fonts' then Cmenu=[] [edited,options]=do_options(scs_m(1)(7),'ID') scs_m(1)(7)=options if edited then Cmenu='Replot (r)',end case '3D aspect' then Cmenu=[] [edited,options]=do_options(scs_m(1)(7),'3D') scs_m(1)(7)=options if edited then Cmenu='Replot (r)',end case 'Add color' then Cmenu=[] [edited,options]=do_options(scs_m(1)(7),'Cmap') if edited then scs_m(1)(7)=options set_cmap(options('Cmap')) set_background() Cmenu='Replot (r)' end case 'Get Info (i)' then Cmenu='Open/Set (o)' xinfo('Click on object to get information on it') %pt=do_block_info(%pt,scs_m) xinfo(' ') case 'Set Diagram Info' then Cmenu='Open/Set (o)' [ok,info]=do_set_info(scs_m(1)(10)) if ok then scs_m(1)(10)=info,end case 'Identification' then Cmenu='Open/Set (o)' xinfo('Click on an object to set or get identification') scs_m = do_ident(scs_m) xinfo(' ') case 'Documentation' then Cmenu='Open/Set (o)' xinfo('Click on a block to set or get it''s documentation') scs_m = do_doc(scs_m) xinfo(' ') case 'Navigator' then [Tree,windows]=do_navigator(scs_m,windows) Cmenu='Open/Set (o)' case 'Export' then do_export(scs_m) Cmenu='Replot (r)' case 'Export All' then lwin=xget('window') oh=%t while oh==%t oh=%f exp_dir=x_dialog('Directory where exported figures are placed',exp_dir) if size(exp_dir,'*')>1 then x_message('Try again');oh=%t;end end if exp_dir<>[] then systexport(scs_m,exp_dir), if MSDOS then fname=exp_dir+'\'+'navigator' else fname=exp_dir+'/'+'navigator' end [junk,jwin]=do_navigator(scs_m,windows) winc=jwin(find(jwin(:,1)==100000),2) xbasimp(winc,fname) if MSDOS then unix_g(''"'+SCI+'\bin\BEpsf'" -landscape '+fname+'.'+string(winc)) else unix_g(SCI+'/bin/BEpsf -landscape '+fname+'.'+string(winc)) end xdel(winc) // xset('window',lwin) wsiz=scs_m(1)(1) window_set_size(wsiz) set_background() Cmenu='Replot (r)' else Cmenu=[] end else Cmenu=[] end if pixmap then xset('wshow'),end end function menu_stuff() //unsetmenu(curwin,'File',1) //clear //unsetmenu(curwin,'File',2) //select //unsetmenu(curwin,'File',3) //print //unsetmenu(curwin,'File',4) //export //unsetmenu(curwin,'File',5) //save //unsetmenu(curwin,'File',7) //close //unsetmenu(curwin,'File',6) //load //unsetmenu(curwin,'3D Rot.') //draw diagram and menus if ~MSDOS then delmenu(curwin,'3D Rot.') delmenu(curwin,'UnZoom') delmenu(curwin,'2D Zoom') delmenu(curwin,'File') else delmenu(curwin,'3D &Rot.') delmenu(curwin,'&UnZoom') delmenu(curwin,'2D &Zoom') delmenu(curwin,'&File') end menuss=menus; menuss(1)=menus(1)(2:$); menubar(curwin,menuss) function window_set_size(wsiz) if MODE_X then WIDTH_default=3*wsiz(1);HIGHT_default=3*wsiz(2); XSHIFT_default=wsiz(1);YSHIFT_default=wsiz(2); xset("wresize",0); xset('wdim',WIDTH_default,HIGHT_default); xset('viewport',XSHIFT_default,YSHIFT_default) else xset('wdim',wsiz(1),wsiz(2)) end
11596aaef3e8f18a74e187d794245fbf308c2a88
449d555969bfd7befe906877abab098c6e63a0e8
/149/CH21/EX21.4.1/ques4_1.sce
0c0930bc3a729c184ca72ebd9545e1fa70da7c26
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
120
sce
ques4_1.sce
//ques1(ii) clc disp('To find the laplace of given function in t '); syms t s a f=t*sin(a*t); disp(laplace(f,t,s));
f5654803e0025a78b66406d92dea5cfe39f16623
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH6/EX6.5/Ex6_5.sce
538b727af01340ab3f19688428eeb784f998601e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
905
sce
Ex6_5.sce
//Initilization of variables m=80 //kg g=9.81 //m/s^2 //Co-ordinates of points in Meters A=[1,3,0] B=[3,3,-4] C=[4,3,0] D=[2,0,-1] //Calculations //Tension in DC will be a=[C(1)-D(1),C(2)-D(2),C(3)-D(3)] h=sqrt((C(1)-D(1))^2+(C(2)-D(2))^2+(C(3)-D(3))^2) c=a/h //Unit vector calculations e=[B(1)-A(1),B(2)-A(2),B(3)-A(3)] v=sqrt((B(1)-A(1))^2+(B(2)-A(2))^2+(B(3)-A(3))^2) e_ab=e/v //Position vector AD r_ad=[D(1)-A(1),D(2)-A(2),D(3)-A(3)] //Moment Calculations O=[1,0,0;1,-3,-1;0,-m*g,0] P=[0,1,0;1,-3,-1;0,-m*g,0] Q=[0,0,1;1,-3,-1;0,-m*g,0] C1=[1,0,0;1,-3,-1;2,3,1] C2=[0,1,0;1,-3,-1;2,3,1] C3=[0,0,1;1,-3,-1;2,3,1] rxF1=[det(O),det(P),det(Q)] rxF2=[(det(C1)/h),(det(C2)/h),(det(C3)/h)] //Final Moment calculations rxF=rxF1+rxF2 //Taking dot product dot1=e_ab.*rxF dot2=e_ab.*rxF2 //equating dot product to zero to obtain C C=-(dot1(1)+dot1(3))/dot2(3) //Result clc printf('The tension in CD is %f N',C)
329f6ef62271de5b13efaa780b52e902c2639bd4
449d555969bfd7befe906877abab098c6e63a0e8
/3838/CH3/EX3.25.a/EX3_25_A.sce
3d7c74d18da5f649a82610394533c8a271a3efa5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
102
sce
EX3_25_A.sce
//EXAMPLE 3.25.A clc; Syms s,t; u=laplace(1,t,s)+laplace(exp(-2*t),t,s);0 F=u*laplace(1,t,s) disp(F);
6043804856ec34f693e41856ee3b3c0577beaea2
449d555969bfd7befe906877abab098c6e63a0e8
/1394/CH17/EX17.4.1/Ex17_4_1.sce
4478f2f3ce15b068d7c461a5c492b357a8115706
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
960
sce
Ex17_4_1.sce
clc //initialization of variables //For first reaction D1 = 9.3*10^-5 // cm^2/sec D2 = 5.3*10^-5 // cm^2/sec K1exp = 1.4*10^11 // litre/mol-sec sigma12 = 2.8*10^-8 // cm N = (6.02*10^23)/10^3// liter/cc-mol K1 = 4*%pi*(D1+D2)*sigma12*N // Rate constant for first reaction in litre/mol-sec printf("The rate constant for this reaction is %.1e litre/",K1) if K1>K1exp then disp("This reaction is controlled more by chemical factors") else disp("This reaction is diffusion controlled") end //Second reaction D1 = 5.3*10^-5 // cm^2/sec D2 = 0.8*10^-5 // cm^2/sec sigma12 = 5*10^-8 // cm K1exp = 3.8*10^7 // litre/mol-sec K1 = 4*%pi*(D1+D2)*sigma12*N // Rate constant for second reaction in litre/mol-sec printf("The rate constant for this reaction is %.1e litre/mol-sec",K1) if K1>K1exp then disp("This reaction is controlled more by chemical factors") else disp("The reaction is diffusion controlled") end
750b1b9b0674ad348ed5a2c7840dab20336194ef
700114885d9b5ad6afda2952f0f0a5f94c3cc1b3
/lattice_builder.sce
75bffd7907e1ed33ac56430319302bc344a4b3c3
[]
no_license
mrclient/state_lattice_primitives
2a96622dc775f95ca87b9ba7878d5b79349cb022
dfb4243e258e5aedfd31c11341c890f6b74b9e73
refs/heads/master
2020-03-17T07:57:51.889753
2018-05-28T22:31:01
2018-05-28T22:31:01
133,419,169
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,803
sce
lattice_builder.sce
// Abbreviations used: // res = result clear ; path = get_absolute_file_path('lattice_builder.sce'); exec(path + 'utils.sci'); // INPUT DATA N = 7; step = 0.25; k = [0, -4, 4]; // to make an array of all needed angle i = 0; for x = 0:floor(N/2) for y = 0:floor(N/2) if x == 0 & y == 0 then continue; end new_angle = atan(y, x); if i==0 | find(theta_des==new_angle) == [] then i = i + 1; theta_des(:,i) = new_angle; if new_angle >= %pi/4 & new_angle < %pi/2 then i = i + 1; theta_des(:,i) = %pi - new_angle; end if new_angle <= %pi/4 & new_angle > 0 then i = i + 1; theta_des(:,i) = -new_angle; end end end end theta_des = gsort(theta_des, 'c', 'i'); theta_num = ceil(i/2); total = 1; success = 1; kolor = 1; v_file = mopen(path + "vertices.txt", "wt"); p_file = mopen(path + "points.txt", "wt"); for i = 1:theta_num theta_0 = theta_des(i + floor(theta_num/2)); for k0 = k for yf = 0:floor(N/2) for xf = 0:floor(N/2) if xf == 0 & yf == 0 then continue; end new_xy = rotate([xf*step;yf*step], -theta_0); new_xf = new_xy(1); new_yf = new_xy(2); // NoT = number of theta NoT = find(theta_des==atan(yf, xf)); NoT = NoT - floor(theta_num/2); inf = NoT; sup = NoT + theta_num - 1; if NoT == 1 then sup = sup - floor(theta_num/2); elseif NoT == theta_num inf = inf + floor(theta_num/2); end for j = inf:sup theta_f = theta_des(j); // the ban of S-shaped turns if clean([cos(theta_0), sin(theta_0)] * [-yf;xf] * [cos(theta_f), sin(theta_f)] * [-yf;xf]) > 0 then continue; end theta_f = theta_f - theta_0; for kf = k // the ban of S-shaped turns. part 2 "The curvature time" if k0*kf < 0 then continue; end total = total + 1; [a, b, c, d, sf, status] = find_curve(k0, new_xf, new_yf, theta_f, kf); // checking for results; saving; plotting if status == 1 then [x, y, theta] = poses(a, b, c, d, sf); xy = rotate([x;y], theta_0) theta = theta + theta_0; write_vertices(v_file, theta_0, k0, theta_f+theta_0, kf, xf*step, yf*step, sf, success); write_points(p_file, success, xy, theta) plot2d(xy(1,:), xy(2,:), kolor); success = success + 1; else printf("Bad status for kolor = %d\n", kolor); printf("Bad status = %d for kolor = %d\n", status, kolor); printf("theta0 = %f, k0 = %f, xf = %f, yf = %f, theta_f = %f, kf = %f\n", theta_0, k0, xf, yf, theta_f+theta_0, kf); printf("----------------\n"); end end end end end kolor = kolor + 1; if kolor == 8 then kolor = kolor + 1 end end end mclose(p_file); mclose(v_file); printf("total = %d\nsuccess = %d\npercentage = %.2f\n", total, success, 100*success/total);
5a087b1dce3d84afe2fc44ad89014bbeea0010e6
449d555969bfd7befe906877abab098c6e63a0e8
/2444/CH6/EX6.22/ex6_22.sce
f475baeb131e387528ef11619526258cd22a5f49
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
634
sce
ex6_22.sce
// Exa 6.22 clc; clear; close; format('v',6) // Given data D = 5/100;// distortion without feedback A = 1000;// open loop voltage gain Beta = 0.01;// feedback ratio Af = A/(1+(Beta*A));// unit less disp(Af,"The Amplifier voltage gain is"); f1 = 50;// in Hz fdas1 = f1/(1+(Beta*A));// in Hz disp(fdas1,"The lower cutoff frequency with feedback in Hz is"); f2 = 200;// in kHz f2 = f2 * 10^3;// in Hz fdas2 = f2*(1+(Beta*A));// in Hz fdas2 = fdas2 * 10^-6;// in MHz disp(fdas2,"The upper cutoff frequency with feedback in MHz is"); Df = (D/(1+(Beta*A)))*100;// in % disp(Df,"The distortion with feed back in % is");
080709ed87336dc1e729d982e25835edbec94394
bae725b750433ba5d58470784eeb87687023da7e
/macros/mutual.sci
1146a1fd1ea904b76443fff473ef347bb98bf6de
[ "MIT" ]
permissive
aamadou/IsItChaos
eac61da272b4fb22f83bdceaceb5774385f481e5
def74ddd5710898f876a9a7d39916e5cc1a8b6b5
refs/heads/master
2016-08-04T21:00:17.832904
2014-03-24T13:18:39
2014-03-24T13:18:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,013
sci
mutual.sci
function [Del,MutulaInf,OccupBox,ShanEnt]=mutual(orbit,NbrIti,Delai, NbrBox) // Initialisation Commandline=''; NbrComp=size(orbit,2); if ~isdef('DoEstim','local')... then DoEstim=%F, end; if isdef('NbrIti','local')... then Commandline=Commandline+' -l'+string(NbrIti), end; if isdef('NbrBox','local')... then Commandline=Commandline+' -b'+string(NbrBox), end; if isdef('Delai','local')... then Commandline=Commandline+' -D'+string(Delai), end; // Utilisation de Lyap_K from TiSeAn if isdef('orbit','local')... then mdelete('tmp') write('tmp',string(orbit)), Commandline=' tmp'+Commandline+' -c'+string(NbrComp)+' -otmpout.dat', end; mdelete('tmpout.dat') Commandline='mutual'+Commandline, // Reading the output x=host(Commandline); if x~=0... then disp('Erreur!!! Fichier ou Tisean manquant'); return; end; x=read('tmpout.dat',-1,1,'(a)'); y=x(3:$); y=evstr(y); Del=y(:,1); MutulaInf=y(:,2); OccupBox=(x(1,1)); ShanEnt=(x(2,1)); endfunction
6a290058b7eab4eb42931261b125dc56af148ee8
39b2d8e43cd968011a37950993f46e7142e7ca89
/jf647/01/Or4Way.tst
9a0b63399c033c141cd22f5b198cfa6711e6ebec
[]
no_license
gogolqx/nand2tetris-4
a2c68a25d4baf6ce2c6f3e346c2b3d8af6272d91
44301d82a272d187040f6b4340c6a9bfac316bf6
refs/heads/master
2021-01-13T06:05:41.873774
2014-05-11T14:43:04
2014-05-11T14:43:04
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
658
tst
Or4Way.tst
// This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by Nisan and Schocken, MIT Press. // File name: projects/01/Or8Way.tst load Or4Way.hdl, output-file Or4Way.out, compare-to Or4Way.cmp, output-list in%B2.4.2 out%B2.1.2; set in %B0000, eval, output; set in %B0001, eval, output; set in %B0010, eval, output; set in %B0100, eval, output; set in %B1000, eval, output; set in %B1001, eval, output; set in %B1011, eval, output; set in %B1111, eval, output; set in %B1100, eval, output; set in %B1101, eval, output; set in %B1011, eval, output; set in %B0011, eval, output; set in %B0111, eval, output;
ac6649fe7d75f02ac9018ee69651a4a082c3b04a
449d555969bfd7befe906877abab098c6e63a0e8
/3557/CH18/EX18.8/Ex18_8.sce
4d9829eec7e8611f491453cbc347648c7d57e84d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
64
sce
Ex18_8.sce
//Example 18.8// r=0.067;//nm R=0.132;//nm ra=r/R disp(ra)
6b018fd3abc606aaccde6f14ba94172886e275fa
449d555969bfd7befe906877abab098c6e63a0e8
/1592/CH3/EX3.13/example_3_13.sce
679352c9212dc6e141741577b06e2ec1a9478a64
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
872
sce
example_3_13.sce
//Scilab Code for Example 3.13 of Signals and systems by //P.Ramakrishna Rao //Complex Exponential Fourier Expansion //A=3.14 or pi clear; close; clc; T0=4; t=-5.99:0.01:6; t_temp=0.01:0.01:T0/2; s=length(t)/length(t_temp); x=[]; for i=1:s if modulo(i,2)==1 then x=[x -ones(1,length(t_temp))*%pi]; else x=[x ones(1,length(t_temp))*%pi]; end end figure(1); title('Signal'); ylabel('x(t)'); xlabel('t'); plot(t,x,'r') w0=%pi/2; for k=-10:10 cc(k+11,:)=exp(-%i*k*w0*t); ck(k+11)=x*cc(k+11,:)'/length(t); if abs(ck(k+11))<0.01 then ck(k+11)=0; else if real(ck(k+11))<0.1 then ck(k+11)=%i*imag(ck(k+11)); end end if k==0 then c0=ck(k+11); end end q=abs(ck); figure(2); title('Magnitude Spectrum'); ylabel('|cn|'); xlabel('fo'); f=-10:1:10; plot2d3(f,q)
e45243f4bf9780475e52a2a024144019684f2a8d
3a031f437fdd7426aec9731b31871506b540c723
/DCT Pract 5.sce
03de9aa7f35b8f34b4696c15057e2063fc504b5c
[]
no_license
mohammedkesury/Digital-Image-Processing
006294df3c05100912ade8f75dcadc59f518cbba
6589dcf0f400a803862fcd2194ff4b008ceb795e
refs/heads/master
2020-04-20T05:20:20.161398
2019-04-09T16:04:04
2019-04-09T16:04:04
168,653,548
0
0
null
null
null
null
UTF-8
Scilab
false
false
369
sce
DCT Pract 5.sce
clc function [m]=dct_mtx(N) for K=0:N-1 for L=0:N-1 if(K==0) m(K+1,L+1)=sqrt(1/N) else m(K+1,L+1)=sqrt(2/N)*cos((%pi*(2*L+1)*K)/(2*N)) end end end endfunction A=dct_mtx(4) disp(A,"A = ") x=input('Enter x= ') disp(x,"x= ") X=A*x*A' disp(X,"2D DCT of x= ")
63eb3347324cf3c3452354279a03069dc075eddc
69165603c344e2a16088029012ef8bfdd223e271
/new/dsp.sci
21f16918df527016a2dff00ead49bcb6183e0153
[]
no_license
Naradebla/DSP
9032c43a8321ed40fd353a5ffbfa398d84948290
6cdcdbbaac60293c07b1f9cc4dc722ff94ede830
refs/heads/master
2021-01-10T15:49:16.066081
2016-04-07T13:14:30
2016-04-07T13:14:30
55,554,894
0
0
null
null
null
null
UTF-8
Scilab
false
false
388
sci
dsp.sci
windw4 = scf(4); windw0 = scf(0); factor = 1/50 freqs = csvRead("complex.csv") freqs(:,2) = freqs(:,2) * factor filter = csvRead("lowPass.csv") filtered = csvRead("filteredFreqs.csv") filtered(:,2) = filtered(:,2) * factor plot(freqs(:,1),freqs(:,2),'r') plot2d(filter(:,1),filter(:,2)) plot(filtered(:,1),filtered(:,2),'b') scf(windw4) in = csvRead("test.csv") plot(in(:,1),in(:,2),'r')
eb0ac3731230cdaee12afd99d025bfd91a15d94b
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH20/EX20.20/20_20.sce
c441abf4dafbac0f9ded52bb7472c200bbd3aa10
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
400
sce
20_20.sce
//Problem 20.20: A transformer having a turns ratio of 4:1 supplies a load of resistance 100 ohm. Determine the equivalent input resistance of the transformer. //initializing the variables: tr = 4; // turn ratio RL = 100; // in Ohms //calculation: //the equivalent input resistance, Ri = RL*(tr^2) printf("\n\n Result \n\n") printf("\n the equivalent input resistance is %.0f ohm", Ri)
33f5c05592333a5a1c3dcf5279412d7d2a166776
449d555969bfd7befe906877abab098c6e63a0e8
/1640/CH2/EX2.2/2_2.sce
d4db58285401930981c9f9bd4f597f23abbf90d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
326
sce
2_2.sce
clc //initialisation of variables d1= 12 //in d2= 9 //in z1= 10 //ft z2= 10 //ft p1= 15 //lb/in^2 w= 62.4 //lb/ft^3 Q= 2 //cuses g= 32.2 //ft/sec^2 //CALCULATIONS v1= Q/(%pi*(d1/12)^2/4) v2= Q/(%pi*(d2/12)^2/4) p2= w*(z1-z2+(p1*144/w)+(v1^2/(2*g))-(v2^2/(2*g)))/144 //RESULTS printf ('p2 = %.3f lb/in^2 ',p2)
a2f5073b315ec426ccec60342376d0794750af4e
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH1/EX1.1/ex1_1.sce
1000def45f1189cbe46d45849ee622be7aa5d806
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
101
sce
ex1_1.sce
clc; disp("2*10^1"); disp("3.043*10^3"); disp("8.7*10^6"); disp("2.2*10^-1"); disp("3.5*10^-1");
6f06abd795e3326fea831433ad1afe6d12341083
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH11/EX11.13/example11_13.sce
ae60823fc688edbe3db8c9ed1b4a5b4ac7fc8100
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
534
sce
example11_13.sce
//Chapter 11 //Example 11_13 //Page 283 clear;clc; d_in=3; d_out=9; e1=5; e2=4; g1_max=30; g2_max=20; d1=g1_max*e1*d_in/g2_max/e2; ri=(d1-d_in)/2; ro=(d_out-d1)/2; v=g1_max/2*d_in*log(d1/d_in)+g2_max/2*d1*log(d_out/d1); printf("d1 = %.3f cm \n\n", d1); printf("Radial thickness of inner dielectric = %.3f cm \n\n", ri); printf("Radial thickness of outer dielectric = %.3f cm \n\n", ro); printf("Permissible peak voltage for the cable = %.3f kV \n", v); printf("Safe working rms voltage for the cable = %.3f kV \n\n", v/sqrt(2));
6c8b0d3b7d147fe2a8a535e6e9dd142f164cc9ef
449d555969bfd7befe906877abab098c6e63a0e8
/593/CH15/EX15.1/ex15_1.sce
df7730c86f088a9112d3d85e10a21fadf8c423f3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
274
sce
ex15_1.sce
clear; //clc(); // Example 15.1 // Page: 398 printf("Example-15.1 Page no.-398\n\n"); //***Data***// // This is a theoratical question. printf("This is a theoratical question and there are no any numerical components involve. Refer to page no 398 of the book.");
0cc7c5387ff7717995646ae8041f2688b0facf36
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/1.1/Unix/scilab-1.1/macros/percent/%lssvr.sci
caf25d70cb443964ca36f3d8cd366c39ff14407a
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference" ]
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
277
sci
%lssvr.sci
//<s>=%lssvr(s1,s2) //<s>=%lssvr(s1,s2) calcule le bouclage "feedback" du systeme lineaire //decrit par sa representation d'etat s1 par le transfert s2. //Cette macro correspond a l'operation s1/.s2 //! // origine s. steer inria 1988 [s1,s2]=sysconv(s1,s2);s=s1/.s2; //end
30b63bda5027b65d4ea96af8f658bb42bae3ca9d
449d555969bfd7befe906877abab098c6e63a0e8
/1826/CH2/EX2.35/ex2_35.sce
3dc2c5b2d8100352c1337387ea0887d781d27df2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
304
sce
ex2_35.sce
// Example 2.35, page no-51 clear clc e=1.6*10^-19//C h=6.626*10^-34 m=9.1*10^-31//kg ek=235.2*e n=1 theta=9.21 lam=h/sqrt(2*m*ek) d=n*lam/(2*sin(theta*%pi/180)) printf("\nThe deBroglie wavelength of electron is %.3f *10^-11 m\nThe interplanar spacing is %.3f *10^-10 m",lam*10^11,d*10^10)
191f1761f62c55369c0ecfdf7d4235d89e821930
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH2/EX2.1/1.sce
61423bd0e25df18d88eaa64e07759b93f911ace9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
528
sce
1.sce
clc rho_Hg=13596; //kg/m^3 g=9.806; //m/s^2 h=0.76; //m P=rho_Hg*g*h/1000; //kPa disp("(i) Pressure of 80 cm of Hg") h1=0.80; //m P1=h1/h*P; disp(P1) disp("kPa") disp("(ii) 30 cm Hg vacuum") H2=0.30; //cm Hg vacuum h2=h-H2; //cm of Hg absolute disp("Pressure due to 46 cm of Hg") P2=h2/h*P; disp(P2) disp("kPa") disp("(iii) Pressure due to 1.35 m H2O gauge") rho_H2O=1000; //kg/m^3 h3=1.35; //m P3=rho_H2O*g*h3/1000; disp(P3) disp("kPa") disp("(iv) 4.2 bar") P4=4.2*10^2; disp(P4) disp("kPa")
65d589e762cee65e3c2d3f661bc4a9906bb8864b
449d555969bfd7befe906877abab098c6e63a0e8
/3554/CH1/EX1.2/Ex1_2.sce
777c954b634a1b6446e6dcebeed8934d1b82cbe1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
342
sce
Ex1_2.sce
//Exa 1.2 clc; clear all; //Refering to table 1.1- Set of 10 measurements that were recorded in the laboratory. X={98;101;102;97;101;100;103;98;106;99}; //From table 1.1 //solution X_n= mean(X); //Average value Prec=1-abs((X(6)-X_n)/X_n);//precision of 6th reading printf('The precision of 6th measurement = %0.3f \n',Prec);
e6116bb1e4a75c2a0e7d8fbf3d725f4217b57285
39c5c468df5e2bde0147a30cf092fc8da3e7ed3e
/UFRGS/calcNumerico/area2/m9/simpson.sce
88da7f829b7754684ec8c9386c0feea7aa8ed56e
[]
no_license
andredxc/Files
9dffc9fe5f7e923b83035d794dfa15c930cdb898
e32309b9ab548b829b04be66c2776cf9c9c6656e
refs/heads/master
2021-06-03T10:44:01.606242
2020-09-21T15:39:48
2020-09-21T15:39:48
107,410,076
0
0
null
null
null
null
UTF-8
Scilab
false
false
572
sce
simpson.sce
/* Simpson M9 n -> numero de intervalos h -> comprimento do intervalo a -> intervalo inferior b -> intervalo superior Erro na ordem O(n^4) ou O(h^4) com n sendo multiplicado e h sendo dividido */ clear function y = f1(x) y = cos(x + 1/12) endfunction a = 0 b = 1 n = 3 h = (b - a)/n //h = 0.5 //n = (b - a)/h f = f1 x = linspace(a, b, n+1) S = 0 for i = 1:n x1 = x(i) x2 = x1 + h/2 x3 = x(i+1) A1 = 1/6 A2 = 4/6 A3 = 1/6 dS = (A1*f(x1) + A2*f(x2) + A3*f(x3))*h S = S + dS end disp(S)
3a8e4d506c492633129e1a0e03cbe55ad291c429
46188702162463e2ee0d76037c532bbcba6c4f34
/deme.tst
587e938043a59d17872fc597ad706de930feb482
[]
no_license
suchoudh/Routine
afc70e666fe12d067b160c40cf68a332c33591e6
12812c5ede29b825851a7ec02a46ce3caba6719c
refs/heads/master
2023-01-03T08:29:25.494936
2020-10-31T07:46:13
2020-10-31T07:46:13
280,136,869
0
0
null
null
null
null
UTF-8
Scilab
false
false
419
tst
deme.tst
---Lunch@2pm------- 0 13_20200324-16_11_29 1 13_20200325-12_05_13 2 # this was a bad idea .. 13_20200326-08_59_32 2 13_20200327-20_56_43 2 13_20200328-21_08_29 2 14_20200404-21_08_55 -2 15_20200407-18_40_57 1 16_20200414-16_50_19 1 16_20200415-18_39_27 -2 16_20200416-21_45_41 2 17_20200419-07_59_59 1 17_20200421-21_17_24 1 17_20200422-11_38_44 -2 17_20200423-00_41_53 0 17_20200424-12_58_44 -2 17_20200424-13_06_28
a344975e1b03602d656a447a1b83b32c8e2b4289
45a93944a52f35e5601f5eebc0ff0e0c885849fd
/scripts/centrerReduireExpo.sci
0b37050d42712b637c1d2166f1b4e20d443f5f09
[]
no_license
madox35/Simulations-numeriques
ae32655f213f5a1dc04de86387652264a5b56aa0
11d59864210370b2524ad533bf864d0968053131
refs/heads/master
2020-03-17T13:32:10.082544
2018-05-21T21:14:09
2018-05-21T21:14:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
231
sci
centrerReduireExpo.sci
function [Y] = centrerReduireExpo(lambda, N) esperance = 1/lambda; var = 1/(lambda^2); for i=1:N Xi= genererRandExpo(lambda, i); Y(i)= (sum(Xi)-i*esperance)/(sqrt(i)*sqrt(var)); end endfunction
87632fc898ccc07c5a1efcdd868b18084188eca0
449d555969bfd7befe906877abab098c6e63a0e8
/3311/CH9/EX9.17/Ex9_17.sce
991b6b79829fe3d16375fb0f2335638b92371555
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
818
sce
Ex9_17.sce
// chapter 9 // example 9.17 // Determine dc voltage, rms line and phase voltages and Device voltage ratings // page-591 clear; clc; // given E1_line=415; // fundamental line voltage // calculate // since E1_line=(sqrt(2)/%pi)*Edc*1.5, therefore we get Edc=E1_line*(%pi/(sqrt(2)*1.5)); // calculation of dc voltage E_rms_line=Edc/sqrt(2); // calculation of rms line voltage E_rms_phase=E_rms_line/sqrt(3); // calculation of rms phase voltage V_CEO=1.5*Edc; // calculation of Device voltage ratings printf("\nThe dc voltage is \t\t Edc=%.f V", Edc); printf("\nThe rms line voltage is \t E_rms_line=%.2f V",E_rms_line); printf("\nThe rms phase voltage is \t E_rms_phase=%.2f V",E_rms_phase); printf("\nThe Device voltage ratings is \t V_CEO=%.1f V",V_CEO); // Note: The answer varies slightly due to precise calculations
3aaec5653203f482c4c2466e80291d85e4cd2e10
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/CS3EI.prev.tst
f983139f76c9d6fc218fe7d0a633e6a32878fc31
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
13,098
tst
CS3EI.prev.tst
CandidateSelector preserve width=4 base=5 exponent=3 left=4 right=0 fileName=data/prewrob3.sub.man multiply 256 tuples with [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-5,-4,-3,6] [-23,-16,-41,44] [-107,-64,-405,408] [-467,-256,-3629,3632] [-1955,-1024,-30813,30816] [-8003,-4096,-254141,254144] [-32387,-16384,-2064765,2064768] [-130307,-65536,-16646909,16646912] [-522755,-262144,-133694973,133694976] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-4,-3,-5,6] [-19,-12,-53,54] [-85,-48,-491,492] [-361,-192,-4247,4248] [-1489,-768,-35375,35376] [-6049,-3072,-288863,288864] [-24385,-12288,-2334911,2334912] [-97921,-49152,-18776447,18776448] [-392449,-196608,-150602495,150602496] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-8,-1,9,-6] [-17,-4,25,-22] [-47,-16,111,-108] [-155,-64,667,-664] [-563,-256,4659,-4656] [-2147,-1024,34915,-34912] [-8387,-4096,270531,-270528] [-33155,-16384,2130307,-2130304] [-131843,-65536,16909059,-16909056] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-8,-6,-1,9] [-32,-24,-40,48] [-152,-96,-424,432] [-680,-384,-3928,3936] [-2888,-1536,-33976,33984] [-11912,-6144,-283000,283008] [-48392,-24576,-2310904,2310912] [-195080,-98304,-18679288,18679296] [-783368,-393216,-150211576,150211584] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [16,2,-15,-9] [16,8,-8,-16] [40,32,24,-48] [184,128,328,-352] [856,512,3240,-3264] [3736,2048,29032,-29056] [15640,8192,246504,-246528] [64024,32768,2033128,-2033152] [259096,131072,16518120,-16518144] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-10,-3,19,-18] [-31,-12,103,-102] [-109,-48,685,-684] [-409,-192,5017,-5016] [-1585,-768,38449,-38448] [-6241,-3072,301153,-301152] [-24769,-12288,2384065,-2384064] [-98689,-49152,18973057,-18973056] [-393985,-196608,151388929,-151388928] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-17,-4,25,-22] [-47,-16,111,-108] [-155,-64,667,-664] [-563,-256,4659,-4656] [-2147,-1024,34915,-34912] [-8387,-4096,270531,-270528] [-33155,-16384,2130307,-2130304] [-131843,-65536,16909059,-16909056] [-525827,-262144,134743555,-134743552] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [40,12,-31,-33] [64,48,8,-72] [256,192,320,-384] [1216,768,3392,-3456] [5440,3072,31424,-31488] [23104,12288,271808,-271872] [95296,49152,2264000,-2264064] [387136,196608,18487232,-18487296] [1560640,786432,149434304,-149434368] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-40,-2,41,-17] [-64,-8,72,-48] [-136,-32,200,-176] [-376,-128,888,-864] [-1240,-512,5336,-5312] [-4504,-2048,37272,-37248] [-17176,-8192,279320,-279296] [-67096,-32768,2164248,-2164224] [-265240,-131072,17042456,-17042432] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-32,-6,41,-33] [-80,-24,152,-144] [-248,-96,824,-816] [-872,-384,5480,-5472] [-3272,-1536,40136,-40128] [-12680,-6144,307592,-307584] [-49928,-24576,2409224,-2409216] [-198152,-98304,19072520,-19072512] [-789512,-393216,151784456,-151784448] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-23,-16,-41,44] [-107,-64,-405,408] [-467,-256,-3629,3632] [-1955,-1024,-30813,30816] [-8003,-4096,-254141,254144] [-32387,-16384,-2064765,2064768] [-130307,-65536,-16646909,16646912] [-522755,-262144,-133694973,133694976] [-2094083,-1048576,-1071647741,1071647744] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [51,12,-43,-38] [69,48,-5,-76] [249,192,263,-344] [1185,768,2911,-2992] [5361,3072,27407,-27488] [22929,12288,239215,-239296] [94929,49152,2002223,-2002304] [386385,196608,16390831,-16390912] [1559121,786432,132658607,-132658688] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-19,-12,-53,54] [-85,-48,-491,492] [-361,-192,-4247,4248] [-1489,-768,-35375,35376] [-6049,-3072,-288863,288864] [-24385,-12288,-2334911,2334912] [-97921,-49152,-18776447,18776448] [-392449,-196608,-150602495,150602496] [-1571329,-786432,-1206388223,1206388224] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [60,3,-59,-22] [51,12,-43,-38] [69,48,-5,-76] [249,192,263,-344] [1185,768,2911,-2992] [5361,3072,27407,-27488] [22929,12288,239215,-239296] [94929,49152,2002223,-2002304] [386385,196608,16390831,-16390912] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-69,-48,5,76] [-249,-192,-263,344] [-1185,-768,-2911,2992] [-5361,-3072,-27407,27488] [-22929,-12288,-239215,239296] [-94929,-49152,-2002223,2002304] [-386385,-196608,-16390831,16390912] [-1559121,-786432,-132658607,132658688] [-6263889,-3145728,-1067477935,1067478016] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [80,15,-71,-54] [95,60,-23,-102] [305,240,271,-396] [1445,960,3163,-3288] [6605,3840,30259,-30384] [28445,15360,266467,-266592] [118205,61440,2241091,-2241216] [482045,245760,18392323,-18392448] [1947005,983040,149047939,-149048064] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-64,-50,-61,85] [-304,-200,-696,720] [-1384,-800,-6616,6640] [-5944,-3200,-58056,58080] [-24664,-12800,-487336,487360] [-100504,-51200,-3995496,3995520] [-405784,-204800,-32362216,32362240] [-1630744,-819200,-260513256,260513280] [-6538264,-3276800,-2090613736,2090613760] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-38,-25,-87,90] [-173,-100,-827,830] [-743,-400,-7257,7260] [-3083,-1600,-60917,60920] [-12563,-6400,-499437,499440] [-50723,-25600,-4045277,4045280] [-203843,-102400,-32564157,32564160] [-817283,-409600,-261326717,261326720] [-3272963,-1638400,-2093879037,2093879040] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-95,-60,23,102] [-305,-240,-271,396] [-1445,-960,-3163,3288] [-6605,-3840,-30259,30384] [-28445,-15360,-266467,266592] [-118205,-61440,-2241091,2241216] [-482045,-245760,-18392323,18392448] [-1947005,-983040,-149047939,149048064] [-7826045,-3932160,-1200133507,1200133632] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-31,-12,103,-102] [-109,-48,685,-684] [-409,-192,5017,-5016] [-1585,-768,38449,-38448] [-6241,-3072,301153,-301152] [-24769,-12288,2384065,-2384064] [-98689,-49152,18973057,-18973056] [-393985,-196608,151388929,-151388928] [-1574401,-786432,1209533953,-1209533952] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-96,-75,-29,110] [-411,-300,-589,670] [-1941,-1200,-6059,6140] [-8601,-4800,-55399,55480] [-36321,-19200,-475679,475760] [-149361,-76800,-3946639,3946720] [-605841,-307200,-32162159,32162240] [-2440401,-1228800,-259703599,259703680] [-9795921,-4915200,-2087356079,2087356160] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-47,-16,111,-108] [-155,-64,667,-664] [-563,-256,4659,-4656] [-2147,-1024,34915,-34912] [-8387,-4096,270531,-270528] [-33155,-16384,2130307,-2130304] [-131843,-65536,16909059,-16909056] [-525827,-262144,134743555,-134743552] [-2100227,-1048576,1075842051,-1075842048] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-114,-3,115,-34] [-159,-12,167,-86] [-285,-48,349,-268] [-681,-192,1193,-1112] [-2049,-768,6145,-6064] [-7089,-3072,39857,-39776] [-26385,-12288,288529,-288448] [-101841,-49152,2198993,-2198912] [-400209,-196608,17177425,-17177344] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-136,-12,145,-81] [-256,-48,328,-264] [-640,-192,1216,-1152] [-1984,-768,6592,-6528] [-6976,-3072,43840,-43776] [-26176,-12288,321088,-321024] [-101440,-49152,2460736,-2460672] [-399424,-196608,19273792,-19273728] [-1585216,-786432,152580160,-152580096] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [152,4,-151,-41] [128,16,-120,-72] [128,64,-64,-128] [320,256,192,-384] [1472,1024,2624,-2816] [6848,4096,25920,-26112] [29888,16384,232256,-232448] [125120,65536,1972032,-1972224] [512192,262144,16265024,-16265216] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-152,-100,27,165] [-512,-400,-488,680] [-2432,-1600,-5568,5760] [-11072,-6400,-52928,53120] [-47552,-25600,-464448,464640] [-197312,-102400,-3898688,3898880] [-804032,-409600,-31963968,31964160] [-3246272,-1638400,-258897728,258897920] [-13045952,-6553600,-2084106048,2084106240] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-159,-12,167,-86] [-285,-48,349,-268] [-681,-192,1193,-1112] [-2049,-768,6145,-6064] [-7089,-3072,39857,-39776] [-26385,-12288,288529,-288448] [-101841,-49152,2198993,-2198912] [-400209,-196608,17177425,-17177344] [-1586769,-786432,135804497,-135804416] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-136,-108,-107,171] [-640,-432,-1304,1368] [-2944,-1728,-12608,12672] [-12736,-6912,-111680,111744] [-53056,-27648,-942272,942336] [-216640,-110592,-7745984,7746048] [-875584,-442368,-62825408,62825472] [-3520576,-1769472,-506087360,506087424] [-14118976,-7077888,-4062744512,4062744576] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-80,-54,-163,171] [-368,-216,-1576,1584] [-1592,-864,-13960,13968] [-6632,-3456,-117784,117792] [-27080,-13824,-968248,968256] [-109448,-55296,-7853176,7853184] [-440072,-221184,-63260920,63260928] [-1764872,-884736,-507843064,507843072] [-7068680,-3538944,-4069794808,4069794816] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-68,-25,193,-190] [-233,-100,1233,-1230] [-863,-400,8863,-8860] [-3323,-1600,67323,-67320] [-13043,-6400,525043,-525040] [-51683,-25600,4147683,-4147680] [-205763,-102400,32973763,-32973760] [-821123,-409600,262965123,-262965120] [-3280643,-1638400,2100432643,-2100432640] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-46,-27,-197,198] [-199,-108,-1745,1746] [-829,-432,-14723,14724] [-3385,-1728,-121031,121032] [-13681,-6912,-981647,981648] [-55009,-27648,-7907615,7907616] [-220609,-110592,-63480383,63480384] [-883585,-442368,-508724351,508724352] [-3536641,-1769472,-4073326847,4073326848] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-170,-135,-73,198] [-755,-540,-1189,1314] [-3545,-2160,-12007,12132] [-15605,-8640,-108811,108936] [-65645,-34560,-929683,929808] [-269405,-138240,-7693219,7693344] [-1091645,-552960,-62609347,62609472] [-4395005,-2211840,-505212931,505213056] [-17637245,-8847360,-4059226243,4059226368] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [217,84,-145,-198] [427,336,149,-492] [1855,1344,2753,-3096] [8743,5376,28121,-28464] [38647,21504,256265,-256608] [162967,86016,2196329,-2196672] [669655,344064,18204713,-18205056] [2715223,1376256,148279721,-148280064] [10935127,5505024,1197024425,-1197024768] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-136,-98,-207,231] [-640,-392,-2104,2128] [-2824,-1568,-19128,19152] [-11896,-6272,-163720,163744] [-48856,-25088,-1356072,1356096] [-198040,-100352,-11041384,11041408] [-797464,-401408,-89117928,89117952] [-3200536,-1605632,-716122600,716122624] [-12823576,-6422528,-5741761512,5741761536] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [235,80,-171,-204] [415,320,97,-472] [1735,1280,2361,-2736] [8215,5120,24553,-24928] [36535,20480,225609,-225984] [154615,81920,1942537,-1942912] [636535,327680,16140681,-16141056] [2583415,1310720,131634313,-131634688] [10409335,5242880,1063332489,-1063332864] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-186,-147,-157,238] [-879,-588,-1865,1946] [-4029,-2352,-17923,18004] [-17385,-9408,-158231,158312] [-72321,-37632,-1332607,1332688] [-295089,-150528,-10944335,10944416] [-1192209,-602112,-88723183,88723264] [-4792785,-2408448,-714530351,714530432] [-19219281,-9633792,-5735365807,5735365888] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [238,21,-229,-114] [217,84,-145,-198] [427,336,149,-492] [1855,1344,2753,-3096] [8743,5376,28121,-28464] [38647,21504,256265,-256608] [162967,86016,2196329,-2196672] [669655,344064,18204713,-18205056] [2715223,1376256,148279721,-148280064] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-230,-15,239,-114] [-395,-60,467,-342] [-905,-240,1481,-1356] [-2645,-960,7253,-7128] [-9005,-3840,45869,-45744] [-33245,-15360,328157,-328032] [-127805,-61440,2487101,-2486976] [-501245,-245760,19375613,-19375488] [-1985405,-983040,152980349,-152980224] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-248,-4,249,-57] [-320,-16,328,-136] [-512,-64,576,-384] [-1088,-256,1600,-1408] [-3008,-1024,7104,-6912] [-9920,-4096,42688,-42496] [-36032,-16384,298176,-297984] [-137408,-65536,2234560,-2234368] [-536768,-262144,17313984,-17313792] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [265,20,-257,-118] [235,80,-171,-204] [415,320,97,-472] [1735,1280,2361,-2736] [8215,5120,24553,-24928] [36535,20480,225609,-225984] [154615,81920,1942537,-1942912] [636535,327680,16140681,-16141056] [2583415,1310720,131634313,-131634688] chain8 [[2,4,1,1],[0,4,0,0],[6,-4,7,-1],[-6,4,-6,2]] det=64 [-80,-49,-263,266] [-353,-196,-2391,2394] [-1487,-784,-20465,20468] [-6107,-3136,-169509,169512] [-24755,-12544,-1380173,1380176] [-99683,-50176,-11139741,11139744] [-400067,-200704,-89515325,89515328] [-1602947,-802816,-717720189,717720192] [-6417155,-3211264,-5748167933,5748167936]
2fd8bbdb07ad925aeaca8e2ce5f5d4dc888d7e6b
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH13/EX13.5/example13_5.sce
5613c1e963a513a49e09d20de9bdc4e0c6a65699
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
481
sce
example13_5.sce
//Chapter 13 //Example 13_5 //Page 317 clear;clc; l=200; i=2; r_km=0.3; x=150; r=2*r_km/1000; vd=i*r*(l*x-x^2/2); I=i*l; R=r*l; tvd=1/2*I*R; printf("Resistance of distributor per metre run = %.4f ohm \n\n", r); printf("(i) Voltage drop upto %d m from feeding point = %.1f V \n\n", x, vd); printf("(ii) Total current entering distributor = %d A \n\n", I); printf(" Total resistance of distributor = %.2f ohm \n\n", R); printf(" Maximum voltage drop = %d V \n\n", tvd);
be32686580bd13c2e3e608d27a74159758178f77
843ddfc1f1137ace0ddbffdc051fb2b2a3e2ba6b
/P5/P501.sce
c9e8bd4c3de8f0ebe62d131d5a0ae7514e5724ca
[]
no_license
aguadix/SIMCON
8169169577fc5e69257f6dc91558b7b320974161
5f83003937740a730c4593c241309c9da7693ddf
refs/heads/master
2022-10-27T00:34:29.074871
2022-10-24T11:24:08
2022-10-24T11:24:08
53,549,792
0
0
null
null
null
null
UTF-8
Scilab
false
false
981
sce
P501.sce
clear; clc; // P501.sce s = syslin('c',%s,1); // Proceso de primer orden Kp = 2; Tp = 5; Gp = Kp/(Tp*s+1) // Válvula ideal Kv = 1; Gv = Kv // Medida ideal Gm = 1 // Lugar de las raíces Grl = Gv*Gp*Gm inicio = roots(Grl.den) fin = roots(Grl.num) Kcmax = 100; scf(1); clf(1); evans(Grl,Kcmax); xtitle('Lugar de las raíces','',''); a1 = gca(); a1.x_location = 'origin'; a1.y_location = 'origin'; db = 1; a1.data_bounds = [-db,-db;db,db]; a1.isoview = 'on'; a1.box = 'off'; a1.children.children(1).foreground = 2; a1.children.children(1).thickness = 3; // Controlador Kc = 1; P = Kc; I = 0; D = 0; // P Gc = P + I/s + D*s // Servomecanismo Gcl = Gc*Gv*Gp/(1+Gm*Gc*Gv*Gp) // Servomecanismo polos = roots(Gcl.den) plot(real(polos),imag(polos),'ko'); // Respuesta temporal a escalón dt = 0.01; tfin = 20; t = 0:dt:tfin; u = 'step'; y = csim(u,t,Gcl); e = 1 - y; offset = e($) scf(2); clf(2); plot(t,y); xgrid; xtitle('Respuesta temporal a escalón', 't', 'y');
345e30dd9f8d467a30cc4dd75874344d7be99dc4
449d555969bfd7befe906877abab098c6e63a0e8
/905/CH8/EX8.4/8_4.sce
5bb40e52a103a8038e9a02d47901aaf5d8c03a48
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,299
sce
8_4.sce
clear; clc; // Illustration 8.4 // Page: 484 printf('Illustration 8.4 - Page: 484\n\n'); // Solution // a - water vapor b - air //*****Data***** T_G1 = 356; // [K] P_total = 101.325; // [kPa] Y_1 = .03; // [kg water/kg dry air] //*****// C_pa = 1.884; // [kJ/kg.K] C_pb = 1.005; // [kJ/kg.K] C_s1 = C_pb + Y_1*C_pa;// [kJ/kg.K] T_1 = 373.15; // [K] T_c = 647.1; // [K] M_a = 18.02; // [gram/mole] M_b = 28.97; // [gram/mole] lambda_1 = 2256; // [Latent Heat of Vaporizarion at T_1, kJ/kg] // Using equation 8.10 // T_as = T_G1- (Y_as - Y_l)*lambda_as/C_s1 // where lambda_2 = lambda_1*((1-T_as/T_c)/(1-T_1/T_c))^.38 // Y_as = P_a/(P_total-P_a)*M_a/M_b // and P_a = exp(16.3872-(3885.7/(T_as-42.98))) - Antoine equation for component 'a' deff('[y] = f12(T_as)',' y = T_as - T_G1 + ((exp(16.3872 - (3885.7/(T_as - 42.98)))/(P_total - (exp(16.3872 - (3885.7/(T_as - 42.98))))))*(M_a/M_b) - Y_1)*(lambda_1*((1-T_as/T_c)/(1-T_1/T_c))^.38/C_s1)'); T_as = fsolve(310,f12); // [K] printf("Adiabatic Saturation Temperature is %f K\n",T_as); // Now using equation 8.2 P_a = exp(16.3872-(3885.7/(T_as-42.98))); // [kPa] Y_as = P_a/(P_total-P_a)*M_a/M_b; // [kg water/kg dry air] printf("Absolute humidity is %f kg water/kg dry air\n",Y_as);
e0d8ad0709759fabcb242a3ed4e8c0c6385faffa
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH9/EX9.11/Ex9_11.sce
aa722b4fd748528640acb85f2c1c2d67b739d080
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
516
sce
Ex9_11.sce
//Example 9_11 clc(); clear; //To find out what horsepower is required p=1.29 //Units in Kg/Meter^3 Cd=0.45 af=2 //Units in Meter^2 v=20 //Units in meters/sec M=1000 //units in Kg F=(0.5*p*Cd*af*v^2)+((M/1000)*((110+(1.1*v)))) //Units in Newtons Power=F*v //Units in Watts Power=Power/747.3061 //units in Horse Power reqHPower=Power^2 //unis in Horse power printf("The required power is=%d hp",reqHPower) //In text book the answer is printed wrong as 80 Hp the correct answer is 95Hp
1b96f705e90d14c71a824a921d15b8b0d8dc8544
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.9_7.tst
77b15b110ce7426c6f0c04db29bc93dee6f5013a
[]
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
43,739
tst
bow.9_7.tst
9 4:0.1111111111111111 13:0.6666666666666666 18:0.16666666666666666 28:1.0 30:1.0 44:2.0 48:0.0625 51:0.3333333333333333 65:0.2857142857142857 68:1.0 89:0.5 106:0.5 120:2.0 164:0.08333333333333333 217:1.0 270:0.6666666666666666 273:0.5 335:0.3333333333333333 362:0.3333333333333333 520:1.0 612:2.0 644:2.0 759:0.5 777:1.0 795:1.0 832:0.5 842:1.0 895:1.0 945:1.0 1069:0.09090909090909091 1117:1.0 1145:1.0 1558:1.0 1611:1.0 1622:0.5 1827:1.0 1995:1.0 2081:0.5 2181:1.0 2316:1.0 2321:0.06666666666666667 2452:1.0 2454:2.0 2493:1.0 3113:1.0 3163:1.0 3527:2.0 3602:1.0 3649:1.0 3746:1.0 3862:1.0 3927:1.0 3957:1.0 3991:1.0 4064:1.0 4092:1.0 4777:1.0 4836:1.0 5824:1.0 6526:1.0 6661:1.0 9 3:1.0 4:0.2222222222222222 8:1.0 13:0.6666666666666666 18:0.16666666666666666 21:1.0 22:0.75 28:1.0 44:1.0 46:0.043478260869565216 49:0.16666666666666666 65:0.2857142857142857 83:0.3333333333333333 89:0.5 92:0.5 114:0.2 131:1.0 164:0.08333333333333333 175:0.5 177:0.5 178:1.0 198:1.0 206:0.5 207:1.0 208:0.5 249:0.75 270:0.3333333333333333 284:1.0 296:0.0625 430:1.0 492:1.0 514:0.3333333333333333 560:1.0 639:2.0 644:2.0 788:1.0 796:1.0 936:1.0 944:0.3333333333333333 974:1.0 1058:0.25 1395:1.0 1490:1.0 1804:1.0 2017:1.0 2235:1.0 2528:1.0 2568:1.0 2934:1.0 2991:1.0 3063:1.0 3519:1.0 3639:1.0 3749:1.0 3806:1.0 3864:1.0 4024:1.0 4385:1.0 4539:0.5 5105:1.0 5209:1.0 5349:1.0 6306:1.0 6480:1.0 9 3:1.0 4:0.7777777777777778 8:1.0 15:0.3333333333333333 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 44:1.0 46:0.021739130434782608 49:0.16666666666666666 65:0.14285714285714285 78:0.2 88:1.0 89:0.5 120:1.0 131:1.0 160:1.0 177:0.5 208:0.5 209:0.5 273:0.5 283:0.4 335:0.3333333333333333 362:0.3333333333333333 422:1.0 514:0.6666666666666666 638:0.6666666666666666 644:3.0 645:1.0 652:0.25 680:0.5 683:1.0 795:1.0 1081:1.0 1658:0.2 1832:1.0 2252:1.0 2321:0.06666666666666667 2362:1.0 3163:1.0 3518:1.0 3527:2.0 3539:1.0 3540:1.0 3611:1.0 3815:1.0 3841:1.0 3998:1.0 5150:1.0 5300:1.0 5620:1.0 6279:1.0 6526:1.0 9 3:1.0 4:0.1111111111111111 18:0.16666666666666666 22:0.25 36:2.0 44:1.0 46:0.021739130434782608 65:0.7142857142857143 71:1.0 86:0.5 114:0.2 178:1.0 234:0.5 249:0.25 335:0.3333333333333333 351:1.0 365:1.0 526:1.0 606:1.0 637:0.5 936:0.5 949:1.0 1081:1.0 1397:0.5 1572:1.0 1621:1.0 1651:1.0 3543:1.0 3566:1.0 3569:1.0 3611:1.0 3733:1.0 3876:1.0 3950:1.0 4224:1.0 4570:1.0 4765:1.0 4911:1.0 5209:1.0 9 8:1.0 12:0.5 13:0.6666666666666666 18:0.6666666666666666 22:0.25 44:1.0 49:0.08333333333333333 51:0.3333333333333333 61:1.0 62:0.5 65:0.42857142857142855 72:0.3333333333333333 73:1.0 117:1.0 160:0.3333333333333333 247:0.5 249:0.25 284:1.0 290:0.5 296:0.0625 322:0.1 351:1.0 489:0.5 529:0.25 549:0.14285714285714285 644:1.0 652:0.25 669:0.2 691:1.0 814:1.0 1215:1.0 1427:1.0 1707:1.0 1823:1.0 2278:1.0 2546:1.0 2681:1.0 3527:1.0 3617:1.0 3655:1.0 3822:1.0 4049:1.0 4429:1.0 4610:1.0 5635:1.0 5887:0.5 5928:1.0 6209:1.0 9 3:1.0 4:0.1111111111111111 17:0.2 18:0.16666666666666666 30:1.0 44:1.0 46:0.021739130434782608 49:0.08333333333333333 65:0.14285714285714285 78:0.4 131:2.0 166:1.0 180:1.0 242:0.021739130434782608 270:0.3333333333333333 290:0.16666666666666666 322:0.1 335:1.0 338:1.0 351:1.0 365:1.0 561:1.0 639:1.0 798:1.0 938:1.0 1076:0.5 1303:0.3333333333333333 2092:0.5 2159:1.0 2208:1.0 2373:1.0 2396:1.0 2454:2.0 3161:1.0 3527:1.0 3602:1.0 4246:1.0 4247:1.0 4676:1.0 6293:1.0 9 13:0.6666666666666666 18:0.16666666666666666 30:1.0 32:0.3333333333333333 36:2.0 46:0.021739130434782608 49:0.16666666666666666 64:0.05555555555555555 65:0.5714285714285714 81:1.0 89:0.5 159:1.0 160:0.3333333333333333 166:1.0 217:1.0 249:0.25 290:0.16666666666666666 297:1.0 351:1.0 363:0.5 399:2.0 430:1.0 639:1.0 644:2.0 749:0.5 832:0.5 1093:0.25 1395:1.0 1543:1.0 1995:1.0 2211:1.0 2305:1.0 3173:0.06666666666666667 3519:1.0 3542:2.0 3544:1.0 3590:1.0 3602:1.0 4142:1.0 4143:1.0 4464:1.0 5399:1.0 5971:1.0 6447:1.0 9 3:2.0 4:0.1111111111111111 18:0.5 28:1.0 30:1.0 36:1.0 46:0.043478260869565216 48:0.1875 49:0.08333333333333333 53:2.0 65:0.14285714285714285 81:1.0 84:1.0 186:0.3333333333333333 206:0.5 241:2.0 242:0.021739130434782608 249:0.25 290:0.16666666666666666 296:0.125 335:0.3333333333333333 386:1.0 399:2.0 400:0.3333333333333333 726:1.0 786:2.0 938:1.0 1022:1.0 1069:0.09090909090909091 1079:1.0 1303:0.3333333333333333 1687:1.0 1729:1.0 2321:0.06666666666666667 2533:1.0 3375:1.0 3527:1.0 3585:1.0 3686:1.0 4461:1.0 4500:1.0 4645:1.0 4745:1.0 5181:0.5 6181:1.0 6458:1.0 6487:1.0 9 4:0.1111111111111111 13:0.6666666666666666 21:1.0 28:1.0 30:1.0 36:1.0 46:0.043478260869565216 48:0.0625 49:0.16666666666666666 54:0.5 61:1.0 65:0.42857142857142855 117:1.0 208:0.5 217:1.0 242:0.021739130434782608 284:1.0 290:0.3333333333333333 296:0.0625 322:0.1 335:0.3333333333333333 362:0.3333333333333333 430:1.0 514:0.3333333333333333 520:2.0 575:0.3333333333333333 614:1.0 639:1.0 644:1.0 682:1.0 750:0.5 948:2.0 1075:2.0 1395:1.0 1849:1.0 1957:1.0 1995:1.0 2081:0.5 2159:1.0 2454:1.0 3128:1.0 3131:1.0 3527:1.0 3679:1.0 3837:1.0 4154:0.5 4970:1.0 9 4:0.2222222222222222 13:0.3333333333333333 18:0.3333333333333333 22:0.25 30:1.0 36:2.0 44:1.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.42857142857142855 83:0.3333333333333333 143:0.3333333333333333 166:1.0 175:0.5 178:1.0 206:0.5 247:0.5 268:1.0 270:0.3333333333333333 271:1.0 280:1.0 296:0.0625 322:0.1 335:1.0 351:1.0 520:1.0 544:0.5 644:1.0 691:1.0 733:0.5 786:1.0 896:1.0 1146:1.0 1272:0.14285714285714285 1757:1.0 1967:1.0 2154:1.0 2803:1.0 3519:1.0 3597:1.0 3611:1.0 3617:1.0 3797:1.0 4049:1.0 4506:1.0 4747:1.0 5415:1.0 5961:1.0 6655:1.0 9 3:1.0 13:0.3333333333333333 18:0.3333333333333333 28:1.0 30:1.0 36:1.0 48:0.0625 65:0.5714285714285714 116:1.0 160:0.3333333333333333 175:0.5 178:1.0 247:0.5 270:0.3333333333333333 271:2.0 290:0.16666666666666666 296:0.0625 335:0.3333333333333333 400:0.3333333333333333 520:1.0 544:0.5 589:1.0 644:1.0 726:1.0 735:1.0 749:0.5 945:1.0 1069:0.09090909090909091 1272:0.14285714285714285 1348:1.0 3294:0.5 3374:0.5 3519:1.0 3539:1.0 3540:1.0 3597:1.0 3611:1.0 3783:1.0 3959:1.0 3969:1.0 4506:1.0 4747:1.0 5961:1.0 6449:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 22:0.25 30:1.0 44:2.0 46:0.021739130434782608 64:0.05555555555555555 65:0.5714285714285714 117:1.0 143:0.3333333333333333 166:1.0 178:1.0 249:0.5 273:0.5 296:0.0625 352:1.0 382:0.5 526:1.0 529:0.25 531:1.0 579:1.0 750:0.5 967:0.3333333333333333 1149:1.0 1364:0.5 1834:1.0 1936:1.0 2582:1.0 3527:1.0 4142:1.0 4156:1.0 4512:1.0 9 3:2.0 18:0.16666666666666666 65:0.2857142857142857 89:0.5 92:0.5 175:0.5 198:1.0 208:0.5 296:0.0625 297:1.0 335:0.3333333333333333 637:0.5 639:1.0 2100:1.0 3519:1.0 3658:1.0 4765:1.0 5961:1.0 9 4:0.1111111111111111 8:1.0 13:0.3333333333333333 18:0.3333333333333333 22:0.25 32:0.3333333333333333 34:1.0 49:0.08333333333333333 72:0.3333333333333333 73:1.0 160:0.3333333333333333 208:0.5 322:0.1 644:1.0 678:0.5 846:1.0 936:0.5 945:1.0 1069:0.09090909090909091 3493:1.0 3527:1.0 3806:1.0 4246:1.0 4343:1.0 6250:1.0 6527:1.0 9 3:2.0 4:0.3333333333333333 8:1.0 13:0.3333333333333333 17:0.2 18:0.3333333333333333 22:0.25 45:0.08333333333333333 46:0.021739130434782608 65:0.42857142857142855 66:1.0 72:0.3333333333333333 89:0.5 122:1.0 166:1.0 175:0.5 247:0.5 249:0.25 296:0.0625 322:0.1 334:0.3333333333333333 335:0.6666666666666666 387:0.5 492:1.0 577:1.0 639:1.0 686:0.5 796:1.0 957:1.0 1032:1.0 1091:1.0 1485:1.0 1729:1.0 1957:1.0 2100:1.0 3519:1.0 3618:1.0 4349:1.0 5230:1.0 5666:1.0 5900:1.0 5961:1.0 9 3:1.0 8:1.0 30:1.0 44:1.0 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 84:1.0 92:0.5 166:1.0 206:0.5 241:1.0 242:0.021739130434782608 249:0.25 283:0.2 296:0.0625 301:1.0 335:0.6666666666666666 338:1.0 365:1.0 400:0.3333333333333333 561:1.0 719:1.0 948:1.0 1303:0.3333333333333333 2321:0.06666666666666667 2480:1.0 2852:1.0 3519:1.0 3645:1.0 4074:1.0 4378:1.0 5443:1.0 5902:1.0 9 3:1.0 4:0.2222222222222222 22:0.25 28:1.0 30:1.0 34:1.0 44:1.0 49:0.08333333333333333 65:0.2857142857142857 81:1.0 84:1.0 89:0.5 149:1.0 159:1.0 166:1.0 175:0.5 206:0.5 242:0.021739130434782608 296:0.0625 335:0.3333333333333333 351:2.0 352:1.0 366:0.5 520:1.0 549:0.14285714285714285 618:1.0 686:0.5 786:1.0 881:1.0 1303:0.3333333333333333 1757:1.0 1874:1.0 1882:1.0 2444:1.0 3527:1.0 3673:1.0 4143:1.0 4349:1.0 4350:1.0 4653:1.0 4877:1.0 4880:1.0 4991:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 18:0.16666666666666666 30:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 62:1.0 64:0.05555555555555555 65:0.2857142857142857 106:0.5 149:1.0 240:0.5 249:0.25 270:0.3333333333333333 297:1.0 335:0.3333333333333333 351:1.0 362:0.3333333333333333 366:0.5 386:1.0 400:0.3333333333333333 526:1.0 606:1.0 612:1.0 656:1.0 680:0.5 880:1.0 881:1.0 903:0.5 936:0.5 1056:1.0 1069:0.09090909090909091 1090:1.0 1427:1.0 1572:1.0 1630:0.6666666666666666 1957:1.0 2353:1.0 3519:1.0 3590:1.0 3602:1.0 3783:1.0 4933:1.0 5051:1.0 5961:1.0 9 4:0.1111111111111111 8:1.0 12:1.0 13:0.3333333333333333 18:0.3333333333333333 30:1.0 36:2.0 46:0.021739130434782608 48:0.25 49:0.16666666666666666 65:0.42857142857142855 78:0.4 164:0.3333333333333333 175:1.0 178:1.0 283:0.4 309:1.0 335:0.6666666666666666 644:1.0 915:1.0 938:2.0 1272:0.14285714285714285 1386:1.0 1995:1.0 2227:1.0 2305:1.0 2321:0.06666666666666667 2831:1.0 3173:0.06666666666666667 3309:1.0 3518:1.0 3527:1.0 3655:1.0 3764:1.0 3803:1.0 4237:1.0 5059:1.0 5614:1.0 5880:2.0 5902:1.0 9 3:1.0 4:0.2222222222222222 18:0.6666666666666666 30:1.0 36:1.0 46:0.06521739130434782 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 66:1.0 68:1.0 69:1.0 72:0.3333333333333333 106:0.5 175:0.5 186:0.3333333333333333 217:1.0 227:1.0 249:0.5 296:0.0625 335:0.6666666666666666 336:1.0 352:1.0 365:1.0 382:1.0 387:0.5 520:1.0 526:1.0 579:1.0 669:0.2 786:2.0 1521:1.0 1630:0.3333333333333333 2273:1.0 2321:0.06666666666666667 3527:1.0 3846:1.0 3939:1.0 4074:1.0 4143:1.0 4196:1.0 5902:1.0 6181:1.0 9 3:2.0 18:0.16666666666666666 22:0.25 31:1.0 44:1.0 46:0.043478260869565216 68:1.0 92:0.5 117:1.0 296:0.0625 335:0.3333333333333333 749:0.5 936:0.5 944:0.3333333333333333 1023:1.0 1075:1.0 1093:0.25 1729:1.0 1752:1.0 2316:1.0 2420:1.0 2621:0.5 3527:1.0 3917:1.0 4302:1.0 4392:1.0 5320:1.0 9 3:1.0 4:0.2222222222222222 8:1.0 13:0.6666666666666666 18:0.16666666666666666 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 45:0.08333333333333333 65:0.42857142857142855 207:1.0 208:1.0 229:1.0 249:0.5 270:0.3333333333333333 290:0.3333333333333333 296:0.0625 322:0.1 351:1.0 366:0.5 529:0.25 549:0.14285714285714285 719:1.0 749:0.5 786:1.0 936:0.5 949:1.0 1081:2.0 1147:1.0 1244:0.5 1281:1.0 1348:1.0 1373:1.0 1515:1.0 1803:1.0 1957:1.0 1970:1.0 2245:1.0 2621:0.5 2918:1.0 2934:1.0 2954:0.5 3527:1.0 3535:1.0 3733:1.0 3987:0.5 4004:1.0 4074:1.0 4354:1.0 4518:1.0 6210:1.0 9 4:0.2222222222222222 18:0.3333333333333333 22:0.5 30:1.0 34:1.0 46:0.043478260869565216 48:0.0625 65:0.14285714285714285 78:0.2 89:0.5 114:0.2 128:1.0 166:1.0 247:0.5 270:0.3333333333333333 302:1.0 322:0.1 492:1.0 549:0.14285714285714285 644:1.0 670:1.0 749:0.5 777:1.0 881:1.0 1056:1.0 1272:0.14285714285714285 1287:1.0 1437:0.3333333333333333 1776:1.0 2100:1.0 2956:1.0 3322:1.0 3527:1.0 3619:1.0 5624:1.0 5961:1.0 9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 36:1.0 86:0.5 160:0.3333333333333333 178:1.0 221:0.5 234:0.5 249:0.25 302:1.0 604:1.0 606:1.0 1069:0.09090909090909091 1979:1.0 2100:1.0 3527:1.0 5961:1.0 9 18:0.16666666666666666 22:0.25 30:1.0 44:1.0 46:0.043478260869565216 72:0.6666666666666666 78:0.2 240:0.5 241:1.0 249:0.25 335:0.3333333333333333 352:1.0 387:0.5 544:0.5 639:1.0 652:0.25 691:1.0 2064:0.5 2176:1.0 2222:1.0 3136:1.0 3493:1.0 3527:1.0 3846:1.0 4049:1.0 4142:1.0 4143:1.0 4204:1.0 4993:1.0 5230:1.0 9 22:0.5 30:1.0 32:0.3333333333333333 36:1.0 44:1.0 45:0.08333333333333333 49:0.08333333333333333 109:1.0 175:0.5 207:1.0 309:0.5 526:1.0 652:0.25 698:1.0 948:1.0 1116:1.0 1131:0.2 3527:1.0 9 3:2.0 4:0.2222222222222222 13:0.3333333333333333 18:0.16666666666666666 22:0.5 30:1.0 44:1.0 48:0.0625 229:1.0 273:0.5 304:1.0 322:0.1 335:0.3333333333333333 336:1.0 500:0.14285714285714285 514:0.3333333333333333 519:1.0 529:0.25 644:1.0 654:1.0 1052:1.0 1074:0.25 1293:1.0 1437:0.3333333333333333 1545:1.0 1630:0.3333333333333333 1687:1.0 2730:1.0 3445:1.0 3527:1.0 3815:1.0 3987:0.5 4001:1.0 4975:1.0 5013:1.0 5413:1.0 5414:1.0 5895:1.0 6557:1.0 9 3:1.0 4:0.1111111111111111 8:2.0 18:0.16666666666666666 26:1.0 45:0.08333333333333333 46:0.021739130434782608 49:0.08333333333333333 54:0.5 68:1.0 78:0.2 160:0.3333333333333333 208:0.5 234:0.5 247:0.5 249:0.5 271:1.0 290:0.16666666666666666 296:0.0625 334:0.3333333333333333 336:1.0 366:0.5 381:1.0 400:0.3333333333333333 529:0.25 846:1.0 855:1.0 936:0.5 945:1.0 1152:1.0 1348:1.0 1515:1.0 2084:1.0 2290:0.3333333333333333 2926:1.0 2934:1.0 3493:1.0 3527:1.0 3614:0.5 3649:1.0 4302:1.0 4593:1.0 4777:1.0 4975:1.0 5230:1.0 5780:1.0 6254:1.0 9 3:1.0 4:0.1111111111111111 8:1.0 18:0.3333333333333333 22:0.25 45:0.16666666666666666 46:0.021739130434782608 64:0.05555555555555555 65:0.14285714285714285 72:0.6666666666666666 136:0.3333333333333333 161:1.0 206:0.5 221:0.5 249:0.25 264:1.0 296:0.0625 322:0.1 386:1.0 400:0.3333333333333333 639:1.0 644:1.0 670:1.0 692:1.0 749:0.5 788:1.0 852:1.0 903:0.5 1093:0.25 1131:0.2 1427:1.0 1533:1.0 1880:1.0 1967:1.0 2290:0.3333333333333333 2757:1.0 3493:2.0 3519:1.0 3541:1.0 3622:1.0 3649:1.0 3867:1.0 4539:0.5 9 3:2.0 4:0.1111111111111111 8:1.0 22:0.5 28:1.0 45:0.08333333333333333 46:0.043478260869565216 61:1.0 65:0.14285714285714285 78:0.2 89:0.5 116:1.0 149:1.0 158:1.0 177:0.5 249:0.25 322:0.1 352:1.0 529:0.25 644:1.0 669:0.2 686:0.5 796:1.0 936:0.5 967:0.3333333333333333 1427:1.0 1850:1.0 1974:1.0 2290:0.6666666666666666 2418:1.0 2528:1.0 2621:0.5 2954:0.5 3519:1.0 3539:1.0 3540:1.0 3541:2.0 3649:1.0 5230:1.0 9 3:1.0 18:0.16666666666666666 30:1.0 46:0.043478260869565216 49:0.08333333333333333 64:0.05555555555555555 65:0.2857142857142857 114:0.2 135:0.5 149:1.0 160:0.3333333333333333 164:0.08333333333333333 175:0.5 241:1.0 242:0.021739130434782608 249:0.5 296:0.125 322:0.1 344:1.0 352:2.0 399:2.0 657:1.0 739:1.0 796:1.0 895:1.0 1348:1.0 1373:1.0 1536:0.3333333333333333 1630:0.3333333333333333 1663:1.0 1729:1.0 2054:1.0 3081:1.0 3519:1.0 3576:1.0 3592:1.0 3803:1.0 3815:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 22:0.25 28:1.0 30:1.0 36:2.0 44:2.0 65:0.42857142857142855 175:0.5 217:2.0 229:1.0 241:1.0 283:0.2 296:0.0625 309:0.5 335:1.0 351:1.0 352:1.0 483:1.0 654:1.0 749:0.5 891:0.5 1196:1.0 2321:0.06666666666666667 2353:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3622:1.0 3815:1.0 3939:1.0 4738:1.0 4823:1.0 5868:1.0 9 4:0.1111111111111111 12:0.5 18:0.3333333333333333 28:2.0 30:1.0 36:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 62:0.5 72:0.3333333333333333 78:0.4 143:0.3333333333333333 147:0.5 175:0.5 230:1.0 270:0.3333333333333333 335:1.0 352:1.0 387:0.5 520:1.0 529:0.25 531:1.0 639:2.0 749:0.5 936:0.5 948:1.0 1069:0.09090909090909091 1147:1.0 1272:0.14285714285714285 1506:1.0 1687:1.0 1823:1.0 2003:1.0 2211:1.0 2321:0.06666666666666667 3519:1.0 3590:1.0 3649:1.0 4676:1.0 4696:1.0 6209:1.0 9 3:1.0 4:0.1111111111111111 30:1.0 36:1.0 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 73:1.0 78:0.2 131:1.0 230:1.0 240:0.5 249:0.25 290:0.16666666666666666 301:1.0 335:0.3333333333333333 401:1.0 407:1.0 678:0.5 684:1.0 686:0.5 691:1.0 967:0.3333333333333333 1255:0.5 1650:1.0 2159:1.0 2321:0.06666666666666667 3527:1.0 3578:1.0 3602:2.0 4050:1.0 4139:1.0 4349:1.0 4350:1.0 4880:1.0 5624:1.0 9 3:2.0 13:0.3333333333333333 18:0.3333333333333333 30:2.0 36:1.0 44:1.0 46:0.021739130434782608 49:0.08333333333333333 65:0.14285714285714285 72:0.3333333333333333 78:0.2 84:1.0 114:0.2 124:0.5 164:0.08333333333333333 198:1.0 206:0.5 335:0.3333333333333333 363:0.5 387:0.5 520:1.0 526:1.0 527:1.0 639:1.0 1092:1.0 1303:0.3333333333333333 1395:1.0 1453:1.0 2321:0.06666666666666667 2686:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3590:1.0 3732:1.0 4089:1.0 4364:1.0 4448:1.0 4512:1.0 4991:1.0 5274:1.0 5382:1.0 6533:1.0 9 1:0.05263157894736842 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 44:1.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.2857142857142857 68:1.0 71:1.0 73:1.0 105:0.5 120:1.0 143:0.3333333333333333 147:0.5 175:0.5 178:1.0 186:0.3333333333333333 241:1.0 247:0.5 273:0.5 296:0.125 334:0.3333333333333333 381:1.0 438:1.0 529:0.25 676:1.0 678:0.5 749:1.0 1056:1.0 1117:1.0 1173:0.25 1395:1.0 1751:1.0 1967:1.0 2274:2.0 2296:1.0 2757:1.0 2968:1.0 3514:1.0 3519:1.0 3649:1.0 3953:1.0 4047:1.0 5209:1.0 9 13:0.3333333333333333 18:0.3333333333333333 22:0.25 44:2.0 46:0.021739130434782608 59:1.0 65:0.2857142857142857 160:0.3333333333333333 249:0.25 322:0.1 334:0.3333333333333333 366:0.5 400:0.3333333333333333 514:0.3333333333333333 544:0.5 614:1.0 652:0.25 750:0.5 762:1.0 945:2.0 1081:1.0 1289:1.0 1373:1.0 2064:0.5 2453:1.0 2645:0.25 3514:1.0 3519:1.0 3544:1.0 3622:1.0 3649:1.0 3732:1.0 3801:1.0 3951:1.0 4479:1.0 4890:1.0 6055:1.0 6061:1.0 6458:1.0 6526:1.0 9 4:0.1111111111111111 12:0.5 13:0.3333333333333333 18:0.5 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 36:1.0 44:1.0 46:0.043478260869565216 49:0.16666666666666666 65:0.2857142857142857 72:0.3333333333333333 73:1.0 120:2.0 149:1.0 166:1.0 230:1.0 249:0.25 270:0.3333333333333333 290:0.16666666666666666 296:0.125 322:0.1 335:0.6666666666666666 351:1.0 386:1.0 387:0.5 670:1.0 1272:0.14285714285714285 1823:1.0 2092:1.0 2861:1.0 3527:1.0 3539:1.0 3540:1.0 4161:1.0 4378:1.0 4467:1.0 4744:1.0 9 3:1.0 4:0.1111111111111111 18:0.16666666666666666 30:1.0 32:0.6666666666666666 44:1.0 45:0.08333333333333333 46:0.021739130434782608 64:0.05555555555555555 65:0.2857142857142857 68:1.0 81:1.0 249:0.25 284:1.0 514:0.3333333333333333 652:0.25 1131:0.2 1663:1.0 1706:1.0 1729:2.0 1804:1.0 1988:1.0 3519:1.0 4512:1.0 4904:1.0 5864:1.0 5988:1.0 9 4:0.4444444444444444 18:0.5 30:1.0 32:0.3333333333333333 44:2.0 45:0.16666666666666666 46:0.021739130434782608 48:0.0625 65:0.2857142857142857 71:1.0 73:1.0 84:1.0 89:0.5 206:0.5 209:0.5 249:0.25 283:0.2 284:1.0 514:0.6666666666666666 620:0.5 639:1.0 645:1.0 658:0.5 814:1.0 889:1.0 1131:0.2 1663:1.0 1804:1.0 1988:1.0 3519:1.0 3541:1.0 3649:1.0 4247:1.0 4512:1.0 4904:1.0 5413:1.0 5414:1.0 5864:1.0 5988:1.0 6233:1.0 9 1:0.05263157894736842 3:1.0 4:0.1111111111111111 18:0.16666666666666666 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 36:1.0 49:0.08333333333333333 106:0.5 160:0.3333333333333333 206:0.5 290:0.16666666666666666 335:0.3333333333333333 469:0.5 514:0.3333333333333333 1272:0.14285714285714285 1567:1.0 3519:1.0 4918:1.0 5551:1.0 6643:1.0 9 18:0.3333333333333333 30:1.0 65:0.14285714285714285 136:0.3333333333333333 155:0.5 242:0.021739130434782608 249:0.75 270:0.3333333333333333 296:0.125 335:0.3333333333333333 336:1.0 386:1.0 520:1.0 529:0.25 678:0.5 967:0.3333333333333333 1056:1.0 1066:0.5 1515:1.0 1823:1.0 2182:1.0 3163:1.0 3397:0.3333333333333333 3519:1.0 4049:1.0 4200:1.0 4303:1.0 4802:1.0 9 3:1.0 4:0.4444444444444444 18:0.16666666666666666 22:0.5 44:1.0 45:0.08333333333333333 46:0.043478260869565216 49:0.08333333333333333 61:1.0 65:0.2857142857142857 78:0.2 131:1.0 160:0.3333333333333333 177:0.5 249:0.5 270:0.3333333333333333 336:1.0 670:1.0 678:0.5 686:0.5 691:1.0 796:1.0 814:1.0 945:1.0 949:1.0 964:1.0 1515:1.0 1533:1.0 1687:1.0 1751:1.0 2226:1.0 2954:0.5 3163:1.0 3314:1.0 3527:1.0 4133:0.25 4246:1.0 4918:1.0 5013:1.0 5127:1.0 9 3:1.0 4:0.1111111111111111 12:0.5 13:0.3333333333333333 18:0.5 22:0.25 28:1.0 30:1.0 34:1.0 44:1.0 45:0.08333333333333333 46:0.043478260869565216 48:0.0625 64:0.05555555555555555 65:0.14285714285714285 68:1.0 296:0.0625 304:1.0 313:1.0 351:1.0 381:1.0 492:1.0 520:1.0 529:0.25 549:0.14285714285714285 679:1.0 686:1.0 721:1.0 936:0.5 945:1.0 964:1.0 1117:1.0 1237:1.0 1293:1.0 1437:0.3333333333333333 1967:1.0 2054:1.0 2162:1.0 2307:1.0 3418:1.0 3514:1.0 3519:1.0 3617:1.0 3906:1.0 3953:1.0 4022:1.0 4143:1.0 4246:1.0 4349:1.0 4350:1.0 5350:0.5 9 3:1.0 18:0.16666666666666666 22:0.5 30:1.0 32:0.3333333333333333 65:0.5714285714285714 66:1.0 83:0.3333333333333333 131:1.0 175:0.5 177:0.5 249:0.25 284:1.0 290:0.16666666666666666 520:1.0 529:0.25 644:1.0 691:1.0 1190:0.5 1427:1.0 1515:1.0 1748:1.0 1823:1.0 1826:1.0 1829:1.0 2054:1.0 2968:1.0 3343:0.3333333333333333 3639:1.0 3864:1.0 3869:0.5 4116:1.0 4246:1.0 4254:1.0 5243:1.0 5535:1.0 9 13:0.3333333333333333 18:0.16666666666666666 22:0.5 32:0.3333333333333333 131:1.0 164:0.08333333333333333 247:0.5 270:0.3333333333333333 290:0.3333333333333333 296:0.125 749:0.5 777:1.0 1081:1.0 1240:0.16666666666666666 1622:0.5 1967:1.0 2362:1.0 3527:1.0 3560:1.0 9 3:1.0 4:0.2222222222222222 13:0.3333333333333333 18:0.3333333333333333 22:0.25 30:1.0 44:1.0 46:0.043478260869565216 49:0.08333333333333333 65:0.2857142857142857 78:0.4 117:2.0 160:0.3333333333333333 270:0.6666666666666666 290:0.16666666666666666 336:1.0 362:0.3333333333333333 373:1.0 399:3.0 492:1.0 639:1.0 641:1.0 644:3.0 670:2.0 678:0.5 759:0.5 795:1.0 796:1.0 811:1.0 949:1.0 1056:1.0 1680:1.0 1706:1.0 1832:1.0 1849:1.0 2954:0.5 2968:1.0 3527:1.0 3558:1.0 3601:1.0 3649:1.0 3718:1.0 3871:1.0 3951:1.0 4208:0.5 4595:1.0 4975:1.0 6055:1.0 6376:1.0 9 4:0.1111111111111111 18:0.16666666666666666 26:1.0 27:1.0 30:1.0 44:1.0 45:0.08333333333333333 46:0.06521739130434782 48:0.0625 49:0.16666666666666666 65:0.5714285714285714 71:1.0 78:0.4 110:1.0 120:2.0 135:0.5 230:2.0 247:0.5 270:0.3333333333333333 280:1.0 296:0.125 334:0.6666666666666666 352:1.0 363:0.5 400:0.3333333333333333 526:1.0 777:1.0 795:1.0 852:1.0 1303:0.3333333333333333 2054:1.0 2274:1.0 3294:0.5 3527:1.0 3544:1.0 3614:0.5 4246:1.0 4247:1.0 5309:1.0 5613:1.0 6576:1.0 9 3:1.0 22:0.25 30:1.0 32:0.3333333333333333 53:1.0 65:0.14285714285714285 66:1.0 71:1.0 73:1.0 78:0.2 106:0.5 117:1.0 120:1.0 124:0.5 249:0.25 270:0.3333333333333333 284:1.0 296:0.0625 334:0.3333333333333333 335:1.0 336:1.0 492:1.0 520:1.0 529:0.5 644:1.0 684:1.0 691:1.0 785:0.5 795:1.0 845:1.0 936:0.5 1360:1.0 1572:1.0 2316:1.0 2420:1.0 2996:0.1111111111111111 3407:1.0 3527:1.0 3833:1.0 4155:1.0 5765:1.0 9 3:1.0 13:0.6666666666666666 18:0.16666666666666666 22:0.25 30:1.0 44:1.0 46:0.043478260869565216 49:0.08333333333333333 72:0.3333333333333333 78:0.4 81:1.0 114:0.2 120:1.0 131:1.0 160:0.6666666666666666 249:0.5 335:0.3333333333333333 352:1.0 399:3.0 606:1.0 614:1.0 639:1.0 692:1.0 795:1.0 796:1.0 967:0.3333333333333333 1006:1.0 1027:1.0 1258:1.0 1622:0.5 2017:1.0 2054:1.0 2934:1.0 3527:1.0 3566:1.0 3571:1.0 3782:0.3333333333333333 4208:0.5 4395:0.5 4676:1.0 5538:1.0 6254:1.0 6405:1.0 9 17:0.2 18:0.3333333333333333 22:0.25 30:1.0 46:0.06521739130434782 54:0.5 64:0.05555555555555555 68:1.0 78:0.2 83:0.3333333333333333 131:1.0 175:0.5 247:0.5 249:0.25 270:0.6666666666666666 278:0.5 335:1.3333333333333333 336:1.0 362:0.3333333333333333 377:2.0 387:0.5 492:1.0 606:1.0 614:1.0 639:1.0 669:0.4 750:0.5 785:0.5 795:1.0 796:2.0 936:0.5 1051:1.0 1213:1.0 1293:1.0 1316:1.0 1630:0.3333333333333333 1957:1.0 2874:1.0 3121:1.0 3527:1.0 4022:1.0 5433:1.0 6468:1.0 6566:1.0 9 3:1.0 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 34:2.0 44:1.0 46:0.021739130434782608 65:0.14285714285714285 73:1.0 117:1.0 224:1.0 283:0.2 334:0.3333333333333333 652:0.25 796:1.0 1131:0.2 1437:0.3333333333333333 1513:1.0 1936:2.0 2013:1.0 2092:0.5 2454:1.0 3566:1.0 3639:1.0 3733:1.0 3864:1.0 3960:1.0 4086:1.0 4206:1.0 4207:1.0 4217:1.0 4224:1.0 9 13:0.3333333333333333 15:0.3333333333333333 18:0.16666666666666666 22:0.25 28:2.0 30:1.0 46:0.021739130434782608 49:0.08333333333333333 64:0.05555555555555555 65:0.14285714285714285 177:0.5 247:0.5 249:0.5 270:0.3333333333333333 639:1.0 1051:1.0 1504:1.0 1687:1.0 1826:1.0 1936:1.0 2054:1.0 2092:0.5 2100:1.0 2274:1.0 2450:1.0 2479:1.0 2621:0.5 3397:0.3333333333333333 3519:1.0 3560:1.0 3691:1.0 3869:0.5 4019:1.0 4155:1.0 4627:1.0 5111:1.0 9 3:2.0 4:0.1111111111111111 18:0.16666666666666666 22:0.5 30:1.0 32:0.3333333333333333 36:1.0 46:0.021739130434782608 49:0.16666666666666666 89:0.5 106:0.5 177:1.0 178:2.0 230:1.0 290:0.16666666666666666 296:0.0625 489:0.5 520:1.0 641:1.0 936:0.5 1173:0.25 1244:0.5 1475:1.0 1687:1.0 2054:1.0 2245:1.0 2528:1.0 2918:1.0 3375:1.0 3493:1.0 3611:1.0 3614:0.5 3637:1.0 3638:1.0 3639:1.0 3733:1.0 4038:1.0 4253:1.0 4319:1.0 4512:1.0 6615:1.0 9 3:1.0 4:0.2222222222222222 46:0.06521739130434782 48:0.0625 49:0.08333333333333333 73:1.0 161:1.0 178:1.0 221:0.5 222:1.0 230:1.0 247:1.0 249:0.25 268:1.0 283:0.2 290:0.16666666666666666 296:0.0625 322:0.2 334:0.3333333333333333 413:1.0 489:0.5 759:0.5 1081:1.0 1215:0.5 1533:1.0 1894:1.0 2321:0.06666666666666667 2501:1.0 2757:1.0 3527:1.0 3601:1.0 3614:0.5 3626:1.0 3649:1.0 5209:1.0 9 4:0.1111111111111111 8:1.0 13:0.3333333333333333 18:0.5 22:0.25 44:1.0 46:0.043478260869565216 49:0.08333333333333333 78:0.2 84:1.0 120:1.0 206:0.5 241:1.0 296:0.125 297:1.0 335:0.6666666666666666 352:1.0 399:1.0 489:0.5 492:1.0 638:0.3333333333333333 644:1.0 842:1.0 1437:0.3333333333333333 1515:1.0 1527:1.0 1627:1.0 1823:1.0 1974:1.0 2222:1.0 2968:1.0 3519:1.0 3602:1.0 3649:2.0 3732:1.0 4512:1.0 5111:1.0 6526:1.0 9 3:1.0 13:0.6666666666666666 22:0.25 45:0.08333333333333333 65:0.14285714285714285 89:0.5 175:0.5 177:0.5 249:0.25 290:0.16666666666666666 352:1.0 400:0.3333333333333333 467:1.0 759:0.5 903:0.5 941:1.0 951:1.0 3134:1.0 3519:1.0 4577:1.0 5047:1.0 5758:1.0 6628:1.0 9 3:1.0 8:1.0 12:0.5 30:1.0 36:1.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.14285714285714285 73:1.0 78:0.2 175:2.0 198:1.0 335:0.3333333333333333 484:1.0 520:1.0 544:0.5 652:0.25 719:1.0 1075:1.0 1081:1.0 1152:1.0 1499:0.5 1503:1.0 2159:1.0 2850:1.0 3527:1.0 3590:1.0 4074:1.0 5336:1.0 5715:1.0 6511:1.0 9 3:1.0 4:0.1111111111111111 8:1.0 18:0.16666666666666666 30:1.0 32:0.6666666666666666 48:0.0625 64:0.05555555555555555 120:1.0 122:1.0 136:0.3333333333333333 175:0.5 249:0.25 273:0.5 400:0.3333333333333333 520:1.0 606:1.0 719:2.0 903:0.5 1380:1.0 2452:1.0 3527:1.0 3602:1.0 3803:1.0 3917:1.0 4057:1.0 4142:1.0 9 4:0.4444444444444444 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 44:2.0 46:0.021739130434782608 49:0.16666666666666666 64:0.05555555555555555 65:0.2857142857142857 97:1.0 105:0.5 120:1.0 131:1.0 166:1.0 206:1.0 208:0.5 242:0.021739130434782608 296:0.0625 297:1.0 301:1.0 335:0.6666666666666666 353:1.0 366:0.5 400:0.3333333333333333 445:1.0 529:0.25 638:0.3333333333333333 644:1.0 652:0.25 658:0.5 814:1.0 889:1.0 911:1.0 948:1.0 1303:0.3333333333333333 1929:1.0 2159:1.0 3519:1.0 3539:1.0 3797:1.0 3815:1.0 5253:1.0 5858:1.0 5905:1.0 5961:1.0 9 4:0.1111111111111111 18:0.16666666666666666 28:1.0 30:1.0 44:1.0 46:0.021739130434782608 48:0.0625 49:0.16666666666666666 65:0.2857142857142857 72:0.3333333333333333 166:1.0 186:0.3333333333333333 230:2.0 296:0.125 335:0.3333333333333333 351:1.0 482:0.5 658:0.5 692:1.0 786:1.0 787:1.0 877:1.0 1093:0.25 1611:1.0 1826:1.0 2159:1.0 2258:1.0 2321:0.13333333333333333 3519:1.0 3710:1.0 4823:1.0 6434:1.0 9 3:1.0 8:1.0 18:0.16666666666666666 22:0.25 36:1.0 44:1.0 65:0.14285714285714285 120:1.0 131:1.0 160:0.3333333333333333 234:0.5 444:1.0 612:1.0 1453:1.0 1533:1.0 1543:1.0 2274:1.0 2321:0.06666666666666667 3519:1.0 3834:1.0 4486:1.0 5010:0.5 9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 75:1.0 78:0.2 131:2.0 147:0.5 178:2.0 197:0.2 242:0.021739130434782608 286:1.0 335:0.3333333333333333 352:1.0 399:1.0 400:0.3333333333333333 489:0.5 520:1.0 526:1.0 579:1.0 624:1.0 750:0.5 832:0.5 941:1.0 948:1.0 1069:0.09090909090909091 1533:1.0 3173:0.06666666666666667 3527:1.0 3812:1.0 3941:1.0 4062:0.5 4105:1.0 4920:1.0 5269:1.0 5574:1.0 6094:1.0 9 4:0.1111111111111111 18:0.16666666666666666 21:1.0 22:0.75 28:1.0 32:0.6666666666666666 65:0.2857142857142857 83:0.3333333333333333 89:0.5 117:1.0 166:1.0 178:1.0 249:0.25 387:0.5 410:1.0 1138:0.5 1335:1.0 1364:0.5 1386:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3548:1.0 3683:1.0 3812:1.0 4372:1.0 6055:1.0 6326:1.0 9 18:0.3333333333333333 22:0.5 30:1.0 34:1.0 45:0.08333333333333333 48:0.0625 62:0.5 73:1.0 78:0.2 106:0.5 131:1.0 160:0.3333333333333333 175:0.5 177:0.5 247:0.5 278:0.5 290:0.16666666666666666 296:0.0625 307:0.2 335:1.0 338:1.0 549:0.14285714285714285 579:2.0 726:1.0 749:0.5 1081:1.0 1293:1.0 1411:1.0 1602:1.0 1870:1.0 2013:1.0 2429:1.0 2954:0.5 3263:1.0 3519:1.0 3560:1.0 3732:1.0 3796:0.5 4512:1.0 5027:1.0 9 3:1.0 8:1.0 18:0.3333333333333333 21:1.0 32:0.6666666666666666 46:0.021739130434782608 61:1.0 65:0.14285714285714285 73:1.0 143:0.3333333333333333 175:0.5 247:0.5 249:0.5 270:0.3333333333333333 334:0.3333333333333333 335:0.3333333333333333 484:1.0 544:0.5 652:0.25 670:1.0 777:1.0 1081:1.0 1957:1.0 2092:0.5 2100:1.0 2290:0.3333333333333333 2956:2.0 3493:1.0 3519:1.0 3548:1.0 3871:1.0 4208:0.5 4635:1.0 5210:1.0 9 4:0.1111111111111111 8:1.0 18:1.0 22:0.5 30:1.0 32:0.3333333333333333 34:1.0 45:0.08333333333333333 46:0.021739130434782608 48:0.0625 49:0.16666666666666666 62:0.5 65:0.14285714285714285 78:0.2 92:0.5 206:0.5 230:1.0 241:1.0 242:0.043478260869565216 249:0.25 290:0.16666666666666666 296:0.0625 335:0.6666666666666666 399:1.0 492:1.0 683:1.0 787:1.0 788:1.0 948:1.0 1395:1.0 1622:0.5 1648:1.0 2290:0.3333333333333333 2956:1.0 3013:1.0 3519:1.0 4049:1.0 4153:1.0 5076:1.0 9 3:1.0 4:0.3333333333333333 12:0.5 22:0.25 30:1.0 43:1.0 44:2.0 49:0.08333333333333333 65:0.5714285714285714 84:1.0 89:0.5 175:0.5 197:0.2 206:1.0 270:0.3333333333333333 278:0.5 290:0.16666666666666666 322:0.1 334:0.3333333333333333 335:0.3333333333333333 352:1.0 469:0.5 505:1.0 678:0.5 691:1.0 719:1.0 786:1.0 788:1.0 1081:1.0 1196:1.0 1272:0.14285714285714285 1303:0.3333333333333333 1361:1.0 1757:1.0 3527:1.0 3602:1.0 3803:1.0 4074:1.0 5076:1.0 9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 146:1.0 160:0.3333333333333333 217:1.0 242:0.021739130434782608 270:0.3333333333333333 335:0.6666666666666666 398:1.0 639:1.0 670:1.0 786:1.0 936:0.5 968:1.0 1074:0.25 1272:0.14285714285714285 1423:1.0 1995:1.0 2193:1.0 2454:1.0 2996:0.1111111111111111 3173:0.06666666666666667 3280:1.0 3493:1.0 3527:1.0 4196:1.0 4755:1.0 6501:1.0 9 8:1.0 18:0.5 22:0.25 30:1.0 36:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 78:0.2 120:1.0 131:1.0 155:0.5 164:0.08333333333333333 175:0.5 206:0.5 242:0.021739130434782608 290:0.16666666666666666 296:0.0625 309:0.5 322:0.1 335:0.3333333333333333 352:1.0 413:1.0 526:1.0 895:1.0 1072:1.0 1533:1.0 1827:1.0 2420:2.0 2621:0.5 2874:1.0 3117:1.0 3280:1.0 3519:1.0 3679:1.0 3911:1.0 4429:1.0 4645:1.0 4718:1.0 6084:1.0 9 4:0.1111111111111111 18:0.3333333333333333 30:1.0 32:0.3333333333333333 44:1.0 49:0.08333333333333333 65:0.42857142857142855 131:1.0 160:0.3333333333333333 186:0.3333333333333333 208:0.5 217:1.0 249:0.5 290:0.16666666666666666 291:1.0 296:0.125 322:0.1 514:0.3333333333333333 589:1.0 644:1.0 652:0.5 1022:1.0 1373:1.0 1521:1.0 1533:1.0 2274:1.0 2321:0.13333333333333333 3084:1.0 3518:1.0 3527:1.0 3732:1.0 4049:1.0 4142:1.0 4595:1.0 5269:1.0 6072:1.0 9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 44:2.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 68:1.0 114:0.2 122:1.0 249:0.25 296:0.0625 335:0.6666666666666666 372:1.0 639:1.0 669:0.2 896:1.0 938:1.0 1092:1.0 1128:1.0 1258:1.0 1957:1.0 1995:1.0 2017:1.0 2235:1.0 2305:1.0 2874:1.0 3081:1.0 3173:0.06666666666666667 3519:1.0 3566:1.0 3748:1.0 4217:1.0 4263:1.0 6449:1.0 9 13:0.3333333333333333 18:0.16666666666666666 22:0.25 44:1.0 49:0.08333333333333333 51:0.3333333333333333 65:0.5714285714285714 83:0.3333333333333333 89:0.5 166:1.0 206:0.5 207:1.0 208:0.5 290:0.3333333333333333 307:0.2 430:1.0 469:0.5 691:1.0 850:1.0 936:0.5 949:1.0 1361:1.0 3493:1.0 3519:1.0 3626:1.0 4203:1.0 5549:1.0 9 3:1.0 8:2.0 12:0.5 13:0.3333333333333333 15:0.3333333333333333 18:0.5 36:2.0 44:3.0 46:0.021739130434782608 65:0.2857142857142857 73:1.0 84:1.0 120:1.0 158:1.0 178:1.0 249:0.25 271:1.0 274:1.0 290:0.3333333333333333 297:1.0 322:0.1 381:1.0 400:0.3333333333333333 484:1.0 579:1.0 620:1.0 638:0.3333333333333333 725:1.0 891:0.5 917:1.0 1289:1.0 2092:0.5 3512:1.0 3519:1.0 3614:0.5 4300:1.0 4317:1.0 4512:1.0 4877:1.0 6213:1.0 9 3:1.0 8:1.0 18:0.16666666666666666 30:1.0 46:0.043478260869565216 48:0.0625 59:1.0 65:0.42857142857142855 72:0.3333333333333333 92:0.5 114:0.2 166:1.0 178:1.0 247:0.5 249:0.5 290:0.16666666666666666 334:0.3333333333333333 335:0.3333333333333333 338:1.0 386:1.0 387:0.5 400:0.3333333333333333 526:1.0 639:1.0 644:3.0 786:2.0 945:1.0 1729:1.0 2159:1.0 2179:1.0 2803:1.0 3519:1.0 3566:1.0 3611:1.0 3792:1.0 3985:1.0 4089:1.0 4464:1.0 4512:1.0 4595:1.0 5194:1.0 5801:1.0 6008:2.0 6061:1.0 9 3:1.0 4:0.3333333333333333 8:2.0 18:0.16666666666666666 22:0.25 30:1.0 36:1.0 44:1.0 48:0.0625 49:0.08333333333333333 64:0.05555555555555555 65:0.2857142857142857 71:1.0 73:1.0 75:1.0 78:0.2 131:1.0 175:1.0 207:1.0 230:1.0 242:0.021739130434782608 270:0.3333333333333333 283:0.2 296:0.0625 335:1.0 372:1.0 469:0.5 484:1.0 514:0.3333333333333333 618:1.0 637:0.5 654:1.0 670:1.0 683:1.0 814:1.0 938:1.0 951:1.0 1272:0.14285714285714285 2159:1.0 2502:1.0 2656:1.0 2774:1.0 3067:1.0 3181:1.0 3519:1.0 3539:1.0 3803:1.0 4137:1.0 4704:1.0 5194:1.0 5413:1.0 5414:1.0 5611:1.0 6573:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 28:2.0 30:1.0 44:2.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.14285714285714285 84:1.0 131:1.0 160:0.3333333333333333 206:0.5 217:1.0 270:0.3333333333333333 290:0.16666666666666666 335:1.0 338:1.0 351:1.0 352:1.0 400:0.3333333333333333 579:1.0 644:1.0 656:1.0 938:1.0 1213:1.0 1303:0.3333333333333333 1849:1.0 1995:1.0 2418:1.0 2645:0.25 2730:1.0 3173:0.06666666666666667 3637:1.0 3638:1.0 3639:1.0 3798:1.0 3911:1.0 4943:1.0 6408:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 18:0.5 22:0.25 30:2.0 36:1.0 44:1.0 46:0.021739130434782608 49:0.08333333333333333 65:0.2857142857142857 73:2.0 78:0.4 112:0.5 139:0.16666666666666666 166:1.0 226:1.0 249:0.25 264:1.0 270:0.3333333333333333 309:0.5 335:0.3333333333333333 450:1.0 514:0.3333333333333333 627:1.0 644:1.0 645:1.0 762:1.0 777:1.0 811:1.0 936:0.5 1092:1.0 1213:1.0 1427:1.0 1437:0.3333333333333333 1543:1.0 2787:1.0 3519:1.0 3548:1.0 3797:1.0 3822:1.0 4049:1.0 4196:1.0 4635:1.0 6326:1.0 9 4:0.4444444444444444 13:0.3333333333333333 18:0.3333333333333333 21:1.0 32:0.3333333333333333 36:1.0 61:2.0 64:0.05555555555555555 131:2.0 207:1.0 249:0.25 322:0.1 351:1.0 400:0.3333333333333333 514:0.6666666666666666 529:0.25 855:1.0 917:1.0 1339:0.25 2092:1.0 2525:1.0 2528:1.0 3527:1.0 3539:1.0 3781:1.0 3815:1.0 4210:1.0 4246:1.0 5097:1.0 5717:1.0 5746:1.0 5868:1.0 6008:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 18:0.16666666666666666 32:0.3333333333333333 46:0.021739130434782608 65:0.42857142857142855 81:1.0 89:0.5 92:0.5 120:1.0 131:1.0 177:0.5 290:0.16666666666666666 579:1.0 639:1.0 644:1.0 796:1.0 814:1.0 951:1.0 1244:0.5 2100:1.0 2273:1.0 2656:1.0 3067:1.0 3476:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3782:0.3333333333333333 4093:1.0 5131:1.0 9 3:1.0 4:0.1111111111111111 18:0.16666666666666666 22:0.25 32:0.6666666666666666 44:2.0 49:0.08333333333333333 65:0.2857142857142857 72:0.3333333333333333 106:0.5 131:1.0 387:0.5 639:1.0 670:1.0 725:1.0 815:1.0 936:0.5 1287:1.0 1499:0.5 1707:1.0 1729:1.0 1832:1.0 1894:1.0 1936:1.0 2222:1.0 2934:1.0 3527:1.0 3614:0.5 3615:1.0 3696:1.0 5320:1.0 9 3:2.0 4:0.1111111111111111 13:0.6666666666666666 22:0.25 46:0.021739130434782608 48:0.0625 65:0.14285714285714285 68:1.0 143:0.3333333333333333 164:0.08333333333333333 175:0.5 176:1.0 240:0.5 241:1.0 270:0.3333333333333333 278:0.5 290:0.16666666666666666 335:0.3333333333333333 520:1.0 588:0.5 638:0.3333333333333333 644:1.0 654:1.0 826:1.0 895:2.0 1056:1.0 1090:1.0 1293:1.0 1309:1.0 1833:1.0 2100:1.0 2181:1.0 2321:0.06666666666666667 2954:0.5 3519:1.0 3803:1.0 3950:1.0 3998:1.0 4092:1.0 4306:1.0 4577:1.0 5022:1.0 5644:1.0 9 3:1.0 4:0.1111111111111111 30:1.0 32:0.3333333333333333 44:1.0 45:0.08333333333333333 46:0.021739130434782608 48:0.0625 61:1.0 64:0.05555555555555555 65:0.42857142857142855 116:1.0 160:0.3333333333333333 242:0.021739130434782608 322:0.1 335:1.0 465:1.0 492:1.0 658:0.5 691:1.0 938:1.0 967:0.3333333333333333 1146:1.0 1572:1.0 1757:1.0 2326:1.0 3281:1.0 3523:1.0 3527:1.0 3539:1.0 3589:1.0 3602:1.0 3764:1.0 4092:1.0 4139:1.0 4615:1.0 5496:1.0 5717:1.0 9 3:3.0 18:0.16666666666666666 22:0.25 30:1.0 36:1.0 44:2.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.42857142857142855 78:0.4 143:0.3333333333333333 166:2.0 177:0.5 234:0.5 296:0.25 334:0.3333333333333333 335:0.6666666666666666 338:1.0 352:1.0 529:0.25 684:1.0 948:2.0 1194:1.0 2154:1.0 2321:0.2 3280:1.0 3493:1.0 3519:1.0 3614:0.5 3615:1.0 4364:1.0 6483:1.0 9 3:1.0 8:1.0 18:0.16666666666666666 28:1.0 30:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 65:0.2857142857142857 73:1.0 117:1.0 131:1.0 234:0.5 240:0.5 242:0.021739130434782608 283:0.2 296:0.125 335:0.6666666666666666 338:1.0 352:1.0 407:1.0 469:0.5 520:1.0 612:1.0 627:1.0 719:1.0 798:1.0 925:0.5 1395:1.0 1849:1.0 2159:1.0 2161:1.0 3230:1.0 3493:1.0 3602:1.0 3691:1.0 3798:1.0 4049:1.0 4512:1.0 5194:1.0 5927:1.0 6408:1.0 6434:1.0 9 3:1.0 18:0.16666666666666666 30:1.0 44:2.0 45:0.08333333333333333 65:0.2857142857142857 78:0.2 81:1.0 84:1.0 143:0.3333333333333333 160:0.3333333333333333 175:0.5 242:0.021739130434782608 278:0.5 290:0.16666666666666666 322:0.1 334:0.3333333333333333 335:0.6666666666666666 351:1.0 352:1.0 561:1.0 592:1.0 926:1.0 1213:1.0 1293:1.0 2454:1.0 3519:1.0 3919:1.0 4197:1.0 5973:1.0 9 3:1.0 4:0.1111111111111111 8:1.0 18:0.16666666666666666 22:0.25 28:1.0 30:1.0 46:0.021739130434782608 48:0.1875 49:0.08333333333333333 55:1.0 65:0.14285714285714285 72:0.3333333333333333 131:2.0 159:1.0 164:0.08333333333333333 178:1.0 242:0.021739130434782608 249:0.25 296:0.1875 306:1.0 335:0.3333333333333333 365:1.0 379:1.0 387:0.5 400:0.3333333333333333 485:1.0 612:1.0 644:1.0 832:1.0 936:0.5 938:1.0 948:1.0 1069:0.09090909090909091 1075:1.0 1162:1.0 1228:1.0 1395:1.0 1880:1.0 6072:1.0 9 3:1.0 4:0.1111111111111111 8:1.0 32:0.3333333333333333 48:0.0625 65:0.2857142857142857 89:1.0 131:1.0 249:0.25 335:0.3333333333333333 366:0.5 430:1.0 520:1.0 796:1.0 814:1.0 832:0.5 1395:1.0 1693:1.0 3385:1.0 3493:1.0 3515:0.25 3518:1.0 3527:1.0 4049:1.0 4204:1.0 5509:1.0 9 8:2.0 32:0.3333333333333333 36:1.0 65:0.14285714285714285 208:0.5 226:1.0 290:0.16666666666666666 335:0.3333333333333333 489:0.5 520:1.0 652:0.25 2703:1.0 3527:1.0 3550:1.0 5194:1.0 6037:1.0 9 3:1.0 13:0.3333333333333333 18:0.3333333333333333 46:0.08695652173913043 48:0.0625 65:0.14285714285714285 106:0.5 128:1.0 131:1.0 217:1.0 230:1.0 234:0.5 249:0.25 270:0.6666666666666666 296:0.1875 297:1.0 309:0.5 335:0.3333333333333333 338:1.0 579:2.0 612:1.0 637:0.5 639:1.0 652:0.25 749:0.5 785:0.5 826:1.0 1092:1.0 1147:1.0 1437:0.3333333333333333 1533:1.0 1572:1.0 1592:1.0 1957:1.0 2290:0.3333333333333333 2317:1.0 2321:0.06666666666666667 3527:1.0 3539:1.0 3540:1.0 3590:1.0 3622:1.0 3696:1.0 4406:1.0 5010:0.5 5033:1.0 5209:1.0 9 4:0.1111111111111111 13:0.3333333333333333 18:0.3333333333333333 48:0.125 60:1.0 73:1.0 120:1.0 335:0.3333333333333333 352:1.0 489:0.5 529:0.5 644:1.0 811:1.0 1081:1.0 1660:1.0 2501:1.0 3294:0.5 3527:1.0 3590:1.0 3622:1.0 3720:1.0 3782:0.3333333333333333 3958:1.0 4312:1.0 4317:1.0 5209:1.0 9 3:1.0 8:1.0 28:1.0 30:1.0 32:0.3333333333333333 36:2.0 45:0.08333333333333333 48:0.125 81:1.0 146:1.0 175:0.5 178:1.0 242:0.021739130434782608 271:1.0 296:0.0625 335:1.0 749:0.5 811:1.0 891:0.5 966:1.0 1294:2.0 1387:1.0 2645:0.25 3527:1.0 3602:1.0 3645:1.0 3911:1.0 3917:1.0 4406:1.0 4431:1.0 9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 21:1.0 30:1.0 44:2.0 46:0.021739130434782608 61:1.0 62:0.5 65:0.2857142857142857 84:1.0 206:1.0 208:0.5 242:0.021739130434782608 290:0.16666666666666666 335:0.6666666666666666 351:1.0 352:1.0 514:0.3333333333333333 638:0.3333333333333333 683:1.0 765:1.0 787:1.0 1272:0.14285714285714285 1303:0.3333333333333333 1967:1.0 2454:1.0 2523:1.0 3147:1.0 3280:1.0 3294:0.5 3566:1.0 3639:1.0 3733:1.0 3864:1.0 4049:1.0 4086:1.0 4203:1.0 4206:1.0 4207:1.0 4224:1.0 4364:1.0 5605:1.0 9 3:1.0 4:0.1111111111111111 8:1.0 18:0.16666666666666666 28:1.0 30:1.0 44:1.0 46:0.021739130434782608 48:0.125 65:0.14285714285714285 71:1.0 78:0.2 81:1.0 83:0.3333333333333333 120:1.0 166:1.0 178:1.0 234:0.5 242:0.021739130434782608 290:0.16666666666666666 291:1.0 296:0.0625 335:0.6666666666666666 469:0.5 484:1.0 529:0.25 627:1.0 691:1.0 811:1.0 832:0.5 1173:0.25 1174:1.0 1294:1.0 1471:1.0 1572:1.0 1882:1.0 2092:0.5 2321:0.06666666666666667 2480:1.0 2803:1.0 3397:0.3333333333333333 3527:1.0 3590:1.0 3772:1.0 3861:1.0 9 1:0.05263157894736842 4:0.3333333333333333 13:0.3333333333333333 15:0.3333333333333333 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 44:1.0 46:0.06521739130434782 48:0.0625 65:0.14285714285714285 71:1.0 139:0.16666666666666666 155:0.5 158:1.0 175:0.5 296:0.125 322:0.1 335:0.6666666666666666 352:1.0 469:0.5 583:1.0 639:1.0 644:3.0 652:0.25 814:1.0 842:1.0 891:0.5 917:2.0 968:1.0 987:1.0 1262:1.0 1572:1.0 2013:1.0 2159:1.0 2181:1.0 2395:0.5 2401:0.5 2811:1.0 2948:1.0 3260:1.0 3519:1.0 3602:1.0 3777:1.0 3808:1.0 3974:1.0 3991:1.0 4093:1.0 4429:1.0 9 3:1.0 8:1.0 13:0.3333333333333333 18:0.5 34:2.0 44:1.0 45:0.08333333333333333 46:0.021739130434782608 49:0.08333333333333333 65:0.14285714285714285 78:0.2 109:1.0 120:1.0 131:1.0 175:0.5 249:0.5 290:0.16666666666666666 296:0.0625 297:1.0 334:0.3333333333333333 335:0.3333333333333333 489:0.5 549:0.14285714285714285 638:0.3333333333333333 639:1.0 641:1.0 658:0.5 811:1.0 891:0.5 936:1.0 1120:0.5 1196:1.0 1213:1.0 1348:1.0 1437:0.3333333333333333 1894:1.0 2208:1.0 2493:1.0 3140:1.0 3527:1.0 3664:1.0 3671:1.0 4314:1.0 4702:1.0 5174:1.0 6604:1.0 9 3:1.0 4:0.2222222222222222 18:0.8333333333333334 36:1.0 44:1.0 46:0.021739130434782608 53:1.0 65:0.2857142857142857 78:0.4 81:2.0 92:0.5 114:0.4 117:1.0 175:0.5 222:1.0 249:0.25 334:0.3333333333333333 514:0.3333333333333333 639:1.0 749:0.5 759:0.5 765:1.0 1293:1.0 1427:1.0 1592:1.0 1729:1.0 1832:1.0 1929:1.0 1957:1.0 2092:0.5 3134:1.0 3527:1.0 3566:1.0 3622:1.0 3639:1.0 3733:1.0 3864:1.0 3878:1.0 3891:1.0 4049:1.0 4086:1.0 4087:1.0 4203:1.0 4206:1.0 4207:1.0 4354:1.0 4975:1.0 5605:1.0 9 3:3.0 8:1.0 13:0.3333333333333333 15:0.3333333333333333 18:0.16666666666666666 22:0.25 28:1.0 32:0.3333333333333333 44:2.0 45:0.08333333333333333 46:0.043478260869565216 49:0.25 65:0.42857142857142855 72:0.3333333333333333 78:0.2 106:0.5 117:1.0 249:0.25 271:1.0 296:0.0625 322:0.1 335:0.3333333333333333 351:1.0 352:2.0 387:0.5 469:0.5 520:1.0 526:1.0 639:2.0 652:0.25 750:0.5 1056:1.0 1069:0.09090909090909091 1081:1.0 1092:1.0 1093:0.25 1131:0.2 1213:1.0 1244:0.5 3132:1.0 3519:1.0 3527:1.0 3560:1.0 3649:1.0 3679:1.0 3953:1.0 4139:1.0 4539:0.5 6449:1.0 9 3:1.0 4:0.1111111111111111 12:0.5 30:1.0 34:1.0 44:1.0 46:0.021739130434782608 48:0.1875 53:1.0 62:0.5 66:1.0 73:1.0 89:0.5 92:0.5 149:1.0 270:0.3333333333333333 297:1.0 322:0.1 335:0.3333333333333333 344:1.0 352:1.0 400:0.3333333333333333 529:0.5 938:1.0 1056:1.0 1081:1.0 1152:1.0 1268:1.0 1929:1.0 1951:0.5 3519:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3554:1.0 3602:1.0 3959:1.0 3998:1.0 4021:1.0 4578:1.0 9 8:1.0 18:0.3333333333333333 28:1.0 30:1.0 46:0.043478260869565216 53:1.0 139:0.16666666666666666 155:0.5 175:0.5 229:1.0 249:0.25 296:0.0625 445:1.0 470:1.0 489:0.5 529:0.25 684:1.0 873:1.0 929:1.0 938:1.0 1074:0.25 1075:1.0 1536:0.3333333333333333 1630:0.3333333333333333 1823:1.0 2219:0.5 2317:1.0 3081:1.0 3330:1.0 3519:1.0 3527:1.0 3691:1.0 4021:1.0
3800d79d98a379a14a321eeb37492eb8d71b074e
449d555969bfd7befe906877abab098c6e63a0e8
/1019/CH5/EX5.16/Example_5_16.sce
7f59ba9854f51bd7838813fbb3fe8db3f1e094cf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
323
sce
Example_5_16.sce
//Example 5.16 clear; clc; //Given delE=-2880;//internal energy in kJ mol^-1 delS=182.4;//Entropy in J K^-1 mol^-1 T=298;//Temperature in K //To determine delA delA=delE-(T*delS*0.001);//helmoltz free energy in kJ mol^-1 mprintf('The amount of energy that can be extracted as heat = %f kJ mol^-1',delA); //end
3ad806769b92bba9d323d5231b8e343d26eb3a76
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects - Kopie/CONT/XG57FZY/ATWM1_Working_Memory_MEG_XG57FZY_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
5942ee864559b93ad9da99931503951488abf0c0
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,618
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 62 292 292 399 125 1992 2992 2392 fixation_cross gabor_148 gabor_126 gabor_098 gabor_065 gabor_148_alt gabor_126 gabor_098_alt gabor_065 "1_1_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2400_gabor_patch_orientation_148_126_098_065_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_065_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_017 gabor_175 gabor_142 gabor_037 gabor_017_alt gabor_175_alt gabor_142 gabor_037 "1_2_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_017_175_142_037_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_097_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2442 fixation_cross gabor_023 gabor_006 gabor_084 gabor_064 gabor_023 gabor_006_alt gabor_084_alt gabor_064 "1_3_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_023_006_084_064_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_179 gabor_036 gabor_113 gabor_096 gabor_179 gabor_036_alt gabor_113 gabor_096_alt "1_4_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_179_036_113_096_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_160_framed gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_134 gabor_002 gabor_021 gabor_155 gabor_134_alt gabor_002 gabor_021_alt gabor_155 "1_5_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_134_002_021_155_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_155_framed blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_119 gabor_163 gabor_008 gabor_098 gabor_119 gabor_163 gabor_008_alt gabor_098_alt "1_6_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_119_163_008_098_target_position_1_2_retrieval_position_1" gabor_073_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2242 2992 2592 fixation_cross gabor_008 gabor_082 gabor_114 gabor_162 gabor_008_alt gabor_082_alt gabor_114 gabor_162 "1_7_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2600_gabor_patch_orientation_008_082_114_162_target_position_3_4_retrieval_position_2" gabor_circ gabor_131_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_023 gabor_089 gabor_177 gabor_154 gabor_023 gabor_089_alt gabor_177_alt gabor_154 "1_8_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_023_089_177_154_target_position_1_4_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1892 2992 2242 fixation_cross gabor_131 gabor_048 gabor_176 gabor_109 gabor_131_alt gabor_048 gabor_176_alt gabor_109 "1_9_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2250_gabor_patch_orientation_131_048_176_109_target_position_2_4_retrieval_position_1" gabor_131_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_109 gabor_001 gabor_072 gabor_029 gabor_109 gabor_001 gabor_072_alt gabor_029_alt "1_10_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_109_001_072_029_target_position_1_2_retrieval_position_1" gabor_109_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_085 gabor_070 gabor_051 gabor_112 gabor_085_alt gabor_070_alt gabor_051 gabor_112 "1_11_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_085_070_051_112_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_071 gabor_092 gabor_177 gabor_015 gabor_071_alt gabor_092 gabor_177 gabor_015_alt "1_12_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_071_092_177_015_target_position_2_3_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_094 gabor_060 gabor_076 gabor_004 gabor_094 gabor_060_alt gabor_076 gabor_004_alt "1_13_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_094_060_076_004_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_076_framed gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_076_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_019 gabor_143 gabor_161 gabor_125 gabor_019_alt gabor_143 gabor_161_alt gabor_125 "1_14_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_019_143_161_125_target_position_2_4_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_060 gabor_112 gabor_138 gabor_087 gabor_060_alt gabor_112 gabor_138 gabor_087_alt "1_15_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_060_112_138_087_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_003_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_108 gabor_178 gabor_070 gabor_123 gabor_108 gabor_178_alt gabor_070_alt gabor_123 "1_16_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_108_178_070_123_target_position_1_4_retrieval_position_1" gabor_108_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2092 2992 2142 fixation_cross gabor_052 gabor_003 gabor_170 gabor_081 gabor_052 gabor_003 gabor_170_alt gabor_081_alt "1_17_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2150_gabor_patch_orientation_052_003_170_081_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_033_framed gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_033_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_062 gabor_147 gabor_007 gabor_025 gabor_062_alt gabor_147 gabor_007 gabor_025_alt "1_18_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_062_147_007_025_target_position_2_3_retrieval_position_2" gabor_circ gabor_097_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_169 gabor_141 gabor_008 gabor_029 gabor_169 gabor_141 gabor_008_alt gabor_029_alt "1_19_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_169_141_008_029_target_position_1_2_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2242 2992 2492 fixation_cross gabor_155 gabor_004 gabor_084 gabor_027 gabor_155_alt gabor_004_alt gabor_084 gabor_027 "1_20_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2500_gabor_patch_orientation_155_004_084_027_target_position_3_4_retrieval_position_2" gabor_circ gabor_139_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_139_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_027 gabor_142 gabor_057 gabor_074 gabor_027_alt gabor_142 gabor_057 gabor_074_alt "1_21_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_027_142_057_074_target_position_2_3_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_166 gabor_148 gabor_092 gabor_030 gabor_166 gabor_148 gabor_092_alt gabor_030_alt "1_22_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_166_148_092_030_target_position_1_2_retrieval_position_1" gabor_166_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_147 gabor_010 gabor_125 gabor_173 gabor_147 gabor_010_alt gabor_125 gabor_173_alt "1_23_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_147_010_125_173_target_position_1_3_retrieval_position_1" gabor_147_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_081 gabor_021 gabor_164 gabor_056 gabor_081_alt gabor_021_alt gabor_164 gabor_056 "1_24_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_081_021_164_056_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_065 gabor_020 gabor_127 gabor_173 gabor_065 gabor_020 gabor_127_alt gabor_173_alt "1_25_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_065_020_127_173_target_position_1_2_retrieval_position_2" gabor_circ gabor_020_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2092 2992 1992 fixation_cross gabor_050 gabor_116 gabor_026 gabor_180 gabor_050 gabor_116_alt gabor_026_alt gabor_180 "1_26_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_050_116_026_180_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_026_framed gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_026_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_101 gabor_066 gabor_154 gabor_085 gabor_101_alt gabor_066_alt gabor_154 gabor_085 "1_27_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_101_066_154_085_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_039_framed blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_007 gabor_144 gabor_071 gabor_178 gabor_007_alt gabor_144 gabor_071_alt gabor_178 "1_28_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_007_144_071_178_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1942 2992 1942 fixation_cross gabor_037 gabor_179 gabor_106 gabor_122 gabor_037 gabor_179_alt gabor_106 gabor_122_alt "1_29_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_037_179_106_122_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_072_framed blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_072_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_082 gabor_124 gabor_147 gabor_104 gabor_082 gabor_124 gabor_147_alt gabor_104_alt "1_30_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_082_124_147_104_target_position_1_2_retrieval_position_2" gabor_circ gabor_169_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_037 gabor_113 gabor_067 gabor_173 gabor_037 gabor_113_alt gabor_067_alt gabor_173 "1_31_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_037_113_067_173_target_position_1_4_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2242 2992 2542 fixation_cross gabor_131 gabor_048 gabor_004 gabor_168 gabor_131_alt gabor_048 gabor_004 gabor_168_alt "1_32_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_131_048_004_168_target_position_2_3_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_013 gabor_033 gabor_155 gabor_139 gabor_013_alt gabor_033 gabor_155_alt gabor_139 "1_33_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_013_033_155_139_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_166 gabor_137 gabor_010 gabor_119 gabor_166 gabor_137 gabor_010_alt gabor_119_alt "1_34_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_166_137_010_119_target_position_1_2_retrieval_position_2" gabor_circ gabor_137_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2142 2992 2192 fixation_cross gabor_144 gabor_116 gabor_078 gabor_165 gabor_144 gabor_116_alt gabor_078_alt gabor_165 "1_35_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2200_gabor_patch_orientation_144_116_078_165_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_033_framed gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_033_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_098 gabor_066 gabor_131 gabor_115 gabor_098 gabor_066_alt gabor_131_alt gabor_115 "1_36_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_098_066_131_115_target_position_1_4_retrieval_position_1" gabor_148_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_174 gabor_031 gabor_097 gabor_112 gabor_174_alt gabor_031 gabor_097_alt gabor_112 "1_37_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_174_031_097_112_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 1992 fixation_cross gabor_037 gabor_143 gabor_015 gabor_059 gabor_037_alt gabor_143 gabor_015 gabor_059_alt "1_38_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_037_143_015_059_target_position_2_3_retrieval_position_2" gabor_circ gabor_143_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_002 gabor_051 gabor_115 gabor_177 gabor_002 gabor_051_alt gabor_115 gabor_177_alt "1_39_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_002_051_115_177_target_position_1_3_retrieval_position_1" gabor_137_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_107 gabor_174 gabor_022 gabor_042 gabor_107 gabor_174 gabor_022_alt gabor_042_alt "1_40_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_107_174_022_042_target_position_1_2_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2092 2992 2442 fixation_cross gabor_042 gabor_069 gabor_152 gabor_087 gabor_042 gabor_069_alt gabor_152 gabor_087_alt "1_41_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_042_069_152_087_target_position_1_3_retrieval_position_1" gabor_042_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1942 2992 2592 fixation_cross gabor_127 gabor_146 gabor_174 gabor_019 gabor_127_alt gabor_146 gabor_174 gabor_019_alt "1_42_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2600_gabor_patch_orientation_127_146_174_019_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_066_framed blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_066_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_133 gabor_151 gabor_001 gabor_112 gabor_133 gabor_151_alt gabor_001_alt gabor_112 "1_43_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_133_151_001_112_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1742 2992 2142 fixation_cross gabor_068 gabor_084 gabor_029 gabor_008 gabor_068 gabor_084 gabor_029_alt gabor_008_alt "1_44_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_068_084_029_008_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_008_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_008_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_050 gabor_026 gabor_172 gabor_089 gabor_050 gabor_026_alt gabor_172_alt gabor_089 "1_45_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_050_026_172_089_target_position_1_4_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_022 gabor_093 gabor_004 gabor_135 gabor_022_alt gabor_093 gabor_004 gabor_135_alt "1_46_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_022_093_004_135_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_083 gabor_006 gabor_057 gabor_024 gabor_083 gabor_006_alt gabor_057_alt gabor_024 "1_47_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_083_006_057_024_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_024_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_055 gabor_096 gabor_024 gabor_161 gabor_055 gabor_096_alt gabor_024 gabor_161_alt "1_48_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_055_096_024_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_024_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1742 2992 2242 fixation_cross gabor_045 gabor_094 gabor_164 gabor_017 gabor_045_alt gabor_094 gabor_164_alt gabor_017 "1_49_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2250_gabor_patch_orientation_045_094_164_017_target_position_2_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_045_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_130 gabor_092 gabor_160 gabor_052 gabor_130 gabor_092_alt gabor_160 gabor_052_alt "1_50_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_130_092_160_052_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_160_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 1892 fixation_cross gabor_139 gabor_051 gabor_070 gabor_111 gabor_139_alt gabor_051 gabor_070_alt gabor_111 "1_51_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_139_051_070_111_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_111_framed blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_132 gabor_152 gabor_018 gabor_043 gabor_132_alt gabor_152 gabor_018_alt gabor_043 "1_52_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_132_152_018_043_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 1992 fixation_cross gabor_084 gabor_038 gabor_056 gabor_118 gabor_084_alt gabor_038 gabor_056 gabor_118_alt "1_53_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_084_038_056_118_target_position_2_3_retrieval_position_2" gabor_circ gabor_173_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1992 2992 2292 fixation_cross gabor_090 gabor_105 gabor_138 gabor_072 gabor_090_alt gabor_105_alt gabor_138 gabor_072 "1_54_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_090_105_138_072_target_position_3_4_retrieval_position_2" gabor_circ gabor_056_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_056_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_094 gabor_044 gabor_067 gabor_150 gabor_094_alt gabor_044 gabor_067_alt gabor_150 "1_55_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_094_044_067_150_target_position_2_4_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_017 gabor_172 gabor_131 gabor_105 gabor_017 gabor_172_alt gabor_131 gabor_105_alt "1_56_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_017_172_131_105_target_position_1_3_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_005 gabor_027 gabor_132 gabor_074 gabor_005 gabor_027_alt gabor_132 gabor_074_alt "1_57_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_005_027_132_074_target_position_1_3_retrieval_position_1" gabor_050_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_076 gabor_045 gabor_118 gabor_166 gabor_076 gabor_045 gabor_118_alt gabor_166_alt "1_58_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_076_045_118_166_target_position_1_2_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_171 gabor_104 gabor_089 gabor_119 gabor_171 gabor_104_alt gabor_089 gabor_119_alt "1_59_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_171_104_089_119_target_position_1_3_retrieval_position_1" gabor_035_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_020 gabor_134 gabor_094 gabor_167 gabor_020 gabor_134_alt gabor_094 gabor_167_alt "1_60_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_020_134_094_167_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_049_framed gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_170 gabor_012 gabor_080 gabor_050 gabor_170_alt gabor_012 gabor_080 gabor_050_alt "1_61_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_170_012_080_050_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_080_framed gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_037 gabor_097 gabor_115 gabor_160 gabor_037 gabor_097_alt gabor_115_alt gabor_160 "1_62_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_037_097_115_160_target_position_1_4_retrieval_position_2" gabor_circ gabor_097_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_097_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_084 gabor_038 gabor_126 gabor_104 gabor_084_alt gabor_038_alt gabor_126 gabor_104 "1_63_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_084_038_126_104_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_115 gabor_130 gabor_047 gabor_002 gabor_115 gabor_130_alt gabor_047 gabor_002_alt "1_64_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_115_130_047_002_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_092_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_155 gabor_068 gabor_049 gabor_014 gabor_155_alt gabor_068 gabor_049 gabor_014_alt "1_65_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_155_068_049_014_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_097_framed gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_138 gabor_073 gabor_007 gabor_026 gabor_138_alt gabor_073_alt gabor_007 gabor_026 "1_66_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_138_073_007_026_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_007_framed gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_080 gabor_006 gabor_159 gabor_036 gabor_080 gabor_006_alt gabor_159 gabor_036_alt "1_67_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_080_006_159_036_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_112_framed gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2242 2992 2342 fixation_cross gabor_159 gabor_054 gabor_031 gabor_075 gabor_159_alt gabor_054_alt gabor_031 gabor_075 "1_68_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2350_gabor_patch_orientation_159_054_031_075_target_position_3_4_retrieval_position_1" gabor_159_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_159_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_042 gabor_005 gabor_154 gabor_128 gabor_042 gabor_005 gabor_154_alt gabor_128_alt "1_69_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_042_005_154_128_target_position_1_2_retrieval_position_1" gabor_042_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1792 2992 1892 fixation_cross gabor_152 gabor_126 gabor_171 gabor_094 gabor_152_alt gabor_126 gabor_171_alt gabor_094 "1_70_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_1900_gabor_patch_orientation_152_126_171_094_target_position_2_4_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_152_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
b2883085f554ab93db8d34946465bf10a048ce56
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH7/EX7.2/Ex7_2.sce
c94b7217c3d9fa9cdb2f1c2d5d000206a0200352
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,543
sce
Ex7_2.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 7 Example 2") m=1;//mass of air in kg Po=1*10^5;//atmospheric pressure in pa To=(15+273);//temperature of atmosphere in K Cv=0.717;//specific heat at constant volume in KJ/kg K R=0.287;//gas constant in KJ/kg K Cp=1.004;//specific heat at constant pressure in KJ/kg K T=(50+273);//temperature of tanks A and B in K disp("In these tanks the air stored is at same temperature of 50 degree celcius.Therefore,for air behaving as perfect gas the internal energy of air in tanks shall be same as it depends upon temperature alone.But the availability shall be different.") disp("BOTH THE TANKS HAVE SAME INTERNAL ENERGY") disp("availability of air in tank,A") disp("A=(E-Uo)+Po*(V-Vo)-To*(S-So)") disp("=m*{(e-uo)+Po(v-vo)-To(s-so)}") disp("m*{Cv*(T-To)+Po*(R*T/P-R*To/Po)-To(Cp*log(T/To)-R*log(P/Po))}") disp("so A=m*{Cv*(T-To)+R*(Po*T/P-To)-To*Cp*log(T/To)+To*R*log(P/Po)}") disp("for tank A,P=1*10^5 pa,so availability_A in KJ") P=1*10^5;//pressure in tank A in pa availability_A=m*{Cv*(T-To)+R*(Po*T/P-To)-To*Cp*log(T/To)+To*R*log(P/Po)} disp("for tank B,P=3*10^5 pa,so availability_B in KJ") P=3*10^5;//pressure in tank B in pa availability_B=m*{Cv*(T-To)+R*(Po*T/P-To)-To*Cp*log(T/To)+To*R*log(P/Po)} disp("so availability of air in tank B is more than that of tank A") disp("availability of air in tank A=1.98 KJ") disp("availability of air in tank B=30.98 KJ")
58dae19f50eee560cefd7849901cb040670c1c3a
449d555969bfd7befe906877abab098c6e63a0e8
/1055/CH4/EX4.2/ch4_2.sce
d66746400d3fd2df608c8ea75c6c3a8242931f3b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
913
sce
ch4_2.sce
//To determine power input and output (i) star connected (ii)delta connected clear clc; mprintf("when load is star connected\n"); Vln=400/sqrt(3);// Line to neutral voltage(V) Z=7+ %i*11;//Impedence per phase Il=231/Z;// line current(amp.) I=abs(231/Z); Pi=3*I*I*7; Po=3*I*I*6; mprintf("power input =%.0f watts\n",Pi);//Answers don't match due to difference in rounding off of digits mprintf("power output=%.0f watts\n",Po);//Answers don't match due to difference in rounding off of digits mprintf("when load is delta connected\n"); Ze=2+ %i*3;// equivalent impedence(ohm) Zp=3+%i*5;// impedence per phase il=231/Zp;//Line current(amps.) IL=abs(il); pi=3*IL*IL*3; po=3*IL*IL*2; mprintf("power input=%.1f watts\n",pi);//Answers don't match due to difference in rounding off of digits mprintf("power output = %.0f watts \n",po);//Answers don't match due to difference in rounding off of digits
13b84f74660fdb37db2a51af9e8cd7ad3768fa64
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/percent/%lssis.sci
0007f84534da581208c4d258813ff19f4d495fe9
[ "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
437
sci
%lssis.sci
function s=%lssis(i,j,s1,s2) //%lssis(i,j,s1,s2) calcule l'insertion d'un sous systeme lineaire // decrit par une representation d'etat dans un transfert statique //Cette macro correspond a l'operation s2(i,j)=s1 //! // origine s. steer inria 1992 // if type(i)==10|type(j)==10 then error(21) end [a1,b1,c1,d1,x1,dom1]=s1(2:7) d2=s2; [n1,n1]=size(a1); b2(1:n1,j)=b1 c2(i,1:n1)=c1 d2(i,j)=d1; s=tlist('lss',a1,b2,c2,d2,x1,dom1)
952467446c511b3d50c81bfd58fd6feec4b02d4b
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH7/EX7.2/7_02.sce
cb45139162b2fde5aa0723b56100d77f480da7f9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
7_02.sce
//Chapter 1, Problem 2 clc; phi=353*10^-3; //Flux B=1.8; //Flux density A=phi/B; //Area of pole face r=sqrt(A/%pi); //Radius printf("The radius of the pole face = %f mm",r*1000);
ac7423d2e3d047f40a1eb5f6ad29f7e376273609
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/GOLD-TEST/uig.tst
f457009ad4d2164b9368a911759334923e1e7079
[]
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
65,000
tst
uig.tst
agahlandurmaq agahlandurdi V;SG;3;PST agahlandurmaq agahlanruwatimiz V;PROG;PL;1;PRS agahlandurmaq agahlandurmighanidi V;PRF;PL;3;NEG;PST agahlandurmaq agahlandurdingiz V;FRML;SG;2;PST agahlandurmaq agahlanduruwatatting V;PROG;SG;2;INFM;PST agahlandurmaq agahlanduridu V;IPFV;PL;3;PRS agahlandurmaq agahlanduratti V;IPFV;SG;3;PST agahlandurmaq agahlandurmaqchidi V;INTEN;SG;3;PST agahlandurmaq agahlandurisiler V;IPFV;PL;2;PRS agahlandurmaq agahlandurmaqchi V;INTEN;SG;3;PRS agahlandurmaq agahlandurattingiz V;IPFV;FRML;SG;2;PST agahlandurmaq agahlanduruwatidu V;PROG;PL;3;PRS agahlandurmaq agahlandurghanidi V;PRF;SG;3;PST agahlandurmaq agahlandurattuq V;IPFV;PL;1;PST agahlandurmaq agahlandurdinglar V;PL;2;PST agahlandurmaq agahlandurmaqchidi V;INTEN;PL;3;PST agahlandurmaq agahlandurmighaniduq V;PRF;PL;1;NEG;PST agahlandurmaq agahlandurisen V;IPFV;SG;2;INFM;PRS agahlandurmaq agahlandurghanidinglar V;PRF;PL;2;PST agahlandurmaq agahlandurmaqchidingiz V;FRML;INTEN;SG;2;PST agahlandurmaq agahlanduruwatattim V;PROG;SG;1;PST agahlandurmaq agahlanduridu V;IPFV;SG;3;PRS agahlandurmaq agahlandurghaniding V;PRF;SG;2;INFM;PST agahlandurmaq agahlandurimiz V;IPFV;PL;1;PRS agahlandurmaq agahlandurdi V;PL;3;PST agahlandurmaq agahlandurmighaniding V;PRF;SG;2;NEG;INFM;PST agahlandurmaq agahlanduruwatatti V;PROG;SG;3;PST agahlandurmaq agahlandurghaniduq V;PRF;PL;1;PST agahlandurmaq agahlandurmaqchi V;INTEN;PL;3;PRS agahlandurmaq agahlandurghan V;PRF;SG;3;PRS agahlandurmaq agahlandurmidi V;SG;3;NEG;PST agahlandurmaq agahlandurmighanidingiz V;PRF;FRML;SG;2;NEG;PST agahlandurmaq agahlandurmaqchiding V;INTEN;SG;2;INFM;PST agahlandurmaq agahlandurmighan V;PRF;PL;3;NEG;PRS agahlandurmaq agahlandurghanmiz V;PRF;PL;1;PRS agahlandurmaq agahlandurmidi V;PL;3;NEG;PST agahlandurmaq agahlandurmaqchimen V;INTEN;SG;1;PRS agahlandurmaq agahlanduruwatattingiz V;PROG;FRML;SG;2;PST agahlandurmaq agahlandurghanidingiz V;PRF;FRML;SG;2;PST agahlandurmaq agahlanduratting V;IPFV;SG;2;INFM;PST agahlandurmaq agahlandurmighanidinglar V;PRF;PL;2;NEG;PST agahlandurmaq agahlanduruwatidu V;PROG;SG;3;PRS agahlandurmaq agahlandurghan V;PRF;PL;3;PRS agahlandurmaq agahlandurghanidim V;PRF;SG;1;PST agahlandurmaq agahlandurmaqchisiz V;FRML;INTEN;SG;2;PRS agahlandurmaq agahlandurmiding V;SG;2;NEG;INFM;PST agahlandurmaq agahlanruwatimen V;PROG;SG;1;PRS agahlandurmaq agahlandurmighanmiz V;PRF;PL;1;NEG;PRS agahlandurmaq agahlandurattim V;IPFV;SG;1;PST agahlandurmaq agahlandurmighansiz V;PRF;FRML;SG;2;NEG;PRS agahlandurmaq agahlandurmighansen V;PRF;SG;2;NEG;INFM;PRS agahlandurmaq agahlandurmaqchimiz V;INTEN;PL;1;PRS agahlandurmaq agahlandurmaqchiduq V;INTEN;PL;1;PST agahlandurmaq agahlandurmiduq V;PL;1;NEG;PST agahlandurmaq agahlandurdim V;SG;1;PST agahlandurmaq agahlandurmighanidim V;PRF;SG;1;NEG;PST agahlandurmaq agahlanruwatisiler V;PROG;PL;2;PRS agahlandurmaq agahlandurmidingiz V;FRML;SG;2;NEG;PST agahlandurmaq agahlandurmaqchidim V;INTEN;SG;1;PST agahlandurmaq agahlandurmighan V;PRF;SG;3;NEG;PRS agahlandurmaq agahlanduruwatattinglar V;PROG;PL;2;PST agahlandurmaq agahlanduruwatattuq V;PROG;PL;1;PST agahlandurmaq agahlandurding V;SG;2;INFM;PST agahlandurmaq agahlanruwatisen V;PROG;SG;2;INFM;PRS agahlandurmaq agahlandurimen V;IPFV;SG;1;PRS agahlandurmaq agahlandurghanmen V;PRF;SG;1;PRS agahlandurmaq agahlandurmidim V;SG;1;NEG;PST agahlandurmaq agahlandurmighanidi V;PRF;SG;3;NEG;PST agahlandurmaq agahlandurmighanmen V;PRF;SG;1;NEG;PRS agahlandurmaq agahlandurisiz V;IPFV;FRML;SG;2;PRS agahlandurmaq agahlandurduq V;PL;1;PST agahlandurmaq agahlandurghanidi V;PRF;PL;3;PST agahlandurmaq agahlandurmighansiler V;PRF;PL;2;NEG;PRS agahlandurmaq agahlanruwatisiz V;PROG;FRML;SG;2;PRS agahlandurmaq agahlandurattinglar V;IPFV;PL;2;PST agahlandurmaq agahlandurmaqchisen V;INTEN;SG;2;INFM;PRS agahlandurmaq agahlandurghansen V;PRF;SG;2;INFM;PRS agahlandurmaq agahlandurghansiz V;PRF;FRML;SG;2;PRS agahlandurmaq agahlanduruwatatti V;PROG;PL;3;PST agahlandurmaq agahlandurghansiler V;PRF;PL;2;PRS agahlandurmaq agahlandurmaqchidinglar V;INTEN;PL;2;PST agahlandurmaq agahlandurmaqchisiler V;INTEN;PL;2;PRS agahlandurmaq agahlandurmidinglar V;PL;2;NEG;PST agahlandurmaq agahlanduratti V;IPFV;PL;3;PST yazmaq yazmiding V;SG;2;NEG;INFM;PST yazmaq yazmighaniduq V;PRF;PL;1;NEG;PST yazmaq yazmighanidim V;PRF;SG;1;NEG;PST yazmaq yazattim V;IPFV;SG;1;PST yazmaq yazmaqchidim V;INTEN;SG;1;PST yazmaq yazisiz V;IPFV;FRML;SG;2;PRS yazmaq yazmighansiz V;PRF;FRML;SG;2;NEG;PRS yazmaq yazdim V;SG;1;PST yazmaq yazghan V;PRF;PL;3;PRS yazmaq yazmaqchimen V;INTEN;SG;1;PRS yazmaq yazghaniding V;PRF;SG;2;INFM;PST yazmaq yazghanidinglar V;PRF;PL;2;PST yazmaq yazmighanmiz V;PRF;PL;1;NEG;PRS yazmaq yazmaqchiduq V;INTEN;PL;1;PST yazmaq yazattingiz V;IPFV;FRML;SG;2;PST yazmaq yazmighan V;PRF;SG;3;NEG;PRS yazmaq yazdi V;SG;3;PST yazmaq yazmiduq V;PL;1;NEG;PST yazmaq yéziwatisen V;PROG;SG;2;INFM;PRS yazmaq yazatting V;IPFV;SG;2;INFM;PST yazmaq yazimen V;IPFV;SG;1;PRS yazmaq yéziwatidu V;PROG;PL;3;PRS yazmaq yazmaqchimiz V;INTEN;PL;1;PRS yazmaq yazmighansiler V;PRF;PL;2;NEG;PRS yazmaq yéziwatidu V;PROG;SG;3;PRS yazmaq yazghanidingiz V;PRF;FRML;SG;2;PST yazmaq yazmighanmen V;PRF;SG;1;NEG;PRS yazmaq yazghanmiz V;PRF;PL;1;PRS yazmaq yazmaqchi V;INTEN;SG;3;PRS yazmaq yazidu V;IPFV;SG;3;PRS yazmaq yazdinglar V;PL;2;PST yazmaq yazghanidi V;PRF;SG;3;PST yazmaq yazmighan V;PRF;PL;3;NEG;PRS yazmaq yazmighanidi V;PRF;PL;3;NEG;PST yazmaq yazghansiler V;PRF;PL;2;PRS yazmaq yazatti V;IPFV;SG;3;PST yazmaq yazmaqchisiler V;INTEN;PL;2;PRS yazmaq yazmighanidinglar V;PRF;PL;2;NEG;PST yazmaq yazmaqchisiz V;FRML;INTEN;SG;2;PRS yazmaq yazidu V;IPFV;PL;3;PRS yazmaq yazmighansen V;PRF;SG;2;NEG;INFM;PRS yazmaq yéziwatatti V;PROG;PL;3;PST yazmaq yéziwatatting V;PROG;SG;2;INFM;PST yazmaq yazdi V;PL;3;PST yazmaq yazattinglar V;IPFV;PL;2;PST yazmaq yazdingiz V;FRML;SG;2;PST yazmaq yéziwatattingiz V;PROG;FRML;SG;2;PST yazmaq yazmaqchidi V;INTEN;SG;3;PST yazmaq yazmidi V;PL;3;NEG;PST yazmaq yazisen V;IPFV;SG;2;INFM;PRS yazmaq yazding V;SG;2;INFM;PST yazmaq yazmidim V;SG;1;NEG;PST yazmaq yazmaqchiding V;INTEN;SG;2;INFM;PST yazmaq yéziwatisiz V;PROG;FRML;SG;2;PRS yazmaq yazmaqchidingiz V;FRML;INTEN;SG;2;PST yazmaq yazimiz V;IPFV;PL;1;PRS yazmaq yazmaqchisen V;INTEN;SG;2;INFM;PRS yazmaq yazghansiz V;PRF;FRML;SG;2;PRS yazmaq yazmaqchi V;INTEN;PL;3;PRS yazmaq yazghaniduq V;PRF;PL;1;PST yazmaq yazmidinglar V;PL;2;NEG;PST yazmaq yazmighanidi V;PRF;SG;3;NEG;PST yazmaq yazghanidim V;PRF;SG;1;PST yazmaq yazmidingiz V;FRML;SG;2;NEG;PST yazmaq yazmidi V;SG;3;NEG;PST yazmaq yéziwatattinglar V;PROG;PL;2;PST yazmaq yazduq V;PL;1;PST yazmaq yazghansen V;PRF;SG;2;INFM;PRS yazmaq yazisiler V;IPFV;PL;2;PRS yazmaq yéziwatattuq V;PROG;PL;1;PST yazmaq yazghanidi V;PRF;PL;3;PST yazmaq yéziwatisiler V;PROG;PL;2;PRS yazmaq yazghanmen V;PRF;SG;1;PRS yazmaq yazatti V;IPFV;PL;3;PST yazmaq yéziwatimen V;PROG;SG;1;PRS yazmaq yazmighanidingiz V;PRF;FRML;SG;2;NEG;PST yazmaq yéziwatattim V;PROG;SG;1;PST yazmaq yazmighaniding V;PRF;SG;2;NEG;INFM;PST yazmaq yazmaqchidi V;INTEN;PL;3;PST yazmaq yéziwatimiz V;PROG;PL;1;PRS yazmaq yéziwatatti V;PROG;SG;3;PST yazmaq yazmaqchidinglar V;INTEN;PL;2;PST yazmaq yazghan V;PRF;SG;3;PRS yazmaq yazattuq V;IPFV;PL;1;PST dawamlashturmaq dawamlashturghanidingiz V;PRF;FRML;SG;2;PST dawamlashturmaq dawamlashturatti V;IPFV;SG;3;PST dawamlashturmaq dawamlashturmidingiz V;FRML;SG;2;NEG;PST dawamlashturmaq dawamlashturmiding V;SG;2;NEG;INFM;PST dawamlashturmaq dawamlashturdinglar V;PL;2;PST dawamlashturmaq dawamlashturmiduq V;PL;1;NEG;PST dawamlashturmaq dawamlashturiwatimen V;PROG;SG;1;PRS dawamlashturmaq dawamlashturisiz V;IPFV;FRML;SG;2;PRS dawamlashturmaq dawamlashturimiz V;IPFV;PL;1;PRS dawamlashturmaq dawamlashturmighaniding V;PRF;SG;2;NEG;INFM;PST dawamlashturmaq dawamlashturmidinglar V;PL;2;NEG;PST dawamlashturmaq dawamlashturimen V;IPFV;SG;1;PRS dawamlashturmaq dawamlashturiwatisen V;PROG;SG;2;INFM;PRS dawamlashturmaq dawamlashturidu V;IPFV;SG;3;PRS dawamlashturmaq dawamlashturmaqchimiz V;INTEN;PL;1;PRS dawamlashturmaq dawamlashturidu V;IPFV;PL;3;PRS dawamlashturmaq dawamlashturisen V;IPFV;SG;2;INFM;PRS dawamlashturmaq dawamlashturghan V;PRF;SG;3;PRS dawamlashturmaq dawamlashturmaqchisiz V;FRML;INTEN;SG;2;PRS dawamlashturmaq dawamlashturmighansen V;PRF;SG;2;NEG;INFM;PRS dawamlashturmaq dawamlashturmighanidingiz V;PRF;FRML;SG;2;NEG;PST dawamlashturmaq dawamlashturattim V;IPFV;SG;1;PST dawamlashturmaq dawamlashturmighanidinglar V;PRF;PL;2;NEG;PST dawamlashturmaq dawamlashturmighan V;PRF;SG;3;NEG;PRS dawamlashturmaq dawamlashturmaqchidingiz V;FRML;INTEN;SG;2;PST dawamlashturmaq dawamlashturghanidinglar V;PRF;PL;2;PST dawamlashturmaq dawamlashturghaniding V;PRF;SG;2;INFM;PST dawamlashturmaq dawamlashturuwatatting V;PROG;SG;2;INFM;PST dawamlashturmaq dawamlashturghanidim V;PRF;SG;1;PST dawamlashturmaq dawamlashturuwatattinglar V;PROG;PL;2;PST dawamlashturmaq dawamlashturuwatattim V;PROG;SG;1;PST dawamlashturmaq dawamlashturmaqchiding V;INTEN;SG;2;INFM;PST dawamlashturmaq dawamlashturuwatattuq V;PROG;PL;1;PST dawamlashturmaq dawamlashturghanidi V;PRF;PL;3;PST dawamlashturmaq dawamlashturiwatisiler V;PROG;PL;2;PRS dawamlashturmaq dawamlashturiwatidu V;PROG;PL;3;PRS dawamlashturmaq dawamlashturuwatatti V;PROG;PL;3;PST dawamlashturmaq dawamlashturdim V;SG;1;PST dawamlashturmaq dawamlashturmighan V;PRF;PL;3;NEG;PRS dawamlashturmaq dawamlashturghansen V;PRF;SG;2;INFM;PRS dawamlashturmaq dawamlashturattingiz V;IPFV;FRML;SG;2;PST dawamlashturmaq dawamlashturmidi V;SG;3;NEG;PST dawamlashturmaq dawamlashturmighanmen V;PRF;SG;1;NEG;PRS dawamlashturmaq dawamlashturiwatidu V;PROG;SG;3;PRS dawamlashturmaq dawamlashturiwatisiz V;PROG;FRML;SG;2;PRS dawamlashturmaq dawamlashturghanmen V;PRF;SG;1;PRS dawamlashturmaq dawamlashturuwatattingiz V;PROG;FRML;SG;2;PST dawamlashturmaq dawamlashturdi V;PL;3;PST dawamlashturmaq dawamlashturmaqchidim V;INTEN;SG;1;PST dawamlashturmaq dawamlashturmaqchidi V;INTEN;PL;3;PST dawamlashturmaq dawamlashturghanmiz V;PRF;PL;1;PRS dawamlashturmaq dawamlashturmaqchi V;INTEN;PL;3;PRS dawamlashturmaq dawamlashturduq V;PL;1;PST dawamlashturmaq dawamlashturisiler V;IPFV;PL;2;PRS dawamlashturmaq dawamlashturmidim V;SG;1;NEG;PST dawamlashturmaq dawamlashturmaqchi V;INTEN;SG;3;PRS dawamlashturmaq dawamlashturmighanidim V;PRF;SG;1;NEG;PST dawamlashturmaq dawamlashturmighaniduq V;PRF;PL;1;NEG;PST dawamlashturmaq dawamlashturghanidi V;PRF;SG;3;PST dawamlashturmaq dawamlashturmighansiz V;PRF;FRML;SG;2;NEG;PRS dawamlashturmaq dawamlashturmaqchimen V;INTEN;SG;1;PRS dawamlashturmaq dawamlashturding V;SG;2;INFM;PST dawamlashturmaq dawamlashturghansiz V;PRF;FRML;SG;2;PRS dawamlashturmaq dawamlashturmighansiler V;PRF;PL;2;NEG;PRS dawamlashturmaq dawamlashturattuq V;IPFV;PL;1;PST dawamlashturmaq dawamlashturghan V;PRF;PL;3;PRS dawamlashturmaq dawamlashturmidi V;PL;3;NEG;PST dawamlashturmaq dawamlashturmighanidi V;PRF;SG;3;NEG;PST dawamlashturmaq dawamlashturiwatimiz V;PROG;PL;1;PRS dawamlashturmaq dawamlashturmaqchidi V;INTEN;SG;3;PST dawamlashturmaq dawamlashturghaniduq V;PRF;PL;1;PST dawamlashturmaq dawamlashturdingiz V;FRML;SG;2;PST dawamlashturmaq dawamlashturmighanmiz V;PRF;PL;1;NEG;PRS dawamlashturmaq dawamlashturatti V;IPFV;PL;3;PST dawamlashturmaq dawamlashturdi V;SG;3;PST dawamlashturmaq dawamlashturmaqchidinglar V;INTEN;PL;2;PST dawamlashturmaq dawamlashturmaqchiduq V;INTEN;PL;1;PST dawamlashturmaq dawamlashturmaqchisen V;INTEN;SG;2;INFM;PRS dawamlashturmaq dawamlashturattinglar V;IPFV;PL;2;PST dawamlashturmaq dawamlashturmaqchisiler V;INTEN;PL;2;PRS dawamlashturmaq dawamlashturuwatatti V;PROG;SG;3;PST dawamlashturmaq dawamlashturmighanidi V;PRF;PL;3;NEG;PST dawamlashturmaq dawamlashturatting V;IPFV;SG;2;INFM;PST dawamlashturmaq dawamlashturghansiler V;PRF;PL;2;PRS anglimaq anglaysiler V;IPFV;PL;2;PRS anglimaq anglaysen V;IPFV;SG;2;INFM;PRS anglimaq anglaydu V;IPFV;SG;3;PRS anglimaq anglimighanidi V;PRF;SG;3;NEG;PST anglimaq anglawatidu V;PROG;PL;3;PRS anglimaq anglimaqchidi V;INTEN;SG;3;PST anglimaq anglawatimen V;PROG;SG;1;PRS anglimaq anglimaqchidinglar V;INTEN;PL;2;PST anglimaq anglighansiler V;PRF;PL;2;PRS anglimaq anglimaqchidi V;INTEN;PL;3;PST anglimaq anglaysiz V;IPFV;FRML;SG;2;PRS anglimaq anglimidingiz V;FRML;SG;2;NEG;PST anglimaq anglimighanidinglar V;PRF;PL;2;NEG;PST anglimaq anglawatisen V;PROG;SG;2;INFM;PRS anglimaq anglimaqchimen V;INTEN;SG;1;PRS anglimaq anglighanidi V;PRF;SG;3;PST anglimaq anglayttim V;IPFV;SG;1;PST anglimaq anglimighansiler V;PRF;PL;2;NEG;PRS anglimaq anglimaqchidingiz V;FRML;INTEN;SG;2;PST anglimaq anglimaqchi V;INTEN;SG;3;PRS anglimaq anglimighan V;PRF;PL;3;NEG;PRS anglimaq anglighanidingiz V;PRF;FRML;SG;2;PST anglimaq anglighaniduq V;PRF;PL;1;PST anglimaq anglawatattinglar V;PROG;PL;2;PST anglimaq anglayttingiz V;IPFV;FRML;SG;2;PST anglimaq anglighaniding V;PRF;SG;2;INFM;PST anglimaq anglimaqchisiler V;INTEN;PL;2;PRS anglimaq anglidi V;SG;3;PST anglimaq anglaytti V;IPFV;PL;3;PST anglimaq anglighan V;PRF;PL;3;PRS anglimaq anglimaqchisen V;INTEN;SG;2;INFM;PRS anglimaq anglaytti V;IPFV;SG;3;PST anglimaq anglimaqchiding V;INTEN;SG;2;INFM;PST anglimaq anglimighansen V;PRF;SG;2;NEG;INFM;PRS anglimaq anglawatisiz V;PROG;FRML;SG;2;PRS anglimaq anglawatattuq V;PROG;PL;1;PST anglimaq anglimighaniding V;PRF;SG;2;NEG;INFM;PST anglimaq anglaymiz V;IPFV;PL;1;PRS anglimaq anglimiduq V;PL;1;NEG;PST anglimaq anglimidim V;SG;1;NEG;PST anglimaq angliding V;SG;2;INFM;PST anglimaq anglidinglar V;PL;2;PST anglimaq anglayttinglar V;IPFV;PL;2;PST anglimaq angliduq V;PL;1;PST anglimaq anglawatattim V;PROG;SG;1;PST anglimaq anglaydu V;IPFV;PL;3;PRS anglimaq anglimighan V;PRF;SG;3;NEG;PRS anglimaq anglawatatti V;PROG;PL;3;PST anglimaq anglaymen V;IPFV;SG;1;PRS anglimaq anglimaqchiduq V;INTEN;PL;1;PST anglimaq anglimidi V;SG;3;NEG;PST anglimaq anglimighanidim V;PRF;SG;1;NEG;PST anglimaq anglighanidinglar V;PRF;PL;2;PST anglimaq anglimaqchimiz V;INTEN;PL;1;PRS anglimaq anglimighanmiz V;PRF;PL;1;NEG;PRS anglimaq anglimaqchisiz V;FRML;INTEN;SG;2;PRS anglimaq anglidingiz V;FRML;SG;2;PST anglimaq anglimidinglar V;PL;2;NEG;PST anglimaq anglidim V;SG;1;PST anglimaq anglimidi V;PL;3;NEG;PST anglimaq anglighanidim V;PRF;SG;1;PST anglimaq anglawatidu V;PROG;SG;3;PRS anglimaq anglawatatti V;PROG;SG;3;PST anglimaq anglimighanmen V;PRF;SG;1;NEG;PRS anglimaq anglighan V;PRF;SG;3;PRS anglimaq anglimighaniduq V;PRF;PL;1;NEG;PST anglimaq anglighansiz V;PRF;FRML;SG;2;PRS anglimaq anglighansen V;PRF;SG;2;INFM;PRS anglimaq anglighanmen V;PRF;SG;1;PRS anglimaq anglawatatting V;PROG;SG;2;INFM;PST anglimaq anglawatimiz V;PROG;PL;1;PRS anglimaq anglayttuq V;IPFV;PL;1;PST anglimaq anglaytting V;IPFV;SG;2;INFM;PST anglimaq anglidi V;PL;3;PST anglimaq anglimighanidi V;PRF;PL;3;NEG;PST anglimaq anglimaqchi V;INTEN;PL;3;PRS anglimaq anglimiding V;SG;2;NEG;INFM;PST anglimaq anglawatattingiz V;PROG;FRML;SG;2;PST anglimaq anglighanidi V;PRF;PL;3;PST anglimaq anglimighansiz V;PRF;FRML;SG;2;NEG;PRS anglimaq anglighanmiz V;PRF;PL;1;PRS anglimaq anglimighanidingiz V;PRF;FRML;SG;2;NEG;PST anglimaq anglawatisiler V;PROG;PL;2;PRS anglimaq anglimaqchidim V;INTEN;SG;1;PST qalmaq qalattinglar V;IPFV;PL;2;PST qalmaq qéliwatatting V;PROG;SG;2;INFM;PST qalmaq qalghansiler V;PRF;PL;2;PRS qalmaq qalisiler V;IPFV;PL;2;PRS qalmaq qaldi V;SG;3;PST qalmaq qalidu V;IPFV;PL;3;PRS qalmaq qalmaqchiding V;INTEN;SG;2;INFM;PST qalmaq qalghaniduq V;PRF;PL;1;PST qalmaq qalghanidim V;PRF;SG;1;PST qalmaq qéliwatidu V;PROG;PL;3;PRS qalmaq qalmighanmen V;PRF;SG;1;NEG;PRS qalmaq qalghanidinglar V;PRF;PL;2;PST qalmaq qalmiding V;SG;2;NEG;INFM;PST qalmaq qalmaqchidim V;INTEN;SG;1;PST qalmaq qalmaqchidinglar V;INTEN;PL;2;PST qalmaq qalmaqchisiler V;INTEN;PL;2;PRS qalmaq qéliwatimen V;PROG;SG;1;PRS qalmaq qalmighanidinglar V;PRF;PL;2;NEG;PST qalmaq qalmighanidingiz V;PRF;FRML;SG;2;NEG;PST qalmaq qalatti V;IPFV;SG;3;PST qalmaq qalmaqchisen V;INTEN;SG;2;INFM;PRS qalmaq qalimen V;IPFV;SG;1;PRS qalmaq qalmighan V;PRF;SG;3;NEG;PRS qalmaq qalimiz V;IPFV;PL;1;PRS qalmaq qalmighanmiz V;PRF;PL;1;NEG;PRS qalmaq qalmaqchi V;INTEN;SG;3;PRS qalmaq qalmaqchidi V;INTEN;PL;3;PST qalmaq qalghansiz V;PRF;FRML;SG;2;PRS qalmaq qalmaqchimiz V;INTEN;PL;1;PRS qalmaq qalghanidingiz V;PRF;FRML;SG;2;PST qalmaq qalghan V;PRF;SG;3;PRS qalmaq qéliwatattim V;PROG;SG;1;PST qalmaq qalmidinglar V;PL;2;NEG;PST qalmaq qaldingiz V;FRML;SG;2;PST qalmaq qalmaqchiduq V;INTEN;PL;1;PST qalmaq qalmighansiler V;PRF;PL;2;NEG;PRS qalmaq qalmighaniduq V;PRF;PL;1;NEG;PST qalmaq qéliwatidu V;PROG;SG;3;PRS qalmaq qéliwatattingiz V;PROG;FRML;SG;2;PST qalmaq qalattuq V;IPFV;PL;1;PST qalmaq qéliwatisiler V;PROG;PL;2;PRS qalmaq qalmidingiz V;FRML;SG;2;NEG;PST qalmaq qéliwatatti V;PROG;SG;3;PST qalmaq qalghaniding V;PRF;SG;2;INFM;PST qalmaq qalmaqchimen V;INTEN;SG;1;PRS qalmaq qalmighansiz V;PRF;FRML;SG;2;NEG;PRS qalmaq qalmaqchidingiz V;FRML;INTEN;SG;2;PST qalmaq qéliwatisiz V;PROG;FRML;SG;2;PRS qalmaq qalmaqchi V;INTEN;PL;3;PRS qalmaq qalmaqchisiz V;FRML;INTEN;SG;2;PRS qalmaq qéliwatatti V;PROG;PL;3;PST qalmaq qalmiduq V;PL;1;NEG;PST qalmaq qalmighanidi V;PRF;SG;3;NEG;PST qalmaq qalatting V;IPFV;SG;2;INFM;PST qalmaq qalmighaniding V;PRF;SG;2;NEG;INFM;PST qalmaq qalmighanidim V;PRF;SG;1;NEG;PST qalmaq qalghanmiz V;PRF;PL;1;PRS qalmaq qalghanidi V;PRF;SG;3;PST qalmaq qalghansen V;PRF;SG;2;INFM;PRS qalmaq qalattingiz V;IPFV;FRML;SG;2;PST qalmaq qalisiz V;IPFV;FRML;SG;2;PRS qalmaq qalmighansen V;PRF;SG;2;NEG;INFM;PRS qalmaq qaldim V;SG;1;PST qalmaq qalghanidi V;PRF;PL;3;PST qalmaq qéliwatimiz V;PROG;PL;1;PRS qalmaq qalmighanidi V;PRF;PL;3;NEG;PST qalmaq qalmidi V;PL;3;NEG;PST qalmaq qéliwatattuq V;PROG;PL;1;PST qalmaq qéliwatattinglar V;PROG;PL;2;PST qalmaq qalmaqchidi V;INTEN;SG;3;PST qalmaq qalmidim V;SG;1;NEG;PST qalmaq qalisen V;IPFV;SG;2;INFM;PRS qalmaq qaldi V;PL;3;PST qalmaq qalghanmen V;PRF;SG;1;PRS qalmaq qalding V;SG;2;INFM;PST qalmaq qalghan V;PRF;PL;3;PRS qalmaq qéliwatisen V;PROG;SG;2;INFM;PRS qalmaq qalattim V;IPFV;SG;1;PST qalmaq qalduq V;PL;1;PST qalmaq qalidu V;IPFV;SG;3;PRS qalmaq qalatti V;IPFV;PL;3;PST qalmaq qaldinglar V;PL;2;PST qalmaq qalmighan V;PRF;PL;3;NEG;PRS qalmaq qalmidi V;SG;3;NEG;PST ölmek ölgenidi V;PRF;SG;3;PST ölmek ölmidi V;PL;3;NEG;PST ölmek ölmekchiduq V;INTEN;PL;1;PST ölmek ölmekchidi V;INTEN;SG;3;PST ölmek ölgen V;PRF;PL;3;PRS ölmek ölmigenmiz V;PRF;PL;1;NEG;PRS ölmek ölmekchisiler V;INTEN;PL;2;PRS ölmek ölgenidi V;PRF;PL;3;PST ölmek ölmigen V;PRF;SG;3;NEG;PRS ölmek ölettuq V;IPFV;PL;1;PST ölmek öldim V;SG;1;PST ölmek ölmekchisen V;INTEN;SG;2;INFM;PRS ölmek ölgeniding V;PRF;SG;2;INFM;PST ölmek ölüwatisiz V;PROG;FRML;SG;2;PRS ölmek ölidu V;IPFV;PL;3;PRS ölmek ölgenidingiz V;PRF;FRML;SG;2;PST ölmek ölmiduq V;PL;1;NEG;PST ölmek ölmigeniduq V;PRF;PL;1;NEG;PST ölmek ölgenidinglar V;PRF;PL;2;PST ölmek ölmiding V;SG;2;NEG;INFM;PST ölmek ölmekchimen V;INTEN;SG;1;PRS ölmek öletti V;IPFV;SG;3;PST ölmek ölüwatatting V;PROG;SG;2;INFM;PST ölmek öldi V;PL;3;PST ölmek ölüwatatti V;PROG;SG;3;PST ölmek ölmidi V;SG;3;NEG;PST ölmek ölmigenmen V;PRF;SG;1;NEG;PRS ölmek ölüwatatti V;PROG;PL;3;PST ölmek ölmekchidinglar V;INTEN;PL;2;PST ölmek ölmigeniding V;PRF;SG;2;NEG;INFM;PST ölmek ölmigensiz V;PRF;FRML;SG;2;NEG;PRS ölmek ölüwatimiz V;PROG;PL;1;PRS ölmek ölmigenidi V;PRF;PL;3;NEG;PST ölmek öletti V;IPFV;PL;3;PST ölmek ölgenidim V;PRF;SG;1;PST ölmek öletting V;IPFV;SG;2;INFM;PST ölmek ölmigensen V;PRF;SG;2;NEG;INFM;PRS ölmek ölmekchisiz V;FRML;INTEN;SG;2;PRS ölmek ölettingiz V;IPFV;FRML;SG;2;PST ölmek ölmekchimiz V;INTEN;PL;1;PRS ölmek ölüwatisiler V;PROG;PL;2;PRS ölmek ölmigenidingiz V;PRF;FRML;SG;2;NEG;PST ölmek ölmekchidim V;INTEN;SG;1;PST ölmek ölgensiler V;PRF;PL;2;PRS ölmek ölüwatattim V;PROG;SG;1;PST ölmek ölimiz V;IPFV;PL;1;PRS ölmek ölding V;SG;2;INFM;PST ölmek ölettinglar V;IPFV;PL;2;PST ölmek ölüwatattuq V;PROG;PL;1;PST ölmek ölidu V;IPFV;SG;3;PRS ölmek ölmekchi V;INTEN;SG;3;PRS ölmek ölimen V;IPFV;SG;1;PRS ölmek öldinglar V;PL;2;PST ölmek ölüwatisen V;PROG;SG;2;INFM;PRS ölmek ölüwatattingiz V;PROG;FRML;SG;2;PST ölmek ölisiz V;IPFV;FRML;SG;2;PRS ölmek ölisiler V;IPFV;PL;2;PRS ölmek ölüwatidu V;PROG;PL;3;PRS ölmek ölmidim V;SG;1;NEG;PST ölmek ölmekchi V;INTEN;PL;3;PRS ölmek ölisen V;IPFV;SG;2;INFM;PRS ölmek ölüwatattinglar V;PROG;PL;2;PST ölmek ölmidinglar V;PL;2;NEG;PST ölmek ölettim V;IPFV;SG;1;PST ölmek ölüwatidu V;PROG;SG;3;PRS ölmek ölgenmiz V;PRF;PL;1;PRS ölmek ölmigensiler V;PRF;PL;2;NEG;PRS ölmek ölgenmen V;PRF;SG;1;PRS ölmek ölgensiz V;PRF;FRML;SG;2;PRS ölmek ölmigenidinglar V;PRF;PL;2;NEG;PST ölmek ölüwatimen V;PROG;SG;1;PRS ölmek ölmigenidi V;PRF;SG;3;NEG;PST ölmek ölgen V;PRF;SG;3;PRS ölmek ölmekchidingiz V;FRML;INTEN;SG;2;PST ölmek ölduq V;PL;1;PST ölmek öldi V;SG;3;PST ölmek öldingiz V;FRML;SG;2;PST ölmek ölmigen V;PRF;PL;3;NEG;PRS ölmek ölmidingiz V;FRML;SG;2;NEG;PST ölmek ölgensen V;PRF;SG;2;INFM;PRS ölmek ölmekchidi V;INTEN;PL;3;PST ölmek ölmigenidim V;PRF;SG;1;NEG;PST ölmek ölgeniduq V;PRF;PL;1;PST ölmek ölmekchiding V;INTEN;SG;2;INFM;PST ögenmek öginiwatattinglar V;PROG;PL;2;PST ögenmek ögenmekchidi V;INTEN;SG;3;PST ögenmek öginiwatisiler V;PROG;PL;2;PRS ögenmek ögenmidi V;SG;3;NEG;PST ögenmek ögen'gensiler V;PRF;PL;2;PRS ögenmek ögendim V;SG;1;PST ögenmek öginisen V;IPFV;SG;2;INFM;PRS ögenmek ögen'genmiz V;PRF;PL;1;PRS ögenmek öginimen V;IPFV;SG;1;PRS ögenmek ögenmekchisen V;INTEN;SG;2;INFM;PRS ögenmek ögenmekchiding V;INTEN;SG;2;INFM;PST ögenmek öginiwatidu V;PROG;PL;3;PRS ögenmek öginetti V;IPFV;PL;3;PST ögenmek öginisiz V;IPFV;FRML;SG;2;PRS ögenmek öginiwatisiz V;PROG;FRML;SG;2;PRS ögenmek öginetting V;IPFV;SG;2;INFM;PST ögenmek ögenmekchi V;INTEN;SG;3;PRS ögenmek ögen'migensiz V;PRF;FRML;SG;2;NEG;PRS ögenmek öginiwatattingiz V;PROG;FRML;SG;2;PST ögenmek ögen'gensiz V;PRF;FRML;SG;2;PRS ögenmek ögen'geniduq V;PRF;PL;1;PST ögenmek öginettinglar V;IPFV;PL;2;PST ögenmek ögen'migenmen V;PRF;SG;1;NEG;PRS ögenmek ögen'migen V;PRF;SG;3;NEG;PRS ögenmek öginettingiz V;IPFV;FRML;SG;2;PST ögenmek ögenmekchidinglar V;INTEN;PL;2;PST ögenmek ögenmekchidim V;INTEN;SG;1;PST ögenmek ögenmekchidi V;INTEN;PL;3;PST ögenmek öginidu V;IPFV;PL;3;PRS ögenmek ögen'migenidi V;PRF;PL;3;NEG;PST ögenmek öginiwatattuq V;PROG;PL;1;PST ögenmek öginiwatatting V;PROG;SG;2;INFM;PST ögenmek ögen'genidim V;PRF;SG;1;PST ögenmek ögenmekchiduq V;INTEN;PL;1;PST ögenmek öginisiler V;IPFV;PL;2;PRS ögenmek ögen'genmen V;PRF;SG;1;PRS ögenmek ögendinglar V;PL;2;PST ögenmek ögenmiduq V;PL;1;NEG;PST ögenmek öginettuq V;IPFV;PL;1;PST ögenmek ögen'gen V;PRF;PL;3;PRS ögenmek ögenmekchimen V;INTEN;SG;1;PRS ögenmek ögen'migen V;PRF;PL;3;NEG;PRS ögenmek ögen'migenidi V;PRF;SG;3;NEG;PST ögenmek ögenmidim V;SG;1;NEG;PST ögenmek ögenduq V;PL;1;PST ögenmek ögen'geniding V;PRF;SG;2;INFM;PST ögenmek ögendingiz V;FRML;SG;2;PST ögenmek ögenmekchimiz V;INTEN;PL;1;PRS ögenmek ögen'migeniding V;PRF;SG;2;NEG;INFM;PST ögenmek öginiwatidu V;PROG;SG;3;PRS ögenmek ögenmekchidingiz V;FRML;INTEN;SG;2;PST ögenmek ögen'migenidim V;PRF;SG;1;NEG;PST ögenmek ögendi V;PL;3;PST ögenmek ögen'genidi V;PRF;SG;3;PST ögenmek öginiwatatti V;PROG;SG;3;PST ögenmek ögen'gen V;PRF;SG;3;PRS ögenmek ögenmidingiz V;FRML;SG;2;NEG;PST ögenmek ögen'migensiler V;PRF;PL;2;NEG;PRS ögenmek ögendi V;SG;3;PST ögenmek ögen'migenmiz V;PRF;PL;1;NEG;PRS ögenmek öginiwatisen V;PROG;SG;2;INFM;PRS ögenmek ögen'genidi V;PRF;PL;3;PST ögenmek ögenmekchi V;INTEN;PL;3;PRS ögenmek ögen'migenidinglar V;PRF;PL;2;NEG;PST ögenmek öginetti V;IPFV;SG;3;PST ögenmek ögenmekchisiler V;INTEN;PL;2;PRS ögenmek ögen'migenidingiz V;PRF;FRML;SG;2;NEG;PST ögenmek ögenmidinglar V;PL;2;NEG;PST ögenmek ögenmidi V;PL;3;NEG;PST ögenmek öginiwatatti V;PROG;PL;3;PST ögenmek ögenmekchisiz V;FRML;INTEN;SG;2;PRS ögenmek ögen'migeniduq V;PRF;PL;1;NEG;PST ögenmek öginiwatimiz V;PROG;PL;1;PRS ögenmek öginiwatimen V;PROG;SG;1;PRS ögenmek ögenmiding V;SG;2;NEG;INFM;PST ögenmek öginettim V;IPFV;SG;1;PST ögenmek öginiwatattim V;PROG;SG;1;PST ögenmek ögen'genidinglar V;PRF;PL;2;PST ögenmek öginidu V;IPFV;SG;3;PRS ögenmek öginimiz V;IPFV;PL;1;PRS ögenmek ögen'migensen V;PRF;SG;2;NEG;INFM;PRS ögenmek ögen'gensen V;PRF;SG;2;INFM;PRS ögenmek ögen'genidingiz V;PRF;FRML;SG;2;PST ögenmek ögending V;SG;2;INFM;PST körünmek körünüwatidu V;PROG;PL;3;PRS körünmek körünmiduq V;PL;1;NEG;PST körünmek körün'genidi V;PRF;SG;3;PST körünmek köründuq V;PL;1;PST körünmek körünmiding V;SG;2;NEG;INFM;PST körünmek körün'migen V;PRF;PL;3;NEG;PRS körünmek körünettim V;IPFV;SG;1;PST körünmek körünmidi V;SG;3;NEG;PST körünmek körünüwatisen V;PROG;SG;2;INFM;PRS körünmek körün'migenidi V;PRF;PL;3;NEG;PST körünmek körünetti V;IPFV;SG;3;PST körünmek körün'genmiz V;PRF;PL;1;PRS körünmek körünmekchidinglar V;INTEN;PL;2;PST körünmek körün'gensen V;PRF;SG;2;INFM;PRS körünmek körünmidi V;PL;3;NEG;PST körünmek körünetting V;IPFV;SG;2;INFM;PST körünmek körün'gensiz V;PRF;FRML;SG;2;PRS körünmek körünüwatidu V;PROG;SG;3;PRS körünmek körün'gen V;PRF;SG;3;PRS körünmek körünüwatatti V;PROG;PL;3;PST körünmek körün'geniduq V;PRF;PL;1;PST körünmek körün'genidi V;PRF;PL;3;PST körünmek körünmekchidi V;INTEN;SG;3;PST körünmek körünmekchisiz V;FRML;INTEN;SG;2;PRS körünmek körünmekchimen V;INTEN;SG;1;PRS körünmek körünimiz V;IPFV;PL;1;PRS körünmek körünmidim V;SG;1;NEG;PST körünmek körünüwatatting V;PROG;SG;2;INFM;PST körünmek körün'migensiz V;PRF;FRML;SG;2;NEG;PRS körünmek körün'migeniduq V;PRF;PL;1;NEG;PST körünmek köründing V;SG;2;INFM;PST körünmek körün'migenmiz V;PRF;PL;1;NEG;PRS körünmek körünmekchidingiz V;FRML;INTEN;SG;2;PST körünmek körünüwatisiz V;PROG;FRML;SG;2;PRS körünmek köründingiz V;FRML;SG;2;PST körünmek körün'migeniding V;PRF;SG;2;NEG;INFM;PST körünmek körünmekchisiler V;INTEN;PL;2;PRS körünmek körünisiz V;IPFV;FRML;SG;2;PRS körünmek körün'migenidinglar V;PRF;PL;2;NEG;PST körünmek körün'genidinglar V;PRF;PL;2;PST körünmek körünettuq V;IPFV;PL;1;PST körünmek körünmidinglar V;PL;2;NEG;PST körünmek köründinglar V;PL;2;PST körünmek körünettinglar V;IPFV;PL;2;PST körünmek körün'gen V;PRF;PL;3;PRS körünmek körünmekchidi V;INTEN;PL;3;PST körünmek körün'migenidi V;PRF;SG;3;NEG;PST körünmek körünmekchisen V;INTEN;SG;2;INFM;PRS körünmek körünimen V;IPFV;SG;1;PRS körünmek körünüwatisiler V;PROG;PL;2;PRS körünmek körünüwatimiz V;PROG;PL;1;PRS körünmek körünidu V;IPFV;SG;3;PRS körünmek körünüwatattinglar V;PROG;PL;2;PST körünmek körün'genmen V;PRF;SG;1;PRS körünmek körün'migensiler V;PRF;PL;2;NEG;PRS körünmek körünmekchi V;INTEN;SG;3;PRS körünmek körün'migensen V;PRF;SG;2;NEG;INFM;PRS körünmek körün'geniding V;PRF;SG;2;INFM;PST körünmek körünetti V;IPFV;PL;3;PST körünmek körünüwatattingiz V;PROG;FRML;SG;2;PST körünmek körünettingiz V;IPFV;FRML;SG;2;PST körünmek körünüwatimen V;PROG;SG;1;PRS körünmek köründi V;SG;3;PST körünmek körün'migenmen V;PRF;SG;1;NEG;PRS körünmek körün'gensiler V;PRF;PL;2;PRS körünmek körünisiler V;IPFV;PL;2;PRS körünmek körünmekchimiz V;INTEN;PL;1;PRS körünmek körünidu V;IPFV;PL;3;PRS körünmek körünüwatatti V;PROG;SG;3;PST körünmek körünüwatattuq V;PROG;PL;1;PST körünmek körün'migen V;PRF;SG;3;NEG;PRS körünmek körünmekchi V;INTEN;PL;3;PRS körünmek körünüwatattim V;PROG;SG;1;PST körünmek körün'migenidim V;PRF;SG;1;NEG;PST körünmek körün'genidingiz V;PRF;FRML;SG;2;PST körünmek körün'genidim V;PRF;SG;1;PST körünmek köründim V;SG;1;PST körünmek körünmidingiz V;FRML;SG;2;NEG;PST körünmek köründi V;PL;3;PST körünmek körünisen V;IPFV;SG;2;INFM;PRS körünmek körünmekchiding V;INTEN;SG;2;INFM;PST körünmek körünmekchidim V;INTEN;SG;1;PST körünmek körünmekchiduq V;INTEN;PL;1;PST körünmek körün'migenidingiz V;PRF;FRML;SG;2;NEG;PST ishlimek ishlimigenidingiz V;PRF;FRML;SG;2;NEG;PST ishlimek ishlewatimiz V;PROG;PL;1;PRS ishlimek ishlimigenidi V;PRF;PL;3;NEG;PST ishlimek ishlimekchidim V;INTEN;SG;1;PST ishlimek ishleytting V;IPFV;SG;2;INFM;PST ishlimek ishlimekchidinglar V;INTEN;PL;2;PST ishlimek ishlimigenidinglar V;PRF;PL;2;NEG;PST ishlimek ishlimigensiz V;PRF;FRML;SG;2;NEG;PRS ishlimek ishlimidim V;SG;1;NEG;PST ishlimek ishleyttingiz V;IPFV;FRML;SG;2;PST ishlimek ishleymen V;IPFV;SG;1;PRS ishlimek ishleytti V;IPFV;PL;3;PST ishlimek ishlewatidu V;PROG;PL;3;PRS ishlimek ishleyttim V;IPFV;SG;1;PST ishlimek ishleydu V;IPFV;SG;3;PRS ishlimek ishlimekchidi V;INTEN;PL;3;PST ishlimek ishlimekchimiz V;INTEN;PL;1;PRS ishlimek ishligensiler V;PRF;PL;2;PRS ishlimek ishlimigenidim V;PRF;SG;1;NEG;PST ishlimek ishlewatattuq V;PROG;PL;1;PST ishlimek ishlewatisiler V;PROG;PL;2;PRS ishlimek ishleyttinglar V;IPFV;PL;2;PST ishlimek ishligenidim V;PRF;SG;1;PST ishlimek ishlimigen V;PRF;PL;3;NEG;PRS ishlimek ishlidinglar V;PL;2;PST ishlimek ishlidi V;SG;3;PST ishlimek ishlewatatting V;PROG;SG;2;INFM;PST ishlimek ishlewatisen V;PROG;SG;2;INFM;PRS ishlimek ishlewatisiz V;PROG;FRML;SG;2;PRS ishlimek ishlimekchisiler V;INTEN;PL;2;PRS ishlimek ishlimigenmiz V;PRF;PL;1;NEG;PRS ishlimek ishligeniding V;PRF;SG;2;INFM;PST ishlimek ishlimigenidi V;PRF;SG;3;NEG;PST ishlimek ishligenidinglar V;PRF;PL;2;PST ishlimek ishlimekchi V;INTEN;SG;3;PRS ishlimek ishlimidi V;PL;3;NEG;PST ishlimek ishlewatatti V;PROG;SG;3;PST ishlimek ishlimekchisiz V;FRML;INTEN;SG;2;PRS ishlimek ishligen V;PRF;PL;3;PRS ishlimek ishlimigeniding V;PRF;SG;2;NEG;INFM;PST ishlimek ishlimekchisen V;INTEN;SG;2;INFM;PRS ishlimek ishlimidingiz V;FRML;SG;2;NEG;PST ishlimek ishligeniduq V;PRF;PL;1;PST ishlimek ishlimigeniduq V;PRF;PL;1;NEG;PST ishlimek ishligenmiz V;PRF;PL;1;PRS ishlimek ishlewatattingiz V;PROG;FRML;SG;2;PST ishlimek ishlimigensiler V;PRF;PL;2;NEG;PRS ishlimek ishlimekchi V;INTEN;PL;3;PRS ishlimek ishlimekchiding V;INTEN;SG;2;INFM;PST ishlimek ishleytti V;IPFV;SG;3;PST ishlimek ishlimiding V;SG;2;NEG;INFM;PST ishlimek ishligenidi V;PRF;SG;3;PST ishlimek ishlimekchiduq V;INTEN;PL;1;PST ishlimek ishlimidinglar V;PL;2;NEG;PST ishlimek ishlidi V;PL;3;PST ishlimek ishlimekchimen V;INTEN;SG;1;PRS ishlimek ishlewatatti V;PROG;PL;3;PST ishlimek ishlewatattim V;PROG;SG;1;PST ishlimek ishlidingiz V;FRML;SG;2;PST ishlimek ishlewatattinglar V;PROG;PL;2;PST ishlimek ishleysen V;IPFV;SG;2;INFM;PRS ishlimek ishlewatidu V;PROG;SG;3;PRS ishlimek ishligensiz V;PRF;FRML;SG;2;PRS ishlimek ishlimigen V;PRF;SG;3;NEG;PRS ishlimek ishlewatimen V;PROG;SG;1;PRS ishlimek ishligenmen V;PRF;SG;1;PRS ishlimek ishleydu V;IPFV;PL;3;PRS ishlimek ishligenidingiz V;PRF;FRML;SG;2;PST ishlimek ishlimigensen V;PRF;SG;2;NEG;INFM;PRS ishlimek ishlimidi V;SG;3;NEG;PST ishlimek ishligensen V;PRF;SG;2;INFM;PRS ishlimek ishlidim V;SG;1;PST ishlimek ishleyttuq V;IPFV;PL;1;PST ishlimek ishliduq V;PL;1;PST ishlimek ishliding V;SG;2;INFM;PST ishlimek ishleymiz V;IPFV;PL;1;PRS ishlimek ishlimekchidingiz V;FRML;INTEN;SG;2;PST ishlimek ishligen V;PRF;SG;3;PRS ishlimek ishlimekchidi V;INTEN;SG;3;PST ishlimek ishlimigenmen V;PRF;SG;1;NEG;PRS ishlimek ishleysiz V;IPFV;FRML;SG;2;PRS ishlimek ishlimiduq V;PL;1;NEG;PST ishlimek ishleysiler V;IPFV;PL;2;PRS ishlimek ishligenidi V;PRF;PL;3;PST kechürmek kechürgenidim V;PRF;SG;1;PST kechürmek kechürmidingiz V;FRML;SG;2;NEG;PST kechürmek kechürmigenidingiz V;PRF;FRML;SG;2;NEG;PST kechürmek kechürmidinglar V;PL;2;NEG;PST kechürmek kechürmekchidi V;INTEN;PL;3;PST kechürmek kechüriwatidu V;PROG;SG;3;PRS kechürmek kechürmigenmen V;PRF;SG;1;NEG;PRS kechürmek kechüretti V;IPFV;SG;3;PST kechürmek kechüriwatisen V;PROG;SG;2;INFM;PRS kechürmek kechürmekchisen V;INTEN;SG;2;INFM;PRS kechürmek kechüridu V;IPFV;SG;3;PRS kechürmek kechüriwatidu V;PROG;PL;3;PRS kechürmek kechürmekchiduq V;INTEN;PL;1;PST kechürmek kechürmekchisiler V;INTEN;PL;2;PRS kechürmek kechürgen V;PRF;PL;3;PRS kechürmek kechürdingiz V;FRML;SG;2;PST kechürmek kechürmiding V;SG;2;NEG;INFM;PST kechürmek kechürettinglar V;IPFV;PL;2;PST kechürmek kechürmiduq V;PL;1;NEG;PST kechürmek kechürimen V;IPFV;SG;1;PRS kechürmek kechürmigenidi V;PRF;SG;3;NEG;PST kechürmek kechürgensiler V;PRF;PL;2;PRS kechürmek kechüridu V;IPFV;PL;3;PRS kechürmek kechürmidi V;SG;3;NEG;PST kechürmek kechürdi V;PL;3;PST kechürmek kechürmigensiler V;PRF;PL;2;NEG;PRS kechürmek kechürmekchidingiz V;FRML;INTEN;SG;2;PST kechürmek kechürmigenidim V;PRF;SG;1;NEG;PST kechürmek kechürgensiz V;PRF;FRML;SG;2;PRS kechürmek kechürmigen V;PRF;PL;3;NEG;PRS kechürmek kechüriwatisiz V;PROG;FRML;SG;2;PRS kechürmek kechürmigenmiz V;PRF;PL;1;NEG;PRS kechürmek kechürmekchimiz V;INTEN;PL;1;PRS kechürmek kechürmekchidi V;INTEN;SG;3;PST kechürmek kechüriwatatti V;PROG;SG;3;PST kechürmek kechürettim V;IPFV;SG;1;PST kechürmek kechürmekchimen V;INTEN;SG;1;PRS kechürmek kechürgenidi V;PRF;PL;3;PST kechürmek kechürgenmen V;PRF;SG;1;PRS kechürmek kechürettuq V;IPFV;PL;1;PST kechürmek kechürgenmiz V;PRF;PL;1;PRS kechürmek kechüriwatatting V;PROG;SG;2;INFM;PST kechürmek kechürmigeniduq V;PRF;PL;1;NEG;PST kechürmek kechüriwatattinglar V;PROG;PL;2;PST kechürmek kechürgenidi V;PRF;SG;3;PST kechürmek kechürgen V;PRF;SG;3;PRS kechürmek kechürdinglar V;PL;2;PST kechürmek kechürding V;SG;2;INFM;PST kechürmek kechüretti V;IPFV;PL;3;PST kechürmek kechürmidim V;SG;1;NEG;PST kechürmek kechürmigeniding V;PRF;SG;2;NEG;INFM;PST kechürmek kechüriwatattim V;PROG;SG;1;PST kechürmek kechürimiz V;IPFV;PL;1;PRS kechürmek kechürmigen V;PRF;SG;3;NEG;PRS kechürmek kechürmidi V;PL;3;NEG;PST kechürmek kechüriwatimen V;PROG;SG;1;PRS kechürmek kechürgenidinglar V;PRF;PL;2;PST kechürmek kechürmigenidinglar V;PRF;PL;2;NEG;PST kechürmek kechüriwatatti V;PROG;PL;3;PST kechürmek kechürmekchi V;INTEN;SG;3;PRS kechürmek kechürgeniding V;PRF;SG;2;INFM;PST kechürmek kechürmekchidim V;INTEN;SG;1;PST kechürmek kechürmigenidi V;PRF;PL;3;NEG;PST kechürmek kechürisiz V;IPFV;FRML;SG;2;PRS kechürmek kechürmekchi V;INTEN;PL;3;PRS kechürmek kechürmigensen V;PRF;SG;2;NEG;INFM;PRS kechürmek kechüriwatimiz V;PROG;PL;1;PRS kechürmek kechürisen V;IPFV;SG;2;INFM;PRS kechürmek kechürmekchisiz V;FRML;INTEN;SG;2;PRS kechürmek kechüriwatattingiz V;PROG;FRML;SG;2;PST kechürmek kechürdim V;SG;1;PST kechürmek kechürisiler V;IPFV;PL;2;PRS kechürmek kechürmekchidinglar V;INTEN;PL;2;PST kechürmek kechürgenidingiz V;PRF;FRML;SG;2;PST kechürmek kechürettingiz V;IPFV;FRML;SG;2;PST kechürmek kechürgensen V;PRF;SG;2;INFM;PRS kechürmek kechüretting V;IPFV;SG;2;INFM;PST kechürmek kechürgeniduq V;PRF;PL;1;PST kechürmek kechürmekchiding V;INTEN;SG;2;INFM;PST kechürmek kechürdi V;SG;3;PST kechürmek kechüriwatisiler V;PROG;PL;2;PRS kechürmek kechürmigensiz V;PRF;FRML;SG;2;NEG;PRS kechürmek kechüriwatattuq V;PROG;PL;1;PST kechürmek kechürduq V;PL;1;PST körmek körüwatatting V;PROG;SG;2;INFM;PST körmek körimiz V;IPFV;PL;1;PRS körmek kördinglar V;PL;2;PST körmek körmigensen V;PRF;SG;2;NEG;INFM;PRS körmek körüwatidu V;PROG;PL;3;PRS körmek köretting V;IPFV;SG;2;INFM;PST körmek körmigenmiz V;PRF;PL;1;NEG;PRS körmek körüwatimiz V;PROG;PL;1;PRS körmek körmekchidim V;INTEN;SG;1;PST körmek körettim V;IPFV;SG;1;PST körmek köridu V;IPFV;SG;3;PRS körmek körüwatattim V;PROG;SG;1;PST körmek körmidinglar V;PL;2;NEG;PST körmek körmigenidim V;PRF;SG;1;NEG;PST körmek körmekchidi V;INTEN;SG;3;PST körmek körmidi V;PL;3;NEG;PST körmek körmigenidi V;PRF;SG;3;NEG;PST körmek körüwatattinglar V;PROG;PL;2;PST körmek körmigenmen V;PRF;SG;1;NEG;PRS körmek körmekchiding V;INTEN;SG;2;INFM;PST körmek körmekchidinglar V;INTEN;PL;2;PST körmek kördingiz V;FRML;SG;2;PST körmek körmigensiz V;PRF;FRML;SG;2;NEG;PRS körmek körmigeniduq V;PRF;PL;1;NEG;PST körmek körmekchisen V;INTEN;SG;2;INFM;PRS körmek körmekchi V;INTEN;PL;3;PRS körmek körding V;SG;2;INFM;PST körmek körmigen V;PRF;PL;3;NEG;PRS körmek kördi V;SG;3;PST körmek körgenmen V;PRF;SG;1;PRS körmek körmidim V;SG;1;NEG;PST körmek körgeniding V;PRF;SG;2;INFM;PST körmek körgen V;PRF;PL;3;PRS körmek körüwatatti V;PROG;SG;3;PST körmek körgensiler V;PRF;PL;2;PRS körmek körmigeniding V;PRF;SG;2;NEG;INFM;PST körmek körmekchiduq V;INTEN;PL;1;PST körmek körmigen V;PRF;SG;3;NEG;PRS körmek körmigenidingiz V;PRF;FRML;SG;2;NEG;PST körmek körüwatimen V;PROG;SG;1;PRS körmek körüwatisiler V;PROG;PL;2;PRS körmek körüwatatti V;PROG;PL;3;PST körmek körmidingiz V;FRML;SG;2;NEG;PST körmek körmigensiler V;PRF;PL;2;NEG;PRS körmek körmiduq V;PL;1;NEG;PST körmek körettingiz V;IPFV;FRML;SG;2;PST körmek körüwatattingiz V;PROG;FRML;SG;2;PST körmek köridu V;IPFV;PL;3;PRS körmek körisiler V;IPFV;PL;2;PRS körmek körgenidi V;PRF;PL;3;PST körmek körmigenidinglar V;PRF;PL;2;NEG;PST körmek körüwatisiz V;PROG;FRML;SG;2;PRS körmek körgeniduq V;PRF;PL;1;PST körmek körmekchimiz V;INTEN;PL;1;PRS körmek körgensiz V;PRF;FRML;SG;2;PRS körmek körüwatattuq V;PROG;PL;1;PST körmek körgenidim V;PRF;SG;1;PST körmek körmekchisiler V;INTEN;PL;2;PRS körmek körgenidingiz V;PRF;FRML;SG;2;PST körmek körettuq V;IPFV;PL;1;PST körmek körmidi V;SG;3;NEG;PST körmek köretti V;IPFV;SG;3;PST körmek körgensen V;PRF;SG;2;INFM;PRS körmek körmigenidi V;PRF;PL;3;NEG;PST körmek kördi V;PL;3;PST körmek körettinglar V;IPFV;PL;2;PST körmek körgenmiz V;PRF;PL;1;PRS körmek körgen V;PRF;SG;3;PRS körmek körmekchisiz V;FRML;INTEN;SG;2;PRS körmek körisen V;IPFV;SG;2;INFM;PRS körmek kördim V;SG;1;PST körmek körgenidinglar V;PRF;PL;2;PST körmek körmekchimen V;INTEN;SG;1;PRS körmek körüwatisen V;PROG;SG;2;INFM;PRS körmek körmekchidingiz V;FRML;INTEN;SG;2;PST körmek körmekchidi V;INTEN;PL;3;PST körmek körisiz V;IPFV;FRML;SG;2;PRS körmek körimen V;IPFV;SG;1;PRS körmek körduq V;PL;1;PST körmek körmiding V;SG;2;NEG;INFM;PST körmek körgenidi V;PRF;SG;3;PST körmek körüwatidu V;PROG;SG;3;PRS körmek körmekchi V;INTEN;SG;3;PRS körmek köretti V;IPFV;PL;3;PST tingshimaq tingshimaqchidinglar V;INTEN;PL;2;PST tingshimaq tingshawatattinglar V;PROG;PL;2;PST tingshimaq tingshayttinglar V;IPFV;PL;2;PST tingshimaq tingshimidi V;SG;3;NEG;PST tingshimaq tingshimaqchi V;INTEN;PL;3;PRS tingshimaq tingshimighan V;PRF;PL;3;NEG;PRS tingshimaq tingshimighansiz V;PRF;FRML;SG;2;NEG;PRS tingshimaq tingshimighanidingiz V;PRF;FRML;SG;2;NEG;PST tingshimaq tingshimidinglar V;PL;2;NEG;PST tingshimaq tingshayttuq V;IPFV;PL;1;PST tingshimaq tingshaymen V;IPFV;SG;1;PRS tingshimaq tingshimidi V;PL;3;NEG;PST tingshimaq tingshimaqchidi V;INTEN;SG;3;PST tingshimaq tingshidingiz V;FRML;SG;2;PST tingshimaq tingshaysen V;IPFV;SG;2;INFM;PRS tingshimaq tingshighaniduq V;PRF;PL;1;PST tingshimaq tingshaytti V;IPFV;PL;3;PST tingshimaq tingshawatimiz V;PROG;PL;1;PRS tingshimaq tingshiding V;SG;2;INFM;PST tingshimaq tingshighansen V;PRF;SG;2;INFM;PRS tingshimaq tingshimighanmiz V;PRF;PL;1;NEG;PRS tingshimaq tingshimiding V;SG;2;NEG;INFM;PST tingshimaq tingshaytting V;IPFV;SG;2;INFM;PST tingshimaq tingshimaqchiding V;INTEN;SG;2;INFM;PST tingshimaq tingshimighanmen V;PRF;SG;1;NEG;PRS tingshimaq tingshawatisiz V;PROG;FRML;SG;2;PRS tingshimaq tingshiduq V;PL;1;PST tingshimaq tingshidi V;SG;3;PST tingshimaq tingshawatattingiz V;PROG;FRML;SG;2;PST tingshimaq tingshighanidi V;PRF;PL;3;PST tingshimaq tingshimaqchisen V;INTEN;SG;2;INFM;PRS tingshimaq tingshighansiler V;PRF;PL;2;PRS tingshimaq tingshimighan V;PRF;SG;3;NEG;PRS tingshimaq tingshimaqchimen V;INTEN;SG;1;PRS tingshimaq tingshaysiz V;IPFV;FRML;SG;2;PRS tingshimaq tingshimaqchidingiz V;FRML;INTEN;SG;2;PST tingshimaq tingshimighansiler V;PRF;PL;2;NEG;PRS tingshimaq tingshighan V;PRF;PL;3;PRS tingshimaq tingshimaqchidi V;INTEN;PL;3;PST tingshimaq tingshawatatti V;PROG;PL;3;PST tingshimaq tingshaytti V;IPFV;SG;3;PST tingshimaq tingshimaqchi V;INTEN;SG;3;PRS tingshimaq tingshimaqchiduq V;INTEN;PL;1;PST tingshimaq tingshaysiler V;IPFV;PL;2;PRS tingshimaq tingshighanidingiz V;PRF;FRML;SG;2;PST tingshimaq tingshighansiz V;PRF;FRML;SG;2;PRS tingshimaq tingshimighansen V;PRF;SG;2;NEG;INFM;PRS tingshimaq tingshawatidu V;PROG;SG;3;PRS tingshimaq tingshighan V;PRF;SG;3;PRS tingshimaq tingshawatattuq V;PROG;PL;1;PST tingshimaq tingshimidingiz V;FRML;SG;2;NEG;PST tingshimaq tingshidi V;PL;3;PST tingshimaq tingshimighanidi V;PRF;SG;3;NEG;PST tingshimaq tingshimighanidi V;PRF;PL;3;NEG;PST tingshimaq tingshawatimen V;PROG;SG;1;PRS tingshimaq tingshighaniding V;PRF;SG;2;INFM;PST tingshimaq tingshighanidim V;PRF;SG;1;PST tingshimaq tingshimighaniduq V;PRF;PL;1;NEG;PST tingshimaq tingshighanmen V;PRF;SG;1;PRS tingshimaq tingshawatisen V;PROG;SG;2;INFM;PRS tingshimaq tingshimaqchisiler V;INTEN;PL;2;PRS tingshimaq tingshimaqchisiz V;FRML;INTEN;SG;2;PRS tingshimaq tingshawatatti V;PROG;SG;3;PST tingshimaq tingshawatatting V;PROG;SG;2;INFM;PST tingshimaq tingshimaqchimiz V;INTEN;PL;1;PRS tingshimaq tingshaymiz V;IPFV;PL;1;PRS tingshimaq tingshighanmiz V;PRF;PL;1;PRS tingshimaq tingshawatisiler V;PROG;PL;2;PRS tingshimaq tingshayttingiz V;IPFV;FRML;SG;2;PST tingshimaq tingshidim V;SG;1;PST tingshimaq tingshighanidinglar V;PRF;PL;2;PST tingshimaq tingshaydu V;IPFV;SG;3;PRS tingshimaq tingshayttim V;IPFV;SG;1;PST tingshimaq tingshimiduq V;PL;1;NEG;PST tingshimaq tingshidinglar V;PL;2;PST tingshimaq tingshimighanidinglar V;PRF;PL;2;NEG;PST tingshimaq tingshighanidi V;PRF;SG;3;PST tingshimaq tingshimighaniding V;PRF;SG;2;NEG;INFM;PST tingshimaq tingshimidim V;SG;1;NEG;PST tingshimaq tingshaydu V;IPFV;PL;3;PRS tingshimaq tingshimighanidim V;PRF;SG;1;NEG;PST tingshimaq tingshawatattim V;PROG;SG;1;PST tingshimaq tingshimaqchidim V;INTEN;SG;1;PST tingshimaq tingshawatidu V;PROG;PL;3;PRS söymek söygenmiz V;PRF;PL;1;PRS söymek söyidu V;IPFV;PL;3;PRS söymek söyüwatatti V;PROG;PL;3;PST söymek söymidinglar V;PL;2;NEG;PST söymek söyetting V;IPFV;SG;2;INFM;PST söymek söymekchisiler V;INTEN;PL;2;PRS söymek söymekchidinglar V;INTEN;PL;2;PST söymek söyding V;SG;2;INFM;PST söymek söyüwatisen V;PROG;SG;2;INFM;PRS söymek söyduq V;PL;1;PST söymek söyetti V;IPFV;SG;3;PST söymek söyimiz V;IPFV;PL;1;PRS söymek söymidingiz V;FRML;SG;2;NEG;PST söymek söymidim V;SG;1;NEG;PST söymek söymigenmiz V;PRF;PL;1;NEG;PRS söymek söyidu V;IPFV;SG;3;PRS söymek söymigensen V;PRF;SG;2;NEG;INFM;PRS söymek söymigeniduq V;PRF;PL;1;NEG;PST söymek söymekchisen V;INTEN;SG;2;INFM;PRS söymek söyüwatattuq V;PROG;PL;1;PST söymek söymigenidingiz V;PRF;FRML;SG;2;NEG;PST söymek söygensen V;PRF;SG;2;INFM;PRS söymek söymigenidi V;PRF;PL;3;NEG;PST söymek söymiding V;SG;2;NEG;INFM;PST söymek söymigeniding V;PRF;SG;2;NEG;INFM;PST söymek söymigenidinglar V;PRF;PL;2;NEG;PST söymek söymekchidi V;INTEN;PL;3;PST söymek söyüwatatti V;PROG;SG;3;PST söymek söymiduq V;PL;1;NEG;PST söymek söymigensiz V;PRF;FRML;SG;2;NEG;PRS söymek söygenidim V;PRF;SG;1;PST söymek söygensiler V;PRF;PL;2;PRS söymek söymekchidingiz V;FRML;INTEN;SG;2;PST söymek söyisiler V;IPFV;PL;2;PRS söymek söyisiz V;IPFV;FRML;SG;2;PRS söymek söyüwatisiz V;PROG;FRML;SG;2;PRS söymek söygenidi V;PRF;SG;3;PST söymek söyettim V;IPFV;SG;1;PST söymek söyettinglar V;IPFV;PL;2;PST söymek söydim V;SG;1;PST söymek söygeniding V;PRF;SG;2;INFM;PST söymek söygen V;PRF;PL;3;PRS söymek söymekchiduq V;INTEN;PL;1;PST söymek söymekchi V;INTEN;SG;3;PRS söymek söygenidi V;PRF;PL;3;PST söymek söyettuq V;IPFV;PL;1;PST söymek söymigenmen V;PRF;SG;1;NEG;PRS söymek söymigenidi V;PRF;SG;3;NEG;PST söymek söymigensiler V;PRF;PL;2;NEG;PRS söymek söyüwatidu V;PROG;SG;3;PRS söymek söyüwatidu V;PROG;PL;3;PRS söymek söygen V;PRF;SG;3;PRS söymek söyüwatattingiz V;PROG;FRML;SG;2;PST söymek söymigenidim V;PRF;SG;1;NEG;PST söymek söymigen V;PRF;PL;3;NEG;PRS söymek söyüwatisiler V;PROG;PL;2;PRS söymek söymigen V;PRF;SG;3;NEG;PRS söymek söyüwatattinglar V;PROG;PL;2;PST söymek söyüwatattim V;PROG;SG;1;PST söymek söymekchidi V;INTEN;SG;3;PST söymek söyüwatatting V;PROG;SG;2;INFM;PST söymek söymekchidim V;INTEN;SG;1;PST söymek söygenidingiz V;PRF;FRML;SG;2;PST söymek söymekchimiz V;INTEN;PL;1;PRS söymek söygenmen V;PRF;SG;1;PRS söymek söygenidinglar V;PRF;PL;2;PST söymek söydi V;SG;3;PST söymek söymekchisiz V;FRML;INTEN;SG;2;PRS söymek söyettingiz V;IPFV;FRML;SG;2;PST söymek söyüwatimen V;PROG;SG;1;PRS söymek söyetti V;IPFV;PL;3;PST söymek söyisen V;IPFV;SG;2;INFM;PRS söymek söymekchiding V;INTEN;SG;2;INFM;PST söymek söyimen V;IPFV;SG;1;PRS söymek söymidi V;PL;3;NEG;PST söymek söymekchi V;INTEN;PL;3;PRS söymek söydingiz V;FRML;SG;2;PST söymek söymekchimen V;INTEN;SG;1;PRS söymek söymidi V;SG;3;NEG;PST söymek söygensiz V;PRF;FRML;SG;2;PRS söymek söyüwatimiz V;PROG;PL;1;PRS söymek söydinglar V;PL;2;PST söymek söydi V;PL;3;PST söymek söygeniduq V;PRF;PL;1;PST bilmek bilmekchidinglar V;INTEN;PL;2;PST bilmek bilmigeniduq V;PRF;PL;1;NEG;PST bilmek bilmidim V;SG;1;NEG;PST bilmek biletting V;IPFV;SG;2;INFM;PST bilmek bilmigensiz V;PRF;FRML;SG;2;NEG;PRS bilmek bilmekchidi V;INTEN;SG;3;PST bilmek bilgensiz V;PRF;FRML;SG;2;PRS bilmek bilmiding V;SG;2;NEG;INFM;PST bilmek bilmigenmiz V;PRF;PL;1;NEG;PRS bilmek bilgenidinglar V;PRF;PL;2;PST bilmek bilgenidingiz V;PRF;FRML;SG;2;PST bilmek bilmekchiding V;INTEN;SG;2;INFM;PST bilmek bilimiz V;IPFV;PL;1;PRS bilmek bilimen V;IPFV;SG;1;PRS bilmek bildinglar V;PL;2;PST bilmek bilmidingiz V;FRML;SG;2;NEG;PST bilmek bilmigen V;PRF;SG;3;NEG;PRS bilmek bilmidi V;PL;3;NEG;PST bilmek bilmekchidi V;INTEN;PL;3;PST bilmek bilmekchi V;INTEN;SG;3;PRS bilmek bilettinglar V;IPFV;PL;2;PST bilmek bilmidi V;SG;3;NEG;PST bilmek biliwatidu V;PROG;SG;3;PRS bilmek bilgenmiz V;PRF;PL;1;PRS bilmek bilidu V;IPFV;PL;3;PRS bilmek bilmekchisiz V;FRML;INTEN;SG;2;PRS bilmek biliwatimen V;PROG;SG;1;PRS bilmek biliwatimiz V;PROG;PL;1;PRS bilmek bilgensen V;PRF;SG;2;INFM;PRS bilmek bilmidinglar V;PL;2;NEG;PST bilmek bilduq V;PL;1;PST bilmek bilmigenmen V;PRF;SG;1;NEG;PRS bilmek bilmigenidinglar V;PRF;PL;2;NEG;PST bilmek bilmigenidi V;PRF;PL;3;NEG;PST bilmek bilmigeniding V;PRF;SG;2;NEG;INFM;PST bilmek biliwatattinglar V;PROG;PL;2;PST bilmek bilmigensiler V;PRF;PL;2;NEG;PRS bilmek biliwatattim V;PROG;SG;1;PST bilmek biletti V;IPFV;SG;3;PST bilmek bilmekchidim V;INTEN;SG;1;PST bilmek bilettingiz V;IPFV;FRML;SG;2;PST bilmek bilmigen V;PRF;PL;3;NEG;PRS bilmek biliwatatti V;PROG;SG;3;PST bilmek bilmekchi V;INTEN;PL;3;PRS bilmek bildingiz V;FRML;SG;2;PST bilmek bilmekchimiz V;INTEN;PL;1;PRS bilmek bilgenmen V;PRF;SG;1;PRS bilmek bilgen V;PRF;PL;3;PRS bilmek bilmigenidingiz V;PRF;FRML;SG;2;NEG;PST bilmek biliwatisen V;PROG;SG;2;INFM;PRS bilmek bilmekchisen V;INTEN;SG;2;INFM;PRS bilmek bilmekchidingiz V;FRML;INTEN;SG;2;PST bilmek biliwatidu V;PROG;PL;3;PRS bilmek bilmigenidi V;PRF;SG;3;NEG;PST bilmek bilmekchimen V;INTEN;SG;1;PRS bilmek biliwatatti V;PROG;PL;3;PST bilmek bilmekchiduq V;INTEN;PL;1;PST bilmek bilmigensen V;PRF;SG;2;NEG;INFM;PRS bilmek bilisen V;IPFV;SG;2;INFM;PRS bilmek bildi V;PL;3;PST bilmek bilgenidi V;PRF;SG;3;PST bilmek bildim V;SG;1;PST bilmek bilettuq V;IPFV;PL;1;PST bilmek bilgenidi V;PRF;PL;3;PST bilmek bildi V;SG;3;PST bilmek biliwatattuq V;PROG;PL;1;PST bilmek biliwatatting V;PROG;SG;2;INFM;PST bilmek bilisiler V;IPFV;PL;2;PRS bilmek bilmiduq V;PL;1;NEG;PST bilmek bilettim V;IPFV;SG;1;PST bilmek biliwatisiz V;PROG;FRML;SG;2;PRS bilmek biliwatisiler V;PROG;PL;2;PRS bilmek bilidu V;IPFV;SG;3;PRS bilmek bilmigenidim V;PRF;SG;1;NEG;PST bilmek bilgensiler V;PRF;PL;2;PRS bilmek bilmekchisiler V;INTEN;PL;2;PRS bilmek bilgen V;PRF;SG;3;PRS bilmek bilgeniding V;PRF;SG;2;INFM;PST bilmek biletti V;IPFV;PL;3;PST bilmek bilisiz V;IPFV;FRML;SG;2;PRS bilmek biliwatattingiz V;PROG;FRML;SG;2;PST bilmek bilgeniduq V;PRF;PL;1;PST bilmek bilgenidim V;PRF;SG;1;PST bilmek bilding V;SG;2;INFM;PST sorimaq sorimidi V;SG;3;NEG;PST sorimaq soraysiz V;IPFV;FRML;SG;2;PRS sorimaq sorighanidi V;PRF;PL;3;PST sorimaq soriduq V;PL;1;PST sorimaq sorawatisiler V;PROG;PL;2;PRS sorimaq sorawatatti V;PROG;SG;3;PST sorimaq sorighan V;PRF;SG;3;PRS sorimaq soraydu V;IPFV;PL;3;PRS sorimaq soraytti V;IPFV;SG;3;PST sorimaq sorimighanidi V;PRF;SG;3;NEG;PST sorimaq soraymen V;IPFV;SG;1;PRS sorimaq sorimaqchidim V;INTEN;SG;1;PST sorimaq sorimiding V;SG;2;NEG;INFM;PST sorimaq sorimidim V;SG;1;NEG;PST sorimaq sorimidi V;PL;3;NEG;PST sorimaq sorighan V;PRF;PL;3;PRS sorimaq sorawatimen V;PROG;SG;1;PRS sorimaq sorimaqchidi V;INTEN;SG;3;PST sorimaq sorawatatti V;PROG;PL;3;PST sorimaq sorighanidim V;PRF;SG;1;PST sorimaq sorimighansiler V;PRF;PL;2;NEG;PRS sorimaq sorimighanidinglar V;PRF;PL;2;NEG;PST sorimaq sorimighaniding V;PRF;SG;2;NEG;INFM;PST sorimaq soraymiz V;IPFV;PL;1;PRS sorimaq sorawatisiz V;PROG;FRML;SG;2;PRS sorimaq soraydu V;IPFV;SG;3;PRS sorimaq sorimaqchimiz V;INTEN;PL;1;PRS sorimaq sorimiduq V;PL;1;NEG;PST sorimaq sorawatimiz V;PROG;PL;1;PRS sorimaq sorawatatting V;PROG;SG;2;INFM;PST sorimaq sorimighanmiz V;PRF;PL;1;NEG;PRS sorimaq sorimaqchidi V;INTEN;PL;3;PST sorimaq sorimighanidingiz V;PRF;FRML;SG;2;NEG;PST sorimaq sorimaqchidinglar V;INTEN;PL;2;PST sorimaq sorimaqchisen V;INTEN;SG;2;INFM;PRS sorimaq soridinglar V;PL;2;PST sorimaq sorawatattim V;PROG;SG;1;PST sorimaq soridi V;PL;3;PST sorimaq sorayttinglar V;IPFV;PL;2;PST sorimaq sorimaqchidingiz V;FRML;INTEN;SG;2;PST sorimaq sorighanidinglar V;PRF;PL;2;PST sorimaq sorimighan V;PRF;PL;3;NEG;PRS sorimaq sorighaniduq V;PRF;PL;1;PST sorimaq sorawatidu V;PROG;SG;3;PRS sorimaq sorimighanmen V;PRF;SG;1;NEG;PRS sorimaq soraysiler V;IPFV;PL;2;PRS sorimaq sorighanidi V;PRF;SG;3;PST sorimaq sorighanidingiz V;PRF;FRML;SG;2;PST sorimaq sorighanmen V;PRF;SG;1;PRS sorimaq sorayttim V;IPFV;SG;1;PST sorimaq soriding V;SG;2;INFM;PST sorimaq sorawatisen V;PROG;SG;2;INFM;PRS sorimaq sorimighanidim V;PRF;SG;1;NEG;PST sorimaq soraysen V;IPFV;SG;2;INFM;PRS sorimaq sorayttuq V;IPFV;PL;1;PST sorimaq soridi V;SG;3;PST sorimaq sorimighaniduq V;PRF;PL;1;NEG;PST sorimaq sorighansiz V;PRF;FRML;SG;2;PRS sorimaq sorimighan V;PRF;SG;3;NEG;PRS sorimaq sorawatattinglar V;PROG;PL;2;PST sorimaq sorimaqchisiz V;FRML;INTEN;SG;2;PRS sorimaq sorawatattingiz V;PROG;FRML;SG;2;PST sorimaq sorimaqchisiler V;INTEN;PL;2;PRS sorimaq sorawatidu V;PROG;PL;3;PRS sorimaq sorayttingiz V;IPFV;FRML;SG;2;PST sorimaq sorighansiler V;PRF;PL;2;PRS sorimaq sorimighansiz V;PRF;FRML;SG;2;NEG;PRS sorimaq sorimaqchimen V;INTEN;SG;1;PRS sorimaq sorimaqchiding V;INTEN;SG;2;INFM;PST sorimaq soraytti V;IPFV;PL;3;PST sorimaq soridim V;SG;1;PST sorimaq sorimaqchi V;INTEN;PL;3;PRS sorimaq sorimighanidi V;PRF;PL;3;NEG;PST sorimaq sorighansen V;PRF;SG;2;INFM;PRS sorimaq sorimidingiz V;FRML;SG;2;NEG;PST sorimaq soraytting V;IPFV;SG;2;INFM;PST sorimaq soridingiz V;FRML;SG;2;PST sorimaq sorawatattuq V;PROG;PL;1;PST sorimaq sorimidinglar V;PL;2;NEG;PST sorimaq sorighanmiz V;PRF;PL;1;PRS sorimaq sorimaqchi V;INTEN;SG;3;PRS sorimaq sorighaniding V;PRF;SG;2;INFM;PST sorimaq sorimighansen V;PRF;SG;2;NEG;INFM;PRS sorimaq sorimaqchiduq V;INTEN;PL;1;PST körsetmek körsetmekchiding V;INTEN;SG;2;INFM;PST körsetmek körsetkenidinglar V;PRF;PL;2;PST körsetmek körsetkensiler V;PRF;PL;2;PRS körsetmek körsitiwatatti V;PROG;SG;3;PST körsetmek körsetmekchidim V;INTEN;SG;1;PST körsetmek körsetmidinglar V;PL;2;NEG;PST körsetmek körsetken V;PRF;SG;3;PRS körsetmek körsitimen V;IPFV;SG;1;PRS körsetmek körsitidu V;IPFV;PL;3;PRS körsetmek körsitiwatisiler V;PROG;PL;2;PRS körsetmek körsetmekchidinglar V;INTEN;PL;2;PST körsetmek körsetmiduq V;PL;1;NEG;PST körsetmek körsitiwatattinglar V;PROG;PL;2;PST körsetmek körsitisiz V;IPFV;FRML;SG;2;PRS körsetmek körsetmigenmen V;PRF;SG;1;NEG;PRS körsetmek körsitiwatisen V;PROG;SG;2;INFM;PRS körsetmek körsetkenidim V;PRF;SG;1;PST körsetmek körsetti V;SG;3;PST körsetmek körsitiwatattingiz V;PROG;FRML;SG;2;PST körsetmek körsetmigenmiz V;PRF;PL;1;NEG;PRS körsetmek körsitiwatidu V;PROG;SG;3;PRS körsetmek körsetting V;SG;2;INFM;PST körsetmek körsetkenidi V;PRF;SG;3;PST körsetmek körsetmekchiduq V;INTEN;PL;1;PST körsetmek körsitiwatidu V;PROG;PL;3;PRS körsetmek körsetkenidi V;PRF;PL;3;PST körsetmek körsetmigenidinglar V;PRF;PL;2;NEG;PST körsetmek körsetmigenidim V;PRF;SG;1;NEG;PST körsetmek körsitiwatisiz V;PROG;FRML;SG;2;PRS körsetmek körsetkenmiz V;PRF;PL;1;PRS körsetmek körsetmigenidingiz V;PRF;FRML;SG;2;NEG;PST körsetmek körsetkeniding V;PRF;SG;2;INFM;PST körsetmek körsitisen V;IPFV;SG;2;INFM;PRS körsetmek körsetmigensiz V;PRF;FRML;SG;2;NEG;PRS körsetmek körsetmigensiler V;PRF;PL;2;NEG;PRS körsetmek körsitettuq V;IPFV;PL;1;PST körsetmek körsetmidingiz V;FRML;SG;2;NEG;PST körsetmek körsetmekchimen V;INTEN;SG;1;PRS körsetmek körsitiwatatti V;PROG;PL;3;PST körsetmek körsitettingiz V;IPFV;FRML;SG;2;PST körsetmek körsitiwatimiz V;PROG;PL;1;PRS körsetmek körsetti V;PL;3;PST körsetmek körsitettinglar V;IPFV;PL;2;PST körsetmek körsettuq V;PL;1;PST körsetmek körsitisiler V;IPFV;PL;2;PRS körsetmek körsetmigensen V;PRF;SG;2;NEG;INFM;PRS körsetmek körsitettim V;IPFV;SG;1;PST körsetmek körsitiwatattuq V;PROG;PL;1;PST körsetmek körsetmekchimiz V;INTEN;PL;1;PRS körsetmek körsetmekchidi V;INTEN;PL;3;PST körsetmek körsitidu V;IPFV;SG;3;PRS körsetmek körsitiwatimen V;PROG;SG;1;PRS körsetmek körsetmekchidi V;INTEN;SG;3;PST körsetmek körsetmigenidi V;PRF;PL;3;NEG;PST körsetmek körsetmidi V;PL;3;NEG;PST körsetmek körsetmekchisiz V;FRML;INTEN;SG;2;PRS körsetmek körsetmigeniduq V;PRF;PL;1;NEG;PST körsetmek körsitetti V;IPFV;PL;3;PST körsetmek körsetkenidingiz V;PRF;FRML;SG;2;PST körsetmek körsetmekchi V;INTEN;PL;3;PRS körsetmek körsetmekchi V;INTEN;SG;3;PRS körsetmek körsetkenmen V;PRF;SG;1;PRS körsetmek körsetmigenidi V;PRF;SG;3;NEG;PST körsetmek körsitiwatattim V;PROG;SG;1;PST körsetmek körsetmekchisen V;INTEN;SG;2;INFM;PRS körsetmek körsetmiding V;SG;2;NEG;INFM;PST körsetmek körsettim V;SG;1;PST körsetmek körsettinglar V;PL;2;PST körsetmek körsitetting V;IPFV;SG;2;INFM;PST körsetmek körsetkensen V;PRF;SG;2;INFM;PRS körsetmek körsetmekchidingiz V;FRML;INTEN;SG;2;PST körsetmek körsetmigeniding V;PRF;SG;2;NEG;INFM;PST körsetmek körsetmidi V;SG;3;NEG;PST körsetmek körsetkensiz V;PRF;FRML;SG;2;PRS körsetmek körsetmekchisiler V;INTEN;PL;2;PRS körsetmek körsetmidim V;SG;1;NEG;PST körsetmek körsetkeniduq V;PRF;PL;1;PST körsetmek körsetmigen V;PRF;SG;3;NEG;PRS körsetmek körsetken V;PRF;PL;3;PRS körsetmek körsetmigen V;PRF;PL;3;NEG;PRS körsetmek körsettingiz V;FRML;SG;2;PST körsetmek körsitimiz V;IPFV;PL;1;PRS körsetmek körsitetti V;IPFV;SG;3;PST körsetmek körsitiwatatting V;PROG;SG;2;INFM;PST sétiwalmaq sétiwéliwatimiz V;PROG;PL;1;PRS sétiwalmaq sétiwalghanidingiz V;PRF;FRML;SG;2;PST sétiwalmaq sétiwalmaqchimiz V;INTEN;PL;1;PRS sétiwalmaq sétiwalmighansiler V;PRF;PL;2;NEG;PRS sétiwalmaq sétiwalmighanidi V;PRF;PL;3;NEG;PST sétiwalmaq sétiwéliwatisiz V;PROG;FRML;SG;2;PRS sétiwalmaq sétiwalmighanidinglar V;PRF;PL;2;NEG;PST sétiwalmaq sétiwalghan V;PRF;PL;3;PRS sétiwalmaq sétiwalatting V;IPFV;SG;2;INFM;PST sétiwalmaq sétiwalmighan V;PRF;PL;3;NEG;PRS sétiwalmaq sétiwaldi V;PL;3;PST sétiwalmaq sétiwalmaqchi V;INTEN;PL;3;PRS sétiwalmaq sétiwaldi V;SG;3;PST sétiwalmaq sétiwalmidingiz V;FRML;SG;2;NEG;PST sétiwalmaq sétiwalghaniding V;PRF;SG;2;INFM;PST sétiwalmaq sétiwéliwatatting V;PROG;SG;2;INFM;PST sétiwalmaq sétiwalmidim V;SG;1;NEG;PST sétiwalmaq sétiwalghanidinglar V;PRF;PL;2;PST sétiwalmaq sétiwalmighanidingiz V;PRF;FRML;SG;2;NEG;PST sétiwalmaq sétiwalmaqchisen V;INTEN;SG;2;INFM;PRS sétiwalmaq sétiwaldinglar V;PL;2;PST sétiwalmaq sétiwalattim V;IPFV;SG;1;PST sétiwalmaq sétiwéliwatimen V;PROG;SG;1;PRS sétiwalmaq sétiwalisiler V;IPFV;PL;2;PRS sétiwalmaq sétiwalmiding V;SG;2;NEG;INFM;PST sétiwalmaq sétiwalmighansiz V;PRF;FRML;SG;2;NEG;PRS sétiwalmaq sétiwéliwatatti V;PROG;SG;3;PST sétiwalmaq sétiwalmighanidim V;PRF;SG;1;NEG;PST sétiwalmaq sétiwalattingiz V;IPFV;FRML;SG;2;PST sétiwalmaq sétiwalghanidi V;PRF;SG;3;PST sétiwalmaq sétiwalimiz V;IPFV;PL;1;PRS sétiwalmaq sétiwalghanidi V;PRF;PL;3;PST sétiwalmaq sétiwalmighanmen V;PRF;SG;1;NEG;PRS sétiwalmaq sétiwalmaqchidi V;INTEN;PL;3;PST sétiwalmaq sétiwalmaqchidingiz V;FRML;INTEN;SG;2;PST sétiwalmaq sétiwalmidi V;SG;3;NEG;PST sétiwalmaq sétiwalding V;SG;2;INFM;PST sétiwalmaq sétiwéliwatattim V;PROG;SG;1;PST sétiwalmaq sétiwalmidi V;PL;3;NEG;PST sétiwalmaq sétiwéliwatisen V;PROG;SG;2;INFM;PRS sétiwalmaq sétiwalghan V;PRF;SG;3;PRS sétiwalmaq sétiwéliwatatti V;PROG;PL;3;PST sétiwalmaq sétiwalghansen V;PRF;SG;2;INFM;PRS sétiwalmaq sétiwalisiz V;IPFV;FRML;SG;2;PRS sétiwalmaq sétiwéliwatisiler V;PROG;PL;2;PRS sétiwalmaq sétiwalmighansen V;PRF;SG;2;NEG;INFM;PRS sétiwalmaq sétiwalmiduq V;PL;1;NEG;PST sétiwalmaq sétiwalghanidim V;PRF;SG;1;PST sétiwalmaq sétiwalmaqchisiler V;INTEN;PL;2;PRS sétiwalmaq sétiwalmaqchidi V;INTEN;SG;3;PST sétiwalmaq sétiwalatti V;IPFV;SG;3;PST sétiwalmaq sétiwalatti V;IPFV;PL;3;PST sétiwalmaq sétiwalghanmen V;PRF;SG;1;PRS sétiwalmaq sétiwalmaqchimen V;INTEN;SG;1;PRS sétiwalmaq sétiwalmighaniduq V;PRF;PL;1;NEG;PST sétiwalmaq sétiwalmighanidi V;PRF;SG;3;NEG;PST sétiwalmaq sétiwalattuq V;IPFV;PL;1;PST sétiwalmaq sétiwalghansiz V;PRF;FRML;SG;2;PRS sétiwalmaq sétiwalghaniduq V;PRF;PL;1;PST sétiwalmaq sétiwalmighaniding V;PRF;SG;2;NEG;INFM;PST sétiwalmaq sétiwalduq V;PL;1;PST sétiwalmaq sétiwalisen V;IPFV;SG;2;INFM;PRS sétiwalmaq sétiwalghanmiz V;PRF;PL;1;PRS sétiwalmaq sétiwalmighan V;PRF;SG;3;NEG;PRS sétiwalmaq sétiwalimen V;IPFV;SG;1;PRS sétiwalmaq sétiwéliwatattuq V;PROG;PL;1;PST sétiwalmaq sétiwéliwatidu V;PROG;SG;3;PRS sétiwalmaq sétiwalmidinglar V;PL;2;NEG;PST sétiwalmaq sétiwaldingiz V;FRML;SG;2;PST sétiwalmaq sétiwalmaqchisiz V;FRML;INTEN;SG;2;PRS sétiwalmaq sétiwalmaqchidim V;INTEN;SG;1;PST sétiwalmaq sétiwéliwatattingiz V;PROG;FRML;SG;2;PST sétiwalmaq sétiwalmaqchidinglar V;INTEN;PL;2;PST sétiwalmaq sétiwéliwatattinglar V;PROG;PL;2;PST sétiwalmaq sétiwéliwatidu V;PROG;PL;3;PRS sétiwalmaq sétiwalidu V;IPFV;PL;3;PRS sétiwalmaq sétiwalattinglar V;IPFV;PL;2;PST sétiwalmaq sétiwalghansiler V;PRF;PL;2;PRS sétiwalmaq sétiwalmaqchi V;INTEN;SG;3;PRS sétiwalmaq sétiwalmaqchiding V;INTEN;SG;2;INFM;PST sétiwalmaq sétiwalmighanmiz V;PRF;PL;1;NEG;PRS sétiwalmaq sétiwalmaqchiduq V;INTEN;PL;1;PST sétiwalmaq sétiwalidu V;IPFV;SG;3;PRS sétiwalmaq sétiwaldim V;SG;1;PST yémek yewatattim V;PROG;SG;1;PST yémek yémekchisen V;INTEN;SG;2;INFM;PRS yémek yémigeniding V;PRF;SG;2;NEG;INFM;PST yémek yewatatting V;PROG;SG;2;INFM;PST yémek yémigensen V;PRF;SG;2;NEG;INFM;PRS yémek yémiding V;SG;2;NEG;INFM;PST yémek yégensen V;PRF;SG;2;INFM;PRS yémek yégenmen V;PRF;SG;1;PRS yémek yémekchisiler V;INTEN;PL;2;PRS yémek yémekchidi V;INTEN;PL;3;PST yémek yeyttingiz V;IPFV;FRML;SG;2;PST yémek yeytting V;IPFV;SG;2;INFM;PST yémek yémigenmen V;PRF;SG;1;NEG;PRS yémek yémekchisiz V;FRML;INTEN;SG;2;PRS yémek yeysen V;IPFV;SG;2;INFM;PRS yémek yeydu V;IPFV;SG;3;PRS yémek yégenidi V;PRF;SG;3;PST yémek yémekchidingiz V;FRML;INTEN;SG;2;PST yémek yewatattingiz V;PROG;FRML;SG;2;PST yémek yémekchimiz V;INTEN;PL;1;PRS yémek yémiduq V;PL;1;NEG;PST yémek yémigenidinglar V;PRF;PL;2;NEG;PST yémek yémekchidi V;INTEN;SG;3;PST yémek yémekchiding V;INTEN;SG;2;INFM;PST yémek yeymen V;IPFV;SG;1;PRS yémek yémidim V;SG;1;NEG;PST yémek yégenmiz V;PRF;PL;1;PRS yémek yémekchimen V;INTEN;SG;1;PRS yémek yewatisen V;PROG;SG;2;INFM;PRS yémek yewatatti V;PROG;PL;3;PST yémek yémigensiler V;PRF;PL;2;NEG;PRS yémek yeytti V;IPFV;SG;3;PST yémek yédingiz V;FRML;SG;2;PST yémek yeytti V;IPFV;PL;3;PST yémek yémekchi V;INTEN;SG;3;PRS yémek yégenidim V;PRF;SG;1;PST yémek yégeniding V;PRF;SG;2;INFM;PST yémek yégenidingiz V;PRF;FRML;SG;2;PST yémek yédi V;PL;3;PST yémek yeyttinglar V;IPFV;PL;2;PST yémek yédi V;SG;3;PST yémek yewatimiz V;PROG;PL;1;PRS yémek yewatimen V;PROG;SG;1;PRS yémek yégenidinglar V;PRF;PL;2;PST yémek yémigenidi V;PRF;SG;3;NEG;PST yémek yémidi V;PL;3;NEG;PST yémek yémidingiz V;FRML;SG;2;NEG;PST yémek yémigensiz V;PRF;FRML;SG;2;NEG;PRS yémek yewatisiz V;PROG;FRML;SG;2;PRS yémek yeydu V;IPFV;PL;3;PRS yémek yeymiz V;IPFV;PL;1;PRS yémek yémigenidingiz V;PRF;FRML;SG;2;NEG;PST yémek yémekchidim V;INTEN;SG;1;PST yémek yewatatti V;PROG;SG;3;PST yémek yégeniduq V;PRF;PL;1;PST yémek yeyttuq V;IPFV;PL;1;PST yémek yégensiz V;PRF;FRML;SG;2;PRS yémek yémigen V;PRF;SG;3;NEG;PRS yémek yewatisiler V;PROG;PL;2;PRS yémek yégen V;PRF;PL;3;PRS yémek yégenidi V;PRF;PL;3;PST yémek yewatidu V;PROG;SG;3;PRS yémek yémigenidi V;PRF;PL;3;NEG;PST yémek yeysiz V;IPFV;FRML;SG;2;PRS yémek yewatattinglar V;PROG;PL;2;PST yémek yémidi V;SG;3;NEG;PST yémek yémidinglar V;PL;2;NEG;PST yémek yémigenmiz V;PRF;PL;1;NEG;PRS yémek yémigenidim V;PRF;SG;1;NEG;PST yémek yewatattuq V;PROG;PL;1;PST yémek yeysiler V;IPFV;PL;2;PRS yémek yémekchi V;INTEN;PL;3;PRS yémek yémigeniduq V;PRF;PL;1;NEG;PST yémek yémekchidinglar V;INTEN;PL;2;PST yémek yégen V;PRF;SG;3;PRS yémek yémekchiduq V;INTEN;PL;1;PST yémek yégensiler V;PRF;PL;2;PRS yémek yewatidu V;PROG;PL;3;PRS yémek yédinglar V;PL;2;PST yémek yéding V;SG;2;INFM;PST yémek yéduq V;PL;1;PST yémek yeyttim V;IPFV;SG;1;PST yémek yédim V;SG;1;PST yémek yémigen V;PRF;PL;3;NEG;PRS eslimek esligenmen V;PRF;SG;1;PRS eslimek esleyttuq V;IPFV;PL;1;PST eslimek eslewatisiler V;PROG;PL;2;PRS eslimek esleysiler V;IPFV;PL;2;PRS eslimek esleytti V;IPFV;PL;3;PST eslimek eslimigensiz V;PRF;FRML;SG;2;NEG;PRS eslimek eslimekchidinglar V;INTEN;PL;2;PST eslimek esligensiz V;PRF;FRML;SG;2;PRS eslimek eslimidi V;PL;3;NEG;PST eslimek esligen V;PRF;PL;3;PRS eslimek eslimigen V;PRF;PL;3;NEG;PRS eslimek eslewatattuq V;PROG;PL;1;PST eslimek esligenidingiz V;PRF;FRML;SG;2;PST eslimek eslimigensiler V;PRF;PL;2;NEG;PRS eslimek esligenidinglar V;PRF;PL;2;PST eslimek eslimigen V;PRF;SG;3;NEG;PRS eslimek esleyttingiz V;IPFV;FRML;SG;2;PST eslimek eslidinglar V;PL;2;PST eslimek eslimiding V;SG;2;NEG;INFM;PST eslimek eslimigensen V;PRF;SG;2;NEG;INFM;PRS eslimek eslimekchidi V;INTEN;SG;3;PST eslimek eslimekchisen V;INTEN;SG;2;INFM;PRS eslimek esleydu V;IPFV;PL;3;PRS eslimek eslimiduq V;PL;1;NEG;PST eslimek eslimigeniding V;PRF;SG;2;NEG;INFM;PST eslimek eslewatattinglar V;PROG;PL;2;PST eslimek eslewatatti V;PROG;SG;3;PST eslimek esligeniduq V;PRF;PL;1;PST eslimek eslewatidu V;PROG;SG;3;PRS eslimek eslewatisiz V;PROG;FRML;SG;2;PRS eslimek eslimekchisiler V;INTEN;PL;2;PRS eslimek esleytti V;IPFV;SG;3;PST eslimek esligenidim V;PRF;SG;1;PST eslimek eslewatimiz V;PROG;PL;1;PRS eslimek eslewatimen V;PROG;SG;1;PRS eslimek eslidi V;PL;3;PST eslimek eslimidi V;SG;3;NEG;PST eslimek esleymiz V;IPFV;PL;1;PRS eslimek eslimigenidi V;PRF;PL;3;NEG;PST eslimek esliding V;SG;2;INFM;PST eslimek eslidi V;SG;3;PST eslimek eslewatisen V;PROG;SG;2;INFM;PRS eslimek eslewatattingiz V;PROG;FRML;SG;2;PST eslimek eslidingiz V;FRML;SG;2;PST eslimek eslewatatti V;PROG;PL;3;PST eslimek eslimekchi V;INTEN;SG;3;PRS eslimek eslimigenmen V;PRF;SG;1;NEG;PRS eslimek eslimekchidi V;INTEN;PL;3;PST eslimek eslimigenidi V;PRF;SG;3;NEG;PST eslimek eslimekchi V;INTEN;PL;3;PRS eslimek eslimigeniduq V;PRF;PL;1;NEG;PST eslimek esleysiz V;IPFV;FRML;SG;2;PRS eslimek eslewatattim V;PROG;SG;1;PST eslimek esligenmiz V;PRF;PL;1;PRS eslimek eslimigenidinglar V;PRF;PL;2;NEG;PST eslimek esleytting V;IPFV;SG;2;INFM;PST eslimek esleydu V;IPFV;SG;3;PRS eslimek eslimekchimen V;INTEN;SG;1;PRS eslimek eslimidim V;SG;1;NEG;PST eslimek eslimekchiding V;INTEN;SG;2;INFM;PST eslimek eslimekchiduq V;INTEN;PL;1;PST eslimek eslimidinglar V;PL;2;NEG;PST eslimek eslimidingiz V;FRML;SG;2;NEG;PST eslimek eslimigenidingiz V;PRF;FRML;SG;2;NEG;PST eslimek eslimigenmiz V;PRF;PL;1;NEG;PRS eslimek esligensiler V;PRF;PL;2;PRS eslimek esleyttinglar V;IPFV;PL;2;PST eslimek eslimekchidingiz V;FRML;INTEN;SG;2;PST eslimek eslimigenidim V;PRF;SG;1;NEG;PST eslimek eslimekchisiz V;FRML;INTEN;SG;2;PRS eslimek eslidim V;SG;1;PST eslimek esligen V;PRF;SG;3;PRS eslimek esleyttim V;IPFV;SG;1;PST eslimek esliduq V;PL;1;PST eslimek eslewatidu V;PROG;PL;3;PRS eslimek esleymen V;IPFV;SG;1;PRS eslimek esligeniding V;PRF;SG;2;INFM;PST eslimek eslimekchimiz V;INTEN;PL;1;PRS eslimek esligenidi V;PRF;SG;3;PST eslimek eslimekchidim V;INTEN;SG;1;PST eslimek eslewatatting V;PROG;SG;2;INFM;PST eslimek esligenidi V;PRF;PL;3;PST eslimek esligensen V;PRF;SG;2;INFM;PRS eslimek esleysen V;IPFV;SG;2;INFM;PRS
a6d9f640d062a65406930f09e6887f866a96e964
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/Scout VS Scout .sce
93b083a6547720824710dfceeceecbfa87aed54d
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
22,622
sce
Scout VS Scout .sce
Name=Scout VS Scout PlayerCharacters=Scout BotCharacters=Scout.bot IsChallenge=true Timelimit=200.0 PlayerProfile=Scout AddedBots=Scout.bot PlayerMaxLives=20 BotMaxLives=20 PlayerTeam=1 BotTeams=2 MapName=kovaim1.map MapScale=2.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=10.0 ScoreToWin=1000.0 ScorePerDamage=0.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=5.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=true GameTag=Team Fortress 2, TF2 WeaponHeroTag=Scout DifficultyTag=4 AuthorsTag=k1tty BlockHitMarkers=true BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=1v1 against a bot opponent. Similar to MGE where it is first to 20 kills. Opponent is of high difficulty. GameVersion=1.0.5 [Aim Profile] Name=High Skill MinReactionTime=0.25 MaxReactionTime=0.35 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=5.0 TrackSpeed=5.0 TrackError=2.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=35.0 OuterAimPenalty=1.0 MaxError=35.0 ShootFOV=20.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=Scout DodgeProfileNames=ADAD DodgeProfileWeights=3.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=2.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=High Skill;High Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Scout SeeThroughWalls=true [Character Profile] Name=Scout MaxHealth=125.0 WeaponProfileNames=Scattergun;Pistol;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=0.1 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=762.0 MaxCrouchSpeed=254.0 Acceleration=7620.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=500.0 Gravity=1.54 AirControl=0.2 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=true EnemyBodyColor=X=0.000 Y=0.361 Z=0.807 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.847 Y=0.012 Z=0.018 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=1 AirJumpVelocity=500.0 MainBBType=Cylindrical MainBBHeight=147.800003 MainBBRadius=25.0 MainBBHasHead=true MainBBHeadRadius=15.0 MainBBHeadOffset=-5.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=177.800003 ProjBBRadius=59.0 ProjBBHasHead=true ProjBBHeadRadius=20.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.895013 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=125.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 [Dodge Profile] Name=ADAD MaxTargetDistance=350.0 MinTargetDistance=300.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.1 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.05 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.16 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.2 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=Scattergun Type=Hitscan ShotsPerClick=10 DamagePerShot=11.3 KnockbackFactor=1.0 TimeBetweenShots=0.625 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=false HeadshotMultiplier=2.0 MagazineMax=6 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=1.0 DamageFalloffStopDistance=1951.0 DamageAtMaxRange=3.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=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.8 RecoilNegatable=false DecalType=1 DecalSize=12.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=4.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=7 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false 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=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=4.0 MinRecoilUp=4.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.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.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=true PBS0=0.0,0.0 PBS1=1.5,0.0 PBS2=1.8,45.0 PBS3=1.5,90.0 PBS4=1.8,135.0 PBS5=1.5,180.0 PBS6=1.8,225.0 PBS7=1.5,270.0 PBS8=1.8,315.0 PBS9=0.0,0.0 [Weapon Profile] Name=Pistol Type=Hitscan ShotsPerClick=1 DamagePerShot=22.0 KnockbackFactor=1.0 TimeBetweenShots=0.17 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=false HeadshotMultiplier=2.0 MagazineMax=12 AmmoPerShot=1 ReloadTimeFromEmpty=1.25 ReloadTimeFromPartial=1.25 DamageFalloffStartDistance=146.0 DamageFalloffStopDistance=1951.0 DamageAtMaxRange=8.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=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.8 RecoilNegatable=false DecalType=1 DecalSize=12.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=12 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false 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=2.0,1.6,0.0,2.0 SpreadSCA=2.0,1.6,0.0,2.0 SpreadMSA=2.0,1.6,0.0,2.0 SpreadMCA=2.0,1.6,0.0,2.0 SpreadSSH=2.0,1.6,0.0,2.0 SpreadSCH=2.0,1.6,0.0,2.0 SpreadMSH=2.0,1.6,0.0,2.0 SpreadMCH=2.0,1.6,0.0,2.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.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 -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 96.000000 -384.000000 -320.000000 96.000000 -384.000000 -320.000000 96.000000 -512.000000 -576.000000 96.000000 -512.000000 -576.000000 0.000000 -384.000000 -320.000000 0.000000 -384.000000 -320.000000 0.000000 -512.000000 -576.000000 0.000000 -512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 192.000000 96.000000 0.000000 448.000000 96.000000 0.000000 448.000000 96.000000 -128.000000 192.000000 96.000000 -128.000000 192.000000 0.000000 0.000000 448.000000 0.000000 0.000000 448.000000 0.000000 -128.000000 192.000000 0.000000 -128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -736.000000 entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -64.000000 0.000000 224.000000 Vector3 angles 180.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position -544.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000
598564c97d633af58daa39e6a6b8003970fb5f72
449d555969bfd7befe906877abab098c6e63a0e8
/3834/CH13/EX13.4.1/Ex13_4_1.sce
1c029ddafb3473aa47210dc8f4115bf234c7766d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
728
sce
Ex13_4_1.sce
//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner //Windows 8 //Scilab version- 6.0.0 //Example 13.4.1 clc; clear ; //given Oe=(10^3)/(4*%pi); pfib=0.0128/Oe;//verdet's angle min/Oe-cm for silica fiber pcry=9*60/Oe;//verdet's angle min/Oe-cm for BIG(Bi-substituted iron garnet) crystal H=1000*Oe;//strength of magnetic field in A/m phi=45*60;//angle in minutes Lfib=phi/(pfib*H);//Length of faraday rotators made from silica fiber in cm mprintf("Length of faraday rotators made from silica fiber= %.2f cm",Lfib); Lcry=phi/(pcry*H);//Length of faraday rotators made from silica fiber in mm mprintf("\nLength of faraday rotators made from silica fiber= %.2f mm",Lcry*10);
a90316a9ff1a9f03206187e07b52a5972001d142
449d555969bfd7befe906877abab098c6e63a0e8
/296/CH3/EX3.7/eg3_7.sce
ae5719c897521ca4ccc82bac8a159d6afbb164d3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
274
sce
eg3_7.sce
un= 700; q = 1.6*10^-19; n0 = 10^17; L = 0.1; A = 10^-6; V = 10; sigma = q*un*n0; rho = 1/sigma; R = rho*L/A; I = V/R; disp(sigma,"Conductivity (in per ohm-cm)=") disp(rho,"resistivity (in ohm-cm)=") disp(R,"resistance (in ohm)=") disp(I,"current (in ampere)=")
933b5e42aa0bb359abd9378ac7f4c6c48f076cad
449d555969bfd7befe906877abab098c6e63a0e8
/2495/CH6/EX6.6.5/Ex6_6_5.sce
a9f83e68f03861a94ccc0c4ff75ecf4f7cc6e135
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
765
sce
Ex6_6_5.sce
clear clc X1=1.04;//solubility of KBr in gm/gm w=1;//amount of H20 in gm X2=0.64;//solubility of KBr after cooling in gm/gm M1=(w/X1)*(X1-X2);//mass of water to be added in gm M2=(X2/w)*M1;//mass of KBr in the solution in gm M=(X1-X2)-M2;//mass of KBr separated in gm N1=M*(100/X1);//percent yield of pure KBr printf('N1=%.2f',N1) M3=(w/X1)*X2;//mass of water remained in above evaporation process in gm M4=(X2/w)*(M3);//mass of water remained after cooling in above evaporation process in gm M=(X2)*M4;//mass of KBr separated in second crop in gm Mt=(X1-X2)+M;//total mass of kBr separated in two crops in gm N2=Mt*(100/X1);//percent of KBr recovered printf('\nN2=%.2f',N2) //There are some errors in the solution given in textbook //page 317
c6e2640171bc96be9da9f212bdf8e862d36652b3
449d555969bfd7befe906877abab098c6e63a0e8
/1802/CH2/EX2.1/Exa2_1.sce
1a38207cc837a94965589873d3ad944c772f426d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,155
sce
Exa2_1.sce
//Exa 2.1 clc; clear; close; //Given Data : format('v',7); //CableCost=20+400*a;//in Rs./meter (a=cross section in cm^2) //Cable_cost=(20+400*a)*1000;//in Rs./meter l=1;//in Km P=1;//in MW V=11;//in KV cosfi=0.8;//powerfactor h=3000;//hours i=10;//in % E_cost=15;//in paisa/kwh rho=1.75*10^-6;//sp. resistance in ohm-cm //C1=CableCost*1000;//in Rs./km disp("Cost of 1km cable=Rs"+string(20*1000)+"+"+string(400*1000)+"a"); //R=rho*l*10^3/(a*10^-2);//in ohm disp("Resistance of 1km cable(in ohm) = "+string(rho*l*10^3/(10^-2))+"/a"); Ifl=(P*10^6)/(V*10^3*cosfi);//in Ampere disp(Ifl,"Full load current(in Ampere) :"); //Ploss=2*I^2*R;//in Watts disp("Power loss in the cable(in watts) : "+string(2*Ifl^2*rho*l*10^3/(10^-2))+"/a"); //Annual_cost=Ploss*10^-3*h*E_cost/100;//in Rs. disp("Annual cost of energy(in Rs.) : "+string(2*Ifl^2*rho*l*h*E_cost/(10^-2))+"/a"); //AnnualCost2=400*10^3*a*i/100;//in Rs. disp("AnnualCost of interest and depriciation(in Rs.)="+string(400*10^3*i/100)+"a"); disp("Using Kelvin law for most ecpnomical cross sectional area :"); a=2032.5/40000; disp(a,"Most economical cross section(in cm^2) :");
6a439cb43b32786b5456ce90902fb60eef5aa6ac
449d555969bfd7befe906877abab098c6e63a0e8
/1244/CH2/EX2.3/Example23.sce
a2c01c2de674d44d45380601fe64ee5393b94dff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
838
sce
Example23.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clc; disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 2 Example # 2.3 ") //Outer radius in m ro = 0.02; //Inner radius in m ri = 0.015; //Thermal conductivity of plastic in W/mK k = 0.5; //Internal convection heat transfer coefficient in W/m2K hc1 = 300; //Temperature of fluid in pipe in degree C Thot = 200; //Temperature of outside in degree C Tcold = 30; //External convection heat transfer coefficient in W/m2K hc0 = 10; disp("Overall heat transfer coefficient in W/m2K is") //Overall heat transfer coefficient in W/m2K U0 = 1/(ro/(ri*hc1)+(ro*log(ro/ri))/k+1/hc0) disp("The heat loss per unit length in W/m is") //The heat loss per unit length in W/m q = (((U0*2)*%pi)*ro)*(Thot-Tcold)
4d8eba534b2b37d813de44af7c7297fcac5f9f8e
d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3
/r38/packages/geometry/geoprover.tst
934cf61403728ca0e123483ace238c5c01d6193d
[ "BSD-3-Clause" ]
permissive
reduce-algebra/reduce-historical
8220e211b116e0e01ff1a38f51917cac9db6069f
e014152729c4d62bb1ce4f5c311a027042a5495a
refs/heads/master
2023-04-10T22:54:00.796596
2021-04-16T08:52:19
2021-04-16T08:52:19
343,245,204
7
1
NOASSERTION
2021-04-16T08:53:31
2021-03-01T00:15:22
TeX
UTF-8
Scilab
false
false
11,499
tst
geoprover.tst
% GeoProver test file for Reduce, created on Jan 18 2003 load cali,geoprover; off nat; on echo; %in "$reduce/packages/geometry/supp.red"$ %############################################################### % % FILE: supp.red % AUTHOR: graebe % CREATED: 2/2002 % PURPOSE: Interface for the extended GEO syntax to Reduce % VERSION: $Id: supp.red,v 1.1 2002/12/26 16:27:22 compalg Exp $ algebraic procedure geo_simplify u; u; algebraic procedure geo_normal u; u; algebraic procedure geo_subs(a,b,c); sub(a=b,c); algebraic procedure geo_gbasis(polys,vars); begin setring(vars,{},lex); setideal(uhu,polys); return gbasis uhu; end; algebraic procedure geo_groebfactor(polys,vars,nondeg); begin setring(vars,{},lex); return groebfactor(polys,nondeg); end; algebraic procedure geo_normalf(p,polys,vars); begin setring(vars,{},lex); return p mod polys; end; algebraic procedure geo_eliminate(polys,vars,elivars); begin setring(vars,{},lex); return eliminate(polys,elivars); end; algebraic procedure geo_solve(polys,vars); solve(polys,vars); algebraic procedure geo_solveconstrained(polys,vars,nondegs); begin scalar u; setring(vars,{},lex); u:=groebfactor(polys,nondegs); return for each x in u join solve(x,vars); end; algebraic procedure geo_eval(con,sol); for each x in sol collect sub(x,con); % end; % Example Arnon % % The problem: % Let $ABCD$ be a square and $P$ a point on the line parallel to $BD$ % through $C$ such that $l(BD)=l(BP)$, where $l(BD)$ denotes the % distance between $B$ and $D$. Let $Q$ be the intersection point of % $BF$ and $CD$. Show that $l(DP)=l(DQ)$. % % The solution: vars_:=List(x1, x2, x3); % Points A__:=Point(0,0); B__:=Point(1,0); P__:=Point(x1,x2); % coordinates D__:=rotate(A__,B__,1/2); C__:=par_point(D__,A__,B__); Q__:=varpoint(D__,C__,x3); % polynomials polys_:=List(on_line(P__,par_line(C__,pp_line(B__,D__))), eq_dist(B__,D__,B__,P__), on_line(Q__,pp_line(B__,P__))); % conclusion con_:=eq_dist(D__,P__,D__,Q__); % solution gb_:=geo_gbasis(polys_,vars_); result_:=geo_normalf(con_,gb_,vars_); % Example CircumCenter_1 % % The problem: % The intersection point of the midpoint perpendiculars is the % center of the circumscribed circle. % % The solution: parameters_:=List(a1, a2, b1, b2, c1, c2); % Points A__:=Point(a1,a2); B__:=Point(b1,b2); C__:=Point(c1,c2); % coordinates M__:=intersection_point(p_bisector(A__,B__), p_bisector(B__,C__)); % conclusion result_:=List( eq_dist(M__,A__,M__,B__), eq_dist(M__,A__,M__,C__) ); % Example EulerLine_1 % % The problem: % Euler's line: The center $M$ of the circumscribed circle, % the orthocenter $H$ and the barycenter $S$ are collinear and $S$ % divides $MH$ with ratio 1:2. % % The solution: parameters_:=List(a1, a2, b1, b2, c1, c2); % Points A__:=Point(a1,a2); B__:=Point(b1,b2); C__:=Point(c1,c2); % coordinates S__:=intersection_point(median(A__,B__,C__),median(B__,C__,A__)); M__:=intersection_point(p_bisector(A__,B__), p_bisector(B__,C__)); H__:=intersection_point(altitude(A__,B__,C__),altitude(B__,C__,A__)); % conclusion result_:=List(is_collinear(M__,H__,S__), sqrdist(S__,fixedpoint(M__,H__,1/3))); % Example Brocard_3 % % The problem: % Theorem about the Brocard points: % Let $\Delta\,ABC$ be a triangle. The circles $c_1$ through $A,B$ and % tangent to $g(AC)$, $c_2$ through $B,C$ and tangent to $g(AB)$, and % $c_3$ through $A,C$ and tangent to $g(BC)$ pass through a common % point. % % The solution: parameters_:=List(u1, u2); % Points A__:=Point(0,0); B__:=Point(1,0); C__:=Point(u1,u2); % coordinates M_1_:=intersection_point(altitude(A__,A__,C__),p_bisector(A__,B__)); M_2_:=intersection_point(altitude(B__,B__,A__),p_bisector(B__,C__)); M_3_:=intersection_point(altitude(C__,C__,B__),p_bisector(A__,C__)); c1_:=pc_circle(M_1_,A__); c2_:=pc_circle(M_2_,B__); c3_:=pc_circle(M_3_,C__); P__:=other_cc_point(B__,c1_,c2_); % conclusion result_:= on_circle(P__,c3_); % Example Feuerbach_1 % % The problem: % Feuerbach's circle or nine-point circle: The midpoint $N$ of $MH$ is % the center of a circle that passes through nine special points, the % three pedal points of the altitudes, the midpoints of the sides of the % triangle and the midpoints of the upper parts of the three altitudes. % % The solution: parameters_:=List(u1, u2, u3); % Points A__:=Point(0,0); B__:=Point(u1,0); C__:=Point(u2,u3); % coordinates H__:=intersection_point(altitude(A__,B__,C__),altitude(B__,C__,A__)); D__:=intersection_point(pp_line(A__,B__),pp_line(H__,C__)); M__:=intersection_point(p_bisector(A__,B__), p_bisector(B__,C__)); N__:=midpoint(M__,H__); % conclusion result_:=List( eq_dist(N__,midpoint(A__,B__),N__,midpoint(B__,C__)), eq_dist(N__,midpoint(A__,B__),N__,midpoint(H__,C__)), eq_dist(N__,midpoint(A__,B__),N__,D__) ); % Example FeuerbachTangency_1 % % The problem: % For an arbitrary triangle $\Delta\,ABC$ Feuerbach's circle (nine-point % circle) is tangent to its 4 tangent circles. % % The solution: vars_:=List(x1, x2); parameters_:=List(u1, u2); % Points A__:=Point(0,0); B__:=Point(2,0); C__:=Point(u1,u2); P__:=Point(x1,x2); % coordinates M__:=intersection_point(p_bisector(A__,B__), p_bisector(B__,C__)); H__:=intersection_point(altitude(A__,B__,C__),altitude(B__,C__,A__)); N__:=midpoint(M__,H__); c1_:=pc_circle(N__,midpoint(A__,B__)); Q__:=pedalpoint(P__,pp_line(A__,B__)); % polynomials polys_:=List(on_bisector(P__,A__,B__,C__), on_bisector(P__,B__,C__,A__)); % conclusion con_:=is_cc_tangent(pc_circle(P__,Q__),c1_); % solution gb_:=geo_gbasis(polys_,vars_); result_:=geo_normalf(con_,gb_,vars_); % Example GeneralizedFermatPoint_1 % % The problem: % A generalized theorem about Napoleon triangles: % Let $\Delta\,ABC$ be an arbitrary triangle and $P,Q$ and $R$ the third % vertex of isosceles triangles with equal base angles erected % externally on the sides $BC, AC$ and $AB$ of the triangle. Then the % lines $g(AP), g(BQ)$ and $g(CR)$ pass through a common point. % % The solution: vars_:=List(x1, x2, x3, x4, x5); parameters_:=List(u1, u2, u3); % Points A__:=Point(0,0); B__:=Point(2,0); C__:=Point(u1,u2); P__:=Point(x1,x2); Q__:=Point(x3,x4); R__:=Point(x5,u3); % polynomials polys_:=List(eq_dist(P__,B__,P__,C__), eq_dist(Q__,A__,Q__,C__), eq_dist(R__,A__,R__,B__), eq_angle(R__,A__,B__,P__,B__,C__), eq_angle(Q__,C__,A__,P__,B__,C__)); % conclusion con_:=is_concurrent(pp_line(A__,P__), pp_line(B__,Q__), pp_line(C__,R__)); % solution sol_:=geo_solve(polys_,vars_); result_:=geo_eval(con_,sol_); % Example TaylorCircle_1 % % The problem: % Let $\Delta\,ABC$ be an arbitrary triangle. Consider the three % altitude pedal points and the pedal points of the perpendiculars from % these points onto the the opposite sides of the triangle. Show that % these 6 points are on a common circle, the {\em Taylor circle}. % % The solution: parameters_:=List(u1, u2, u3); % Points A__:=Point(u1,0); B__:=Point(u2,0); C__:=Point(0,u3); % coordinates P__:=pedalpoint(A__,pp_line(B__,C__)); Q__:=pedalpoint(B__,pp_line(A__,C__)); R__:=pedalpoint(C__,pp_line(A__,B__)); P_1_:=pedalpoint(P__,pp_line(A__,B__)); P_2_:=pedalpoint(P__,pp_line(A__,C__)); Q_1_:=pedalpoint(Q__,pp_line(A__,B__)); Q_2_:=pedalpoint(Q__,pp_line(B__,C__)); R_1_:=pedalpoint(R__,pp_line(A__,C__)); R_2_:=pedalpoint(R__,pp_line(B__,C__)); % conclusion result_:=List( is_concyclic(P_1_,P_2_,Q_1_,Q_2_), is_concyclic(P_1_,P_2_,Q_1_,R_1_), is_concyclic(P_1_,P_2_,Q_1_,R_2_)); % Example Miquel_1 % % The problem: % Miquels theorem: Let $\Delta\,ABC$ be a triangle. Fix arbitrary points % $P,Q,R$ on the sides $AB, BC, AC$. Then the three circles through each % vertex and the chosen points on adjacent sides pass through a common % point. % % The solution: parameters_:=List(c1, c2, u1, u2, u3); % Points A__:=Point(0,0); B__:=Point(1,0); C__:=Point(c1,c2); % coordinates P__:=varpoint(A__,B__,u1); Q__:=varpoint(B__,C__,u2); R__:=varpoint(A__,C__,u3); X__:=other_cc_point(P__,p3_circle(A__,P__,R__),p3_circle(B__,P__,Q__)); % conclusion result_:=on_circle(X__,p3_circle(C__,Q__,R__)); % Example PappusPoint_1 % % The problem: % Let $A,B,C$ and $P,Q,R$ be two triples of collinear points. Then by % the Theorem of Pappus the intersection points $g(AQ)\wedge g(BP), % g(AR)\wedge g(CP)$ and $g(BR)\wedge g(CQ)$ are collinear. % % Permuting $P,Q,R$ we get six such {\em Pappus lines}. Those % corresponding to even resp. odd permutations are concurrent. % % The solution: parameters_:=List(u1, u2, u3, u4, u5, u6, u7, u8); % Points A__:=Point(u1,0); B__:=Point(u2,0); P__:=Point(u4,u5); Q__:=Point(u6,u7); % coordinates C__:=varpoint(A__,B__,u3); R__:=varpoint(P__,Q__,u8); % conclusion result_:=is_concurrent(pappus_line(A__,B__,C__,P__,Q__,R__), pappus_line(A__,B__,C__,Q__,R__,P__), pappus_line(A__,B__,C__,R__,P__,Q__)); % Example IMO/36_1 % % The problem: % Let $A,B,C,D$ be four distinct points on a line, in that order. The % circles with diameters $AC$ and $BD$ intersect at the points $X$ and % $Y$. The line $XY$ meets $BC$ at the point $Z$. Let $P$ be a point on % the line $XY$ different from $Z$. The line $CP$ intersects the circle % with diameter $AC$ at the points $C$ and $M$, and the line $BP$ % intersects the circle with diameter $BD$ at the points $B$ and % $N$. Prove that the lines $AM, DN$ and $XY$ are concurrent. % % The solution: vars_:=List(x1, x2, x3, x4, x5, x6); parameters_:=List(u1, u2, u3); % Points X__:=Point(0,1); Y__:=Point(0,-1); M__:=Point(x1,x2); N__:=Point(x3,x4); % coordinates P__:=varpoint(X__,Y__,u3); Z__:=midpoint(X__,Y__); l_:=p_bisector(X__,Y__); B__:=line_slider(l_,u1); C__:=line_slider(l_,u2); A__:=line_slider(l_,x5); D__:=line_slider(l_,x6); % polynomials polys_:=List(is_concyclic(X__,Y__,B__,N__), is_concyclic(X__,Y__,C__,M__), is_concyclic(X__,Y__,B__,D__), is_concyclic(X__,Y__,C__,A__), is_collinear(B__,P__,N__), is_collinear(C__,P__,M__)); % constraints nondeg_:=List(x5-u2,x1-u2,x6-u1,x3-u1); % conclusion con_:=is_concurrent(pp_line(A__,M__),pp_line(D__,N__),pp_line(X__,Y__)); % solution sol_:=geo_solveconstrained(polys_,vars_,nondeg_); result_:=geo_eval(con_,sol_); % Example IMO/43_2 % % The problem: % % No verbal problem description available % % The solution: vars_:=List(x1, x2); parameters_:=List(u1); % Points B__:=Point(-1,0); C__:=Point(1,0); % coordinates O__:=midpoint(B__,C__); gamma_:=pc_circle(O__,B__); D__:=circle_slider(O__,B__,u1); E__:=circle_slider(O__,B__,x1); F__:=circle_slider(O__,B__,x2); A__:=sym_point(B__,pp_line(O__,D__)); J__:=intersection_point(pp_line(A__,C__), par_line(O__, pp_line(A__,D__))); m_:=p_bisector(O__,A__); P_1_:=pedalpoint(J__,m_); P_2_:=pedalpoint(J__,pp_line(C__,E__)); P_3_:=pedalpoint(J__,pp_line(C__,F__)); % polynomials polys_:=List(on_line(E__,m_), on_line(F__,m_)); % constraints nondegs_:=List(x1-x2); % conclusion con_:=List(eq_dist(J__,P_1_,J__,P_2_), eq_dist(J__,P_1_,J__,P_3_)); % solution sol_:=geo_solveconstrained(polys_,vars_,nondegs_); result_:=geo_simplify(geo_eval(con_,sol_)); showtime; end;