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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c067baa20770a4f79583c82618d0585e79416d7e | 4ba406c1422fd1f3462feb6c2f378b17ea9175c2 | /src/functions/dump/FunkyGeoPlanet.tst | c20ebc1a0de85f1b123a1990b06753bd33f8b968 | [] | no_license | dwjohnston/geoplanets-model | 236670178c456a0537ee31cfb3ab931ea46c7edf | 06ff2b0ec83272f56ffe02b9ee38f1e169b41a51 | refs/heads/master | 2021-07-12T23:00:17.411355 | 2018-09-02T08:08:22 | 2018-09-02T08:08:22 | 144,376,835 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,505 | tst | FunkyGeoPlanet.tst | import Parameter from '../Parameter';
import Planet from "./Planet";
import { Circle, Polygon, Position, Color, Line, GeoUtil, AbstractPolygon, NestedPolygon } from 'blacksheep-react-canvas';
import BasePhaser from './modules/phasers/BasePhaser';
//Doesn't have a distance
//Doesn't have a center
//Has a boundry (which is another planet's orbit)
//Doesn't have a rotate speed
//Should extend BoundedPlanet or something
class FunkyGeoPlanet extends Planet {
constructor(
boundry,
speed = 2,
color = new Color(255, 255, 255, 0.1),
label = "funky geo planet",
nSides = new Parameter(3, 10, 1, 4, "nSides"),
initialPhase = 0,
baseSpeed,
) {
super(speed,
boundry.distance.getValue(),
color,
boundry.center,
label,
boundry.baseSpeed,
);
this.baseSpeed = boundry.baseSpeed;
this.speed = new Parameter(-10, 10, 1, speed, "speed");
this.rotateSpeed = new Parameter(-10, 10, 1, 1, "rotate-speed");
this.nSides = nSides;
this.boundry = boundry;
this.rotatePhaser = new BasePhaser(
this.rotateSpeed,
0,
this.baseSpeed);
this.planetPhaser = new BasePhaser(
this.speed,
0,
this.baseSpeed);
}
getParams() {
return [this.speed, this.rotateSpeed, this.nSides, this.color,];
}
tick() {
super.tick();
this.rotatePhaser.tick();
this.planetPhaser.tick();
}
reset() {
super.reset();
this.rotatePhaser.reset();
this.planetPhaser.reset();
}
calcPosition() {
//hack because of super calling this calcPosition
if (this.nSides !== undefined) {
let nSides = this.nSides.getValue();
this.previousPosition.update(this.position.x, this.position.y);
// let poly = new Polygon(this.distance.getValue(), this.color, this.center, nSides, this.rotatePhase, false);
let poly = new NestedPolygon(
this.boundry.getCurrentOrbit(),
nSides,
this.rotatePhaser.getPhase());
let position = poly.getPoint(this.planetPhaser.getPhase());
this.position.update(
position.x, position.y
);
return this.position;
}
else {
super.calcPosition();
}
}
getOrbitPreview() {
// let circle =super.getOrbitPreview();
//
//
// let polygon = new Polygon(this.distance.getValue(), this.color, this.center, this.nSides.getValue(), this.rotatePhase, false);
let polygon = new Polygon(new NestedPolygon(
this.boundry.getCurrentOrbit(),
this.nSides.getValue(),
this.rotatePhaser.getPhase()), this.color, false);
return [polygon];
}
}
export default FunkyGeoPlanet;
|
4a9c879f81fdd5d68c4bc70722712dbbe9e042ea | b80969c9d72c732b0153d0de2b8fd28dc10d8a16 | /Biologie/Site/sauvegarde/28.07.2016/www/Documents/simulation/equationDifferentielle/eq2.sci | d0648dd4380dfa6feddffe472244ce6073a49150 | [] | no_license | adamdepossylux/stem_cells | 6a2596a0734e3604b570cfdaa1e6cb798d13d7b7 | e1ffdf24a223fea3a3606a0bd262067edc81f5b9 | refs/heads/master | 2020-04-01T17:26:21.772875 | 2017-05-10T15:15:09 | 2017-05-10T15:15:09 | 61,795,551 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sci | eq2.sci | clf
t=linspace(0,10,101);
X0=3;
V0=5;
m=3;
k=3;
x=X0*sqrt(k/m)*cos(sqrt(k/m)*t)+V0*sqrt(m/k)*sin(sqrt(k/m))
comet(t,x)
plot2d(t,X0*sqrt(k/m)*cos(sqrt(k/m)*t)+V0*sqrt(m/k)*sin(sqrt(k/m)),6)
|
1c5f1dbe45df363199f1fb9028ad5ec089af8081 | 623a9dd972dc78dbde5d5b8dc187acd6a1eb5910 | /TP0/prueba.sce | ae29375d007248e5ba5560160d0e323bf4ec79f0 | [] | no_license | gtessi/CN2012-FICH | 0daad054ceb6c36636ee5e8b174a676b9e0acb9b | 4024384653b61b5af9e1c11ffb575e154025ee47 | refs/heads/master | 2020-03-27T05:53:04.684505 | 2018-08-25T03:03:15 | 2018-08-25T03:03:15 | 146,059,800 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 62 | sce | prueba.sce | n = 100;
A = rand(n,n);
x0 = rand(n,1);
b = A*x0;
x = A\b; |
e62e59c354a14516e7cf4d8458c9b29db768d1ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH24/EX23.2/EX23_2.sce | 06c13a5a71d18a75b0fa5913093832457a78a088 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 703 | sce | EX23_2.sce | // Grob's Basic Electronics 11e
// Chapter No. 23
// Example No. 23_2
clc; clear;
// The following branch currents are supplied from a 50-mV source: Ir=1.8 mA; Il=2.8 mA; Ic=1 mA. Calculate It, Zeq, and Theta I.
// Given data
Va = 50*10^-3; // Applied voltage=50m Volts
Ir = 1.8*10^-3; // Ir=1.8 mAmps
Il = 2.8*10^-3; // Ir=2.8 mAmps
Ic = 1*10^-3; // Ic=1 mAmps
nI = Il-Ic; // net current
Ir1 = Ir*Ir;
nI1 = nI*nI;
It = sqrt(Ir1+nI1);
disp (It,'The Total Current It in Amps')
disp ('i.e 2.55 mAmps')
Zeq = Va/It;
disp (Zeq,'The Equivqlent Impedence Zeq in Ohms')
disp ('Appox 19.61 Ohms')
Oz = atand(-(nI/Ir));
disp (Oz, 'Theta z in Degree');
|
8ba676da6d677834dd71c6de2c4fbd1ca4676dd4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH5/EX5.1/ex1.sce | 4c33d5646273b10d2f334f89b87da08fd82899db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 697 | sce | ex1.sce | // Example 5.1 : Design of given circuit with current 2mA
// BJT will be operating in active mode
B=100; // B is beta value
a=B/(B+1); // a is alpha value
v_BE=0.7; // v_BE (V) at i_C=1mA
i_C=1*10^-3:1*10^-3:2*10^-3; // (A)
I_C=2*10^-3; // (A)
V_T=25*10^-3; // (V)
V_C=5; // (V)
V_CC=15; // (V)
V_B=0; // (V)
V_RC=V_CC-V_C;// V_RC is the voltage drop across resistor R_C
R_C=V_RC/I_C;
disp(R_C,"Collector Resistance R_C (ohm)")
V_BE=v_BE+V_T*log(i_C(2)/i_C(1));
disp(V_BE,"Base emitter voltage V_BE (V) at i_C=2mA")
V_E=V_B-V_BE;
disp(V_E,"Emitter voltage V_E (V)")
I_E=I_C/a;
disp(I_E,"Emitter current I_E (A)")
R_E=(V_E-(-V_CC))/I_E;
disp(R_E,"Emitter resistance R_C (ohm)") |
cfb23b6ec87db6c2bfee5b99592226b82c23f217 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3392/CH1/EX1.1/Ex1_1.sce | c4e71e34fae04faac81a9d1fc13f99b1efef5557 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 717 | sce | Ex1_1.sce | clc
// initialization of variables
clear
// part (a)
a=700 // M Pa from figure 1.8
b=100 // M Pafrom figure 1.8
m=1/6 // from figure 1.8
Y=450 // M Pa from figure 1.9
//calculations
sigma_u=a+m*b
// results
printf('\n part (a) \n')
printf(' The ultimate strength is sigma = %.f M Pa',sigma_u)
printf('\n and the yield strength is Y = %.f M Pa',Y)
// part (b)
c1=62 // from figure 1.8
d1=0.025 // from figure 1.8
c2=27 // from figure 1.10a
d2=0.04 // from figure 1.10a
// calculations
U_f1=c1*b*d1*10^6
U_f2=c2*b*d2*10^6
// results
printf('\n part (b)')
printf('\n The modulus of toughness for alloy steel is Uf = %.3e N/m^2',U_f1)
printf('\n and structural steel is Uf = %.3e N/m^2',U_f2)
|
cfb416c8b8ae3160418725a6850bda4d204ba865 | 584105ff5b87869494a42f632079668e4c3f82de | /TestCases/convolver/test11.sce | e58893acf26ae8ed8e137745f289b0cc65ca9a84 | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,443 | sce | test11.sce |
//Reading grayscale image
I1 = imread("box.png");
//Kernel or filter and convolution on image is done with this kernel
//This kernel will give same image with no change
a = [0 0 0; 0 1 0; 0 0 0];
//Perforing convolution
//Checking if it accepts blank value
out1 = convolver(I1,"size",3,"values",a,"scalar",);
//output-> in getScalarDouble: Unable to get argument #7
//Reading image
I2 = imread("lena.jpeg");
//Kernel or filter and convolution on image is done with this kernel
//This kernel will give same image with no change
a = [0 0 0; 0 1 0; 0 0 0];
//Checking if it accepts blank value
out2 = convolver(I2,"size",3,"values",a,"scalar",);
//output-> in getScalarDouble: Unable to get argument #7
//Reading image
I3 = imread("clc1.jpg");
//Kernel or filter and convolution on image is done with this kernel
//This kernel will give same image with no change
a = [0 0 0; 0 1 0; 0 0 0];
//Perforing convolution
//Checking if it accepts blank value
out3 = convolver(I3,"size",3,"values",a,"scalar",);
//output-> in getScalarDouble: Unable to get argument #7
//Reading grayscale image
I4 = imread("left01.jpg");
//Kernel or filter and convolution on image is done with this kernel
//This kernel will give same image with no change
a = [0 0 0; 0 1 0; 0 0 0];
//Perforing convolution
//Checking if it accepts blank value
out4 = convolver(I4,"size",3,"values",a,"scalar",);
//output-> in getScalarDouble: Unable to get argument #7
|
6df09477840099178b8d1df1c1e85efe012ec0aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH9/EX9.23/Example9_23.sce | f1973f13c52bf1158a6030a5a6aeb195400e6336 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,256 | sce | Example9_23.sce | //Example 9.23. refer fig.9.89
clc
VS1=60*10^-3
VS2=40*10^-3
hie=3.2*10^3
hfe=100
VEE=12
VCC=VEE
VBE=0.7
beta=hfe
RE=5.6*10^3
RS=120
RC=4.5*10^3
Rc=4.5*10^-5
format(6)
IE=(VEE-VBE)/((2*RE)+(RS/beta))
IE1=IE*10^3
disp("beta = hfe = 100")
disp(IE1," IE(mA) = (VEE-VBE) / ((2*RE)+(RS/beta))")
IC=IE
disp("IC ~ IE = 1.009 mA")
disp(IE1," Therefore ICQ(mA) =")
format(5)
VCE=VCC+VBE-(IC*Rc)
disp(VCE," VCE(V) = VCC + VBE - IC*RC =") // answer in textbook is wrong
disp(VCE,"and VCEQ(V) =") // answer in textbook is wrong
disp("The differential gain is")
format(7)
Ad=(hfe*RC)/(RS+hie)
disp(Ad," Ad = hfe*RC / RS+hie =")
disp("Common mode gain is,")
format(7)
AC=(hfe*RC)/(((2*RE)*(1+hfe))+RS+hie)
disp(AC," AC = (hfe*Re) / (((2*RE)*(1+hfe)) + RS + hie) =")
format(8)
CMRR = Ad / AC
disp(CMRR,"CMRR = Ad / AC =")
format(7)
CMRR1=20*log10(135.54/0.3966)
disp(CMRR1,"CMRR(dB) = 20log|Ad/AC| =")
disp("The output voltage is Vo = Ad*Vd + AC*VC. Here,")
Vd=VS1-VS2
Vd1=Vd*10^3
disp(Vd1," Ad [mV(peak-peak)] = VS1 - VS2 =")
VC=(VS1+VS2)/2
VC1=VC*10^3
disp(VC1,"Then, VC [mV(peak-peak)]= (VS1+VS2) / 2 =")
format(5)
Vo = Ad*Vd + AC*VC
disp(Vo,"Therefore, Vo [V(peak-peak)] =") |
17375177b6f2e269695525a2354ae7743ba1930f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH4/EX4.9/ex4_9.sce | 713178442efa9017e6d387bedc00d4d45bdfbe71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 873 | sce | ex4_9.sce | // Exa 4.9
clc;
clear;
close;
format('v',6)
// Given data
f= 60;// in Hz
disp("Part (a)")
Z= 12+30*%i;
R= real(Z);// in ohm
XL= imag(Z);// in ohm
// Formula XL= 2*%pi*f*L
L= XL/(2*%pi*f);// in H
L= L*10^3;// in mH
disp(R,"The value of resistance in Ω is : ")
disp(L,"The value of inductance in mH is : ")
L= L*10^-3;// in H
disp("Part (b)")
Z= 0-60*%i;
R= real(Z);// in ohm
XC= (abs(imag(Z)));// in ohm
// Formula XC= 1/(2*%pi*f*C)
C= 1/(2*%pi*XC*f);// in H
C= C*10^6;// in µF
disp(R,"The value of resistance in Ω is : ")
disp(C,"The value of inductance in µF is : ")
C= C*10^-6;// in F
disp("Part (c)")
Z= 20*expm(60*%i*%pi/180)
R= real(Z);// in ohm
XL= imag(Z);// in ohm
// Formula XL= 2*%pi*f*L
L= XL/(2*%pi*f);// in H
L= L*10^3;// in mH
disp(R,"The value of resistance in Ω is : ")
disp(L,"The value of inductance in mH is : ")
|
ccdd757c8313eced3d4d2cd0f236f84174471c98 | 4d867edb7174c0010079141c803470bb315fb98c | /Scilab/2.4.sci | 93e77354b31d5c21e44e3b1777a85769b85af6d6 | [] | no_license | NirnaethArniedi/RapportScilab | 73868dce23273fa00421c0580c32b22e4da5fda0 | 05dbf45db77061ea5f214d90fda5e5b155343a5c | refs/heads/master | 2021-01-20T10:36:59.100534 | 2015-07-04T18:38:34 | 2015-07-04T18:38:34 | 21,175,471 | 0 | 0 | null | 2014-06-28T13:41:08 | 2014-06-24T18:08:27 | TeX | UTF-8 | Scilab | false | false | 348 | sci | 2.4.sci | clf;
n=20;
N=2;
p=0.7;
nbSimulations = 30;
a=-5;
b=5;
ecartType = sqrt(p*(1-p));
for j = 1:nbSimulations
A = [0];
D = [];
for i = 1:n
B=rand(1,N^i);
C=(B>=p)+[A,A];
A=C;
E=(A>=(p*i+ecartType*a*sqrt(i)));
D(i)=sum(E.*(A<=(p*i+ecartType*b*sqrt(i))));
end
plot2d(D, style=rand()*10);
end
|
aeb9d8aef282d3c98e529bbbea5e1f15dc573c54 | 7b7be9b58f50415293def4aa99ef5795e6394954 | /sim/scripts/patest.tst | 537d594969abbf6b3f0646dead7f17931968f171 | [] | no_license | sabualkaz/sim42 | 80d1174e4bc6ae14122f70c65e259a9a2472ad47 | 27b5afe75723c4e5414904710fa6425d5f27e13c | refs/heads/master | 2022-07-30T06:23:20.119353 | 2020-05-23T16:30:01 | 2020-05-23T16:30:01 | 265,842,394 | 0 | 0 | null | 2020-05-21T12:26:00 | 2020-05-21T12:26:00 | null | UTF-8 | Scilab | false | false | 4,606 | tst | patest.tst | # Depeopanizer test (from old Hysim manual)
units SI
$thermo = VirtualMaterials.Peng-Robinson
/ -> $thermo
thermo + propane isobutane n-butane isopentane n-pentane
thermo + n-hexane n-heptane n-octane
thermo + n-nonane n-decane
stab = Tower.Tower()
stab.Stage_0 + 10 # twelve stages
stab.LiquidPhases = 2
cd stab.Stage_0
l = Tower.LiquidDraw()
l.Port.P = 1000
cond = Tower.EnergyFeed(0)
estT = Tower.Estimate('T')
estT.Value = 25
reflux = Tower.StageSpecification('Reflux')
reflux.Value = 2
cd ../Stage_5
f = Tower.Feed()
f.Port.T = 50
f.Port.P = 2000
f.Port.MoleFlow = 1000
f.Port.Fraction = .1702 .1473 .1132 .1166 .1066 .0963 .0829 .0694 .0558 .0417
f.Port
cd ../Stage_11
l = Tower.LiquidDraw()
l.Port.P = 1100
l.Port.Fraction.n-BUTANE = .02
reb = Tower.EnergyFeed(1)
estT = Tower.Estimate('T')
estT.Value = 100
cd ../Stage_9
pa_source = Tower.VapourDraw()
pa_source.Port.MoleFlow = 200
cd ../Stage_7
pa_dest = Tower.Feed()
cd ..
Stage_9.pa_source.Port -> Stage_7.pa_dest.Port
/overhead = Stream.Stream_Material()
/overhead.In -> Stage_0.l.Port
/bottoms = Stream.Stream_Material()
/bottoms.In -> Stage_11.l.Port
TryToSolve = 1 # start calculation
/overhead.Out
/bottoms.Out
L
V
T
# remove feed and draw and install VapourPumpAround object
TryToSolve = 0
delete Stage_9.pa_source
delete Stage_7.pa_dest
Stage_9.pa = Tower.VapourPumpAround(7)
Stage_7.pa_paR.Port.MoleFlow = 200
Stage_7.pa_paQ.Port.Energy = 0
TryToSolve = 1
/overhead.Out
/bottoms.Out
Stage_7.pa_paR.Port
L
V
T
# delete the pump around
delete Stage_9.pa
# add liquid pump down
Stage_7.pd = Tower.LiquidPumpAround(10)
Stage_7.pd.Port.MoleFlow = 300
Stage_10.pd_paQ.Port.Energy = 1000000
/overhead.Out
/bottoms.Out
Stage_10.pd_paR.Port
L
V
T
#Create some pump around variables
cd /stab.Stage_7.pd
PADeltaT = Tower.PumpAroundDTSpec()
cd PADeltaT
cd /stab.Stage_7.pd
PAReturnT = Tower.PumpAroundReturnTSpec()
cd PAReturnT
cd /stab.Stage_7.pd
PAReturnCv = Tower.PumpAroundReturnPropSpec("Cv")
cd PAReturnCv
cd /stab
TryToSolve = 0
TryToRestart = 0
/stab.EnergyFeed_10_pd_paQ.Energy =
TryToSolve = 1
/stab.Variable_7_PAReturnT.T = 54.53
L
V
T
/stab.Variable_7_PAReturnT.T =
/stab.Variable_7_PADeltaT.DT = 60
L
V
T
/stab.Variable_7_PADeltaT.DT =
/stab.Stage_10.pd_paQ.Port.Energy = 1000000
#lets see if it balances when using efficiencies
/bal = Balance.BalanceOp()
/bal.NumberStreamsInMat = 1
/bal.NumberStreamsOutMat = 3
/bal.BalanceType = 2
cd /
feed = Stream.Stream_Material()
cd feed
/feed.Out -> /stab.Feed_5_f
CloneOut = Stream.ClonePort(0)
/feed.CloneOut -> /bal.In0
cd /overhead
CloneIn = Stream.ClonePort()
/overhead.CloneIn -> /bal.Out0
cd /bottoms
CloneIn = Stream.ClonePort()
/bottoms.CloneIn -> /bal.Out1
/bal.Out2
/stab.TryLastConverged = 1
/stab.Efficiencies = 0.9
/bal.Out2
/stab.Efficiencies = 0.8
/bal.Out2
/stab.Efficiencies = 1.0
/stab.TryLastConverged = 0
#Now play with vol fracs
/stab.TryToRestart = 1
cd /stab.Stage_11.l
VolFracs = Tower.VolFractionSpec()
cd VolFracs
. + n-HEPTANE n-OCTANE n-NONANE
cd /stab
cd /stab.Stage_11.l
StdLiqVolFlows = Tower.ComponentStdVolFlowSpec()
cd StdLiqVolFlows
. + n-HEXANE n-HEPTANE n-OCTANE n-NONANE
cd /stab.Stage_11.l
StdLiqVolRecovery = Tower.StdVolRecoverySpec()
cd StdLiqVolRecovery
. + n-PENTANE n-HEXANE n-HEPTANE n-OCTANE n-NONANE
. - n-PENTANE n-HEXANE n-HEPTANE n-OCTANE n-NONANE
. + n-PENTANE n-HEXANE n-HEPTANE
. - n-PENTANE n-HEXANE n-HEPTANE
cd /stab.Stage_11.l
StdLiqVolRatio = Tower.StdVolRatioSpec()
cd StdLiqVolRatio
. + n-BUTANE ISOPENTANE n-PENTANE n-HEXANE / n-PENTANE n-HEXANE n-HEPTANE n-OCTANE
. - n-BUTANE ISOPENTANE n-PENTANE n-HEXANE / n-PENTANE n-HEXANE n-HEPTANE n-OCTANE /
. + n-BUTANE ISOPENTANE n-PENTANE n-HEXANE /
. - n-BUTANE ISOPENTANE n-PENTANE n-HEXANE / n-HEXANE n-HEPTANE n-OCTANE /
. + n-BUTANE ISOPENTANE n-PENTANE n-HEXANE / n-HEXANE n-HEPTANE n-OCTANE
cd /stab
/stab.Variable_0_reflux.Generic =
/stab.Variable_11_StdLiqVolRatio.Fraction = 0.986
TryToRestart = 0
L
V
T
/stab.Variable_11_StdLiqVolRatio.Fraction =
/stab.Variable_0_reflux.Generic = 2
L
V
T
#Now delete try deleting the stages with the pump around
#The following should not work
#A stage with a feed from a pump around can not be deleted
/stab.Stage_9 - 1
/stab.Stage_7 - 3
#Finally do it right
/stab.Stage_6 - 4
copy /
paste /
/RootClone.stab.L
/RootClone.stab.V
/RootClone.stab.T
|
84650de2d7d8cffa03326f9c2e0065be659fdba8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH2/EX2.13/13.sce | 1867579b85c57a3f81e2027772ab6d81ada9a265 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | 13.sce | clc
deff("[e]=func(t)","e=0.20*t-5*10^(-4)*t^2")
t1=0; //0C
e1=func(t1);
t2=100; //0C
e2=func(t2);
t3=70; //0C
e3=func(t3);
t=e3*(t2-t1)/e2-e1;
disp("thermocouple will read")
disp(t)
disp("°C") |
fd9628b70b2a30bad351c123e5ce30ba48e4f02a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH7/EX7.13/ex_7_13.sce | 05e97302f85382c385d3ef256fc31e0eb48fc9a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 685 | sce | ex_7_13.sce | //Example 7.13: maximum power and total distance
clc;
clear;
close;
format('v',5)
//given data :
w=250;//in tonnes
we=(1+(10/100))*w;//efective weight in tonnes
r=5*9.81;//in N/tonne
G=1;//
t1=30;//in sec
t2=70;// in sec
alpha=2;//kmphps
V1=alpha*(t1);// in km/h
ft=(277.8*we*alpha)+(98.1*G*w)+(w*r);//in newtons
po=((ft*V1)/3600);//maximum power output in kW
n=0.97;//efficiency
pi=po/n;//in kW
G=1;
bc=((98.1+r))/(277.8*1.1);//in kmphps
V2=V1-(bc*t2);//km/hr
beta1=3;//retardation
t3=V2/beta1;//in seconds
S=(((V1*t1)/7200)+(((V1+V2)*t2)/7200)+((V2*t3)/7200));
disp(round(pi),"maximum power developed by traction motor is (kW)")
disp(S,"total distance travelled by train in km is")
|
4eea22dbf64a88ab738498290b6ab126280a4ef9 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Peek Training.sce | cbbb1e03c0c51cdf1a5258650422123cfbf6beb3 | [] | 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 | 203,721 | sce | Peek Training.sce | Name=Peek Training
PlayerCharacters=Counter-Striker
BotCharacters=Counter-Striker Bot PEEKER.bot
IsChallenge=true
Timelimit=90.0
PlayerProfile=Counter-Striker
AddedBots=Counter-Striker Bot PEEKER.bot;Counter-Striker Bot PEEKER.bot;Counter-Striker Bot PEEKER.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=0;0;0
MapName=peektraining.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.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=true
ScoreMultKillEfficiency=false
GameTag=Crosshair Placement
WeaponHeroTag=AK47/M4A1-S csgo physics
DifficultyTag=3
AuthorsTag=TheGrubbinator
BlockHitMarkers=true
BlockHitSounds=true
BlockMissSounds=true
BlockFCT=true
Description=Practice a variety of peeks. Designed for CSGO & Valorant
GameVersion=2.0.1.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=cs
MinReactionTime=0.18
MaxReactionTime=0.3
MinSelfMovementCorrectionTime=0.007
MaxSelfMovementCorrectionTime=0.035
FlickFOV=10.0
FlickSpeed=1.0
FlickError=3.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=90.0
MinRecenterTime=0.25
MaxRecenterTime=0.4
OptimalAimFOV=35.0
OuterAimPenalty=1.1
MaxError=35.0
ShootFOV=1.0
VerticalAimOffset=-5.0
MaxTolerableSpread=2.0
MinTolerableSpread=0.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
[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=Counter-Striker Bot PEEKER
DodgeProfileNames=cs peek
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=10.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default
WeaponSwitchTime=5.0
UseWeapons=true
CharacterProfile=Counter-Striker
SeeThroughWalls=true
NoDodging=false
NoAiming=true
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.4
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Counter-Striker
MaxHealth=100.0
WeaponProfileNames=AK-47;M4A1-S;;USP-S;;;;
MinRespawnDelay=0.0001
MaxRespawnDelay=0.0001
StepUpHeight=75.0
CrouchHeightModifier=0.75
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1100.0
MaxCrouchSpeed=250.0
Acceleration=6000.0
AirAcceleration=16000.0
Friction=7.5
BrakingFrictionFactor=1.25
JumpVelocity=800.0
Gravity=2.5
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=true
EnemyBodyColor=X=0.546 Y=0.776 Z=0.546
EnemyHeadColor=X=0.608 Y=0.463 Z=0.314
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.149 Y=0.542 Z=1.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=250.0
MainBBRadius=35.0
MainBBHasHead=true
MainBBHeadRadius=25.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=250.0
ProjBBRadius=35.0
ProjBBHasHead=true
ProjBBHeadRadius=25.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=256.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=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=cs peek
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.125
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.01
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.25
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=1.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.125
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=AK-47
Type=Hitscan
ShotsPerClick=1
DamagePerShot=36.0
KnockbackFactor=0.2
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=4000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.02
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.2
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=390.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=103.0
ADSFOVScale=Valorant
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=Tracer
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=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=2.0,27.0,-9.0,1.5
SpreadSCH=2.0,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=10.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=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.16
PSRResetDegreesPerSec=35.0
PSR0=0.5,0.0
PSR1=1.2,-0.1
PSR2=1.7,0.2
PSR3=1.7,0.2
PSR4=1.7,-0.85
PSR5=1.3,-0.45
PSR6=1.3,-0.75
PSR7=0.9,0.75
PSR8=-0.4,2.55
PSR9=0.75,0.95
PSR10=0.75,0.4
PSR11=-0.6,0.4
PSR12=0.35,1.0
PSR13=0.4,0.25
PSR14=-0.9,-1.5
PSR15=0.4,-1.0
PSR16=0.5,-1.3
PSR17=0.1,-1.6
PSR18=-0.7,-1.25
PSR19=0.2,-0.5
PSR20=0.2,0.1
PSR21=0.0,0.5
PSR22=0.3,0.1
PSR23=0.2,0.5
PSR24=0.5,-1.0
PSR25=-0.1,1.2
PSR26=-0.3,1.1
PSR27=-1.2,2.0
PSR28=0.1,1.4
PSR29=-0.1,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=M4A1-S
Type=Hitscan
ShotsPerClick=1
DamagePerShot=33.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.37
ReloadTimeFromPartial=1.37
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=7000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=410.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=80.0
ADSFOVScale=Fortnite
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=Tracer
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=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=1.5,27.0,-9.0,1.0
SpreadSCH=1.5,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=2.0
AADeadZone=0.0
AAFOV=15.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=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=35.0
PSR0=0.4,-0.1
PSR1=0.4,0.0
PSR2=0.9,0.4
PSR3=1.0,-0.5
PSR4=1.0,0.6
PSR5=1.2,0.3
PSR6=0.7,-0.6
PSR7=0.8,-0.5
PSR8=0.3,-1.3
PSR9=0.8,0.5
PSR10=0.3,1.0
PSR11=-0.4,1.2
PSR12=0.0,1.1
PSR13=0.1,1.0
PSR14=-0.2,-0.4
PSR15=0.4,0.1
PSR16=-0.4,1.0
PSR17=0.4,-1.0
PSR18=0.0,1.0
PSR19=-0.1,-1.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=USP-S
Type=Hitscan
ShotsPerClick=1
DamagePerShot=35.0
KnockbackFactor=1.0
TimeBetweenShots=0.17
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=12
AmmoPerShot=1
ReloadTimeFromEmpty=2.2
ReloadTimeFromPartial=2.2
DamageFalloffStartDistance=300.0
DamageFalloffStopDistance=1000.0
DamageAtMaxRange=33.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
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=1.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=400.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=Fortnite
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
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=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=5.0,25.0,0.2,7.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,25.0,2.0,7.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.3
MinRecoilUp=0.0
MinRecoilHoriz=-0.2
MaxRecoilHoriz=0.2
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=50.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.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
528.000000 0.000000 16.000000
1327.999878 0.000000 240.000000
1327.999878 240.000000 240.000000
1328.000000 0.000000 16.000000
528.000061 0.000000 240.000000
1328.000000 240.000000 16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 2 5 0x00000000
brush
vertices
528.000000 0.000000 -912.000000
1327.999878 0.000000 -688.000000
1327.999878 240.000000 -688.000000
1328.000000 0.000000 -912.000000
528.000061 0.000000 -688.000000
1328.000000 240.000000 -912.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 2 5 0x00000000
brush
vertices
1328.000000 240.000000 240.000000
1552.000000 240.000000 240.000000
1552.000000 240.000000 -912.000000
1328.000000 240.000000 -912.000000
1328.000000 224.000000 240.000000
1552.000000 224.000000 240.000000
1552.000000 224.000000 -912.000000
1328.000000 224.000000 -912.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
1552.000000 368.000000 240.000000
1568.000000 368.000000 240.000000
1568.000000 368.000000 -912.000000
1552.000000 368.000000 -912.000000
1552.000000 224.000000 240.000000
1568.000000 224.000000 240.000000
1568.000000 224.000000 -912.000000
1552.000000 224.000000 -912.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
288.000000 368.000000 256.000000
1568.000000 368.000000 256.000000
1568.000000 368.000000 240.000000
288.000000 368.000000 240.000000
288.000000 -16.000000 256.000000
1568.000000 -16.000000 256.000000
1568.000000 -16.000000 240.000000
288.000000 -16.000000 240.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
288.000000 368.000000 -912.000000
1568.000000 368.000000 -912.000000
1568.000000 368.000000 -928.000000
288.000000 368.000000 -928.000000
288.000000 -16.000000 -912.000000
1568.000000 -16.000000 -912.000000
1568.000000 -16.000000 -928.000000
288.000000 -16.000000 -928.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
288.000000 368.000000 240.000000
304.000000 368.000000 240.000000
304.000000 368.000000 -912.000000
288.000000 368.000000 -912.000000
288.000000 -16.000000 240.000000
304.000000 -16.000000 240.000000
304.000000 -16.000000 -912.000000
288.000000 -16.000000 -912.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
528.000000 384.000000 16.000000
1328.000000 384.000000 16.000000
1328.000000 384.000000 0.000000
528.000000 384.000000 0.000000
528.000000 0.000000 16.000000
1328.000000 0.000000 16.000000
1328.000000 0.000000 0.000000
528.000000 0.000000 0.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
528.000000 384.000000 -672.000000
1328.000000 384.000000 -672.000000
1328.000000 384.000000 -688.000000
528.000000 384.000000 -688.000000
528.000000 0.000000 -672.000000
1328.000000 0.000000 -672.000000
1328.000000 0.000000 -688.000000
528.000000 0.000000 -688.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
528.000000 384.000000 -672.000000
528.000000 384.000000 -0.000061
544.000122 384.000000 -0.000061
544.000000 384.000000 -672.000000
528.000000 0.000000 -672.000000
528.000000 0.000000 -0.000061
544.000122 0.000000 -0.000061
544.000000 0.000000 -672.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
1312.000000 384.000000 -672.000000
1312.000000 384.000000 -0.000061
1328.000122 384.000000 -0.000061
1328.000000 384.000000 -672.000000
1312.000000 0.000000 -672.000000
1312.000000 0.000000 -0.000061
1328.000122 0.000000 -0.000061
1328.000000 0.000000 -672.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
1328.000000 336.000000 112.000000
1440.000000 336.000000 112.000000
1440.000000 336.000000 16.000000
1328.000000 336.000000 16.000000
1328.000000 240.000000 112.000000
1440.000000 240.000000 112.000000
1440.000000 240.000000 16.000000
1328.000000 240.000000 16.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
1328.000000 336.000000 -592.000000
1440.000000 336.000000 -592.000000
1440.000000 336.000000 -688.000000
1328.000000 336.000000 -688.000000
1328.000000 240.000000 -592.000000
1440.000000 240.000000 -592.000000
1440.000000 240.000000 -688.000000
1328.000000 240.000000 -688.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
1440.000000 336.000000 -400.000000
1552.000000 336.000000 -400.000000
1552.000000 336.000000 -496.000000
1440.000000 336.000000 -496.000000
1440.000000 240.000000 -400.000000
1552.000000 240.000000 -400.000000
1552.000000 240.000000 -496.000000
1440.000000 240.000000 -496.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
1440.000000 336.000000 -48.000000
1552.000000 336.000000 -48.000000
1552.000000 336.000000 -144.000000
1440.000000 336.000000 -144.000000
1440.000000 240.000000 -48.000000
1552.000000 240.000000 -48.000000
1552.000000 240.000000 -144.000000
1440.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
1328.000000 336.000000 -224.000000
1440.000000 336.000000 -224.000000
1440.000000 336.000000 -320.000000
1328.000000 336.000000 -320.000000
1328.000000 240.000000 -224.000000
1440.000000 240.000000 -224.000000
1440.000000 240.000000 -320.000000
1328.000000 240.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1168.000000 320.000000 240.000000
1280.000000 320.000000 240.000000
1280.000000 320.000000 128.000000
1168.000000 320.000000 128.000000
1168.000000 192.000000 240.000000
1280.000000 192.000000 240.000000
1280.000000 192.000000 128.000000
1168.000000 192.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
528.000000 160.000000 128.000000
640.000000 160.000000 128.000000
640.000000 160.000000 16.000000
528.000000 160.000000 16.000000
528.000000 0.000000 128.000000
640.000000 0.000000 128.000000
640.000000 0.000000 16.000000
528.000000 0.000000 16.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
704.000000 208.000000 240.000000
816.000000 208.000000 240.000000
816.000000 208.000000 128.000000
704.000000 208.000000 128.000000
704.000000 48.000000 240.000000
816.000000 48.000000 240.000000
816.000000 48.000000 128.000000
704.000000 48.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
928.000000 272.000000 128.000000
1040.000000 272.000000 128.000000
1040.000000 272.000000 16.000000
928.000000 272.000000 16.000000
928.000000 112.000000 128.000000
1040.000000 112.000000 128.000000
1040.000000 112.000000 16.000000
928.000000 112.000000 16.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
304.000000 0.000000 240.000000
528.000000 0.000000 240.000000
528.000000 0.000000 -912.000000
304.000000 0.000000 -912.000000
304.000000 -16.000000 240.000000
528.000000 -16.000000 240.000000
528.000000 -16.000000 -912.000000
304.000000 -16.000000 -912.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
567.000000 15.000000 -726.000000
557.000061 215.000000 -716.000061
567.000000 215.000000 -716.000122
557.000061 15.000000 -716.000061
567.000000 15.000000 -716.000122
567.000000 215.000000 -726.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
557.000061 15.000000 -716.000061
557.000000 215.000000 -701.857788
564.071167 215.000000 -708.928711
557.000000 15.000000 -701.857788
564.071167 15.000000 -708.928711
557.000061 215.000000 -716.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
557.000000 15.000000 -702.000000
567.000000 215.000000 -691.999756
567.000000 215.000000 -701.999634
567.000000 15.000000 -691.999756
567.000000 15.000000 -701.999634
557.000000 215.000000 -702.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
566.999939 15.000000 -692.000061
577.000061 215.000000 -702.000183
567.000244 215.000000 -702.000000
577.000061 15.000000 -702.000183
567.000244 15.000000 -702.000000
566.999939 215.000000 -692.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
577.000061 15.000000 -702.000183
576.999756 215.000000 -716.142334
569.928955 215.000000 -709.071289
576.999756 15.000000 -716.142334
569.928955 15.000000 -709.071289
577.000061 215.000000 -702.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
577.000061 15.000000 -715.999939
567.000183 215.000000 -726.000305
567.000000 215.000000 -716.000366
567.000183 15.000000 -726.000305
567.000000 15.000000 -716.000366
577.000061 215.000000 -715.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
656.000000 28.000000 -736.000000
666.000000 228.000000 -725.999756
666.000000 228.000000 -735.999634
666.000000 28.000000 -725.999756
666.000000 28.000000 -735.999634
656.000000 228.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
656.000061 28.000000 -750.000061
656.000000 228.000000 -735.857788
663.071167 228.000000 -742.928711
656.000000 28.000000 -735.857788
663.071167 28.000000 -742.928711
656.000061 228.000000 -750.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
666.000000 28.000000 -760.000000
656.000061 228.000000 -750.000061
666.000000 228.000000 -750.000122
656.000061 28.000000 -750.000061
666.000000 28.000000 -750.000122
666.000000 228.000000 -760.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
676.000061 28.000000 -749.999939
666.000183 228.000000 -760.000305
666.000000 228.000000 -750.000366
666.000183 28.000000 -760.000305
666.000000 28.000000 -750.000366
676.000061 228.000000 -749.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
676.000061 28.000000 -736.000183
675.999756 228.000000 -750.142334
668.928955 228.000000 -743.071289
675.999756 28.000000 -750.142334
668.928955 28.000000 -743.071289
676.000061 228.000000 -736.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
665.999939 28.000000 -726.000061
676.000061 228.000000 -736.000183
666.000244 228.000000 -736.000000
676.000061 28.000000 -736.000183
666.000244 28.000000 -736.000000
665.999939 228.000000 -726.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
806.000000 63.000000 -702.000000
816.000000 263.000000 -691.999756
816.000000 263.000000 -701.999634
816.000000 63.000000 -691.999756
816.000000 63.000000 -701.999634
806.000000 263.000000 -702.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
806.000061 63.000000 -716.000061
806.000000 263.000000 -701.857788
813.071167 263.000000 -708.928711
806.000000 63.000000 -701.857788
813.071167 63.000000 -708.928711
806.000061 263.000000 -716.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
816.000000 63.000000 -726.000000
806.000061 263.000000 -716.000061
816.000000 263.000000 -716.000122
806.000061 63.000000 -716.000061
816.000000 63.000000 -716.000122
816.000000 263.000000 -726.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
826.000061 63.000000 -715.999939
816.000183 263.000000 -726.000305
816.000000 263.000000 -716.000366
816.000183 63.000000 -726.000305
816.000000 63.000000 -716.000366
826.000061 263.000000 -715.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
826.000061 63.000000 -702.000183
825.999756 263.000000 -716.142334
818.928955 263.000000 -709.071289
825.999756 63.000000 -716.142334
818.928955 63.000000 -709.071289
826.000061 263.000000 -702.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
815.999939 63.000000 -692.000061
826.000061 263.000000 -702.000183
816.000244 263.000000 -702.000000
826.000061 63.000000 -702.000183
816.000244 63.000000 -702.000000
815.999939 263.000000 -692.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
922.000000 104.000000 -747.000000
932.000000 304.000000 -736.999756
932.000000 304.000000 -746.999634
932.000000 104.000000 -736.999756
932.000000 104.000000 -746.999634
922.000000 304.000000 -747.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
922.000061 104.000000 -761.000061
922.000000 304.000000 -746.857788
929.071167 304.000000 -753.928711
922.000000 104.000000 -746.857788
929.071167 104.000000 -753.928711
922.000061 304.000000 -761.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
932.000000 104.000000 -771.000000
922.000061 304.000000 -761.000061
932.000000 304.000000 -761.000122
922.000061 104.000000 -761.000061
932.000000 104.000000 -761.000122
932.000000 304.000000 -771.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
942.000061 104.000000 -760.999939
932.000183 304.000000 -771.000305
932.000000 304.000000 -761.000366
932.000183 104.000000 -771.000305
932.000000 104.000000 -761.000366
942.000061 304.000000 -760.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
942.000061 104.000000 -747.000183
941.999756 304.000000 -761.142334
934.928955 304.000000 -754.071289
941.999756 104.000000 -761.142334
934.928955 104.000000 -754.071289
942.000061 304.000000 -747.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
931.999939 104.000000 -737.000061
942.000061 304.000000 -747.000183
932.000244 304.000000 -747.000000
942.000061 104.000000 -747.000183
932.000244 104.000000 -747.000000
931.999939 304.000000 -737.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1108.000000 156.000000 -697.000000
1118.000000 356.000000 -686.999756
1118.000000 356.000000 -696.999634
1118.000000 156.000000 -686.999756
1118.000000 156.000000 -696.999634
1108.000000 356.000000 -697.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1108.000000 156.000000 -711.000061
1108.000000 356.000000 -696.857788
1115.071045 356.000000 -703.928711
1108.000000 156.000000 -696.857788
1115.071045 156.000000 -703.928711
1108.000000 356.000000 -711.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1118.000000 156.000000 -721.000000
1108.000000 356.000000 -711.000061
1118.000000 356.000000 -711.000122
1108.000000 156.000000 -711.000061
1118.000000 156.000000 -711.000122
1118.000000 356.000000 -721.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1128.000000 156.000000 -710.999939
1118.000122 356.000000 -721.000305
1118.000000 356.000000 -711.000366
1118.000122 156.000000 -721.000305
1118.000000 156.000000 -711.000366
1128.000000 356.000000 -710.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1128.000000 156.000000 -697.000183
1127.999756 356.000000 -711.142334
1120.928955 356.000000 -704.071289
1127.999756 156.000000 -711.142334
1120.928955 156.000000 -704.071289
1128.000000 356.000000 -697.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1118.000000 156.000000 -687.000061
1128.000000 356.000000 -697.000183
1118.000244 356.000000 -697.000000
1128.000000 156.000000 -697.000183
1118.000244 156.000000 -697.000000
1118.000000 356.000000 -687.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1257.000000 179.000000 -746.000000
1267.000000 379.000000 -735.999756
1267.000000 379.000000 -745.999634
1267.000000 179.000000 -735.999756
1267.000000 179.000000 -745.999634
1257.000000 379.000000 -746.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1257.000000 179.000000 -760.000061
1257.000000 379.000000 -745.857788
1264.071167 379.000000 -752.928711
1257.000000 179.000000 -745.857788
1264.071167 179.000000 -752.928711
1257.000000 379.000000 -760.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1267.000000 179.000000 -770.000000
1257.000000 379.000000 -760.000061
1267.000000 379.000000 -760.000122
1257.000000 179.000000 -760.000061
1267.000000 179.000000 -760.000122
1267.000000 379.000000 -770.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1277.000000 179.000000 -759.999939
1267.000244 379.000000 -770.000305
1267.000000 379.000000 -760.000366
1267.000244 179.000000 -770.000305
1267.000000 179.000000 -760.000366
1277.000000 379.000000 -759.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1277.000000 179.000000 -746.000183
1276.999756 379.000000 -760.142334
1269.928955 379.000000 -753.071289
1276.999756 179.000000 -760.142334
1269.928955 179.000000 -753.071289
1277.000000 379.000000 -746.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1267.000000 179.000000 -736.000061
1277.000000 379.000000 -746.000183
1267.000244 379.000000 -746.000000
1277.000000 179.000000 -746.000183
1267.000244 179.000000 -746.000000
1267.000000 379.000000 -736.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
805.000000 52.000000 -793.000000
815.000000 252.000000 -782.999756
815.000000 252.000000 -792.999634
815.000000 52.000000 -782.999756
815.000000 52.000000 -792.999634
805.000000 252.000000 -793.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
805.000000 52.000000 -807.000061
805.000000 252.000000 -792.857788
812.071167 252.000000 -799.928711
805.000000 52.000000 -792.857788
812.071167 52.000000 -799.928711
805.000000 252.000000 -807.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
815.000000 52.000000 -817.000000
805.000000 252.000000 -807.000061
815.000000 252.000000 -807.000122
805.000000 52.000000 -807.000061
815.000000 52.000000 -807.000122
815.000000 252.000000 -817.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
825.000000 52.000000 -806.999939
815.000244 252.000000 -817.000305
815.000000 252.000000 -807.000366
815.000244 52.000000 -817.000305
815.000000 52.000000 -807.000366
825.000000 252.000000 -806.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
825.000000 52.000000 -793.000183
824.999756 252.000000 -807.142334
817.928955 252.000000 -800.071289
824.999756 52.000000 -807.142334
817.928955 52.000000 -800.071289
825.000000 252.000000 -793.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
815.000000 52.000000 -783.000061
825.000000 252.000000 -793.000183
815.000244 252.000000 -793.000000
825.000000 52.000000 -793.000183
815.000244 52.000000 -793.000000
815.000000 252.000000 -783.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1107.000000 147.000000 -788.000000
1117.000000 347.000000 -777.999756
1117.000000 347.000000 -787.999634
1117.000000 147.000000 -777.999756
1117.000000 147.000000 -787.999634
1107.000000 347.000000 -788.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1107.000000 147.000000 -802.000061
1107.000000 347.000000 -787.857788
1114.071167 347.000000 -794.928711
1107.000000 147.000000 -787.857788
1114.071167 147.000000 -794.928711
1107.000000 347.000000 -802.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1117.000000 147.000000 -812.000000
1107.000000 347.000000 -802.000061
1117.000000 347.000000 -802.000122
1107.000000 147.000000 -802.000061
1117.000000 147.000000 -802.000122
1117.000000 347.000000 -812.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1127.000000 147.000000 -801.999939
1117.000244 347.000000 -812.000305
1117.000000 347.000000 -802.000366
1117.000244 147.000000 -812.000305
1117.000000 147.000000 -802.000366
1127.000000 347.000000 -801.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1127.000000 147.000000 -788.000183
1126.999756 347.000000 -802.142334
1119.928955 347.000000 -795.071289
1126.999756 147.000000 -802.142334
1119.928955 147.000000 -795.071289
1127.000000 347.000000 -788.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1117.000000 147.000000 -778.000061
1127.000000 347.000000 -788.000183
1117.000244 347.000000 -788.000000
1127.000000 147.000000 -788.000183
1117.000244 147.000000 -788.000000
1117.000000 347.000000 -778.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1429.000000 202.000000 -786.000000
1439.000000 402.000000 -775.999756
1439.000000 402.000000 -785.999634
1439.000000 202.000000 -775.999756
1439.000000 202.000000 -785.999634
1429.000000 402.000000 -786.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1429.000000 202.000000 -800.000061
1429.000000 402.000000 -785.857788
1436.071167 402.000000 -792.928711
1429.000000 202.000000 -785.857788
1436.071167 202.000000 -792.928711
1429.000000 402.000000 -800.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1439.000000 202.000000 -810.000000
1429.000000 402.000000 -800.000061
1439.000000 402.000000 -800.000122
1429.000000 202.000000 -800.000061
1439.000000 202.000000 -800.000122
1439.000000 402.000000 -810.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1449.000000 202.000000 -799.999939
1439.000244 402.000000 -810.000305
1439.000000 402.000000 -800.000366
1439.000244 202.000000 -810.000305
1439.000000 202.000000 -800.000366
1449.000000 402.000000 -799.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1449.000000 202.000000 -786.000183
1448.999756 402.000000 -800.142334
1441.928955 402.000000 -793.071289
1448.999756 202.000000 -800.142334
1441.928955 202.000000 -793.071289
1449.000000 402.000000 -786.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1439.000000 202.000000 -776.000061
1449.000000 402.000000 -786.000183
1439.000244 402.000000 -786.000000
1449.000000 202.000000 -786.000183
1439.000244 202.000000 -786.000000
1439.000000 402.000000 -776.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1102.000000 160.000000 -878.000000
1112.000000 360.000000 -867.999756
1112.000000 360.000000 -877.999634
1112.000000 160.000000 -867.999756
1112.000000 160.000000 -877.999634
1102.000000 360.000000 -878.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1102.000000 160.000000 -892.000061
1102.000000 360.000000 -877.857788
1109.071167 360.000000 -884.928711
1102.000000 160.000000 -877.857788
1109.071167 160.000000 -884.928711
1102.000000 360.000000 -892.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1112.000000 160.000000 -902.000000
1102.000000 360.000000 -892.000061
1112.000000 360.000000 -892.000122
1102.000000 160.000000 -892.000061
1112.000000 160.000000 -892.000122
1112.000000 360.000000 -902.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1122.000000 160.000000 -891.999939
1112.000244 360.000000 -902.000305
1112.000000 360.000000 -892.000366
1112.000244 160.000000 -902.000305
1112.000000 160.000000 -892.000366
1122.000000 360.000000 -891.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1122.000000 160.000000 -878.000183
1121.999756 360.000000 -892.142334
1114.928955 360.000000 -885.071289
1121.999756 160.000000 -892.142334
1114.928955 160.000000 -885.071289
1122.000000 360.000000 -878.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1112.000000 160.000000 -868.000061
1122.000000 360.000000 -878.000183
1112.000244 360.000000 -878.000000
1122.000000 160.000000 -878.000183
1112.000244 160.000000 -878.000000
1112.000000 360.000000 -868.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
800.000000 70.000000 -889.000000
810.000000 270.000000 -878.999756
810.000000 270.000000 -888.999634
810.000000 70.000000 -878.999756
810.000000 70.000000 -888.999634
800.000000 270.000000 -889.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
800.000000 70.000000 -903.000061
800.000000 270.000000 -888.857788
807.071167 270.000000 -895.928711
800.000000 70.000000 -888.857788
807.071167 70.000000 -895.928711
800.000000 270.000000 -903.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
810.000000 70.000000 -913.000000
800.000000 270.000000 -903.000061
810.000000 270.000000 -903.000122
800.000000 70.000000 -903.000061
810.000000 70.000000 -903.000122
810.000000 270.000000 -913.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
820.000000 70.000000 -902.999939
810.000244 270.000000 -913.000305
810.000000 270.000000 -903.000366
810.000244 70.000000 -913.000305
810.000000 70.000000 -903.000366
820.000000 270.000000 -902.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
820.000000 70.000000 -889.000183
819.999756 270.000000 -903.142334
812.928955 270.000000 -896.071289
819.999756 70.000000 -903.142334
812.928955 70.000000 -896.071289
820.000000 270.000000 -889.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
810.000000 70.000000 -879.000061
820.000000 270.000000 -889.000183
810.000244 270.000000 -889.000000
820.000000 70.000000 -889.000183
810.000244 70.000000 -889.000000
810.000000 270.000000 -879.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
552.000000 1.000000 -891.000000
562.000000 201.000000 -880.999756
562.000000 201.000000 -890.999634
562.000000 1.000000 -880.999756
562.000000 1.000000 -890.999634
552.000000 201.000000 -891.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
552.000000 1.000000 -905.000061
552.000000 201.000000 -890.857788
559.071167 201.000000 -897.928711
552.000000 1.000000 -890.857788
559.071167 1.000000 -897.928711
552.000000 201.000000 -905.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
562.000000 1.000000 -915.000000
552.000000 201.000000 -905.000061
562.000000 201.000000 -905.000122
552.000000 1.000000 -905.000061
562.000000 1.000000 -905.000122
562.000000 201.000000 -915.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
572.000000 1.000000 -904.999939
562.000244 201.000000 -915.000305
562.000000 201.000000 -905.000366
562.000244 1.000000 -915.000305
562.000000 1.000000 -905.000366
572.000000 201.000000 -904.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
572.000000 1.000000 -891.000183
571.999756 201.000000 -905.142334
564.928955 201.000000 -898.071289
571.999756 1.000000 -905.142334
564.928955 1.000000 -898.071289
572.000000 201.000000 -891.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
562.000000 1.000000 -881.000061
572.000000 201.000000 -891.000183
562.000244 201.000000 -891.000000
572.000000 1.000000 -891.000183
562.000244 1.000000 -891.000000
562.000000 201.000000 -881.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
561.000000 10.000000 -817.000000
551.000061 210.000000 -807.000061
561.000000 210.000000 -807.000122
551.000061 10.000000 -807.000061
561.000000 10.000000 -807.000122
561.000000 210.000000 -817.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
551.000061 10.000000 -807.000061
551.000000 210.000000 -792.857788
558.071167 210.000000 -799.928711
551.000000 10.000000 -792.857788
558.071167 10.000000 -799.928711
551.000061 210.000000 -807.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
551.000000 10.000000 -793.000000
561.000000 210.000000 -782.999756
561.000000 210.000000 -792.999634
561.000000 10.000000 -782.999756
561.000000 10.000000 -792.999634
551.000000 210.000000 -793.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
571.000061 10.000000 -806.999939
561.000183 210.000000 -817.000305
561.000000 210.000000 -807.000366
561.000183 10.000000 -817.000305
561.000000 10.000000 -807.000366
571.000061 210.000000 -806.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
571.000061 10.000000 -793.000183
570.999756 210.000000 -807.142334
563.928955 210.000000 -800.071289
570.999756 10.000000 -807.142334
563.928955 10.000000 -800.071289
571.000061 210.000000 -793.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
560.999939 10.000000 -783.000061
571.000061 210.000000 -793.000183
561.000244 210.000000 -793.000000
571.000061 10.000000 -793.000183
561.000244 10.000000 -793.000000
560.999939 210.000000 -783.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
658.000000 20.000000 -841.000000
668.000000 220.000000 -830.999756
668.000000 220.000000 -840.999634
668.000000 20.000000 -830.999756
668.000000 20.000000 -840.999634
658.000000 220.000000 -841.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
658.000061 20.000000 -855.000061
658.000000 220.000000 -840.857788
665.071167 220.000000 -847.928711
658.000000 20.000000 -840.857788
665.071167 20.000000 -847.928711
658.000061 220.000000 -855.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
668.000000 20.000000 -865.000000
658.000061 220.000000 -855.000061
668.000000 220.000000 -855.000122
658.000061 20.000000 -855.000061
668.000000 20.000000 -855.000122
668.000000 220.000000 -865.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
678.000061 20.000000 -854.999939
668.000183 220.000000 -865.000305
668.000000 220.000000 -855.000366
668.000183 20.000000 -865.000305
668.000000 20.000000 -855.000366
678.000061 220.000000 -854.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
678.000061 20.000000 -841.000183
677.999756 220.000000 -855.142334
670.928955 220.000000 -848.071289
677.999756 20.000000 -855.142334
670.928955 20.000000 -848.071289
678.000061 220.000000 -841.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
667.999939 20.000000 -831.000061
678.000061 220.000000 -841.000183
668.000244 220.000000 -841.000000
678.000061 20.000000 -841.000183
668.000244 20.000000 -841.000000
667.999939 220.000000 -831.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
908.000000 109.000000 -843.000000
918.000000 309.000000 -832.999756
918.000000 309.000000 -842.999634
918.000000 109.000000 -832.999756
918.000000 109.000000 -842.999634
908.000000 309.000000 -843.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
908.000061 109.000000 -857.000061
908.000000 309.000000 -842.857788
915.071167 309.000000 -849.928711
908.000000 109.000000 -842.857788
915.071167 109.000000 -849.928711
908.000061 309.000000 -857.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
918.000000 109.000000 -867.000000
908.000061 309.000000 -857.000061
918.000000 309.000000 -857.000122
908.000061 109.000000 -857.000061
918.000000 109.000000 -857.000122
918.000000 309.000000 -867.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
928.000061 109.000000 -856.999939
918.000183 309.000000 -867.000305
918.000000 309.000000 -857.000366
918.000183 109.000000 -867.000305
918.000000 109.000000 -857.000366
928.000061 309.000000 -856.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
928.000061 109.000000 -843.000183
927.999756 309.000000 -857.142334
920.928955 309.000000 -850.071289
927.999756 109.000000 -857.142334
920.928955 109.000000 -850.071289
928.000061 309.000000 -843.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
917.999939 109.000000 -833.000061
928.000061 309.000000 -843.000183
918.000244 309.000000 -843.000000
928.000061 109.000000 -843.000183
918.000244 109.000000 -843.000000
917.999939 309.000000 -833.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1269.000000 167.000000 -836.000000
1279.000000 367.000000 -825.999756
1279.000000 367.000000 -835.999634
1279.000000 167.000000 -825.999756
1279.000000 167.000000 -835.999634
1269.000000 367.000000 -836.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1269.000000 167.000000 -850.000061
1269.000000 367.000000 -835.857788
1276.071045 367.000000 -842.928711
1269.000000 167.000000 -835.857788
1276.071045 167.000000 -842.928711
1269.000000 367.000000 -850.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1279.000000 167.000000 -860.000000
1269.000000 367.000000 -850.000061
1279.000000 367.000000 -850.000122
1269.000000 167.000000 -850.000061
1279.000000 167.000000 -850.000122
1279.000000 367.000000 -860.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1289.000000 167.000000 -849.999939
1279.000122 367.000000 -860.000305
1279.000000 367.000000 -850.000366
1279.000122 167.000000 -860.000305
1279.000000 167.000000 -850.000366
1289.000000 367.000000 -849.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1289.000000 167.000000 -836.000183
1288.999756 367.000000 -850.142334
1281.928955 367.000000 -843.071289
1288.999756 167.000000 -850.142334
1281.928955 167.000000 -843.071289
1289.000000 367.000000 -836.000183
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
1279.000000 167.000000 -826.000061
1289.000000 367.000000 -836.000183
1279.000244 367.000000 -836.000000
1289.000000 167.000000 -836.000183
1279.000244 167.000000 -836.000000
1279.000000 367.000000 -826.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
428.000061 -9.000000 -807.000061
413.857849 191.000000 -807.000122
420.928833 191.000000 -799.928955
413.857849 -9.000000 -807.000122
420.928833 -9.000000 -799.928955
428.000061 191.000000 -807.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
414.000061 -9.000000 -807.000122
403.999817 191.000000 -797.000122
413.999695 191.000000 -797.000122
403.999817 -9.000000 -797.000122
413.999695 -9.000000 -797.000122
414.000061 191.000000 -807.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
404.000183 -9.000000 -797.000244
414.000183 191.000000 -787.000000
414.000000 191.000000 -796.999878
414.000183 -9.000000 -787.000000
414.000000 -9.000000 -796.999878
404.000183 191.000000 -797.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
414.000183 -9.000000 -787.000000
428.142395 191.000000 -787.000366
421.071411 191.000000 -794.071167
428.142395 -9.000000 -787.000366
421.071411 -9.000000 -794.071167
414.000183 191.000000 -787.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
427.999939 -9.000000 -787.000000
438.000305 191.000000 -796.999939
428.000427 191.000000 -797.000061
438.000305 -9.000000 -796.999939
428.000427 -9.000000 -797.000061
427.999939 191.000000 -787.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
438.000061 -9.000000 -797.000122
428.000061 191.000000 -807.000061
428.000183 191.000000 -797.000122
428.000061 -9.000000 -807.000061
428.000183 -9.000000 -797.000122
438.000061 191.000000 -797.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
332.000061 -9.000000 -798.000061
317.857849 191.000000 -798.000122
324.928833 191.000000 -790.928955
317.857849 -9.000000 -798.000122
324.928833 -9.000000 -790.928955
332.000061 191.000000 -798.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
318.000061 -9.000000 -798.000122
307.999817 191.000000 -788.000122
317.999695 191.000000 -788.000122
307.999817 -9.000000 -788.000122
317.999695 -9.000000 -788.000122
318.000061 191.000000 -798.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
308.000183 -9.000000 -788.000244
318.000183 191.000000 -778.000000
318.000000 191.000000 -787.999878
318.000183 -9.000000 -778.000000
318.000000 -9.000000 -787.999878
308.000183 191.000000 -788.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
318.000183 -9.000000 -778.000000
332.142395 191.000000 -778.000366
325.071411 191.000000 -785.071167
332.142395 -9.000000 -778.000366
325.071411 -9.000000 -785.071167
318.000183 191.000000 -778.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
331.999939 -9.000000 -778.000000
342.000305 191.000000 -787.999939
332.000427 191.000000 -788.000061
342.000305 -9.000000 -787.999939
332.000427 -9.000000 -788.000061
331.999939 191.000000 -778.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
342.000061 -9.000000 -788.000122
332.000061 191.000000 -798.000061
332.000183 191.000000 -788.000122
332.000061 -9.000000 -798.000061
332.000183 -9.000000 -788.000122
342.000061 191.000000 -788.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
327.000061 -9.000000 -626.000061
312.857849 191.000000 -626.000122
319.928833 191.000000 -618.928955
312.857849 -9.000000 -626.000122
319.928833 -9.000000 -618.928955
327.000061 191.000000 -626.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
313.000061 -9.000000 -626.000122
302.999817 191.000000 -616.000122
312.999695 191.000000 -616.000122
302.999817 -9.000000 -616.000122
312.999695 -9.000000 -616.000122
313.000061 191.000000 -626.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
303.000183 -9.000000 -616.000244
313.000183 191.000000 -606.000000
313.000000 191.000000 -615.999878
313.000183 -9.000000 -606.000000
313.000000 -9.000000 -615.999878
303.000183 191.000000 -616.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
313.000183 -9.000000 -606.000000
327.142395 191.000000 -606.000366
320.071411 191.000000 -613.071167
327.142395 -9.000000 -606.000366
320.071411 -9.000000 -613.071167
313.000183 191.000000 -606.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
326.999939 -9.000000 -606.000000
337.000305 191.000000 -615.999939
327.000427 191.000000 -616.000061
337.000305 -9.000000 -615.999939
327.000427 -9.000000 -616.000061
326.999939 191.000000 -606.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
337.000061 -9.000000 -616.000122
327.000061 191.000000 -626.000061
327.000183 191.000000 -616.000122
327.000061 -9.000000 -626.000061
327.000183 -9.000000 -616.000122
337.000061 191.000000 -616.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
330.000061 -9.000000 -446.000061
315.857849 191.000000 -446.000122
322.928833 191.000000 -438.928955
315.857849 -9.000000 -446.000122
322.928833 -9.000000 -438.928955
330.000061 191.000000 -446.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
316.000061 -9.000000 -446.000122
305.999817 191.000000 -436.000122
315.999695 191.000000 -436.000122
305.999817 -9.000000 -436.000122
315.999695 -9.000000 -436.000122
316.000061 191.000000 -446.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
306.000183 -9.000000 -436.000244
316.000183 191.000000 -426.000000
316.000000 191.000000 -435.999878
316.000183 -9.000000 -426.000000
316.000000 -9.000000 -435.999878
306.000183 191.000000 -436.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
316.000183 -9.000000 -426.000000
330.142395 191.000000 -426.000366
323.071411 191.000000 -433.071167
330.142395 -9.000000 -426.000366
323.071411 -9.000000 -433.071167
316.000183 191.000000 -426.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
329.999939 -9.000000 -426.000000
340.000305 191.000000 -435.999939
330.000427 191.000000 -436.000061
340.000305 -9.000000 -435.999939
330.000427 -9.000000 -436.000061
329.999939 191.000000 -426.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
340.000061 -9.000000 -436.000122
330.000061 191.000000 -446.000061
330.000183 191.000000 -436.000122
330.000061 -9.000000 -446.000061
330.000183 -9.000000 -436.000122
340.000061 191.000000 -436.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
328.000061 -9.000000 -313.000061
313.857849 191.000000 -313.000122
320.928833 191.000000 -305.928955
313.857849 -9.000000 -313.000122
320.928833 -9.000000 -305.928955
328.000061 191.000000 -313.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
314.000061 -9.000000 -313.000122
303.999817 191.000000 -303.000122
313.999695 191.000000 -303.000122
303.999817 -9.000000 -303.000122
313.999695 -9.000000 -303.000122
314.000061 191.000000 -313.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
304.000183 -9.000000 -303.000244
314.000183 191.000000 -293.000000
314.000000 191.000000 -302.999878
314.000183 -9.000000 -293.000000
314.000000 -9.000000 -302.999878
304.000183 191.000000 -303.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
314.000183 -9.000000 -293.000000
328.142395 191.000000 -293.000366
321.071411 191.000000 -300.071167
328.142395 -9.000000 -293.000366
321.071411 -9.000000 -300.071167
314.000183 191.000000 -293.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
327.999939 -9.000000 -293.000000
338.000305 191.000000 -302.999939
328.000427 191.000000 -303.000061
338.000305 -9.000000 -302.999939
328.000427 -9.000000 -303.000061
327.999939 191.000000 -293.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
338.000061 -9.000000 -303.000122
328.000061 191.000000 -313.000061
328.000183 191.000000 -303.000122
328.000061 -9.000000 -313.000061
328.000183 -9.000000 -303.000122
338.000061 191.000000 -303.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
329.000061 -9.000000 -122.000061
314.857849 191.000000 -122.000122
321.928833 191.000000 -114.928955
314.857849 -9.000000 -122.000122
321.928833 -9.000000 -114.928955
329.000061 191.000000 -122.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
315.000061 -9.000000 -122.000122
304.999817 191.000000 -112.000122
314.999695 191.000000 -112.000122
304.999817 -9.000000 -112.000122
314.999695 -9.000000 -112.000122
315.000061 191.000000 -122.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
305.000183 -9.000000 -112.000244
315.000183 191.000000 -102.000000
315.000000 191.000000 -111.999878
315.000183 -9.000000 -102.000000
315.000000 -9.000000 -111.999878
305.000183 191.000000 -112.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
315.000183 -9.000000 -102.000000
329.142395 191.000000 -102.000366
322.071411 191.000000 -109.071167
329.142395 -9.000000 -102.000366
322.071411 -9.000000 -109.071167
315.000183 191.000000 -102.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
328.999939 -9.000000 -102.000000
339.000305 191.000000 -111.999939
329.000427 191.000000 -112.000061
339.000305 -9.000000 -111.999939
329.000427 -9.000000 -112.000061
328.999939 191.000000 -102.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
339.000061 -9.000000 -112.000122
329.000061 191.000000 -122.000061
329.000183 191.000000 -112.000122
329.000061 -9.000000 -122.000061
329.000183 -9.000000 -112.000122
339.000061 191.000000 -112.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
331.000061 -9.000000 16.999939
316.857849 191.000000 16.999878
323.928833 191.000000 24.071045
316.857849 -9.000000 16.999878
323.928833 -9.000000 24.071045
331.000061 191.000000 16.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
317.000061 -9.000000 16.999878
306.999817 191.000000 26.999878
316.999695 191.000000 26.999878
306.999817 -9.000000 26.999878
316.999695 -9.000000 26.999878
317.000061 191.000000 16.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
307.000183 -9.000000 26.999756
317.000183 191.000000 37.000000
317.000000 191.000000 27.000122
317.000183 -9.000000 37.000000
317.000000 -9.000000 27.000122
307.000183 191.000000 26.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
317.000183 -9.000000 37.000000
331.142395 191.000000 36.999634
324.071411 191.000000 29.928833
331.142395 -9.000000 36.999634
324.071411 -9.000000 29.928833
317.000183 191.000000 37.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
330.999939 -9.000000 37.000000
341.000305 191.000000 27.000061
331.000427 191.000000 26.999939
341.000305 -9.000000 27.000061
331.000427 -9.000000 26.999939
330.999939 191.000000 37.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
341.000061 -9.000000 26.999878
331.000061 191.000000 16.999939
331.000183 191.000000 26.999878
331.000061 -9.000000 16.999939
331.000183 -9.000000 26.999878
341.000061 191.000000 26.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
335.000061 -9.000000 173.999939
320.857849 191.000000 173.999878
327.928833 191.000000 181.071045
320.857849 -9.000000 173.999878
327.928833 -9.000000 181.071045
335.000061 191.000000 173.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
321.000061 -9.000000 173.999878
310.999817 191.000000 183.999878
320.999695 191.000000 183.999878
310.999817 -9.000000 183.999878
320.999695 -9.000000 183.999878
321.000061 191.000000 173.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
311.000183 -9.000000 183.999756
321.000183 191.000000 194.000000
321.000000 191.000000 184.000122
321.000183 -9.000000 194.000000
321.000000 -9.000000 184.000122
311.000183 191.000000 183.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
321.000183 -9.000000 194.000000
335.142395 191.000000 193.999634
328.071411 191.000000 186.928833
335.142395 -9.000000 193.999634
328.071411 -9.000000 186.928833
321.000183 191.000000 194.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
334.999939 -9.000000 194.000000
345.000305 191.000000 184.000061
335.000427 191.000000 183.999939
345.000305 -9.000000 184.000061
335.000427 -9.000000 183.999939
334.999939 191.000000 194.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
345.000061 -9.000000 183.999878
335.000061 191.000000 173.999939
335.000183 191.000000 183.999878
335.000061 -9.000000 173.999939
335.000183 -9.000000 183.999878
345.000061 191.000000 183.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
416.000061 -8.000000 -626.000061
401.857849 192.000000 -626.000122
408.928833 192.000000 -618.928955
401.857849 -8.000000 -626.000122
408.928833 -8.000000 -618.928955
416.000061 192.000000 -626.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
402.000061 -8.000000 -626.000122
391.999817 192.000000 -616.000122
401.999695 192.000000 -616.000122
391.999817 -8.000000 -616.000122
401.999695 -8.000000 -616.000122
402.000061 192.000000 -626.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
392.000183 -8.000000 -616.000244
402.000183 192.000000 -606.000000
402.000000 192.000000 -615.999878
402.000183 -8.000000 -606.000000
402.000000 -8.000000 -615.999878
392.000183 192.000000 -616.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
402.000183 -8.000000 -606.000000
416.142395 192.000000 -606.000366
409.071411 192.000000 -613.071167
416.142395 -8.000000 -606.000366
409.071411 -8.000000 -613.071167
402.000183 192.000000 -606.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
415.999939 -8.000000 -606.000000
426.000305 192.000000 -615.999939
416.000427 192.000000 -616.000061
426.000305 -8.000000 -615.999939
416.000427 -8.000000 -616.000061
415.999939 192.000000 -606.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
426.000061 -8.000000 -616.000122
416.000061 192.000000 -626.000061
416.000183 192.000000 -616.000122
416.000061 -8.000000 -626.000061
416.000183 -8.000000 -616.000122
426.000061 192.000000 -616.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
519.000061 -8.000000 -624.000061
504.857849 192.000000 -624.000122
511.928833 192.000000 -616.928955
504.857849 -8.000000 -624.000122
511.928833 -8.000000 -616.928955
519.000061 192.000000 -624.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
505.000061 -8.000000 -624.000122
494.999817 192.000000 -614.000122
504.999695 192.000000 -614.000122
494.999817 -8.000000 -614.000122
504.999695 -8.000000 -614.000122
505.000061 192.000000 -624.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
495.000183 -8.000000 -614.000244
505.000183 192.000000 -604.000000
505.000000 192.000000 -613.999878
505.000183 -8.000000 -604.000000
505.000000 -8.000000 -613.999878
495.000183 192.000000 -614.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
505.000183 -8.000000 -604.000000
519.142395 192.000000 -604.000366
512.071411 192.000000 -611.071167
519.142395 -8.000000 -604.000366
512.071411 -8.000000 -611.071167
505.000183 192.000000 -604.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
518.999939 -8.000000 -604.000000
529.000305 192.000000 -613.999939
519.000427 192.000000 -614.000061
529.000305 -8.000000 -613.999939
519.000427 -8.000000 -614.000061
518.999939 192.000000 -604.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
529.000061 -8.000000 -614.000122
519.000061 192.000000 -624.000061
519.000183 192.000000 -614.000122
519.000061 -8.000000 -624.000061
519.000183 -8.000000 -614.000122
529.000061 192.000000 -614.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
505.000061 -8.000000 -808.000061
490.857849 192.000000 -808.000122
497.928833 192.000000 -800.928955
490.857849 -8.000000 -808.000122
497.928833 -8.000000 -800.928955
505.000061 192.000000 -808.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
491.000061 -8.000000 -808.000122
480.999817 192.000000 -798.000122
490.999695 192.000000 -798.000122
480.999817 -8.000000 -798.000122
490.999695 -8.000000 -798.000122
491.000061 192.000000 -808.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
481.000183 -8.000000 -798.000244
491.000183 192.000000 -788.000000
491.000000 192.000000 -797.999878
491.000183 -8.000000 -788.000000
491.000000 -8.000000 -797.999878
481.000183 192.000000 -798.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
491.000183 -8.000000 -788.000000
505.142395 192.000000 -788.000366
498.071411 192.000000 -795.071167
505.142395 -8.000000 -788.000366
498.071411 -8.000000 -795.071167
491.000183 192.000000 -788.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
504.999939 -8.000000 -788.000000
515.000305 192.000000 -797.999939
505.000427 192.000000 -798.000061
515.000305 -8.000000 -797.999939
505.000427 -8.000000 -798.000061
504.999939 192.000000 -788.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
515.000061 -8.000000 -798.000122
505.000061 192.000000 -808.000061
505.000183 192.000000 -798.000122
505.000061 -8.000000 -808.000061
505.000183 -8.000000 -798.000122
515.000061 192.000000 -798.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
518.000061 -7.000000 -437.000061
503.857849 193.000000 -437.000122
510.928833 193.000000 -429.928955
503.857849 -7.000000 -437.000122
510.928833 -7.000000 -429.928955
518.000061 193.000000 -437.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
504.000061 -7.000000 -437.000122
493.999817 193.000000 -427.000122
503.999695 193.000000 -427.000122
493.999817 -7.000000 -427.000122
503.999695 -7.000000 -427.000122
504.000061 193.000000 -437.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
494.000183 -7.000000 -427.000244
504.000183 193.000000 -417.000000
504.000000 193.000000 -426.999878
504.000183 -7.000000 -417.000000
504.000000 -7.000000 -426.999878
494.000183 193.000000 -427.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
504.000183 -7.000000 -417.000000
518.142395 193.000000 -417.000366
511.071411 193.000000 -424.071167
518.142395 -7.000000 -417.000366
511.071411 -7.000000 -424.071167
504.000183 193.000000 -417.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
517.999939 -7.000000 -417.000000
528.000305 193.000000 -426.999939
518.000427 193.000000 -427.000061
528.000305 -7.000000 -426.999939
518.000427 -7.000000 -427.000061
517.999939 193.000000 -417.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
528.000061 -7.000000 -427.000122
518.000061 193.000000 -437.000061
518.000183 193.000000 -427.000122
518.000061 -7.000000 -437.000061
518.000183 -7.000000 -427.000122
528.000061 193.000000 -427.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
422.000061 -7.000000 -442.000061
407.857849 193.000000 -442.000122
414.928833 193.000000 -434.928955
407.857849 -7.000000 -442.000122
414.928833 -7.000000 -434.928955
422.000061 193.000000 -442.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
408.000061 -7.000000 -442.000122
397.999817 193.000000 -432.000122
407.999695 193.000000 -432.000122
397.999817 -7.000000 -432.000122
407.999695 -7.000000 -432.000122
408.000061 193.000000 -442.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
398.000183 -7.000000 -432.000244
408.000183 193.000000 -422.000000
408.000000 193.000000 -431.999878
408.000183 -7.000000 -422.000000
408.000000 -7.000000 -431.999878
398.000183 193.000000 -432.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
408.000183 -7.000000 -422.000000
422.142395 193.000000 -422.000366
415.071411 193.000000 -429.071167
422.142395 -7.000000 -422.000366
415.071411 -7.000000 -429.071167
408.000183 193.000000 -422.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
421.999939 -7.000000 -422.000000
432.000305 193.000000 -431.999939
422.000427 193.000000 -432.000061
432.000305 -7.000000 -431.999939
422.000427 -7.000000 -432.000061
421.999939 193.000000 -422.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
432.000061 -7.000000 -432.000122
422.000061 193.000000 -442.000061
422.000183 193.000000 -432.000122
422.000061 -7.000000 -442.000061
422.000183 -7.000000 -432.000122
432.000061 193.000000 -432.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
426.000061 -7.000000 -312.000061
411.857849 193.000000 -312.000122
418.928833 193.000000 -304.928955
411.857849 -7.000000 -312.000122
418.928833 -7.000000 -304.928955
426.000061 193.000000 -312.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
412.000061 -7.000000 -312.000122
401.999817 193.000000 -302.000122
411.999695 193.000000 -302.000122
401.999817 -7.000000 -302.000122
411.999695 -7.000000 -302.000122
412.000061 193.000000 -312.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
402.000183 -7.000000 -302.000244
412.000183 193.000000 -292.000000
412.000000 193.000000 -301.999878
412.000183 -7.000000 -292.000000
412.000000 -7.000000 -301.999878
402.000183 193.000000 -302.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
412.000183 -7.000000 -292.000000
426.142395 193.000000 -292.000366
419.071411 193.000000 -299.071167
426.142395 -7.000000 -292.000366
419.071411 -7.000000 -299.071167
412.000183 193.000000 -292.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
425.999939 -7.000000 -292.000000
436.000305 193.000000 -301.999939
426.000427 193.000000 -302.000061
436.000305 -7.000000 -301.999939
426.000427 -7.000000 -302.000061
425.999939 193.000000 -292.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
436.000061 -7.000000 -302.000122
426.000061 193.000000 -312.000061
426.000183 193.000000 -302.000122
426.000061 -7.000000 -312.000061
426.000183 -7.000000 -302.000122
436.000061 193.000000 -302.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
520.000061 -7.000000 -312.000061
505.857849 193.000000 -312.000122
512.928833 193.000000 -304.928955
505.857849 -7.000000 -312.000122
512.928833 -7.000000 -304.928955
520.000061 193.000000 -312.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
506.000061 -7.000000 -312.000122
495.999817 193.000000 -302.000122
505.999695 193.000000 -302.000122
495.999817 -7.000000 -302.000122
505.999695 -7.000000 -302.000122
506.000061 193.000000 -312.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
496.000183 -7.000000 -302.000244
506.000183 193.000000 -292.000000
506.000000 193.000000 -301.999878
506.000183 -7.000000 -292.000000
506.000000 -7.000000 -301.999878
496.000183 193.000000 -302.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
506.000183 -7.000000 -292.000000
520.142395 193.000000 -292.000366
513.071411 193.000000 -299.071167
520.142395 -7.000000 -292.000366
513.071411 -7.000000 -299.071167
506.000183 193.000000 -292.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
519.999939 -7.000000 -292.000000
530.000305 193.000000 -301.999939
520.000427 193.000000 -302.000061
530.000305 -7.000000 -301.999939
520.000427 -7.000000 -302.000061
519.999939 193.000000 -292.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
530.000061 -7.000000 -302.000122
520.000061 193.000000 -312.000061
520.000183 193.000000 -302.000122
520.000061 -7.000000 -312.000061
520.000183 -7.000000 -302.000122
530.000061 193.000000 -302.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
415.000061 -7.000000 -118.000061
400.857849 193.000000 -118.000122
407.928833 193.000000 -110.928955
400.857849 -7.000000 -118.000122
407.928833 -7.000000 -110.928955
415.000061 193.000000 -118.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
401.000061 -7.000000 -118.000122
390.999817 193.000000 -108.000122
400.999695 193.000000 -108.000122
390.999817 -7.000000 -108.000122
400.999695 -7.000000 -108.000122
401.000061 193.000000 -118.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
391.000183 -7.000000 -108.000244
401.000183 193.000000 -98.000000
401.000000 193.000000 -107.999878
401.000183 -7.000000 -98.000000
401.000000 -7.000000 -107.999878
391.000183 193.000000 -108.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
401.000183 -7.000000 -98.000000
415.142395 193.000000 -98.000366
408.071411 193.000000 -105.071167
415.142395 -7.000000 -98.000366
408.071411 -7.000000 -105.071167
401.000183 193.000000 -98.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
414.999939 -7.000000 -98.000000
425.000305 193.000000 -107.999939
415.000427 193.000000 -108.000061
425.000305 -7.000000 -107.999939
415.000427 -7.000000 -108.000061
414.999939 193.000000 -98.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
425.000061 -7.000000 -108.000122
415.000061 193.000000 -118.000061
415.000183 193.000000 -108.000122
415.000061 -7.000000 -118.000061
415.000183 -7.000000 -108.000122
425.000061 193.000000 -108.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
520.000061 -7.000000 -113.000061
505.857849 193.000000 -113.000122
512.928833 193.000000 -105.928955
505.857849 -7.000000 -113.000122
512.928833 -7.000000 -105.928955
520.000061 193.000000 -113.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
506.000061 -7.000000 -113.000122
495.999817 193.000000 -103.000122
505.999695 193.000000 -103.000122
495.999817 -7.000000 -103.000122
505.999695 -7.000000 -103.000122
506.000061 193.000000 -113.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
496.000183 -7.000000 -103.000244
506.000183 193.000000 -93.000000
506.000000 193.000000 -102.999878
506.000183 -7.000000 -93.000000
506.000000 -7.000000 -102.999878
496.000183 193.000000 -103.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
506.000183 -7.000000 -93.000000
520.142395 193.000000 -93.000366
513.071411 193.000000 -100.071167
520.142395 -7.000000 -93.000366
513.071411 -7.000000 -100.071167
506.000183 193.000000 -93.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
519.999939 -7.000000 -93.000000
530.000305 193.000000 -102.999939
520.000427 193.000000 -103.000061
530.000305 -7.000000 -102.999939
520.000427 -7.000000 -103.000061
519.999939 193.000000 -93.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
530.000061 -7.000000 -103.000122
520.000061 193.000000 -113.000061
520.000183 193.000000 -103.000122
520.000061 -7.000000 -113.000061
520.000183 -7.000000 -103.000122
530.000061 193.000000 -103.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
521.000061 -7.000000 19.999939
506.857849 193.000000 19.999878
513.928833 193.000000 27.071045
506.857849 -7.000000 19.999878
513.928833 -7.000000 27.071045
521.000061 193.000000 19.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
507.000061 -7.000000 19.999878
496.999817 193.000000 29.999878
506.999695 193.000000 29.999878
496.999817 -7.000000 29.999878
506.999695 -7.000000 29.999878
507.000061 193.000000 19.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
497.000183 -7.000000 29.999756
507.000183 193.000000 40.000000
507.000000 193.000000 30.000122
507.000183 -7.000000 40.000000
507.000000 -7.000000 30.000122
497.000183 193.000000 29.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
507.000183 -7.000000 40.000000
521.142395 193.000000 39.999634
514.071411 193.000000 32.928833
521.142395 -7.000000 39.999634
514.071411 -7.000000 32.928833
507.000183 193.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
520.999939 -7.000000 40.000000
531.000305 193.000000 30.000061
521.000427 193.000000 29.999939
531.000305 -7.000000 30.000061
521.000427 -7.000000 29.999939
520.999939 193.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
531.000061 -7.000000 29.999878
521.000061 193.000000 19.999939
521.000183 193.000000 29.999878
521.000061 -7.000000 19.999939
521.000183 -7.000000 29.999878
531.000061 193.000000 29.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
417.000061 -7.000000 18.999939
402.857849 193.000000 18.999878
409.928833 193.000000 26.071045
402.857849 -7.000000 18.999878
409.928833 -7.000000 26.071045
417.000061 193.000000 18.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
403.000061 -7.000000 18.999878
392.999817 193.000000 28.999878
402.999695 193.000000 28.999878
392.999817 -7.000000 28.999878
402.999695 -7.000000 28.999878
403.000061 193.000000 18.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
393.000183 -7.000000 28.999756
403.000183 193.000000 39.000000
403.000000 193.000000 29.000122
403.000183 -7.000000 39.000000
403.000000 -7.000000 29.000122
393.000183 193.000000 28.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
403.000183 -7.000000 39.000000
417.142395 193.000000 38.999634
410.071411 193.000000 31.928833
417.142395 -7.000000 38.999634
410.071411 -7.000000 31.928833
403.000183 193.000000 39.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
416.999939 -7.000000 39.000000
427.000305 193.000000 29.000061
417.000427 193.000000 28.999939
427.000305 -7.000000 29.000061
417.000427 -7.000000 28.999939
416.999939 193.000000 39.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
427.000061 -7.000000 28.999878
417.000061 193.000000 18.999939
417.000183 193.000000 28.999878
417.000061 -7.000000 18.999939
417.000183 -7.000000 28.999878
427.000061 193.000000 28.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
429.000061 -7.000000 174.999939
414.857849 193.000000 174.999878
421.928833 193.000000 182.071045
414.857849 -7.000000 174.999878
421.928833 -7.000000 182.071045
429.000061 193.000000 174.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
415.000061 -7.000000 174.999878
404.999817 193.000000 184.999878
414.999695 193.000000 184.999878
404.999817 -7.000000 184.999878
414.999695 -7.000000 184.999878
415.000061 193.000000 174.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
405.000183 -7.000000 184.999756
415.000183 193.000000 195.000000
415.000000 193.000000 185.000122
415.000183 -7.000000 195.000000
415.000000 -7.000000 185.000122
405.000183 193.000000 184.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
415.000183 -7.000000 195.000000
429.142395 193.000000 194.999634
422.071411 193.000000 187.928833
429.142395 -7.000000 194.999634
422.071411 -7.000000 187.928833
415.000183 193.000000 195.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
428.999939 -7.000000 195.000000
439.000305 193.000000 185.000061
429.000427 193.000000 184.999939
439.000305 -7.000000 185.000061
429.000427 -7.000000 184.999939
428.999939 193.000000 195.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
439.000061 -7.000000 184.999878
429.000061 193.000000 174.999939
429.000183 193.000000 184.999878
429.000061 -7.000000 174.999939
429.000183 -7.000000 184.999878
439.000061 193.000000 184.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
476.000061 -6.000000 -689.000061
461.857849 194.000000 -689.000061
468.928833 194.000000 -681.929016
461.857849 -6.000000 -689.000061
468.928833 -6.000000 -681.929016
476.000061 194.000000 -689.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
462.000061 -6.000000 -689.000122
451.999817 194.000000 -679.000122
461.999695 194.000000 -679.000122
451.999817 -6.000000 -679.000122
461.999695 -6.000000 -679.000122
462.000061 194.000000 -689.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
452.000183 -6.000000 -679.000244
462.000183 194.000000 -669.000000
462.000000 194.000000 -679.000000
462.000183 -6.000000 -669.000000
462.000000 -6.000000 -679.000000
452.000183 194.000000 -679.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
462.000183 -6.000000 -669.000000
476.142395 194.000000 -669.000488
469.071411 194.000000 -676.071289
476.142395 -6.000000 -669.000488
469.071411 -6.000000 -676.071289
462.000183 194.000000 -669.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
475.999939 -6.000000 -669.000000
486.000305 194.000000 -679.000000
476.000427 194.000000 -679.000000
486.000305 -6.000000 -679.000000
476.000427 -6.000000 -679.000000
475.999939 194.000000 -669.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
486.000061 -6.000000 -679.000122
476.000061 194.000000 -689.000122
476.000183 194.000000 -679.000122
476.000061 -6.000000 -689.000122
476.000183 -6.000000 -679.000122
486.000061 194.000000 -679.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
369.000061 -5.000000 -690.000061
354.857849 195.000000 -690.000122
361.928833 195.000000 -682.928955
354.857849 -5.000000 -690.000122
361.928833 -5.000000 -682.928955
369.000061 195.000000 -690.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
355.000061 -5.000000 -690.000122
344.999817 195.000000 -680.000122
354.999695 195.000000 -680.000122
344.999817 -5.000000 -680.000122
354.999695 -5.000000 -680.000122
355.000061 195.000000 -690.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
345.000183 -5.000000 -680.000244
355.000183 195.000000 -670.000000
355.000000 195.000000 -679.999878
355.000183 -5.000000 -670.000000
355.000000 -5.000000 -679.999878
345.000183 195.000000 -680.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
355.000183 -5.000000 -670.000000
369.142395 195.000000 -670.000366
362.071411 195.000000 -677.071167
369.142395 -5.000000 -670.000366
362.071411 -5.000000 -677.071167
355.000183 195.000000 -670.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
368.999939 -5.000000 -670.000000
379.000305 195.000000 -679.999939
369.000427 195.000000 -680.000061
379.000305 -5.000000 -679.999939
369.000427 -5.000000 -680.000061
368.999939 195.000000 -670.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
379.000061 -5.000000 -680.000122
369.000061 195.000000 -690.000061
369.000183 195.000000 -680.000122
369.000061 -5.000000 -690.000061
369.000183 -5.000000 -680.000122
379.000061 195.000000 -680.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
469.000061 -5.000000 -539.000061
454.857849 195.000000 -539.000122
461.928833 195.000000 -531.928955
454.857849 -5.000000 -539.000122
461.928833 -5.000000 -531.928955
469.000061 195.000000 -539.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
455.000061 -5.000000 -539.000122
444.999817 195.000000 -529.000122
454.999695 195.000000 -529.000122
444.999817 -5.000000 -529.000122
454.999695 -5.000000 -529.000122
455.000061 195.000000 -539.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
445.000183 -5.000000 -529.000244
455.000183 195.000000 -519.000000
455.000000 195.000000 -528.999878
455.000183 -5.000000 -519.000000
455.000000 -5.000000 -528.999878
445.000183 195.000000 -529.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
455.000183 -5.000000 -519.000000
469.142395 195.000000 -519.000366
462.071411 195.000000 -526.071167
469.142395 -5.000000 -519.000366
462.071411 -5.000000 -526.071167
455.000183 195.000000 -519.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
468.999939 -5.000000 -519.000000
479.000305 195.000000 -528.999939
469.000427 195.000000 -529.000061
479.000305 -5.000000 -528.999939
469.000427 -5.000000 -529.000061
468.999939 195.000000 -519.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
479.000061 -5.000000 -529.000122
469.000061 195.000000 -539.000061
469.000183 195.000000 -529.000122
469.000061 -5.000000 -539.000061
469.000183 -5.000000 -529.000122
479.000061 195.000000 -529.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
372.000061 -5.000000 -536.000061
357.857849 195.000000 -536.000122
364.928833 195.000000 -528.928955
357.857849 -5.000000 -536.000122
364.928833 -5.000000 -528.928955
372.000061 195.000000 -536.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
358.000061 -5.000000 -536.000122
347.999817 195.000000 -526.000122
357.999695 195.000000 -526.000122
347.999817 -5.000000 -526.000122
357.999695 -5.000000 -526.000122
358.000061 195.000000 -536.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
348.000183 -5.000000 -526.000244
358.000183 195.000000 -516.000000
358.000000 195.000000 -525.999878
358.000183 -5.000000 -516.000000
358.000000 -5.000000 -525.999878
348.000183 195.000000 -526.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
358.000183 -5.000000 -516.000000
372.142395 195.000000 -516.000366
365.071411 195.000000 -523.071167
372.142395 -5.000000 -516.000366
365.071411 -5.000000 -523.071167
358.000183 195.000000 -516.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
371.999939 -5.000000 -516.000000
382.000305 195.000000 -525.999939
372.000427 195.000000 -526.000061
382.000305 -5.000000 -525.999939
372.000427 -5.000000 -526.000061
371.999939 195.000000 -516.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
382.000061 -5.000000 -526.000122
372.000061 195.000000 -536.000061
372.000183 195.000000 -526.000122
372.000061 -5.000000 -536.000061
372.000183 -5.000000 -526.000122
382.000061 195.000000 -526.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
373.000061 -5.000000 -377.000061
358.857849 195.000000 -377.000122
365.928833 195.000000 -369.928955
358.857849 -5.000000 -377.000122
365.928833 -5.000000 -369.928955
373.000061 195.000000 -377.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
359.000061 -5.000000 -377.000122
348.999817 195.000000 -367.000122
358.999695 195.000000 -367.000122
348.999817 -5.000000 -367.000122
358.999695 -5.000000 -367.000122
359.000061 195.000000 -377.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
349.000183 -5.000000 -367.000244
359.000183 195.000000 -357.000000
359.000000 195.000000 -366.999878
359.000183 -5.000000 -357.000000
359.000000 -5.000000 -366.999878
349.000183 195.000000 -367.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
359.000183 -5.000000 -357.000000
373.142395 195.000000 -357.000366
366.071411 195.000000 -364.071167
373.142395 -5.000000 -357.000366
366.071411 -5.000000 -364.071167
359.000183 195.000000 -357.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
372.999939 -5.000000 -357.000000
383.000305 195.000000 -366.999939
373.000427 195.000000 -367.000061
383.000305 -5.000000 -366.999939
373.000427 -5.000000 -367.000061
372.999939 195.000000 -357.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
383.000061 -5.000000 -367.000122
373.000061 195.000000 -377.000061
373.000183 195.000000 -367.000122
373.000061 -5.000000 -377.000061
373.000183 -5.000000 -367.000122
383.000061 195.000000 -367.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
479.000061 -4.000000 -375.000061
464.857849 196.000000 -375.000122
471.928833 196.000000 -367.928955
464.857849 -4.000000 -375.000122
471.928833 -4.000000 -367.928955
479.000061 196.000000 -375.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
465.000061 -4.000000 -375.000122
454.999817 196.000000 -365.000122
464.999695 196.000000 -365.000122
454.999817 -4.000000 -365.000122
464.999695 -4.000000 -365.000122
465.000061 196.000000 -375.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
455.000183 -4.000000 -365.000244
465.000183 196.000000 -355.000000
465.000000 196.000000 -364.999878
465.000183 -4.000000 -355.000000
465.000000 -4.000000 -364.999878
455.000183 196.000000 -365.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
465.000183 -4.000000 -355.000000
479.142395 196.000000 -355.000366
472.071411 196.000000 -362.071167
479.142395 -4.000000 -355.000366
472.071411 -4.000000 -362.071167
465.000183 196.000000 -355.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
478.999939 -4.000000 -355.000000
489.000305 196.000000 -364.999939
479.000427 196.000000 -365.000061
489.000305 -4.000000 -364.999939
479.000427 -4.000000 -365.000061
478.999939 196.000000 -355.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
489.000061 -4.000000 -365.000122
479.000061 196.000000 -375.000061
479.000183 196.000000 -365.000122
479.000061 -4.000000 -375.000061
479.000183 -4.000000 -365.000122
489.000061 196.000000 -365.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
470.000061 -4.000000 -200.000061
455.857849 196.000000 -200.000122
462.928833 196.000000 -192.928955
455.857849 -4.000000 -200.000122
462.928833 -4.000000 -192.928955
470.000061 196.000000 -200.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
456.000061 -4.000000 -200.000122
445.999817 196.000000 -190.000122
455.999695 196.000000 -190.000122
445.999817 -4.000000 -190.000122
455.999695 -4.000000 -190.000122
456.000061 196.000000 -200.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
446.000183 -4.000000 -190.000244
456.000183 196.000000 -180.000000
456.000000 196.000000 -189.999878
456.000183 -4.000000 -180.000000
456.000000 -4.000000 -189.999878
446.000183 196.000000 -190.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
456.000183 -4.000000 -180.000000
470.142395 196.000000 -180.000366
463.071411 196.000000 -187.071167
470.142395 -4.000000 -180.000366
463.071411 -4.000000 -187.071167
456.000183 196.000000 -180.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
469.999939 -4.000000 -180.000000
480.000305 196.000000 -189.999939
470.000427 196.000000 -190.000061
480.000305 -4.000000 -189.999939
470.000427 -4.000000 -190.000061
469.999939 196.000000 -180.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
480.000061 -4.000000 -190.000122
470.000061 196.000000 -200.000061
470.000183 196.000000 -190.000122
470.000061 -4.000000 -200.000061
470.000183 -4.000000 -190.000122
480.000061 196.000000 -190.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
372.000061 -4.000000 -198.000061
357.857849 196.000000 -198.000122
364.928833 196.000000 -190.928955
357.857849 -4.000000 -198.000122
364.928833 -4.000000 -190.928955
372.000061 196.000000 -198.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
358.000061 -4.000000 -198.000122
347.999817 196.000000 -188.000122
357.999695 196.000000 -188.000122
347.999817 -4.000000 -188.000122
357.999695 -4.000000 -188.000122
358.000061 196.000000 -198.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
348.000183 -4.000000 -188.000244
358.000183 196.000000 -178.000000
358.000000 196.000000 -187.999878
358.000183 -4.000000 -178.000000
358.000000 -4.000000 -187.999878
348.000183 196.000000 -188.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
358.000183 -4.000000 -178.000000
372.142395 196.000000 -178.000366
365.071411 196.000000 -185.071167
372.142395 -4.000000 -178.000366
365.071411 -4.000000 -185.071167
358.000183 196.000000 -178.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
371.999939 -4.000000 -178.000000
382.000305 196.000000 -187.999939
372.000427 196.000000 -188.000061
382.000305 -4.000000 -187.999939
372.000427 -4.000000 -188.000061
371.999939 196.000000 -178.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
382.000061 -4.000000 -188.000122
372.000061 196.000000 -198.000061
372.000183 196.000000 -188.000122
372.000061 -4.000000 -198.000061
372.000183 -4.000000 -188.000122
382.000061 196.000000 -188.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
477.000061 -4.000000 -42.000061
462.857849 196.000000 -42.000122
469.928833 196.000000 -34.928955
462.857849 -4.000000 -42.000122
469.928833 -4.000000 -34.928955
477.000061 196.000000 -42.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
463.000061 -4.000000 -42.000122
452.999817 196.000000 -32.000122
462.999695 196.000000 -32.000122
452.999817 -4.000000 -32.000122
462.999695 -4.000000 -32.000122
463.000061 196.000000 -42.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
463.000183 -4.000000 -22.000000
477.142395 196.000000 -22.000366
470.071411 196.000000 -29.071167
477.142395 -4.000000 -22.000366
470.071411 -4.000000 -29.071167
463.000183 196.000000 -22.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
476.999939 -4.000000 -22.000000
487.000305 196.000000 -31.999939
477.000427 196.000000 -32.000061
487.000305 -4.000000 -31.999939
477.000427 -4.000000 -32.000061
476.999939 196.000000 -22.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
487.000061 -4.000000 -32.000122
477.000061 196.000000 -42.000061
477.000183 196.000000 -32.000122
477.000061 -4.000000 -42.000061
477.000183 -4.000000 -32.000122
487.000061 196.000000 -32.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
479.000061 -3.000000 100.999939
464.857849 197.000000 100.999878
471.928833 197.000000 108.071045
464.857849 -3.000000 100.999878
471.928833 -3.000000 108.071045
479.000061 197.000000 100.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
465.000061 -3.000000 100.999878
454.999817 197.000000 110.999878
464.999695 197.000000 110.999878
454.999817 -3.000000 110.999878
464.999695 -3.000000 110.999878
465.000061 197.000000 100.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
455.000183 -3.000000 110.999756
465.000183 197.000000 121.000000
465.000000 197.000000 111.000122
465.000183 -3.000000 121.000000
465.000000 -3.000000 111.000122
455.000183 197.000000 110.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
465.000183 -3.000000 121.000000
479.142395 197.000000 120.999634
472.071411 197.000000 113.928833
479.142395 -3.000000 120.999634
472.071411 -3.000000 113.928833
465.000183 197.000000 121.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
478.999939 -3.000000 121.000000
489.000305 197.000000 111.000061
479.000427 197.000000 110.999939
489.000305 -3.000000 111.000061
479.000427 -3.000000 110.999939
478.999939 197.000000 121.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
489.000061 -3.000000 110.999878
479.000061 197.000000 100.999939
479.000183 197.000000 110.999878
479.000061 -3.000000 100.999939
479.000183 -3.000000 110.999878
489.000061 197.000000 110.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
382.000061 -2.000000 105.999939
367.857849 198.000000 105.999878
374.928833 198.000000 113.071045
367.857849 -2.000000 105.999878
374.928833 -2.000000 113.071045
382.000061 198.000000 105.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
368.000061 -2.000000 105.999878
357.999817 198.000000 115.999878
367.999695 198.000000 115.999878
357.999817 -2.000000 115.999878
367.999695 -2.000000 115.999878
368.000061 198.000000 105.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
358.000183 -2.000000 115.999756
368.000183 198.000000 126.000000
368.000000 198.000000 116.000122
368.000183 -2.000000 126.000000
368.000000 -2.000000 116.000122
358.000183 198.000000 115.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
368.000183 -2.000000 126.000000
382.142395 198.000000 125.999634
375.071411 198.000000 118.928833
382.142395 -2.000000 125.999634
375.071411 -2.000000 118.928833
368.000183 198.000000 126.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
381.999939 -2.000000 126.000000
392.000305 198.000000 116.000061
382.000427 198.000000 115.999939
392.000305 -2.000000 116.000061
382.000427 -2.000000 115.999939
381.999939 198.000000 126.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
392.000061 -2.000000 115.999878
382.000061 198.000000 105.999939
382.000183 198.000000 115.999878
382.000061 -2.000000 105.999939
382.000183 -2.000000 115.999878
392.000061 198.000000 115.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
brush
vertices
453.000183 -4.000000 -32.000244
463.000183 196.000000 -22.000000
463.000000 196.000000 -31.999878
463.000183 -4.000000 -22.000000
463.000000 -4.000000 -31.999878
453.000183 196.000000 -32.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000
entity
type PlayerSpawn
Vector3 position 333.000000 0.000000 -259.000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Target
Vector3 position 368.000000 256.000000 192.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position 472.000000 1.000000 -253.000000
entity
type PlayerSpawn
Vector3 position 374.000000 2.000000 -774.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 415.000000 3.000000 -492.000000
entity
type PlayerSpawn
Vector3 position 396.000000 4.000000 -161.000000
entity
type PlayerSpawn
Vector3 position 372.000000 5.000000 -15.000000
entity
type PlayerSpawn
Vector3 position 457.000000 6.000000 59.000000
entity
type PlayerSpawn
Vector3 position 332.000000 7.000000 94.000000
entity
type PlayerSpawn
Vector3 position 835.000000 111.000000 218.000000
Vector3 angles -180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 667.000000 57.000000 66.000000
Vector3 angles -360.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1061.000000 170.000000 44.000000
entity
type PlayerSpawn
Vector3 position 1352.000000 242.000000 -201.000000
entity
type PlayerSpawn
Vector3 position 1534.000000 246.000000 -382.000000
entity
type PlayerSpawn
Vector3 position 1540.000000 247.000000 -164.000000
Vector3 angles -90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1366.000000 248.000000 -342.000000
Vector3 angles -270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1358.000000 249.000000 -560.000000
entity
type PlayerSpawn
Vector3 position 1532.000000 250.000000 -528.000000
Vector3 angles -90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1525.000000 251.000000 -874.000000
entity
type PlayerSpawn
Vector3 position 1358.000000 252.000000 -879.000000
entity
type PlayerSpawn
Vector3 position 1358.000000 253.000000 -708.000000
entity
type PlayerSpawn
Vector3 position 338.000000 20.000000 -567.000000
entity
type PlayerSpawn
Vector3 position 506.000000 18.000000 -577.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 754.999939 101.000000 -731.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 578.000000 41.000000 -853.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 958.000000 160.000000 -806.000000
entity
type PlayerSpawn
Vector3 position 1190.000000 202.000000 -877.000000
entity
type PlayerSpawn
Vector3 position 1318.000000 263.000000 214.000000
Vector3 angles -180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1141.000000 209.000000 208.000000
Vector3 angles -90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1297.000000 257.000000 40.000000
entity
type PlayerSpawn
Vector3 position 896.000000 117.000000 44.000000
entity
type PlayerSpawn
Vector3 position 674.000000 51.000000 215.000000
Vector3 angles -180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1347.000000 264.000000 -26.000000
Vector3 angles -270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1517.000000 243.000000 -23.000000
entity
type PlayerSpawn
Vector3 position 1508.000000 244.000000 -275.000000
entity
type PlayerSpawn
Vector3 position 1403.000000 245.000000 -130.000000
entity
type PlayerSpawn
Vector3 position 1393.000000 255.000000 -450.000000
entity
type PlayerSpawn
Vector3 position 1492.000000 262.000000 -709.000000
entity
type PlayerSpawn
Vector3 position 1059.000000 178.000000 -735.000000
Vector3 angles -270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 806.000000 117.000000 38.000000
entity
type PlayerSpawn
Vector3 position 1026.000000 157.000000 213.000000
Vector3 angles 270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1217.000000 208.000000 40.000000
Vector3 angles 270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1480.000000 249.000000 188.000000
Vector3 angles 270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 429.000000 19.000000 -667.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 337.000000 20.000000 -723.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 479.000000 21.000000 -856.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 651.000000 80.000000 -806.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 765.999939 102.000000 -854.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 1059.000000 161.000000 -872.000000
entity
type PlayerSpawn
Vector3 position 865.000000 162.000000 -864.000000
entity
type PlayerSpawn
Vector3 position 1074.000000 171.000000 116.000000
entity
type PlayerSpawn
Vector3 position 863.000000 118.000000 115.000000
entity
type PlayerSpawn
Vector3 position 1229.000000 209.000000 112.000000
Vector3 angles 270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 570.000000 32.000000 201.000000
Vector3 angles -180.000000 0.000000 0.000000
|
c1fd6125c2aff89abda4cab429be98560837adae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH1/EX1.4/Ex1_4.sce | c646177d75e2c94b58b7605f85cc1cbb95cc4259 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 742 | sce | Ex1_4.sce | // Exa 1.4
clc;
clear;
// Given
S = 10*10^3; // Sensitivity of voltmeter in Ohms/Volt
V = 75; // Reading in Volts
Vmax = 100; // Max voltage in Volts
I = 1.5*10^-3; // reading in Amp
// Solution
printf('Consider Fig.1.10, it shows Rm as meter of voltmeter drawing some current \n Thus, loading of the source happens i.e, loading effect \n');
Rapparent = V/I;
Rm = Vmax * S;
// Rapparent = parallel combination of Rm and Rx
// Therefore Rx can be given as
Rx = (1/Rapparent - 1/Rm)^-1;
printf(' True value of Rx = %.2f K Ohms \n',Rx);
Error = 100* (Rx-Rapparent)/Rx ; // Error in percent
printf(' The percentage error due to loading effect = %.1f percent \n',Error);
//The answers vary due to round off error
|
080d1eb6f0031e15ed3d389ba7b5dc454f8252dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH1/EX1.5/Ex1_5.sce | 3bb8c093d551636d6746f310e2d32e36966bd987 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 143 | sce | Ex1_5.sce | //Exa:1.5
clc;
clear;
close;
ang_r=2.5;//given
ang_d=2.5*180/%pi;//angle in degrees
printf("%f radians angle is %f degrees",ang_r,ang_d); |
3731fce4959998fa447b2c57edb6ce4fff780f0a | 86ae7e24466d959da945d5b6d8ab93354a9e8a1d | /Exptno2.sce | 6d2665f54d73871ddf39cef7d4d4fad40804b18d | [] | no_license | AnujaNagare/Scilab-Programs | be27fdeb0db8cfa4b00ac5121676b18412b8a222 | 4152eac1a3e87ec7408fb3dfea55cac984cca2d9 | refs/heads/master | 2021-08-30T16:53:33.876536 | 2017-12-18T19:11:47 | 2017-12-18T19:11:47 | 114,677,855 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,927 | sce | Exptno2.sce | // EXPT NO. 2: - SCREW TRANSFORMATON
//AIM: - TO STUDY THE SCREW TRANSFORMATION OF A POINT
// ABOUT A SPECIFIED AXIS USING scilab AND TO PROVE THAT SCREW TM
// IS CUMULATIVE [ Rot(?,k)*Trans(?,k) = Trans(?,k)* Rot(?,k) ]
clear ;
close ;
clf
clc
disp('ENTER COORDINATES OF THE POINT')
x=input('ENTER X COORDINATE')
y=input('ENTER Y COORDINATE')
z=input('ENTER Z COORDINATE')
p=[x y z 1]
pi=22/7;
k=input('enter pure translation value');
l=input('enter pure rotational theta');
l=l*pi/180;
j=input('CHOOSE AXIS: 1.X 2.Y 3.Z');
select(j)
case 1
X=[1 0 0 0;0 1 0 0;0 0 1 0;k 0 0 1];
RX = [1 0 0 0;0 cos(l) (-1)*sin(l) 0;0 sin(l) cos(l) 0;0 0 0 1];
disp('ROTATION THEN TRANSLATION')
chctm1=RX*X
q=p*RX*X
disp('TRANSLATION THEN ROTATION')
chctm2=X*RX
q=p*X*RX
case 2
Y=[1 0 0 0;0 1 0 0;0 0 1 0;0 k 0 1];
RY = [cos(l) 0 sin(l) 0;0 1 0 0;(-1)*sin(l) 0 cos(l) 0;0 0 0 1];
disp('ROTATION THEN TRANSLATION')
chctm1=RY*Y
q=p*RY*Y
disp('TRANSLATION THEN ROTATION')
chctm2=Y*RY
q=p*Y*RY
case 3
Z=[1 0 0 0;0 1 0 0;0 0 1 0;0 0 k 1];
RZ = [cos(l) (-1)*sin(l) 0 0;sin(l) cos(l) 0 0;0 0 1 0;0 0 0 1];
disp('ROTATION THEN TRANSLATION')
chctm1=RZ*Z
q=p*RZ*Z
disp('TRANSLATION THEN ROTATION')
chctm2=Z*RZ
q=p*Z*RZ
end
subplot(1,2,1)
plot2d3(x,y,z)
xlabel('x axis'),ylabel('y axis'),zlabel('z axis')
title('ORIGINAL POINT p')
subplot(1,2,2)
plot2d3(q(1),q(2),q(3))
xlabel('x axis'),ylabel('y axis'),zlabel('z axis')
title('TRANSFORMED POINT q')
// output
// 3
// 4
// 5
// 6
// 45
//
|
c3fcb28147ce5998065feee7f74dbde062dd451f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3838/CH3/EX3.1.D/EX3_1_d.sce | abfd394cada54c57352f07142e3040c6f58f896d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 54 | sce | EX3_1_d.sce | //EXAMPLE 3.1.D
clc;
Syms s t
laplace(-exp(-3*t),t,s)
|
bbeffb290796f5e38ed9cbf40a9052dfa7bc7bfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH8/EX8.1/ex8_1.sce | 28a52a661e6fe7e01020c4e42ec3bbd77d03e30c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 76 | sce | ex8_1.sce | //ex8.1
g_m=4*10^-3;
R_d=1.5*10^3;
A_v=g_m*R_d;
disp(A_v,'Voltage gain') |
efe68eadb903293fe17db11fe075b404c93a4a8b | fdc5047b7bf8122bad1e621df236b0481226c36e | /exemplos/xls-link-0.5.0-src/tests/unit_tests/xls_DisplayAlerts.tst | c9a8f07fdf671b5340ebef1dfb15f2faffe0c122 | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | tst | xls_DisplayAlerts.tst | // ====================================================================
// Allan CORNET
// DIGITEO 2008 - 2010
// ====================================================================
// <-- CLI SHELL MODE -->
// ====================================================================
r = xls_NewExcel();
assert_checktrue(r);
r = xls_AddWorkbook();
assert_checktrue(r);
r = xls_SetWorksheet(1);
assert_checktrue(r);
r = xls_SetData('A1','Test DisplayAlerts');
assert_checktrue(r);
r = xls_DisplayAlerts(%f);
assert_checktrue(r);
r = xls_Close();
assert_checktrue(r);
r = xls_Quit();
assert_checktrue(r);
|
02db252753be5b99ef222429e225fec7218407d9 | efe59cd4cca137aba9af447e8040b1eac3738006 | /examples/varargs/exemplo_funcao_argumentos_saida_variavel.sce | 1c936edf8a65564bde81c6878aae661b49a74627 | [] | no_license | thejefecomp/scilab-codes | fd13f6aa666135c0fb08989e25b0ca1354c58b51 | 6eefce6eed8af0b54f2d6172f6e2b05513327184 | refs/heads/master | 2023-07-31T13:23:50.467306 | 2021-09-23T09:00:49 | 2021-09-23T12:04:06 | 287,115,880 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,047 | sce | exemplo_funcao_argumentos_saida_variavel.sce | // Este programa exemplifica o uso de argumentos de saída variável.
//Esta função implementa uma função de soma aritmética com argumentos de saída variáveis.
function varargout=soma(operando1,operando2)
varargout(1) = operando1 + operando2
/*
resultado = operando1 + operando2
varargout = list(resultado)
*/
endfunction
//Esta função implementa uma função de divisão aritmética com argumentos de saída variáveis.
function varargout=divisao(operando1,operando2)
//Poer convenção, o resultado é retornado na primeira posição.
varargout(1) = 0
if operando2 <> 0 then
varargout(1) = operando1 / operando2
else
//Por convenção, o código de erro (quando existe) é retornado na segunda posição.
varargout(2) = -1
end
endfunction
//Situação 1: invocar a função soma sem atribuição do resultado a uma variável.
mprintf('\n\nSituação 1: invocação sem atribuição - soma(2,3)\n\n')
soma(2,3)
//Situação 2: invocar a função soma com atribuição do resultado a uma variável.
mprintf('\n\nSituação 2: resultado=soma(2,3)\n\n')
resultado=soma(2,3)
mprintf('\n\nresultado=%f\n\n', resultado)
//Situação 3: invocar a função divisão somente a receber o resultado de uma divisão válida.
mprintf('\n\nSituação 3: resultado=divisao(2,3)\n\n')
resultado=divisao(2,3)
mprintf('\n\nresultado=%f\n\n', resultado)
/*
Situação 4: invocar a função divisão a receber o resultado e o código de erro em uma divisão válida, implica a situação de não atribuição do código de erro. Portanto, erro no número de argumentos de saída.
mprintf('\n\nSituação 4: [resultado,erro]=divisao(2,3)\n\n')
[resultado,erro]=divisao(2,3)
Remover o comentário da situação 4 para ver o erro associado.
*/
//Situação 5: invocar a função divisão a receber o resultado e o código de erro de uma divisão inválida (divisão por zero).
mprintf('\n\nSituação 5: [resultado,erro]=divisao(2,0)\n\n')
[resultado,erro]=divisao(2,0)
mprintf('\n\nresultado=%f, erro=%f\n\n', resultado,erro)
|
dadce45d3ddcac5d7a5181d537680fe92478ec3d | 51dafce62d23d24ff12da43eb29775cdd7aaf08e | /Metodo_Preditor_Corretor_4th_Ordem_Funcoes.sce | 47fb7d9a9e79e7b7c9c2fc6e644a31f020acf344 | [] | no_license | ThadeuJose/PreditorCorretor | f4550888a2918d5f33e3f093f2cac0d5c1af3c47 | bdf2213c1a02cc21c6270ef2f8c93f154ca8722f | refs/heads/master | 2021-01-16T18:19:27.761791 | 2014-12-09T23:55:52 | 2014-12-09T23:55:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 427 | sce | Metodo_Preditor_Corretor_4th_Ordem_Funcoes.sce | //Metodo Runge - Kutta de 4 ordem
function result = RK4(x,y,h,F_xy)
for i=1:(length(x)-1) // calculation loop
k_1 = F_xy(x(i),y(i));
k_2 = F_xy(x(i)+0.5*h,y(i)+0.5*h*k_1);
k_3 = F_xy((x(i)+0.5*h),(y(i)+0.5*h*k_2));
k_4 = F_xy((x(i)+h),(y(i)+k_3*h));
y(i+1) = y(i) + (1/6)*(k_1+2*k_2+2*k_3+k_4)*h; // main equation
end
result=y;
endfunction
|
a2e510b3ab283b25bfd9fc2723b822a442568eaf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2123/CH3/EX3.2/Exa_3_2.sce | 5485f69e8455173391b8b2073a57a10555cf6461 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | sce | Exa_3_2.sce | //Example No. 3.2
clc;
clear;
close;
format('v',8);
//Given Data :
n=0.1;//teeth ratio
ETAg=90/100;//efficiency
J0=0.4;//Kg-m^2
J1=10;//Kg-m^2
TL=50;//N-m
N=1400;//speed in rpm
//Solution :
J=J0+n^2*J1;//Kg-m^2
T=n*TL/ETAg;//N-m
MotorSpeed=2*%pi*N/60;//rad/sec
Pdev=MotorSpeed*T;//Watt
disp(J,"Equivalent Inertia in Kg-m^2 : ");
disp(T,"Load Torque refered to motor side in N-m : ");
disp(Pdev,"Power developed by motor in watt : ");
|
848c685663b3df82436ac7de778b4a4510865fc9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH4/EX3.6/EX3_6.sce | 6669cf6c91b8792d04c3cd60251acdcf77324032 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 305 | sce | EX3_6.sce | // Grob's Basic Electronics 11e
// Chapter No. 03
// Example No. 3_6
clc; clear;
// How much current is produced by 60 V across 12 kOhms?
// Given data
V = 60; // Voltage=60 Volts
R = 12*10^3; // Resistance=12k Ohms
I = V/R;
disp (I,'The Current I in Amps')
disp ('i.e 5 mAmps')
|
e794a194401c33f8a45e96ee2b673595901b6c4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /527/CH3/EX3.9/3_9exam.sce | 7587079a9d34b62118543a3e1a89d4d0aeea6469 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sce | 3_9exam.sce | //Engineering and Chemical Thermodynamics
//Example 3.9
//Page no:129
clear ; clc ;
//Given
P = 1 ; //[bar]
p_O2 = 0.5 ; //[bar]
p_N2 = 0.5 ; // [bar]
n_O2 = 1 ; //[mol]
n_N2 = 1 ; //[mol]
R = 8.314 ; // J/mol K
del_S_1_O2 = -n_O2 * R * log(p_O2 / P) ;
del_S_1_N2 = -n_N2 * R * log(p_N2 / P) ;
del_S_2 = 0 ; // As both O2 and N2 behave idealy
del_S = del_S_2 + del_S_1_O2 + del_S_1_N2 ;
disp(" Example: 3.9 Page no : 129") ;
printf("\n Entropy of mixing = %.2f J/K",del_S);
|
18b0d8d6500cae0ca2eca7dc1c8c569c00664e31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH17/EX17.7/Ex17_7.sce | ffe32aff4432cb1c1beec4a86bd85a87a161f610 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 756 | sce | Ex17_7.sce | // Example 17_7
clc;funcprot(0);
// Given data
m_m=0.0300;// kg
m_h=70.0;// kg
m_e=4000;// kg
// Calculation
Hr_m=241*(m_m^(-0.25));// Beats/min
Hr_h=241*(m_h^(-0.25));// Beats/min
Hr_e=241*(m_e^(-0.25));// Beats/min
Br_m=54*(m_m^(-0.25));// Beats/min
Br_h=54*(m_h^(-0.25));// Beats/min
Br_e=54*(m_e^(-0.25));// Beats/min
printf("\nThe heartbeat rates of the mouse, human, and elephant are\n(Heartbeat rate)_mouse=%3.0f Beats/min \n(Heartbeat rate)_house=%2.1f Beats/min \n(Heartbeat rate)_elephant=%2.1f Beats/min \nThe breathing rates of the mouse, human, and elephant are \n(Breathing rate)_mouse=%3.0f Breaths/min \n(Breathing rate)_human=%2.1f Breaths/min \n(Breathing rate)_elephant=%1.2f Breaths/min",Hr_m,Hr_h,Hr_e,Br_m,Br_h,Br_e);
|
edb1d59e0d7e31ff883d4a481aea97bc82ced5cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH10/EX10.2/ex10_2.sce | d77a90ea26b68be1971315e5243e08d9b77a7e0d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex10_2.sce | //Determine the gain of feedback amplifier in dB
clear;
clc;
//soltion
//given
Ad=60;//dB //internal gain in dB
A=10^(Ad/20); //internal gain
B=1/20;//feedback factor
Af=A/(1+A*B);
Afd=20*log10(Af);
printf("The gain of feedback amplifier %.2f dB",Afd);
|
23ca950fcbc3b0e968c2631f13c99b21f599a760 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH2/EX2.13/2_13.sci | 0856973e780a282cd11de7fe4befb38b8dfcae60 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sci | 2_13.sci | //calculating the sum of resistances connected in series with uncertainity of one unit
clc;
R1=72.3;
R2=2.73;
R3=0.612;
R=(R1+R2+R3);
disp(R,'sum of resistances(ohm) =');
disp('the resultant resistance is 75.6 ohm with 6 as first doutful figure') |
57d369443adb3a2aa17a39d49fa89a640394e8ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH5/EX5.10/EX_5_10.SCE | acfe305580eccd80a02ddb86586470ca43b41c05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 660 | sce | EX_5_10.SCE | // Example 5.9:3-db frequency and bandwidth
clc;
clear;
close;
Cp=1;//PARALLEL capacitance IN PICO FARAD
Cs=2;//series capacitance IN micro FARAD
rs=1;//series resistance in killo ohms
rp=2;//PARALLEL resistance in killo ohms
ts= ((rs+rp)*10^3*Cs*10^-6);//time constant
tp= ((rs*rp)/(rs+rp)*Cp*10^-12);//time constant
fl= (1/(2*%pi*ts));//lower frequency in hertz
fh= (1/(2*%pi*tp));//upper frequency in hertz
BW=fh-fl;//bandwidth in hertz
ts= (rs+rp)*10^3*Cs*10^-12;//time constant
disp(ts," time constant in second is")
disp(fl,"lower 3 dB frequency in hertz")
disp(fh,"upper 3 dB frequency in hertz")
disp(BW,"bandwidth in hertz is")
|
abdeef7b6becd16d3db4728e0332109c73fe707b | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH4/EX4.9/ex4_9.sce | 4f44dbd259287ccebca575cc3c2628fdc9c86c52 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 507 | sce | ex4_9.sce | //ex4.9
V_CC=10;
B_DC=200;
R_C=10^3;
V_IN=0;
V_CE=V_CC;
disp(V_CE,'when V_IN=0, transistor acts as open switch(cut-off) and collector emitter voltage in volts is')
//now when V_CE_sat is neglected
I_C_sat=V_CC/R_C;
I_B_min=I_C_sat/B_DC;
disp(I_B_min,'minimum value of base current in amperes to saturate transistor')
V_IN=5;
V_BE=0.7;
V_R_B=V_IN-V_BE; //voltage across base resiatance
R_B_max=V_R_B/I_B_min;
disp(R_B_max,'maximum value of base resistance in ohms when input voltage is 5V') |
32f6a72ba8d0d0934ac7705a2e5e1ee053867c32 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH8/EX8.1/8_1.sci | f7eb164f102679c8077347a42b702256efa9f41c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 451 | sci | 8_1.sci | clc();
clear;
//calculating temperatue when average thermal energy of an atom is equal to it's magnetic energy.
//The given condition is (mew*B)=3/2(kT)
mew=0.9*10^-23; //magnetic dipole moment
B=0.72; //magnetic field applied in T
k=1.38*10^-23;
T=(2*mew*B)/(3*k) //T=temperature in Kelvin
printf("The temperature at which the avg.thermal energy of an atom is equal to its magnetic energy is%f K",T); |
ddc534832d6163bd1c7ab79f6601463e5404fa42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH4/EX4.1/4_1.sce | 7f5c5d4f157b1435988f649b74afaba254ddece3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 277 | sce | 4_1.sce | clc
//initialisation of variables
d= 4 //in
p= 20 //percent
d1= 0.140
//CALCULATIONS
Gd= d-2*((100-20)*d1/100)
Gw= d1+2*(p*d1/100)
//RESULTS
printf ('Groove diameter = %.3f in',Gd)
printf (' \n Groove width = %.3f in',Gw)
printf (' \n outside diameter = %.f in',d)
|
88aef32ab05772eafd01687a8ad5c4008af3b45e | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/sos2cell/sos2cell3.sce | 72857b87dbc073a89b2beb68c37ad5b9478da114 | [] | 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 | 198 | sce | sos2cell3.sce | s =[0.2113249 0.0002211;0.7560439 0.3303271 ];
c=sos2cell(s);
disp(c);
//..output
// !--error 10000
//Invalid Entry
//at line 59 of function sos2cell called by :
//c=sos2cell(s);
//
|
f3ab7ffb5dcd00de54291da6b6b883f04bf1d6f8 | e208f5ba61d660fa360b30a22b8cf307f5fc17bb | /inverse-kinematics.sce | d8486bb98973073faf987f93bd5ea33fe7f47a8e | [] | no_license | f-frhs/PUMA | 2b234603fec1ab108cbe8e8fc37f873599c80e8c | e33dbebe89dcce5c2fdaeee7385aaaa483a3ac16 | refs/heads/master | 2021-01-17T08:15:32.214080 | 2016-07-01T13:57:17 | 2016-07-01T13:57:17 | 62,227,864 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,693 | sce | inverse-kinematics.sce | exec('utilities.sci', -1)
// 目標のハンド座標
px= 2
py= 1
pz=-1
function output = calc_theta123_from_hand_pos(px,py,pz)
// 計算結果のみを計算する。
// 計算式の導出は下記書籍を参照のこと
// ロボット工学の基礎
// 著者: 川崎 晴久
// ISBN: 978-4-627-91382-0
// pp.60-64
theta1(1) = atan(-px, py) - atan(+sqrt(px*px + py*py - d(2)*d(2)), d(2))
theta1(2) = atan(-px, py) - atan(-sqrt(px*px + py*py - d(2)*d(2)), d(2))
k = (...
px*px + py*py + pz*pz ...
- d(2)*d(2) - d(4)*d(4) - a(3)*a(3) - a(4)*a(4) ...
)/(2*a(3))
theta3(1) = atan(-d(4), a(4)) - atan(+sqrt(d(4)*d(4) + a(4)*a(4) - k*k), k)
theta3(2) = atan(-d(4), a(4)) - atan(-sqrt(d(4)*d(4) + a(4)*a(4) - k*k), k)
for t1 = list(theta1(1), theta1(2)) do
for t3 = list(theta3(1), theta3(2)) do
t2 = ...
atan(...
-pz*(a(4)*cos(t3) - d(4)*sin(t3) + a(3)) ...
-(px*cos(t1) + py*sin(t1)) * (a(4)*sin(t3) + d(4)*cos(t3))...
,...
-pz*(a(4)*sin(t3) + d(4)*cos(t3)) ...
+(px * cos(t1) + py * sin(t1)) * (a(4)*cos(t3) - d(4)*sin(t3) + a(3))...
)
output($+1,:) = [t1, t2, t3]
end
end
endfunction
function output = rotation_matrix_from_euler_angle(phi, theta, psi)
output = Rotz(phi) * Rotx(theta) * Rotz(psi)
endfunction
//disp(calc_theta123_from_hand_pos(px,py,pz)*180/%pi)
disp(rotation_matrix_from_euler_angle( 0, 0, 0))
disp(rotation_matrix_from_euler_angle(90, 0, 0))
|
ba6972cf1acef16c6c863409ac41a69645124b36 | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH2/EX2.43/ex2_43.sci | b8799a2ae31ec92563dd30397241c56988d968ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | ex2_43.sci | //Chapter 2,Example2.43,Pg 2.54
clc;
disp("Refer to the diagram shown in the question")
A=[7 -1;1 -6]
B=[10;0]
I=A\B
Vth=(3*I(2))-20
printf("\n Vth=%.2f V \n",Vth)
R1=[((6*1)/(6+1))+2]
Rth=R1*3/(R1+3)
printf("\n Rth=%.2f A \n",Rth)
Il=Vth/(Rth+10)
printf("\n The value of load current = %.2f A \n",Il)
|
9fb0708ec9cb8692a2650a10f7e97c90853e666b | 464ce6326e71577dfbaa32e2c881306849780844 | /macros/berawgn.sci | 2082010d9af880eeec791f9073574f0a2cfe1f12 | [] | no_license | tripathiaishwarya/itpp_module | 43bfd0fea477eb6c687dc7468c25140102096d72 | f701b8e0fe065dbdf55da14b821aa45a56499135 | refs/heads/master | 2021-01-10T21:54:18.914097 | 2015-07-06T10:19:02 | 2015-07-06T10:19:02 | 38,388,403 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 259 | sci | berawgn.sci | function [matrix] = berawgn(EbNo,scheme)
funcprot(0);
if (string(scheme) == "bpsk") then
[nr, nc]= size (EbNo)
matrix = zeros(1, nc);
for i = 1 : nc
var = sqrt(EbNo(1,i));
errorfunc = erfc(var);
matrix(1,i) = 1/2*errorfunc;
end
end
endfunction
|
1a3a766430d67ef6f394df7f132b798bc3b5b5e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH3/EX3.9/Ch03Exa9.sce | 3ef994ac5e27ab3fb0e8967c788ddd491114bec9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ch03Exa9.sce | // Scilab code Exa3.9 : : Page-125(2011)
clc; clear;
E_g = 2.19*1.6e-013; // Energy of the gamma rays, joule
m_e = 9.10939e-031; // Mass of the electron, Kg
C = 3e+08; // Velocity of light, m/s
E_max = [E_g/(1+(m_e*C^2)/(2*E_g))]/(1.6e-013); // Energy of the compton recoil electron, MeV
printf("\nThe energy of the compton recoil electrons = %5.3f MeV", E_max);
// Result
// The energy of the compton recoil electrons = 1.961 MeV
|
e18d3fbfa3d1de94bcd23abf73fe5ae5344d9640 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1026/CH9/EX9.1/Example9_1.sce | 6bc3b2e8196427a8cb0cf705ac43b296b461b43f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 502 | sce | Example9_1.sce | //chapter9,Example9_1,pg 237
d=4.255*10^-10
lam=1.549*10^-10//wavelength of K-copper line
n=1//theta is smallest when n=1
theta=asin(lam/(2*d))//glancing angle
theta=theta*(180/%pi)
//max value of sin(theta)=1
//for highest order
nmax=((2*d)/lam)//highest bragg's order
printf("smallest glancing angle\n")
printf("theta=%.2f deg.",theta)
printf("\nmaximum order of reflection\n")
printf("nmax=%.2f",nmax)
printf("\nsince fraction is meaningless for order nmax=5") |
287d830afc8558626d770239358bb80e74fc7079 | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/SparamToolBox/SparamToolbox/v1.0/x86/sci_gateway/builder_gateway.sce | 7beff7bc6291ba609493c184fa27eee70dec5c85 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 742 | sce | builder_gateway.sce | // ====================================================================
// Allan CORNET
// Simon LIPP
// INRIA 2008
// This file is released into the public domain
// ====================================================================
sci_gateway_dir = get_absolute_file_path('builder_gateway.sce');
tbx_builder_gateway_lang('c', sci_gateway_dir);
// LCC does not manage C++
if ~with_lcc() then
tbx_builder_gateway_lang('cpp', sci_gateway_dir);
languages = ['c', 'fortran','cpp'];
else
languages = ['c', 'fortran'];
end
tbx_build_gateway_loader(languages, sci_gateway_dir);
tbx_build_gateway_clean(languages, sci_gateway_dir);
clear tbx_builder_gateway_lang tbx_build_gateway_loader;
clear sci_gateway_dir;
|
32a8d48cd174759b12c580c69ada2aca3ea31853 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2762/CH3/EX3.3.3/3_3_3.sce | 6106624c69928aec266d9e17c5b93f8f32231c76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 490 | sce | 3_3_3.sce | //Transport Processes and Seperation Process Principles
//Chapter 3
//Example 3.3-3
//Principles of Momentum Transfer and Applications
//given data
p1=137.9*1000;
p2=551.6*1000;
T1=26.7+273.2;
mmol=7.56/1000;
M=16;
mdot=mmol*M;
gam=1.31;
R=8314.3;
nWs1=(gam/(gam-1))*(R*T1/M)*((p2/p1)^((gam-1)/gam)-1);
n=80/100;
bkW1=(nWs1*mdot)/(n*1000);
mprintf("i) brake power= %f kW",bkW1)
nWs2=(R*T1/M)*log(p2/p1);
bkW2=(nWs2*mdot)/(n*1000);
mprintf("ii) brake power= %f kW",bkW2)
|
c05ffcd583a3a2ae3f3f4c61933012a646192a37 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.2/Unix/scilab-2.2/macros/percent/%sar.sci | 1867a592411c674a1fbf1498614e13536f2e062c | [
"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 | 170 | sci | %sar.sci | function [f]=%sar(m,f)
// f=%sar(m,f) <=> f= m+f
//!
[p,q]=size(m);
if p+q=-2 then m=m*eye(f(3)); end;
if p*q==1 then f(2)=f(2)+m*f(3);return;end
f(2)=f(2)+m.*f(3);
|
9ea027ae5e9165d2d8e4ad005c35775943fa4766 | fdffabe522d631a0964c00b5566713df90e84b8d | /Electrical Machines 2 (EE258)/Lab 2/labtask2.sci | bc4b3a04f702700722eebd5d560930935aa5e3fc | [] | no_license | mnaveenkumar2009/Electrical-and-Electronics-Engineering | aacf3ee8468ea46627162f3f939f257ba55577e1 | 874bcefc328ebe0793bcb8a4792611b26a2539a6 | refs/heads/master | 2021-07-12T10:59:32.859028 | 2020-07-06T16:40:33 | 2020-07-06T16:40:33 | 129,063,058 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sci | labtask2.sci | exec('labtask2_1.sci',-1);
exec('labtask2_2.sci',-1);
exec('labtask2_3.sci',-1);
exec('RMS.sci',-1);
exec('labtask2_4.sci',-1);
exec('labtask2_5.sci',-1);
exec('labtask2_6.sci',-1); |
cc8a804dac7b90f0cbc63d66e5324f66e3bac2a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH46/EX46.2/Ex46_2.sce | aa0e051f20362be2cc7e67ae264d3e735937f8f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 504 | sce | Ex46_2.sce |
//To Calculate the Binding Energy of an Alpha Particle
//Example 46.2
clear;
clc;
u=931;//1 Atomic Mass Unit in MeV/c^2
mH=1.007825*u;//Mass of Hydrogen atom in MeV/c^2
mn=1.008665*u;//Mass of Neutron in MeV/c^2
mHe=4.00260*u;//Mass of Helium atom in MeV/c^2
np=2;//Number of protons in Alpha Particle
nn=2;//Number of Neutrons in Alpha Particle
B=(np*mH+nn*mn-mHe);//Binding Energy of an Alpha Particle in MeV
printf("Binding energy of an Alpha particle = %.1f MeV",B);
|
6f654945ddefa76d8a78453610171509da1278dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2342/CH2/EX2.1/EX2_1.sce | 9cbfda2bce840671a9f7ae840b3ba7dd40cfdce1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sce | EX2_1.sce | // Exa 2.1
format('v',7)
clc;
clear;
close;
// Given data
lembda = 11000;// in Å
lembda = lembda * 10^-10;// in m
h = 6.625*10^-34;// Planck constant
c = 3*10^8;//speed of light in m/s
e = 1.6*10^-19;//charge of electron in C
// Energy of the incident photon should at least be, h*v= Eg, so
E_g = (h*c)/(lembda*e);// in eV
disp(E_g,"The energy gap in eV is");
|
7b63fe2f9b40f836401a2da3b1581dfdef550756 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH3/EX3.7/ex_3_7.sce | 50d8a9fb2941f9e9be0b4f53d822618aa03f0eab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | ex_3_7.sce | //Example 3.7 // Amount of optical rotation
clc;
clear;
//given data :
Ur=1.55810;// refractive index for right handed polarized
Ul=1.55821;//refractive index for left handed polarized
w=4D-7;//wavelength of light used in m
d=.002;// thickness of plate in m
R=%pi*d*(Ul-Ur)/w;// rotation in radian
R=R*180/%pi;// to convert in degree
disp(R,"Amount of optical rotation in degree")
// in book it is wrongly calculated
|
a9235fd3ad7fb51d2d58833d91b996bff5aedc68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH4/EX4.4/4_4.sce | a11c22f12ef5800755257678ebffe3098ff2dae0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | 4_4.sce | //ques-4.4
//Calculating BOD of sample
clc
o1=920;//Initial dissolved oxygen (in ppm)
o2=260;//Final dissolved oxygen (in ppm)
v1=100;//Waste water (in mL)
v2=100;//Distilled water (in mL)
ans=(o1-o2)*((v1+v2)/v1);//BOD
printf("BOD of given sample is %d ppm.",ans);
|
4209d73f81098789987aa3031307795e10550d2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH11/EX11.30/example30.sce | 7d4046ac331a7b2c4cb9808e7f76490f960afec2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 472 | sce | example30.sce | //Chapter-11 example 30
//=============================================================================
clc;
clear;
//input data
PW = 1*10^-6;//transmitted pulse width in sec
Vo = 3*10^8;//velocity of EM wave in m/s
//Calculations
RR = (Vo*PW)/2;
//output
mprintf('Range Resolution is %g m\n',RR);
mprintf(' As the targets are separated by 100m it is possible to resolve');
//===============end of program================================================
|
b4fb32dc433e111199cd350290f03a67257c6ff4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH14/EX14.5/Chapter14_Example5.sce | 8769cf67f8df23286fcea56ae7f142a77736bf54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 642 | sce | Chapter14_Example5.sce | //Chapter-14, Example 14.5, Page 585
//=============================================================================
clc
clear
//INPUT DATA
T=25;//Temperature of air in degree C
v=3;//Velocity im m/s
D=0.01;//Diameter of tube in m
L=1;//Length of tube in m
//CALCULATIONS
v1=(15.7*10^-6);//Kinematic viscosity in m^2/s
DAB=(0.62*10^-5)//DAB value in m^2/s
Re=(v*D)/v1;//Reynolds number
Sh=3.66;//Schmidt number
h=(Sh*DAB)/D;//Average mass transfer coefficient in m/s
//OUTPUT
mprintf('Average mass transfer coefficient is %3.5f m/s',h)
//=================================END OF PROGRAM==============================
|
e48ad614d2613915f55b165ea86d96e9f39430d1 | a195e307602bacc3397b8f74a3b9b4cbd7a3b752 | /trajectory_generator/scilab/math.sce | 8fb5c0425af44b06ea03621bf8035d8b15b3c3a0 | [
"BSD-3-Clause"
] | permissive | Robator/red_manipulation_step | eb0026e92b9eef7ba1bbf9bd2bc9730be7a45f02 | 7f8d82c47a97a1ae641fbfee64efa09c23f56853 | refs/heads/master | 2021-01-01T18:30:54.118019 | 2018-03-11T08:25:11 | 2018-03-11T08:25:11 | 98,350,282 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | math.sce | // ** Additional **
function R = Rz(psi)
R = [
cos(psi), sin(psi), 0;
-sin(psi), cos(psi), 0;
0, 0, 1;
];
endfunction
function R = Ry(theta)
R = [
cos(theta), 0, -sin(theta);
0, 1, 0;
sin(theta), 0, cos(theta);
];
endfunction
function v_n = normalize(v)
v_n = v/norm(v);
endfunction
|
41b86f6fdfe1d90ad9dbf401919b20a9a0bdc13a | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.10_14.tst | 91622c4d0eb015c053734ad515f3d6c673772d5a | [] | 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 | 257,614 | tst | 5.10_14.tst | 10 1311:1 2146:1 2289:1 2323:1 4673:1 4884:1 5437:18 6292:1 6351:1 6737:1 6816:1 6845:1 7526:1 8820:1 9060:1 9216:1 10718:1 10744:1 11191:1 11297:1 11940:1 12155:1 12501:1 14707:1 14817:1 15224:1 16639:1 17440:1 17507:1 17580:1 18249:1 18282:1 19574:1 19996:1
10 10:1 1311:1 1386:1 1573:1 2146:1 2201:1 2289:1 2323:2 2339:1 2593:1 2764:1 2982:1 3102:1 4382:1 4505:1 4636:1 4673:2 4884:1 5203:1 5316:1 5437:79 5468:1 6292:1 6351:1 6598:1 6635:1 6648:1 6734:1 6737:1 6816:1 6845:1 7526:1 7854:1 8056:1 8176:1 8820:1 9060:1 9186:1 9216:1 9533:1 9855:1 10466:1 10718:1 10744:1 11004:1 11181:1 11191:2 11208:1 11297:1 11940:1 12155:1 12501:1 13525:1 13781:1 13962:1 14067:1 14107:1 14350:1 14458:1 14707:1 14817:1 15187:1 15224:1 15388:1 15507:1 16147:1 16639:1 16700:1 17196:1 17271:1 17440:1 17507:1 17580:1 18249:1 18282:1 18631:1 18745:1 18750:1 18966:1 19132:1 19385:1 19560:1 19574:2 19689:1 19996:1 20143:1
10 10:1 170:1 935:1 1311:1 1386:1 1573:1 1960:1 2100:1 2146:1 2201:1 2289:1 2323:2 2339:1 2593:1 2764:1 2824:1 2982:1 3102:1 4003:1 4059:1 4382:1 4505:1 4636:1 4673:2 4884:1 5203:1 5243:1 5316:1 5437:109 5468:1 5525:1 5655:1 6292:1 6326:1 6351:1 6598:1 6635:1 6648:1 6734:1 6737:1 6816:1 6845:1 7103:1 7392:1 7479:1 7526:1 7589:1 7854:1 8056:1 8176:1 8671:1 8712:1 8810:1 8820:1 9060:1 9186:1 9216:1 9533:1 9558:1 9855:1 9960:1 10466:1 10682:1 10718:1 10744:1 11002:1 11004:1 11181:1 11191:2 11208:1 11297:1 11388:1 11940:1 11962:1 11967:1 12155:1 12196:1 12501:1 12531:1 12974:1 12987:1 13435:1 13525:1 13781:1 13919:1 13962:1 14067:1 14107:1 14289:1 14350:1 14458:1 14594:1 14707:1 14817:1 15187:1 15224:1 15388:1 15507:1 15666:1 15746:1 16147:1 16500:1 16639:1 16700:1 16967:1 17125:1 17196:1 17271:1 17440:1 17507:1 17567:1 17580:1 18249:1 18282:1 18554:1 18631:1 18697:1 18745:1 18750:1 18966:1 19013:1 19132:1 19385:1 19560:1 19574:2 19689:1 19996:1 20143:1
10 10:1 170:1 935:1 1311:1 1386:1 1573:1 1960:1 2100:1 2146:1 2201:1 2289:1 2323:2 2339:1 2593:1 2764:1 2824:1 2982:1 3102:1 3135:1 3624:1 4003:1 4059:1 4382:1 4505:1 4636:1 4673:2 4884:1 5203:1 5243:1 5316:1 5437:121 5468:1 5525:1 5655:1 6292:1 6326:1 6351:1 6458:1 6598:1 6635:1 6648:1 6734:1 6737:1 6816:1 6845:1 7103:1 7392:1 7479:1 7526:1 7589:1 7854:1 8056:1 8176:1 8671:1 8712:1 8810:1 8820:1 9060:1 9186:1 9216:1 9396:1 9533:1 9558:1 9855:1 9960:1 10084:1 10466:1 10682:1 10718:1 10744:1 10812:1 11002:1 11004:1 11181:1 11191:2 11208:1 11297:1 11388:1 11940:1 11962:1 11967:1 12155:1 12196:1 12501:1 12531:1 12974:1 12987:1 13254:1 13435:1 13525:1 13709:1 13781:1 13919:1 13962:1 14067:1 14107:1 14289:1 14350:1 14458:1 14594:1 14707:1 14817:1 15187:1 15224:1 15388:1 15507:1 15666:1 15746:1 16147:1 16500:1 16639:1 16700:1 16967:1 17125:1 17196:1 17271:1 17440:1 17507:1 17567:1 17580:1 18249:1 18282:1 18554:1 18631:1 18697:1 18745:1 18750:1 18760:1 18966:1 19013:1 19132:1 19140:1 19385:1 19560:1 19574:2 19689:1 19996:1 20143:1
10 10:1 170:1 775:1 935:1 1311:1 1386:1 1573:1 1653:1 1960:1 2100:1 2146:1 2201:1 2258:1 2289:1 2323:2 2339:1 2593:1 2764:1 2824:1 2982:2 3102:1 3135:1 3624:1 4003:1 4059:1 4341:1 4382:1 4505:1 4636:1 4673:2 4884:1 5030:1 5203:1 5243:1 5316:1 5367:1 5437:124 5468:1 5525:1 5655:1 5818:1 6292:1 6326:1 6351:1 6399:1 6458:1 6598:1 6635:1 6648:1 6734:1 6737:1 6816:1 6845:1 7103:1 7392:1 7479:1 7494:1 7526:1 7589:1 7854:1 8056:1 8176:1 8671:1 8712:1 8769:1 8810:1 8820:1 9060:1 9186:1 9216:1 9396:1 9533:1 9558:1 9855:1 9960:1 10084:1 10110:1 10466:1 10682:1 10718:1 10744:1 10812:1 11002:1 11004:1 11174:1 11181:1 11191:2 11208:1 11297:1 11388:1 11940:1 11962:1 11967:1 12155:1 12196:1 12501:1 12531:1 12974:1 12987:1 13254:1 13435:1 13525:1 13709:1 13781:1 13919:1 13962:1 14067:1 14107:1 14289:1 14350:1 14458:1 14594:1 14707:1 14817:1 15087:1 15187:1 15224:1 15388:1 15507:1 15666:1 15746:1 16147:1 16500:1 16639:1 16700:1 16967:1 17125:1 17196:1 17271:1 17440:1 17507:1 17567:1 17580:2 18249:1 18282:1 18554:1 18631:1 18697:1 18745:1 18750:1 18760:1 18796:1 18966:1 19013:1 19132:1 19140:1 19385:1 19560:1 19574:2 19689:1 19996:1 20143:1
10 10:1 170:1 775:1 935:1 1311:1 1386:1 1573:1 1653:1 1960:1 2100:1 2146:1 2201:1 2258:2 2289:1 2323:2 2339:1 2593:1 2609:1 2764:1 2824:1 2982:2 3102:1 3135:1 3624:1 4003:1 4059:2 4277:1 4341:1 4382:1 4505:1 4636:1 4673:2 4884:1 5015:1 5030:1 5058:1 5203:1 5243:1 5316:1 5367:1 5437:167 5468:1 5525:1 5655:1 5818:1 6292:1 6326:1 6351:1 6399:2 6458:1 6598:1 6635:1 6648:1 6694:1 6734:1 6737:1 6816:1 6845:1 7103:1 7185:1 7392:1 7479:1 7494:1 7526:1 7589:1 7854:1 8056:1 8176:1 8671:1 8712:1 8769:1 8810:1 8820:1 8929:1 9060:1 9186:1 9216:1 9396:1 9533:1 9558:1 9578:1 9855:1 9960:1 10084:1 10110:1 10466:1 10682:1 10718:1 10744:1 10812:1 11002:1 11004:1 11174:1 11181:1 11191:2 11208:1 11297:1 11388:1 11940:1 11962:1 11967:1 12155:1 12196:2 12501:1 12531:1 12974:2 12987:1 13254:1 13435:1 13525:1 13709:1 13781:1 13914:1 13919:1 13962:1 13973:1 13974:1 14067:1 14107:1 14289:1 14350:1 14458:1 14594:1 14707:1 14817:1 15087:2 15187:1 15224:1 15388:1 15507:1 15637:1 15666:2 15746:1 16147:1 16500:1 16639:1 16700:1 16967:1 17125:1 17196:1 17271:1 17440:1 17507:1 17567:1 17580:3 18249:1 18282:1 18298:1 18554:1 18631:1 18697:1 18745:1 18750:1 18760:1 18796:1 18966:1 19013:1 19132:1 19140:1 19385:1 19560:1 19574:2 19689:1 19996:1 20143:1
10 10:1 170:1 417:1 775:1 841:1 935:1 1311:1 1386:1 1419:1 1573:1 1653:1 1960:1 2100:1 2146:1 2149:1 2201:1 2258:2 2289:1 2323:2 2339:1 2413:1 2593:1 2609:1 2764:1 2824:1 2982:2 3102:1 3135:1 3317:1 3624:1 4003:1 4059:3 4277:1 4341:1 4382:1 4505:1 4636:1 4673:2 4884:1 4959:1 5015:1 5030:1 5032:1 5058:1 5203:1 5243:1 5316:1 5367:1 5408:1 5437:191 5468:1 5525:1 5655:1 5818:1 5945:1 6292:1 6326:2 6351:1 6399:3 6458:1 6598:1 6635:1 6648:1 6694:1 6725:1 6734:1 6737:1 6816:1 6845:1 7103:1 7185:1 7392:1 7479:1 7494:1 7526:1 7582:1 7589:1 7854:1 8056:1 8064:1 8176:1 8671:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 9029:1 9060:1 9186:1 9216:1 9396:1 9411:1 9533:1 9558:1 9578:1 9696:1 9715:1 9855:1 9960:2 10084:1 10110:1 10150:1 10377:1 10382:1 10390:1 10466:1 10682:1 10718:1 10743:1 10744:1 10786:1 10812:1 10841:1 11002:1 11004:1 11174:1 11181:1 11191:2 11208:1 11297:1 11347:1 11388:1 11940:1 11962:1 11967:1 12155:1 12196:2 12501:1 12521:1 12531:2 12858:1 12974:2 12987:1 13254:1 13435:1 13502:1 13525:1 13709:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:1 14067:1 14107:1 14140:1 14289:1 14350:1 14458:1 14594:1 14677:1 14707:1 14817:1 15087:2 15187:1 15224:1 15263:1 15272:1 15388:1 15507:1 15573:1 15637:1 15666:2 15746:1 15811:1 16147:1 16180:1 16500:1 16639:1 16700:1 16967:1 17125:1 17145:1 17147:1 17196:1 17271:1 17440:1 17507:1 17567:2 17580:3 17588:1 17628:1 17743:1 18124:1 18249:1 18282:1 18298:1 18403:1 18554:2 18631:1 18636:1 18697:2 18745:1 18750:1 18760:1 18796:1 18966:1 19013:1 19132:1 19140:1 19142:1 19373:1 19385:1 19560:1 19574:2 19689:1 19996:1 20143:1
10 10:2 91:1 170:1 417:1 775:1 841:1 935:1 966:1 1311:1 1386:1 1419:1 1573:1 1653:1 1960:1 2100:1 2146:1 2149:1 2201:1 2246:1 2258:2 2289:1 2323:3 2339:1 2413:1 2593:1 2609:1 2764:2 2824:1 2982:2 3102:1 3135:1 3317:1 3624:1 4003:1 4059:3 4277:1 4341:1 4382:1 4505:1 4636:1 4673:3 4884:1 4959:1 5015:1 5030:1 5032:1 5058:1 5203:1 5243:1 5316:1 5367:1 5408:1 5437:219 5468:1 5491:1 5525:1 5655:1 5818:1 5945:1 6292:1 6326:2 6351:1 6399:3 6458:1 6598:1 6635:1 6648:1 6694:1 6725:1 6734:1 6737:1 6816:1 6845:1 7103:1 7185:1 7392:1 7479:1 7494:1 7526:1 7582:1 7589:1 7854:1 8056:1 8064:1 8176:1 8432:1 8671:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 9029:1 9060:1 9186:1 9216:1 9396:1 9411:1 9475:1 9533:1 9558:1 9578:1 9696:1 9715:1 9855:2 9960:2 10084:1 10110:1 10150:1 10377:1 10382:1 10390:1 10466:1 10682:1 10718:1 10743:1 10744:1 10786:1 10812:1 10841:1 11002:1 11004:1 11174:1 11181:2 11191:3 11208:1 11297:1 11347:1 11388:1 11940:1 11962:1 11967:1 12155:1 12196:2 12289:1 12501:1 12521:1 12531:2 12858:1 12890:1 12974:2 12987:1 13254:1 13435:1 13502:1 13525:1 13709:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:1 14067:1 14107:1 14140:1 14289:1 14350:1 14458:1 14594:1 14677:1 14707:1 14817:1 15087:2 15187:1 15224:1 15263:1 15272:1 15388:1 15507:1 15573:1 15637:1 15666:2 15746:1 15811:1 16147:1 16180:1 16500:1 16536:1 16639:1 16700:1 16889:1 16967:1 17125:1 17145:1 17147:1 17196:1 17271:1 17440:1 17507:1 17567:2 17580:3 17588:1 17628:1 17743:1 18124:1 18249:1 18282:1 18298:1 18403:1 18554:2 18631:1 18636:1 18697:2 18745:1 18750:1 18760:1 18796:1 18966:1 19013:1 19132:1 19140:1 19142:1 19373:1 19385:1 19560:1 19574:3 19689:1 19996:1 20143:2
10 10:2 91:1 170:1 357:1 417:1 426:1 478:1 775:1 841:1 935:1 966:1 1223:1 1282:1 1311:1 1344:1 1386:1 1419:1 1444:1 1573:1 1653:1 1835:1 1960:1 2100:1 2146:1 2149:1 2201:1 2246:1 2258:2 2289:1 2323:3 2339:1 2413:1 2593:1 2609:1 2764:2 2824:1 2982:2 3102:1 3135:1 3202:1 3317:1 3624:1 4003:1 4059:3 4277:1 4341:1 4382:1 4421:1 4505:1 4636:1 4673:3 4686:1 4884:1 4940:1 4959:1 5015:1 5030:1 5032:1 5058:1 5203:1 5243:1 5316:1 5367:1 5408:1 5437:233 5468:1 5491:1 5525:1 5655:1 5818:1 5945:1 6198:1 6257:1 6292:1 6326:2 6351:1 6399:3 6458:1 6528:1 6598:1 6604:1 6635:1 6648:1 6694:1 6725:1 6734:1 6737:1 6816:1 6845:1 7103:1 7185:1 7254:1 7392:1 7479:1 7494:1 7526:1 7582:1 7589:1 7845:1 7854:1 8056:1 8064:1 8176:1 8432:1 8671:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8950:1 9029:1 9060:1 9186:1 9216:1 9338:1 9396:1 9411:1 9475:1 9533:1 9558:1 9578:1 9696:1 9715:1 9855:2 9960:2 10084:1 10110:1 10138:1 10150:1 10377:1 10382:1 10390:1 10466:1 10682:1 10718:1 10737:1 10743:1 10744:1 10786:1 10812:1 10841:1 11002:1 11004:1 11174:1 11181:2 11191:3 11208:1 11297:1 11347:1 11388:1 11772:1 11940:1 11962:1 11967:1 11993:1 12155:1 12196:2 12289:1 12501:1 12521:1 12531:2 12858:1 12890:1 12974:2 12987:1 13234:1 13254:1 13326:1 13435:1 13502:1 13525:1 13709:1 13713:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:1 14067:1 14107:1 14140:1 14289:1 14350:1 14458:1 14590:1 14594:1 14677:1 14707:1 14817:1 15087:2 15089:1 15187:1 15224:1 15263:1 15272:1 15388:1 15507:1 15573:1 15637:1 15666:2 15710:1 15746:1 15811:1 16019:1 16147:1 16180:1 16500:1 16536:1 16639:1 16700:1 16889:1 16967:1 17111:1 17125:1 17145:1 17147:1 17196:1 17271:1 17306:1 17359:1 17440:1 17482:1 17507:1 17567:2 17580:3 17588:1 17628:1 17743:1 17833:1 18075:1 18124:1 18249:1 18282:1 18298:1 18403:1 18442:1 18554:2 18631:1 18636:1 18645:1 18697:2 18745:1 18750:1 18760:1 18796:1 18966:1 19013:1 19132:1 19140:1 19142:1 19373:1 19385:1 19560:1 19574:3 19689:1 19827:1 19860:1 19996:1 20143:2
10 10:2 12:1 32:1 91:1 170:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 935:1 966:1 1081:1 1167:1 1223:1 1240:1 1282:1 1311:1 1315:2 1344:1 1356:1 1386:1 1395:1 1419:1 1442:1 1444:1 1445:1 1492:1 1573:1 1653:1 1835:1 1960:1 2003:1 2100:1 2146:1 2149:1 2201:1 2246:1 2251:1 2258:2 2289:1 2323:3 2339:1 2413:1 2417:1 2427:1 2509:1 2593:2 2609:1 2764:2 2824:1 2982:2 3063:1 3102:1 3135:1 3146:2 3202:1 3317:2 3329:1 3450:1 3504:1 3624:1 3765:2 3910:1 4003:1 4059:3 4071:1 4078:1 4277:1 4341:1 4382:1 4409:1 4421:1 4437:1 4505:1 4636:1 4673:3 4686:1 4827:2 4884:1 4940:1 4959:1 5015:1 5030:1 5032:1 5058:1 5132:1 5203:1 5243:1 5264:1 5316:1 5367:1 5408:1 5437:271 5468:1 5491:1 5525:1 5655:1 5762:1 5775:1 5818:1 5856:1 5945:2 5964:1 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6420:1 6458:1 6528:1 6598:1 6604:1 6635:1 6648:1 6675:1 6694:1 6725:1 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 7051:1 7080:1 7103:1 7185:1 7254:1 7268:1 7392:2 7479:1 7494:1 7526:1 7582:1 7589:1 7740:1 7845:1 7854:1 7919:1 8056:1 8064:2 8176:1 8332:1 8369:1 8432:1 8671:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8950:1 9011:1 9029:2 9060:1 9124:1 9186:1 9216:1 9338:1 9396:1 9411:2 9475:1 9533:2 9558:1 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9960:2 9995:1 10084:1 10110:1 10138:1 10150:1 10160:1 10377:2 10382:1 10390:1 10391:2 10466:1 10611:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:1 10786:2 10796:1 10812:4 10841:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11191:3 11208:1 11297:1 11301:1 11321:1 11347:1 11388:1 11518:1 11560:1 11772:1 11940:1 11962:1 11963:1 11967:1 11993:1 12137:1 12155:1 12196:2 12289:1 12501:1 12521:1 12531:2 12581:1 12806:1 12858:1 12890:1 12974:2 12987:1 13069:1 13234:1 13254:1 13326:1 13430:1 13435:1 13450:1 13502:1 13525:1 13709:1 13713:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:1 14002:1 14067:1 14107:1 14140:1 14184:1 14248:1 14289:1 14350:1 14458:1 14519:2 14525:1 14588:1 14590:1 14594:1 14677:2 14707:1 14817:1 14872:1 14941:1 15087:2 15089:1 15184:1 15187:1 15224:1 15263:1 15272:1 15388:1 15498:1 15507:1 15573:1 15637:1 15666:2 15710:1 15746:1 15811:1 15986:1 15996:1 16019:1 16065:1 16147:1 16177:1 16180:1 16358:1 16500:1 16536:1 16639:1 16693:1 16700:1 16857:1 16889:1 16967:1 17105:1 17111:1 17125:1 17145:2 17147:1 17196:1 17271:1 17306:1 17359:1 17408:1 17440:3 17482:1 17507:1 17517:1 17567:2 17580:3 17588:1 17628:1 17743:1 17796:1 17833:1 17837:1 17912:1 18075:1 18124:1 18249:1 18282:1 18298:1 18392:1 18403:1 18442:1 18450:1 18554:2 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18750:1 18760:1 18764:1 18796:1 18804:1 18863:1 18941:1 18966:1 19013:1 19032:1 19132:1 19140:1 19142:1 19313:1 19373:1 19385:1 19488:1 19560:1 19574:3 19606:1 19689:1 19827:1 19860:1 19878:1 19914:1 19996:1 20059:1 20086:1 20143:2 20150:1 20279:1 20330:1
10 10:3 12:1 32:1 91:1 143:1 170:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 935:1 950:1 966:1 1081:1 1167:1 1223:1 1240:1 1282:1 1311:1 1315:2 1344:1 1356:1 1386:1 1395:1 1419:1 1442:1 1444:1 1445:1 1492:1 1573:1 1653:1 1835:1 1960:1 2003:1 2100:1 2146:1 2149:1 2201:1 2246:1 2251:1 2258:2 2289:1 2323:4 2339:1 2413:1 2417:1 2427:1 2509:1 2593:2 2609:1 2764:2 2824:1 2982:2 3063:1 3102:1 3135:1 3146:2 3168:1 3202:1 3317:2 3329:1 3410:1 3450:1 3504:1 3624:1 3765:2 3910:1 4003:1 4059:3 4071:2 4078:1 4184:1 4277:1 4341:1 4382:1 4409:1 4421:1 4437:1 4505:1 4506:1 4636:1 4673:4 4686:1 4755:1 4827:2 4884:1 4940:1 4959:1 5015:1 5030:1 5032:1 5058:1 5132:1 5203:1 5243:1 5264:1 5316:1 5367:1 5408:1 5437:308 5468:1 5491:1 5525:1 5655:1 5762:1 5775:1 5818:1 5856:1 5945:2 5964:1 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6420:1 6458:1 6518:1 6528:1 6598:2 6604:1 6635:1 6648:1 6675:1 6694:1 6725:1 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 6936:1 7051:1 7080:1 7103:1 7185:1 7254:1 7268:1 7392:2 7479:1 7494:1 7526:1 7582:1 7589:1 7740:1 7845:1 7854:1 7919:1 8039:1 8056:1 8064:2 8176:1 8332:1 8369:1 8432:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8950:1 9011:1 9029:3 9060:1 9124:1 9186:1 9216:1 9338:1 9396:1 9411:2 9475:1 9533:2 9558:1 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9960:2 9995:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10377:2 10382:1 10390:1 10391:2 10466:1 10611:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:1 10786:2 10796:1 10812:4 10841:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11191:4 11208:1 11297:1 11301:1 11321:1 11347:1 11388:1 11518:1 11560:1 11772:1 11940:1 11962:1 11963:1 11967:1 11993:1 12137:1 12155:1 12196:2 12289:1 12501:1 12521:1 12531:2 12581:1 12713:1 12722:1 12806:1 12858:1 12890:1 12974:2 12987:1 13069:1 13234:1 13254:1 13326:1 13345:1 13427:1 13430:1 13435:1 13450:1 13502:1 13525:1 13709:1 13713:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:1 14002:1 14067:1 14083:1 14107:1 14140:1 14184:1 14248:1 14289:1 14350:1 14458:1 14519:2 14525:1 14588:1 14590:1 14594:1 14677:2 14707:1 14817:1 14872:1 14941:1 15087:2 15089:1 15184:1 15187:1 15224:1 15263:1 15272:1 15388:1 15498:1 15507:2 15573:1 15637:1 15666:2 15710:1 15746:1 15811:1 15986:1 15996:1 16019:1 16065:1 16147:1 16177:1 16180:1 16358:1 16500:1 16536:1 16639:1 16693:1 16700:1 16710:1 16857:1 16889:1 16966:1 16967:1 17105:1 17111:1 17125:1 17145:2 17147:1 17196:1 17271:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17507:1 17517:1 17567:2 17580:3 17588:1 17628:1 17743:1 17796:1 17833:1 17837:1 17912:1 18075:1 18124:1 18249:1 18282:1 18298:1 18348:1 18392:1 18403:1 18442:1 18450:1 18554:2 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18760:1 18764:1 18796:1 18804:1 18863:1 18941:1 18966:2 19013:1 19032:1 19132:1 19140:1 19142:1 19313:1 19373:1 19385:1 19468:1 19488:1 19560:1 19574:4 19606:1 19689:1 19771:1 19827:1 19860:1 19878:1 19914:1 19996:1 20059:1 20086:1 20143:2 20150:1 20234:1 20279:1 20330:1
10 10:3 12:1 32:1 91:1 143:1 170:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 935:1 950:1 966:1 1081:1 1112:1 1124:1 1167:1 1223:1 1236:2 1240:1 1244:1 1282:1 1311:1 1315:2 1344:1 1356:1 1386:1 1395:1 1419:1 1442:1 1444:1 1445:1 1492:1 1540:1 1573:1 1574:1 1653:1 1824:1 1835:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:1 2136:1 2146:1 2149:1 2201:1 2246:1 2251:1 2258:2 2289:2 2323:4 2334:1 2339:1 2413:1 2417:1 2427:1 2509:1 2531:1 2537:1 2589:1 2593:2 2609:1 2700:1 2764:2 2824:1 2982:3 2990:1 3059:1 3063:1 3102:1 3135:1 3146:2 3168:1 3202:1 3317:3 3329:1 3410:1 3450:1 3504:1 3624:1 3765:2 3879:1 3910:1 4003:1 4059:3 4071:2 4078:1 4164:1 4167:1 4184:1 4277:1 4341:1 4382:1 4409:1 4411:1 4421:1 4437:1 4505:1 4506:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5203:1 5243:1 5264:1 5316:1 5367:1 5408:1 5437:335 5468:1 5491:1 5525:2 5655:1 5718:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5940:1 5945:4 5964:1 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:1 6458:1 6518:1 6528:1 6598:2 6604:1 6635:1 6648:1 6675:1 6694:2 6725:2 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7254:1 7268:1 7392:2 7479:1 7494:1 7526:1 7582:1 7589:1 7740:1 7845:1 7854:1 7898:1 7919:1 7928:1 8039:1 8056:1 8064:4 8176:1 8332:2 8369:1 8432:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8950:1 9011:1 9029:5 9060:1 9124:1 9186:1 9216:1 9338:1 9396:1 9411:3 9475:1 9516:1 9533:2 9558:2 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9960:2 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10377:4 10382:1 10390:1 10391:2 10466:1 10565:1 10611:1 10638:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:1 10786:3 10796:1 10812:4 10841:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11191:4 11208:1 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11436:1 11518:1 11560:1 11772:1 11940:1 11962:1 11963:1 11967:1 11993:1 12137:1 12155:1 12164:1 12196:3 12210:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:2 12713:1 12722:1 12806:1 12814:1 12858:1 12890:1 12974:3 12987:1 13069:1 13076:1 13136:1 13198:1 13234:1 13254:1 13326:1 13345:1 13427:1 13430:1 13435:1 13450:1 13502:1 13525:1 13709:1 13713:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:2 14002:1 14067:1 14083:1 14107:1 14140:1 14184:1 14248:1 14289:1 14308:1 14350:1 14458:1 14519:2 14525:1 14588:1 14590:1 14594:1 14677:3 14707:1 14817:1 14872:1 14941:1 14953:1 15003:1 15030:1 15065:1 15087:2 15089:1 15177:1 15184:1 15187:1 15224:1 15263:1 15272:1 15388:1 15498:1 15507:2 15573:1 15637:2 15666:3 15710:1 15746:1 15811:1 15859:1 15986:1 15996:1 16019:1 16065:1 16146:1 16147:1 16177:1 16180:1 16352:1 16358:1 16500:1 16536:1 16566:1 16639:1 16693:1 16700:1 16710:1 16857:1 16889:1 16966:1 16967:1 17105:1 17111:1 17125:1 17135:1 17145:4 17147:1 17196:1 17271:1 17288:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17507:1 17517:1 17567:2 17580:3 17588:1 17628:1 17644:1 17743:1 17796:1 17833:1 17836:1 17837:1 17912:1 18075:1 18124:1 18249:1 18282:1 18298:1 18348:1 18392:1 18403:1 18442:1 18450:1 18554:2 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18760:1 18763:1 18764:1 18796:1 18804:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19373:1 19385:1 19468:1 19488:1 19560:1 19574:4 19606:1 19672:1 19689:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19905:1 19914:1 19996:1 20027:1 20059:1 20086:1 20143:2 20150:1 20234:1 20279:1 20330:1
10 10:3 12:1 32:1 91:1 143:1 170:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 935:1 950:1 966:1 1081:1 1112:1 1124:1 1167:1 1223:1 1236:2 1240:1 1244:1 1282:1 1311:1 1315:2 1344:1 1356:1 1386:1 1395:1 1419:1 1442:1 1444:1 1445:1 1492:1 1540:1 1551:1 1573:1 1574:1 1649:1 1653:1 1824:1 1835:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:1 2136:1 2146:1 2149:1 2201:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:1 2427:1 2509:1 2531:1 2537:1 2589:2 2593:2 2609:1 2700:1 2764:2 2824:1 2982:3 2990:1 3059:2 3063:1 3102:1 3135:1 3146:2 3168:1 3202:1 3317:4 3329:1 3410:1 3450:1 3504:1 3624:1 3681:1 3765:2 3879:1 3910:1 4003:1 4059:3 4071:2 4078:1 4164:1 4167:1 4184:1 4277:1 4341:1 4382:1 4409:1 4411:1 4421:1 4437:1 4505:1 4506:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5203:1 5243:1 5264:1 5298:1 5316:1 5367:1 5408:1 5437:344 5468:1 5491:1 5525:2 5655:1 5718:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5933:1 5940:1 5945:5 5964:1 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:1 6458:1 6518:1 6528:1 6598:2 6604:1 6635:1 6648:1 6675:1 6694:2 6725:2 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7254:1 7268:1 7392:2 7479:1 7494:1 7526:1 7582:1 7589:1 7740:1 7845:1 7854:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:5 8176:1 8332:2 8369:1 8432:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 9011:1 9029:6 9060:1 9124:1 9186:1 9216:1 9338:1 9396:1 9411:4 9475:1 9516:1 9533:2 9558:2 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9960:2 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10377:5 10382:1 10390:1 10391:2 10466:1 10565:1 10611:1 10638:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:1 10786:4 10796:1 10812:4 10841:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11191:4 11208:1 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11436:1 11518:1 11560:1 11772:1 11940:1 11962:1 11963:1 11967:1 11993:1 12137:1 12155:1 12164:1 12196:3 12210:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:3 12713:1 12722:1 12806:1 12814:1 12858:1 12890:1 12974:3 12987:1 13069:1 13076:1 13136:1 13198:1 13234:1 13254:1 13326:1 13345:1 13427:1 13430:1 13435:1 13450:1 13502:1 13525:1 13612:1 13709:1 13713:1 13781:1 13914:1 13919:1 13940:1 13962:1 13973:1 13974:2 14002:1 14067:1 14083:1 14107:1 14140:1 14184:1 14231:1 14248:1 14289:1 14308:1 14350:1 14458:1 14519:2 14525:1 14588:1 14590:1 14594:1 14677:4 14707:1 14817:1 14872:1 14941:1 14953:1 15003:1 15030:1 15065:1 15087:2 15089:1 15177:1 15184:1 15187:1 15224:1 15263:1 15272:1 15388:1 15498:1 15507:2 15573:1 15637:2 15666:3 15710:1 15746:1 15811:1 15859:1 15961:1 15986:1 15996:1 16019:1 16065:1 16146:1 16147:1 16177:1 16180:1 16213:1 16352:1 16358:2 16500:1 16536:1 16566:1 16639:1 16693:1 16700:1 16710:1 16857:1 16889:1 16966:1 16967:1 17105:1 17111:1 17125:1 17135:1 17145:5 17147:1 17196:1 17271:1 17288:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17507:1 17517:1 17542:1 17567:2 17580:3 17588:1 17628:1 17644:1 17743:1 17796:1 17833:1 17836:1 17837:1 17845:1 17912:1 18049:1 18075:1 18124:1 18249:1 18269:1 18282:1 18298:1 18348:1 18392:1 18403:1 18442:1 18450:1 18554:2 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18760:1 18763:1 18764:1 18796:1 18804:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19370:1 19373:1 19385:1 19468:1 19488:1 19560:1 19574:4 19606:1 19672:1 19689:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19905:1 19914:1 19996:1 20027:1 20059:1 20086:1 20143:2 20150:1 20234:1 20279:1 20330:1
10 10:3 12:1 32:2 91:1 143:1 170:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 886:1 935:1 950:1 966:1 1017:1 1081:1 1112:1 1124:1 1167:1 1223:1 1236:2 1240:1 1244:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:1 1386:1 1395:2 1419:1 1432:1 1442:1 1444:1 1445:2 1492:1 1537:1 1540:1 1551:1 1573:1 1574:1 1647:1 1649:1 1653:1 1683:1 1824:1 1835:1 1840:1 1853:1 1855:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:1 2136:1 2143:1 2146:1 2149:1 2153:1 2201:1 2220:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:2 2427:1 2509:2 2531:1 2537:1 2589:2 2593:2 2609:1 2700:1 2764:2 2824:1 2862:1 2982:3 2990:1 3059:2 3063:1 3102:1 3135:1 3146:2 3168:1 3202:1 3317:4 3329:1 3351:1 3410:1 3450:1 3504:1 3624:1 3681:1 3698:1 3765:2 3780:1 3879:1 3905:1 3910:1 4003:1 4059:3 4071:2 4078:1 4164:1 4167:2 4184:1 4277:1 4341:1 4382:1 4409:1 4411:1 4421:1 4437:1 4505:1 4506:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5203:1 5236:1 5241:1 5243:1 5264:1 5298:1 5316:1 5367:1 5408:1 5437:386 5468:1 5491:1 5525:2 5655:1 5718:1 5733:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5933:1 5940:1 5945:6 5964:1 6139:1 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:1 6458:1 6518:1 6528:1 6547:1 6566:1 6598:2 6604:1 6635:1 6648:1 6675:1 6694:2 6703:1 6725:2 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 6905:1 6913:1 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7254:1 7268:1 7392:2 7479:1 7494:1 7509:1 7526:1 7582:1 7585:1 7589:1 7740:1 7845:1 7854:1 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:6 8167:1 8176:1 8332:2 8334:1 8369:1 8432:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 9011:1 9029:7 9060:1 9124:2 9186:1 9216:1 9338:1 9396:1 9411:4 9430:1 9475:1 9516:1 9533:2 9558:2 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9960:3 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10377:6 10382:1 10390:1 10391:2 10452:1 10462:1 10466:1 10565:1 10611:1 10616:1 10638:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:2 10786:4 10790:1 10796:1 10812:4 10841:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11188:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11436:3 11518:1 11560:1 11772:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12128:1 12137:1 12155:1 12164:1 12196:3 12210:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:3 12638:1 12652:1 12713:1 12722:1 12806:1 12814:1 12858:1 12890:1 12927:1 12974:3 12987:1 13069:1 13076:1 13136:1 13165:1 13198:1 13234:1 13254:1 13326:1 13345:1 13405:1 13413:1 13427:1 13430:1 13435:1 13450:1 13498:1 13502:1 13525:1 13612:1 13709:1 13713:1 13781:1 13824:1 13875:1 13910:1 13914:1 13919:1 13940:1 13953:1 13962:1 13973:1 13974:2 14002:1 14067:1 14083:1 14107:1 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14273:1 14289:1 14308:1 14350:1 14458:1 14471:1 14519:2 14525:1 14588:1 14590:1 14594:1 14609:1 14677:4 14707:1 14817:1 14829:1 14872:1 14873:1 14941:1 14953:1 15003:1 15030:1 15065:1 15085:1 15087:2 15089:1 15177:1 15184:1 15187:1 15206:1 15224:1 15258:1 15263:1 15272:1 15342:1 15388:1 15434:1 15498:1 15507:2 15573:1 15637:2 15666:3 15710:1 15746:1 15811:1 15859:1 15926:1 15961:1 15986:1 15996:1 16019:1 16065:1 16146:1 16147:1 16177:1 16180:1 16213:1 16352:1 16358:2 16500:1 16536:1 16566:1 16639:1 16693:1 16700:1 16710:1 16857:1 16889:1 16966:1 16967:1 17053:1 17058:1 17105:2 17111:1 17125:1 17135:1 17145:6 17147:1 17196:1 17270:1 17271:1 17288:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17487:1 17493:1 17507:1 17517:1 17542:1 17567:2 17580:3 17588:1 17628:1 17644:1 17743:1 17796:1 17833:1 17836:1 17837:1 17845:1 17912:1 18049:1 18064:1 18075:1 18124:1 18249:1 18269:1 18282:1 18298:1 18348:1 18387:1 18392:1 18403:1 18442:1 18450:1 18517:1 18554:2 18563:1 18589:1 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19065:1 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19370:1 19373:1 19385:1 19468:1 19488:1 19560:1 19574:4 19606:1 19672:1 19689:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19905:1 19914:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:1 20086:1 20143:2 20150:1 20234:1 20279:1 20330:1 20376:1
10 10:3 12:1 32:2 91:1 143:1 170:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 886:1 935:1 950:1 966:1 1017:1 1081:1 1112:1 1124:1 1167:1 1223:1 1236:2 1240:1 1244:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:2 1386:1 1395:2 1419:1 1432:2 1442:1 1444:1 1445:3 1492:1 1537:2 1540:1 1551:1 1573:1 1574:1 1647:2 1649:1 1653:1 1683:2 1824:1 1835:1 1840:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2153:2 2201:1 2220:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:2 2427:1 2509:2 2531:1 2537:1 2589:2 2593:2 2609:1 2700:1 2764:2 2824:1 2862:1 2982:3 2990:1 3059:2 3063:1 3102:1 3135:1 3146:2 3168:1 3202:1 3317:4 3329:1 3351:2 3410:1 3450:1 3504:1 3624:1 3681:1 3698:1 3765:2 3780:1 3879:1 3905:2 3910:1 4003:1 4009:1 4013:1 4059:3 4071:2 4078:1 4131:1 4164:1 4167:3 4184:1 4277:1 4341:1 4382:1 4409:1 4411:1 4421:1 4437:1 4471:1 4505:1 4506:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5188:1 5203:2 5236:1 5241:2 5243:1 5264:1 5298:1 5316:1 5367:1 5408:1 5437:411 5468:1 5491:1 5525:2 5655:1 5718:1 5733:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5933:1 5940:1 5945:7 5964:1 5972:1 5974:1 6139:2 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:1 6458:1 6518:1 6528:1 6547:2 6566:2 6598:2 6604:1 6635:1 6648:1 6675:1 6694:3 6703:1 6725:2 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 6905:2 6913:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7254:1 7268:1 7392:2 7459:1 7479:1 7494:1 7509:1 7526:1 7582:1 7585:1 7589:1 7740:1 7782:1 7845:1 7854:1 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:7 8167:1 8176:1 8332:2 8334:1 8369:1 8432:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 9011:1 9029:8 9060:1 9124:2 9186:1 9216:1 9338:1 9396:1 9411:4 9430:1 9475:1 9516:1 9533:2 9558:3 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9926:1 9943:1 9960:3 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10377:7 10382:1 10390:1 10391:2 10452:2 10462:1 10466:1 10565:1 10611:1 10616:1 10638:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:2 10786:4 10790:2 10796:1 10812:4 10841:1 10843:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11188:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11423:1 11436:3 11518:1 11560:1 11772:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12128:2 12137:1 12155:1 12164:1 12196:3 12210:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:3 12638:1 12652:1 12713:1 12722:1 12806:1 12814:1 12858:1 12890:1 12927:2 12974:3 12987:1 13069:1 13076:1 13136:1 13165:2 13198:1 13234:1 13254:1 13326:1 13345:1 13405:1 13413:1 13427:1 13430:1 13435:1 13450:1 13498:1 13502:1 13525:1 13612:1 13709:1 13713:1 13781:1 13824:2 13875:1 13910:1 13914:1 13919:1 13940:1 13953:2 13962:1 13973:1 13974:2 14002:1 14067:1 14083:1 14107:1 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14273:2 14289:1 14308:1 14350:1 14458:1 14471:2 14495:1 14519:2 14525:1 14588:1 14590:1 14594:2 14609:2 14677:4 14707:1 14817:1 14829:2 14872:1 14873:1 14941:1 14953:1 15003:1 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15187:1 15206:2 15224:1 15258:1 15263:1 15272:1 15342:1 15388:1 15434:2 15498:1 15507:2 15573:1 15637:2 15666:3 15710:1 15746:1 15747:1 15811:1 15859:1 15926:2 15961:1 15986:1 15996:1 16019:1 16065:1 16146:1 16147:1 16177:1 16180:1 16213:1 16352:1 16358:2 16452:1 16500:1 16536:1 16566:1 16639:1 16693:1 16700:1 16710:1 16812:1 16857:1 16889:1 16966:1 16967:1 17053:1 17058:2 17105:2 17111:1 17125:1 17135:1 17145:7 17147:1 17196:1 17270:2 17271:1 17288:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17487:1 17493:2 17507:1 17517:1 17542:1 17567:2 17580:3 17588:1 17628:1 17644:1 17743:1 17796:1 17833:1 17836:1 17837:1 17845:1 17912:1 18049:1 18064:1 18075:1 18124:1 18249:1 18269:1 18282:1 18298:1 18348:1 18387:2 18392:1 18403:1 18442:1 18450:1 18517:2 18554:2 18563:1 18589:1 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19065:2 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19370:1 19373:1 19385:1 19468:1 19488:1 19560:1 19574:4 19606:1 19672:1 19689:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19905:1 19914:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:2 20086:1 20143:2 20150:1 20234:1 20279:1 20330:1 20376:1
10 10:3 12:1 32:2 91:1 104:1 143:1 170:1 173:1 344:1 357:1 417:1 426:1 478:1 579:1 775:1 779:1 841:1 866:1 886:1 935:1 950:1 966:1 1017:1 1081:2 1112:1 1124:1 1167:1 1223:1 1236:2 1240:1 1244:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:2 1386:1 1395:2 1419:1 1432:2 1442:1 1444:1 1445:3 1492:1 1537:2 1540:1 1551:1 1573:1 1574:1 1647:2 1649:1 1653:1 1683:2 1824:1 1835:1 1840:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2153:2 2201:1 2220:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:2 2427:1 2509:2 2531:1 2537:1 2578:1 2589:2 2593:2 2609:1 2687:1 2700:1 2764:2 2824:1 2862:1 2927:1 2982:3 2990:1 3059:2 3063:2 3102:1 3135:1 3146:2 3168:1 3202:1 3315:1 3317:5 3329:1 3351:2 3410:1 3450:1 3504:1 3624:1 3681:1 3698:1 3765:2 3780:1 3811:1 3879:1 3905:2 3910:1 4003:1 4009:1 4013:1 4059:3 4071:2 4078:2 4114:1 4131:1 4164:1 4167:3 4184:1 4253:1 4256:1 4277:1 4341:1 4382:1 4409:1 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4831:1 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5188:1 5203:2 5236:1 5241:2 5243:1 5264:1 5298:1 5316:1 5367:1 5408:1 5437:442 5468:1 5491:1 5525:2 5655:1 5718:1 5733:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6139:2 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:1 6458:1 6518:1 6528:1 6547:2 6566:2 6598:2 6604:1 6635:1 6648:1 6675:1 6694:3 6703:1 6725:2 6734:1 6737:1 6747:1 6816:1 6845:1 6874:2 6881:1 6905:2 6913:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7254:1 7268:2 7391:1 7392:2 7418:1 7459:1 7479:1 7494:1 7509:1 7526:1 7582:1 7585:1 7589:1 7740:1 7782:1 7845:1 7854:1 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:1 8167:1 8176:1 8257:1 8332:2 8334:2 8369:1 8432:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 8964:1 9011:1 9029:9 9060:1 9124:2 9182:1 9186:1 9216:1 9338:1 9396:1 9411:5 9430:1 9475:1 9516:1 9533:2 9558:3 9578:1 9588:1 9696:1 9715:2 9726:1 9780:1 9855:2 9916:1 9926:1 9943:1 9960:3 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10452:2 10462:1 10466:1 10565:1 10611:1 10616:1 10638:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:2 10786:5 10790:2 10796:1 10812:5 10841:1 10843:1 11002:1 11004:1 11082:1 11170:1 11174:1 11181:2 11188:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11423:1 11436:3 11518:1 11535:1 11560:1 11621:1 11772:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12128:2 12137:1 12155:1 12164:1 12196:3 12210:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:4 12638:1 12652:1 12713:1 12722:1 12806:1 12814:1 12858:1 12879:1 12890:1 12927:2 12974:3 12981:1 12987:1 13069:1 13076:1 13136:1 13165:2 13198:1 13234:1 13254:1 13326:1 13345:1 13405:1 13413:1 13427:1 13430:1 13435:1 13450:1 13498:1 13502:1 13525:1 13612:1 13709:1 13713:1 13714:1 13722:1 13781:1 13824:2 13875:1 13910:1 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14067:1 14083:1 14107:1 14112:1 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14289:1 14308:1 14350:1 14458:1 14471:2 14495:1 14519:3 14525:1 14588:1 14590:1 14594:2 14609:2 14623:1 14635:1 14677:5 14707:1 14817:1 14829:2 14872:1 14873:1 14941:1 14953:1 15003:1 15028:1 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15206:2 15224:1 15255:1 15258:1 15263:1 15272:1 15342:1 15388:1 15434:2 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15811:1 15859:1 15926:2 15961:1 15986:1 15996:1 16019:1 16065:1 16072:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:1 16352:1 16358:2 16452:1 16500:1 16507:1 16530:1 16536:1 16548:1 16566:1 16639:1 16693:2 16700:1 16710:1 16812:1 16857:1 16889:1 16946:1 16966:1 16967:1 17053:1 17058:2 17105:2 17111:1 17125:1 17135:1 17145:8 17147:1 17196:1 17270:2 17271:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17487:1 17493:2 17507:1 17517:1 17542:1 17567:2 17580:3 17588:1 17617:1 17628:1 17644:1 17743:1 17796:1 17833:1 17836:1 17837:1 17845:1 17912:1 18049:1 18064:1 18075:1 18124:1 18212:1 18221:1 18249:1 18269:1 18282:1 18298:1 18348:1 18387:2 18392:1 18403:1 18442:1 18450:1 18517:2 18554:2 18563:1 18589:1 18631:1 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18839:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19065:2 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:1 19488:1 19517:1 19560:1 19574:4 19606:1 19672:1 19689:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20143:2 20150:1 20234:1 20279:1 20330:1 20376:1
10 10:3 12:1 32:2 91:1 104:1 143:1 170:1 173:1 344:2 357:2 417:1 426:1 478:1 579:1 706:1 775:1 779:1 841:1 866:1 886:1 935:1 950:1 966:1 1017:1 1081:2 1112:1 1124:1 1167:1 1223:1 1236:2 1240:1 1244:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:2 1386:1 1395:2 1419:1 1432:2 1442:1 1444:1 1445:3 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:2 1649:1 1653:1 1683:2 1824:1 1835:1 1840:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2153:2 2201:1 2220:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:2 2427:1 2509:2 2531:1 2537:1 2578:1 2589:2 2593:3 2609:2 2613:1 2687:1 2700:1 2764:2 2824:1 2862:1 2927:2 2982:3 2990:1 3059:2 3063:2 3102:1 3133:1 3135:1 3146:2 3168:1 3202:1 3315:1 3317:5 3329:1 3351:2 3410:1 3450:1 3504:1 3624:1 3681:1 3698:1 3765:2 3780:1 3811:2 3819:1 3879:1 3905:2 3910:1 4003:1 4009:1 4013:1 4059:3 4071:2 4078:2 4114:1 4131:1 4161:1 4164:1 4167:3 4184:1 4253:2 4256:1 4277:1 4341:1 4382:1 4409:1 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4831:2 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5188:1 5203:2 5236:1 5240:1 5241:2 5243:1 5264:1 5298:1 5316:1 5367:1 5408:1 5437:474 5468:1 5491:1 5525:2 5655:1 5718:1 5733:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6139:2 6144:1 6198:1 6257:1 6292:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6566:2 6598:2 6604:1 6635:1 6648:1 6675:1 6694:3 6703:1 6725:2 6734:1 6737:1 6747:1 6816:1 6845:1 6869:1 6874:2 6881:1 6905:2 6913:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7254:1 7268:2 7391:1 7392:2 7418:1 7459:1 7479:1 7494:1 7509:1 7526:1 7555:1 7559:1 7582:1 7585:1 7589:1 7740:1 7782:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:2 8167:1 8176:2 8257:2 8271:1 8319:1 8332:2 8334:2 8369:1 8432:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 8964:2 9011:1 9029:9 9060:1 9124:2 9182:1 9186:2 9216:1 9338:1 9396:1 9402:1 9411:5 9430:1 9475:1 9516:1 9533:3 9558:3 9578:1 9588:1 9593:1 9696:1 9715:2 9726:1 9780:1 9855:2 9916:1 9926:1 9943:1 9960:3 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10452:2 10462:1 10466:1 10565:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:2 10737:1 10743:1 10744:1 10754:2 10786:5 10790:2 10796:1 10812:6 10841:1 10843:1 11002:1 11004:1 11082:1 11105:1 11170:1 11174:1 11181:2 11188:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11423:1 11436:3 11518:1 11535:2 11560:1 11621:2 11702:1 11731:1 11772:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12128:2 12137:2 12155:1 12164:1 12196:3 12210:1 12213:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:4 12638:1 12652:1 12673:1 12713:1 12722:1 12806:1 12814:1 12858:1 12879:2 12890:1 12927:2 12974:3 12981:1 12987:1 13069:1 13076:1 13100:1 13125:1 13136:1 13165:2 13198:1 13234:1 13254:1 13326:1 13345:1 13405:1 13413:1 13427:1 13430:1 13435:1 13450:1 13498:1 13502:1 13525:1 13529:1 13612:1 13666:1 13709:1 13713:1 13714:2 13722:2 13767:1 13781:1 13824:2 13875:1 13910:1 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14067:1 14083:1 14107:1 14112:2 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14289:1 14308:1 14350:1 14458:1 14471:2 14495:1 14519:4 14525:1 14588:1 14590:1 14594:2 14609:2 14623:1 14635:2 14677:5 14707:1 14817:1 14829:2 14872:1 14873:1 14941:1 14953:1 15003:1 15028:2 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15206:2 15224:1 15255:2 15258:1 15263:1 15272:1 15342:1 15388:1 15394:1 15434:2 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15811:1 15859:1 15926:2 15961:1 15986:1 15996:1 16019:1 16062:1 16065:1 16072:1 16090:1 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:2 16352:1 16358:2 16452:1 16500:1 16507:2 16530:2 16536:1 16548:1 16566:1 16639:1 16688:1 16693:2 16700:1 16710:1 16812:1 16857:1 16889:1 16946:2 16966:1 16967:1 17053:1 17058:2 17105:2 17111:1 17125:1 17135:1 17145:8 17147:1 17196:1 17270:2 17271:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17487:1 17493:2 17507:1 17517:1 17542:1 17567:2 17580:3 17588:1 17617:2 17628:1 17629:1 17644:1 17743:1 17796:1 17833:1 17836:1 17837:1 17845:1 17912:1 18049:1 18064:1 18075:1 18124:1 18212:2 18221:1 18249:1 18269:1 18282:1 18298:1 18348:1 18387:2 18392:1 18403:1 18442:1 18450:1 18517:2 18554:2 18563:1 18589:1 18631:2 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18839:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:1 19488:1 19517:1 19560:1 19574:4 19606:1 19672:1 19689:1 19709:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20143:2 20150:1 20177:1 20234:1 20279:1 20330:1 20376:1
10 10:3 12:1 32:2 91:1 104:1 143:1 170:1 173:1 344:3 357:2 417:1 426:1 478:1 579:1 676:1 706:1 775:1 779:1 838:1 841:1 866:1 886:1 935:1 950:1 966:1 1017:1 1081:2 1112:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:1 1244:1 1254:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:2 1386:1 1395:2 1419:1 1432:2 1442:1 1444:1 1445:3 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:2 1649:1 1653:1 1683:2 1824:1 1835:1 1840:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2153:2 2201:1 2220:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2509:2 2531:1 2537:1 2578:1 2589:2 2593:3 2609:2 2613:1 2687:1 2700:1 2764:2 2824:1 2862:1 2887:1 2927:2 2982:3 2990:1 3059:2 3063:2 3102:1 3133:1 3135:1 3141:1 3146:2 3168:1 3202:1 3315:1 3317:5 3329:1 3351:2 3410:1 3450:1 3504:1 3624:1 3681:1 3698:1 3727:1 3765:2 3780:1 3811:3 3819:1 3879:1 3905:2 3910:1 3936:1 4003:1 4006:1 4009:1 4013:1 4059:4 4071:2 4078:2 4114:1 4131:1 4161:1 4164:1 4167:3 4184:1 4253:3 4256:1 4277:1 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4636:1 4673:4 4686:1 4716:1 4755:1 4810:1 4827:2 4831:3 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5113:1 5132:1 5188:1 5203:2 5236:1 5240:1 5241:2 5243:1 5264:1 5298:1 5316:1 5355:1 5367:1 5408:1 5437:519 5468:1 5491:1 5525:2 5655:1 5718:1 5733:1 5743:1 5762:1 5775:1 5818:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6047:1 6139:2 6144:1 6198:1 6257:1 6292:1 6297:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6566:2 6598:2 6604:1 6635:1 6648:1 6660:1 6675:1 6694:3 6703:1 6725:2 6734:1 6737:1 6747:2 6816:1 6845:1 6869:1 6874:2 6881:1 6905:2 6913:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7238:1 7250:1 7254:1 7268:2 7391:1 7392:2 7418:1 7459:1 7479:1 7490:1 7494:1 7509:1 7526:1 7555:1 7559:1 7582:1 7585:1 7589:1 7691:1 7740:1 7782:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:2 8167:1 8176:2 8257:3 8271:1 8319:1 8332:2 8334:2 8354:1 8369:1 8432:1 8455:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 8964:3 9011:1 9029:9 9060:1 9124:2 9147:1 9182:1 9186:2 9216:1 9217:2 9338:1 9396:1 9402:1 9411:5 9430:1 9475:1 9516:1 9533:3 9544:1 9558:3 9578:1 9588:1 9593:1 9696:1 9715:2 9726:1 9780:1 9855:2 9914:1 9916:1 9926:1 9943:1 9960:3 9995:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10452:2 10462:1 10466:1 10565:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:2 10719:1 10737:1 10743:1 10744:1 10754:2 10786:5 10790:2 10796:1 10812:6 10841:2 10843:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:1 11170:1 11174:1 11181:2 11188:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:1 11321:1 11347:1 11388:2 11423:1 11436:3 11518:1 11535:3 11560:1 11621:3 11702:1 11731:1 11772:1 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12128:2 12137:2 12155:1 12164:1 12196:3 12210:1 12213:1 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:4 12638:1 12652:1 12673:1 12713:1 12722:1 12794:1 12806:1 12814:1 12837:1 12858:1 12879:3 12890:1 12927:2 12974:3 12981:1 12987:1 13069:1 13076:1 13100:1 13125:1 13136:1 13165:2 13198:1 13234:1 13254:1 13326:1 13345:1 13405:1 13413:1 13427:1 13430:1 13435:1 13450:1 13498:1 13502:1 13525:1 13529:1 13542:1 13612:1 13620:1 13666:1 13709:1 13713:1 13714:3 13722:3 13767:1 13781:1 13824:2 13875:1 13910:1 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14067:1 14083:1 14094:1 14107:1 14112:3 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14458:1 14471:2 14495:1 14519:4 14525:1 14588:1 14590:1 14594:2 14609:2 14623:1 14635:3 14677:5 14707:1 14817:1 14829:2 14872:1 14873:1 14941:1 14953:1 15003:1 15028:3 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15190:1 15206:2 15224:1 15255:3 15258:1 15263:1 15272:1 15283:1 15342:1 15388:1 15394:1 15434:2 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15811:1 15859:1 15926:2 15961:1 15986:1 15988:2 15996:1 16019:1 16062:1 16065:1 16072:1 16090:1 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:3 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:3 16530:3 16536:1 16548:1 16566:1 16614:1 16639:1 16688:1 16693:2 16700:1 16710:1 16806:1 16812:1 16857:1 16889:1 16946:3 16966:1 16967:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:8 17147:1 17196:1 17270:2 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:3 17482:1 17487:1 17492:1 17493:2 17507:1 17517:2 17542:1 17567:2 17580:3 17588:1 17617:3 17628:1 17629:1 17644:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:2 17914:2 18049:1 18064:1 18075:1 18101:1 18120:1 18124:1 18212:3 18221:1 18227:1 18249:1 18269:1 18282:1 18286:1 18298:1 18348:1 18387:2 18392:1 18403:1 18442:1 18450:1 18517:2 18554:2 18563:1 18589:1 18631:3 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18839:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:1 19488:1 19517:1 19560:1 19574:4 19606:1 19672:1 19689:1 19709:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20143:2 20150:1 20177:1 20234:1 20279:1 20330:1 20376:1
10 10:3 12:1 32:2 91:1 101:1 104:1 143:1 170:1 173:1 344:4 357:3 376:1 417:1 426:1 478:1 579:1 676:1 705:1 706:1 775:1 779:1 838:1 841:1 866:1 886:1 935:1 950:1 966:1 1017:1 1081:3 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:1 1244:1 1254:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:2 1386:1 1395:2 1419:1 1432:2 1442:1 1444:1 1445:3 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:2 1649:1 1653:1 1683:2 1824:1 1825:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2153:2 2201:1 2220:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2509:2 2531:1 2537:1 2574:1 2578:1 2589:2 2593:3 2609:2 2613:3 2687:1 2700:1 2764:2 2824:1 2862:1 2887:1 2927:3 2982:3 2990:1 3039:1 3059:2 3063:2 3102:1 3133:1 3135:1 3141:1 3146:2 3168:1 3202:1 3315:1 3317:5 3329:1 3351:2 3410:1 3450:1 3504:1 3624:1 3681:1 3698:1 3710:1 3727:1 3765:2 3780:1 3811:4 3819:1 3879:1 3905:2 3910:1 3936:1 4003:1 4006:1 4009:1 4013:1 4059:4 4071:2 4078:2 4114:1 4131:1 4161:2 4164:1 4167:3 4184:1 4253:4 4256:1 4277:1 4308:1 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4636:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:4 4884:1 4940:1 4959:1 5015:1 5017:1 5030:1 5032:1 5058:2 5097:1 5113:1 5132:1 5153:1 5188:1 5203:2 5236:1 5240:1 5241:2 5243:1 5264:1 5298:1 5316:1 5317:2 5355:1 5367:1 5408:1 5437:545 5468:1 5491:1 5525:2 5655:1 5718:1 5733:1 5743:1 5762:1 5775:1 5818:1 5837:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6044:1 6047:1 6139:2 6144:1 6198:1 6257:1 6292:1 6297:1 6299:1 6326:2 6351:1 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6566:2 6598:2 6604:1 6635:1 6648:1 6660:1 6675:1 6686:1 6694:3 6703:1 6725:2 6734:1 6737:1 6747:3 6816:1 6845:1 6867:1 6869:1 6874:2 6881:1 6905:2 6913:2 6936:1 6971:1 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7250:1 7254:1 7263:1 7268:2 7391:1 7392:2 7418:1 7459:1 7479:1 7490:1 7494:1 7509:1 7526:1 7555:2 7559:1 7582:1 7585:1 7589:1 7602:2 7691:1 7740:1 7782:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:3 8167:1 8176:2 8236:1 8257:4 8271:1 8319:2 8332:3 8334:2 8354:1 8369:1 8432:1 8455:1 8492:1 8626:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8804:1 8810:1 8820:1 8847:2 8926:1 8929:1 8939:1 8950:1 8964:4 9011:1 9029:9 9060:1 9124:2 9147:1 9182:1 9186:2 9216:1 9217:2 9338:1 9396:1 9402:1 9411:5 9430:1 9475:1 9516:1 9533:3 9544:1 9558:3 9578:1 9579:1 9588:1 9593:1 9696:1 9715:2 9726:2 9780:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10452:2 10462:1 10466:1 10556:1 10565:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:2 10719:1 10726:1 10737:1 10743:1 10744:1 10754:2 10786:5 10790:2 10796:1 10812:6 10841:2 10843:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:2 11321:1 11347:1 11383:1 11388:2 11423:1 11436:4 11518:1 11535:4 11560:1 11621:4 11702:2 11731:2 11772:1 11838:2 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12065:1 12128:2 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:4 12638:1 12652:1 12673:2 12713:1 12722:1 12794:1 12806:1 12814:1 12837:1 12858:1 12879:4 12890:1 12927:2 12974:3 12981:1 12987:1 13069:1 13076:1 13100:1 13125:3 13136:1 13165:2 13185:1 13198:1 13234:1 13254:1 13326:1 13345:1 13405:1 13413:1 13427:1 13430:2 13435:1 13450:1 13498:1 13502:1 13525:1 13529:1 13542:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:4 13722:4 13767:1 13781:1 13824:2 13875:1 13910:2 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:4 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14458:1 14471:2 14495:1 14519:4 14525:1 14575:1 14588:1 14590:1 14594:2 14609:2 14623:1 14635:4 14677:5 14707:1 14817:1 14826:2 14829:2 14872:1 14873:1 14940:1 14941:1 14953:1 15003:1 15028:4 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15190:1 15206:2 15224:1 15255:4 15258:1 15263:1 15272:1 15283:1 15342:1 15388:1 15394:2 15434:2 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15811:1 15859:1 15926:2 15961:1 15986:1 15988:2 15996:1 16019:1 16062:2 16065:1 16072:1 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:4 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:4 16530:4 16536:1 16539:1 16548:1 16561:1 16566:1 16595:1 16597:1 16614:1 16639:1 16688:1 16693:2 16700:1 16710:1 16727:1 16806:2 16812:1 16857:1 16889:1 16946:4 16966:1 16967:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:8 17147:1 17151:1 17196:1 17255:1 17270:2 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:3 17444:1 17451:1 17482:1 17487:1 17492:1 17493:2 17507:1 17517:2 17542:1 17567:2 17580:3 17588:1 17617:4 17628:1 17629:2 17644:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:2 17914:2 17983:1 18049:1 18064:1 18075:1 18101:1 18120:1 18124:1 18212:4 18221:1 18227:1 18249:1 18269:1 18282:1 18286:1 18298:1 18348:1 18387:2 18392:1 18403:1 18442:1 18450:1 18465:1 18473:1 18517:2 18554:2 18563:1 18589:1 18631:3 18636:1 18645:1 18690:1 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18839:1 18863:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19132:1 19140:1 19142:1 19275:1 19313:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:1 19481:1 19488:1 19517:1 19560:1 19574:4 19606:2 19672:1 19689:1 19709:1 19728:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20143:2 20150:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20376:1 20388:1
10 10:3 12:1 32:2 91:1 101:1 104:1 143:1 170:1 173:1 344:5 357:3 376:1 402:1 417:1 426:1 476:1 478:1 579:1 676:1 705:1 706:1 775:1 779:1 838:2 841:1 866:1 883:1 886:1 935:1 950:1 966:1 1017:2 1031:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:1 1244:1 1254:1 1271:1 1282:1 1311:1 1315:2 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1442:1 1444:1 1445:3 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:3 1649:1 1653:1 1683:2 1736:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2042:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2509:2 2531:1 2537:1 2574:1 2578:1 2589:2 2593:3 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2824:1 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3133:1 3135:1 3141:1 3146:2 3168:1 3202:1 3315:1 3317:5 3329:1 3351:2 3410:1 3450:1 3467:1 3504:1 3518:1 3624:1 3681:1 3689:1 3695:1 3698:1 3710:1 3727:1 3765:2 3780:1 3811:5 3819:1 3839:1 3879:1 3905:4 3910:1 3936:1 4003:1 4006:2 4009:1 4013:1 4059:4 4065:1 4071:2 4078:2 4109:1 4113:1 4114:1 4131:1 4142:1 4161:3 4164:1 4167:3 4184:1 4192:1 4253:5 4256:1 4277:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4636:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5058:2 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5203:2 5236:2 5240:1 5241:3 5243:1 5264:1 5298:1 5316:1 5317:2 5355:1 5367:1 5381:1 5408:1 5437:605 5468:1 5491:1 5525:2 5655:1 5718:1 5719:1 5733:1 5743:1 5762:1 5775:1 5818:1 5837:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6044:1 6047:1 6139:2 6144:1 6198:1 6257:1 6266:2 6292:1 6297:1 6299:1 6325:1 6326:2 6351:1 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6635:1 6648:1 6660:1 6675:1 6686:2 6694:3 6703:1 6725:2 6734:1 6737:1 6747:3 6756:1 6816:1 6845:1 6867:1 6869:1 6874:2 6881:1 6905:2 6913:2 6936:1 6971:1 7003:1 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7250:1 7254:1 7263:1 7268:2 7280:1 7391:1 7392:2 7418:1 7459:1 7479:1 7490:1 7494:1 7509:1 7526:1 7555:2 7559:1 7582:1 7585:1 7589:1 7602:2 7691:1 7740:1 7782:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:3 8167:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:2 8354:1 8369:1 8432:1 8455:1 8492:1 8626:1 8638:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8804:1 8810:1 8820:1 8830:1 8847:2 8926:1 8929:1 8939:1 8950:1 8964:5 9011:1 9029:9 9060:1 9124:2 9147:1 9182:1 9186:2 9216:1 9217:3 9338:1 9396:1 9402:1 9411:5 9430:1 9475:1 9483:1 9516:1 9533:3 9543:1 9544:1 9558:3 9578:1 9579:2 9588:1 9593:1 9696:1 9715:2 9726:2 9780:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10251:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10433:1 10452:2 10462:1 10466:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:3 10719:1 10726:1 10737:1 10743:1 10744:1 10754:2 10786:5 10790:2 10796:1 10812:6 10841:2 10843:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:2 11278:1 11297:1 11301:2 11321:1 11347:1 11383:1 11388:2 11423:1 11436:4 11476:1 11509:1 11518:1 11535:5 11560:1 11621:5 11702:2 11731:2 11772:1 11838:2 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12065:1 12128:3 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:4 12638:1 12652:1 12673:2 12687:1 12713:1 12722:1 12794:2 12806:1 12814:1 12837:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:1 12987:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13165:2 13178:1 13185:1 13198:1 13211:1 13234:1 13254:1 13326:1 13345:1 13405:2 13413:1 13427:1 13430:2 13435:1 13450:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:1 14575:1 14588:1 14590:1 14594:2 14609:4 14623:1 14628:1 14635:5 14677:5 14707:1 14791:1 14817:1 14826:2 14829:2 14868:1 14872:1 14873:1 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15190:1 15206:4 15224:1 15255:5 15258:1 15263:1 15272:1 15283:1 15342:1 15354:1 15388:1 15394:3 15434:2 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15803:1 15811:1 15859:1 15926:2 15961:1 15986:1 15988:3 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:5 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16561:1 16566:1 16595:1 16597:1 16614:1 16639:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:1 16857:1 16889:1 16915:1 16946:5 16966:1 16967:1 17006:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:8 17147:1 17151:1 17196:1 17255:1 17270:3 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:3 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17517:2 17519:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:2 17914:3 17983:1 18049:1 18064:1 18075:1 18101:1 18120:1 18124:1 18212:5 18221:1 18227:1 18249:1 18269:1 18282:1 18286:1 18298:1 18325:1 18348:1 18387:2 18392:1 18399:1 18403:1 18442:1 18450:1 18465:1 18473:1 18517:2 18535:1 18554:2 18563:1 18589:1 18590:1 18631:3 18636:1 18645:1 18690:2 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18839:1 18863:1 18907:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19132:1 19140:1 19142:1 19152:1 19197:1 19275:1 19313:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:1 19481:2 19488:1 19517:1 19560:1 19574:4 19606:2 19672:1 19689:1 19709:1 19728:1 19740:1 19768:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19996:1 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20143:2 20150:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20376:1 20388:1
10 10:3 12:1 32:2 91:1 101:1 104:1 143:1 170:1 173:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 476:1 478:1 579:1 676:1 705:1 706:1 775:1 779:1 838:2 841:1 866:1 883:1 886:1 935:1 950:1 966:1 1017:2 1031:2 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:1 1244:1 1254:1 1271:1 1282:1 1306:1 1311:1 1315:3 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1442:1 1444:1 1445:3 1464:1 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:3 1649:1 1653:1 1683:2 1695:1 1736:1 1752:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2042:1 2076:1 2100:2 2136:1 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:3 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2824:1 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3133:1 3135:1 3141:1 3146:2 3149:1 3168:1 3202:1 3307:1 3315:1 3317:5 3329:1 3351:2 3410:1 3450:1 3467:1 3504:1 3518:2 3624:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3811:5 3819:1 3839:1 3879:1 3905:4 3910:1 3936:1 4003:1 4006:2 4009:1 4013:1 4059:4 4065:1 4071:2 4078:2 4109:1 4113:1 4114:1 4131:1 4142:1 4161:3 4164:1 4167:3 4184:1 4192:1 4253:5 4256:1 4277:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4636:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5058:2 5067:1 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5203:2 5236:2 5240:1 5241:3 5243:1 5264:1 5298:1 5316:1 5317:2 5355:1 5367:1 5381:1 5408:1 5437:622 5468:1 5491:1 5525:2 5655:1 5718:1 5719:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5837:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6044:1 6047:1 6139:2 6144:1 6198:1 6257:1 6266:2 6292:1 6297:1 6299:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:1 6635:1 6648:1 6660:1 6675:1 6686:2 6694:3 6703:1 6725:2 6734:1 6737:1 6747:3 6756:1 6816:1 6845:1 6867:1 6869:1 6874:2 6881:2 6905:2 6913:2 6936:1 6971:1 7003:1 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7250:1 7254:1 7263:1 7268:2 7280:1 7391:1 7392:2 7418:1 7459:1 7479:1 7490:1 7494:1 7509:1 7526:1 7555:2 7559:1 7582:1 7585:1 7589:1 7602:2 7664:1 7691:1 7740:1 7782:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:3 8167:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:2 8354:1 8369:1 8432:1 8455:1 8492:1 8543:1 8626:1 8638:1 8651:1 8671:1 8674:1 8706:1 8712:1 8769:1 8804:1 8810:1 8820:1 8830:1 8847:2 8926:1 8929:1 8939:1 8950:1 8964:5 9011:1 9029:9 9060:1 9124:2 9147:1 9182:1 9186:2 9216:1 9217:3 9338:1 9396:1 9402:1 9411:5 9430:1 9475:1 9483:1 9516:1 9533:3 9543:1 9544:1 9558:3 9578:1 9579:2 9588:1 9593:1 9696:1 9715:2 9726:2 9780:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10251:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10433:1 10452:2 10462:1 10466:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:3 10719:1 10726:1 10737:1 10743:1 10744:1 10754:2 10786:5 10790:2 10796:1 10812:7 10841:2 10843:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:2 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11423:1 11436:4 11476:1 11509:1 11518:1 11535:5 11560:1 11621:5 11702:2 11731:2 11772:1 11838:2 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12065:1 12128:3 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12321:1 12379:1 12491:1 12501:1 12521:1 12531:2 12581:4 12638:1 12652:1 12673:2 12687:1 12713:1 12722:1 12794:2 12806:1 12810:1 12814:1 12837:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:1 12987:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13165:2 13178:1 13185:1 13198:1 13211:1 13234:1 13254:1 13326:1 13345:1 13405:2 13413:1 13427:1 13430:2 13435:1 13450:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:2 14575:1 14588:1 14590:1 14594:2 14609:4 14621:1 14623:1 14628:1 14635:5 14677:5 14707:1 14718:1 14791:1 14812:1 14817:1 14826:2 14829:2 14868:1 14872:1 14873:1 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15190:1 15206:4 15224:1 15255:5 15258:1 15263:1 15272:1 15283:1 15342:1 15354:1 15383:1 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15803:1 15811:1 15859:1 15926:2 15961:1 15978:1 15986:1 15988:3 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:5 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16561:1 16566:1 16595:1 16597:1 16614:1 16639:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:1 16857:1 16889:1 16915:1 16946:5 16966:1 16967:1 17006:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:8 17147:1 17151:1 17196:1 17255:1 17270:3 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:4 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17517:2 17519:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:2 17914:3 17983:1 18049:1 18064:1 18075:1 18101:1 18120:1 18124:1 18212:5 18221:1 18227:1 18249:1 18269:1 18282:2 18286:1 18298:1 18325:1 18348:1 18387:2 18392:1 18399:1 18403:1 18442:1 18450:1 18465:1 18473:1 18502:1 18506:1 18517:2 18535:1 18554:2 18563:1 18589:1 18590:1 18631:3 18636:1 18637:1 18645:1 18690:2 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18804:1 18835:1 18839:1 18863:1 18907:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19132:1 19140:1 19142:1 19152:1 19197:1 19275:1 19313:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:2 19481:2 19488:1 19517:1 19560:1 19574:4 19606:2 19672:1 19689:1 19709:1 19728:1 19740:1 19768:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19996:2 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20143:2 20150:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20376:1 20388:1
10 10:3 12:1 18:1 32:2 91:1 101:1 104:2 143:1 170:1 173:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 476:1 478:1 579:1 676:1 705:1 706:1 775:1 779:1 838:3 841:1 866:2 883:1 886:1 935:1 950:1 952:1 966:1 1007:1 1017:2 1031:2 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:2 1244:1 1254:1 1271:1 1282:1 1306:1 1311:1 1315:3 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:3 1464:1 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:3 1649:1 1653:1 1683:2 1695:1 1736:1 1752:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1960:1 1970:1 2003:1 2042:1 2076:1 2100:3 2136:1 2142:1 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3133:1 3135:1 3141:1 3146:2 3149:1 3168:1 3202:1 3307:1 3315:1 3317:5 3329:1 3351:2 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3580:1 3624:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3811:5 3819:1 3839:1 3879:1 3905:4 3910:1 3936:1 4003:1 4006:3 4009:1 4013:1 4059:4 4065:1 4071:2 4078:2 4109:1 4113:1 4114:1 4131:1 4142:1 4161:3 4164:1 4167:3 4184:1 4192:1 4253:5 4256:1 4257:1 4267:1 4277:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5058:2 5067:2 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5203:2 5216:1 5236:2 5240:1 5241:3 5243:1 5264:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:1 5381:1 5408:1 5437:660 5468:1 5491:1 5525:2 5655:1 5718:1 5719:1 5724:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5837:1 5856:1 5929:1 5933:1 5940:1 5945:8 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6139:2 6144:1 6198:1 6257:1 6266:2 6292:1 6297:2 6299:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:1 6635:1 6648:1 6660:1 6675:1 6686:2 6694:3 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:1 6816:1 6845:1 6867:1 6869:1 6874:2 6881:2 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7391:1 7392:2 7418:2 7459:1 7479:1 7490:1 7494:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7602:2 7664:1 7691:1 7740:1 7782:1 7785:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:8 8095:3 8167:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:2 8354:1 8369:1 8432:1 8442:1 8455:1 8492:1 8543:1 8626:1 8638:1 8651:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8847:2 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 9011:1 9029:9 9060:1 9124:2 9147:1 9182:1 9186:2 9216:2 9217:3 9266:1 9338:1 9396:1 9402:1 9411:5 9430:1 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:3 9578:1 9579:2 9588:1 9593:1 9607:1 9696:1 9715:2 9726:2 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10251:1 10254:1 10346:1 10377:8 10382:1 10390:1 10391:2 10417:1 10433:2 10452:2 10462:1 10466:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:3 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:5 10790:2 10796:1 10812:7 10841:2 10843:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:2 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11423:1 11436:4 11476:1 11509:1 11518:1 11535:5 11560:1 11621:5 11702:2 11731:2 11772:1 11822:1 11838:2 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12065:1 12128:3 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12321:1 12379:1 12491:1 12501:2 12521:1 12531:2 12581:4 12638:1 12652:1 12673:2 12687:1 12713:1 12722:1 12794:2 12806:1 12810:1 12814:1 12837:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:1 12987:1 13054:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13165:2 13178:1 13185:1 13198:1 13211:2 13234:1 13254:1 13326:1 13345:1 13405:2 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:2 14540:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:1 14623:1 14628:1 14635:5 14677:5 14707:1 14718:1 14791:1 14812:1 14817:1 14818:1 14826:2 14829:2 14868:1 14872:1 14873:1 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15190:2 15206:4 15224:1 15255:5 15258:1 15263:1 15272:1 15283:1 15342:1 15354:1 15383:1 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15760:1 15803:1 15811:1 15859:1 15926:2 15929:1 15961:1 15978:2 15986:1 15988:3 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:5 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16561:1 16566:1 16595:1 16597:1 16614:1 16639:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:1 16857:1 16889:1 16915:1 16946:5 16966:1 16967:1 17006:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:8 17147:1 17151:1 17196:1 17255:1 17270:3 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:4 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:1 18101:2 18120:1 18124:1 18212:5 18221:1 18227:1 18249:2 18269:1 18282:2 18286:1 18298:1 18325:1 18348:1 18387:2 18392:1 18399:1 18403:1 18442:1 18450:1 18465:1 18473:1 18502:1 18506:1 18517:2 18529:1 18535:1 18554:2 18563:1 18570:1 18589:1 18590:1 18631:3 18636:1 18637:1 18645:1 18690:3 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18835:1 18839:1 18863:1 18907:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19125:1 19132:1 19140:1 19142:1 19152:1 19197:1 19275:1 19289:1 19313:1 19343:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:2 19481:2 19488:1 19517:1 19560:1 19574:4 19606:2 19672:1 19689:1 19709:1 19728:1 19740:1 19768:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19996:2 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20143:2 20150:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20376:1 20388:1
10 10:3 12:1 18:1 32:2 91:1 101:1 104:2 143:1 170:1 173:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 476:1 478:1 575:1 579:1 676:1 705:1 706:1 775:1 779:1 838:3 841:1 866:2 883:1 886:1 935:1 950:1 952:1 966:1 1007:1 1017:2 1031:2 1076:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:2 1244:1 1254:1 1271:1 1282:1 1303:1 1306:1 1311:1 1315:3 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:3 1464:1 1484:1 1492:1 1537:2 1540:1 1551:1 1568:1 1573:1 1574:1 1647:3 1649:1 1653:1 1683:2 1695:1 1736:1 1752:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1960:1 1967:1 1970:1 2003:1 2042:1 2076:1 2100:3 2136:1 2142:1 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:1 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3133:2 3135:1 3141:1 3146:2 3149:1 3168:1 3202:1 3307:1 3315:1 3317:6 3329:1 3351:2 3370:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3580:1 3607:1 3624:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3811:5 3819:1 3825:1 3839:1 3879:1 3905:4 3910:1 3936:1 4003:1 4006:3 4009:1 4013:1 4059:4 4065:1 4071:2 4078:2 4109:1 4113:1 4114:1 4131:1 4142:1 4161:3 4164:1 4167:3 4184:1 4192:1 4253:5 4256:1 4257:1 4267:1 4277:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5203:2 5216:1 5236:2 5240:1 5241:3 5243:1 5264:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:1 5381:1 5408:1 5437:692 5468:1 5491:1 5525:2 5650:1 5655:1 5718:1 5719:1 5724:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5837:1 5856:1 5929:1 5933:1 5940:1 5945:9 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6139:2 6144:1 6198:1 6257:1 6266:2 6292:1 6297:2 6299:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:1 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:1 6686:2 6694:3 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:1 6816:1 6845:1 6867:1 6869:1 6874:2 6881:2 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7391:1 7392:2 7418:2 7459:1 7479:1 7490:1 7494:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7602:2 7664:1 7691:1 7740:1 7782:1 7785:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:9 8095:3 8167:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:2 8354:1 8369:1 8432:1 8442:1 8455:1 8492:1 8507:1 8543:1 8626:1 8638:1 8651:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8847:2 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 9011:1 9029:10 9060:1 9124:2 9147:1 9182:1 9186:2 9216:2 9217:3 9266:1 9338:1 9396:1 9402:1 9411:6 9430:1 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:3 9578:1 9579:2 9588:1 9593:1 9607:1 9696:1 9715:2 9726:2 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10150:1 10160:1 10251:1 10254:1 10346:1 10377:9 10382:1 10390:1 10391:2 10417:1 10433:2 10452:2 10462:1 10466:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:3 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:6 10790:2 10796:1 10812:8 10841:2 10843:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:2 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11423:1 11436:4 11476:1 11509:1 11518:1 11535:5 11560:1 11621:5 11702:2 11731:2 11772:1 11822:1 11838:2 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12065:1 12128:3 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12321:1 12379:1 12491:1 12501:2 12521:1 12531:2 12581:4 12638:1 12652:1 12673:2 12687:1 12713:1 12722:1 12794:2 12806:1 12810:2 12814:1 12837:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:1 12987:1 13054:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13165:2 13178:1 13185:1 13198:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:2 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:2 14540:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:1 14623:1 14628:1 14635:5 14677:6 14707:1 14718:1 14791:1 14812:1 14817:1 14818:1 14826:2 14829:2 14868:1 14872:1 14873:1 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:1 15187:1 15190:2 15206:4 15224:1 15255:5 15258:1 15263:1 15272:1 15283:1 15342:1 15354:1 15383:1 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15978:3 15986:1 15988:3 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:5 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16561:1 16566:1 16595:1 16597:1 16614:1 16639:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:1 16857:1 16889:1 16899:1 16915:1 16946:5 16966:1 16967:1 17006:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:9 17147:1 17151:1 17196:1 17255:1 17270:3 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:4 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:1 18101:2 18120:1 18124:1 18137:1 18212:5 18221:1 18227:1 18249:2 18269:1 18282:2 18286:1 18298:1 18325:1 18348:1 18387:2 18392:1 18399:1 18403:1 18442:1 18450:1 18456:1 18465:1 18473:1 18502:1 18506:1 18517:2 18529:1 18535:1 18554:2 18563:1 18570:1 18589:1 18590:1 18631:3 18636:1 18637:1 18645:1 18690:3 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19125:1 19132:1 19140:1 19142:1 19152:1 19197:1 19275:1 19289:1 19313:1 19343:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:2 19481:2 19488:1 19517:1 19560:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19996:2 19999:1 20027:1 20028:1 20059:1 20066:2 20082:1 20086:1 20105:1 20123:1 20143:2 20150:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20376:1 20388:1
10 10:3 12:1 18:1 32:2 91:1 101:1 104:2 143:1 170:1 173:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 476:1 478:1 575:2 579:1 676:1 705:1 706:1 775:1 779:1 838:3 841:1 866:2 883:1 886:1 935:1 950:1 952:1 966:1 1007:1 1017:2 1031:2 1046:1 1076:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:2 1244:1 1254:1 1271:1 1282:1 1303:1 1306:1 1311:1 1315:3 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:3 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1568:1 1573:1 1574:1 1647:3 1649:1 1653:1 1683:2 1695:1 1704:1 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1960:1 1967:1 1970:1 2003:1 2042:1 2076:1 2079:1 2100:3 2136:1 2142:1 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2289:2 2304:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:1 3133:2 3135:1 3141:1 3146:2 3149:1 3168:1 3202:1 3307:1 3315:1 3317:7 3329:1 3351:2 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3580:1 3607:1 3624:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3784:1 3811:5 3819:1 3825:1 3839:1 3879:1 3905:4 3910:1 3936:1 4003:1 4006:3 4008:1 4009:1 4013:1 4032:1 4059:4 4065:1 4071:2 4078:2 4109:1 4113:1 4114:1 4131:2 4142:1 4161:3 4164:1 4167:3 4184:1 4192:1 4253:5 4256:1 4257:1 4267:1 4277:1 4297:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4627:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5203:2 5216:1 5236:2 5240:1 5241:3 5243:1 5264:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:1 5381:1 5408:1 5437:730 5468:1 5491:1 5525:2 5631:1 5650:1 5655:1 5718:1 5719:1 5724:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5837:1 5856:1 5929:1 5933:1 5940:1 5945:10 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6139:2 6144:1 6198:1 6257:1 6266:2 6292:1 6297:2 6299:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:3 6686:2 6694:3 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6845:1 6866:1 6867:1 6869:1 6874:2 6881:2 6882:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7361:1 7391:1 7392:2 7418:3 7459:1 7479:1 7490:1 7494:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:1 7602:2 7664:1 7691:1 7740:1 7780:1 7782:2 7785:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:10 8095:3 8130:1 8167:2 8169:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:2 8354:1 8369:1 8432:1 8442:1 8455:1 8492:1 8507:1 8543:1 8626:2 8638:1 8651:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8847:2 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 9011:1 9029:11 9060:1 9124:2 9147:1 9182:1 9186:2 9216:2 9217:3 9236:1 9266:1 9338:1 9396:1 9402:1 9411:7 9430:1 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:3 9567:1 9578:1 9579:2 9588:1 9593:1 9607:1 9608:1 9628:1 9696:1 9715:2 9726:2 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9946:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10251:1 10254:1 10275:1 10293:1 10346:1 10377:10 10382:1 10390:1 10391:2 10417:1 10433:2 10452:2 10462:1 10466:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:3 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:7 10790:2 10796:1 10812:9 10841:2 10843:2 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:2 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11423:1 11436:5 11476:1 11509:1 11518:1 11535:5 11560:1 11621:5 11702:2 11731:2 11745:1 11772:1 11822:1 11838:2 11874:1 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12023:1 12046:1 12065:1 12121:1 12128:3 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12321:1 12379:1 12406:1 12491:1 12501:2 12521:1 12531:2 12581:4 12638:1 12652:1 12673:2 12687:1 12700:1 12713:1 12722:1 12794:2 12806:1 12810:2 12814:1 12837:1 12845:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:1 12987:1 13054:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13156:1 13163:1 13165:2 13178:1 13185:1 13198:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:1 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:2 14540:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:1 14623:1 14628:1 14635:5 14677:7 14707:1 14718:1 14791:1 14812:1 14817:1 14818:1 14826:2 14829:2 14868:1 14872:1 14873:1 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:2 15187:1 15190:2 15206:4 15224:1 15255:5 15258:2 15263:1 15272:1 15283:1 15342:1 15354:1 15383:1 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:3 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:5 16280:1 16349:1 16352:1 16358:2 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16639:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:2 16857:1 16889:1 16899:1 16915:1 16946:5 16966:1 16967:1 17006:1 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:10 17147:1 17151:1 17192:1 17196:1 17228:1 17255:1 17270:3 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:4 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:1 18101:2 18120:1 18124:1 18137:1 18212:5 18221:1 18227:1 18249:2 18269:1 18282:2 18286:1 18298:1 18325:1 18348:1 18387:2 18392:2 18399:1 18403:1 18442:1 18450:1 18456:2 18465:1 18473:1 18502:1 18506:1 18517:2 18529:1 18535:1 18554:2 18563:1 18570:1 18589:1 18590:1 18631:3 18636:1 18637:1 18645:1 18690:3 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19125:1 19132:1 19140:1 19142:1 19152:1 19174:1 19197:1 19275:1 19289:1 19313:1 19316:2 19343:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:2 19481:2 19488:1 19517:1 19560:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:1 19996:2 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:1 20086:1 20105:1 20123:1 20143:2 20150:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 32:2 91:1 101:1 104:2 143:1 170:1 173:1 269:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 476:1 478:1 548:1 575:2 579:1 584:1 676:1 705:1 706:1 775:1 779:1 838:3 841:1 866:2 883:1 886:1 935:1 950:2 952:1 966:1 1007:1 1017:2 1031:2 1046:1 1076:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:2 1244:1 1254:1 1271:2 1282:1 1303:1 1306:1 1311:1 1315:3 1342:1 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1568:1 1573:1 1574:1 1647:4 1649:1 1653:1 1683:2 1695:1 1704:1 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1903:1 1918:1 1960:1 1967:1 1970:1 2003:1 2042:1 2076:1 2079:1 2100:3 2136:1 2142:1 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2289:2 2304:1 2320:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2809:1 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3133:2 3135:1 3141:1 3146:2 3149:1 3168:1 3202:1 3242:1 3307:1 3315:1 3317:9 3329:1 3351:2 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3520:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3784:1 3811:5 3819:1 3825:1 3839:1 3879:1 3905:4 3910:1 3936:1 3990:1 4003:1 4006:3 4008:1 4009:1 4013:1 4032:1 4059:4 4065:1 4071:2 4078:2 4109:1 4113:1 4114:1 4131:2 4142:1 4161:3 4164:1 4167:3 4184:1 4192:1 4215:1 4253:5 4256:1 4257:1 4267:1 4277:1 4297:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4627:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4837:1 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5202:1 5203:2 5216:1 5236:2 5240:1 5241:4 5243:1 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:1 5381:1 5387:1 5408:1 5437:747 5468:1 5479:1 5491:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:1 5719:1 5724:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5945:12 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6139:2 6144:1 6198:1 6234:1 6257:1 6266:2 6292:1 6297:2 6299:1 6300:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:3 6686:2 6694:4 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6826:1 6845:1 6866:1 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7361:2 7391:1 7392:2 7418:3 7430:1 7459:1 7479:1 7490:1 7494:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7664:1 7691:1 7740:1 7780:1 7782:2 7785:1 7807:1 7845:1 7854:2 7879:1 7898:1 7919:1 7928:1 7962:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8167:2 8169:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:1 8492:1 8507:1 8543:1 8626:2 8638:2 8643:1 8651:1 8670:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8847:3 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 9011:1 9029:13 9060:1 9124:2 9147:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9338:1 9396:1 9402:1 9411:9 9430:1 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:1 9593:1 9607:1 9608:1 9628:1 9696:1 9715:3 9726:2 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9943:1 9946:1 9960:3 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10233:1 10251:1 10254:1 10275:1 10293:1 10324:1 10346:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10433:2 10452:2 10462:1 10463:1 10466:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:1 10718:4 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:9 10790:2 10796:1 10812:10 10841:2 10843:2 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11402:1 11423:1 11436:5 11452:1 11476:2 11509:1 11518:1 11535:5 11548:1 11560:1 11621:5 11702:2 11731:2 11745:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12023:1 12046:1 12065:1 12121:1 12128:4 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12302:1 12321:1 12379:1 12406:1 12491:1 12501:2 12521:1 12531:2 12581:5 12638:1 12652:1 12673:2 12687:1 12700:1 12713:1 12722:1 12794:2 12806:1 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:1 12987:1 13054:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13156:1 13163:1 13165:2 13178:1 13185:1 13198:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13929:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:2 14540:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:1 14623:1 14628:1 14635:5 14677:9 14707:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14823:1 14826:2 14829:2 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:2 15187:1 15190:2 15206:4 15224:1 15255:5 15258:2 15263:1 15272:1 15283:1 15342:1 15354:1 15383:1 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15725:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:3 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16264:5 16280:1 16349:1 16352:1 16358:2 16379:1 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:2 16857:1 16889:1 16899:1 16915:2 16946:5 16966:1 16967:1 17006:2 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17192:1 17196:1 17228:1 17255:1 17270:4 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:4 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17527:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:1 18101:2 18120:1 18124:1 18137:1 18212:5 18221:1 18227:1 18249:2 18269:1 18282:2 18286:1 18289:1 18298:1 18325:1 18348:1 18368:1 18387:2 18392:2 18399:1 18403:1 18442:1 18450:1 18456:2 18465:1 18473:1 18502:1 18506:1 18517:2 18529:1 18535:1 18554:2 18563:1 18570:1 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:4 18697:2 18735:1 18745:1 18749:1 18750:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:2 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19125:1 19132:1 19140:1 19142:1 19152:1 19174:1 19197:1 19275:1 19289:1 19311:1 19313:1 19316:2 19343:1 19345:1 19365:1 19370:1 19373:1 19385:1 19468:1 19470:2 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:1 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:1 19996:2 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:1 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:2 91:1 101:1 104:2 119:1 143:1 170:1 173:1 269:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 476:1 478:1 548:1 575:2 579:1 584:1 676:1 705:1 706:1 775:1 779:1 838:4 841:1 866:2 875:1 883:1 886:1 935:1 950:2 952:1 966:1 1007:1 1017:2 1031:2 1046:1 1076:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:2 1244:1 1254:1 1271:2 1282:1 1303:1 1306:1 1311:1 1315:3 1342:1 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1568:1 1573:1 1574:1 1647:4 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1834:1 1835:1 1840:1 1848:1 1853:2 1855:1 1867:1 1891:1 1903:1 1918:1 1960:1 1967:1 1970:1 2003:1 2042:1 2076:1 2079:1 2100:3 2136:1 2142:2 2143:1 2146:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2289:2 2304:1 2320:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2809:1 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3133:2 3135:1 3141:1 3146:2 3149:1 3168:1 3202:1 3242:1 3307:1 3315:1 3317:9 3329:1 3351:2 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3520:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3784:1 3811:5 3819:1 3825:1 3839:1 3879:1 3905:4 3910:1 3936:1 3990:1 4003:1 4006:4 4008:2 4009:1 4013:1 4032:1 4059:5 4065:1 4071:2 4078:2 4109:1 4113:1 4114:2 4131:2 4142:1 4161:3 4164:1 4167:4 4184:1 4192:1 4215:1 4253:5 4256:1 4257:1 4267:1 4277:1 4297:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:1 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4627:1 4628:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4837:1 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5202:1 5203:2 5216:1 5236:2 5240:1 5241:4 5243:1 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:1 5375:1 5381:1 5387:1 5408:1 5437:799 5468:1 5479:1 5491:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:1 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5945:12 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6105:1 6139:2 6144:1 6198:1 6234:1 6257:1 6266:2 6292:1 6297:2 6299:1 6300:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:4 6686:2 6694:4 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6826:1 6845:1 6866:1 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7361:2 7391:1 7392:2 7403:1 7418:3 7430:1 7459:1 7479:1 7490:1 7494:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7664:1 7691:1 7740:1 7780:1 7782:2 7785:1 7807:1 7845:1 7846:1 7854:2 7879:1 7898:1 7919:1 7928:1 7945:1 7962:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8167:2 8169:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:1 8492:1 8507:1 8543:1 8626:2 8638:2 8643:1 8651:1 8663:1 8670:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 9011:1 9029:13 9060:1 9124:2 9147:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9338:1 9396:1 9402:1 9411:9 9430:1 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:1 9592:1 9593:1 9607:1 9608:1 9628:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:1 9960:3 9994:1 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10214:1 10233:1 10251:1 10254:1 10275:1 10293:1 10324:1 10346:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10433:2 10452:2 10462:1 10463:1 10466:1 10517:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:2 10718:4 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:9 10790:2 10796:1 10812:10 10841:3 10843:2 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11402:1 11423:1 11436:6 11438:1 11452:1 11476:2 11509:1 11518:1 11535:5 11548:1 11560:1 11621:5 11702:2 11731:2 11745:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12023:1 12046:1 12065:1 12121:1 12128:4 12137:2 12155:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12302:1 12321:1 12379:1 12406:1 12450:1 12480:1 12491:1 12501:2 12521:2 12531:2 12581:5 12638:1 12652:1 12673:2 12687:1 12700:1 12713:1 12722:1 12794:2 12796:1 12806:1 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13100:1 13103:1 13125:3 13136:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13929:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:2 14540:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:2 14623:1 14628:1 14635:5 14677:9 14694:1 14707:1 14715:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14823:1 14826:2 14829:2 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:2 15187:1 15190:2 15206:4 15224:1 15255:5 15258:2 15263:1 15272:1 15283:1 15342:1 15354:1 15383:2 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:3 15990:1 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16257:1 16264:5 16280:1 16349:1 16352:1 16358:2 16379:1 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:2 16857:1 16889:1 16899:1 16915:2 16946:5 16966:1 16967:1 17006:2 17053:1 17058:2 17105:3 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17192:1 17196:1 17228:1 17255:1 17270:4 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:4 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17527:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:1 18078:1 18101:2 18120:1 18124:1 18137:1 18212:5 18221:2 18227:1 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18325:1 18328:1 18348:1 18368:1 18387:2 18392:2 18399:1 18403:2 18442:1 18450:1 18456:2 18465:1 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:2 18557:1 18563:1 18570:2 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:4 18697:2 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:2 19004:1 19013:1 19032:1 19051:1 19057:1 19065:2 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:1 19174:1 19197:1 19275:1 19289:1 19311:1 19313:1 19316:2 19343:1 19345:1 19365:2 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:2 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:1 19996:2 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:2 91:1 101:1 104:2 119:1 143:1 170:1 173:1 269:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 438:1 476:1 478:1 548:1 575:2 579:1 584:1 676:1 705:1 706:1 775:1 779:1 838:4 841:2 866:2 875:1 883:1 886:1 935:1 950:2 952:1 966:1 1007:1 1017:2 1031:2 1046:2 1076:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1223:1 1236:2 1240:2 1244:1 1254:1 1271:2 1282:1 1303:1 1306:1 1311:1 1315:4 1342:1 1344:1 1356:1 1380:2 1386:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1568:1 1573:1 1574:1 1647:4 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1834:1 1835:2 1840:2 1848:1 1853:2 1855:1 1867:1 1891:1 1903:1 1918:1 1960:1 1967:1 1970:1 2003:1 2042:1 2076:1 2079:1 2100:3 2110:1 2136:1 2142:2 2143:1 2146:1 2147:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2289:2 2304:1 2320:1 2323:4 2334:1 2339:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2771:1 2809:1 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3133:2 3135:1 3136:1 3141:1 3144:1 3146:2 3149:1 3154:1 3168:1 3202:1 3242:1 3307:1 3315:1 3317:9 3329:1 3351:2 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3520:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3784:1 3806:1 3811:5 3819:1 3825:1 3839:1 3854:1 3879:1 3905:4 3910:1 3921:1 3936:1 3990:1 4003:1 4006:4 4008:2 4009:1 4013:1 4032:2 4059:5 4065:1 4071:2 4078:2 4109:1 4113:1 4114:2 4131:2 4142:1 4161:3 4164:1 4167:4 4184:1 4192:1 4215:1 4253:5 4256:1 4257:1 4267:1 4277:1 4297:1 4308:2 4322:1 4341:1 4382:1 4409:2 4411:1 4421:1 4437:2 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4627:1 4628:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4837:1 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:1 5030:1 5032:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5202:1 5203:2 5216:1 5236:2 5240:1 5241:4 5243:1 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:836 5468:1 5479:1 5491:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:1 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5945:12 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6234:1 6257:1 6266:2 6292:1 6297:2 6299:1 6300:1 6325:1 6326:2 6351:2 6399:3 6410:1 6420:2 6458:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:4 6677:1 6686:2 6694:4 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6826:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7361:2 7391:1 7392:2 7403:1 7418:3 7430:1 7459:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7664:1 7691:1 7740:1 7780:1 7782:2 7785:1 7807:1 7845:1 7846:1 7854:2 7879:1 7898:1 7919:1 7922:1 7928:1 7945:1 7962:1 7963:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8167:2 8169:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:1 8492:1 8507:1 8543:1 8626:2 8638:2 8642:1 8643:1 8651:1 8663:1 8670:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 9011:1 9029:13 9060:1 9124:2 9147:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9338:1 9396:1 9402:1 9411:9 9430:1 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:2 9592:1 9593:1 9607:1 9608:1 9628:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9994:1 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10214:1 10233:1 10251:1 10254:1 10275:1 10293:1 10324:1 10346:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10433:2 10452:2 10462:1 10463:1 10466:1 10517:1 10556:1 10565:1 10603:1 10611:2 10616:1 10638:1 10677:1 10682:2 10718:4 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:9 10790:2 10796:1 10812:12 10841:3 10843:2 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11402:1 11423:1 11436:8 11438:1 11452:1 11476:2 11509:1 11518:1 11535:5 11548:1 11560:1 11621:5 11702:2 11731:2 11745:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12065:1 12121:1 12128:4 12137:2 12155:1 12156:1 12164:1 12181:2 12196:3 12210:1 12213:2 12289:1 12292:1 12302:1 12306:1 12321:1 12379:1 12406:1 12450:1 12480:1 12491:1 12501:2 12521:2 12531:2 12581:5 12638:1 12652:1 12673:2 12687:1 12700:1 12713:1 12722:1 12740:1 12794:2 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13100:1 13103:1 13124:1 13125:3 13136:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:2 13914:1 13919:1 13929:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:2 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:3 14540:1 14561:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:2 14623:1 14628:1 14635:5 14677:9 14694:1 14707:1 14715:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14823:1 14826:2 14829:2 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:2 15187:1 15190:2 15206:4 15224:1 15255:5 15258:2 15263:2 15272:1 15283:1 15342:1 15354:1 15383:2 15388:1 15394:3 15434:2 15449:1 15476:1 15498:1 15507:2 15573:1 15575:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:3 15990:1 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16213:1 16257:1 16264:5 16280:1 16349:1 16352:1 16358:2 16379:1 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:2 16857:1 16889:1 16899:1 16915:2 16946:5 16966:1 16967:1 17006:2 17053:1 17058:2 17090:1 17105:3 17106:1 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17191:1 17192:1 17196:1 17228:1 17255:1 17270:4 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:5 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17527:1 17532:1 17542:1 17567:2 17580:3 17588:1 17617:5 17628:1 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:1 18078:1 18101:2 18120:1 18124:1 18137:1 18180:1 18212:5 18221:2 18227:1 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18325:1 18327:1 18328:1 18348:1 18368:1 18387:2 18392:3 18399:1 18403:2 18442:1 18450:1 18456:2 18465:1 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:2 18557:1 18563:1 18570:2 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:4 18697:2 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19051:1 19057:1 19065:2 19069:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:1 19156:1 19174:1 19197:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:2 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:2 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:2 91:1 101:1 104:2 119:1 143:1 170:1 173:1 269:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 438:1 476:1 478:1 548:1 558:1 575:2 579:1 584:1 676:1 705:1 706:1 751:1 775:1 779:1 838:4 841:2 866:2 875:1 883:1 886:1 935:1 950:2 952:1 966:1 1007:1 1017:3 1031:2 1046:2 1076:1 1081:3 1082:1 1112:1 1121:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:3 1240:2 1244:1 1254:1 1271:2 1282:1 1303:1 1306:1 1311:1 1315:4 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1568:1 1573:1 1574:1 1647:4 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1853:2 1855:1 1867:1 1891:1 1903:1 1918:1 1960:1 1967:1 1970:1 2003:1 2042:1 2076:1 2079:1 2100:3 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2289:3 2304:1 2320:1 2323:4 2334:1 2339:1 2404:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2771:1 2809:1 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3133:2 3135:1 3136:1 3141:1 3144:1 3146:2 3149:1 3154:1 3168:1 3202:1 3223:1 3242:1 3307:1 3315:1 3317:9 3329:1 3351:2 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:2 3520:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:2 3692:1 3695:1 3698:1 3710:1 3727:1 3754:1 3765:2 3780:1 3784:2 3806:1 3811:5 3819:1 3825:1 3839:1 3854:1 3879:1 3905:4 3910:1 3921:1 3936:1 3990:1 4003:1 4006:4 4008:2 4009:1 4013:1 4032:2 4059:5 4065:1 4071:2 4078:2 4109:1 4113:1 4114:2 4131:3 4142:1 4161:3 4164:1 4167:4 4184:1 4192:1 4215:1 4253:5 4256:1 4257:1 4267:1 4277:1 4297:1 4308:2 4322:1 4341:1 4360:1 4382:1 4409:2 4411:1 4421:1 4437:2 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4627:1 4628:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4837:1 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:2 5030:1 5032:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5202:1 5203:2 5216:1 5236:2 5240:1 5241:4 5243:2 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:855 5468:1 5479:1 5491:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:2 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5945:12 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6234:1 6257:1 6266:2 6292:1 6297:2 6299:1 6300:1 6325:1 6326:3 6351:2 6399:3 6410:1 6420:2 6458:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:4 6677:1 6686:2 6694:4 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6826:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:2 7280:1 7361:2 7391:1 7392:2 7403:1 7418:3 7430:1 7459:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7664:1 7691:1 7740:1 7780:1 7782:3 7785:1 7807:1 7845:1 7846:1 7854:2 7879:1 7898:1 7919:1 7922:1 7928:1 7945:1 7962:1 7963:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8167:3 8169:1 8176:2 8236:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:1 8492:1 8507:1 8543:1 8626:2 8638:2 8642:1 8643:1 8651:1 8663:1 8670:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 8973:1 9011:1 9029:13 9060:1 9124:2 9147:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9338:1 9396:1 9402:1 9411:9 9430:2 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:2 9592:1 9593:1 9607:1 9608:1 9628:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9994:1 9995:1 10012:1 10019:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10214:1 10233:1 10251:1 10254:1 10275:1 10293:1 10324:1 10346:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10425:1 10433:2 10452:2 10462:1 10463:1 10466:1 10517:1 10556:1 10565:2 10603:1 10611:2 10616:1 10638:1 10677:1 10682:2 10718:4 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10786:9 10790:2 10796:1 10812:12 10841:3 10843:3 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11105:2 11112:1 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11402:1 11423:1 11436:9 11438:1 11452:1 11476:2 11509:1 11518:1 11535:5 11548:1 11560:1 11621:5 11701:1 11702:2 11731:2 11745:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12065:1 12121:1 12128:4 12137:2 12155:1 12156:1 12164:2 12181:2 12196:3 12210:1 12213:2 12289:1 12292:1 12302:1 12306:1 12321:1 12379:1 12406:1 12450:1 12480:1 12491:1 12501:2 12521:2 12531:3 12581:5 12638:1 12652:1 12673:2 12687:1 12700:1 12713:1 12722:1 12740:1 12794:2 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13136:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:1 13208:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13767:1 13781:1 13824:2 13875:2 13883:1 13910:3 13914:1 13919:1 13929:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14032:1 14037:1 14067:1 14083:1 14094:1 14107:1 14112:5 14140:1 14160:1 14184:2 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:4 14525:3 14540:1 14561:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:2 14623:1 14628:1 14635:5 14677:9 14694:1 14707:1 14715:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14823:1 14826:2 14829:2 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:2 15187:1 15190:2 15206:4 15224:1 15255:5 15258:3 15263:2 15272:1 15283:1 15342:1 15354:1 15383:2 15388:1 15394:3 15434:2 15449:1 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:3 15990:1 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16204:1 16213:1 16257:1 16264:5 16280:1 16349:1 16352:1 16358:2 16379:1 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:3 16857:1 16889:1 16899:1 16915:2 16946:5 16966:1 16967:1 17006:2 17053:1 17058:2 17090:1 17105:3 17106:1 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17191:1 17192:1 17196:1 17228:1 17255:1 17270:4 17271:1 17287:1 17288:1 17300:1 17306:1 17359:1 17408:1 17418:1 17440:5 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17527:1 17532:1 17542:1 17567:3 17580:3 17588:1 17617:5 17628:2 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:2 18120:1 18124:1 18137:1 18180:1 18212:5 18221:2 18227:1 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18325:1 18327:1 18328:1 18348:1 18368:1 18387:2 18392:3 18399:1 18403:2 18442:1 18450:1 18456:2 18465:1 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:3 18557:1 18563:1 18570:2 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:4 18697:3 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19051:1 19057:1 19065:2 19069:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:1 19156:1 19174:1 19197:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:2 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:2 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:2 91:1 101:1 104:2 119:1 143:1 170:1 173:1 269:1 344:5 357:3 366:1 376:1 402:1 417:1 426:1 438:1 476:1 478:1 548:1 558:1 575:2 579:1 584:1 669:1 676:1 705:1 706:1 751:1 775:1 779:1 838:4 841:2 866:2 875:1 883:1 886:1 935:1 950:2 952:1 966:1 1007:1 1017:3 1031:3 1046:2 1076:1 1081:4 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:3 1240:2 1244:1 1254:1 1271:2 1282:1 1303:1 1306:1 1311:1 1315:4 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1568:1 1573:1 1574:1 1647:4 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1853:2 1855:1 1867:1 1891:1 1903:1 1918:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2076:1 2079:1 2100:3 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:1 2151:1 2153:2 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2289:3 2304:1 2320:1 2323:4 2334:1 2339:1 2404:1 2413:1 2417:3 2427:1 2448:1 2477:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:2 2593:4 2609:2 2613:3 2659:1 2687:1 2689:1 2700:1 2764:2 2771:1 2809:1 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3133:2 3135:1 3136:1 3141:1 3144:1 3146:2 3149:2 3154:1 3168:1 3202:1 3223:1 3242:1 3307:2 3315:1 3317:9 3329:1 3351:2 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3504:1 3518:3 3520:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:3 3692:1 3695:1 3698:1 3710:1 3727:1 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:5 3819:1 3825:1 3839:1 3854:1 3879:1 3905:4 3910:1 3921:1 3936:1 3990:1 4003:1 4006:4 4008:2 4009:1 4013:1 4032:2 4059:5 4065:1 4071:2 4078:2 4109:1 4113:1 4114:2 4131:3 4142:1 4161:3 4164:1 4167:4 4184:1 4192:1 4215:1 4253:5 4256:1 4257:1 4267:1 4277:1 4297:1 4308:2 4322:1 4341:1 4360:1 4382:1 4409:2 4411:1 4421:1 4437:2 4461:1 4471:1 4505:1 4506:1 4538:1 4543:1 4546:1 4589:1 4627:1 4628:1 4636:1 4666:1 4673:4 4686:1 4716:1 4755:1 4789:1 4810:1 4827:2 4831:5 4837:1 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5153:1 5188:1 5202:1 5203:2 5216:1 5236:2 5240:1 5241:4 5243:2 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:873 5468:1 5479:1 5491:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:2 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5945:12 5964:1 5972:1 5974:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6234:1 6257:1 6266:2 6292:1 6297:2 6299:1 6300:1 6325:1 6326:3 6351:2 6399:3 6410:1 6420:2 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:1 6675:4 6677:1 6686:2 6694:4 6703:1 6725:2 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6826:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:3 7280:1 7361:2 7391:1 7392:2 7403:1 7418:3 7430:1 7459:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7664:1 7691:1 7740:1 7780:1 7782:3 7785:1 7807:1 7845:1 7846:1 7854:2 7879:1 7898:1 7919:1 7922:1 7928:1 7945:1 7962:1 7963:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8167:3 8169:1 8176:2 8236:1 8249:1 8257:4 8264:1 8271:2 8319:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:2 8492:1 8507:1 8543:1 8626:2 8638:2 8641:1 8642:1 8643:1 8651:1 8663:1 8670:1 8671:1 8674:1 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:5 8973:1 9011:1 9029:13 9060:1 9124:2 9147:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9338:1 9396:1 9402:1 9411:9 9430:2 9475:1 9483:1 9516:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:2 9589:1 9592:1 9593:1 9607:1 9608:1 9628:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9994:1 9995:1 10012:1 10019:1 10022:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10214:1 10233:1 10251:1 10254:1 10275:1 10293:1 10324:1 10346:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10425:1 10433:2 10452:2 10462:1 10463:1 10466:1 10517:1 10556:1 10565:2 10603:1 10611:2 10616:1 10619:1 10638:1 10677:1 10682:2 10718:4 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10781:1 10786:9 10790:2 10796:1 10812:13 10841:3 10843:3 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11087:1 11105:2 11112:1 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11347:1 11383:1 11388:2 11402:1 11423:1 11436:9 11438:1 11452:1 11476:2 11509:1 11518:1 11535:5 11548:1 11560:1 11621:5 11701:1 11702:2 11731:2 11745:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12055:1 12065:1 12121:1 12128:4 12137:2 12155:1 12156:1 12164:2 12181:2 12196:3 12210:1 12213:2 12284:1 12289:1 12292:1 12302:1 12306:1 12321:1 12379:1 12406:1 12444:1 12450:1 12478:1 12480:1 12491:1 12501:2 12521:2 12531:3 12581:5 12638:1 12652:1 12673:2 12687:1 12700:1 12713:1 12722:1 12740:1 12794:2 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:5 12890:1 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13136:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:1 13208:1 13211:2 13234:1 13254:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:1 13620:1 13666:1 13668:1 13709:1 13713:1 13714:5 13722:5 13742:1 13767:1 13781:1 13824:2 13875:2 13883:1 13890:1 13910:3 13914:1 13919:1 13929:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14032:1 14037:1 14067:1 14083:1 14094:2 14107:1 14112:5 14140:1 14160:1 14184:2 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:5 14525:3 14540:1 14561:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:2 14623:1 14628:1 14635:5 14677:9 14694:1 14707:1 14715:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14823:1 14826:2 14829:2 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 15003:1 15028:5 15030:1 15065:1 15085:2 15087:2 15089:1 15177:1 15184:1 15186:2 15187:1 15190:2 15206:4 15224:1 15255:5 15258:3 15263:2 15272:1 15283:1 15342:1 15354:1 15383:2 15388:1 15394:3 15434:2 15449:1 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:3 15990:1 15996:1 16019:1 16062:2 16065:1 16072:2 16090:2 16110:1 16146:1 16147:1 16177:1 16180:1 16204:1 16213:1 16257:1 16264:5 16280:1 16349:1 16352:1 16358:2 16379:1 16452:1 16500:1 16507:5 16530:5 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:3 16857:1 16889:1 16899:1 16915:2 16946:5 16966:1 16967:1 17006:2 17053:1 17058:2 17090:1 17105:3 17106:1 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17191:1 17192:1 17196:1 17228:1 17255:1 17270:4 17271:1 17287:1 17288:1 17300:1 17306:1 17317:1 17341:1 17359:1 17408:1 17418:1 17440:5 17444:1 17451:1 17482:1 17487:1 17492:1 17493:4 17507:1 17510:1 17517:2 17519:1 17527:1 17532:1 17542:1 17567:3 17580:3 17588:1 17617:5 17628:2 17629:2 17644:1 17648:1 17713:1 17743:1 17796:1 17831:1 17833:1 17836:1 17837:1 17845:1 17848:1 17912:3 17914:3 17973:1 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:2 18120:1 18124:1 18137:1 18180:1 18212:5 18221:2 18227:1 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18301:1 18325:1 18327:1 18328:1 18348:1 18368:1 18387:2 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:1 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:3 18557:1 18563:1 18570:2 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:4 18697:3 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19051:1 19057:1 19065:2 19069:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:1 19156:1 19174:1 19197:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19672:1 19686:1 19689:1 19709:1 19728:1 19740:1 19768:2 19771:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:2 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:1 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:2 91:1 101:1 104:2 119:1 143:1 170:1 173:1 183:1 231:1 269:1 344:6 357:3 366:2 376:1 402:1 417:1 426:1 438:1 476:1 478:1 516:1 548:1 550:1 558:1 575:2 579:1 584:1 669:1 676:1 705:1 706:1 751:1 775:1 779:1 838:4 841:2 866:2 875:1 883:1 886:1 935:1 950:3 952:1 966:1 1006:1 1007:1 1017:3 1031:3 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:3 1240:2 1244:1 1254:1 1271:2 1282:1 1303:1 1306:1 1311:1 1315:4 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1647:4 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1853:2 1855:1 1867:1 1869:1 1891:1 1903:1 1918:1 1930:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2065:1 2076:1 2079:1 2100:3 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:1 2151:1 2153:2 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2265:1 2289:3 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:3 2427:1 2448:1 2464:1 2477:1 2504:1 2509:2 2531:1 2537:1 2556:1 2574:1 2578:1 2589:3 2593:4 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2771:1 2809:1 2810:1 2824:2 2854:1 2862:2 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3118:1 3122:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:2 3154:1 3168:1 3202:1 3212:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:9 3328:1 3329:1 3351:2 3361:1 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3499:1 3504:1 3518:3 3520:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:3 3692:1 3695:1 3698:1 3710:1 3727:1 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:6 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3990:1 4002:1 4003:1 4006:4 4008:2 4009:1 4013:1 4032:2 4033:1 4059:5 4065:1 4071:2 4078:2 4109:1 4113:1 4114:2 4131:3 4142:1 4161:3 4164:1 4167:4 4184:1 4192:1 4215:1 4253:6 4256:1 4257:1 4267:2 4277:1 4297:1 4308:2 4322:1 4341:1 4360:1 4382:1 4409:2 4411:1 4421:1 4437:2 4461:2 4471:1 4505:1 4506:1 4538:1 4543:1 4546:2 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4716:1 4755:1 4781:1 4789:1 4810:1 4827:2 4831:6 4837:1 4841:1 4884:1 4940:1 4959:1 4986:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5067:3 5083:1 5097:1 5113:1 5132:1 5142:1 5153:1 5188:1 5202:1 5203:2 5216:1 5236:2 5240:1 5241:4 5243:2 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:931 5468:1 5479:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:2 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5942:1 5945:12 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:3 6299:1 6300:1 6325:1 6326:3 6351:2 6399:3 6410:1 6420:2 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:4 6677:1 6686:2 6694:4 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:3 6754:1 6756:2 6816:1 6826:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7361:2 7370:1 7391:1 7392:2 7403:1 7418:4 7430:1 7459:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7664:1 7691:2 7740:1 7766:1 7780:1 7782:3 7785:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7898:1 7919:1 7922:1 7928:1 7945:1 7962:1 7963:1 7973:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8167:3 8169:1 8176:2 8236:1 8249:1 8257:5 8264:1 8271:2 8319:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:2 8492:1 8507:1 8543:1 8626:2 8638:2 8641:1 8642:2 8643:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:2 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8839:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:6 8973:1 9011:1 9029:13 9060:1 9124:2 9147:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9338:1 9396:1 9402:1 9403:1 9408:1 9411:9 9430:2 9475:1 9483:2 9516:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:2 9589:1 9592:2 9593:1 9607:1 9608:1 9628:1 9695:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9994:1 9995:1 10012:1 10019:1 10022:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10214:1 10233:1 10251:1 10254:1 10275:1 10293:1 10324:1 10346:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:1 10517:1 10556:1 10565:2 10603:1 10611:2 10616:1 10619:1 10638:1 10677:1 10682:2 10693:1 10718:5 10719:1 10726:1 10737:1 10743:1 10744:2 10754:2 10781:1 10786:9 10790:2 10796:1 10811:1 10812:16 10841:3 10843:3 10859:1 10918:1 10968:1 10980:1 11002:1 11004:1 11082:1 11087:1 11105:2 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:1 11436:10 11438:1 11452:1 11476:2 11509:1 11518:2 11535:6 11548:1 11560:1 11621:6 11701:1 11702:2 11731:2 11745:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:4 12137:2 12155:1 12156:1 12164:2 12181:2 12196:3 12210:1 12213:2 12284:1 12289:1 12292:1 12302:1 12306:1 12321:1 12379:1 12406:1 12444:1 12450:1 12478:1 12480:1 12491:1 12501:2 12521:2 12531:3 12581:5 12638:1 12652:1 12664:1 12673:2 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:3 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:6 12890:1 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13136:1 13153:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:2 13208:1 13211:2 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:2 13620:1 13666:1 13668:1 13677:1 13684:1 13709:1 13713:1 13714:6 13722:6 13742:1 13767:1 13781:1 13824:2 13875:2 13883:1 13890:1 13910:3 13911:1 13914:1 13919:1 13929:1 13940:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14032:1 14037:1 14067:1 14083:1 14094:2 14100:1 14107:1 14112:6 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:6 14525:3 14540:1 14561:1 14575:1 14588:1 14590:1 14594:3 14609:4 14610:1 14621:2 14623:1 14628:1 14635:6 14677:9 14694:1 14707:1 14715:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14823:1 14826:2 14829:2 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:1 15003:1 15028:6 15030:1 15065:1 15085:2 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:3 15206:4 15224:1 15255:6 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15354:1 15368:1 15383:2 15388:1 15394:3 15434:2 15449:1 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15624:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:1 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:4 15990:1 15996:1 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:2 16264:6 16280:2 16349:2 16352:1 16358:2 16379:1 16452:1 16500:1 16507:6 16530:6 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:2 16812:3 16857:1 16889:1 16899:1 16915:2 16946:6 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17105:3 17106:1 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17185:1 17191:1 17192:1 17196:1 17228:1 17255:1 17270:4 17271:1 17287:1 17288:1 17300:1 17306:1 17317:1 17341:1 17347:1 17359:1 17379:1 17408:1 17418:1 17440:5 17444:1 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17580:3 17588:1 17617:6 17628:2 17629:2 17644:1 17648:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:1 17833:1 17836:1 17837:1 17845:2 17848:1 17912:3 17914:4 17973:1 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18180:1 18212:6 18221:2 18227:1 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18301:1 18325:1 18327:1 18328:1 18348:1 18368:1 18387:2 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:3 18557:1 18563:1 18570:2 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:5 18697:3 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:1 19156:1 19174:1 19197:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19768:2 19771:1 19778:1 19788:1 19827:1 19841:1 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:2 20064:1 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:2 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:3 91:1 101:1 104:2 119:1 143:1 163:1 170:1 173:1 183:1 231:1 269:1 344:7 357:3 366:2 376:1 402:1 417:1 426:1 438:1 476:1 478:1 493:1 516:2 548:1 550:1 558:1 575:2 579:1 584:1 669:1 676:2 705:1 706:1 751:1 775:1 779:1 808:1 838:5 841:2 866:3 875:1 883:1 886:1 935:1 950:3 952:1 966:1 1006:1 1007:1 1017:3 1031:3 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:4 1240:2 1244:1 1254:2 1271:2 1282:1 1303:1 1306:1 1311:1 1315:5 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:1 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1647:6 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:1 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1853:2 1855:1 1867:1 1869:1 1891:1 1903:1 1918:1 1930:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2065:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:1 2151:1 2153:2 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2265:1 2289:3 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:3 2593:4 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2771:1 2809:1 2810:1 2824:2 2854:1 2862:2 2872:1 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3118:1 3122:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:2 3154:1 3168:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:9 3328:1 3329:1 3351:2 3361:1 3370:1 3390:1 3408:1 3410:1 3442:1 3450:1 3467:1 3499:1 3504:1 3518:3 3520:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:3 3692:1 3695:1 3698:1 3710:1 3727:2 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:7 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3990:1 4002:1 4003:1 4006:5 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:5 4065:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:3 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4253:7 4256:1 4257:1 4267:2 4277:1 4297:1 4308:2 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4421:1 4437:2 4461:2 4471:1 4505:1 4506:1 4538:2 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4716:1 4755:1 4781:1 4789:1 4810:1 4827:2 4831:7 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 5001:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:3 5083:1 5097:1 5113:1 5132:1 5142:1 5153:1 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:2 5256:1 5264:1 5273:1 5290:1 5298:1 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:961 5468:1 5479:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:2 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5942:1 5945:12 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:4 6299:1 6300:1 6325:1 6326:3 6334:1 6351:2 6399:3 6410:1 6420:2 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:4 6677:1 6686:2 6694:4 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:4 6754:1 6756:2 6816:1 6826:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:2 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7079:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7361:2 7370:1 7391:1 7392:2 7403:1 7418:4 7430:1 7459:1 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7629:1 7664:1 7691:2 7723:1 7740:2 7766:1 7780:1 7782:3 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7898:1 7919:1 7922:1 7928:1 7945:1 7962:1 7963:1 7973:1 8039:1 8056:1 8064:12 8080:1 8095:3 8130:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:1 8271:2 8319:2 8328:1 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:2 8492:1 8507:1 8543:1 8626:2 8638:2 8641:1 8642:2 8643:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8804:1 8810:1 8820:1 8830:1 8831:1 8839:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:7 8973:1 9011:1 9029:13 9060:1 9124:3 9147:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9338:1 9396:1 9402:1 9403:1 9408:1 9411:9 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:2 9588:2 9589:1 9592:2 9593:1 9607:1 9608:1 9628:1 9695:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9994:1 9995:1 10012:1 10019:1 10022:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10293:1 10324:1 10346:1 10367:1 10376:1 10377:12 10382:1 10390:1 10391:2 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:1 10517:1 10556:1 10565:2 10603:1 10611:2 10616:1 10619:1 10638:1 10677:1 10682:2 10693:1 10718:6 10719:2 10726:1 10737:1 10743:1 10744:2 10754:2 10781:1 10786:9 10790:2 10796:1 10811:1 10812:16 10841:4 10843:3 10859:1 10918:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:1 11087:1 11105:2 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:2 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:1 11436:10 11438:1 11452:1 11476:2 11509:1 11518:2 11535:7 11548:1 11560:1 11621:7 11701:1 11702:2 11731:2 11745:1 11758:1 11772:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12137:2 12155:1 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12284:1 12289:1 12292:1 12302:1 12306:1 12321:1 12352:1 12379:1 12406:1 12444:1 12450:1 12478:1 12480:1 12491:1 12501:2 12502:1 12521:2 12531:3 12581:5 12638:1 12652:1 12664:1 12673:2 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:4 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12879:7 12890:1 12913:1 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13136:1 13153:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:2 13208:1 13211:2 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13560:1 13612:2 13620:2 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:7 13722:7 13742:1 13767:1 13781:1 13817:1 13824:3 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:2 14100:1 14107:1 14112:7 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:1 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:6 14525:3 14535:1 14540:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:7 14677:9 14694:1 14707:2 14715:2 14716:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:1 14820:1 14823:1 14826:2 14829:2 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:1 15003:1 15028:7 15030:1 15065:1 15085:3 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:4 15206:4 15224:1 15255:7 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:1 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:1 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15624:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:2 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:5 15990:1 15996:1 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:2 16264:7 16280:2 16349:2 16352:1 16358:2 16379:1 16452:1 16500:1 16507:7 16530:7 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:1 16597:1 16614:1 16626:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16727:1 16806:3 16812:3 16857:1 16889:1 16899:1 16915:2 16946:7 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:12 17147:1 17151:1 17185:1 17191:1 17192:1 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:1 17347:1 17359:1 17379:1 17408:1 17418:1 17440:6 17444:1 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17580:3 17588:1 17617:7 17628:2 17629:2 17644:1 17648:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:2 17848:1 17912:4 17914:5 17973:1 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18155:1 18180:1 18212:7 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18301:1 18325:1 18327:1 18328:1 18348:1 18368:1 18387:2 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:3 18557:1 18563:1 18570:2 18589:2 18590:1 18631:3 18636:1 18637:1 18645:1 18690:6 18697:3 18708:1 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:1 19156:1 19174:1 19197:2 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:1 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19768:2 19771:1 19778:1 19788:1 19827:1 19831:1 19841:2 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:2 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20234:1 20235:1 20247:3 20279:1 20325:1 20330:1 20368:1 20376:1 20388:1
10 10:3 12:1 18:1 21:1 32:3 91:1 101:1 104:2 119:1 143:1 150:1 163:1 170:1 173:1 183:1 231:1 269:1 344:8 357:4 366:2 376:1 402:1 417:1 426:1 438:1 476:1 478:1 493:1 516:3 548:1 550:1 558:1 575:2 579:1 584:1 669:1 676:2 705:1 706:1 751:1 775:1 779:1 808:1 838:6 841:2 866:3 875:1 883:1 886:1 935:1 950:3 952:2 966:1 1006:1 1007:1 1017:3 1031:4 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:4 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:6 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:4 1464:2 1484:1 1492:1 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1647:6 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:2 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1852:1 1853:2 1855:1 1867:1 1869:1 1880:1 1891:1 1903:1 1918:1 1930:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2065:1 2067:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:1 2151:1 2153:2 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:4 2593:4 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2771:1 2809:1 2810:1 2824:2 2854:1 2862:2 2872:1 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3039:1 3059:2 3063:2 3102:1 3111:2 3118:1 3122:1 3128:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:2 3154:1 3168:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:9 3328:1 3329:1 3351:2 3361:1 3370:1 3390:1 3391:1 3408:1 3410:1 3421:1 3442:2 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3681:1 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3990:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:5 4065:1 4069:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:3 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4421:1 4437:2 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4716:1 4755:1 4781:1 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 5001:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:3 5083:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:2 5256:1 5264:1 5273:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1018 5468:1 5479:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:3 5719:1 5724:2 5727:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5929:2 5931:1 5933:1 5940:1 5942:1 5945:13 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:5 6299:1 6300:1 6325:1 6326:3 6334:1 6351:3 6399:3 6410:1 6420:2 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:4 6677:1 6686:3 6694:4 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6816:1 6826:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:3 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7079:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7361:2 7370:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:1 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7629:1 7664:1 7691:2 7723:1 7740:3 7766:1 7780:1 7782:3 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:1 7945:2 7962:1 7963:1 7973:1 8003:1 8039:1 8056:1 8064:13 8080:1 8095:3 8111:1 8130:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:1 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8455:2 8492:1 8507:1 8543:1 8626:2 8638:2 8641:1 8642:2 8643:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8830:1 8831:1 8839:1 8847:3 8848:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:14 9060:1 9124:3 9147:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9338:1 9396:1 9402:1 9403:1 9408:1 9410:1 9411:9 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:4 9567:1 9577:1 9578:1 9579:4 9588:2 9589:1 9592:2 9593:1 9607:1 9608:1 9628:1 9695:1 9696:1 9715:3 9726:2 9731:1 9766:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9967:1 9994:1 9995:1 10012:1 10019:1 10022:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10293:1 10324:1 10346:1 10347:1 10367:1 10376:1 10377:13 10382:1 10390:1 10391:2 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:1 10517:1 10556:1 10565:2 10603:1 10611:2 10616:1 10619:1 10638:1 10677:1 10682:2 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:2 10754:2 10781:2 10786:9 10790:2 10796:1 10811:1 10812:17 10841:4 10843:3 10859:1 10918:1 10936:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:1 11087:1 11105:3 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:1 11436:12 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11701:1 11702:2 11731:2 11745:1 11758:1 11772:1 11777:1 11804:1 11822:1 11838:2 11874:1 11920:1 11940:1 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12137:2 12155:1 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12284:2 12289:1 12292:1 12302:1 12306:1 12321:1 12352:1 12379:1 12406:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:3 12581:5 12638:1 12652:1 12664:1 12673:2 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:1 13165:2 13178:1 13185:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13555:1 13560:1 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:2 14100:1 14107:1 14112:8 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14495:1 14519:6 14525:4 14535:1 14540:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14677:9 14694:1 14707:4 14715:2 14716:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:2 14829:2 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:1 15003:1 15028:8 15030:1 15065:1 15085:3 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:5 15206:4 15224:1 15255:8 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15624:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:2 15760:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15961:1 15969:1 15974:1 15978:3 15986:1 15988:6 15990:1 15996:1 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16679:1 16688:2 16693:2 16700:1 16710:1 16722:1 16727:1 16806:4 16812:3 16857:1 16889:1 16899:1 16915:2 16946:8 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:13 17147:1 17151:1 17185:1 17191:1 17192:1 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17379:1 17408:1 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17580:3 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17912:4 17914:6 17973:1 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18144:1 18155:1 18180:1 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:2 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18623:1 18631:3 18636:1 18637:1 18645:1 18690:8 18697:3 18708:1 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19256:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19764:1 19768:2 19771:1 19778:1 19788:1 19827:1 19831:1 19841:2 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20183:1 20234:1 20235:1 20247:3 20279:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:1 163:1 170:1 173:1 183:1 231:1 269:1 344:8 357:4 366:2 376:1 402:1 417:1 426:1 438:1 476:1 478:1 493:1 516:3 548:1 550:1 558:1 575:2 579:1 584:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 838:6 841:2 866:3 875:1 883:1 886:1 935:1 950:3 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:4 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:2 1437:1 1442:1 1444:1 1445:5 1464:2 1484:1 1492:1 1495:2 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1647:6 1649:1 1653:1 1683:2 1695:1 1704:2 1736:1 1752:2 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1852:1 1853:2 1855:1 1867:1 1869:1 1880:1 1891:1 1903:1 1918:1 1930:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:2 2151:1 2153:2 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:4 2593:4 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2769:1 2771:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3032:1 3039:1 3059:2 3063:2 3102:1 3110:2 3111:2 3118:1 3122:1 3128:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:3 3154:1 3168:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:10 3328:1 3329:1 3351:2 3361:1 3370:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3669:1 3681:1 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3973:1 3990:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:5 4065:1 4069:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:3 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4421:1 4437:2 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4706:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:3 5083:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:1 5273:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1065 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5708:1 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5929:3 5931:1 5933:1 5940:1 5942:1 5945:14 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:5 6677:1 6686:3 6694:6 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6816:1 6826:1 6836:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:3 6882:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:1 7080:1 7103:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7361:2 7370:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:1 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:1 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7629:1 7664:1 7691:2 7723:1 7740:3 7766:1 7780:1 7782:3 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:1 7945:2 7951:1 7962:1 7963:1 7973:1 8003:1 8039:1 8056:1 8064:14 8080:1 8095:3 8111:1 8130:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:1 8451:1 8455:2 8492:1 8507:1 8543:1 8589:1 8626:2 8638:2 8641:1 8642:2 8643:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:1 8830:1 8831:1 8839:1 8847:3 8848:2 8849:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:15 9060:1 9124:3 9140:1 9147:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9334:1 9338:1 9396:1 9402:1 9403:1 9408:1 9410:1 9411:10 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9607:1 9608:1 9628:2 9695:1 9696:1 9715:3 9726:2 9731:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9943:1 9946:2 9960:3 9967:1 9994:1 9995:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10293:1 10324:1 10346:1 10347:1 10367:1 10376:1 10377:14 10382:1 10390:1 10391:2 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:2 10517:1 10536:2 10556:1 10565:2 10603:1 10611:2 10616:1 10619:1 10638:1 10653:1 10677:1 10682:2 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:2 10754:2 10781:2 10786:10 10790:2 10796:1 10811:1 10812:20 10841:4 10843:3 10859:1 10918:1 10936:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:2 11087:1 11105:3 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11250:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:1 11436:12 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11745:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11838:2 11874:1 11886:1 11920:1 11940:1 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:1 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12137:2 12155:1 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:2 12289:1 12292:1 12302:1 12306:1 12321:1 12352:1 12379:1 12406:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12581:5 12638:1 12652:1 12664:1 12673:2 12680:1 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13555:1 13560:1 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:2 14100:1 14107:1 14112:8 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14289:1 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14484:1 14495:1 14519:6 14525:4 14535:1 14540:1 14559:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14677:10 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:2 14829:2 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15065:1 15085:3 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:5 15206:4 15224:1 15255:8 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15624:1 15637:2 15666:3 15675:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15803:1 15811:1 15815:1 15859:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:1 15978:3 15986:2 15988:6 15990:1 15996:2 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16666:1 16679:1 16688:2 16693:2 16700:1 16710:1 16722:1 16727:1 16806:4 16812:3 16857:1 16889:1 16899:1 16915:2 16946:8 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:14 17147:1 17151:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17379:1 17408:1 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:3 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:1 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18144:1 18155:1 18180:1 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:2 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:1 18535:1 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18623:1 18631:3 18636:1 18637:1 18645:1 18690:8 18697:4 18708:1 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19256:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19764:1 19768:2 19771:1 19778:1 19788:1 19827:1 19831:2 19841:2 19860:1 19878:1 19894:1 19905:1 19914:1 19930:1 19934:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:1 20175:1 20177:1 20183:1 20234:1 20235:1 20247:3 20279:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:1 161:1 163:1 170:1 173:1 183:1 219:1 231:1 269:1 344:8 357:4 366:2 376:1 402:1 417:1 426:1 438:1 476:1 478:1 493:1 516:3 548:1 550:1 558:1 575:2 579:1 584:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 838:6 841:2 866:3 875:1 883:1 886:1 935:1 950:3 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:4 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:3 1437:1 1442:1 1444:1 1445:5 1464:2 1484:1 1492:1 1495:2 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1647:6 1649:1 1653:1 1683:3 1695:1 1704:2 1736:1 1752:2 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1852:1 1853:2 1855:1 1867:1 1869:1 1880:1 1891:1 1895:1 1903:1 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:2 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:4 2593:4 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2769:1 2771:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3032:1 3039:1 3059:2 3063:2 3102:1 3110:2 3111:2 3118:1 3122:1 3128:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:3 3154:1 3168:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:11 3328:1 3329:1 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3669:1 3681:1 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3973:1 3990:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4069:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:3 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4421:1 4437:2 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4706:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:1 5273:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1110 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5679:1 5708:1 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5929:3 5931:1 5933:1 5940:1 5942:1 5945:15 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:1 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:6 6677:1 6683:1 6686:3 6694:6 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6816:1 6826:1 6836:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:1 7080:1 7103:1 7127:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7309:1 7361:2 7370:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:2 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7629:1 7664:1 7691:2 7723:1 7740:3 7766:1 7780:1 7782:3 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:1 7945:2 7951:1 7962:1 7963:1 7973:1 8003:1 8039:1 8056:1 8064:15 8080:1 8095:3 8111:1 8130:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:2 8451:1 8455:2 8492:1 8507:1 8543:1 8589:1 8626:2 8638:2 8641:1 8642:2 8643:1 8644:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:1 8830:1 8831:1 8839:1 8847:3 8848:2 8849:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:16 9060:1 9071:1 9124:3 9140:1 9147:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9334:1 9338:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:11 9425:1 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9607:1 9608:1 9628:2 9695:1 9696:1 9715:3 9726:2 9731:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9934:1 9943:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10376:1 10377:15 10382:1 10390:1 10391:2 10392:1 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:2 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:2 10754:2 10776:1 10781:2 10786:11 10790:2 10796:1 10811:1 10812:20 10841:5 10843:3 10859:1 10918:1 10936:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11250:1 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:2 11436:12 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:1 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:2 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12134:1 12137:3 12155:1 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:2 12289:1 12292:1 12302:1 12306:1 12321:1 12352:1 12379:1 12406:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12581:5 12638:1 12652:1 12664:1 12673:2 12680:1 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 13013:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13555:1 13560:1 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:2 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14484:1 14495:1 14519:6 14525:4 14535:1 14540:1 14559:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14677:11 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:2 14829:3 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15065:1 15085:3 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:5 15206:4 15211:1 15224:1 15255:8 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15618:1 15624:1 15637:2 15666:3 15675:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15803:1 15811:1 15815:1 15859:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:1 15978:4 15986:3 15988:6 15990:1 15996:2 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:1 16679:1 16688:2 16693:2 16700:1 16710:1 16722:1 16727:1 16806:4 16812:3 16857:1 16889:1 16899:1 16915:2 16946:8 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:15 17147:1 17151:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:1 17379:1 17408:1 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:3 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18144:1 18155:1 18180:1 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:3 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:2 18535:1 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18690:8 18697:4 18708:1 18735:1 18745:1 18749:1 18750:1 18752:1 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19256:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19764:1 19768:2 19771:1 19778:1 19788:1 19827:1 19831:2 19841:2 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20234:1 20235:1 20247:3 20279:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:1 161:1 163:1 170:1 173:1 183:1 219:1 231:1 269:1 344:8 357:4 366:2 376:1 390:1 402:1 417:1 426:1 438:1 476:1 478:1 493:1 516:3 548:1 550:1 558:1 575:2 579:1 584:1 620:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 838:6 841:2 866:3 875:2 883:1 886:1 935:1 950:3 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:4 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1325:1 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:3 1437:1 1442:1 1444:1 1445:5 1464:2 1484:1 1492:1 1495:2 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1647:6 1649:1 1653:1 1683:3 1695:1 1704:2 1736:1 1752:2 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1852:1 1853:2 1855:1 1867:1 1869:1 1880:1 1891:1 1895:1 1903:1 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:2 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2262:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:4 2593:4 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2769:1 2771:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3032:1 3039:1 3059:2 3063:2 3102:1 3110:2 3111:2 3118:1 3122:1 3128:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:3 3154:1 3168:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:11 3328:1 3329:1 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3644:1 3669:1 3681:1 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3973:1 3990:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4069:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:3 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4421:1 4437:2 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4706:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:1 5273:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1138 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5679:1 5708:1 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5929:3 5931:1 5933:1 5940:1 5942:1 5945:15 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:1 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:6 6677:1 6683:1 6686:3 6694:6 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6816:1 6826:1 6836:1 6845:1 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:1 7080:1 7103:1 7127:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7309:1 7361:2 7370:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:2 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7629:1 7664:1 7691:2 7723:1 7740:3 7766:1 7780:1 7782:3 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:1 7945:2 7950:1 7951:1 7962:1 7963:1 7973:1 8003:1 8039:1 8056:1 8064:15 8080:1 8095:3 8111:1 8130:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:2 8451:1 8455:3 8492:1 8507:1 8543:1 8589:1 8626:2 8638:2 8641:1 8642:3 8643:1 8644:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:1 8830:1 8831:1 8839:1 8847:3 8848:2 8849:1 8851:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:16 9060:1 9071:1 9124:3 9140:1 9147:1 9159:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9334:1 9338:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:11 9425:1 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9607:1 9608:1 9628:2 9695:1 9696:1 9698:1 9715:3 9726:2 9731:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9934:1 9943:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10376:1 10377:15 10382:1 10390:1 10391:2 10392:1 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:2 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:2 10754:2 10776:1 10781:3 10786:11 10790:2 10796:1 10811:1 10812:20 10841:5 10843:3 10859:1 10918:1 10936:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11250:1 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:2 11436:12 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:1 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:2 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12134:1 12137:3 12155:1 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:3 12289:1 12292:1 12302:1 12306:1 12321:1 12352:1 12379:1 12406:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12581:5 12638:1 12652:1 12664:1 12673:2 12680:1 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 13013:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13542:2 13555:1 13560:1 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13846:1 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:3 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14484:1 14495:1 14519:6 14525:4 14535:1 14540:1 14559:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14675:1 14677:11 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:2 14829:3 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15054:1 15065:1 15085:3 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:5 15206:4 15211:1 15224:1 15255:8 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15618:1 15624:1 15637:2 15666:3 15675:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15803:1 15811:1 15815:1 15859:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:1 15978:4 15986:3 15988:6 15990:1 15996:2 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:1 16679:1 16688:2 16693:2 16700:1 16710:1 16722:1 16727:1 16806:4 16812:3 16857:1 16889:1 16899:1 16915:2 16946:8 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:15 17147:1 17151:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:1 17379:1 17408:1 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:3 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18144:1 18155:1 18180:2 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18302:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:3 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:2 18535:1 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18690:8 18697:4 18708:1 18735:1 18745:1 18749:1 18750:1 18752:2 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19256:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19764:1 19768:2 19771:1 19778:1 19788:1 19827:1 19831:2 19841:2 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20234:1 20235:1 20247:3 20279:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:1 161:1 163:1 170:1 173:1 183:1 219:1 231:1 269:1 344:8 357:4 366:2 376:1 390:1 402:1 417:1 426:1 438:1 476:1 478:1 493:1 516:3 548:1 550:1 558:1 575:2 579:1 584:1 620:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 838:6 841:2 866:3 875:2 883:1 886:1 935:1 950:3 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:5 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1324:1 1325:1 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:3 1437:1 1442:1 1444:1 1445:5 1464:2 1484:1 1492:1 1495:2 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1647:6 1649:1 1653:1 1683:3 1695:1 1704:2 1736:1 1752:2 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:2 1848:1 1852:1 1853:2 1855:1 1867:1 1869:1 1880:1 1891:1 1895:1 1903:1 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:2 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2262:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:4 2593:4 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2764:2 2769:1 2771:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3032:1 3039:1 3059:2 3063:2 3102:1 3110:2 3111:2 3118:1 3122:1 3128:1 3133:2 3135:1 3136:1 3141:1 3144:1 3146:3 3149:3 3154:1 3168:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:11 3328:1 3329:1 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3445:1 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3644:1 3669:1 3681:1 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:2 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3854:1 3872:1 3879:1 3895:1 3905:4 3910:1 3921:1 3936:1 3973:1 3990:1 3993:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4067:1 4069:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:3 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4421:1 4437:2 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:1 4706:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:1 5273:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1160 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5679:1 5708:1 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5929:3 5931:1 5933:1 5940:1 5942:1 5945:15 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:1 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:6 6677:1 6683:1 6686:3 6694:6 6703:1 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6816:1 6826:1 6836:1 6845:2 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:2 7080:1 7103:1 7127:1 7180:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7309:1 7361:2 7370:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:2 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7595:2 7602:2 7625:1 7629:1 7664:1 7681:1 7691:2 7723:1 7740:3 7766:1 7780:1 7782:3 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:1 7945:2 7950:1 7951:1 7962:1 7963:1 7973:1 8003:1 8039:1 8056:1 8064:15 8080:1 8095:3 8111:1 8130:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:2 8451:1 8455:3 8492:1 8507:1 8543:1 8589:1 8626:2 8638:2 8641:1 8642:3 8643:1 8644:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:2 8830:1 8831:1 8839:1 8846:1 8847:3 8848:2 8849:1 8851:1 8909:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:16 9060:1 9071:1 9124:3 9140:1 9147:1 9159:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9321:1 9334:1 9338:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:11 9425:1 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9607:1 9608:1 9628:2 9694:1 9695:1 9696:1 9698:1 9715:3 9726:2 9731:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9934:1 9943:1 9945:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10376:1 10377:15 10382:1 10390:1 10391:2 10392:1 10417:1 10425:1 10433:2 10452:2 10453:1 10462:1 10463:1 10466:2 10515:1 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:2 10754:2 10776:1 10781:3 10786:11 10790:2 10796:1 10811:1 10812:20 10841:5 10843:3 10849:1 10859:1 10918:1 10936:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11250:1 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:2 11436:12 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:2 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:1 12023:1 12035:1 12046:2 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12134:1 12137:3 12142:1 12155:2 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:3 12289:1 12292:1 12302:1 12306:1 12321:1 12352:2 12379:1 12406:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12581:5 12638:1 12652:1 12664:1 12673:2 12680:1 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 13013:1 13054:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13411:1 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13536:1 13542:2 13555:1 13560:1 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13846:1 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:3 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14484:1 14495:1 14519:6 14525:4 14535:1 14540:1 14559:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14675:1 14677:11 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:2 14829:3 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15054:1 15065:1 15085:3 15087:2 15089:1 15177:2 15184:1 15186:3 15187:1 15190:5 15206:4 15211:1 15224:1 15255:8 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15618:1 15624:1 15637:2 15666:3 15675:1 15708:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15803:1 15811:1 15815:1 15859:1 15867:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:1 15978:4 15986:3 15988:6 15990:1 15996:2 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:1 16679:1 16688:2 16693:2 16700:1 16710:1 16722:1 16727:1 16806:4 16812:3 16857:1 16889:1 16899:1 16915:2 16946:8 16954:1 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:15 17147:1 17151:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:1 17379:1 17408:1 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:3 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:3 18120:2 18124:1 18137:1 18144:1 18155:1 18180:2 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18302:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:3 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:2 18535:1 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18690:8 18697:4 18708:1 18735:1 18745:1 18749:1 18750:1 18752:3 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18941:1 18966:3 19004:1 19013:1 19032:1 19035:1 19038:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19256:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19740:1 19764:1 19768:2 19771:1 19778:1 19788:1 19827:1 19831:2 19841:2 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20226:1 20234:1 20235:1 20247:3 20279:1 20313:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:1 161:1 163:1 170:1 173:1 183:1 219:1 231:1 269:1 344:8 357:4 366:2 376:1 390:1 402:1 417:1 426:1 438:1 476:1 478:1 487:1 493:1 516:3 548:1 550:2 558:1 575:2 579:1 584:1 620:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 820:1 838:6 841:2 866:3 875:2 883:1 886:1 935:1 950:3 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:5 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1324:1 1325:1 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1419:2 1432:3 1437:1 1442:1 1444:1 1445:5 1464:2 1484:1 1492:1 1495:2 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1641:1 1647:6 1649:1 1653:1 1683:4 1695:1 1704:2 1736:1 1742:1 1752:2 1789:1 1795:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1840:3 1848:1 1852:1 1853:2 1855:1 1867:1 1869:1 1880:1 1891:1 1895:1 1903:1 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:1 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:2 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:2 2260:1 2262:1 2263:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2537:1 2556:1 2574:1 2578:1 2589:4 2593:4 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2724:1 2764:2 2769:1 2771:1 2804:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2903:1 2927:3 2945:1 2971:1 2982:4 2990:1 3007:1 3032:1 3039:1 3059:2 3063:2 3102:1 3110:2 3111:2 3116:1 3118:1 3122:1 3128:1 3133:2 3135:1 3136:2 3141:1 3144:1 3146:4 3149:3 3154:1 3168:1 3188:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3307:2 3315:1 3317:11 3328:1 3329:1 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3445:1 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3527:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3644:1 3669:1 3681:1 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:3 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3851:1 3854:1 3872:1 3879:1 3895:1 3897:1 3905:4 3910:1 3921:1 3936:1 3973:1 3990:1 3993:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4067:1 4069:1 4071:2 4078:2 4103:1 4109:1 4113:1 4114:2 4131:4 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4234:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4420:1 4421:1 4437:2 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:2 4706:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4940:1 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:1 5273:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:1 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1197 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5631:1 5650:1 5655:1 5679:1 5708:1 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5929:3 5931:1 5933:1 5940:1 5942:1 5945:15 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:2 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:1 6458:1 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:6 6677:1 6683:1 6686:3 6694:6 6703:2 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6775:2 6783:1 6816:1 6826:1 6836:1 6845:2 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:2 7080:1 7103:1 7127:1 7139:1 7180:1 7185:2 7199:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7309:1 7361:2 7362:1 7370:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:3 7509:1 7526:2 7555:2 7559:1 7582:1 7585:1 7589:1 7593:1 7595:2 7602:2 7625:1 7629:1 7664:1 7681:1 7691:2 7723:1 7740:3 7766:1 7780:1 7782:4 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:1 7945:2 7950:1 7951:1 7962:1 7963:1 7973:2 8003:1 8039:1 8056:1 8064:15 8080:1 8095:3 8111:1 8130:2 8149:1 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8429:1 8432:1 8442:2 8451:1 8455:3 8492:1 8507:1 8543:1 8589:1 8608:1 8626:2 8638:2 8641:1 8642:3 8643:1 8644:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:2 8830:1 8831:1 8839:1 8846:1 8847:3 8848:2 8849:1 8851:1 8909:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:16 9060:1 9071:1 9124:3 9140:1 9147:1 9159:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9321:1 9334:1 9338:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:11 9425:1 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9607:1 9608:1 9628:2 9694:1 9695:1 9696:1 9698:1 9715:3 9726:2 9731:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9934:1 9943:1 9945:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10368:2 10376:1 10377:15 10382:1 10390:1 10391:2 10392:1 10417:1 10425:1 10433:2 10452:3 10453:1 10462:1 10463:1 10466:2 10515:1 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:2 10754:2 10776:1 10781:3 10786:11 10790:2 10796:1 10811:1 10812:22 10841:5 10843:4 10849:1 10859:1 10918:1 10936:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11250:1 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11402:1 11423:2 11436:13 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11742:1 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:2 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:2 12023:1 12035:1 12046:2 12047:1 12055:1 12065:1 12070:1 12096:1 12121:1 12128:5 12134:1 12137:3 12142:1 12155:2 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:3 12289:1 12292:1 12302:1 12306:1 12321:1 12352:2 12379:1 12406:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12561:1 12581:5 12616:1 12629:1 12638:1 12652:1 12664:1 12673:2 12680:1 12687:1 12699:1 12700:1 12713:1 12722:1 12740:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 12991:1 13013:1 13054:1 13068:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13326:1 13345:1 13374:1 13391:1 13405:3 13411:1 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13536:1 13542:2 13555:1 13560:1 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13721:1 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13846:1 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:3 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:1 14458:1 14471:2 14484:1 14495:1 14519:6 14525:4 14535:1 14540:1 14559:1 14561:1 14575:2 14588:1 14590:1 14594:4 14609:4 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14675:1 14677:11 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:2 14829:4 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15054:1 15065:1 15085:3 15087:2 15089:2 15177:2 15184:1 15186:3 15187:1 15190:5 15206:4 15211:1 15224:1 15255:8 15258:3 15263:2 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15498:1 15507:2 15573:1 15575:1 15618:2 15624:1 15637:2 15666:3 15675:1 15708:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15803:1 15811:1 15815:1 15859:1 15867:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:1 15978:4 15986:3 15988:6 15990:1 15996:2 16001:1 16019:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16266:1 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:1 16679:1 16688:2 16693:2 16700:1 16710:1 16722:1 16727:1 16806:4 16812:4 16857:1 16889:1 16890:1 16899:1 16915:2 16946:8 16954:2 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:1 17145:15 17147:1 17151:1 17184:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:1 17379:1 17408:1 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:4 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:3 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:1 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18049:1 18064:1 18068:1 18075:2 18078:1 18101:4 18120:2 18124:1 18137:1 18144:1 18155:1 18180:2 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18302:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:3 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18473:1 18502:2 18506:1 18517:2 18529:2 18535:2 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18690:8 18697:4 18708:1 18735:1 18745:1 18749:1 18750:1 18752:3 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18935:1 18941:1 18966:3 19004:1 19013:1 19031:1 19032:1 19035:1 19038:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19256:1 19275:1 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19468:1 19470:3 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:2 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19737:1 19740:1 19764:1 19768:2 19771:1 19778:2 19788:1 19827:1 19831:2 19841:2 19844:1 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20226:1 20234:1 20235:1 20247:3 20279:1 20313:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:2 161:1 163:1 170:1 173:1 177:1 183:1 219:1 231:1 269:1 344:8 357:5 366:2 376:1 390:1 402:1 417:1 426:1 438:1 476:1 478:1 487:1 490:1 493:1 516:3 548:1 550:2 558:1 575:2 579:1 584:1 620:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 820:1 838:6 841:2 866:3 875:2 883:1 886:1 935:1 950:4 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1069:1 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:5 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1324:1 1325:1 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1413:1 1419:2 1421:1 1432:4 1437:1 1442:1 1444:1 1445:7 1464:2 1484:1 1492:1 1495:2 1499:1 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1641:1 1647:6 1649:1 1653:1 1683:4 1695:1 1704:2 1716:1 1736:1 1742:1 1752:2 1789:1 1795:1 1816:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1839:1 1840:3 1848:1 1852:1 1853:2 1855:1 1865:1 1867:1 1869:1 1880:1 1891:1 1892:1 1895:1 1903:1 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:2 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2090:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:3 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:3 2260:1 2262:1 2263:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2364:1 2365:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2532:1 2537:1 2541:1 2556:1 2574:1 2578:1 2589:4 2593:4 2599:1 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2724:1 2764:2 2769:1 2771:1 2804:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2903:1 2927:3 2945:1 2971:1 2982:5 2990:1 3007:1 3032:1 3039:1 3059:3 3063:2 3102:1 3110:2 3111:2 3116:1 3118:1 3122:1 3128:1 3133:2 3135:1 3136:2 3141:1 3144:1 3146:4 3149:3 3154:1 3168:1 3188:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3290:1 3307:2 3315:1 3317:11 3328:1 3329:2 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3445:1 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3527:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3644:1 3669:1 3681:2 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:4 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3851:1 3854:1 3872:1 3879:1 3895:1 3897:1 3901:1 3905:6 3910:1 3921:1 3936:1 3973:1 3990:1 3993:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4067:1 4069:1 4071:3 4078:2 4103:1 4109:1 4113:1 4114:2 4131:5 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4234:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4299:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4420:1 4421:1 4437:2 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:2 4687:1 4706:1 4715:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4914:1 4940:1 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:1 5273:1 5279:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:2 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1237 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5557:1 5591:1 5618:1 5622:1 5631:1 5650:1 5655:1 5679:1 5708:2 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5782:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5929:3 5931:1 5933:1 5940:1 5942:1 5945:15 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:3 6291:1 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:2 6458:2 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6589:1 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:7 6677:1 6683:1 6686:3 6694:6 6703:2 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6775:3 6783:2 6816:1 6826:1 6836:1 6845:2 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6954:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:2 7080:1 7103:1 7127:1 7139:1 7180:1 7185:2 7199:1 7219:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7289:1 7309:1 7361:2 7362:1 7370:1 7388:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:3 7509:1 7526:2 7536:1 7555:2 7559:1 7582:1 7585:1 7589:1 7593:1 7595:2 7602:2 7625:1 7629:1 7631:1 7664:1 7681:1 7691:2 7703:1 7723:1 7740:3 7766:1 7780:1 7782:4 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:2 7945:2 7950:1 7951:1 7962:1 7963:1 7973:2 8003:1 8039:1 8056:1 8064:15 8080:1 8095:3 8111:1 8130:2 8149:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8382:1 8429:1 8432:1 8442:2 8451:1 8455:3 8492:1 8507:1 8543:1 8572:1 8589:1 8608:1 8626:2 8638:2 8641:1 8642:5 8643:1 8644:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:2 8830:1 8831:1 8839:1 8846:1 8847:3 8848:2 8849:1 8850:1 8851:1 8909:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:16 9060:1 9071:1 9124:3 9140:1 9147:1 9159:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9321:1 9334:1 9338:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:11 9425:1 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9603:1 9607:1 9608:1 9628:2 9694:1 9695:1 9696:1 9698:1 9715:3 9726:2 9731:1 9735:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9926:1 9933:1 9934:1 9943:1 9945:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10236:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10368:3 10376:1 10377:15 10382:1 10390:2 10391:2 10392:1 10417:1 10425:1 10433:2 10452:3 10453:1 10462:1 10463:1 10466:2 10515:1 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:3 10751:1 10754:2 10776:1 10781:3 10786:11 10790:2 10792:1 10796:2 10802:1 10811:1 10812:22 10841:5 10843:5 10849:1 10859:1 10918:2 10936:1 10941:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11167:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11250:1 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11394:1 11402:1 11423:2 11436:14 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11742:1 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:2 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:1 11993:1 12003:2 12023:1 12035:1 12046:3 12047:1 12055:1 12065:1 12070:1 12082:1 12096:1 12121:1 12128:5 12134:1 12137:3 12142:1 12155:2 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:3 12289:1 12292:1 12302:1 12306:1 12321:1 12352:2 12379:1 12406:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12561:1 12581:5 12604:1 12616:2 12629:1 12638:1 12652:1 12664:1 12673:2 12680:1 12687:2 12699:1 12700:1 12713:1 12722:1 12740:1 12771:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 12991:1 13013:1 13054:1 13068:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13308:1 13326:1 13345:1 13374:1 13391:1 13405:3 13411:1 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13536:1 13542:2 13555:1 13560:2 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13721:1 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13845:1 13846:1 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 13985:1 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:3 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:2 14458:1 14471:2 14484:1 14495:1 14515:1 14519:7 14525:4 14535:1 14540:1 14559:1 14561:1 14566:1 14575:2 14588:1 14590:1 14594:4 14609:6 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14675:1 14677:11 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:3 14829:4 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15054:1 15065:1 15085:3 15087:3 15089:3 15177:2 15184:1 15186:3 15187:1 15190:5 15206:6 15211:1 15224:1 15253:1 15255:8 15258:4 15263:3 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15484:1 15498:1 15507:2 15513:1 15573:1 15575:1 15580:1 15618:2 15624:1 15637:2 15666:3 15670:1 15675:1 15708:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15774:1 15803:1 15811:1 15815:1 15859:1 15867:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:2 15978:4 15986:3 15988:6 15990:1 15996:2 16001:1 16019:1 16021:1 16046:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16266:1 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16474:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:1 16679:1 16688:2 16693:2 16700:1 16710:1 16719:1 16722:1 16727:1 16772:1 16806:4 16812:4 16857:1 16889:1 16890:2 16893:1 16899:1 16915:2 16939:1 16946:8 16954:2 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:2 17145:15 17147:1 17151:1 17161:1 17184:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:1 17379:1 17408:2 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:6 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:4 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:2 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18049:1 18064:1 18068:2 18075:2 18078:1 18101:4 18120:2 18124:1 18137:1 18144:1 18155:1 18180:2 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18302:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:4 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18469:1 18473:1 18502:2 18506:1 18517:2 18529:2 18535:2 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18676:1 18690:8 18697:4 18706:1 18708:1 18735:2 18745:1 18749:1 18750:1 18752:3 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18935:1 18941:1 18966:3 19004:2 19013:1 19031:1 19032:1 19035:1 19038:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19126:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19220:1 19256:1 19275:2 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19414:1 19468:1 19470:3 19473:1 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:3 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19737:1 19740:1 19764:1 19768:2 19771:1 19778:2 19788:1 19827:1 19831:2 19841:3 19844:1 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20226:1 20234:1 20235:1 20247:3 20279:1 20280:1 20313:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:2 161:1 163:1 170:1 173:1 177:1 183:1 219:1 231:1 269:1 344:8 357:5 366:2 375:1 376:1 390:1 402:1 417:1 426:1 438:1 475:1 476:1 478:1 487:1 490:1 493:1 516:3 548:1 550:2 558:1 575:2 579:1 584:1 620:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 820:1 838:6 841:2 866:3 875:2 883:1 886:1 935:1 950:4 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1069:1 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1203:1 1223:1 1236:5 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1324:1 1325:1 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1413:1 1419:2 1421:1 1432:5 1437:1 1442:1 1444:1 1445:7 1464:2 1484:1 1492:1 1495:2 1499:1 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1641:1 1647:6 1649:1 1653:1 1683:4 1695:1 1704:2 1716:1 1736:1 1742:1 1752:2 1789:1 1795:1 1816:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1839:1 1840:3 1848:1 1852:1 1853:2 1855:1 1865:1 1867:1 1869:1 1880:1 1891:1 1892:1 1895:1 1903:1 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:2 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2090:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:3 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:3 2260:1 2262:1 2263:1 2265:1 2289:4 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2364:1 2365:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2532:1 2537:1 2541:1 2556:1 2574:1 2578:1 2589:4 2593:4 2599:1 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2724:1 2764:2 2769:1 2771:1 2804:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2903:1 2927:3 2945:1 2971:1 2982:5 2990:1 3007:1 3032:1 3039:1 3059:3 3063:2 3102:1 3110:2 3111:2 3116:1 3118:1 3122:1 3128:1 3133:2 3135:1 3136:2 3141:1 3144:1 3146:4 3149:3 3154:1 3168:1 3188:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3290:1 3307:2 3315:1 3317:12 3328:1 3329:2 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3445:1 3450:1 3467:1 3499:1 3504:1 3518:4 3520:1 3527:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3644:1 3669:1 3681:2 3689:4 3692:1 3695:1 3698:1 3710:1 3727:2 3744:1 3754:2 3765:2 3780:1 3784:4 3789:1 3806:1 3811:8 3819:1 3825:1 3839:1 3851:1 3854:1 3872:1 3879:1 3895:1 3897:1 3901:1 3905:6 3910:1 3921:1 3936:1 3973:1 3990:1 3993:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4067:1 4069:1 4071:3 4078:2 4103:1 4109:1 4113:1 4114:2 4131:5 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4231:1 4234:1 4253:8 4256:1 4257:1 4267:2 4277:1 4297:1 4299:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4420:1 4421:1 4437:2 4441:1 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:2 4687:1 4706:1 4715:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:8 4837:1 4841:1 4884:1 4914:1 4940:2 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:2 5273:1 5279:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:2 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1242 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5557:1 5591:1 5618:1 5622:1 5631:1 5650:1 5655:1 5679:1 5708:2 5718:3 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5782:1 5799:1 5818:1 5822:1 5837:1 5856:1 5902:1 5911:1 5929:4 5931:1 5933:1 5940:1 5942:1 5945:16 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:3 6291:1 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:2 6458:2 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6589:1 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:7 6677:1 6683:2 6686:3 6694:6 6703:2 6705:1 6713:1 6725:2 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6775:3 6783:2 6816:1 6826:1 6836:1 6845:2 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6954:1 6956:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:2 7080:1 7103:1 7127:1 7139:1 7180:1 7185:2 7199:1 7219:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7289:1 7309:1 7361:2 7362:1 7370:1 7388:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:1 7494:1 7499:1 7504:3 7509:1 7526:2 7536:1 7555:2 7559:1 7582:1 7585:1 7589:1 7593:1 7595:2 7602:2 7625:1 7629:1 7631:1 7664:1 7681:1 7691:2 7703:1 7723:1 7740:3 7766:1 7780:1 7782:4 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:2 7945:2 7950:1 7951:1 7962:1 7963:1 7973:2 8003:1 8010:1 8039:1 8056:1 8064:16 8080:1 8095:3 8111:1 8130:2 8149:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8382:1 8429:1 8432:1 8442:2 8451:1 8455:3 8492:1 8507:1 8543:1 8572:1 8589:2 8608:1 8626:2 8638:2 8641:1 8642:5 8643:1 8644:1 8651:1 8663:1 8670:1 8671:1 8674:2 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:2 8830:1 8831:1 8839:1 8846:1 8847:3 8848:2 8849:1 8850:1 8851:1 8909:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:17 9060:1 9071:1 9124:3 9140:1 9147:1 9159:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9266:1 9308:1 9315:1 9321:1 9334:1 9338:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:12 9425:2 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9603:1 9607:1 9608:1 9628:2 9694:1 9695:1 9696:1 9698:1 9715:3 9726:2 9731:1 9735:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9925:1 9926:1 9933:1 9934:1 9943:1 9945:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:1 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10236:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10368:3 10376:1 10377:16 10382:1 10390:2 10391:2 10392:1 10417:1 10425:1 10433:2 10452:3 10453:1 10462:1 10463:1 10466:2 10515:1 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:3 10751:1 10754:2 10776:1 10781:3 10786:12 10790:2 10792:1 10796:2 10802:1 10811:1 10812:22 10841:5 10843:5 10849:1 10859:1 10918:2 10936:1 10941:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11167:1 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11234:1 11250:1 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11394:1 11402:1 11423:2 11436:14 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:8 11680:1 11701:1 11702:2 11731:2 11742:1 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:2 11943:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:2 11993:1 12003:2 12023:1 12035:1 12046:3 12047:1 12055:1 12065:1 12070:1 12082:1 12096:1 12121:1 12128:5 12134:1 12137:3 12142:1 12155:2 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:3 12289:1 12292:1 12302:1 12306:1 12321:1 12352:2 12379:1 12406:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12561:1 12572:1 12581:5 12604:1 12616:2 12629:1 12638:1 12652:1 12664:1 12673:2 12680:1 12687:2 12699:1 12700:1 12713:1 12722:1 12740:1 12771:1 12794:5 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:8 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 12991:1 13013:1 13054:1 13068:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13308:1 13326:1 13345:1 13374:1 13391:1 13405:3 13411:1 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13536:1 13542:2 13555:1 13560:2 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13721:1 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13845:1 13846:1 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 13985:1 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:3 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:2 14458:1 14471:2 14484:1 14495:1 14515:1 14519:7 14525:4 14535:1 14540:1 14559:2 14561:1 14566:1 14575:2 14588:1 14590:2 14594:4 14609:6 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14675:1 14677:12 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:3 14829:4 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15054:1 15065:1 15085:3 15087:3 15089:3 15177:2 15184:1 15186:3 15187:1 15190:5 15206:6 15211:1 15224:1 15253:1 15255:8 15258:4 15263:3 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15484:1 15498:1 15507:2 15513:1 15573:1 15575:1 15580:1 15618:2 15624:1 15633:1 15637:2 15666:3 15667:1 15670:1 15675:1 15708:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15774:1 15803:1 15811:1 15815:1 15859:1 15867:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:2 15978:4 15986:3 15988:6 15990:1 15996:2 16001:1 16008:1 16019:1 16021:1 16046:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:1 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:8 16266:1 16280:2 16349:2 16352:1 16358:2 16366:1 16379:1 16452:1 16474:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:2 16679:1 16688:2 16693:2 16700:1 16710:1 16719:1 16722:1 16727:1 16772:1 16806:4 16812:4 16857:1 16889:1 16890:2 16893:1 16899:1 16915:2 16939:1 16946:8 16954:2 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:2 17145:16 17147:1 17151:1 17161:1 17184:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:2 17379:1 17408:2 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:6 17507:2 17510:1 17517:3 17519:1 17526:1 17527:1 17532:1 17542:1 17567:3 17570:1 17580:4 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:2 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18035:1 18049:1 18064:1 18068:2 18075:2 18078:1 18101:4 18120:2 18124:1 18137:1 18144:1 18155:1 18180:2 18212:8 18221:2 18227:2 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18302:1 18325:1 18327:1 18328:1 18348:1 18368:1 18373:1 18387:5 18392:3 18399:1 18401:1 18403:2 18442:1 18450:1 18456:2 18465:2 18469:1 18473:1 18502:2 18506:1 18517:2 18529:2 18535:2 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18676:1 18690:8 18697:4 18706:1 18708:1 18710:1 18735:2 18745:1 18749:1 18750:1 18752:3 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18935:1 18941:1 18966:3 18976:1 19004:2 19013:1 19031:1 19032:1 19035:1 19038:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19126:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19220:1 19256:1 19275:2 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19414:1 19468:1 19470:3 19473:1 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:3 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19737:1 19740:1 19764:1 19768:2 19771:1 19778:2 19788:1 19827:1 19831:2 19841:3 19844:1 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20226:1 20234:1 20235:1 20247:3 20279:1 20280:1 20313:1 20325:1 20330:1 20368:1 20376:1 20388:2
10 1:1 10:3 12:1 18:1 21:2 32:3 62:1 91:1 101:1 104:2 119:1 143:1 150:2 161:1 163:1 170:1 173:1 177:1 183:1 219:1 231:1 269:1 344:9 357:5 366:2 375:1 376:1 390:1 402:1 417:1 426:1 438:1 475:1 476:1 478:1 487:1 490:1 493:1 516:3 548:1 550:2 558:1 575:2 579:1 584:1 592:1 620:1 669:2 676:2 705:1 706:1 751:1 775:1 779:1 808:1 820:1 838:6 841:2 866:3 875:2 876:1 883:1 886:1 935:1 950:4 952:2 966:1 984:1 1006:1 1007:1 1017:3 1031:4 1046:2 1069:1 1076:1 1081:5 1082:1 1112:1 1121:1 1123:1 1124:1 1136:1 1167:1 1170:1 1203:1 1223:1 1236:5 1240:2 1244:1 1254:2 1271:2 1282:1 1284:1 1303:1 1306:1 1311:1 1315:7 1324:1 1325:1 1342:1 1344:1 1356:1 1380:2 1386:1 1394:1 1395:2 1413:1 1419:2 1421:1 1432:5 1437:1 1442:1 1444:1 1445:8 1464:2 1483:1 1484:1 1492:1 1495:2 1499:1 1537:2 1540:1 1542:1 1551:1 1557:1 1568:1 1573:1 1574:1 1585:1 1641:1 1647:6 1649:1 1653:1 1683:5 1695:1 1704:2 1716:1 1736:1 1742:1 1752:2 1789:1 1795:1 1816:1 1822:1 1824:1 1825:1 1828:1 1834:1 1835:2 1839:1 1840:3 1848:1 1852:1 1853:2 1855:1 1865:1 1867:1 1869:1 1880:1 1891:1 1892:1 1894:1 1895:1 1903:2 1918:1 1930:1 1948:1 1960:1 1967:1 1970:1 1996:1 2003:2 2042:1 2057:1 2065:1 2067:1 2076:1 2079:1 2090:1 2100:4 2110:1 2136:1 2142:2 2143:1 2146:2 2147:1 2149:5 2151:1 2153:2 2162:1 2168:1 2173:1 2201:1 2220:1 2235:1 2246:2 2251:1 2258:3 2260:1 2262:1 2263:1 2265:1 2289:5 2304:1 2313:1 2320:1 2323:4 2334:1 2339:1 2355:1 2364:1 2365:1 2404:1 2413:1 2417:4 2427:1 2448:1 2464:1 2477:1 2504:1 2509:3 2531:1 2532:1 2537:1 2541:1 2556:1 2574:1 2578:1 2589:4 2593:4 2599:1 2605:1 2609:2 2613:3 2625:1 2659:1 2687:1 2689:1 2700:1 2718:1 2724:1 2764:2 2769:1 2771:1 2784:1 2804:1 2809:1 2810:1 2824:2 2854:1 2856:1 2862:2 2871:1 2872:1 2887:1 2903:1 2927:3 2945:1 2971:1 2982:6 2990:1 3007:1 3032:1 3039:1 3059:3 3063:2 3102:1 3110:2 3111:2 3116:1 3118:1 3121:1 3122:1 3128:1 3132:1 3133:2 3135:1 3136:2 3141:1 3144:1 3146:4 3149:4 3154:1 3168:1 3188:1 3202:1 3212:1 3220:1 3223:1 3242:1 3274:1 3290:1 3307:3 3315:1 3317:13 3328:1 3329:2 3351:2 3361:1 3370:1 3378:1 3390:2 3391:2 3408:1 3410:1 3421:1 3442:2 3445:1 3450:1 3467:1 3499:1 3504:1 3518:5 3520:1 3527:1 3557:1 3564:1 3565:1 3580:1 3607:1 3624:1 3638:1 3644:1 3669:1 3681:2 3689:5 3692:1 3695:1 3698:1 3710:1 3718:1 3727:2 3744:1 3754:3 3765:2 3780:1 3784:4 3789:1 3806:1 3811:9 3819:1 3825:1 3839:1 3851:1 3854:1 3872:1 3879:1 3895:1 3897:1 3901:1 3905:6 3910:1 3921:1 3936:1 3973:1 3990:1 3993:1 4002:1 4003:1 4006:6 4008:2 4009:1 4013:1 4032:2 4033:1 4041:1 4057:1 4059:6 4065:1 4067:1 4069:1 4071:3 4078:2 4103:1 4109:1 4113:1 4114:2 4131:5 4138:1 4142:1 4161:4 4164:1 4167:4 4184:1 4192:1 4215:1 4228:1 4231:1 4234:1 4253:9 4256:1 4257:1 4267:2 4271:1 4277:1 4297:1 4299:1 4308:4 4322:1 4341:1 4360:1 4382:1 4409:3 4411:1 4416:1 4420:1 4421:1 4437:2 4441:1 4443:1 4461:2 4471:1 4484:1 4500:1 4505:1 4506:1 4510:1 4538:3 4543:2 4546:2 4578:1 4589:1 4627:1 4628:1 4636:1 4647:1 4666:1 4673:4 4686:2 4687:1 4706:1 4715:1 4716:1 4755:1 4781:2 4789:1 4810:1 4827:2 4831:9 4837:1 4841:1 4884:1 4908:1 4914:1 4940:2 4959:1 4986:2 4997:1 5001:1 5012:1 5015:1 5017:2 5030:1 5032:1 5033:1 5043:1 5058:2 5061:1 5067:4 5083:1 5088:1 5097:1 5113:1 5132:1 5142:1 5153:2 5188:1 5202:1 5203:3 5216:1 5236:3 5240:1 5241:5 5243:3 5256:1 5264:1 5271:2 5273:1 5279:1 5290:1 5298:2 5316:1 5317:2 5355:1 5362:2 5365:1 5367:2 5375:1 5381:1 5387:1 5408:1 5437:1281 5468:1 5479:1 5483:1 5491:1 5520:1 5525:2 5557:1 5591:1 5618:1 5622:1 5631:1 5650:1 5655:1 5679:1 5708:2 5718:4 5719:1 5724:2 5727:1 5731:1 5733:1 5743:1 5762:1 5767:1 5775:1 5782:1 5799:1 5818:1 5822:1 5837:1 5844:1 5856:1 5902:1 5911:1 5929:4 5931:1 5933:1 5940:1 5942:1 5945:17 5964:1 5972:1 5974:1 5979:1 6025:1 6044:1 6047:1 6070:1 6105:1 6106:1 6126:1 6139:2 6144:1 6198:1 6211:1 6234:1 6257:1 6266:3 6291:1 6292:1 6297:5 6299:1 6300:1 6325:1 6326:4 6334:1 6351:3 6362:1 6399:3 6410:1 6420:2 6457:2 6458:2 6502:1 6518:2 6528:1 6547:2 6565:1 6566:2 6589:1 6598:2 6604:1 6634:2 6635:1 6648:1 6660:2 6675:7 6677:1 6683:2 6686:3 6694:6 6703:2 6705:1 6713:1 6725:4 6733:1 6734:1 6737:1 6747:5 6754:1 6756:2 6775:3 6783:2 6816:1 6826:1 6836:1 6845:2 6866:2 6867:1 6869:1 6874:2 6881:4 6882:1 6891:1 6902:1 6905:2 6913:2 6928:1 6936:1 6954:1 6956:1 6971:1 7003:2 7016:1 7051:1 7078:1 7079:2 7080:1 7103:1 7127:1 7139:1 7180:1 7185:2 7199:1 7219:1 7238:1 7240:1 7241:1 7250:1 7254:1 7263:1 7268:4 7280:1 7289:1 7309:1 7361:2 7362:1 7370:1 7388:1 7391:1 7392:2 7402:1 7403:1 7418:4 7430:1 7459:2 7464:1 7472:1 7479:1 7490:2 7494:1 7499:1 7504:3 7509:1 7526:2 7536:1 7555:2 7559:1 7582:1 7585:1 7589:1 7593:1 7595:2 7602:2 7625:1 7629:1 7631:1 7660:1 7664:1 7681:1 7691:2 7703:1 7723:1 7740:3 7766:1 7780:1 7782:4 7785:1 7793:1 7807:1 7845:1 7846:1 7854:2 7855:1 7879:1 7897:1 7898:1 7919:1 7922:1 7928:2 7945:2 7950:1 7951:1 7962:1 7963:1 7973:2 8003:1 8010:1 8039:1 8056:1 8064:17 8080:1 8095:3 8111:1 8130:2 8149:2 8166:1 8167:3 8169:1 8176:2 8236:1 8249:1 8256:1 8257:6 8264:2 8271:2 8319:2 8328:2 8332:3 8334:3 8354:1 8369:1 8382:1 8429:1 8432:1 8442:2 8451:1 8455:3 8492:1 8507:1 8543:1 8572:1 8589:2 8608:1 8626:2 8638:2 8641:1 8642:5 8643:1 8644:1 8651:1 8663:1 8670:2 8671:1 8674:2 8678:1 8706:1 8712:3 8769:1 8781:1 8804:1 8810:1 8820:1 8824:2 8825:1 8830:1 8831:1 8832:1 8839:1 8846:1 8847:4 8848:2 8849:1 8850:1 8851:1 8909:1 8926:1 8929:1 8939:1 8950:1 8957:1 8964:8 8973:1 9011:1 9029:18 9060:1 9071:1 9124:3 9140:1 9147:1 9159:1 9162:1 9182:1 9186:2 9212:1 9216:2 9217:3 9236:1 9260:1 9266:1 9308:1 9315:1 9321:1 9334:1 9338:1 9344:1 9396:1 9402:2 9403:1 9408:1 9410:1 9411:13 9425:2 9430:2 9475:1 9483:2 9516:1 9524:1 9533:4 9543:1 9544:1 9558:6 9566:1 9567:1 9577:1 9578:1 9579:4 9581:1 9588:2 9589:1 9592:3 9593:1 9603:1 9607:1 9608:1 9628:2 9694:1 9695:1 9696:2 9698:1 9715:3 9726:2 9731:1 9735:1 9741:1 9766:1 9768:1 9780:1 9807:1 9822:1 9832:1 9855:2 9914:1 9916:1 9918:1 9925:1 9926:1 9933:1 9934:1 9943:1 9945:1 9946:2 9960:3 9967:1 9994:1 9995:1 10004:1 10012:1 10019:2 10022:1 10041:1 10068:1 10084:1 10110:1 10138:1 10147:1 10150:1 10159:1 10160:1 10172:1 10214:1 10233:1 10236:1 10251:1 10254:1 10274:1 10275:1 10286:1 10293:1 10324:1 10346:1 10347:1 10367:1 10368:3 10376:1 10377:17 10382:1 10390:2 10391:2 10392:1 10417:1 10425:1 10433:2 10452:4 10453:1 10462:1 10463:1 10466:2 10515:1 10517:1 10536:2 10556:1 10565:2 10578:1 10603:1 10607:1 10611:3 10616:1 10619:1 10638:1 10653:1 10677:1 10682:3 10693:1 10718:8 10719:2 10720:1 10726:1 10737:1 10743:1 10744:4 10751:1 10754:2 10776:1 10781:3 10786:13 10790:2 10792:1 10796:2 10802:1 10811:1 10812:24 10841:5 10843:5 10849:1 10859:1 10918:2 10936:1 10941:1 10968:2 10980:2 10997:1 11002:1 11004:1 11082:3 11087:1 11105:3 11112:2 11115:1 11147:1 11167:2 11170:1 11174:1 11181:2 11188:1 11190:1 11191:4 11208:1 11229:3 11234:1 11250:2 11274:1 11278:1 11297:3 11301:2 11321:1 11323:1 11347:1 11373:1 11383:1 11388:2 11394:1 11402:1 11423:2 11436:14 11438:1 11452:1 11476:2 11509:1 11518:2 11535:8 11548:1 11560:1 11621:9 11680:1 11701:1 11702:2 11731:2 11742:1 11745:1 11752:1 11758:2 11772:1 11777:1 11782:1 11804:1 11806:1 11822:1 11835:1 11838:2 11855:1 11862:1 11874:2 11886:1 11920:1 11939:1 11940:2 11943:1 11948:1 11949:1 11957:1 11962:1 11963:1 11967:1 11990:2 11993:1 12003:2 12023:1 12035:1 12046:3 12047:1 12055:1 12065:1 12070:1 12082:1 12096:1 12121:1 12128:5 12134:1 12137:3 12142:1 12155:2 12156:1 12162:1 12164:2 12181:2 12196:3 12210:1 12213:2 12223:1 12284:3 12289:1 12292:1 12302:1 12306:1 12321:1 12352:2 12379:1 12406:1 12416:1 12432:1 12444:1 12450:1 12478:1 12480:1 12491:1 12494:1 12501:2 12502:1 12521:2 12531:4 12561:1 12572:1 12581:6 12604:1 12616:2 12629:1 12638:1 12652:1 12664:1 12673:2 12678:1 12680:1 12687:2 12699:1 12700:1 12713:1 12722:1 12740:1 12771:1 12794:6 12796:1 12806:2 12810:2 12814:1 12837:1 12845:1 12850:1 12858:1 12876:1 12879:9 12888:1 12890:1 12913:2 12927:2 12974:3 12981:2 12987:1 12991:1 13013:1 13054:1 13068:1 13069:1 13076:1 13080:1 13100:1 13103:1 13124:1 13125:3 13132:1 13136:1 13153:1 13156:1 13163:2 13165:2 13178:1 13185:1 13187:1 13194:1 13198:2 13208:1 13211:2 13218:1 13234:1 13254:1 13298:1 13308:1 13326:1 13345:1 13374:1 13391:1 13405:3 13411:1 13413:1 13427:1 13430:2 13435:1 13450:1 13451:1 13453:1 13487:1 13493:1 13498:1 13502:1 13525:1 13529:1 13536:1 13542:2 13555:1 13560:2 13612:2 13620:3 13666:1 13668:2 13677:1 13684:1 13709:1 13713:1 13714:8 13721:1 13722:8 13742:1 13767:1 13781:1 13817:2 13824:3 13845:1 13846:1 13875:3 13883:1 13890:1 13902:1 13910:3 13911:1 13914:1 13919:1 13929:1 13935:1 13937:1 13940:1 13947:1 13952:1 13953:2 13962:1 13973:1 13974:2 13985:1 14002:2 14006:1 14032:1 14037:1 14067:1 14083:1 14094:3 14100:1 14106:1 14107:1 14112:8 14113:1 14124:1 14140:1 14160:1 14166:1 14184:2 14224:1 14231:1 14248:1 14256:1 14262:2 14271:1 14272:1 14273:2 14274:1 14282:1 14289:2 14308:1 14318:1 14350:1 14373:1 14391:1 14447:2 14458:1 14471:2 14484:1 14495:1 14515:1 14519:7 14525:4 14535:1 14540:1 14559:2 14561:1 14566:1 14575:2 14588:1 14590:2 14594:4 14609:6 14610:1 14621:2 14623:1 14628:1 14635:8 14672:1 14675:1 14677:13 14679:1 14694:2 14707:4 14715:2 14716:1 14718:1 14723:1 14791:1 14808:1 14812:1 14817:1 14818:2 14820:1 14823:2 14826:3 14829:5 14830:1 14868:1 14872:1 14873:2 14878:1 14940:1 14941:1 14953:1 14956:2 15003:1 15028:8 15030:1 15054:1 15065:1 15085:3 15087:3 15089:3 15177:2 15181:1 15184:1 15186:3 15187:1 15190:5 15206:6 15211:1 15224:1 15253:1 15255:8 15258:4 15263:3 15272:1 15283:1 15290:1 15342:1 15343:2 15354:1 15368:1 15383:2 15388:1 15394:4 15434:2 15449:2 15476:1 15482:1 15484:1 15498:1 15507:2 15513:1 15573:1 15575:1 15580:1 15618:2 15624:1 15633:1 15637:2 15666:3 15667:1 15670:1 15675:1 15708:1 15709:1 15710:1 15713:1 15725:1 15746:1 15747:2 15752:1 15760:1 15772:1 15774:1 15803:1 15811:1 15815:1 15859:1 15867:1 15872:1 15926:2 15929:1 15932:1 15961:1 15969:1 15974:2 15978:4 15986:3 15988:7 15990:1 15996:2 16001:1 16008:1 16019:1 16021:1 16046:1 16062:2 16065:1 16067:1 16072:2 16090:2 16110:1 16146:2 16147:1 16155:1 16159:1 16177:1 16180:1 16204:1 16213:1 16257:3 16264:9 16266:1 16280:2 16349:2 16352:2 16358:2 16366:1 16379:1 16452:1 16453:1 16474:1 16500:1 16507:8 16530:8 16536:1 16539:2 16548:1 16559:2 16561:1 16566:1 16595:2 16597:2 16614:1 16619:1 16623:1 16626:1 16632:1 16633:1 16639:1 16655:1 16666:2 16679:1 16688:2 16693:2 16700:1 16710:1 16719:1 16722:1 16727:1 16772:1 16806:4 16812:4 16857:1 16889:1 16890:2 16893:1 16899:1 16906:1 16915:2 16939:1 16946:9 16954:2 16966:1 16967:1 17006:2 17053:1 17058:2 17085:1 17090:1 17103:1 17105:4 17106:1 17111:1 17125:1 17135:2 17145:17 17147:1 17151:1 17161:1 17184:1 17185:1 17191:1 17192:2 17196:1 17228:1 17255:1 17270:5 17271:1 17287:2 17288:1 17300:1 17306:1 17317:1 17331:1 17341:2 17347:1 17359:1 17362:2 17379:1 17408:2 17418:1 17440:7 17443:1 17444:2 17451:1 17482:1 17486:1 17487:1 17492:1 17493:6 17507:2 17510:1 17517:3 17519:1 17520:1 17526:1 17527:2 17532:1 17540:1 17542:1 17567:3 17570:1 17580:4 17588:1 17617:8 17628:2 17629:2 17644:1 17648:1 17680:1 17713:2 17738:1 17743:1 17796:1 17808:1 17831:2 17832:1 17833:1 17836:1 17837:1 17844:1 17845:3 17848:1 17893:1 17912:4 17914:6 17973:2 17983:1 18035:1 18049:1 18064:1 18068:3 18075:2 18078:1 18101:4 18120:2 18124:1 18137:1 18144:1 18155:1 18180:2 18212:9 18221:2 18227:2 18245:1 18249:2 18269:1 18270:1 18282:2 18286:1 18289:1 18298:1 18300:1 18301:1 18302:1 18325:1 18327:1 18328:1 18348:1 18368:1 18369:1 18373:1 18387:5 18392:3 18399:1 18401:1 18403:2 18424:1 18442:1 18450:1 18456:2 18465:2 18469:1 18473:1 18502:2 18506:1 18517:2 18529:2 18535:2 18546:1 18554:3 18557:1 18563:2 18570:2 18589:2 18590:1 18618:1 18623:1 18631:3 18636:1 18637:1 18645:1 18676:1 18690:8 18697:4 18706:1 18708:1 18710:1 18735:2 18745:1 18749:1 18750:1 18752:3 18753:1 18760:1 18763:1 18764:1 18781:1 18796:1 18800:1 18804:1 18818:1 18835:1 18839:1 18845:1 18863:1 18873:1 18907:1 18935:1 18941:1 18966:3 18976:1 19004:2 19013:1 19031:1 19032:1 19035:1 19038:1 19039:1 19051:1 19054:1 19057:1 19065:2 19069:1 19103:1 19104:1 19114:1 19125:1 19126:1 19132:1 19140:1 19142:2 19152:3 19156:1 19174:1 19197:2 19220:2 19256:1 19275:2 19289:1 19311:1 19313:2 19316:2 19343:1 19345:1 19365:2 19368:1 19370:1 19373:1 19385:1 19414:1 19468:1 19470:3 19473:1 19481:2 19488:1 19495:1 19503:1 19517:1 19526:1 19560:1 19568:1 19574:4 19606:2 19661:3 19667:1 19672:2 19686:1 19689:1 19709:1 19728:1 19737:1 19740:1 19764:1 19768:2 19771:1 19778:2 19788:1 19827:1 19831:2 19841:3 19844:1 19845:1 19860:1 19878:1 19894:1 19905:1 19914:1 19922:1 19930:1 19934:1 19976:1 19982:2 19996:3 19999:1 20027:1 20028:1 20059:3 20060:1 20064:2 20066:2 20082:2 20086:1 20105:1 20123:1 20143:2 20150:1 20174:2 20175:1 20177:1 20183:1 20226:1 20234:1 20235:1 20247:3 20248:1 20251:1 20264:1 20279:1 20280:1 20313:1 20325:1 20330:1 20368:1 20376:1 20388:2
|
edd6014859bacf6b8a56bf676d4ea8295538244b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH3/EX3.5/chapter3_ex5.sce | 4174f0e7a90f74a567aaa8604c157362c6b3e693 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | chapter3_ex5.sce | clc
clear
//input
d=0.25;//diameter of a pulley placed on the end of hte shaft of a d.c. motor in meter
m=60;//mass attached by a rope to the pulley in kg
w=50;//angular velocity of the pulley in rad/sec
//calculations
f=m*9.81;//force acting on the pulley in newton meter
W=f*%pi*d;//work done in one revolution
v=(d/2)*w;
p=(f*v)/1000;//power in kilo watts
//output
mprintf('yhe output of the motor is %3.2f kW',p)
|
8cdcd8b1c3cd36151e8b9be985f7c92c7380220f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3792/CH3/EX3.12/Ex3_12.sce | e99b56895747d65e66bcfbe24dac2acfb33cc020 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 904 | sce | Ex3_12.sce | // SAMPLE PROBLEM 3/12
clc;clear;funcprot(0);
// Given data
m=80;// kg
v=72;// km/h
s=75;// m
g=9.81;// The acceleration due to gravity in m/sec^2
mu_sa=0.30;// The coefficient of static friction
mu_ka=0.28;// The coefficient of kinetic friction
mu_sb=0.25;// The coefficient of static friction
mu_kb=0.20;// The coefficient of kinetic friction
// Calculation
// (a)
a_1=(v/3.6)^2/(2*s);// m/s^2
F=m*a_1;// The friction force on the block in N
U_12=F*s;// The work done in J
printf("\n(a)The work done by the friction force acting on the crate,U_12=%5.0f J (or) %2.0f kJ",U_12,U_12/1000);
// (b)
F_1=mu_sb*m*g;// N
F_2=mu_kb*m*g;// N
F=F_2;// N
a=F/m;// The acceleration in m/s^2
s=(a/a_1)*s;// The displacement of a crate in m
U_12=F*s;// The work done in J
printf("\n(b)The work done by the friction force acting on the crate,U_12=%4.0f J (or) %1.2f kJ",U_12,U_12/1000);
|
4b8ba51baeb24655b0a63f705fe9346bbcec47f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /914/CH12/EX12.11/ex12_11.sce | e640cd2f4fdf1bd86e0a9edcef2cb1e9f96a7935 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | sce | ex12_11.sce | clc;
warning("off");
printf("\n\n example12.11 - pg591");
// given
T=293.15; //[K]
pp=999; //[kg/m^3] - density of water
mu=0.01817*10^-3; //[kg/m*sec] - viscosity of air
p=1.205; //[kg/m^3] - density of air
d=5*10^-6; //[m] - particle diameter
g=9.80; //[m/sec^2]
rp=d/2;
Ut=((2*g*(rp^2))*(pp-p))/(9*mu);
Nre=(d*Ut*p)/(mu);
t=((-2*(rp^2)*pp))/(9*mu)*(log(1-0.99));
printf("\n\n Time for the drop of water in previous example from an initial velocity of zero to 0.99*Ut is \n t = %e sec",t);
printf("\n\n In other words, the drop accelerates almost instantaneously to its terminal velocity");
|
d491654408ca3668907b8cf073eb724e3592a401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH5/EX5.8/Chapter5_example8.sce | 9185b824ae74511b9168a603504028cee15627b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | Chapter5_example8.sce | clc
clear
//Input data
d=0.04//Inside diameter of garden hose in m
D=0.01//Diamter of nozzle opening in m
v1=0.6//speed of flow of water in the hose in m/s
//calculations
a=3.14*(d/2)^2//Area of hose in m^2
A=3.14*(D/2)^2//Area of nozzle in m^2
v2=(v1*a)/A//Speed of flow through the nozzle in m/s
//Output
printf('Speed of flow through the nozzle is %3.1f m/s',v2)
|
b00df5f2bcf6cca6ab5868a0db58df5f00e15be2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH2/EX2.3.5/ex_2_3_5.sce | ee9537e330f7d87f02e9f5c5095e7dc003cda336 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | ex_2_3_5.sce | //Example 2.3.5: resolution
clc;
clear;
close;
//given data :
V=200;// full scale reading in volts
N=100;// number of divisions
Scale_div=V/N;
R=(1/10)*Scale_div;
disp(R,"resolution,R(V) = ")
|
4af55b45d966c9711c909943b7ea50986e9aa290 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH4/EX4.14/example_4_14.sce | 051e3f1c1f95a9116bb4cbe48e929eac7d342092 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 447 | sce | example_4_14.sce | syms M1 X1 B1 K X2 M2 B2 K3 K1 K2 C1 C2 C3 R1 R2 M3 X3 B3 I1 I2 I3 L3 L1 L2 R3
F=M1*X1*s^2 + B1*s*X1 + K*X1 + B2*(X1-X2)*s
zero=M2*X2*s^2 + B2*s*(X2-X1)+K3*X2+K2*(X2-X3)
zro=K2*(X3-X2)+M3*s^2*X3+B3*s*X3
disp(F)
disp(zero," 0 =")
disp(zro," 0 = ")
disp("F-V equations are")
V=L1*s*I1 + R1*I1 + R2*(I1-I2)+I1/(s*C1)
zero=L2*s*I2 + I2/(s*C3) + R2*(I2-I1)+(I2-I3)/(s*C2)
zro=(I3-I2)/(s*C2)+L3*s*I3+R3*I3
disp(V)
disp(zero)
disp(zro) |
6895a31af32d9b42c383fb072e73f6c4807d6222 | 72ac833e7b16c97d94b7633a14d43fe34d6ab54b | /Projeto Final/SinaisSistemasLIB.sce | 1585ad9e7d54c34d68a96178b6d92f6bc7d50c1d | [
"MIT"
] | permissive | peddrogomes/Sinais-e-sistemas | 5c63a0a647f60d78af71efd8ed0e16909c78313a | 80653e4f5736a0bb6bd4aaabec6dd39600eb495a | refs/heads/main | 2023-05-11T06:30:38.489032 | 2021-06-04T23:07:24 | 2021-06-04T23:07:24 | 373,974,945 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,417 | sce | SinaisSistemasLIB.sce | // UFPE
// Prof. Gilson Jerônimo
// Biblioteca de funcoes uteis para Sinais e Sistemas
// Definicoes
// 1) Essa biblioteca considera um sinal como uma matriz linha (1 x N)
// 2) Sinais iniciam no tempo n = 0 por definicao
// 3) Os sinais sao de tempo discreto
// define a funcao impulso
function delta = impulso(x)
delta = 1*(x == 0);
endfunction
// define a funcao degrau
function u = degrau(x)
u = 1*(x >= 0);
endfunction
// Deslocamento a direita
function y = tsSignal(x,delay)
y = [zeros(1,delay) x];
endfunction
// Adicoes de Sinais
function y = addSignal(h,x)
Lh = length(h);
Lx = length(x);
if Lh < Lx then
menor = h;
maior = x;
D = Lx - Lh;
else
menor = x;
maior = h;
D = Lh - Lx;
end
y = maior + [menor, zeros(1,D)];
endfunction
// Multiplicacao de Sinais
function y = multSignal(h,x)
Lh = length(h);
Lx = length(x);
if Lh < Lx then
menor = h;
maior = x;
D = Lx - Lh;
else
menor = x;
maior = h;
D = Lh - Lx;
end
y = maior .* [menor, zeros(1,D)];
endfunction
// Plotar um sinal de tempo discreto
function plotDiscreteTime(x)
n = 0:(length(x)-1);
plot2d3(n,x);
a = gce(); // comente para remover os circulos
a.children(1).mark_style = 9; // comente para remover os circulos
b = gca();
b.x_location = "origin";
endfunction
|
342df388cb005c5e59170ab471035a1a815f4030 | 002b6230874dea6e4d76defafc1ae293b5744918 | /library/Demos/LocalRegions/Tests/LocProject_Diff2D_Tri_Nodal_Basis_P6_Q7.tst | 408ac25c71f83f0b82a10f67222d25a27bdb31d6 | [
"MIT"
] | permissive | SCOREC/nektar | f3cf3c44106ac7a2dd678366bb53861e2db67a11 | add6f04b55fad6ab29d08b5b27eefd9bfec60be3 | refs/heads/master | 2021-01-22T23:16:16.440068 | 2015-02-27T17:26:09 | 2015-02-27T17:26:09 | 30,382,914 | 6 | 7 | null | null | null | null | UTF-8 | Scilab | false | false | 496 | tst | LocProject_Diff2D_Tri_Nodal_Basis_P6_Q7.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>LocProject_Diff2D Tri Nodal Basis P=6, Q=7</description>
<executable>LocProject_Diff2D</executable>
<parameters>3 13 13 6 6 7 7 0.0 0.0 1.0 1.0 0.5 1.0</parameters>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-12">2.99203e-14</value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-12">6.11067e-13</value>
</metric>
</metrics>
</test>
|
1188acac7ac480d763155ce46670dd806449cba0 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_M._R._Srinivasan_3411.zip/Engineering_Physics_M._R._Srinivasan_3411/CH10/EX2.6.u2/Ex2_6_u2.sce | e2aa38598a1358b2561984beb52d0e99792bf7d2 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 368 | sce | Ex2_6_u2.sce | errcatch(-1,"stop");mode(2);//Example 2_6_u2
;
;
//To calculate the fermi energy level
h=4.14*10^-15 //units in m^2 kg s^-1
n=8.49*10^28 //units in m^-3
m=9.1*10^-31 //units in Kgs
Ef=(h^2*(3*n)^0.666)/(8*m*(%pi)^0.666) //units in J
Ef=Ef*1.67*10^-19 //units in eV
printf("Fermi energy for copper is Ef=%.2f eV",Ef)
exit();
|
f74a497811be24f32534b6a53fdc5b125597d045 | c01ca78370f3e6b54de574f320475030453d1290 | /test1.sce | 03b83f002db81639d80e2c9d18be8ccf59b4b889 | [] | no_license | hegdekartik/FOSSEE_communication_toolbox | d7e14c9c4e8c99915b293438c057bbdea60074bb | 399530b6ef3a9ea95164dc5f7d584ea7a9aa7957 | refs/heads/master | 2023-08-19T02:00:29.665821 | 2018-06-13T11:04:18 | 2018-06-13T11:04:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,763 | sce | test1.sce | getd .
test_pass=[]
res=[]
/////////Test case for 1) allignsignal //////////
x=[0 0 2 5 1 ];
y=[2 5 1 4];
[xa,ya]=alignsignals(x,y)
if(xa==[0 0 2 5 1 4] & ya==[0 0 2 5 1 4])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Allignsignal Test failed")
end
/////////////////////////////////////////////
/////////Test case for 2) arithenco //////////
seq=[1 3 2 1]
counts=[5 2 1]
code = arithenco(seq,counts)
if(code==[1 0 0 1 0 1 1 1 0 0])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Arithenco Test failed")
end
/////////////////////////////////////////////
/////////Test case for 3) arithdeco //////////
seq=[1 3 2 1]
counts=[5 2 1]
len=4
code = arithenco(seq,counts)
dseq = arithdeco(code,counts,length(seq));
if(dseq==[1 3 2 1])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Arithdeco Test failed")
end
/////////////////////////////////////////////
/////////Test case for 4) FInddelay //////////
x=[1 2 3 4 5 6]
y=[5 6]
D1 = finddelay(x,y,5)
D2 = finddelay(x,y,3)
if(D1==-4 & D2==-3)
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Finddelay Test failed")
end
/////////////////////////////////////////////
/////////Test case for 5) Gfcosets //////////
a=2;
b=3;
c = gfcosets(a,b)
if(c(:,1)==[0;1;2;4;5] & c(2,2)==3 & c(3,2)==6 & c(5,2)==7 & isnan(c(1,2)) & isnan(c(4,2)))
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("gfcosets Test failed")
end
/////////////////////////////////////////////
/////////Test case for 6) Gflineq //////////
A = [2 0 1;1 1 0;1 1 2]
b=[1;0;0]
p=3
[x,vld] = gflineq(A,b,p)
if(vld==1 & x==[2;1;0])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Gflineq Test failed")
end
/////////////////////////////////////////////
/////////Test case for 7) Gfrepcov //////////
x=[1 2 4 6];
polystandard = gfrepcov(x)
if(polystandard==[0 1 1 0 1 0 1])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Gfrepcov Test failed")
end
/////////////////////////////////////////////
/////////Test case for 8) Gftrunc //////////
a=[0 0 1 2 3 0 0 4 5 0 0];
c = gftrunc(a)
if(c==[0 0 1 2 3 0 0 4 5])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Gftrunc Test failed")
end
/////////////////////////////////////////////
/////////Test case for 9) Istrellis //////////
trellis.numInputSymbols = 2;
trellis.numOutputSymbols = 2;
trellis.numStates = 2;
trellis.nextStates = [0 1;0 1];
trellis.outputs = [0 0;1 1];
[isok,status] = istrellis(trellis)
if(isempty(status) & isok)
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("istrellis Test failed")
end
/////////////////////////////////////////////
/////////Test case for 10)iscatastrophic //////////
eg_1.numInputSymbols = 4;
eg_1.numOutputSymbols = 4;
eg_1.numStates = 3;
eg_1.nextStates = [0 1 2 1;0 1 2 1; 0 1 2 1];
eg_1.outputs = [0 0 1 1;1 1 2 1; 1 0 1 1];
res_c_eg_1=iscatastrophic(eg_1)
if(res_c_eg_1==0)
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("iscatastrophic Test failed")
end
/////////////////////////////////////////////
/////////Test case for 11)iqimbal2coef //////////
ampImb = 2; // dB
phImb = 15; // degrees
compcoef = iqimbal2coef(ampImb,phImb)
compcoef=roundn(compcoef,4)
if(compcoef==[-0.1126+0.1334*%i 0])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Iqimbal2coef Test failed")
end
/////////////////////////////////////////////
/////////Test case for 12)iqcoef2imbal //////////
x=[4 2 complex(-0.1145,0.1297) complex(-0.0013,0.0029)];
[a_imb_db,ph_imb_deq] = iqcoef2imbal(x);
a_imb_db=roundn(a_imb_db,4);
ph_imb_deq=roundn(ph_imb_deq,4)
if(a_imb_db==[4.437 9.5424 2.0319 0.0226] &ph_imb_deq==[180 180 14.5877 0.3323])
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("Iqcoef2imbal Test failed")
end
/////////////////////////////////////////////
/////////Test case for 13)lteZadoffChuSeq //////////
a=25;
b=139;
seq = lteZadoffChuSeq(a,b);
seq=roundn(seq,3);
M1=fscanfMat("txt1_ltezadoffchuseq");
M2=fscanfMat("txt2_ltezadoffchuseq");
if(real(seq)==M1 & imag(seq)==M2)
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("iteZadoffChuSeq Test failed")
end
/////////////////////////////////////////////
/////////Test case for 14)ssbmod //////////
Fs =50;
t = [0:2*Fs+1]'/Fs;
ini_phase = 5;
Fc = 20;
fm1= 2;
fm2= 3;
x =sin(2*fm1*%pi*t)+cos(2*fm2*%pi*t); //message signal
y = ssbmod(x,Fc,Fs,ini_phase);
y=roundn(y,4);
M=fscanfMat("txt3_ssbmod");
if(y==M)
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("ssbmod Test failed")
end
/////////////////////////////////////////////
/////////Test case for 15)ssbdemod //////////
Fs =50;
t = [0:2*Fs+1]'/Fs;
ini_phase = 5;
Fc = 20;
fm1= 2;
fm2= 3;
x =sin(2*fm1*%pi*t)+cos(2*fm2*%pi*t); //message signal
y = ssbmod(x,Fc,Fs,ini_phase); //modulated signal
o = ssbdemod(y,Fc,Fs,ini_phase);
o = roundn(o,4);
M=fscanfMat("txt4_ssbdemod");
if(o==M)
test_pass=[test_pass,1]
else
test_pass=[test_pass,0]
disp("ssbdemod Test failed")
end
/////////////////////////////////////////////
res=find(test_pass==0)
if(res~=[])
disp("One or more tests failed")
//exit(1)
else
disp("pass")
//exit
end
|
e58bd21698024af9564ea4433f8f3da8fe304a86 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH6/EX6.10.7/exa6_10_7.sce | 93641290170b25b96aba8737a1c4fc9ae933d566 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 997 | sce | exa6_10_7.sce | //caption:determine_factor_by_which_K_should_be_reduced
//example 6.10.7
//page 175
syms T K //K=forward_path_gain,T=time_constant
s=%s;
G=K/(s*(s*T+1));
G=simple(G);
printf("the_forward_path_transfer_function: \n" );
disp(G,"G(s)=");
H=1;//backward path transfer function
CL=G/.H;
CL=simple(CL);
printf("the_overlall_transfer_function: \n" );
disp(CL,"C(s)/R(s)=");
printf("the_characterstic_equation_is:\n ");
disp("s^2+s/T+K/T=0");
//from char. eq. we get Wn^2=K/T and 2*zeta*Wn=1/T, so
Wn=sqrt(K/T);//natural frequency
zeta=(1/2)*sqrt(1/K*T)
//let K1 be forward path gain when Mp1=60% and zeta1 be corresponding damping factor
syms K1 K2 zeta1 zeta2
Mp1=(exp(-(zeta1*%pi)/sqrt(1-zeta1^2)))*100//max. overshoot
//on solving we get :
zeta1=0.158
//similarly let K2 be forward path gain when Mp2=20% and zeta2 be corresponding damping factor, which gives
zeta2=0.447
//assuming time const. T to be const. we get
k=(K1/K2);
k=(zeta1/zeta2)^2;
disp(k,"K1/K2=");
|
05ca2ef1471778fc3ad1d310b1700856e34a6e44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/DEPENDENCIES/19_2data.sci | f8d398311b4ceb4f73d1e8f1aae8fe7fdb0b8091 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 318 | sci | 19_2data.sci | L12=900;//leangth of section 1-2(outer),given in mm
L34=300;//leangth of section 3-4,given in mm
L13=600;//leangth of section 1-3,given in mm
t13=2;//thickness of section 1-3,given in mm
t12=1.5;//thickness of section 1-2,given in mm
T=10*10^6;//given in N.mm
A=20000;//given in N.mm^2
G=25000;//given in N.mm^2 |
ad247a315a0ca73c3122511b193cf7fdbf38a184 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH14/EX14.19/19.sce | 93899bc956b7cc92efe4e87640d68b76072053b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 584 | sce | 19.sce | clc
h2=178.61; //kJ/kg
h3a=203.05; //kJ/kg
h_f4=74.53; //kJ/kg
h1=h_f4;
s3a=0.682; //kJ/kg K
s2=0.7082; //kJ/kg K
cp=0.747; //kJ/kg K
T3a=313; //K
CE=20; //Cooling effect
C=0.03;
v_g=0.1088;
p_d=9.607;
p_s=1.509;
n=1.13;
m=CE/(h2-h1);
T3=T3a*%e^((s2-s3a)/cp)
h3=h3a+cp*(T3-T3a);
P=m*(h3-h2);
disp("Power required by the machine =")
disp(P)
disp("kW")
n_vol=1+C-C*(p_d/p_s)^(1/n); //Volumetric efficiency
V1=m*v_g; //volume of refrigerant at the intake conditions
V_swept=V1/n_vol;
V=V_swept*60/300;
disp("Piston displacement =")
disp(V)
disp("m^3") |
a741d88dd04addbad9c61ae7b5d70d8e39ed9139 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/lhsvarsnames.sci | aa5cb517ea2d11c520d8fa02a9fea7ea7a3f5077 | [
"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 | 149 | sci | lhsvarsnames.sci | function [x1,x2,x3,x4,x5,x6,x7,x8,x9,x10]=lhsvarsnames()
// Copyright INRIA
for k=1:lhs
execstr('x'+string(k)+' = lst(ilst+'+string(k)+')(2)')
end
|
8d798c8a38298694cbd31743ab930da526a10300 | eb7eeb04a23a477e06f3c0e3d099889caee468b4 | /src/tools/scilab/iome_toolbox/macros/iome.sci | 907662642867ab53b9da4703f5532a7a9083d956 | [] | no_license | mikeg64/iome | 55699b7d7b3d5c1b006d9c82efe5136b8c909dfd | cc1c94433133e32776dcf16704ec4ec337b1b4a0 | refs/heads/master | 2020-03-30T15:57:33.056341 | 2016-04-13T09:24:27 | 2016-04-13T09:24:27 | 151,387,236 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 130 | sci | iome.sci | function [elist]=iome(server,port,id)
elist=list(3);
elist(1)=server;
elist(2)=port;
elist(3)=id;
endfunction
|
d02ba3af3dd1f85193824774b82ecd6e56b6ffe8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH13/EX13.16/exa13_16.sce | 6e91b4760c1233c8c4708a16f1b9112f61b7bb0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | exa13_16.sce | // Example 13.16
// Impulsive Zero -State Response
C_1=1/20;
C_2=1/20;
R=5;
L=1;
s=%s;
Z_s=1/(s*C_1)+1/((s*C_2)+1/R+1/(s*L)); // Overall impedance of the circuit
V_s=80/s;
I_s=V_s/Z_s;
t=0:0.01:10
pfe=pfss(I_s);
// Taking inverse Laplace transfrom we get
// Inverse laplace transform of pfe(1)
i_1=4.80*exp(-t).*cos(3*t-((%pi*33.7)/180));
//inverse laplace of pfe(2)
i_2=2;
i=i_1+i_2;
plot(t,i)
xlabel('t')
ylabel('i(t)')
title("Current waveform")
|
1362fa245886470507c799485741270b94fc7031 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/TECH.prev.tst | a38bfa4f356a0beb44750b20a8d2e3987e2a532e | [
"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 | 5,230 | tst | TECH.prev.tst | Expanding for base=6, level=3, reasons+features=base,same,similiar,evenexp norm
Refined variables=x,y
[0+1x,0+1y]: unknown -> [1] [0,0] x²-y³+4
---------------- level 0
expanding queue[0]^-1,meter=[6,6]: x²-y³+4
[2+6x,2+6y]: unknown -> [1] [2,2] 2x+3x²-6y-18y²-18y³
-> solution [2,2],trivial(2)
[4+6x,2+6y]: negative-1 [1] by {x=>-x-1}
[1+6x,5+6y]: unknown -> [2] [1,5] 2x+6x²-75y-90y²-36y³-20
[5+6x,5+6y]: negative-1 [2] by {x=>-x-1}
-> solution [11,5],NONTRIVIAL
endexp[0]
---------------- level 1
expanding queue[1]^0,meter=[6,1]: 2x+3x²-6y-18y²-18y³
[2+36x,2+6y]: unknown -> [3] [0,0] 2x+18x²-y-3y²-3y³
-> solution [2,2],trivial(2)
endexp[1]
expanding queue[2]^0,meter=[6,6]: 2x+6x²-75y-90y²-36y³-20
[7+36x,5+36y]: unknown -> [4] [1,0] 14x+36x²-75y-540y²-1296y³-2
[25+36x,5+36y]: unknown -> [5] [4,0] 50x+36x²-75y-540y²-1296y³+14
[7+36x,17+36y]: unknown -> [6] [1,2] 14x+36x²-867y-1836y²-1296y³-135
[25+36x,17+36y]: unknown -> [7] [4,2] 50x+36x²-867y-1836y²-1296y³-119
[7+36x,29+36y]: unknown -> [8] [1,4] 14x+36x²-2523y-3132y²-1296y³-676
[25+36x,29+36y]: unknown -> [9] [4,4] 50x+36x²-2523y-3132y²-1296y³-660
endexp[2]
---------------- level 2
expanding queue[3]^1,meter=[6,6]: 2x+18x²-y-3y²-3y³
[2+216x,2+36y]: unknown -> [10] [0,0] 2x+108x²-y-18y²-108y³
-> solution [2,2],trivial(2)
[110+216x,2+36y]: unknown -> [11] [3,0] 110x+108x²-y-18y²-108y³+28
[38+216x,14+36y]: unknown -> [12] [1,2] 38x+108x²-49y-126y²-108y³-3
[146+216x,14+36y]: unknown -> [13] [4,2] 146x+108x²-49y-126y²-108y³+43
[74+216x,26+36y]: unknown -> [14] [2,4] 74x+108x²-169y-234y²-108y³-28
[182+216x,26+36y]: unknown -> [15] [5,4] 182x+108x²-169y-234y²-108y³+36
endexp[3]
expanding queue[4]^2,meter=[6,6]: 14x+36x²-75y-540y²-1296y³-2
[43+216x,5+216y]: unknown -> [16] [1,0] 86x+216x²-75y-3240y²-46656y³+8
[151+216x,5+216y]: unknown -> [17] [4,0] 302x+216x²-75y-3240y²-46656y³+105
[43+216x,77+216y]: unknown -> [18] [1,2] 86x+216x²-17787y-49896y²-46656y³-2105
[151+216x,77+216y]: unknown -> [19] [4,2] 302x+216x²-17787y-49896y²-46656y³-2008
[43+216x,149+216y]: unknown -> [20] [1,4] 86x+216x²-66603y-96552y²-46656y³-15306
[151+216x,149+216y]: unknown -> [21] [4,4] 302x+216x²-66603y-96552y²-46656y³-15209
endexp[4]
expanding queue[5]^2,meter=[6,6]: 50x+36x²-75y-540y²-1296y³+14
[97+216x,5+216y]: unknown -> [22] [2,0] 194x+216x²-75y-3240y²-46656y³+43
[205+216x,5+216y]: unknown -> [23] [5,0] 410x+216x²-75y-3240y²-46656y³+194
[97+216x,77+216y]: unknown -> [24] [2,2] 194x+216x²-17787y-49896y²-46656y³-2070
[205+216x,77+216y]: unknown -> [25] [5,2] 410x+216x²-17787y-49896y²-46656y³-1919
[97+216x,149+216y]: unknown -> [26] [2,4] 194x+216x²-66603y-96552y²-46656y³-15271
[205+216x,149+216y]: unknown -> [27] [5,4] 410x+216x²-66603y-96552y²-46656y³-15120
endexp[5]
expanding queue[6]^2,meter=[6,6]: 14x+36x²-867y-1836y²-1296y³-135
[7+216x,53+216y]: unknown -> [28] [0,1] 14x+216x²-8427y-34344y²-46656y³-689
[115+216x,53+216y]: unknown -> [29] [3,1] 230x+216x²-8427y-34344y²-46656y³-628
[7+216x,125+216y]: unknown -> [30] [0,3] 14x+216x²-46875y-81000y²-46656y³-9042
[115+216x,125+216y]: unknown -> [31] [3,3] 230x+216x²-46875y-81000y²-46656y³-8981
[7+216x,197+216y]: unknown -> [32] [0,5] 14x+216x²-116427y-127656y²-46656y³-35395
[115+216x,197+216y]: unknown -> [33] [3,5] 230x+216x²-116427y-127656y²-46656y³-35334
endexp[6]
expanding queue[7]^2,meter=[6,6]: 50x+36x²-867y-1836y²-1296y³-119
[61+216x,53+216y]: unknown -> [34] [1,1] 122x+216x²-8427y-34344y²-46656y³-672
[169+216x,53+216y]: unknown -> [35] [4,1] 338x+216x²-8427y-34344y²-46656y³-557
[61+216x,125+216y]: unknown -> [36] [1,3] 122x+216x²-46875y-81000y²-46656y³-9025
[169+216x,125+216y]: unknown -> [37] [4,3] 338x+216x²-46875y-81000y²-46656y³-8910
[61+216x,197+216y]: unknown -> [38] [1,5] 122x+216x²-116427y-127656y²-46656y³-35378
[169+216x,197+216y]: unknown -> [39] [4,5] 338x+216x²-116427y-127656y²-46656y³-35263
endexp[7]
expanding queue[8]^2,meter=[6,6]: 14x+36x²-2523y-3132y²-1296y³-676
[79+216x,29+216y]: unknown -> [40] [2,0] 158x+216x²-2523y-18792y²-46656y³-84
[187+216x,29+216y]: unknown -> [41] [5,0] 374x+216x²-2523y-18792y²-46656y³+49
[79+216x,101+216y]: unknown -> [42] [2,2] 158x+216x²-30603y-65448y²-46656y³-4741
[187+216x,101+216y]: unknown -> [43] [5,2] 374x+216x²-30603y-65448y²-46656y³-4608
[79+216x,173+216y]: unknown -> [44] [2,4] 158x+216x²-89787y-112104y²-46656y³-23942
[187+216x,173+216y]: unknown -> [45] [5,4] 374x+216x²-89787y-112104y²-46656y³-23809
endexp[8]
expanding queue[9]^2,meter=[6,6]: 50x+36x²-2523y-3132y²-1296y³-660
[25+216x,29+216y]: unknown -> [46] [0,0] 50x+216x²-2523y-18792y²-46656y³-110
[133+216x,29+216y]: unknown -> [47] [3,0] 266x+216x²-2523y-18792y²-46656y³-31
[25+216x,101+216y]: unknown -> [48] [0,2] 50x+216x²-30603y-65448y²-46656y³-4767
[133+216x,101+216y]: unknown -> [49] [3,2] 266x+216x²-30603y-65448y²-46656y³-4688
[25+216x,173+216y]: unknown -> [50] [0,4] 50x+216x²-89787y-112104y²-46656y³-23968
[133+216x,173+216y]: unknown -> [51] [3,4] 266x+216x²-89787y-112104y²-46656y³-23889
endexp[9]
---------------- level 3
Maximum level 3 [52] mod 6: x²-y³+4
|
526839b4b85f25018bd01106e19b24b257dd39b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH2/EX2.2/Ex2_2.sce | 39b134d1823ba299a2031d069a0689be7fe32469 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 597 | sce | Ex2_2.sce | clc
h = 10 // height of cup in cm
d = 5 // diameter of cup in cm
D = sqrt(d^2 + 4*d*h) // blank diameter in cm
// height daimeter ratio is 2 . Therefore from table 2.9 total reductions are 3
r1 = 0.45*D // first reduction is 45%
d1 = D - r1 // diameter at first draw in cm
r2 = d1*0.25 // second reduction is 25%
d2 = d1 - r2 // diameter at second draw in cm
r3 = d2*0.2 // third reduction is 20%
d3 = d2 - r3 // diameter at third draw in cm
printf("\n Diameter at first draw = %0.2f cm\n Diameter at second draw = %0.2f cm\n Diameter at third draw =%0.3f cm" , d1 , d2 , d3)
|
a714b2e8388b126a951be1ff584188dc1df0abd8 | b9c6de66a61d6f9a57edaa44baf92266ccbab3db | /macros/distfun_geoinv.sci | 6c0af928f2d7c5a393056f3fbc11fe0bfa5cba27 | [] | no_license | papriwalprateek/distfun-scilab | 81b3edef0af1d1908e05472dfb15b0a55f61571d | 82fd34521d1e6ebb6513773264b54a0d48f5f3f9 | refs/heads/master | 2016-09-03T07:08:47.605240 | 2013-10-13T05:53:43 | 2013-10-13T05:53:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,339 | sci | distfun_geoinv.sci | // Copyright (C) 2012 - Prateek Papriwal
// Copyright (C) 2012 - Michael Baudin
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
//
function x = distfun_geoinv(varargin)
// Geometric Inverse CDF
//
// Calling Sequence
// x = distfun_geoinv(p,pr)
// x = distfun_geoinv(p,pr,lowertail)
//
// Parameters
// p : a 1x1 or nxm matrix of doubles, the probability .
// pr : a 1x1 or nxm matrix of doubles, the probability of success in a Bernoulli trial
// lowertail : a 1x1 matrix of booleans, the tail (default lowertail=%t). If lowertail is true (the default), then considers P(X<=x) otherwise P(X>x).
// x : a nxm matrix of doubles, the outcome. x belongs to the set {0,1,2,3,......}
//
// Description
// Computes the Inverse cumulative distribution function of
// the Geometric distribution function.
//
// Any scalar input argument is expanded to a matrix of doubles
// of the same size as the other input arguments.
//
// Examples
//
// // Test with p scalar, pr scalar
//x = distfun_geoinv(0.999,0.5)
//expected = 9;
//x = distfun_geoinv(1-0.999,0.5,%f)
//expected = 9;
//
// // Test with expanded p , scalar pr
//x = distfun_geoinv([0.32 0.3],0.2)
//expected = [1. 1.];
//
// // Test with scalar p, expanded pr
//x = distfun_geoinv(0.22,[0.33 0.1])
//expected = [0. 2.];
//
//
// // Test small values of p
// xn = distfun_geoinv(1.e-15,0.1)
// expected = 0.;
// xn = distfun_geoinv(1.e-15,0.1,%f)
// expected = 327.;
//
// // Test small values of pr
// xn = distfun_geoinv(0.1,1.e-20)
// expected = 10536051565782630122;
// xn = distfun_geoinv(0.1,1.e-20,%f)
// expected = 230258509299404568400;
//
// Bibliography
// http://en.wikipedia.org/wiki/Geometric_distribution
//
// Authors
// Copyright (C) 2012 - Prateek Papriwal
//
[lhs,rhs] = argn()
apifun_checkrhs("distfun_geoinv",rhs,2:3)
apifun_checklhs("distfun_geoinv",lhs,0:1)
p = varargin(1)
pr = varargin(2)
lowertail = apifun_argindefault(varargin,3,%t)
//
// Check type
apifun_checktype("distfun_geoinv",p,"p",1,"constant")
apifun_checktype("distfun_geoinv",pr,"pr",2,"constant")
apifun_checktype("distfun_geoinv",lowertail,"lowertail",3,"boolean")
apifun_checkscalar("distfun_geoinv",lowertail,"lowertail",3)
//
// Check Content
apifun_checkrange("distfun_geoinv",p,"p",1,0,1)
apifun_checkrange("distfun_geoinv",pr,"pr",2,0,1)
[p,pr] = apifun_expandvar(p,pr)
if (p==[]) then
x=[]
return
end
if (lowertail) then
i = find(p<1)
x = zeros(p)
x(i) = floor(specfun_log1p(-p(i)) ./ specfun_log1p(-pr(i)))
i = find(p==1)
x(i) = %inf
else
i = find(p>0)
x = zeros(p)
x(i) = floor(log(p(i)) ./ specfun_log1p(-pr(i)))
i = find(p==0)
x(i) = %inf
end
endfunction
|
7c6b9038e29685fe816475fa9cd8b891cf7e4b30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH8/EX8.9/CH08Exa9.sce | c290fc33f6d151fb4a28ef9305fad2fa6c946a22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 759 | sce | CH08Exa9.sce | // Scilab code Exa8.9 : : Page-351 (2011)
clc; clear;
printf("\nThe possible states are : ");
// For s = 0
s = 0; // Spin angular momentum
m = 2*s+1; // Spin multiplicity
for j = 0:2 // Total angular momentum
l = j
if l == 0 then
printf("\n %dS%d, ", j,m);
elseif l == 2 then
printf(" %dD%d, ", j,m);
end
end
// For s = 1
s = 1;
m = 2*s+1;
l = 2
for j = 0:2
if j == 0 then
printf(" %dP%d, ", j,m);
elseif j ==1 then
printf(" %dP%d, ", j,m);
elseif j ==2 then
printf("%dP%d and ", j,m);
end
end
for j = 2
printf(" %dF%d", j,m)
end
// Result
// Possible states are :
// The possible states are :
// 0S1, 2D1, 0P3, 1P3, 2P3 and 2F3
|
7dc6369e1a989145c7297bfa7c49bbfbae541936 | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH17/EX17.10/ex17_10.sce | 9f1c1747c7cd9debb6d605876b36e16d41dc9f90 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 684 | sce | ex17_10.sce | clc
//Example 17.10
//From figure 17.32
disp('Consider Network A')
//Writing the mesh equations
disp('V1=12*I1+10*I2')
disp('V2=10*I1+14*I2')
//Arranging in the standard form
//V1=t11*V2-t12*I2
//I1=t21*V2-t22*I2
//Therefore t parameters of Network A is
t11A=1.2;t12A=6.8;t21A=0.1;t22A=1.4;
disp('Consider Network B')
//Writing the mesh equations
disp('V1=24*I1+20*I2')
disp('V2=20*I1+28*I2')
//Arranging in the standard form
//V1=t11*V2-t12*I2
//I1=t21*V2-t22*I2
//Therefore t parameters of Network B is
t11B=1.2;t12B=13.6;t21B=0.05;t22B=1.4;
tA=[1.2 6.8;0.1 1.4]
tB=[1.2 13.6;0.05 1.4]
disp('t parameters of cascaded network is t=tA*tB')
t=tA*tB
disp(t) |
0afddf0ef4ed26452ce1d8eb07c94795113a03f2 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/scicos/drawobjs.sci | 2e66fdbf241284c67c8875aa1bca4c95544920f2 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 81 | sci | drawobjs.sci | function drawobjs(x)
nx=size(x)
for i=2:nx
drawobj(x(i))
end
drawtitle(x(1))
|
d1dd4d10c922cbf2b7c46d8247c83d600921f577 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH7/EX7.22/EX_7_22.sce | dd07820ac4ec8fdedf2da664f918b2800b95fef1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | EX_7_22.sce | // Example 7.22:oscillation frequency
clc;
clear;
close;
w=2*10^3;//in radiand per second
f= round(w/(2*%pi));//resonant frequency
X=(((16*10^9*4*w^2*10^3))/((4*w^2*10^3)^2));//
disp(f,"resonant frequency in hertz")
disp(X,"oscillations are sustained")
|
f26d806f8965b5faa55740552af749511e68a144 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.7_14.tst | 6866d7d378ebff8884a143f97b8a70f7c83bb07a | [] | 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 | 5,480 | tst | bow.7_14.tst | 7 1:0.3333333333333333 13:1.0 14:1.0 15:1.0 21:0.3333333333333333 22:0.14285714285714285 27:0.03125 45:0.42857142857142855 49:0.07142857142857142 66:0.16666666666666666 70:1.0 71:0.5 84:1.0 86:0.3333333333333333 89:1.0 91:0.3333333333333333 94:1.0 97:0.25 107:0.25 113:2.0 136:2.0 144:1.0 155:0.1 157:2.0 195:1.0 224:1.0 229:1.0 274:1.0 311:2.0 357:1.0 392:2.0 396:2.0 448:1.0 491:1.0 525:1.0 874:2.0 1142:1.0 1303:1.0
7 2:0.3333333333333333 21:0.6666666666666666 27:0.03125 28:2.0 47:1.0 66:0.16666666666666666 67:1.0 104:0.25 212:2.0 229:1.0 396:1.0 416:1.0 419:0.2 509:1.0 833:1.0 898:1.0 1473:1.0
7 7:0.5 21:0.5 91:0.6666666666666666 104:0.25 115:1.0 132:0.5 209:1.0 264:1.0 268:3.0 438:1.0 509:1.0 664:1.0 685:1.0 788:1.0 1322:1.0
7 1:0.3333333333333333 4:0.14285714285714285 11:1.0 13:1.0 27:0.015625 66:0.16666666666666666 104:0.25 107:0.25 143:0.5 248:1.0 294:1.0 448:1.0 1381:1.0 1463:0.5 1506:1.0
7 17:1.0 21:0.6666666666666666 22:0.07142857142857142 45:0.14285714285714285 66:0.3333333333333333 89:1.0 94:1.0 135:0.3333333333333333 169:1.0 212:1.0 279:0.2 285:1.0 288:1.0 381:0.5 424:1.0 1128:1.0
7 21:0.16666666666666666 28:1.0 40:0.25 97:0.25 369:1.0 381:0.5 845:1.0
7 21:0.3333333333333333 22:0.07142857142857142 27:0.015625 47:1.0 97:0.25 107:0.25 143:0.5 165:0.1 676:1.0 833:2.0 868:1.0
7 21:0.3333333333333333 22:0.14285714285714285 27:0.015625 47:1.0 97:0.25 143:0.5 314:1.0 868:1.0
7 4:0.2857142857142857 7:0.5 21:0.5 22:0.07142857142857142 27:0.03125 28:1.0 45:0.14285714285714285 47:1.0 77:0.3333333333333333 93:1.0 104:0.5 130:1.0 169:1.0 224:1.0 298:0.5 328:1.0 392:1.0 424:2.0 547:1.0 566:1.0 587:0.5 622:1.0 675:1.0 833:1.0 1000:1.0 1039:1.0
7 14:1.0 21:0.3333333333333333 22:0.07142857142857142 28:2.0 40:0.5 66:0.5 84:1.0 89:1.0 91:0.3333333333333333 96:1.0 97:0.25 113:1.0 660:1.0 740:0.3333333333333333 1190:1.0
7 28:1.0 456:1.0
7 7:0.5 87:3.0
7 22:0.21428571428571427 28:1.0 45:0.14285714285714285 66:0.16666666666666666 77:0.3333333333333333 179:1.0 495:1.0
7 11:1.0 17:1.0 157:1.0 233:0.25 251:1.0 258:1.0 390:1.0 833:1.0
7 22:0.07142857142857142 45:0.14285714285714285 46:1.0 251:1.0
7 21:0.16666666666666666 22:0.07142857142857142 40:0.25 70:0.5 87:1.0 89:1.0 93:2.0 136:2.0 431:1.0 1375:1.0 1462:1.0 1503:1.0
7 7:1.0 13:1.0 21:0.3333333333333333 22:0.07142857142857142 27:0.046875 28:1.0 46:1.0 58:1.0 66:0.16666666666666666 91:1.0 104:0.25 113:1.0 143:1.0 229:1.0 233:0.25 452:1.0 509:1.0 527:1.0 890:1.0 894:1.0 1055:1.0 1567:1.0
7 4:0.14285714285714285 14:1.0 27:0.015625 47:1.0 49:0.07142857142857142 104:0.25 351:1.0 587:0.5 1366:1.0
7 17:1.0 22:0.07142857142857142 27:0.015625 104:0.25 124:1.0 224:1.0 508:0.5 587:0.5 975:1.0 1571:1.0
7 4:0.14285714285714285 53:0.14285714285714285 132:0.5 547:1.0
7 7:0.5 27:0.015625 31:1.0 40:0.25 45:0.14285714285714285 66:0.16666666666666666 838:1.0 1520:1.0
7 15:1.0 22:0.07142857142857142 30:0.2 40:0.25 93:1.0 97:0.25 214:1.0 509:1.0
7 2:0.3333333333333333 7:0.5 15:1.0 21:0.3333333333333333 22:0.07142857142857142 45:0.2857142857142857 47:1.0 66:0.16666666666666666 81:1.0 96:2.0 165:0.1 244:1.0 256:1.0 281:0.3333333333333333 298:0.5 660:1.0 879:1.0 1154:1.0 1155:1.0
7 1:0.3333333333333333 2:0.3333333333333333 4:0.2857142857142857 13:1.0 17:1.0 21:0.16666666666666666 22:0.14285714285714285 23:1.0 27:0.046875 40:0.25 45:0.5714285714285714 55:1.0 66:0.8333333333333334 71:0.5 80:0.5 91:0.3333333333333333 97:0.5 98:1.0 104:0.25 136:1.0 149:0.5 157:1.0 165:0.1 424:1.0 431:1.0 599:1.0 622:1.0 873:1.0 1040:1.0 1058:1.0 1154:1.0 1166:1.0
7 19:1.0 21:0.3333333333333333 22:0.14285714285714285 27:0.03125 28:1.0 36:2.0 40:0.25 45:0.14285714285714285 47:1.0 229:1.0 376:1.0 529:1.0 932:1.0 1058:1.0 1660:1.0
7 21:0.16666666666666666 22:0.07142857142857142 27:0.015625 66:0.16666666666666666 86:0.3333333333333333 104:0.5 130:1.0 205:1.0 281:0.3333333333333333 403:0.5 425:1.0
7 22:0.07142857142857142 66:0.16666666666666666
7 4:0.14285714285714285 7:1.0 13:1.0 22:0.07142857142857142 28:1.0 40:0.75 54:0.25 104:0.5 107:0.25 113:1.0 157:1.0 285:1.0 315:1.0
7 22:0.07142857142857142 27:0.03125 104:0.25 143:0.5 279:0.2 474:1.0 587:0.5 1427:1.0
7 2:0.3333333333333333 6:1.0 7:1.0 13:1.0 18:1.0 22:0.21428571428571427 27:0.015625 37:1.0 53:0.14285714285714285 54:0.25 58:1.0 66:0.16666666666666666 72:1.0 96:2.0 104:1.75 106:1.0 107:0.25 143:1.5 157:1.0 209:1.0 229:1.0 301:1.0 303:1.0 304:1.0 321:1.0 337:1.0 396:1.0 419:0.2 424:1.0 485:1.0 490:1.0 506:1.0 526:1.0 673:1.0 711:1.0 1129:1.0 1303:0.5 1674:1.0
7 1:0.3333333333333333 2:0.6666666666666666 4:0.14285714285714285 15:1.0 22:0.21428571428571427 58:1.0 95:1.0 96:2.0 104:0.75 130:1.0 136:1.0 149:0.5 165:0.1 172:0.6666666666666666 229:1.0 376:1.0 431:1.0 547:1.0 947:2.0 1274:1.0 1462:1.0 1573:1.0
7 7:0.5 22:0.14285714285714285 39:0.5 47:1.0 157:1.0 214:1.0 417:1.0 457:1.0 466:1.0 1387:1.0
7 419:0.2
7 66:0.16666666666666666 425:1.0
7 15:1.0 155:0.1 219:1.0 438:1.0
7 4:0.14285714285714285 21:0.16666666666666666 53:0.2857142857142857 104:0.25
7 22:0.07142857142857142 219:1.0 233:0.25 520:1.0 854:1.0
7 7:1.0 22:0.07142857142857142 66:0.16666666666666666 104:0.25 143:0.5 229:1.0 446:1.0 874:1.0 1762:1.0
7 21:0.16666666666666666 22:0.07142857142857142 58:1.0 72:1.0 93:1.0 269:2.0 566:1.0
7 4:0.14285714285714285 7:1.0 11:2.0 21:0.3333333333333333 22:0.35714285714285715 27:0.015625 28:1.0 31:1.0 32:1.0 39:0.5 45:0.14285714285714285 46:1.0 47:1.0 53:0.14285714285714285 58:1.0 59:1.0 72:1.0 96:2.0 104:0.25 133:0.5 277:1.0 298:0.5 1007:1.0
|
2b449b4715a9888a46a9faeae9747893f8624888 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH20/EX20.07/20_07.sce | 80200d877547f86b9ff1aa94586bcb182aba24fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 817 | sce | 20_07.sce | //Problem 20.07: A transformer takes a current of 0.8 A when its primary is connected to a 240 volt, 50 Hz supply, the secondary being on open circuit. If the power absorbed is 72 watts, determine (a) the iron loss current, (b) the power factor on no-load, and (c) the magnetizing current.
//initializing the variables:
V = 240; // in Volts
I0 = 0.8; // in Amperes
P = 72; // in Watts
f = 50; // in Hz
//calculation:
//Power absorbed = total core loss, P = V*I0*cos(phi0)
//Ic = I0*cos(phi0)
Ic = P/V
pf = Ic/I0
//From the right-angled triangle in Figure 20.2(b) and using
//Pythagoras’ theorem,
Im = (I0*I0 - Ic*Ic)^0.5
printf("\n\n Result \n\n")
printf("\n (a) Core loss component is %.2f A", Ic)
printf("\n (b) power factor is %.3f", pf)
printf("\n (c)magnetizing component is %.2f A",Im) |
f2148d40dabce37cdfaccb590145300d445b5d98 | 15b814fbf5ba965e98871286249c9f382d1eee4c | /non_linear/motorcc_dc-micromotors_v3.sce/MotorCC_DC-Micromotors_v3.sce | ba5c8f54e20a42b11e41d529b19f0b5f5ca71595 | [] | no_license | oscarkremer/disciplines | b5338f3a97c7a20e4b39618d7da0d4396dc35f07 | b8d1ca9da37f81c99ee08dbee795d2d936597666 | refs/heads/master | 2020-07-22T14:57:42.643799 | 2019-12-07T15:51:40 | 2019-12-07T15:51:40 | 207,239,678 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,733 | sce | MotorCC_DC-Micromotors_v3.sce | //Diretório de trabalho
// cd /home/claudiomachado/Documentos/IFSUL/EngEletrica/ControleNaoLinear/Simulacao/Scilab
clc();
xdel(winsid());
clear();
//stacksize('max');
// Parâmetros do modelo:
J=1.8/1000/100/100; //Momento de inércia do motor [gcm^2]
R=5.8;//Resistencia elétrica do motor [ohm].
L=135D-6;//Indutância do motor [uH].
Ki=1.496D-3;//constante de força contra-eletromotriz do motor, dada em [mV/min^-1] = [mV/RPM]
Kt=14.29D-3;//constante de torque, dada em [mNm/A]
Tf=0.4D-3;// Torque de atrito do motor [mNm]
B=Kt/J;
C=Ki/L;
D=R/L;
E=1/L;
//controlador
w=500;//velocidade desejada [rpm]
ow=600;//offset de velocidade [rpm]
Tw=2;//periodo de oscilação da velocidade desejada [s]
fw=1/Tw;//frequência de oscilação da velocidade desejada [Hz]
wf=2*%pi*fw;//frequência de oscilação da velocidade desejada [rad/s]
kp=1;//ganho do controlador proporcional
// Condições iniciais:
x01=[0.0];//
x02=[0.0];//
// Parâmetros de simulação:
t0=0; // Tempo inicial (s).
Ts=1/10000;// Período (s).
tmax=5;//5*Ts;// Duração da simulação (s).
t = [t0:Ts:tmax]; // Gera o tempo.
// Definição da função a ser integrada (dx/dt)
function dxdt=f(t,x)
x1=x(1,:);
x2=x(2,:);
if abs(x2)<0.01 then
if abs(Kt*x2)<Tf then
Bf=Kt*x2;
else
Bf=Tf;
end
else
Bf=Tf;
end
A=Bf/J;
// u=5;
x1d=6;
e=x1-x1d;
u=-kp*e-1*(-A+B*x2);
dxdt=[-(A)+(B*x2);-(C*x1)-(D*x2)+(E*u)];// Equação de estado
endfunction
// Resolve a equação diferencial via Runge-Kutta RKF45:
x = ode("rkf",[x01;x02],t0,t,f);
x1=x(1,:);
x2=x(2,:);
//// Desenha o gráfico da solução:
figure(0)
plot2d(t,x1);
figure(1)
plot2d(t,x2);
|
99bc6276d8ca5e6c0f58a372c898504d43675c46 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH28/EX28.9/Ex28_9.sce | 626a38a37bfa1ad8a47fac8595b6c634a03b8805 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 192 | sce | Ex28_9.sce | //chapter28
//example28.9
//page607
printf("Y = ( ( A + B )` . C . D` )` \n")
printf("Using De Morgan theorem \n")
printf("Y = ( A + B ) + C` + D \n")
printf("Y = A + B + C` + D \n")
|
8107fe92bba58c42e44d86b67da08b55a58e7b37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH5/EX5.7/Ex5_7.sce | f3ba198f32ecd8113f7b1f77f30e88c4a3fc91d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | Ex5_7.sce | dia=500//in mm
Asc=6*%pi/4*25^2//six 25 mm dia bars, in sq mm
Lef=8//effective length of column, in m
sigma_cc=5//in MPa
sigma_sc=190//in MPa
a=Lef*10^3/dia
//as Lef/b >12, it is a long column
Cr=1.25-Lef*1000/(48*dia)//reduction coefficient
sigma_cc=Cr*sigma_cc//in MPa
sigma_sc=Cr*sigma_sc//in MPa
Ag=%pi/4*dia^2//in sq mm
Ac=Ag-Asc//in sq mm
P=sigma_cc*Ac+sigma_sc*Asc//in N
mprintf("The safe load on the column=%f kN", P/10^3)
//the answer doesn't match with that given in textbook due to round-off error
|
fef785c8d9738285fd203469a8afa98fc4289d33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH10/EX10.1/Ex10_1.sce | 7847f9c46a11f81ce39a35f37b42b6acabc44371 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | Ex10_1.sce | //Chapter 10 : Crystallography and Crystal Imperfections
clear;
//Variable declaration
rho=10.6 //density of material
n=4 //No. of atoms/cell
A=108 //Atomic weigth
No=6.023*10**23 //Avagadro's No.
//Calculations
a=((n*A)/(No*rho))**(1/3)/10**-8
//Result
mprintf("Lattice parameter a= %.5f*10**-8 cm",a)
|
46b44801b364cb8ac001c6b44ab49bf987158bb5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH1/EX1.17/1_17.sce | 17700603d20b1ddc937fcbb3fb3ec68571a7de66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 645 | sce | 1_17.sce | //ques-1.17
//Calculating Hardness of solution
clc
m=0.5//mass of CaCO3 eq (in g)
v1=48;//volume of EDTA used for titration (in mL)
v2=15;//volume of EDTA used before boiling (in mL)
v3=10;//volume of EDTA used after boiling (in mL)
V=50;//volume of hard water used (in mL)
//500mL SHW = 500mg of CaCO3 eq
//48mL EDTA = 50mg CaCO3 eq
c=50/48;//CaCO3 eq for 1mL EDTA solution (in mg)
total=v2*c*(1000/V);//total hardness (in ppm)
nc=v3*c*(1000/V);//non-carbonate hardness (in ppm)
c=total-nc;//carbonate hardness (in ppm)
printf("Non-carbonate hardness in given water sample is %.1f ppm and Carbonate hardness is %.1f ppm.",nc,c);
|
e9ecebe1ac1332b142f09c1dc272b777a1aab6b3 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/TPE1.prev.tst | 563b3ce09bfc149f0b0930a1437fa3ea1af38cf0 | [
"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 | 5,729 | tst | TPE1.prev.tst | Expanding for base=2, level=5, reasons+features=base,same,similiar invall,norm,showfail
Refined variables=x,y
[0+1x,0+1y]: unknown -> [1] [0,0] 15x²-7y²-9
---------------- level 0
expanding queue[0]^-1,meter=[2,2]: 15x²-7y²-9
[0+2x,0+2y]: failure constant=-9, vgcd=4 [0,0] 60x²-28y²-9
[1+2x,0+2y]: failure constant=3, vgcd=2 [1,0] 30x+30x²-14y²+3
[0+2x,1+2y]: unknown -> [1] [0,1] 15x²-7y-7y²-4
[1+2x,1+2y]: failure constant=-1, vgcd=4 [1,1] 60x+60x²-28y-28y²-1
endexp[0]
---------------- level 1
expanding queue[1]^0,meter=[2,2]: 15x²-7y-7y²-4
[0+4x,1+4y]: unknown -> [2] [0,0] 30x²-7y-14y²-2
[2+4x,1+4y]: failure constant=11, vgcd=2 [1,0] 60x+60x²-14y-28y²+11
[0+4x,3+4y]: unknown -> [3] [0,1] 30x²-21y-14y²-9
[2+4x,3+4y]: failure constant=-3, vgcd=2 [1,1] 60x+60x²-42y-28y²-3
endexp[1]
---------------- level 2
expanding queue[2]^1,meter=[2,2]: 30x²-7y-14y²-2
[0+8x,1+8y]: unknown -> [4] [0,0] 60x²-7y-28y²-1
[4+8x,1+8y]: unknown -> [5] [1,0] 60x+60x²-7y-28y²+14
[0+8x,5+8y]: failure constant=-23, vgcd=2 [0,1] 120x²-70y-56y²-23
[4+8x,5+8y]: failure constant=7, vgcd=2 [1,1] 120x+120x²-70y-56y²+7
endexp[2]
expanding queue[3]^1,meter=[2,2]: 30x²-21y-14y²-9
[0+8x,3+8y]: failure constant=-9, vgcd=2 [0,0] 120x²-42y-56y²-9
[4+8x,3+8y]: failure constant=21, vgcd=2 [1,0] 120x+120x²-42y-56y²+21
[0+8x,7+8y]: unknown -> [6] [0,1] 60x²-49y-28y²-22
[4+8x,7+8y]: unknown -> [7] [1,1] 60x+60x²-49y-28y²-7
endexp[3]
---------------- level 3
expanding queue[4]^2,meter=[2,2]: 60x²-7y-28y²-1
[0+16x,1+16y]: failure constant=-1, vgcd=2 [0,0] 240x²-14y-112y²-1
[8+16x,1+16y]: failure constant=59, vgcd=2 [1,0] 240x+240x²-14y-112y²+59
[0+16x,9+16y]: unknown -> [8] [0,1] 120x²-63y-56y²-18
[8+16x,9+16y]: unknown -> [9] [1,1] 120x+120x²-63y-56y²+12
endexp[4]
expanding queue[5]^2,meter=[2,2]: 60x+60x²-7y-28y²+14
[4+16x,1+16y]: unknown -> [10] [0,0] 60x+120x²-7y-56y²+7
[12+16x,1+16y]: unknown -> [11] [1,0] 180x+120x²-7y-56y²+67
[4+16x,9+16y]: failure constant=-21, vgcd=2 [0,1] 120x+240x²-126y-112y²-21
[12+16x,9+16y]: failure constant=99, vgcd=2 [1,1] 360x+240x²-126y-112y²+99
endexp[5]
expanding queue[6]^3,meter=[2,2]: 60x²-49y-28y²-22
[0+16x,7+16y]: unknown -> [12] [0,0] 120x²-49y-56y²-11
[8+16x,7+16y]: unknown -> [13] [1,0] 120x+120x²-49y-56y²+19
[0+16x,15+16y]: failure constant=-99, vgcd=2 [0,1] 240x²-210y-112y²-99
[8+16x,15+16y]: failure constant=-39, vgcd=2 [1,1] 240x+240x²-210y-112y²-39
endexp[6]
expanding queue[7]^3,meter=[2,2]: 60x+60x²-49y-28y²-7
[4+16x,7+16y]: failure constant=-7, vgcd=2 [0,0] 120x+240x²-98y-112y²-7
[12+16x,7+16y]: failure constant=113, vgcd=2 [1,0] 360x+240x²-98y-112y²+113
[4+16x,15+16y]: unknown -> [14] [0,1] 60x+120x²-105y-56y²-42
[12+16x,15+16y]: unknown -> [15] [1,1] 180x+120x²-105y-56y²+18
endexp[7]
---------------- level 4
expanding queue[8]^4,meter=[2,2]: 120x²-63y-56y²-18
[0+32x,9+32y]: unknown -> [16] [0,0] 240x²-63y-112y²-9
[16+32x,9+32y]: unknown -> [17] [1,0] 240x+240x²-63y-112y²+51
[0+32x,25+32y]: failure constant=-137, vgcd=2 [0,1] 480x²-350y-224y²-137
[16+32x,25+32y]: failure constant=-17, vgcd=2 [1,1] 480x+480x²-350y-224y²-17
endexp[8]
expanding queue[9]^4,meter=[2,2]: 120x+120x²-63y-56y²+12
[8+32x,9+32y]: unknown -> [18] [0,0] 120x+240x²-63y-112y²+6
[24+32x,9+32y]: unknown -> [19] [1,0] 360x+240x²-63y-112y²+126
[8+32x,25+32y]: failure constant=-107, vgcd=2 [0,1] 240x+480x²-350y-224y²-107
[24+32x,25+32y]: failure constant=133, vgcd=2 [1,1] 720x+480x²-350y-224y²+133
endexp[9]
expanding queue[10]^5,meter=[2,2]: 60x+120x²-7y-56y²+7
[4+32x,1+32y]: failure constant=7, vgcd=2 [0,0] 120x+480x²-14y-224y²+7
[20+32x,1+32y]: failure constant=187, vgcd=2 [1,0] 600x+480x²-14y-224y²+187
[4+32x,17+32y]: unknown -> [20] [0,1] 60x+240x²-119y-112y²-28
[20+32x,17+32y]: unknown -> [21] [1,1] 300x+240x²-119y-112y²+62
endexp[10]
expanding queue[11]^5,meter=[2,2]: 180x+120x²-7y-56y²+67
[12+32x,1+32y]: failure constant=67, vgcd=2 [0,0] 360x+480x²-14y-224y²+67
[28+32x,1+32y]: failure constant=367, vgcd=2 [1,0] 840x+480x²-14y-224y²+367
[12+32x,17+32y]: unknown -> [22] [0,1] 180x+240x²-119y-112y²+2
[28+32x,17+32y]: unknown -> [23] [1,1] 420x+240x²-119y-112y²+152
endexp[11]
expanding queue[12]^6,meter=[2,2]: 120x²-49y-56y²-11
[0+32x,7+32y]: failure constant=-11, vgcd=2 [0,0] 480x²-98y-224y²-11
[16+32x,7+32y]: failure constant=109, vgcd=2 [1,0] 480x+480x²-98y-224y²+109
[0+32x,23+32y]: unknown -> [24] [0,1] 240x²-161y-112y²-58
[16+32x,23+32y]: unknown -> [25] [1,1] 240x+240x²-161y-112y²+2
endexp[12]
expanding queue[13]^6,meter=[2,2]: 120x+120x²-49y-56y²+19
[8+32x,7+32y]: failure constant=19, vgcd=2 [0,0] 240x+480x²-98y-224y²+19
[24+32x,7+32y]: failure constant=259, vgcd=2 [1,0] 720x+480x²-98y-224y²+259
[8+32x,23+32y]: unknown -> [26] [0,1] 120x+240x²-161y-112y²-43
[24+32x,23+32y]: unknown -> [27] [1,1] 360x+240x²-161y-112y²+77
endexp[13]
expanding queue[14]^7,meter=[2,2]: 60x+120x²-105y-56y²-42
[4+32x,15+32y]: unknown -> [28] [0,0] 60x+240x²-105y-112y²-21
[20+32x,15+32y]: unknown -> [29] [1,0] 300x+240x²-105y-112y²+69
[4+32x,31+32y]: failure constant=-203, vgcd=2 [0,1] 120x+480x²-434y-224y²-203
[20+32x,31+32y]: failure constant=-23, vgcd=2 [1,1] 600x+480x²-434y-224y²-23
endexp[14]
expanding queue[15]^7,meter=[2,2]: 180x+120x²-105y-56y²+18
[12+32x,15+32y]: unknown -> [30] [0,0] 180x+240x²-105y-112y²+9
[28+32x,15+32y]: unknown -> [31] [1,0] 420x+240x²-105y-112y²+159
[12+32x,31+32y]: failure constant=-143, vgcd=2 [0,1] 360x+480x²-434y-224y²-143
[28+32x,31+32y]: failure constant=157, vgcd=2 [1,1] 840x+480x²-434y-224y²+157
endexp[15]
---------------- level 5
Maximum level 5 [32] mod 2: 15x²-7y²-9
|
acff1f3362552d91061027007c218a0db3f130d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH3/EX3.1/Ex3_1.sce | 6a742a9e7496140b9691986c7a25581740de0a49 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 680 | sce | Ex3_1.sce | clc
//to calculate angular width and linear width
lambda=6*10^-5
e=0.01 //width of slit in cm
//position of minima is given by
sintheta=lambda/e //sintheta=m*lambda/e ,where m=1,2,3,......
disp("sintheta="+string(sintheta)+" m")
//since theta is very small,so sintheta is approximately equal to theta
theta=sintheta
theta1=2*theta
disp("total angular width of central maximum is theta1="+string(theta1)+" m radians ")
d=100 //distance in cm
Y=theta*d
Y1=2*Y
disp("linear width of central maximum on the screen is Y1="+string(Y1)+" m cm")
disp("values of m =1,2,3,............ gives the directions of first, second .............minima")
|
ef7b3f3816091dc2d7aa15229f2d2c4a34acf340 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3532/CH4/EX4.3.2/Ex4_4.sce | d02fc736f9fb29bdca1a767d6cac6f2131dc04b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 808 | sce | Ex4_4.sce | clc
clear
mprintf('Mechanical vibrations by G.K.Grover\n Example 4.3.2\n')
//given data
m=320//mass of engine in kg
mo=24//reciprocating mass on motor in kg
r=0.15//vertical stroke in m
e=r/2
delst=0.002//stati defln in m
C=490/(0.3)//damping recistance in N-sec/m
g=9.81// gravity in m/sec^2
N=480//speed in rpm in case b)
//calculation
Wn=sqrt(g/delst) //natural freqency in rad/sec
Nr=Wn/(2*%pi)*60 //resonant speed in rpm
W=(2*%pi*N/60)
bet=(W/Wn)
zeta=(C/(2*m*Wn)) //damping factor
y=(mo/m)//from eqn 4.3.2
X=(y*e)*(bet)^2/sqrt((1-bet^2)^2+(2*zeta*bet)^2)//from eqn 4.3.2
//output
mprintf(' a)speed of driving shaft at which esonance occurs is %4.4f RPM\n b)The amplitude of steady state forced vibrations when the driving shaft \n of the engine rotates at 480 RPM is %f m',Nr,X)
|
a4e670507c3b27a8edb39f4f266361be9782553a | 9fd700113e21acbb9d3cef5e6010e7f37656b6e6 | /cs16b025_lab1/Mux4Way16.tst | e84dccd19d1e49d14462bef517ef3c3b7a3a191e | [] | no_license | madhav543/cs16b025_lab | 01432fe8d0fbacf4dafe5189413943ec48afaed4 | 4924ea918b9b4dc6eb22b713e639204c9e59c697 | refs/heads/master | 2020-07-11T22:44:32.575114 | 2019-11-19T16:06:12 | 2019-11-19T16:06:12 | 204,659,765 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 502 | tst | Mux4Way16.tst | load Mux4Way16.hdl,
output-file Mux4Way16.out,
compare-to Mux4Way16.cmp,
output-list ip1%B1.16.1 ip2%B1.16.1 ip3%B1.16.1 ip4%B1.16.1 s%B2.2.2 out%B1.16.1;
set ip1 0,
set ip2 0,
set ip3 0,
set ip4 0,
set s 0,
eval,
output;
set s 1,
eval,
output;
set s 2,
eval,
output;
set s 3,
eval,
output;
set ip1 %B0001001000110100,
set ip2 %B1001100001110110,
set ip3 %B1010101010101010,
set ip4 %B0101010101010101,
set s 0,
eval,
output;
set s 1,
eval,
output;
set s 2,
eval,
output;
set s 3,
eval,
output; |
b7b064735cc6a6a4bf5b5ddbcd1a56b9636898b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH1/EX1.14/exa_1_14.sce | c2c53f69e2d705de2f3a58ab8298a1c03211f01f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sce | exa_1_14.sce | //Exa 1.14
clc;
clear;
close
// given data
T1=300;//in degree C
T2=50;//in degree C
x2=2*10^-2;// thickness of boiler wall in m
tc2=58;// thermal conductivity of wall in W/mk
x3=0.5*10^-2;// thickness of outer surface of the wall in m
tc3=116*10^-3;// thermal conductivity of outer surface of the wall in W/mk
R1=2.3*10^-3;// in k/W
R2=x2/tc2;
R3=x3/tc3;
sigmaR=R1+R2+R3;// Total Resistance
q=(T1-T2)/sigmaR;
disp(q,"Heat transfer rate per unit area in W/m^2 :")
// Note: Answer in the book is wrong
|
2821d3e1214332c77581ce42515d5650dddfca42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.14/5_14.sce | b9ea55b70deed400fa1909f3b40a4eb23368b300 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 238 | sce | 5_14.sce | //ques-5.14
//Calculating pH of the solution
clc
Ka=1.8*10^-5;
x1=0.2;//moles of HCl added
x2=1;//moles of acetic acid
x3=1;//moles of acetate ion
p=-log10(Ka)+log10((x2+x1)/(x3-x1));
printf("The pH of the solution is %.4f.",p);
|
cbfc89e9754b3a6361d445a42a4893cb92e181b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH3/EX3.37/Ex3_37.sce | 632db4262784decf35b8da8ebecab1802cb40576 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 810 | sce | Ex3_37.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 2 - Pressure and its measurements
// Problem 3.37
//Given Data Set in the Problem
dens=1000
g=9.81
h=500/1000
a=2.45
b=2
AB=h
//calculations
pB=dens*g*h*(1+a/g)
BC=pB
F_AB=(1/2*AB*BC)*b //force on side AB
mprintf("The force on side AB when it is moving upward with a const accn is %f N\n",F_AB)
//1)tank is moving vertically downward
pB=dens*g*h*(1-a/g)
BC=pB
F_AB=(1/2*AB*BC)*b //force on side AB
mprintf("The force on side AB when it is moving downward with a const accn is %f N\n",F_AB)
//1)tank is stationary
pB=dens*g*h
BC=pB
F_AB=(1/2*AB*BC)*b //force on side AB
mprintf("The force on side AB when it is moving upward with a const accn is %f N\n",F_AB)
|
418033d339a619ece62f9191a27d7cdd5586dc69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /527/CH3/EX3.7/3_7exam.sce | 88fdaff7595c03b66517d3cf7c459cba68cd39fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 841 | sce | 3_7exam.sce | //Engineering and Chemical Thermodynamics
//Example3.7
//Page no:128
//Solution:(a)
clear ; clc ;
//Given
V_1 = 0.5 ; //[m^3]
P_1 = 150 ; //[kPa]
T_1 = 20 + 273 ; //[K]
P_2 = 400 ; // [kPa]
Cp = 2.5 * 8.314 ;
Q = V_1 * (P_1 - P_2);
disp(" Example: 3.7 Page no : 128") ;
printf("\n (a)\n Heat transferd = %g kJ\n\n",Q);
//Solution:(b)
del_S_sys = (P_1 * V_1) / T_1 * -log(P_2 / P_1) ;
printf(' (b)\n Entropy change of system = %.2f kJ/K \n',del_S_sys);
Q_surr = - Q ;
del_S_surr = Q_surr / T_1 ;
printf(' Entropy change of surrounding = %.2f kJ/K \n',del_S_surr) ;
del_S_univ = del_S_sys + del_S_surr ;
printf(' Entropy change of universe =%.2f kJ/K \n',del_S_univ) ;
//Solution:(c)
disp(" (c)");
disp(" Since entropy of the universe increases , the process is irreverssible .") |
85529f26174d46db741bbdcdd10cf1454f342c05 | 676ffceabdfe022b6381807def2ea401302430ac | /utilities/FieldConvert/Tests/chan3D_isocontour.tst | d1d2a6761d58de222e73ba68b2dcc68a3121af6b | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,043 | tst | chan3D_isocontour.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description> Extract an isocontour</description>
<executable>FieldConvert</executable>
<parameters> -f -e -m isocontour:fieldstr="u+v":fieldvalue=0.5:fieldname="UplusV":globalcondense:smooth chan3D.xml chan3D.fld isocontour.dat</parameters>
<files>
<file description="Session File">chan3D.xml</file>
<file description="Session File">chan3D.fld</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="x" tolerance="1e-4">0.597226</value>
<value variable="y" tolerance="1e-4">0.595038</value>
<value variable="z" tolerance="1e-4">0.666667</value>
<value variable="u" tolerance="1e-4">0.5</value>
<value variable="v" tolerance="1e-4">0</value>
<value variable="w" tolerance="1e-4">0</value>
<value variable="p" tolerance="1e-4">2.36834</value>
<value variable="UplusV" tolerance="1e-4">0.5</value>
</metric>
</metrics>
</test>
|
4e6ceb8e22a19a86bb8d5801f83bfba6827a2fbd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH10/EX10.4/ex10_4.sce | a6031ed583309f7d8c728e02733ab4a39eaace4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 752 | sce | ex10_4.sce | //Exa 10.4
clc;
clear;
close;
// Given data
H2 = 2776.2;// in kJ/kg
p1 = 10;// in bar
p_2 = 1;// in bar
p_3 = 0.25;// in bar
p_4 = p_3;// in bar
// w = (H2 - H_2) + ((p_2 - p_3) * v_2);// work done in kJ/kg
phi_2 = 6.583;
phi_d2 = 1.303;
L = 6.057;
x_2 = (phi_2 - phi_d2) / L;
H2_desh = 417.5 + (x_2* 2257.9);// in kJ/kg
v_s = 1.694;
v_2 = x_2 * v_s;// in m^3 per kg
w = (H2 - H2_desh) + ((p_2 - p_3) * v_2);// in kJ/kg
H4 = 282.7;// in kJ/kg
H_w4 =H4;// in kJ/kg
HeatSupplied = H2 - H4;// kJ/kg
Eta_modifiedRankine = w / HeatSupplied*100;// in %
disp(Eta_modifiedRankine,"Thermal effienciency of the cycle in % is : ");
HeatRemoved = HeatSupplied - w;// in kJ/kg
disp(HeatRemoved,"Heat removed in condenser in kJ/kg is : ");
|
23cbea5ac41a0e19f3f5c8351e7c41c4eecbc631 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/C45-C/results/C45-C.flare-10-1tra/result4.tst | e798b7dbb4e317d5156aadd7e0fa5595920fbc78 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 950 | tst | result4.tst | @relation flare
@attribute LargestSpotSize{A,R,S,X,K,H}
@attribute SpotDistribution{X,O,I,C}
@attribute Activity{1,2}
@attribute Evolution{1,2,3}
@attribute Prev24Hour{1,2,3}
@attribute HistComplex{1,2}
@attribute BecomeHist{1,2}
@attribute Area{1,2}
@attribute C-class{0,1,2,3,4,5,6,7,8}
@attribute M-class{0,1,2,3,4,5}
@attribute X-class{0,1,2}
@attribute Class{H,D,C,B,E,F}
@inputs LargestSpotSize,SpotDistribution,Activity,Evolution,Prev24Hour,HistComplex,BecomeHist,Area,C-class,M-class,X-class
@outputs Class
@data
B B
B B
D D
D C
B B
E D
F E
H H
C C
E D
H H
H H
H H
H H
D D
H H
C C
D C
D D
C C
H H
D C
H H
H H
B B
C C
D C
H H
H H
B B
C C
B B
B B
B B
B B
D C
H H
D C
D D
C C
D C
D E
D D
F D
B B
C C
C C
H H
H H
B B
C C
D C
H H
H H
C C
D D
H H
F D
C D
H H
C C
B B
H H
H H
F D
F D
H H
C C
B B
C C
C C
H H
C C
H H
H H
D C
H H
E C
D D
C C
C C
H H
H H
E E
E E
D D
C C
H H
E D
D D
D C
D C
E C
H H
D D
B B
H H
H H
E D
C C
E D
H H
B B
C C
H H
D D
D D
|
5d0bd1856993dd9ccf6463502258ccbdf608caf5 | 0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb | /acmp.ru/369, Gansters/test-03.tst | b095aca1c6b67b7b8a8c6927c47dd4d8a9bca83d | [] | no_license | Kot-Angens/acm | c85d8582c3e84f218415321743864b9680e01f2e | 05472eaa0fff7abb6679826085da5e0c990df4cb | refs/heads/master | 2021-01-24T22:36:05.159612 | 2012-10-02T13:51:56 | 2012-10-02T13:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 69 | tst | test-03.tst | 4 10 20
10 16 8 16
10 11 15 1
10 7 1 8
~~~~~~~~~~~~~~~~~~~~~~~~~~
26
|
f58c8e61e52000a6bfe154218edbe12772aeaf34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1730/CH3/EX3.17/Exa3_17.sce | e12f638d518c781ee539bf47bbfa58cacd20afe7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 421 | sce | Exa3_17.sce | //Exa3.17
clc;
clear;
close;
// given data
N_D=1*10^21;// in /m^3
B_Z=0.2;// in T
J=600;// in A/m^2
n=N_D;
d=4;//in mm
d=d*10^-3;// in meterr
e=1.6*10^-19;// in C (electron charge)
// Formula V_H*w/(B_Z*I) = 1/(n*e) , hence V_H=B_Z*I/(n*e*w)
// where I=J*w*d
// putting I=J*w*d in V_H=B_Z*I/(n*e*w), we get
V_H=B_Z*J*d/(n*e);// in V
V_H=V_H*10^3;// in mV
disp("Hall Voltage is : "+string(V_H)+" mV");
|
335ed79bb5bebc05cb332ab93b725684343525e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH3/EX3.8/3_8.sce | 5c568625caf528acd48ba2de28a18b6e0091021b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | 3_8.sce | clear;
clc;
Zo=710*exp(%i*(-%pi/(180/16)));a=0.01;b=0.035;l=100;Zr=300;
P=a+(%i*b);
V=(cosh(P*l))+((Zo/Zr)*sinh(P*l)); //V=Vs/Vr
modV=abs(V);
V1=log(modV)*8.686;
V2=log(modV);
printf("-Ratio of the transmitter voltage and the receiver voltage in nepers = %f\n",round((V2)*100)/100);
printf("-Ratio of the transmitter voltage and the receiver voltage in decibels = %f\n",round((V1)*100)/100);
|
cbe76c64b3725c4bc5e81b49c2b50092a4abce23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH14/EX14.3/14_3_Polymer_Sheet_and_Trough_geometry.sce | 5e1161a41858da9591b2bf507d17544ddd83e34c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 794 | sce | 14_3_Polymer_Sheet_and_Trough_geometry.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 14.3 Page 898 \n')// Example 14.3
// Rate of water vapor molar diffusive ttansfer through the trough wall
D = .005 ;//[m] Diameter
L = 50*10^-6; //[m] Length
h = .003 ;//[m] Depth
Dab = 6*10^-14 ;//[m^2/s] Diffusion coefficient
Cas1 = 4.5*10^-3 ;//[kmol/m^3] Molar concentrations of water vapor at outer surface
Cas2 = 0.5*10^-3 ;//[kmol/m^3] Molar concentrations of water vapor at inner surface
//Transfer Rate through cylindrical wall Equation 14.54
Na = Dab/L*(%pi*D^2/4 + %pi*D*h)*(Cas1-Cas2); //[kmol/s]
printf('\n Rate of water vapor molar diffusive ttansfer through the trough wall %.2e kmol/s',Na);
//END |
984dd21ae98f26b8dd3775518fd34b38e8218d94 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH8/EX8.3/example_3.sce | 02e7a6cf674044c6bcf82b4652e58e5b7144975c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | sce | example_3.sce | clc
clear
printf("example 8.3 page number 335\n\n")
printf("this is a theoritical problem, book shall be referred for solution")
|
2050a8cd8ffc5727c379b4195c19d6b3552b5494 | f78a758dc17a311b355e12366d1315f7a9c2b763 | /Nissan/28401 NDS02 [3] 2006/6.1.5.EQTE 05 Resistance to ground and positive supply voltages short circuit 0.tst | 037a200fac0f9d704836d4011c8a2c62e0b55067 | [] | no_license | CZPFOX/Standards | 9dbf036f7e3e5767c23872c884ae7da83e66f81c | af34157e6e447d1a2b39136b9f3734feb663d9bb | refs/heads/master | 2020-06-18T12:58:06.033918 | 2019-07-11T02:55:42 | 2019-07-11T02:55:42 | 196,309,147 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 813 | tst | 6.1.5.EQTE 05 Resistance to ground and positive supply voltages short circuit 0.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AutoTestC version="2.0.0">
<Pulse>CUSTOM WAVE</Pulse>
<Title>Test pulse</Title>
<Organization>Nissan</Organization>
<Standard>28401 NDS02 [3] 2006</Standard>
<Item>6.1.5.EQTE 05 Resistance to ground and positive supply voltages short circuit</Item>
<voltage>13.5</voltage>
<count>1</count>
<wave id="0">
<type>0</type>
<dspin id="0">13.5</dspin>
<time>10</time>
<timeUnit>2</timeUnit>
</wave>
<wave id="1">
<type>0</type>
<dspin id="0">13.5</dspin>
<time>15</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="2">
<type>0</type>
<dspin id="0">0</dspin>
<time>1</time>
<timeUnit>2</timeUnit>
</wave>
</AutoTestC>
|
5ea7b9827c313302d4536f1eedd74dfa6c8bd987 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2863/CH2/EX2.25/ex2_25.sce | cca17452186242d9110d44b9b4a89a73b9e61037 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 404 | sce | ex2_25.sce | //chapter 2
//R=l*sqrt(pi*F*Uo*Sigma)/Sigma*2*pi*r
printf("\n");
L=2;
r=1*10^-3;
f=2*10^6;
u=4*(%pi)*10^-7;
sig=5.7*10^6;
R=sqrt((%pi)*2*10^6*4*(%pi)*10^-7/(5.7*10^6))*L/(2*(%pi)*10^-3);
printf("the resistance of hertzian dipole is %gohm",R);
dl=2
frequency=2*10^6;
lamda=3*10^8/(frequency);
Rrad=80*(%pi)^2*(dl/lamda)^2;
n=Rrad/(Rrad+R);
printf("\nthe radiation efficiency is %gohm",n);
|
88a39d4e82511601eca792fa5c18cd2518c34e9b | 657c160da7b0e23c1ae058baa77e6f0421752a66 | /Test/lslbug.tst | 9546d2db2fd757ec1f0327f4eed2cf915db9a2df | [] | no_license | hermetique/lsl | e8385820db92e4f077380933eb86160283f5231c | a1d154ec428722a9193fe03502c04eb21ced40e1 | refs/heads/master | 2021-10-10T01:42:52.349919 | 2019-01-05T23:02:33 | 2019-01-05T23:02:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | tst | lslbug.tst | **************************************
Testing ../lsl -i ../lslinit.lsi
**************************************
************* Test input from bug01.lsl ***********
Finished checking LSL traits
************* End of input from bug01.lsl *********
|
1b1dec573a79d16aa58e08b9e32a2ec1d279a54a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH4/EX4.1/4_1.sce | 9c11c9e4c980e1d20d6ff53e1faeb81e8757394f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 4_1.sce | //Example 4.1
//Quadratic Equation
//Page no. 96
clc;clear;close;
a=input("Enter value of a= ");
b=input("Enter vlaue of b= ");
c=input("Enter value of c= ");
x1=(-1*b+sqrt((b^2)-4*a*c))/(2*a); //1st root
x2=(-1*b-sqrt((b^2)-4*a*c))/(2*a); //2nd root
printf('\n1st Root= %f', x1);
printf('\n2nd Root= %f', x2); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.