blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0fe53e8f743f241a63f9bcf6618ab48defe03e8b | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/percent/%rilss.sci | a5890c0a847429475b06ade7e3602f5b0b9e4a0b | [
"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 | 370 | sci | %rilss.sci | function s2=%rilss(i,j,s1,s2)
//%rilss(i,j,s1,s2) calcule l'insertion d'un sous systeme lineaire
// decrit par une fonction de transfertdans un systeme decrit par
// une representation d'etat
//Cette macro correspond a l'operation s2(i,j)=s1
//!
// origine s. steer inria 1992
//
if type(i)==10|type(j)==10 then
error(21)
end
[s1 s2]=sysconv(s1,s2)
s2(i,j)=s1
|
f304c82cb20a57f2b1d9dd44c6d456e8ac2b4f69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH10/EX10.6/Ex10_6.sce | da5f5b74a98241cb3b1cf6d684bc2ff8e0af7acb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 210 | sce | Ex10_6.sce | clear;
clc;
//Example 10.6
V1=5;
V2=-5;
Vbe=0.6;
Veb=0.6;
Iq2=400*10^-3;//mA
Iref=200*10^-3;//mA
Iq1=Iref;
Iq3=Iq1;
Iq4=600*10^-6;
R1=(V1-Veb-Vbe-V2)/Iref;
printf('\nResistance R1=%.f KOhm\n',R1)
|
a746a4540c5d72a222f44e590d8e4274dd660096 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/hanning.sci | 60ca783ccfac1c1a02161ffc79de1c04f31ccb06 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 828 | sci | hanning.sci | function y = hanning(m, varargin)
//Return the filter coefficients of a Hanning window of length M
//Calling Sequence
//hanning (M)
//hanning (M, "periodic")
//hanning (M, "symmetric")
//Parameters
//M: real scalar, which will be the length of hanning window
//Description
//Return the filter coefficients of a Hanning window of length M.
//If the optional argument "periodic" is given, the periodic form of the window is returned. This is equivalent to the window of length M+1 with the last coefficient removed. The optional argument "symmetric" is equivalent to not specifying a second argument.
funcprot(0);
rhs= argn(2);
if(rhs <1 | rhs>2)
error("Wrong number of Input parameters");
end
select(rhs)
case 1 then
y= callOctave("hanning", m);
case 2 then
y= callOctave("hanning", m , varargin(1));
end
endfunction
|
77844594eb6a476b9021bd714964f24b229330b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2165/CH9/EX9.10/9_10.sce | 22d8312c7796b3036336f7064cb28a6d43e647dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 176 | sce | 9_10.sce | clc
//initialisation of variables
l=1.5//in
p=4.0//in
v=0.98//in
//CALCULATIONS
T=(l*p/v)//in
//RESULTS
printf('the particulars of a value and it eccentric=% f in',T)
|
d86080a9e939a3cf921d625482cc47ff4ad3816f | 2b79c97e44f2ae978b4cea3303ed1761cc33f982 | /redes_neurais/xor/XOR/neuralnet.tst | fd736c82ba678b4ec81417421d11971af19174ef | [] | no_license | tomasabril/vrep-fuzzy | 92a732ee21e41a4ae892c03bd38e8291cac0efd2 | 0fd5ad0f453ac814e4b385cc3b71dd6d1788f749 | refs/heads/master | 2020-04-05T14:05:43.749546 | 2017-07-01T20:42:46 | 2017-07-01T20:42:46 | 94,771,826 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,390 | tst | neuralnet.tst | 2
51
1
16
0.534885
0.547036
0.110885
0.662501
0.173981
0.341418
0.544888
0.968442
-0.403898
0.683858
0.447695
-0.884050
-0.233613
-0.759693
0.054078
0.703571
16
-0.836088
0.708131
-0.308063
-0.052573
-0.153268
0.473971
-0.730755
0.716624
0.128143
-0.880200
0.447571
-0.496899
-0.723042
-0.453840
0.719117
0.207569
16
-0.912919
-0.768973
-0.724929
-0.332811
0.571351
0.823528
-0.956305
-0.832162
-0.084051
0.492029
0.684084
0.673507
0.133963
-0.853408
-0.208690
0.296126
16
0.260783
0.480826
0.652782
-0.895325
-0.635467
0.920379
0.824234
0.492112
0.448019
-0.320047
0.983908
0.126348
0.221890
0.701286
-0.663362
0.307902
16
0.344610
-0.979358
0.384610
-0.083472
0.252416
0.428296
-0.503819
0.580085
-0.671989
-0.820041
0.255926
0.469807
0.737449
0.456990
-0.827502
-0.000070
16
-0.653140
0.230797
0.102852
-0.289001
0.151200
-0.664581
0.611627
-0.396197
0.015939
0.596037
0.728102
-0.763013
-0.298453
0.470311
-0.044806
-0.951804
16
-0.099998
-0.660218
-0.628024
-0.847508
0.177203
-0.722021
0.734716
0.511342
0.867828
-0.595826
-0.611593
0.597232
0.259309
0.962105
-0.394882
0.024596
16
0.204786
0.120827
0.144784
0.764676
0.460533
-0.243622
0.776232
-0.523890
0.760016
-0.084050
-0.876095
-0.529653
-0.610111
0.085296
0.924643
-0.300097
16
-0.162671
0.709401
-0.730669
0.425154
0.988913
0.412652
-0.655595
0.860197
0.224038
-0.268075
-0.124150
-0.500160
-0.884907
0.486133
-0.070951
0.315834
16
-0.989543
-0.925633
0.078439
0.470634
-0.169093
-0.140793
0.359493
-0.404264
0.183925
-0.107940
-0.527849
-0.024132
0.380651
0.801720
0.682907
-0.779789
16
0.520626
0.956829
0.060563
-0.084059
0.367117
0.402241
-0.226575
-0.999266
-0.863805
0.055803
-0.504460
0.668475
0.957853
0.430537
-0.025037
0.962982
16
-0.089775
0.462348
0.438233
0.745939
0.729540
-0.794893
0.748696
-0.087653
0.100077
0.627883
0.895754
-0.509463
0.437298
0.583632
-0.882196
-0.052257
16
-0.057316
0.174826
0.274687
0.714334
-0.426149
-0.954675
0.712830
-0.883587
0.104091
0.615863
0.771710
0.059502
-0.541980
-0.843952
-0.574082
0.359597
16
0.614902
0.270846
-0.489094
-0.248947
0.475251
0.667461
0.667659
0.983823
0.295949
-0.027958
0.880106
-0.270946
0.957637
0.994421
0.087265
-0.099791
16
-0.428616
-0.644878
-0.984650
-0.448049
0.812773
0.141670
-0.325477
-0.672751
-0.832187
0.856216
-0.211513
-0.985134
0.409277
0.208597
0.388323
-0.555453
16
-0.514154
0.309724
0.193829
0.370106
-0.017510
-0.729092
0.359304
0.687641
0.243901
0.240087
-0.579787
0.198051
-0.360842
-0.083333
0.510369
0.220296
16
0.278212
-0.057880
0.774202
-0.497573
-0.913258
0.859089
-0.168581
0.663698
0.127914
0.032069
0.696174
-0.456581
-0.755666
-0.506459
-0.601112
-0.855635
16
0.803494
0.591243
0.511470
-0.803939
0.868868
-0.718258
0.890569
-0.476730
0.523811
0.720198
0.732458
0.563319
-0.370313
-0.355078
-0.207457
0.924623
16
0.590631
0.978306
0.830544
0.087218
0.248156
-0.330800
-0.241791
-0.620918
0.703762
0.864250
-0.663424
0.344356
-0.652755
-0.272862
0.499473
-0.831556
16
0.738372
-0.577938
0.774342
0.019078
-0.287919
0.669174
0.546211
0.647090
0.391768
-0.311748
-0.363423
-0.979593
0.331304
-0.168708
0.363745
-0.651185
16
-0.181430
0.198266
-0.153465
0.483241
0.280206
0.017261
0.274258
-0.604889
-0.116230
0.616240
0.756556
0.228805
0.747675
-0.340510
-0.184192
-0.087296
16
-0.493004
-0.401062
0.934985
-0.368887
0.679291
-0.104515
0.687671
0.075827
0.583950
-0.675964
-0.479906
-0.666707
0.165784
0.886470
-0.312751
0.400141
16
-0.503499
0.536309
-0.115516
0.192938
-0.442442
-0.833768
0.590874
-0.148579
0.191847
-0.239849
-0.903643
-0.649588
-0.171762
-0.681298
0.273395
0.344473
16
-0.076980
-0.385271
0.970964
-0.988394
0.512491
0.073463
0.090387
0.103172
0.399777
0.020211
0.440500
-0.445929
-0.695332
0.528127
0.968087
-0.179404
16
-0.521414
-0.737734
-0.989481
-0.552802
0.840132
0.013164
0.302165
0.035044
0.775736
-0.191761
-0.191423
-0.991602
0.123339
-0.924702
0.363504
0.472370
16
-0.885694
-0.241569
0.490311
0.634004
0.833588
0.993136
-0.855290
0.232352
0.012076
-0.008121
0.211748
0.338682
-0.462586
-0.404292
0.561827
0.015703
16
-0.735360
-0.019561
0.468586
-0.886993
-1.002402
-0.817748
0.150879
0.187418
-0.004163
0.960137
0.212338
-0.877572
0.444174
0.982575
0.009270
0.568343
16
-0.260479
-0.504747
-0.396540
0.980026
0.896812
-0.250320
-0.373485
-0.084767
0.743790
0.840189
0.656457
0.671481
0.829845
0.208930
-0.891637
-0.891585
16
-0.804037
-0.012243
-0.780032
0.604505
0.173234
-0.213981
-0.205246
-0.828631
-0.844160
-0.991821
0.712410
0.600817
-1.009034
-0.282120
-0.414872
-0.847257
16
-0.367291
-0.399475
-0.863327
-0.466913
0.353666
-0.233694
-0.141082
-0.492562
-0.984160
-0.483873
-0.803680
0.847270
0.132964
0.711249
0.369750
0.340533
16
-0.290569
0.601503
-0.046579
0.885222
0.796960
0.156680
0.468420
0.952203
0.168038
0.179919
-0.028163
-0.419744
0.319432
0.562331
-0.270868
0.359788
16
-0.831481
-0.719212
0.308598
-0.067960
0.047242
-0.829652
0.441484
-0.531254
-0.907825
0.043770
-0.676500
0.248898
-0.229551
0.707165
0.987514
0.467499
16
-0.288815
-0.060643
-0.236806
-0.493224
-0.901795
-0.770416
-0.543005
-0.327507
-0.179895
0.431827
0.247641
0.553380
-0.592398
0.389215
-0.093416
0.975614
16
0.659678
-0.796574
-0.692367
-0.887814
0.780949
0.157786
-0.413413
0.879275
-0.796191
-0.679809
-0.475552
-0.640253
0.418014
-0.498888
0.244551
0.544469
16
-0.146572
0.417267
-0.954626
-0.642307
0.646144
0.914650
-0.560863
0.875553
-0.244126
0.096104
0.420259
-0.443284
-0.525950
0.727840
0.945900
0.552244
16
0.350921
-0.737141
0.078909
0.135045
0.423234
0.667442
-0.576359
0.039809
0.395942
-0.051964
-0.179900
-0.766817
-0.134294
-0.929571
0.779220
0.132151
16
0.492355
0.832371
0.492351
-0.451699
0.156235
0.932163
-0.571903
0.912042
0.028001
0.255971
0.883949
-0.082850
-0.599081
0.836625
-0.527691
0.751960
16
-0.900875
0.551073
-0.704887
-0.068775
-0.372622
-0.276455
0.971706
0.431841
0.079948
-0.203976
0.668078
0.353660
-0.725910
0.450680
-0.512642
0.176123
16
-0.312934
0.382795
0.719042
0.843689
-0.275418
0.557550
0.166456
0.163214
-0.772205
-0.539787
-0.915504
-0.386009
-0.715353
0.956163
0.784198
0.804736
16
-0.078866
-0.919021
-0.854864
-0.042481
-0.785975
-0.881430
-0.608912
0.299534
-0.676112
-0.935851
-0.935669
-1.000503
-0.082870
-0.448705
0.181629
0.616274
16
0.352254
-0.679736
-0.127749
-0.915789
0.880164
0.448115
0.248067
0.516024
0.907994
-0.260025
-0.856041
0.616829
-0.295338
0.932443
-0.171778
0.035973
16
0.430219
-0.021661
0.998223
0.645928
-0.490472
0.801094
-0.055314
-0.759659
0.272079
-0.580109
-0.748234
-0.797626
-0.018838
-0.152464
0.221741
0.735713
16
0.165639
0.501742
0.821673
-0.542530
-0.642820
0.072853
0.972536
0.672265
0.220057
0.527907
0.287810
0.932884
-0.128007
-0.877209
-0.626568
-0.704111
16
-0.497994
-0.630106
0.941993
0.010252
-0.829394
-0.705008
0.255358
-0.148332
-0.284092
0.508080
0.048197
0.094492
-0.652482
0.672912
-0.161510
-0.071724
16
0.172112
-0.936099
0.380100
-0.063389
-0.454697
-0.237946
-0.389238
0.771365
-0.708169
0.312166
0.700392
0.153182
-0.168755
-0.933963
-0.134889
0.344556
16
0.851591
-0.780434
-0.640418
0.431634
-0.480296
0.615781
-0.716144
-0.356080
-0.468031
-0.259994
0.156030
-0.708988
-0.584816
0.403431
0.219726
0.000067
16
0.473695
-0.986212
0.941698
-0.974527
-0.218832
-0.443164
0.796523
-0.519743
0.868053
-0.096092
0.051812
-0.287084
-0.612025
0.926736
0.461345
-0.760213
16
-0.858971
0.816860
0.077006
-0.930611
-0.158083
0.366494
-0.872957
-0.216490
0.515871
0.284127
0.080300
0.927880
-0.318605
0.703486
-0.066217
-0.839612
16
0.132833
-0.711124
0.592834
0.320722
-0.747430
0.388407
0.800252
-0.879880
-0.707981
-0.144052
-0.764101
-0.909556
-0.810037
0.697351
-0.671340
0.739908
16
-0.070166
-0.182069
0.817830
0.773585
0.593252
0.944893
-0.439444
0.112272
-0.363946
0.047899
0.047795
-0.262701
-0.831730
0.394930
-0.106571
0.295750
16
0.092769
-0.506963
-0.379202
0.344174
0.287320
0.830389
0.461506
-0.011245
-0.315822
0.103766
0.075491
-0.114364
-0.184949
-0.180422
-0.384274
0.731421
51
0.494810
0.693292
-0.220409
0.113775
0.081373
-0.257603
-0.778655
0.107143
0.204056
-0.324696
0.874067
0.389142
0.454928
-0.240508
-0.932030
-0.437597
-0.386494
-0.878490
-1.088169
-1.085177
-1.047337
-0.226455
-0.705225
-0.973046
-1.152953
0.391311
-0.697984
-0.891930
-0.812312
-0.656029
0.240667
0.834809
0.571975
-0.867947
-0.540239
-0.247282
0.031106
-0.207081
-0.988806
-0.669133
0.013163
0.374633
0.285256
-0.414293
-0.776651
-0.123513
0.271992
-0.587501
0.108685
0.304156
0.846359
|
b2f266392c1c857fd5adb32d350b0820aa1600ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH4/EX4.14/4_14.sce | 755aa60479777ac4a67d4bc9700c4a0e5bec9fd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 539 | sce | 4_14.sce | //Relative speed and friction//
pathname=get_absolute_file_path('4.14.sce')
filename=pathname+filesep()+'4.14-data.sci'
exec(filename)
//Area of jet(in mm^2):
Ajet=%pi/4*D^2
//Jet speed relative to the nozzle(in m/sec):
Vrel=Q/2/Ajet*10^6/60/1000
//Value of w*R in m/sec:
wR=w*R*2*%pi/60/1000
//Friction torque at pivot(in N-m):
Tf=R*(Vrel*cosd(alpha)-wR)*d*Q/1000/60/1000
printf("\n\nRESULTS\n\n")
printf("\n\nJet speed relative to each nozzle: %.2f m/sec\n\n",Vrel)
printf("\n\nFriction torque at pivot: %.5f N-m\n\n",Tf)
|
109e571a3b84decf08e90530795bcae4e045fefc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH20/EX20.2/eg20_2.sce | aec4e83833e0cf631c5afe4a55be60b070656035 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 324 | sce | eg20_2.sce | clear;
//clc();
z1=400;
z2=40;
ef=100;
voh=300000;..//velocity of overhead line
vc=140000;..//velocity of cable
rho1=(z2-z1)/(z2 + z1);
er=rho1*ef;
printf("The voltage transmitted into the cable is:%.2f kV\n",er);
tauv=(2*z2)/(z2+z1);
et=tauv*ef;
printf("The voltage transmitted into the cable is:%.2f kV",et);
|
e4478b236ba66ba61d2f02ddd3cedf6d4e52803f | 449d555969bfd7befe906877abab098c6e63a0e8 | /199/CH4/EX4.3/Example_4_3.sce | c6f1796b37050c997f728992b3d3248e3e97d432 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sce | Example_4_3.sce | // Chapter4
// Page.No-121, Figure.No-4.14
// Example_4_3
// Design of input offset voltage-compensating network
// Given
clear;clc;
R1=1*10^3;Rf=10*10^3;Rc=10;
Af=1+Rf/(R1+Rc); // Closed loop gain of non-inverting amplifier
printf("\n Closed loop gain of non-inverting amplifier is = %.1f \n",Af) // Result |
b03bbc67e055294293d18cadd4fd304fbd84e049 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/CH10/EX10.2/smith.sce | 2ae3fbc0aaf8d8a6589b9d6e24bf7f3a1f8f1027 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,360 | sce | smith.sce | // Smith predictor for paper machine control in Example 10.2 on page 385.
// 10.2
exec('zpowk.sci',-1);
exec('poladd.sci',-1);
exec('polsize.sci',-1);
exec('pp_im.sci',-1);
exec('polsplit3.sci',-1);
exec('polmul.sci',-1);
exec('xdync.sci',-1);
exec('rowjoin.sci',-1);
exec('left_prm.sci',-1);
exec('t1calc.sci',-1);
exec('indep.sci',-1);
exec('makezero.sci',-1);
exec('move_sci.sci',-1);
exec('colsplit.sci',-1);
exec('clcoef.sci',-1);
exec('cindep.sci',-1);
exec('seshft.sci',-1);
exec('cosfil_ip.sci',-1);
exec('polyno.sci',-1);
Ts = 1; B = 0.63; A = [1 -0.37]; k = 3;
Bd = convol(B,[0 1]);
kd = k - 1;
[zkd,dzkd] = zpowk(kd);
[mzkd,dmzkd] = poladd(1,0,-zkd,dzkd);
// Desired transfer function
phi = [1 -0.5]; delta = 1;
// Controller design
[Rc,Sc,Tc,gamm] = pp_im(B,A,1,phi,delta);
// simulation parameters for smith_disc.xcos
st = 1.0; // desired change in setpoint
t_init = 0; // simulation start time
t_final = 20; // simulation end time
// simulation parameters for smith_disc.xcos
N_var = 0; C = 0; D = 1; N = 1;
[Tcp1,Tcp2] = cosfil_ip(Tc,1); // Tc/1
[Rcp1,Rcp2] = cosfil_ip(1,Rc); // 1/Rc
[Scp1,Scp2] = cosfil_ip(Sc,1); // Sc/1
[Bdp,Ap] = cosfil_ip(Bd,A); // Bd/Ad
[zkdp1,zkdp2] = cosfil_ip(zkd,1); // zkd/1
[mzkdp1,mzkdp2] = cosfil_ip(mzkd,1); // mzkd/1
[Cp,Dp] = cosfil_ip(C,D); // C/D
|
5cb4a21770836d687a09c11ec88500ce27884439 | 8b9a8f57e173e7b4f3e0697bb8fa4391992830c1 | /Assignment_2/Assignment 2/8bitParityGen_ParityComp/ParityGenerator.tst | bc4269ef18c608f019e661df46f2d06a4639926d | [] | no_license | AtharvaC1511/ComputerSystemDesign | 9bdcdd5178e55f21c9c23cc105feb6f1cdf47cf6 | e3d9bdcb961aa6d2f13c58532bb89908dda70d3b | refs/heads/main | 2023-06-25T19:04:51.971391 | 2021-07-19T14:24:00 | 2021-07-19T14:24:00 | 387,486,807 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | tst | ParityGenerator.tst | load ParityGenerator.hdl,
output-file ParityGenerator.out,
compare-to ParityGenerator.cmp,
output-list X%B3.8.3 Y%B3.8.3 P1%B3.1.3 P2%B3.1.3 Z%B3.1.3;
set X %B10111111,
set Y %B11111111,
eval,
output;
set X %B10101010,
set Y %B10001010,
eval,
output;
set X %B00001111,
set Y %B00001111,
eval,
output;
set X %B10111001,
set Y %B10111001,
eval,
output;
|
f8e2f1ad11970dc5558d04ab0ad8719bc525de7d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/signal/wfir.sci | d471e1649236ffd986371786f74295aab23028be | [
"MIT",
"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 | 3,838 | sci | wfir.sci | //<wft,wfm,fr>=wfir(ftype,forder,cfreq,wtype,fpar)
//<wft,wfm,fr>=wfir(ftype,forder,cfreq,wtype,fpar)
//Macro which makes linear-phase, FIR low-pass, band-pass,
//high-pass, and stop-band filters
//using the windowing technique.
//Works interactively if called with no arguments.
// ftype :Filter type ('lp','hp','bp','sb')
// forder :Filter order (pos integer)(odd for ftype='hp' or 'sb')
// cfreq :2-vector of cutoff frequencies (0<cfreq(1),cfreq(2)<.5)
// :only cfreq(1) is used when ftype='lp' or 'hp'
// wtype :Window type ('re','tr','hm','hn','kr','ch')
// fpar :2-vector of window parameters
// : Kaiser window: fpar(1)>0 fpar(2)=0
// : Chebyshev window: fpar(1)>0 fpar(2)<0 or
// : fpar(1)<0 0<fpar(2)<.5
// wft :Time domain filter coefficients
// wfm :Frequency domain filter response on the grid fr
// fr :Frequency grid
//!
//author: C. Bunks date: 12 March 1988
//check arguments of macro call
[lhs,rhs]=argn(0);
//if macro called with no arguments query user for values
if rhs<=0 then,
//Query user for filter type and filter length
write(%io(2),'Input type of filter to be designed (lp, hp, bp, sb):')
ftype=read(%io(1),1,1,'(a2)')
write(%io(2),'Input filter length (n=pos. integer):')
forder=read(%io(1),1,1);
//Select filter type and Query user for cut-off frequencies
flag=0;
select ftype
case 'lp' then
write(%io(2),'Input cut-off frequency (0.[frequ[.5):')
fl=read(%io(1),1,1);
fh=0;
case 'hp' then
write(%io(2),'Input cut-off frequency (0.[fcut[.5):')
fl=read(%io(1),1,1);
fh=0;
flag=1;
case 'bp' then
write(%io(2),'Input low freqency cut-off (0.[flow[.5):')
fl=read(%io(1),1,1)
write(%io(2),'Input high freqency cut-off (0.[flow[fhi[.5):')
fh=read(%io(1),1,1)
case 'sb' then
write(%io(2),'Input low freqency cut-off (0.[flow[.5):')
fl=read(%io(1),1,1)
write(%io(2),'Input high freqency cut-off (0.[flow[fhi[.5):')
fh=read(%io(1),1,1)
flag=1;
else
error('Unknown filter type --- program termination'),
end
if flag=1 then
if forder-2*int(forder/2)=0 then
write(%io(2),'*****************************************');
write(%io(2),'Even length hp and sb filters not allowed');
write(%io(2),'---Filter order is being incremented by 1');
write(%io(2),'*****************************************');
forder=forder+1;
end
end
//Query user for window type and window parameters
write(%io(2),'Input window type (re,tr,hm,kr,ch):')
wtype=read(%io(1),1,1,'(a2)');
if wtype='kr' then,
write(%io(2),'Input beta value of kaiser window (beta]0):');
fpar(1)=read(%io(1),1,1);
fpar(2)=0;
else if wtype='ch' then,
write(%io(2),'The Chebyshev window length is:'),
write(%io(2),forder),
write(%io(2),'Input two values the first giving the maximum'),
write(%io(2),'value of the window side-lobe height the second giving'),
write(%io(2),'the width of the window main lobe. These two vaules'),
write(%io(2),'indicate which of the two Chebyshev window'),
write(%io(2),'parameters is to be calculated automatically.'),
write(%io(2),'The parameter to be calculated automatically is indicated'),
write(%io(2),'by a negative value. The other parameter takes a value'),
write(%io(2),'in its appropriate range (i.e., 0[dp or 0[df[.5)'),
fpar=read(%io(1),1,2),
else
fpar=[0 0];
end,
end,
else,
fl=cfreq(1);
fh=cfreq(2);
end,
//Calculate window coefficients
[win_l,cwp]=window(wtype,forder,fpar);
[dummy,forder]=size(win_l);
//Get forder samples of the appropriate filter type
hfilt=ffilt(ftype,forder,fl,fh);
//Multiply window with sinc function
wft=win_l.*hfilt;
//Calculate frequency response of the windowed filter
[wfm,fr]=frmag(wft,256);
//end
|
7197c484efbd8e135daa6f4f05c2b0f2fdbe385e | 449d555969bfd7befe906877abab098c6e63a0e8 | /273/CH23/EX23.6/ex23_6.sce | 30ce23de2c29836aec403630b198311d9112c637 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 453 | sce | ex23_6.sce | clc;clear;
//Example 23.6
//calculation of frequency and phase difference
//given values
t=18*10^-6;//relaxation time in s
//calculation
f=1/(2*%pi*t);
disp(f,'frequency at which real and imaginary part of complx dielectric constant are equal is');
alpha=atan(1)*180/%pi;// phase difference between current and voltage( 1 because real and imaginry parts are equal of the dielectric constant)
disp(alpha,'phase diffeerence (in degree) is'); |
a9b583ca8323d625b0e01b0bebb7bf4f6e7e12e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH16/EX16.4/16_4.sce | 87f8be26b98b0dfd5f8d35ea7221f6f6fdf92c41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 418 | sce | 16_4.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 16.4
//calculation of the increase in the sound level in decibels
//given data
r=20//intensity is increase by r factor
//calculation
//using the equation.....beta = 10*log(I/I0)...we get
deltabeta=10*log10(r)//increase in sound level
printf('the increase in the sound level in decibels is %d dB',deltabeta)
|
915013af06556a6f8efe0599fbc2b2e22f121394 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH3/EX3.5/3_5.sce | e1aea9e337810af2191c089da443d567efb462c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | 3_5.sce | clc;
T1=295;//C
p1=1.02;//bar
p2=6.8;//bar
y=1.4;
v1=0.015;//m^3
cv=0.718;
R=0.287
T2=T1*(p2/p1)^((y-1)/y);
disp("final temperature is:");
disp("k",T2);
v2=v1*{(p1/p2)^(1/y)};
disp("final volume is:");
disp("m^3",v2);
w=cv*(T2-T1);
m=p1*v1*10^5/(10^3*R*T1);
W=w*m;
disp("total work done is:");
disp("kJ",W)
|
a577c868012bd9364d28c86e9e951bc1c763d9a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH4/EX4.7/Ex4_7.sce | ee7b050001c3764cd2e528bcc72cfed80903efa7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 748 | sce | Ex4_7.sce | //=========================================================================
// chaoter 4 example 7
clc;
clear;
//input data
alpha = 0.18*10^-40; //polarisability of He in F *m^2
E = 3*10^5; // constant in V/m
N = 2.6*10^25; //number of atoms in per m^3
e = 1.6*10^-19;
//formula
//P=N*p
//charge of He=2*electron charge
//p=2(e*d)
//calculation
P = N*alpha*E; //in coul/m^2
p = P/N; //polarisation of He in coul.m
d = p/(2*e); //separation between charges in m
//result
mprintf('separation=%3.2e.m\n',d);
//=======================================================================
|
79d294dc2dc78783f115ab83cf5b8f52d0fee7c6 | a224e73b03e44940d761ce34b72d5b3cee86880b | /ex. 8.5 slide 7.sce | d7b722313530a46f6f652b7b0b41182670e8153a | [] | no_license | DericsonPablo/controledesistemas | 5092eab41134fe752add986b457278776a1bad90 | 74d4263c4819fa7e4e7b689b38e083dd87440777 | refs/heads/master | 2020-07-31T05:33:17.109455 | 2019-09-24T03:10:19 | 2019-09-24T03:10:19 | 210,500,755 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sce | ex. 8.5 slide 7.sce | //ex. 8.5 slide 7
s=%s
x = poly(0,'x')
g=(s+3)/(s*(s+1)*(s+2)*(s+4))
//zero = -3
//polo = 0; -1; -2; -4
//polos = 4
//zero =1
as = ((-1 + (-2) + (-4)) - (-3))/(4-1)
//ang = (2*k+1)*%pi/(4-1)
ang1 = ((2*0+1)*180)/(4-1)
ang2 = ((2*1+1)*180)/(4-1)
ang3 = ((2*2+1)*180)/(4-1)
ang4 = ((2*3+1)*180)/(4-1)
//Pin. Pout
y = 1/x + 1/(x + 1) + 1/(x + 2) + 1/(x + 4) - 1/(x + 3)
roots([3 26 77 84 24])
|
fdb14826270047edae70774d21c180a88c3950e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /23/CH3/EX3.6/Example_3_6.sce | e616802f27ddf1d7fbaf81399e48412d98d76f16 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 809 | sce | Example_3_6.sce | clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 3.6
//Caption : Program To find (a)Kinetic energy Change (b)change in temperature
//Given values
n=1;//Molar Rate(mol/s)
D=5;//inner Diameter(cm)
R=83.14;
Cp=(7/2)*R;
M=29*10^-3;//Molar mass(g/mol)
T=293.15;//temperature=293.15K(20`C)
P1=6;//Upstream Pressure
P2=3;//Downstream Pressure
//Solution
//from Eq.(2.24b)
A=(%pi/4)*((D*10^-2)^2);//Area(m^2)
//upstream molar Volume
V1=(R*T/P1)*10^-6;//m^3/mol
u1=n*V1/A;//velocity(m/s)
V2=2*V1;
u2=2*u1;
del_KE=approx(n*M*((u2^2)-(u1^2))/2,3);//J/s(W)
del_T=approx(-del_KE/(Cp*0.1),4);//K
disp('W or J/s',del_KE,'Change in KE ')
disp('K',del_T,'Change in Temperature ')
//End |
e80c40e28d93435781f13f8bec359cb2daa683c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH10/EX10.2/Ex10_2.sce | 80a737297349a817066ef8f166f7504c2569cbd2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | Ex10_2.sce | clear
//
//
//
//Variable declaration
k=4;
epsilon0=9*10^-12; //relative permeability(F/m)
E=10^6; //electric field(V/m)
//Calculations
D=k*epsilon0*E; //electric displacement(C/m^2)
P=epsilon0*E*(k-1); //polarisation(C/m^2)
//Result
printf("\n electric displacement is %0.0f *10^-6 C/m^2",D*10^6)
printf("\n polarisation is %0.0f *10^-6 C/m^2",P*10^6)
|
832b92f032969981dd0313566f6cd4a8c6042ead | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH3/EX3.11.s/3_11_solution.sce | d1eff4477af759766d47a6b69be15b26c68591c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sce | 3_11_solution.sce | //Solution 3-11
WD=get_absolute_file_path('3_11_solution.sce');
datafile=WD+filesep()+'3_11_example.sci';
clc;
exec(datafile)
//(a)
F_Tair = rho_block * V * g;
printf("Tension in the rope of crane \n1.block suspended in air= %1.2f N", F_Tair/1000);
//(b)
F_B = rho_seawater * g * V; //bouyancy force
F_Twater = F_Tair - F_B; //net force in downward diretion
printf("\n2.block suspended in seawater= %1.2f kN", F_Twater / 1000);
|
7f2db05fd0cff790fbf7826144bfe9899a2d332b | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/FURIA-C/results/FURIA-C.abalone-10-1tra/result5s0.tst | 3140e7d998570b2490de72268dec75afe02ab1d9 | [] | 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 | 2,519 | tst | result5s0.tst | @relation abalone
@attribute Sex{M,F,I}
@attribute Length real[0.075,0.815]
@attribute Diameter real[0.055,0.65]
@attribute Height real[0.0,1.13]
@attribute Whole_weight real[0.002,2.8255]
@attribute Shucked_weight real[0.001,1.488]
@attribute Viscera_weight real[5.0E-4,0.76]
@attribute Shell_weight real[0.0015,1.005]
@attribute Rings{15,7,9,10,8,20,16,19,14,11,12,18,13,5,4,6,21,17,22,1,3,26,23,29,2,27,25,24}
@inputs Sex,Length,Diameter,Height,Whole_weight,Shucked_weight,Viscera_weight,Shell_weight
@outputs Rings
@data
9 8
14 9
9 8
11 8
13 11
8 8
7 8
8 9
9 8
11 9
9 8
9 8
11 9
6 8
12 11
12 11
13 11
12 11
12 9
13 9
11 8
10 8
7 5
17 9
14 9
22 11
10 9
17 9
4 5
5 5
14 9
12 9
18 11
9 8
12 9
7 8
11 9
18 11
20 9
14 11
12 11
10 9
12 11
13 9
11 9
17 11
15 11
17 11
5 5
10 8
11 8
11 8
11 9
10 9
12 9
9 9
16 9
12 9
12 9
5 4
15 8
21 8
10 8
16 9
13 8
11 8
7 5
10 8
13 11
15 9
15 9
13 9
12 9
15 9
11 9
10 8
5 5
6 5
6 8
7 8
8 8
10 9
10 9
9 9
12 11
9 11
3 4
6 5
7 8
6 8
7 8
7 8
9 8
8 9
8 9
9 9
8 9
8 9
10 9
9 9
10 11
11 11
10 11
10 11
11 11
4 4
5 5
6 5
7 8
7 8
7 8
9 9
10 9
10 11
11 11
9 11
9 11
10 11
8 11
5 4
5 5
5 5
8 8
8 8
9 8
8 9
8 9
8 9
11 9
10 11
10 11
9 11
13 11
11 11
7 8
9 9
8 9
8 9
9 11
8 9
10 11
6 5
7 5
8 8
7 8
8 8
8 9
10 9
9 8
8 9
9 9
8 9
11 9
8 9
8 9
10 9
10 11
10 11
8 11
13 11
10 11
11 11
12 11
13 11
7 8
9 9
9 9
10 9
7 9
8 9
10 9
10 9
9 9
11 11
7 5
6 4
7 8
6 8
10 9
10 9
9 8
8 9
10 9
9 9
10 9
10 9
8 9
11 9
11 11
12 11
4 4
6 5
5 5
7 5
10 8
9 9
9 9
10 9
9 11
6 8
8 9
8 9
11 11
11 9
19 9
11 8
10 11
15 11
9 8
11 8
12 9
9 9
7 5
10 8
18 11
12 11
6 8
12 9
14 9
13 8
6 5
21 11
19 9
13 11
13 11
7 8
8 8
11 8
10 9
20 11
9 8
7 8
9 8
10 9
7 8
23 9
7 5
11 9
14 11
14 9
16 8
10 9
13 5
11 8
9 9
9 8
20 9
14 9
14 9
11 11
9 8
6 8
8 9
9 9
9 9
15 11
10 11
10 11
4 4
5 4
5 5
8 8
6 8
9 8
7 8
9 9
8 9
10 11
8 9
9 11
9 11
6 8
7 8
8 8
8 9
9 9
10 11
9 11
3 4
7 8
8 8
8 9
8 9
9 11
10 11
6 5
7 9
9 11
7 8
9 8
8 8
11 9
9 11
10 11
9 11
11 11
15 11
12 11
10 11
10 11
13 11
8 9
8 9
12 11
4 4
6 8
7 8
8 9
8 9
9 11
11 11
10 11
7 8
9 9
5 4
9 9
13 9
9 8
12 8
16 11
14 9
14 11
14 11
16 11
11 9
15 11
9 8
6 8
12 9
17 9
12 8
11 9
9 9
11 11
13 11
10 5
12 9
16 11
10 8
11 9
13 9
12 9
11 8
13 11
19 9
10 8
8 8
10 9
7 5
8 8
6 8
8 8
7 9
8 11
9 11
6 8
6 8
8 8
7 8
9 11
9 9
9 11
7 8
10 9
8 8
10 8
10 9
11 11
9 11
11 11
8 9
10 11
6 8
7 8
9 9
9 9
11 11
9 11
13 11
12 11
10 11
11 11
9 11
18 11
9 9
15 9
12 8
10 8
11 9
10 9
16 11
6 4
11 9
10 9
6 5
6 8
7 9
10 9
7 8
8 11
11 11
11 9
11 11
11 11
8 8
9 9
9 9
9 11
11 11
9 11
7 8
8 8
8 8
10 11
8 8
11 11
10 9
|
5e11e5495786ddf9c49d80383d725284267d5313 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH8/EX8.7/8_7.sce | a9bcc035cfcbf22a24eb6da63993590d12bbfa30 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sce | 8_7.sce | clc
//initialisation of variables
n=0.5
n1=0.6
T2=27+273//k
//CALCULATIONS
T1=T2/(1-n)
T=T2/(1-n1)
dt=T-T1
//results
printf(' \n source tempperature must be raised by= % 1f c',dt)
|
ceaef4b04233cafbcc0e8abcf2da736a827673b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH34/EX34.26/34_26.sce | e5b76d6ce3934c21a2e04b481876fb4668a0ae11 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | 34_26.sce | //ques-34.26
//Calculating Ionization energy for nitrogen
clc
e=1.711*10^5;//(in /cm)
KE=5.63;//kinetic energy (in ev)
e=e/8065.5;//(in ev)
IE=e-KE;
printf("The ionization energy for nitrogen is %.2f ev.",IE);
|
a343f08afb72ee80bd90d6502ec3b1e94d92529a | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH1/EX1.3/ex1_3.sce | 26539d0dbab68f458a985b6f4ad32591e16573ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | ex1_3.sce | alpha20=0.00403; //Assigning values to the parameters
t1=20;
t2=60;
R20=28.3;
R60=R20*(1+alpha20*(t2-t1)); // Calculating value of resistance at 60 deg C
disp(R60,"Resistance at 60 deg C is"); |
c40f2ee000d51f11e69ba425a8c823c05cac04e8 | bb3c300381ad1a419b5fb40891e830e534656595 | /test/testcases/bad_post_args3.tst | 7b920d52ae003acd56c4cdec4ffa1a73ca5c0d2b | [] | no_license | DHorrible/visited_count | 60a082514dbce832fbd621223a44b0260300b34b | 5a7709b59c9feb2135844687d6303abb16991098 | refs/heads/master | 2021-04-17T00:41:52.110770 | 2020-03-24T22:53:14 | 2020-03-24T22:53:14 | 249,397,482 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 144 | tst | bad_post_args3.tst | METHOD='POST'
ARGS='{}'
OUT='Status code is 206:
{"status": "error (206): The json body does not contain the `links` attribute (links array)"}'
|
8010526fb9caf255ed3bc8bf0fb42d65d1143b51 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH12/EX12.12/example12_sce.sce | 22c88dc9e3e0f83c56604e1bec7733671273abdb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | example12_sce.sce | //chapter 12
//example 12.11
//page 498
printf("\n")
printf("given")
rs=600;Ie1=1*10^-3;hfe=50;R1=120*10^3;R2=47*10^3;f1=150;Ie2=2*10^-3;R5=3.3*10^3;R3=12*10^3;Rl=100;
re=26*10^-3/Ie1
hie=(1+hfe)*re
Zi=(R1*R2*hie)/(R1*R2+R1*hie+R2*hie)
Xc1=(Zi+rs)/10
C1=1/(2*3.14*f1*Xc1)//use 6*10^-6 as standard value
Xc2=.65*re
C2=1/(2*3.14*f1*Xc2)
re2=26*10^-3/Ie2
Zo=(R5*(re2+R3/hfe))/(R5+(re2+R3/hfe))
Xc3=.65*(Rl+Zo)
C3=1/(2*3.14*f1*Xc3) |
becc2bf8fb8221f8d3c74403db6770b9ce2e927b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH7/EX7.13/ch7_ex_13.sce | c217cb56d8f285d22c388ce8af507df4691aa70a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 650 | sce | ch7_ex_13.sce | //CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 13
disp("CHAPTER 7");
disp("EXAMPLE 13");
//VARIABLE INITIALIZATION
v1=230; //primary voltage in Volts
v2=115;
f=50; //Hz
Io=2; //in Amp no load current
pf0 =0.28; //lagging
I2=20; //
pf2=0.8; //lagging
//SOLUTION
//
phi0=acos(pf0);
phi2=acos(pf2);
I_dash_2=I2*v2/v1;
Ix=Io*sin(phi0)+I_dash_2*sin(phi2);
Iy=Io*cos(phi0)+I_dash_2*cos(phi2);
I1=sqrt(Ix^2+Iy^2);
disp(sprintf("The current taken by primary is %f Amp",I1));
disp(" ");
//
//END
|
44eec8674ec8d2b7e83adab5d247b955c6fa4917 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH5/EX5.1/Ex5_1.sce | ea27ff59f20b371e0eabadcc3af275b79efbc800 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 681 | sce | Ex5_1.sce | //Example 5_1
clc;clear;funcprot(0);
// Given values
V=10; // Volume of water in gallon
dt=50;// Time in seconds
rho=1;//The density of water in kg/L
r_e=0.4;// Radius of nozzle at exit in cm
// Calculation (a)
v=V/dt; // Volume flow rate in L/s
v=v*3.7854;// Convert gal into L
printf('(a)The volume flow rate of water,v=%0.3f L/s\n',v);
m=rho*v;// Mass flow rate of water in kg/s
printf('The mass flow rate of water,m=%0.3f kg/s\n',m);
// Calculation (b)
A_e=%pi*r_e^2;// The cross sectional area of nozzle at exit in cm^2
V_e=v/A_e;
V_e=(V_e*10000/1000);// Convert to m/s
printf('(b)The average velocity of water at the nozzle exit,V_e=%0.1f m/s\n',V_e);
|
d068b9a610ce2cfe05e04289a6959dc7428b14b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH13/EX13.6/13_6.sci | 873c0533a2cbd4194619985a0c6b2a4545112dc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | sci | 13_6.sci | clc();
clear;
//To determine the number of guided modes
NA=0.28; //numerical aperture
a=30; //core radius
lambda=0.8; //wavelength in micro meter
f=(2*%pi*a*NA)/lambda; //normalised frequency
Ng=f^2/2 //number of guided modes
printf("The number of guided modes is %f",Ng);
|
800b898c6a41c25f856c75ab3cda983949bf2d4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH1/EX1.4/4.sce | 482c83842630ba2c2b642a26062f8a596731e4f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sce | 4.sce | clc
clear
//Calculations
x=(-(32*100))/80;//The temperature at which degree centigrade and Fahrenheit scale coincide in degree centigrade and degree Fahrenheit
//Output
printf('The temperature at which degree centigrade and Fahrenheit coincide is %3.0f degree',x)
|
ad0377c61afc3cd0c0baa25eb9997915e1bd5fc0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH22/EX22.6/Ex22_6.sce | 963dca92121afe60e4a38efdd80b8cdf3de70b50 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 379 | sce | Ex22_6.sce | //Example 22_6
clc();
clear;
//To draw a ray diagram to locate the image
printf("From the diagram we notice that eyes will assume that the three rays come from image position indicated and as we see the image is virtual, erect and enlarged")
d1=10 //units in cm
d2=5 //units in cm
i=(d1*d2)/(d2-d1) //Units in cm
printf("\nThe image is located at i=%.2f cm",i)
|
6d0138b1db3555b445dfef81a3fde0722e4ab85c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3129/CH16/EX16.3/Ex16_3.sce | 687616490253986d6aef57057dce1408d75e84db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,412 | sce | Ex16_3.sce | //Finding the Performance Parameters of a Three-Phase Induction Motor with Rotor voltage control
//Example 16.3(Page No- 706)
clc
clear
//given data
Vl = 460;//V
Vs = Vl/sqrt(3);
Va = Vs;
Xm = 6.1;//Ohm
p = 6;
f = 60;//Hz
w = 2*%pi*f;
w_s = 2*w/p;
n_m = 0.9
R_r = 0.044;//Ohm
Rs = 0.041;
//part(a)
w_m = 800*(%pi/30);
T_L = 750*(800/1175)^2;//given:- the load torque which is proportional to speed squared is 750N.m at 1175 rpm and motor is operated at 800rmp
Id = T_L*w_s/(2.3394*Vs*n_m);
R = (1 - (w_m/w_s))*((2.3394*Vs*n_m)/Id);
printf('(a)\t The value of Resistance R is %.4f Ohm',R);
//part(b)
//at 1050rpm
T_L = 750*(1050/1175)^2
Id = T_L*w_s/(2.3394*Vs*n_m);
printf('\n (b)\t The inductor current Id is %.1f A',Id);
//part(c)
w_m = 1050*%pi/30;
k = 1 - ((1 - (w_m/w_s))*((2.3394*Vs*n_m)/(Id*R)));
printf('\n (c)\t The duty cycle k is %.3f',k);
//part(d)
s = (w_s-w_m)/w_s ;
Vd = 2.3394*s*Vs*n_m;
printf('\n (d)\t The dc voltage Vd is %.1f',Vd);
//part(e)
Pl = Vd*Id;
Po = T_L*w_m;
I_r = sqrt(2/3)*Id*n_m;
P_ru = 3*I_r^2*R_r;
P_su = 3*I_r^2*Rs;
Pi = Po + Pl + P_ru + P_su ;
eta = Po/Pi;
printf('\n (e)\t The efficiency is %.2f%%',eta*100);
//part(f)
n = 1;
I_r1 = 0.7797*Id*n_m;
Im = Va/Xm;
Ii1 = sqrt((0.7797*Id*n_m)^2 + (Va/Xm)^2);
PF_angle = -atand(Im/Ii1);
PF_s = cosd(PF_angle);
printf('\n (f)\t The input PF is %.3f(lagging)',PF_s);
|
f7e2504347203940511119793234084b829c0636 | 2399c938aebed8115aebc38432ebe25fef5229ec | /TP3/Partie3 TP/resolchol.sci | 3c4e531efe9745708438abadc1ec4c24197949d1 | [] | no_license | EtienneLav/LO22-Surete-de-fonctionnement | 78a4b91722d2f4ef26f8746a00e575ab54ef3e6d | 11d130b3ab22a9d132ddbe496e2dfa58689eb7d0 | refs/heads/master | 2021-01-20T19:13:35.090488 | 2016-06-07T13:50:40 | 2016-06-07T13:50:40 | 59,937,340 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sci | resolchol.sci | function [x]=resolchol(A,b)
exec('solinf.sci', -1)
exec('Cholesky.sci', -1)
exec('solvsup.sci', -1)
[n,n]=size(A);
m=length(b);
if n<>m then
error("pas meme taille");
end
c=zeros(n,n);
y=zeros(n,1);
c=cholesky(A);
y=solinf(c,b);
x=solvsup(c',y);
endfunction
|
c6b3ba3428ef8c155da51ed5dc0960f7c1c03abc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH5/EX5.2/Ex5_2.sce | c5fdccf7e1e0dbb5bd132a1da500a8fec202cd4a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,411 | sce | Ex5_2.sce | // chapter 5
// example 5.2
// Fig. E5.2
// Compute the drain current and differnces in current sharing
// page-174-175
clear;
clc;
// given
I_T=30; // in A (total current)
V_DS1=4; // in V (drain to source voltage of MOSFET 1)
V_DS2=4.5; // in V (drain to source voltage of MOSFET 2)
R_S1_a=0.4, R_S2_a=0.3; // in ohm (current sharing series resistance for part-a)
R_S1_b=0.7, R_S2_b=0.7; // in ohm (current sharing series resistance for part-b)
// calculate
// Since I_T=I_D1+I_D2 and V_DS1+ID1*R_S1=V_DS2+ID2*R_S2, simplifying both equations for I_D1, we get
// I_D1=(V_DS2-V_DS1+R_S2*I_T)/(R_S1+R_S2)
I_D1_a=(V_DS2-V_DS1+R_S2_a*I_T)/(R_S1_a+R_S2_a); // calculation of drain current of MOSFET 1 for part-a
I_D1_a_percent=I_D1_a*100/I_T; // equivalent value in terms of percentage of total current
I_D2_a=I_T-I_D1_a; // calculation of drain current of MOSFET 2 for part-a
I_D2_a_percent=I_D2_a*100/I_T; // equivalent value in terms of percentage of total current
dI_a=abs(I_D2_a-I_D1_a); // calculation of difference in current for part-a
dI_a_percent=abs(I_D2_a_percent-I_D1_a_percent); // equivalent value in terms of percentage of total current
printf("\npart-a\n");
printf("\nThe drain current of MOSFET 1 is \t I_D1=%.2f A or %.2f %%",I_D1_a,I_D1_a_percent);
printf("\nThe drain current of MOSFET 2 is \t I_D2=%.2f A or %.2f %%",I_D2_a,I_D2_a_percent);
printf("\n\nThe difference in current sharing is \t%.2f A or %.2f %%",dI_a,dI_a_percent);
I_D1_b=(V_DS2-V_DS1+R_S2_b*I_T)/(R_S1_b+R_S2_b); // calculation of drain current of MOSFET 1 for part-a
I_D1_b_percent=I_D1_b*100/I_T; // equivalent value in terms of percentage of total current
I_D2_b=I_T-I_D1_b; // calculation of drain current of MOSFET 2 for part-a
I_D2_b_percent=I_D2_b*100/I_T; // equivalent value in terms of percentage of total current
dI_b=abs(I_D2_b-I_D1_b); // calculation of difference in current for part-a
dI_b_percent=abs(I_D2_b_percent-I_D1_b_percent); // equivalent value in terms of percentage of total current
printf("\n\npart-b\n");
printf("\nThe drain current of MOSFET 1 is \t I_D1=%.2f A or %.1f %%",I_D1_b,I_D1_b_percent);
printf("\nThe drain current of MOSFET 2 is \t I_D2=%.2f A or %.1f %%",I_D2_b,I_D2_b_percent);
printf("\n\nThe difference in current sharing is \t%.2f A or %.1f %%",dI_b,dI_b_percent);
// Note: the answers for some of the quantity may vary slightly due to precise calculation |
94a9a6c6c606cb4458f6ec5dcc764b81856f0ae1 | 8627886261b3eddf8440c0b470cd9ee25c762d97 | /сайлаб/twelve2.sce | 753ff7483101cfd02c8b540d217bf538619b5faf | [] | no_license | timurzotov/pvis | ba75cf86fae91b6adc8dd3fe9cd2672eea561cca | d60e8e241d6ce0ad3a9b2a75c8771f92a9b039ba | refs/heads/master | 2020-09-08T07:59:31.719500 | 2019-11-11T21:14:13 | 2019-11-11T21:14:13 | 221,070,925 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 652 | sce | twelve2.sce | clc
xname('ЗАДАНИЕ 12.2')
scf;
x=0:.1:5; y=0.5*sin(3*x+5)+0.3*cos(2*x+6);
plot2d(x,y,axesflag=5); xgrid()
xtitle('График функции: y=0.5*sin(3*x+5)+0.3*cos(2*x+6)', 'x', 'y')
clc
function y= gg(x)
if q==1 then y=0.5*sin(3*x+5)+0.3*cos(2*x+6) else
y=-(0.5*sin(3*x+5)+0.3*cos(2*x+6)) end
endfunction
funcprot(0);
function [f,g,r]=z(x,r)
f=gg(x)
g=numderivative(gg,x)
endfunction
x0=2.1; q=1;
[fmin,xmin]=optim(z,x0)
x0=4.2; q=1;
[fmin2,xmin2]=optim(z,x0)
x0=0.8; q=3;
[fmax,xmax]=optim(z,x0)
xmax,fmax=-fmax
x0=3.1; q=3;
[fmax2,xmax2]=optim(z,x0)
xmax2,fmax2=-fmax2
//xmin,fmin,xmin2,fmin2,xmax,fmax,xmax2,fmax2
|
9995ca9f0198883816d54d2faa164d2d52837e3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2279/CH7/EX7.6/Ex7_6.sce | c313d8a1286fa83581f8c761689266dbc279a625 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sce | Ex7_6.sce | //DTFS of a periodic sequence
clc
clear
close
n=-4:3;
x=[0 1 2 3 0 1 2 3];
N=4;
k=0:3;;
wo=2*%pi/N;
a0=1.5;
a1=-0.5+0.5*%i;
a2=-0.5;
a3=-0.5-0.5*%i;
a=[a0,a1,a2,a3]
for i=1:length(a)
phase(i)=atan(imag(a(i))/real(a(i)));
end
subplot(2,1,1)
plot(k,abs(a),'.');
xtitle("magnitude spectrum","k","ak");
subplot(2,1,2)
plot(k,phase,'.');
xtitle("phase spectrum","k","ak");
|
8537b2fc1bda91a65fb3cdc11b4b5e65d62a0ee7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2863/CH2/EX2.8/ex2_8.sce | 9a73b0146ce7ba53007be28c31ffb2f7150e1762 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | ex2_8.sce | //chapter 2
//T0=290k,room temperature
printf("\n");
F=1.2882;
printf("given F is given by %g",F);
Te=(1.2882-1)*290;//Te=(F-1)T0
printf("\neffective noise temperature is %gK",Te);
|
f4ffef01a6b0588e963acf4770db9b067ec8c406 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH8/EX8.2/Example_8_2.sce | d80ccc8d30752b845b7cbf046fbfeb6328fcc174 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | Example_8_2.sce | //Scilab Code for Example 8.2 of Signals and systems by
//P.Ramakrishna Rao
//Second order system
clear;
clc;
syms t;
L=1;
R=1.2;
C=10^-6;
Rcr=2*sqrt(L/C);
eta=R/Rcr;
disp(eta,'Damping Ratio=',Rcr,'Critical Resistance (ohm)','(i)');
Wn=1/sqrt(L*C);
disp(Wn,'Undamped Natural Frequency(Hz)','(ii)');
n=1;
h=(1250*sin(800*t))*exp(-600*t);
H=laplace(h,t,'jW');
for t=0:0.1:2;
h(n)=(1250*sin(800*t))*exp(-600*t);//Impulse Response
n=n+1;
end
t=0:0.1:2;
plot(t,h);
title('Impulse Response');
ylabel('Amplitude');
xlabel('time in seconds');
disp(H,'(iv)Transfer Function(H(jw)):');
|
9bfd9742c862f0a84e7d998bba2c30ab496778c5 | 79a9b8e61be2b6f6982c748002a7eb60ebe61e94 | /scilabCode/circular_conv.sci | 30832a53513eb9e44e308b587b975ea91b6ed48c | [] | no_license | kavyamanohar/DSPlab | 2537afda78992bf9fc2e60d93ef95849c40c23e9 | eca8a02bbac243a61db8db89f3e05ea2e6485c39 | refs/heads/master | 2021-01-21T13:53:00.373606 | 2016-06-05T08:27:51 | 2016-06-05T08:27:51 | 54,376,427 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 562 | sci | circular_conv.sci |
// Circular Convolution//
clear;
clc ;
close ;
x1 =input('Enter sequence 1:');
x2 =input('Enter sequence 2:');
n1= length (x1);
n2= length (x2);
n3=n2 -n1;
if (n3>=0)
x1=[x1,zeros(1,n3)];
else
x2=[x2,zeros(1,-n3)];
end
disp(x1);
disp(x2);
//DFT Computation
X1=fft(x1 , -1);
X2=fft(x2 , -1);
Y=X1 .* X2;
//IDFT Computation
y= fft (Y ,1) ;
// Di s pl a y s e quenc e y [ n ] i n command window
disp (y,"y [ n]=");
subplot(1,3,1);plot2d3(x1);
subplot(1,3,2);plot2d3(x2);
subplot(1,3,3);plot2d3(y);title('Circular convolution')
xs2pdf(0,'circular_conv.pdf');
|
c987f841e7c963aaffd74f4651bcf81e53566c69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH3/EX3.4/Ex3_4.sce | 03aa19196a78bdb29de9f37ac9907990d36f5ed7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 554 | sce | Ex3_4.sce | //===========================================================================
//chapter 3 example 4
clc;
clear all;
//variable declaration
ep = 5; //percentage error
Am = 20; //measuredd value in H
//calculations
er = ep/(100); //relative error
//A = Am+dA
//dA = er*Am
A = Am*(1+er); //limiting value of inductance in H
A1 = Am*(1-er); //limiting value of inductance in H
//result
mprintf("limits of inductance =%3.2f H",A);
mprintf("\n and = %3.2f H",A1);
|
46d3454549c86f2041e41617ea053d1a2eb1d41b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH8/EX8.3/ExA_3.sce | 7c06456b2f3cd5ee41ccc53465460ed062c26e14 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,278 | sce | ExA_3.sce | clc;
lc=0.5; // core length in metre
dc=2.85*10^-2; // diameter of cross section of core
lg=2*10^-3; // length of air gap
N=500; // Number oof turns of coil
f=0.8*10^-3; // air gap flux
uo=4*%pi*10^-7; // permeability of free space
HATM=[1500 2210 2720 3500 4100];
BT=[0.9 1.1 1.2 1.275 1.3];
plot(HATM,BT);
xlabel('magnetic field intensity');
ylabel('flux density');
disp('case a');
ur=500; // relative permeability
Ac=(%pi/4)*dc^2; // Area of core
Rlg=lg/(uo*Ac); // reluctance of air gap
Rlc=lc/(uo*ur*Ac); // reluctance of iron core
Rt=Rlg+Rlc; // Total reluctance
I=(f*Rt)/N; // Exciting current
printf('Exciting current in coil is %f A\n',I);
disp('case b');
Ag=(%pi/4)*(dc+2*lg)^2; // air gap area
Rlg=lg/(uo*Ag); // reluctance of air gap
I=(f*(Rlc+Rlg))/N; // Exciting current
printf('Exciting current after accounting for flux fringing is %f A\n',I);
disp('case c');
Bg=f/Ac; // Air gap flux density
Atg=(Bg*lg)/uo; // air gap mmf
// from the plot we can get the values of core flux density and magnetic field intensity
Bc=1.245; // core flux density in Tesla
H=3200; // magnetic field intensity in Ats/m
Atc=H*lc; // core mmf
mt=Atg+Atc; // total mmf
I=mt/N; // Exciting current
printf('Exciting current for third case is %f A',I);
|
e01f8c0d7475e343b1e9c1c53a90e39f1be5ed71 | e6d5464b8ec685d57c5ea454a56c61b87ea2365c | /BestMovies.tst | c4706c441e9cb3bc55d88a3a08c401b6f7bd47d1 | [] | no_license | LearningAlways365/mewto | 29f6475a429d1a9e9c150e475aa1713d3a0bb444 | 0394e146c971e6fa6afab5b8e18f7bf5771c7112 | refs/heads/main | 2023-01-05T17:55:28.084070 | 2020-11-01T18:16:55 | 2020-11-01T18:16:55 | 309,132,494 | 0 | 0 | null | 2020-11-01T18:16:56 | 2020-11-01T16:00:18 | Scilab | UTF-8 | Scilab | false | false | 281 | tst | BestMovies.tst | I am gonna list the best movies I have watched:
a) THE LIE
b) MURDER MYSTERY
c) PARASITE
d) THE DARK KNIGHT
e) THE DARK KNIGHT RISES
This is the list so far.
Demo to branch out and create new branch
Now I have to merge the changes
for my learning
commenting in main branch
|
5b0705059d83176b4a99d24a6166f7a1e757c5b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1409/CH8/EX8.4/8_4.sce | 47c12c8a2d56930c2e123091e1233dae5d595b2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 154 | sce | 8_4.sce | clc;
//page no 8-10
//Example 8.4
fs=1500;//in kHz
IF=465;//in kHz
fs1=fs-(2*IF);
disp(+'kHz',fs1,'The frequency at another dialing station is ');
|
bbcee797ba86a0be12435f3cca4127cccfb0056e | fe42802d7bd704d330c1618c1ed2b14b4678fb1e | /RandomDeposition/largura_x_tempo.sce | c477d3932e1a0c302157ecae9ba942b819aac167 | [
"MIT"
] | permissive | douglasCardinot/iniciacao | c0e7f4952b3532f67cbf185dc40b363e112e47a1 | a711a845d8790ad7099224a5e414f3190a56bb88 | refs/heads/master | 2020-07-02T05:07:37.534416 | 2014-10-17T19:30:55 | 2014-10-17T19:30:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 580 | sce | largura_x_tempo.sce | clear
scf();
numberOfSteps = 1000;
size_ = 200;
blocksForTime = size_;
y = zeros(1,size_);
width = zeros(1, numberOfSteps);
pos = 1:1:numberOfSteps;
posSize = 1:1:int(size_);
randonNumbers = rand(numberOfSteps, blocksForTime);
for j=1:numberOfSteps
for i=1:blocksForTime
d = ceil(randonNumbers(j, i)*size_);
y(int(d)) = y(int(d)) + 1;
end
width(j) = stdev(y);
if modulo(j, 100) == 0 then
plot(posSize, y, 'color', rand(1,3));
end
end
scf();
plot(pos, width, '*');
scf();
plot(pos, width);
a = gca();
a.log_flags = 'lln';
|
e08015493bc93c2448c4237f51d7651d1ce99aad | 1bc06fa90b5425d41347c90d0c73bb82eb4cbbfe | /utils/afficherImage.sci | 2faee68fb858e4a7a5238299ed741770080bca2c | [] | no_license | madox35/Filtre-Canny | a0a527ad6be5a1dc5984b2533008f95b1c9663ee | 3a54da9b0ce917c995ea5fbd48e0ed5c3f36748d | refs/heads/master | 2020-03-08T08:57:27.702111 | 2018-04-21T19:39:39 | 2018-04-21T19:39:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 68 | sci | afficherImage.sci | function afficherImage(image)
imshow(uint8(image));
endfunction
|
60520e8f5539da568495ee7149b4a6164f4cbaa5 | 3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f | /k-means-2d-simulation.sce | 7342c424dbabb2e0550b2e83d1dfebfe4ba6ae2f | [] | no_license | bozhink/Code-Chunks | 74355eb4c0d423c2f6484226e564030dff798678 | 860b7b8f53089ed96fd0ebead2e3eec16fa377cb | refs/heads/master | 2020-12-24T06:19:04.343239 | 2019-11-13T14:09:15 | 2019-11-13T14:09:15 | 42,819,484 | 0 | 1 | null | 2019-11-13T14:09:16 | 2015-09-20T16:09:09 | HTML | UTF-8 | Scilab | false | false | 1,572 | sce | k-means-2d-simulation.sce | d = 2; // dimension
nc = 3; // number of clusters
nic = 20; // number of items per cluster
clusters = list();
for i = 1:nc
clusters(i) = rand(nic, d);
clusters(i)(:,1) = clusters(i)(:,1) - 0.5*i;
clusters(i)(:,2) = clusters(i)(:,2) + i;
end
scf(1);
clf();
plot2d(clusters(1)(:,1), clusters(1)(:,2), [-5]);
plot2d(clusters(2)(:,1), clusters(2)(:,2), [-4]);
plot2d(clusters(3)(:,1), clusters(3)(:,2), [-6]);
all_points = [];
for i = 1:nc
all_points = [all_points; clusters(i)];
end
centers = rand(nc, d);
function kmeans(data, centers)
[n, m] = size(centers);
[nd, md] = size(data);
if md <> m then
error('Invalid dimentions');
end
dict = [];
for i = 1:nd
// Find the index of the nearest center
dist_min = %inf;
k_min = 1;
for k = 1:n
delta = data(i, :) - centers(k, :);
dist = sqrt(delta * delta');
if dist < dist_min then
dist_min = dist;
k_min = k;
end
end
// Here k_min is the index of the nearest center
// Update the dictionary dict
dict(i) = k_min;
end
disp(dict);
// Here dict is the mapping between a data point to its nearest center
// Re-calculate the amss of each center
cc = zeros(centers);
nn = zeros(n, 1);
for i = 1:nd
k = dict(i);
cc(k, :) = cc(k, :) + data(i, :);
nn(k) = nn(k) + 1;
end
z = centers;
for k = 1:n
z(k, :) = cc(k, :) / nn(k);
end
return z;
endfunction
|
94b1549b8f57ad2b2cbe9723e4d898bcd7130c74 | 449d555969bfd7befe906877abab098c6e63a0e8 | /692/CH6/EX6.14/P6_14.sce | e05da7cc13c68c7de307901572f9ababda5b81bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | P6_14.sce | //EXAMPLE 6.14
//Inverse Z-transform
clear;
clc;
z = %z;
num=z*(z+2);
den=(z-0.2)*(z+0.6);
H=num/den;
elts=factors(den);
disp(elts);
//solving Partial Fractions, we get:
Hz = 2.75/(1-(0.2)/z) - 1.75/(1+(0.6)/z);
disp(Hz);
//disp(h = 2.75*(0.2^n) - 1.75*(0.6^n)*u(n));
h1= ldiv(2.75*z,(z-(0.2)),10)
disp(h1/2.75,'h1 = ');
h1= ldiv(1.75*z,(z+(0.6)),10)
disp(h1/1.75,'h2 = ');
disp('the inverse z-transform is :')
disp('h = 2.75*(0.2^n)*u(n) - 1.75*(-0.6^n)*u(n)') |
327c9277619545ac993210f2666b814d75fd463a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH19/EX19.3/Ex19_3.sce | 284d30c8dce39b92a31d0f4b43a418f39dd3a35b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 803 | sce | Ex19_3.sce | clc
P1 = 101.3e03
P4 = P1 // in Pa
P2 = 8*P1
P3 = P2
T1 = 288
Vs = 2000
V3 = 100
Vc = V3
V1 = Vs + Vc
n = 1.25
R = 287
V4 = ((P3/P4)^(1/n))*V3
W = ((n*P1*(V1-V4)*1e-06)/(n-1))*(((P2/P1)^((n-1)/n))-1)
P = (W*800*0.001)/60
m = (P1*(V1-V4)*1e-06)/(R*T1)
m_dot = m*800
FAD = (V1-V4)*1e-06*800
Wt = P1*(V1-V4)*1e-06*log(P2/P1)
n_isothermal = (Wt*800*0.001)/(P*60)
Pi = P/0.85
n_v =100*(V1-V4)/Vs
printf("\n Example 19.3\n")
printf("\n Indicated poer is %f kW",P)
printf("\n Volumetric efficiency is %f percent",n_v)
printf("\n Mass flow rate is %f kg/min",m_dot)
printf("\n Free air delivery is %f m^3/min",FAD)
printf("\n Isothermal efficiency is %f percent",100*n_isothermal)
printf("\n Input power is %f kW",Pi)
//The answers vary due to round off error
|
39d62fed37bf2007ae91fc68db7762b85d0b1aa3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH26/EX26.4/Chapter26_example4.sce | 256ce4ae04217a3a47dbddb6f91c651f8b690b5f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 952 | sce | Chapter26_example4.sce | clc
clear
//Input data
p1=7//Pressure of gas before expansion in kg/cm^2
p2=5//Pressure of gas after expansion in kg/cm^2
T1=250+273//Temperature of gas before expansion in K
Cp=0.24//Specific heat at constant pressure in kJ/kg.K
Cv=0.17//Specific heat at constant volume in kJ/kg.K
nv=0.8//Nozzle efficiency
//Calculations
R=427*(Cp-Cv)//Characteristic gas constant in kg.m/kg.K
g=(Cp/Cv)//Ratio of specific heats
V1=(R*T1)/(p1*10^4)//Volume in cu.m per kg
V2=(V1*(p1/p2)^(1/g))//Volume in cu.m per kg
Wd=(g/(g-1))*(p1*V1-p2*V2)*10^4//Work done in m.kg per kg
KE=(nv*Wd)//Kinetic energy at exit in m.kg per kg
v3=sqrt(2*9.81*nv*Wd)//Velocity in m/s
T2=(T1*(p2/p1)*(V2/V1))//Temperature in K
T3=(((1-nv)*Wd)/(427*Cp))+T2//Temperature in K
V3=(V2*(T3/T2))//Volume in cu.m per kg
qa=(V3/v3)*10^4//Discharge area unit rate of mass flow in cm^2
//Output
printf('Area of discharge per unit rate of mass flow is %3.2f sq.cm',qa)
|
4090d20ee6983a438f52ac4eea3b019cb41fcf1c | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH5/EX5.7/example5_7.sce | a573e401908f8e0c76e326c767055205156c5477 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 671 | sce | example5_7.sce | p1=200;
v=240;
v0=120;
p2=100;
disp("Part a");
r1=(v0^2)/p1;
r2=(v0^2)/p2;
r=r1+r2;
v1=v*r1/r;
v2=v*r2/r;
disp("the voltage (in V) across the 200 W , 120 V bulb is"); disp(v1);
disp("the voltage (in V) across the 100 W , 120 V bulb is"); disp(v2);
disp("Part b");
p_1=(v1^2)/r1;
p_2=(v2^2)/r2;
disp("the power dissipated (in W) by the 200 W , 120 V bulb is"); disp(p_1);
disp("the power dissipated (in W) by the 100 W , 120 V bulb is"); disp(p_2);
disp("Part c");
disp("the 200 W bulb will be approximately half as bright as normal , the 10 W bulb would be much brighter (almost twice as bright) than normal and would probably burn out in few minutes"); |
89977aa3d707b0eaf83b2993aeb8a6128b7ac650 | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH5/EX5.10/example_5_10.sce | af6af962c7250998703fa9bf78cf7f61a43065f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 895 | sce | example_5_10.sce | //Chapter 5
//Example 5.10
//page 170
//To determine the MVA rating of the shunt reactor
clear;clc;
v=275;
l=400;
R=0.035*l;
X=2*%pi*50*1.1*l*10^-3;
Z=R+%i*X;
Y=2*%pi*50*0.012*10^-6*l*%i;
A=1+(Y*Z/2);
B=Z;
Vs=275;
Vr=275;
r=(Vs*Vr)/abs(B);
Ce=abs(A/B)*Vr^2;
printf('Radius of the receiving-end circle=%0.1f MVA\n\n',r);
printf('Location of the center of receiving-end circle= %0.1f MVA\n\n',Ce);
printf('From the graph, 55 MVA shunt reactor is required\n\n');
theta=180+82.5;
x=-75:0.01:450;
a=Ce*cosd(theta); //to draw the circle
b=Ce*sind(theta);
y=sqrt(r^2-(x-a)^2)+b;
x1=a:0.001:0;
y1=tand(theta)*x1;
plot(x,y,x1,y1);
title('Circle diagram for example 5.10');
xlabel('MW');
ylabel('MVAR');
plot(a,b,'markersize',150);
xgrid(2)
set(gca(),"grid",[0,0])
get("current_axes");
xstring (-75,25,'55 MVAR');
xstring(-75,-25,'83.5 deg');
xstring(-20,-300,'487.6 MVA');
xstring(300,-100,'544.3 MVA'); |
571a7e200fb0df7be10ba5c9e9bfd26c168f2e5a | 858e87eba2421990e4bb02ee2ac7070276bc0259 | /experiments/voltage-1-motor.sci | 5e02dfcd7e1b63c3732d3148a1a49c503276ba7b | [
"LicenseRef-scancode-public-domain"
] | permissive | MyFreertosLab/sdrone_test | c649e737128db26ee0902d2b9beca883c0ef5f2a | 919ff6dd3e5d495102f0b16243873f3cb7b4640b | refs/heads/master | 2023-06-15T05:10:19.052455 | 2021-07-16T07:10:39 | 2021-07-16T07:10:39 | 359,063,905 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 376,590 | sci | voltage-1-motor.sci | A=[
49.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 40, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 40, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 40, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 40, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 32;
52.00000, 11768, 984, 11768, 40, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 40, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
52.00000, 11768, 984, 11768, 32, 11768, 40;
52.00000, 11768, 976, 11768, 32, 11768, 40;
60.03987, 11648, 17144, 11720, 32, 11720, 40;
60.58804, 11696, 10256, 11744, 40, 11744, 40;
60.95349, 11704, 8896, 11744, 40, 11744, 40;
61.86711, 11704, 9208, 11744, 40, 11744, 40;
61.86711, 11712, 8864, 11744, 32, 11744, 40;
62.04984, 11712, 8640, 11744, 32, 11744, 40;
62.04984, 11712, 8184, 11744, 32, 11744, 40;
62.04984, 11712, 8040, 11752, 32, 11744, 40;
62.04984, 11720, 7792, 11744, 32, 11752, 40;
61.86711, 11720, 7448, 11744, 32, 11744, 40;
61.86711, 11720, 7496, 11752, 32, 11744, 40;
61.86711, 11720, 7808, 11744, 32, 11744, 40;
61.86711, 11720, 7808, 11752, 32, 11752, 40;
61.86711, 11720, 6864, 11752, 32, 11752, 40;
61.86711, 11720, 7624, 11752, 32, 11744, 40;
61.86711, 11720, 7688, 11752, 32, 11744, 40;
61.86711, 11720, 7752, 11752, 32, 11744, 40;
61.86711, 11720, 7424, 11752, 32, 11752, 40;
61.86711, 11720, 7744, 11752, 32, 11752, 40;
61.86711, 11720, 7680, 11752, 32, 11744, 40;
61.86711, 11720, 7544, 11752, 32, 11744, 40;
61.86711, 11720, 7496, 11752, 32, 11744, 40;
61.86711, 11720, 7504, 11752, 40, 11752, 40;
61.86711, 11720, 7480, 11752, 32, 11744, 40;
61.86711, 11720, 7592, 11752, 32, 11744, 40;
61.86711, 11720, 7640, 11752, 32, 11744, 40;
61.86711, 11720, 7728, 11752, 32, 11744, 40;
61.86711, 11720, 7736, 11744, 32, 11744, 40;
61.86711, 11720, 7656, 11752, 32, 11744, 40;
61.86711, 11720, 7520, 11744, 40, 11744, 40;
61.86711, 11720, 7688, 11752, 32, 11744, 40;
61.86711, 11720, 7736, 11752, 32, 11744, 40;
61.86711, 11720, 7416, 11744, 40, 11744, 40;
61.86711, 11720, 7584, 11744, 40, 11752, 40;
61.86711, 11720, 7496, 11744, 32, 11744, 40;
61.86711, 11720, 7184, 11752, 32, 11744, 40;
61.86711, 11720, 7496, 11744, 32, 11744, 40;
61.86711, 11720, 7664, 11744, 32, 11744, 40;
61.86711, 11720, 7768, 11752, 32, 11744, 40;
61.86711, 11720, 7544, 11744, 32, 11744, 40;
61.86711, 11720, 7704, 11744, 32, 11744, 40;
61.86711, 11720, 7792, 11744, 32, 11744, 40;
61.86711, 11720, 7600, 11744, 40, 11744, 40;
61.86711, 11720, 7392, 11744, 32, 11744, 40;
61.86711, 11720, 7584, 11744, 40, 11744, 40;
61.86711, 11712, 7488, 11744, 32, 11752, 40;
61.86711, 11720, 7464, 11744, 32, 11744, 40;
61.86711, 11720, 7312, 11744, 32, 11744, 40;
61.86711, 11720, 7392, 11744, 32, 11744, 40;
61.86711, 11720, 7608, 11744, 40, 11744, 40;
61.86711, 11720, 7408, 11744, 32, 11744, 40;
61.86711, 11720, 7640, 11752, 32, 11744, 40;
61.86711, 11720, 7656, 11752, 40, 11744, 40;
61.86711, 11720, 7744, 11744, 32, 11744, 40;
61.86711, 11720, 7672, 11744, 32, 11744, 40;
61.86711, 11720, 7584, 11744, 32, 11752, 40;
61.86711, 11720, 7472, 11744, 32, 11744, 40;
61.86711, 11720, 7440, 11744, 32, 11744, 40;
61.86711, 11712, 7472, 11744, 32, 11744, 40;
61.86711, 11720, 7624, 11744, 32, 11744, 40;
61.86711, 11720, 7632, 11752, 32, 11744, 40;
61.86711, 11720, 7688, 11744, 40, 11744, 40;
61.86711, 11720, 7784, 11744, 32, 11744, 40;
61.86711, 11720, 7712, 11744, 32, 11744, 40;
61.86711, 11720, 7384, 11744, 32, 11744, 40;
61.86711, 11720, 7440, 11744, 32, 11744, 40;
61.86711, 11720, 7704, 11744, 32, 11744, 40;
61.86711, 11720, 7368, 11744, 32, 11744, 40;
61.86711, 11720, 7440, 11744, 32, 11744, 40;
61.86711, 11712, 7664, 11744, 32, 11744, 40;
61.86711, 11720, 7752, 11744, 32, 11744, 40;
61.86711, 11720, 7592, 11744, 32, 11744, 40;
61.86711, 11712, 7568, 11744, 32, 11744, 40;
61.86711, 11720, 7824, 11744, 32, 11744, 40;
61.86711, 11720, 7792, 11744, 32, 11744, 40;
61.86711, 11720, 7640, 11744, 32, 11744, 40;
61.86711, 11720, 7816, 11744, 32, 11744, 40;
61.86711, 11720, 7424, 11744, 32, 11744, 40;
61.86711, 11720, 7560, 11744, 32, 11744, 40;
61.86711, 11720, 7776, 11744, 40, 11744, 40;
61.86711, 11720, 7440, 11744, 40, 11744, 40;
61.86711, 11720, 7664, 11744, 32, 11744, 40;
61.86711, 11712, 7352, 11744, 32, 11744, 40;
61.86711, 11712, 7568, 11744, 32, 11744, 40;
61.86711, 11720, 7664, 11744, 40, 11744, 40;
61.86711, 11712, 7432, 11752, 40, 11744, 40;
61.86711, 11720, 7248, 11744, 32, 11744, 40;
61.86711, 11712, 7552, 11744, 40, 11744, 40;
61.86711, 11712, 7608, 11744, 32, 11744, 40;
61.86711, 11720, 7608, 11744, 40, 11744, 40;
61.86711, 11720, 7576, 11744, 32, 11744, 40;
61.86711, 11720, 7512, 11744, 32, 11744, 40;
61.86711, 11712, 7376, 11744, 32, 11744, 40;
61.86711, 11720, 7328, 11744, 40, 11744, 40;
61.86711, 11720, 7464, 11744, 32, 11744, 40;
61.86711, 11720, 7744, 11744, 32, 11744, 40;
61.86711, 11720, 7832, 11744, 32, 11744, 40;
61.86711, 11720, 7624, 11744, 32, 11744, 40;
61.86711, 11720, 7744, 11744, 32, 11744, 40;
61.86711, 11720, 7552, 11744, 32, 11744, 40;
61.86711, 11720, 7472, 11744, 32, 11744, 40;
61.86711, 11720, 7424, 11744, 32, 11744, 40;
61.86711, 11712, 7440, 11744, 32, 11744, 40;
61.86711, 11712, 7568, 11744, 32, 11744, 40;
61.86711, 11720, 7448, 11744, 40, 11744, 40;
61.86711, 11712, 7448, 11744, 40, 11744, 40;
61.86711, 11712, 7672, 11744, 32, 11744, 40;
61.86711, 11712, 7848, 11744, 40, 11744, 40;
62.04984, 11712, 7368, 11744, 32, 11744, 40;
62.04984, 11720, 7472, 11744, 32, 11744, 40;
62.04984, 11712, 7608, 11744, 32, 11744, 40;
62.04984, 11720, 7656, 11744, 32, 11744, 40;
62.04984, 11720, 7664, 11744, 40, 11744, 40;
62.23256, 11720, 7424, 11744, 40, 11744, 40;
62.59801, 11720, 7584, 11744, 32, 11744, 40;
63.14618, 11712, 8440, 11744, 32, 11744, 40;
63.69435, 11712, 9264, 11744, 32, 11744, 40;
64.24252, 11704, 8632, 11744, 32, 11744, 40;
64.42525, 11704, 8664, 11744, 40, 11744, 40;
64.79070, 11704, 9384, 11744, 32, 11744, 40;
65.52159, 11704, 9184, 11744, 32, 11744, 40;
66.04000, 11704, 9280, 11744, 40, 11744, 40;
66.24953, 11704, 9424, 11744, 32, 11744, 40;
66.56381, 11704, 9248, 11744, 32, 11736, 40;
66.98286, 11704, 9320, 11744, 32, 11736, 40;
67.29714, 11704, 9672, 11744, 32, 11736, 40;
67.71619, 11704, 9560, 11736, 40, 11736, 40;
67.92571, 11704, 9224, 11744, 40, 11744, 40;
68.65905, 11696, 10056, 11736, 32, 11736, 40;
68.97334, 11696, 9992, 11744, 40, 11736, 40;
69.39238, 11704, 9432, 11736, 32, 11736, 40;
69.49715, 11696, 9768, 11744, 40, 11736, 40;
70.33524, 11696, 10328, 11736, 32, 11736, 40;
70.54476, 11696, 10104, 11736, 40, 11736, 40;
70.64952, 11696, 9496, 11736, 32, 11736, 40;
70.64952, 11704, 10032, 11744, 32, 11736, 40;
71.69714, 11696, 10280, 11736, 32, 11736, 40;
71.90667, 11696, 10384, 11736, 32, 11736, 40;
71.90667, 11696, 9864, 11736, 32, 11736, 40;
71.80190, 11696, 10560, 11736, 32, 11736, 40;
71.80190, 11696, 9808, 11736, 40, 11736, 40;
71.80190, 11696, 9760, 11736, 32, 11736, 40;
71.80190, 11696, 10208, 11736, 40, 11736, 40;
71.80190, 11696, 9976, 11736, 32, 11736, 40;
71.80190, 11696, 10080, 11736, 32, 11736, 40;
71.80190, 11696, 9496, 11736, 32, 11736, 40;
71.80190, 11696, 10024, 11736, 32, 11736, 40;
71.80190, 11696, 10200, 11736, 32, 11736, 40;
71.80190, 11696, 9656, 11736, 32, 11736, 40;
71.80190, 11696, 9808, 11736, 32, 11736, 40;
71.80190, 11696, 10056, 11736, 32, 11736, 40;
71.90667, 11696, 10248, 11736, 32, 11736, 40;
71.90667, 11696, 9880, 11736, 32, 11736, 40;
71.90667, 11696, 9944, 11736, 40, 11736, 40;
71.80190, 11696, 10088, 11736, 32, 11736, 40;
71.80190, 11696, 9648, 11736, 40, 11736, 40;
71.80190, 11696, 10000, 11736, 32, 11736, 40;
71.80190, 11696, 9904, 11736, 32, 11736, 40;
71.80190, 11696, 9600, 11736, 32, 11736, 40;
71.80190, 11696, 9920, 11736, 32, 11736, 40;
71.80190, 11696, 9888, 11736, 40, 11736, 40;
71.90667, 11696, 9800, 11736, 32, 11736, 40;
71.90667, 11696, 10072, 11736, 32, 11736, 40;
71.90667, 11696, 9776, 11736, 40, 11736, 40;
71.90667, 11696, 10088, 11736, 32, 11736, 40;
71.90667, 11696, 9584, 11736, 40, 11736, 40;
71.80190, 11696, 10192, 11736, 40, 11736, 40;
71.80190, 11696, 9848, 11736, 32, 11736, 40;
71.80190, 11696, 10256, 11736, 32, 11736, 40;
71.80190, 11696, 9696, 11736, 32, 11736, 40;
71.80190, 11696, 9672, 11736, 40, 11736, 40;
71.80190, 11696, 9968, 11736, 32, 11736, 40;
71.80190, 11696, 9960, 11736, 40, 11736, 40;
71.80190, 11696, 9952, 11736, 40, 11736, 40;
71.80190, 11696, 9776, 11736, 32, 11736, 40;
71.80190, 11696, 9872, 11736, 32, 11736, 40;
71.80190, 11696, 9848, 11736, 32, 11736, 40;
71.80190, 11696, 9792, 11736, 32, 11736, 40;
71.90667, 11696, 10216, 11736, 40, 11736, 40;
71.90667, 11696, 9840, 11736, 40, 11736, 40;
71.90667, 11696, 10184, 11736, 32, 11736, 40;
71.80190, 11696, 9920, 11736, 40, 11736, 40;
71.80190, 11696, 9912, 11736, 40, 11736, 40;
71.80190, 11696, 9944, 11736, 32, 11736, 40;
71.80190, 11696, 9912, 11736, 32, 11736, 40;
71.80190, 11696, 9688, 11736, 32, 11736, 40;
71.80190, 11696, 9744, 11736, 40, 11736, 40;
71.90667, 11696, 10088, 11736, 32, 11736, 40;
71.90667, 11696, 9808, 11736, 40, 11736, 40;
71.90667, 11696, 9880, 11736, 32, 11736, 40;
71.90667, 11696, 9816, 11736, 32, 11736, 40;
71.90667, 11696, 10328, 11736, 40, 11736, 40;
71.90667, 11696, 9600, 11736, 32, 11736, 40;
71.80190, 11696, 10040, 11736, 40, 11736, 40;
71.80190, 11696, 10144, 11736, 40, 11736, 40;
71.80190, 11696, 9760, 11736, 32, 11736, 40;
71.80190, 11696, 10208, 11736, 40, 11736, 40;
71.90667, 11696, 9880, 11736, 40, 11736, 40;
71.80190, 11696, 9856, 11736, 32, 11736, 40;
71.80190, 11696, 10088, 11736, 32, 11736, 40;
71.80190, 11696, 9832, 11736, 32, 11736, 40;
71.80190, 11696, 9920, 11736, 40, 11736, 40;
71.80190, 11696, 9680, 11736, 32, 11736, 40;
71.90667, 11696, 9856, 11736, 32, 11736, 40;
71.90667, 11696, 9800, 11736, 32, 11736, 40;
71.90667, 11696, 9880, 11736, 32, 11736, 40;
71.90667, 11696, 9768, 11736, 32, 11736, 40;
71.80190, 11696, 9768, 11736, 32, 11736, 40;
71.80190, 11696, 9976, 11736, 32, 11736, 40;
71.80190, 11696, 9600, 11736, 32, 11736, 40;
71.80190, 11696, 10312, 11736, 40, 11736, 40;
71.80190, 11696, 9960, 11736, 32, 11736, 40;
71.80190, 11696, 9904, 11736, 32, 11736, 40;
71.80190, 11696, 10160, 11736, 32, 11736, 40;
71.80190, 11696, 9640, 11736, 32, 11736, 40;
71.80190, 11696, 9968, 11736, 32, 11736, 40;
71.80190, 11696, 9832, 11736, 32, 11736, 40;
71.80190, 11696, 10024, 11736, 32, 11736, 40;
71.80190, 11696, 9560, 11736, 32, 11736, 40;
71.80190, 11696, 10096, 11736, 40, 11736, 40;
71.80190, 11696, 10032, 11736, 32, 11736, 40;
71.80190, 11696, 10232, 11736, 32, 11736, 40;
71.80190, 11696, 10272, 11736, 40, 11736, 40;
71.80190, 11696, 9640, 11736, 32, 11736, 40;
71.80190, 11696, 9768, 11736, 32, 11736, 40;
71.80190, 11696, 10064, 11736, 32, 11736, 40;
71.80190, 11696, 9768, 11736, 32, 11736, 40;
71.80190, 11696, 9920, 11736, 32, 11736, 40;
71.80190, 11696, 10088, 11736, 40, 11736, 40;
71.80190, 11696, 10128, 11736, 32, 11736, 48;
71.80190, 11696, 9656, 11736, 32, 11736, 48;
71.80190, 11696, 9656, 11736, 32, 11736, 48;
71.80190, 11696, 9704, 11736, 32, 11736, 48;
71.80190, 11696, 9832, 11736, 32, 11736, 48;
71.80190, 11696, 9832, 11736, 32, 11736, 48;
71.80190, 11696, 9864, 11736, 32, 11736, 48;
71.80190, 11696, 9864, 11736, 32, 11736, 48;
71.90667, 11696, 10184, 11736, 40, 11736, 48;
71.90667, 11696, 10040, 11736, 40, 11736, 48;
71.90667, 11696, 10040, 11736, 40, 11736, 48;
71.90667, 11696, 9896, 11736, 32, 11736, 48;
71.90667, 11696, 9912, 11736, 32, 11736, 48;
71.90667, 11696, 9912, 11736, 32, 11736, 48;
71.90667, 11696, 9824, 11736, 32, 11736, 48;
71.90667, 11696, 9824, 11736, 32, 11736, 48;
71.90667, 11696, 10040, 11736, 32, 11736, 48;
71.90667, 11696, 9904, 11736, 32, 11736, 48;
71.90667, 11696, 9904, 11736, 40, 11736, 48;
71.90667, 11696, 9808, 11736, 32, 11736, 48;
71.90667, 11696, 10056, 11736, 32, 11736, 48;
71.90667, 11696, 10056, 11736, 40, 11736, 48;
71.90667, 11696, 9472, 11736, 32, 11736, 48;
71.90667, 11696, 9472, 11736, 32, 11736, 48;
71.90667, 11696, 10160, 11736, 40, 11736, 56;
71.90667, 11696, 10080, 11736, 40, 11736, 56;
71.90667, 11696, 10080, 11736, 32, 11736, 48;
71.90667, 11696, 10264, 11736, 40, 11736, 48;
71.90667, 11696, 10264, 11736, 40, 11736, 56;
71.90667, 11696, 9576, 11736, 40, 11736, 48;
71.90667, 11696, 10328, 11736, 40, 11736, 48;
71.90667, 11696, 10328, 11736, 40, 11736, 48;
71.90667, 11696, 9776, 11736, 40, 11736, 48;
71.90667, 11696, 9992, 11736, 40, 11736, 48;
71.90667, 11696, 9992, 11736, 32, 11736, 48;
71.90667, 11696, 10208, 11736, 32, 11736, 48;
71.90667, 11696, 10208, 11736, 32, 11736, 40;
71.90667, 11696, 10008, 11736, 32, 11736, 40;
71.90667, 11696, 9880, 11736, 32, 11736, 40;
71.90667, 11696, 9880, 11736, 32, 11736, 40;
71.90667, 11696, 10048, 11736, 40, 11736, 40;
71.90667, 11696, 10048, 11736, 40, 11736, 40;
71.90667, 11696, 9504, 11736, 32, 11736, 40;
71.90667, 11696, 10288, 11736, 32, 11736, 40;
71.90667, 11696, 10288, 11736, 32, 11736, 40;
71.90667, 11696, 9992, 11736, 32, 11736, 40;
71.90667, 11696, 9760, 11736, 32, 11736, 40;
71.90667, 11696, 9760, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9928, 11736, 32, 11736, 40;
71.90667, 11696, 9744, 11736, 32, 11736, 40;
71.90667, 11696, 9744, 11736, 40, 11736, 40;
71.90667, 11696, 9928, 11736, 40, 11736, 40;
71.90667, 11696, 9928, 11736, 40, 11736, 40;
71.90667, 11696, 9896, 11736, 32, 11736, 40;
71.90667, 11696, 9624, 11736, 32, 11736, 40;
71.90667, 11696, 9624, 11736, 40, 11736, 40;
71.90667, 11696, 10184, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 40;
71.90667, 11696, 9736, 11736, 32, 11736, 40;
71.90667, 11696, 10072, 11736, 32, 11736, 40;
71.90667, 11696, 10072, 11736, 40, 11736, 40;
71.90667, 11696, 9728, 11736, 40, 11736, 40;
71.90667, 11696, 10216, 11736, 40, 11736, 40;
71.90667, 11696, 10216, 11736, 32, 11736, 40;
71.90667, 11696, 9720, 11736, 32, 11736, 40;
71.90667, 11696, 9720, 11736, 32, 11736, 40;
71.90667, 11696, 9696, 11736, 32, 11736, 40;
71.90667, 11696, 10040, 11736, 32, 11736, 40;
71.90667, 11696, 10040, 11736, 32, 11736, 40;
71.90667, 11696, 10416, 11736, 32, 11736, 40;
71.90667, 11696, 10416, 11736, 32, 11736, 40;
71.90667, 11696, 9864, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 40, 11736, 40;
71.90667, 11696, 10088, 11736, 40, 11736, 40;
71.90667, 11696, 9776, 11736, 40, 11736, 40;
71.90667, 11696, 9776, 11736, 32, 11736, 40;
71.90667, 11696, 10120, 11736, 32, 11736, 40;
71.90667, 11696, 10120, 11736, 32, 11736, 40;
71.90667, 11696, 9808, 11736, 40, 11736, 40;
71.90667, 11696, 9848, 11736, 40, 11736, 40;
71.90667, 11696, 9848, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 32, 11736, 40;
71.90667, 11696, 10048, 11736, 32, 11736, 40;
71.90667, 11696, 9728, 11736, 32, 11736, 40;
71.90667, 11696, 9728, 11736, 40, 11736, 40;
71.90667, 11696, 10144, 11736, 32, 11736, 40;
71.90667, 11696, 9832, 11736, 32, 11736, 40;
71.90667, 11696, 9832, 11736, 40, 11736, 40;
71.90667, 11696, 9704, 11736, 40, 11736, 40;
71.90667, 11696, 9704, 11736, 40, 11736, 40;
71.90667, 11696, 9896, 11736, 32, 11736, 40;
71.90667, 11696, 9960, 11736, 32, 11736, 40;
71.90667, 11696, 9960, 11736, 32, 11736, 40;
71.90667, 11688, 9752, 11736, 32, 11736, 40;
71.90667, 11688, 9752, 11736, 32, 11736, 40;
71.90667, 11696, 10032, 11736, 32, 11736, 40;
71.90667, 11696, 9648, 11736, 32, 11736, 40;
71.80190, 11696, 9648, 11736, 40, 11736, 40;
71.80190, 11696, 9912, 11736, 32, 11736, 40;
71.80190, 11696, 9768, 11736, 32, 11736, 40;
71.80190, 11696, 9768, 11736, 32, 11736, 40;
71.80190, 11696, 9488, 11736, 40, 11736, 40;
71.80190, 11696, 9488, 11736, 40, 11736, 40;
71.80190, 11696, 10256, 11736, 40, 11736, 40;
71.80190, 11696, 9784, 11736, 40, 11736, 40;
71.80190, 11696, 9784, 11736, 32, 11736, 40;
71.80190, 11696, 10176, 11736, 40, 11736, 40;
71.80190, 11696, 9632, 11736, 40, 11736, 40;
71.80190, 11696, 9632, 11736, 32, 11736, 40;
71.80190, 11696, 10088, 11736, 32, 11736, 40;
71.80190, 11696, 10088, 11736, 32, 11736, 48;
71.80190, 11696, 9952, 11736, 40, 11736, 40;
71.80190, 11696, 10048, 11736, 40, 11736, 40;
71.80190, 11696, 10048, 11736, 40, 11736, 48;
71.80190, 11696, 9640, 11736, 32, 11736, 48;
71.80190, 11696, 9640, 11736, 32, 11736, 48;
71.80190, 11696, 10184, 11736, 40, 11736, 40;
71.80190, 11696, 9896, 11736, 40, 11736, 40;
71.80190, 11696, 9896, 11736, 40, 11736, 40;
71.80190, 11696, 9592, 11736, 32, 11736, 80;
71.80190, 11696, 10112, 11736, 32, 11736, 80;
71.80190, 11696, 10112, 11736, 40, 11736, 56;
71.80190, 11696, 10112, 11736, 32, 11736, 56;
71.80190, 11696, 10112, 11736, 32, 11736, 56;
71.80190, 11696, 9776, 11736, 40, 11736, 64;
71.80190, 11696, 9936, 11736, 40, 11736, 64;
71.80190, 11696, 9936, 11736, 40, 11736, 40;
71.80190, 11696, 9504, 11736, 32, 11736, 40;
71.80190, 11696, 9504, 11736, 32, 11736, 40;
71.80190, 11696, 10040, 11736, 40, 11736, 40;
71.80190, 11696, 9784, 11736, 40, 11736, 40;
71.80190, 11696, 9784, 11736, 40, 11736, 40;
71.80190, 11696, 9216, 11736, 40, 11736, 40;
71.80190, 11696, 10128, 11736, 40, 11736, 40;
71.80190, 11696, 10128, 11736, 40, 11736, 40;
71.80190, 11696, 9792, 11736, 40, 11736, 40;
71.80190, 11696, 9792, 11736, 40, 11736, 40;
71.80190, 11696, 9792, 11736, 32, 11736, 40;
71.80190, 11696, 10168, 11736, 32, 11736, 40;
71.80190, 11696, 10168, 11736, 32, 11736, 40;
71.80190, 11696, 9832, 11736, 40, 11736, 40;
71.80190, 11696, 9832, 11736, 40, 11736, 40;
71.80190, 11696, 9688, 11736, 32, 11736, 40;
71.80190, 11696, 9928, 11736, 32, 11736, 40;
71.80190, 11696, 9928, 11736, 40, 11736, 40;
71.80190, 11696, 9712, 11736, 40, 11736, 40;
71.80190, 11696, 9912, 11736, 40, 11736, 40;
71.80190, 11696, 9912, 11736, 32, 11736, 40;
71.80190, 11696, 10000, 11736, 32, 11736, 40;
71.80190, 11696, 10000, 11736, 32, 11736, 40;
71.80190, 11696, 9664, 11736, 40, 11736, 40;
71.80190, 11696, 10104, 11736, 40, 11736, 40;
71.80190, 11696, 10104, 11736, 32, 11736, 40;
71.80190, 11696, 10144, 11736, 32, 11736, 40;
71.80190, 11696, 9640, 11736, 32, 11736, 40;
71.80190, 11696, 9640, 11736, 32, 11736, 40;
71.80190, 11696, 10104, 11736, 32, 11736, 40;
71.80190, 11696, 10104, 11736, 32, 11736, 40;
71.80190, 11696, 9696, 11736, 32, 11736, 40;
71.80190, 11696, 9728, 11736, 32, 11736, 40;
71.80190, 11696, 9728, 11736, 40, 11736, 40;
71.80190, 11696, 10144, 11736, 32, 11736, 40;
71.80190, 11696, 10144, 11736, 32, 11736, 40;
71.80190, 11696, 9960, 11736, 32, 11736, 40;
71.80190, 11696, 9808, 11736, 32, 11736, 40;
71.80190, 11696, 9808, 11736, 32, 11736, 40;
71.80190, 11696, 10040, 11736, 32, 11736, 40;
71.80190, 11696, 9704, 11736, 32, 11736, 40;
71.80190, 11696, 9704, 11736, 40, 11736, 40;
71.80190, 11696, 10040, 11736, 32, 11736, 40;
71.80190, 11696, 10040, 11736, 32, 11736, 40;
71.80190, 11696, 9920, 11736, 32, 11736, 40;
71.80190, 11696, 9832, 11736, 32, 11736, 40;
71.80190, 11696, 9832, 11736, 32, 11736, 40;
71.80190, 11696, 10072, 11736, 32, 11736, 40;
71.80190, 11696, 10072, 11736, 32, 11736, 40;
71.80190, 11696, 10136, 11736, 40, 11736, 40;
71.80190, 11696, 9880, 11736, 40, 11736, 40;
71.80190, 11696, 9880, 11736, 40, 11736, 40;
71.80190, 11696, 9864, 11736, 40, 11736, 40;
71.80190, 11696, 9536, 11736, 40, 11736, 40;
71.80190, 11696, 9536, 11736, 40, 11736, 40;
71.80190, 11696, 10072, 11736, 32, 11736, 40;
71.80190, 11696, 10072, 11736, 32, 11736, 40;
71.80190, 11696, 9888, 11736, 40, 11736, 40;
71.80190, 11696, 9856, 11736, 40, 11736, 40;
71.80190, 11696, 9856, 11736, 40, 11736, 40;
71.80190, 11696, 10232, 11736, 40, 11736, 40;
71.80190, 11696, 10232, 11736, 40, 11736, 40;
71.80190, 11696, 9736, 11736, 40, 11736, 40;
71.80190, 11696, 9560, 11736, 40, 11736, 40;
71.80190, 11696, 9560, 11736, 40, 11736, 40;
71.80190, 11696, 10136, 11736, 32, 11736, 40;
71.80190, 11696, 9688, 11736, 32, 11736, 40;
71.80190, 11696, 9688, 11736, 40, 11736, 40;
71.80190, 11696, 10112, 11736, 32, 11736, 40;
71.80190, 11696, 10112, 11736, 32, 11736, 40;
71.80190, 11696, 10112, 11736, 32, 11736, 40;
71.80190, 11696, 9504, 11736, 32, 11736, 40;
71.80190, 11696, 9504, 11736, 32, 11736, 40;
71.80190, 11696, 9904, 11736, 40, 11736, 40;
71.80190, 11696, 9904, 11736, 40, 11736, 40;
71.80190, 11696, 10040, 11736, 32, 11736, 40;
71.80190, 11696, 9752, 11736, 32, 11736, 40;
71.80190, 11696, 9752, 11736, 32, 11736, 40;
71.80190, 11696, 10152, 11736, 32, 11736, 40;
71.80190, 11696, 10032, 11736, 32, 11736, 40;
71.80190, 11696, 10032, 11736, 32, 11736, 40;
71.80190, 11696, 9712, 11736, 32, 11736, 40;
71.80190, 11696, 9712, 11736, 32, 11736, 40;
71.80190, 11696, 9896, 11736, 32, 11736, 32;
71.80190, 11696, 10048, 11736, 32, 11736, 32;
71.80190, 11696, 10048, 11736, 32, 11736, 40;
71.80190, 11688, 9752, 11736, 40, 11736, 40;
71.80190, 11688, 9976, 11736, 40, 11736, 40;
71.80190, 11696, 9976, 11736, 40, 11736, 40;
71.80190, 11696, 9680, 11736, 32, 11736, 40;
71.80190, 11696, 9680, 11736, 32, 11736, 40;
71.80190, 11696, 9760, 11736, 40, 11736, 40;
71.80190, 11696, 10288, 11736, 40, 11736, 40;
71.80190, 11696, 10288, 11736, 32, 11736, 40;
71.80190, 11696, 9712, 11736, 32, 11736, 40;
71.80190, 11696, 9712, 11736, 32, 11736, 40;
71.80190, 11696, 10008, 11736, 32, 11736, 40;
71.80190, 11696, 9792, 11736, 32, 11736, 40;
71.80190, 11696, 9792, 11736, 32, 11736, 40;
71.80190, 11696, 9744, 11736, 32, 11736, 40;
71.80190, 11696, 10064, 11736, 32, 11736, 40;
71.80190, 11696, 10064, 11736, 40, 11736, 40;
71.80190, 11696, 9784, 11736, 40, 11736, 40;
71.80190, 11696, 9784, 11736, 40, 11736, 40;
71.80190, 11696, 9568, 11736, 40, 11736, 40;
71.80190, 11696, 10168, 11736, 40, 11736, 40;
71.80190, 11696, 10168, 11736, 40, 11736, 40;
71.80190, 11696, 9960, 11736, 32, 11736, 40;
71.80190, 11696, 9960, 11736, 32, 11736, 40;
71.80190, 11696, 9680, 11736, 40, 11736, 40;
71.80190, 11696, 9776, 11736, 40, 11736, 40;
71.80190, 11696, 9776, 11736, 32, 11736, 40;
71.80190, 11696, 9816, 11736, 32, 11736, 40;
71.80190, 11696, 9592, 11736, 32, 11736, 40;
71.80190, 11696, 9592, 11736, 32, 11736, 40;
71.80190, 11696, 10112, 11736, 40, 11736, 40;
71.90667, 11696, 10112, 11736, 40, 11736, 40;
71.90667, 11696, 9656, 11736, 40, 11736, 40;
71.90667, 11696, 10280, 11736, 40, 11736, 40;
71.90667, 11696, 10280, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 32, 11736, 40;
71.90667, 11696, 10128, 11736, 40, 11736, 40;
71.90667, 11696, 10080, 11736, 32, 11736, 40;
71.90667, 11696, 10080, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 32, 11736, 40;
71.90667, 11696, 9824, 11736, 32, 11736, 40;
71.90667, 11696, 9824, 11736, 32, 11736, 40;
71.90667, 11696, 10088, 11736, 32, 11736, 40;
71.90667, 11696, 10088, 11736, 32, 11736, 40;
71.90667, 11696, 10000, 11736, 32, 11736, 40;
71.90667, 11696, 9704, 11736, 32, 11736, 40;
71.90667, 11696, 9704, 11736, 32, 11736, 40;
71.90667, 11696, 10000, 11736, 32, 11736, 40;
71.90667, 11696, 10024, 11736, 32, 11736, 40;
71.90667, 11696, 10024, 11736, 40, 11736, 40;
71.90667, 11696, 9784, 11736, 32, 11736, 40;
71.90667, 11696, 9784, 11736, 32, 11736, 40;
71.90667, 11696, 9800, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 32, 11736, 40;
71.90667, 11696, 9840, 11736, 32, 11736, 40;
71.90667, 11696, 9840, 11736, 32, 11736, 40;
71.90667, 11696, 10008, 11736, 40, 11736, 40;
71.90667, 11696, 9680, 11736, 40, 11736, 40;
71.90667, 11696, 9680, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 32, 11736, 32;
71.90667, 11696, 9976, 11736, 32, 11736, 32;
71.90667, 11696, 10128, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 32, 11736, 40;
71.90667, 11696, 9856, 11736, 40, 11736, 40;
71.90667, 11696, 10080, 11736, 40, 11736, 40;
71.90667, 11696, 10080, 11736, 40, 11736, 40;
71.90667, 11696, 9640, 11736, 32, 11736, 40;
71.90667, 11696, 9640, 11736, 32, 11736, 40;
71.90667, 11696, 10008, 11736, 32, 11736, 40;
71.90667, 11696, 10024, 11736, 32, 11736, 40;
71.90667, 11696, 10024, 11736, 40, 11736, 40;
71.90667, 11696, 9744, 11736, 32, 11736, 40;
71.90667, 11696, 9800, 11736, 40, 11736, 40;
71.90667, 11696, 9800, 11736, 40, 11736, 40;
71.90667, 11696, 10304, 11736, 32, 11736, 40;
71.90667, 11696, 9816, 11736, 32, 11736, 40;
71.90667, 11696, 9816, 11736, 32, 11736, 40;
71.90667, 11696, 10080, 11736, 32, 11736, 40;
71.90667, 11696, 9792, 11736, 32, 11736, 40;
71.90667, 11696, 9792, 11736, 32, 11736, 40;
71.90667, 11696, 9680, 11736, 40, 11736, 40;
71.90667, 11696, 9680, 11736, 40, 11736, 40;
71.90667, 11696, 10256, 11736, 32, 11736, 40;
71.90667, 11696, 9928, 11736, 32, 11736, 40;
71.90667, 11696, 9928, 11736, 40, 11736, 40;
71.90667, 11696, 9656, 11736, 40, 11736, 40;
71.90667, 11696, 9904, 11736, 40, 11736, 40;
71.90667, 11696, 9904, 11736, 40, 11736, 40;
71.90667, 11696, 10128, 11736, 40, 11736, 40;
71.90667, 11696, 10128, 11736, 40, 11736, 40;
71.90667, 11696, 9824, 11736, 40, 11736, 40;
71.90667, 11696, 10088, 11736, 40, 11736, 40;
71.90667, 11696, 10088, 11736, 32, 11736, 40;
71.90667, 11696, 9856, 11736, 32, 11736, 40;
71.90667, 11696, 9856, 11736, 32, 11736, 40;
71.90667, 11696, 9696, 11736, 32, 11736, 40;
71.90667, 11696, 10096, 11736, 32, 11736, 40;
71.90667, 11696, 10096, 11736, 40, 11736, 40;
71.90667, 11696, 10000, 11736, 32, 11736, 40;
71.90667, 11696, 9816, 11736, 32, 11736, 40;
71.90667, 11696, 9816, 11736, 40, 11736, 40;
71.90667, 11696, 9760, 11736, 40, 11736, 40;
71.90667, 11696, 9760, 11736, 40, 11736, 40;
71.90667, 11696, 9968, 11736, 32, 11736, 40;
71.90667, 11696, 10168, 11736, 32, 11736, 40;
71.90667, 11696, 10168, 11736, 32, 11736, 40;
71.90667, 11696, 9952, 11736, 32, 11736, 40;
71.90667, 11696, 9952, 11736, 32, 11736, 40;
71.90667, 11696, 9888, 11736, 40, 11736, 40;
71.90667, 11696, 9952, 11736, 40, 11736, 40;
71.90667, 11696, 9952, 11736, 32, 11736, 40;
71.90667, 11696, 10032, 11736, 40, 11736, 40;
71.90667, 11696, 9672, 11736, 40, 11736, 40;
71.90667, 11696, 9672, 11736, 32, 11736, 40;
71.90667, 11696, 10368, 11736, 40, 11736, 40;
71.90667, 11696, 10368, 11736, 40, 11736, 40;
71.90667, 11696, 9736, 11736, 32, 11736, 40;
71.90667, 11696, 9600, 11736, 32, 11736, 40;
71.90667, 11696, 9600, 11736, 32, 11736, 40;
71.90667, 11696, 10304, 11736, 32, 11736, 40;
71.90667, 11696, 10304, 11736, 32, 11736, 40;
71.90667, 11696, 10184, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 32, 11736, 40;
71.90667, 11696, 9960, 11736, 40, 11736, 40;
71.90667, 11696, 9696, 11736, 40, 11736, 40;
71.90667, 11696, 9696, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9856, 11736, 40, 11736, 40;
71.90667, 11696, 9696, 11736, 40, 11736, 40;
71.90667, 11696, 9696, 11736, 40, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 32;
71.90667, 11696, 10088, 11736, 40, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9840, 11736, 40, 11736, 40;
71.90667, 11696, 10232, 11736, 40, 11736, 40;
71.90667, 11696, 10232, 11736, 32, 11736, 40;
71.90667, 11696, 9592, 11736, 32, 11736, 40;
71.90667, 11696, 9592, 11736, 32, 11736, 40;
71.90667, 11696, 9984, 11736, 40, 11736, 40;
71.90667, 11696, 10224, 11736, 40, 11736, 40;
71.90667, 11696, 10224, 11736, 32, 11736, 40;
71.90667, 11696, 9840, 11736, 32, 11736, 40;
71.90667, 11696, 9824, 11736, 32, 11736, 40;
71.90667, 11696, 9824, 11736, 32, 11736, 40;
71.90667, 11696, 10256, 11736, 32, 11736, 40;
71.90667, 11696, 10256, 11736, 32, 11736, 40;
71.90667, 11696, 9600, 11736, 32, 11736, 40;
71.90667, 11696, 10144, 11736, 32, 11736, 40;
71.90667, 11696, 10144, 11736, 40, 11736, 40;
71.90667, 11696, 9888, 11736, 32, 11736, 40;
71.90667, 11696, 9888, 11736, 32, 11736, 40;
71.90667, 11696, 9712, 11736, 40, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 40;
71.90667, 11696, 10216, 11736, 40, 11736, 40;
71.90667, 11696, 9536, 11736, 40, 11736, 40;
71.90667, 11696, 9536, 11736, 40, 11736, 40;
71.90667, 11696, 10064, 11736, 32, 11736, 40;
71.90667, 11696, 10064, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 40, 11736, 40;
71.90667, 11696, 9808, 11736, 40, 11736, 40;
71.90667, 11696, 9968, 11736, 40, 11736, 40;
71.90667, 11696, 9968, 11736, 40, 11736, 40;
71.90667, 11696, 10200, 11736, 32, 11736, 40;
71.90667, 11696, 10200, 11736, 32, 11736, 40;
71.90667, 11696, 9816, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 32, 11736, 40;
71.90667, 11696, 9904, 11736, 32, 11736, 40;
71.90667, 11696, 10064, 11736, 40, 11736, 40;
71.90667, 11696, 10064, 11736, 40, 11736, 40;
71.90667, 11696, 9920, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 32, 11736, 40;
71.90667, 11696, 9680, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 32, 11736, 40;
71.90667, 11696, 9872, 11736, 32, 11736, 40;
71.90667, 11696, 10032, 11736, 32, 11736, 40;
71.90667, 11696, 10032, 11736, 32, 11736, 40;
71.90667, 11696, 10024, 11736, 40, 11736, 40;
71.90667, 11696, 9968, 11736, 40, 11736, 40;
71.90667, 11696, 9968, 11736, 32, 11736, 40;
71.90667, 11696, 9976, 11736, 40, 11736, 40;
71.90667, 11696, 9640, 11736, 40, 11736, 40;
71.90667, 11696, 9640, 11736, 40, 11736, 40;
72.01143, 11696, 9888, 11736, 32, 11736, 40;
72.01143, 11696, 9888, 11736, 32, 11736, 40;
72.01143, 11696, 10040, 11736, 32, 11736, 40;
72.01143, 11696, 10096, 11736, 32, 11736, 40;
72.01143, 11696, 10096, 11736, 32, 11736, 40;
72.01143, 11696, 10088, 11736, 40, 11736, 40;
72.01143, 11696, 10088, 11736, 40, 11736, 40;
72.01143, 11696, 9840, 11736, 32, 11736, 40;
72.01143, 11696, 9824, 11736, 32, 11736, 40;
72.01143, 11696, 9824, 11736, 40, 11736, 40;
72.01143, 11688, 10048, 11736, 32, 11736, 40;
72.01143, 11688, 10352, 11736, 32, 11736, 40;
72.01143, 11696, 10352, 11736, 32, 11736, 40;
72.01143, 11696, 9792, 11736, 40, 11736, 40;
72.01143, 11696, 9792, 11736, 40, 11736, 40;
72.01143, 11696, 10416, 11736, 40, 11736, 40;
72.01143, 11696, 9968, 11736, 40, 11736, 40;
72.11619, 11696, 9968, 11736, 40, 11736, 40;
72.11619, 11696, 9720, 11736, 32, 11736, 40;
72.11619, 11696, 9720, 11736, 32, 11736, 40;
72.11619, 11696, 10160, 11736, 32, 11736, 40;
72.11619, 11696, 9800, 11736, 32, 11736, 40;
72.11619, 11696, 9800, 11736, 32, 11736, 40;
72.11619, 11696, 10064, 11736, 32, 11736, 40;
72.11619, 11696, 10200, 11736, 32, 11736, 40;
72.11619, 11696, 10200, 11736, 32, 11736, 40;
72.11619, 11696, 10072, 11736, 40, 11736, 40;
72.11619, 11696, 10072, 11736, 40, 11736, 40;
72.11619, 11688, 10032, 11736, 32, 11736, 40;
72.11619, 11696, 10392, 11736, 32, 11736, 40;
72.11619, 11696, 10392, 11736, 40, 11736, 40;
72.11619, 11696, 9784, 11736, 32, 11736, 40;
72.11619, 11696, 9784, 11736, 32, 11736, 40;
72.32571, 11696, 10032, 11736, 40, 11736, 40;
72.32571, 11696, 10296, 11736, 40, 11736, 40;
72.32571, 11696, 10296, 11736, 40, 11736, 40;
72.32571, 11696, 9920, 11736, 32, 11736, 40;
72.32571, 11696, 10216, 11736, 32, 11736, 40;
72.32571, 11696, 10216, 11736, 32, 11736, 40;
72.32571, 11696, 10328, 11736, 40, 11736, 40;
72.32571, 11696, 10040, 11736, 32, 11736, 40;
72.32571, 11696, 10040, 11736, 32, 11736, 40;
72.32571, 11696, 10104, 11736, 40, 11736, 40;
72.32571, 11696, 10144, 11736, 40, 11736, 40;
72.32571, 11696, 10144, 11736, 32, 11736, 40;
72.32571, 11696, 9832, 11736, 32, 11736, 40;
72.32571, 11696, 9832, 11736, 32, 11736, 40;
72.32571, 11696, 10368, 11736, 32, 11736, 40;
72.74477, 11696, 9824, 11736, 32, 11736, 40;
72.74477, 11696, 9824, 11736, 32, 11736, 40;
72.74477, 11696, 10096, 11736, 32, 11736, 40;
72.74477, 11696, 10480, 11736, 32, 11736, 40;
72.74477, 11696, 10480, 11736, 32, 11736, 40;
72.74477, 11696, 10416, 11736, 32, 11736, 40;
72.74477, 11696, 10416, 11736, 32, 11736, 40;
72.74477, 11696, 10048, 11736, 32, 11736, 40;
72.74477, 11696, 10144, 11736, 32, 11736, 40;
72.74477, 11696, 10144, 11736, 40, 11736, 40;
72.74477, 11696, 10536, 11736, 32, 11736, 40;
72.74477, 11696, 10536, 11736, 32, 11736, 40;
72.74477, 11696, 10152, 11736, 40, 11736, 40;
72.74477, 11688, 10312, 11736, 40, 11736, 40;
72.74477, 11688, 10312, 11736, 32, 11736, 40;
72.74477, 11696, 10416, 11736, 32, 11736, 40;
72.74477, 11696, 10048, 11736, 32, 11736, 40;
72.84953, 11696, 10048, 11736, 40, 11736, 40;
72.84953, 11688, 9896, 11736, 32, 11736, 40;
72.84953, 11696, 10216, 11736, 32, 11736, 40;
72.84953, 11696, 10216, 11736, 32, 11736, 40;
72.84953, 11688, 10248, 11736, 32, 11736, 40;
72.84953, 11688, 10480, 11736, 32, 11736, 40;
72.84953, 11688, 10480, 11736, 32, 11736, 40;
72.84953, 11696, 10160, 11736, 32, 11736, 40;
72.84953, 11696, 10160, 11736, 32, 11736, 40;
72.84953, 11696, 10168, 11736, 32, 11736, 40;
72.84953, 11688, 10360, 11736, 32, 11736, 40;
72.84953, 11688, 10360, 11736, 40, 11736, 40;
72.84953, 11696, 10136, 11736, 40, 11736, 40;
72.84953, 11696, 10136, 11736, 40, 11736, 40;
72.84953, 11696, 10120, 11736, 40, 11736, 40;
72.95428, 11696, 10384, 11736, 40, 11736, 40;
72.95428, 11696, 10384, 11736, 32, 11736, 40;
72.95428, 11696, 10008, 11736, 40, 11736, 40;
72.95428, 11696, 10520, 11736, 40, 11736, 40;
72.95428, 11688, 10520, 11736, 32, 11736, 40;
72.95428, 11696, 10440, 11736, 32, 11736, 40;
72.95428, 11696, 10440, 11736, 32, 11736, 40;
72.95428, 11696, 9960, 11736, 40, 11736, 40;
72.95428, 11688, 10312, 11736, 40, 11736, 40;
72.95428, 11688, 10312, 11736, 32, 11736, 40;
72.95428, 11696, 10128, 11736, 32, 11736, 40;
72.95428, 11696, 9864, 11736, 32, 11736, 40;
72.95428, 11696, 9864, 11736, 40, 11736, 40;
72.95428, 11688, 10192, 11736, 32, 11736, 40;
72.95428, 11688, 10192, 11736, 32, 11736, 40;
72.95428, 11696, 10280, 11736, 40, 11736, 40;
73.16381, 11696, 9800, 11736, 32, 11736, 40;
73.16381, 11696, 10232, 11736, 32, 11736, 40;
73.16381, 11696, 10232, 11736, 32, 11736, 40;
73.16381, 11696, 10152, 11736, 32, 11736, 40;
73.16381, 11696, 10152, 11736, 32, 11736, 40;
73.16381, 11696, 9984, 11736, 32, 11736, 40;
73.16381, 11696, 10104, 11736, 32, 11736, 40;
73.16381, 11688, 10104, 11736, 32, 11736, 40;
73.16381, 11696, 9984, 11736, 32, 11736, 40;
73.16381, 11696, 9984, 11736, 32, 11736, 40;
73.16381, 11696, 10200, 11736, 40, 11736, 40;
73.16381, 11688, 10408, 11736, 40, 11736, 40;
73.16381, 11688, 10408, 11736, 40, 11736, 40;
73.16381, 11696, 10192, 11736, 40, 11736, 40;
73.16381, 11696, 9968, 11736, 40, 11736, 40;
73.16381, 11696, 9968, 11736, 32, 11736, 40;
73.47810, 11688, 10280, 11736, 40, 11736, 40;
73.47810, 11688, 10280, 11736, 40, 11736, 40;
73.47810, 11696, 10256, 11736, 32, 11736, 40;
73.47810, 11688, 10288, 11736, 32, 11736, 40;
73.47810, 11688, 10288, 11736, 40, 11736, 40;
73.47810, 11696, 10736, 11736, 32, 11736, 40;
73.47810, 11696, 10736, 11736, 32, 11736, 40;
73.47810, 11696, 10104, 11736, 40, 11736, 40;
73.47810, 11688, 10288, 11736, 40, 11736, 40;
73.47810, 11688, 10288, 11736, 40, 11736, 40;
73.47810, 11696, 10424, 11736, 32, 11736, 40;
73.47810, 11696, 10144, 11736, 32, 11736, 40;
73.47810, 11688, 10144, 11736, 32, 11736, 40;
73.47810, 11688, 10416, 11736, 40, 11736, 40;
73.47810, 11688, 10416, 11736, 40, 11736, 40;
73.47810, 11696, 10448, 11736, 32, 11736, 40;
73.79238, 11696, 10528, 11736, 32, 11736, 40;
73.79238, 11696, 10976, 11736, 32, 11736, 40;
73.79238, 11688, 10976, 11736, 32, 11736, 32;
73.79238, 11696, 10376, 11736, 32, 11736, 32;
73.79238, 11696, 10376, 11736, 32, 11736, 40;
73.79238, 11696, 9976, 11736, 32, 11736, 40;
73.79238, 11688, 10440, 11736, 32, 11736, 40;
73.79238, 11688, 10440, 11736, 32, 11736, 40;
73.79238, 11688, 10440, 11736, 32, 11736, 40;
73.79238, 11688, 10440, 11736, 32, 11736, 40;
73.79238, 11688, 10208, 11736, 32, 11736, 32;
73.79238, 11688, 10080, 11736, 40, 11736, 32;
73.79238, 11688, 10080, 11736, 40, 11736, 40;
73.79238, 11696, 10688, 11736, 40, 11736, 40;
73.79238, 11696, 10184, 11736, 40, 11736, 40;
73.79238, 11696, 10184, 11736, 32, 11736, 40;
74.00191, 11688, 10352, 11736, 40, 11736, 40;
74.00191, 11688, 10352, 11736, 40, 11736, 40;
74.00191, 11696, 10568, 11736, 40, 11736, 40;
74.00191, 11696, 10384, 11736, 40, 11736, 40;
74.00191, 11696, 10384, 11736, 32, 11736, 40;
74.00191, 11688, 10600, 11736, 32, 11736, 40;
74.00191, 11688, 10520, 11736, 32, 11736, 40;
74.00191, 11688, 10520, 11736, 40, 11736, 40;
74.00191, 11696, 10320, 11736, 32, 11736, 40;
74.00191, 11688, 10368, 11736, 32, 11736, 40;
74.00191, 11688, 10368, 11736, 40, 11736, 40;
74.00191, 11696, 10616, 11736, 32, 11736, 40;
74.00191, 11696, 10488, 11736, 32, 11736, 40;
74.00191, 11696, 10488, 11736, 32, 11736, 40;
74.00191, 11688, 10272, 11736, 32, 11736, 40;
74.00191, 11688, 10272, 11736, 32, 11736, 40;
74.31619, 11696, 10752, 11736, 40, 11736, 40;
74.31619, 11696, 10608, 11736, 40, 11736, 40;
74.31619, 11696, 10608, 11736, 40, 11736, 40;
74.31619, 11688, 10488, 11736, 32, 11736, 40;
74.31619, 11688, 10488, 11736, 32, 11736, 40;
74.31619, 11696, 10472, 11736, 32, 11736, 40;
74.31619, 11688, 10392, 11736, 32, 11736, 40;
74.31619, 11688, 10392, 11736, 32, 11736, 40;
74.31619, 11688, 10800, 11736, 40, 11736, 40;
74.31619, 11688, 10824, 11736, 40, 11736, 40;
74.31619, 11696, 10824, 11736, 32, 11736, 40;
74.31619, 11688, 10336, 11736, 40, 11736, 40;
74.31619, 11688, 10336, 11736, 40, 11736, 40;
74.31619, 11688, 10536, 11736, 32, 11736, 40;
74.31619, 11696, 10016, 11736, 32, 11736, 40;
74.31619, 11696, 10016, 11736, 32, 11736, 40;
74.52571, 11688, 10392, 11736, 40, 11736, 40;
74.52571, 11688, 10392, 11736, 40, 11736, 40;
74.52571, 11688, 10688, 11736, 32, 11736, 40;
74.52571, 11688, 10640, 11736, 40, 11736, 40;
74.52571, 11688, 10336, 11736, 40, 11736, 40;
74.52571, 11688, 10336, 11736, 40, 11736, 40;
74.52571, 11688, 10944, 11736, 32, 11736, 40;
74.52571, 11688, 10944, 11736, 32, 11736, 40;
74.52571, 11696, 10296, 11736, 40, 11736, 40;
74.52571, 11688, 10088, 11736, 32, 11736, 40;
74.52571, 11688, 10088, 11736, 32, 11736, 40;
74.52571, 11688, 10320, 11736, 32, 11736, 40;
74.52571, 11688, 10576, 11736, 32, 11736, 40;
74.52571, 11696, 10576, 11736, 32, 11736, 40;
74.52571, 11688, 10344, 11736, 40, 11736, 40;
74.52571, 11688, 10344, 11736, 40, 11736, 40;
74.94476, 11688, 10424, 11736, 32, 11736, 40;
74.94476, 11688, 10472, 11736, 32, 11736, 40;
74.94476, 11688, 10472, 11736, 40, 11736, 40;
74.94476, 11688, 10432, 11736, 32, 11736, 40;
74.94476, 11688, 10696, 11736, 32, 11736, 40;
74.94476, 11688, 10696, 11736, 40, 11736, 40;
74.94476, 11688, 10680, 11736, 32, 11736, 40;
74.94476, 11688, 10680, 11736, 32, 11736, 40;
74.94476, 11688, 10224, 11736, 32, 11736, 40;
74.94476, 11688, 10576, 11736, 32, 11736, 40;
74.94476, 11688, 10576, 11736, 40, 11736, 40;
74.94476, 11688, 10432, 11736, 32, 11736, 40;
74.94476, 11688, 10064, 11736, 40, 11736, 40;
74.94476, 11688, 10064, 11736, 40, 11736, 40;
74.94476, 11688, 10624, 11736, 32, 11736, 40;
75.36381, 11688, 10240, 11736, 32, 11736, 40;
75.36381, 11688, 10240, 11736, 32, 11736, 40;
75.36381, 11688, 10680, 11736, 32, 11736, 40;
75.36381, 11688, 10680, 11736, 32, 11736, 40;
75.36381, 11688, 11120, 11736, 32, 11736, 40;
75.36381, 11688, 10568, 11736, 32, 11736, 40;
75.36381, 11688, 10568, 11736, 40, 11736, 40;
75.36381, 11688, 10320, 11736, 32, 11736, 40;
75.36381, 11688, 10752, 11736, 32, 11736, 40;
75.36381, 11688, 10752, 11736, 32, 11736, 32;
75.36381, 11688, 10400, 11736, 40, 11736, 32;
75.36381, 11688, 10400, 11736, 40, 11736, 40;
75.36381, 11688, 10560, 11736, 40, 11736, 40;
75.36381, 11688, 10928, 11736, 40, 11736, 40;
75.36381, 11688, 10928, 11736, 40, 11736, 40;
75.36381, 11688, 10360, 11736, 32, 11736, 40;
75.36381, 11688, 10360, 11736, 32, 11736, 40;
75.78286, 11688, 10688, 11736, 40, 11736, 40;
75.78286, 11688, 10528, 11736, 40, 11736, 40;
75.78286, 11688, 10528, 11736, 40, 11736, 40;
75.78286, 11688, 10408, 11736, 32, 11736, 40;
75.78286, 11688, 10704, 11736, 32, 11736, 40;
75.78286, 11688, 10704, 11736, 32, 11736, 40;
75.78286, 11688, 10600, 11736, 32, 11736, 40;
75.78286, 11688, 10776, 11736, 32, 11736, 40;
75.78286, 11688, 10776, 11736, 32, 11736, 40;
75.78286, 11688, 10848, 11736, 32, 11736, 32;
75.78286, 11688, 10592, 11736, 32, 11736, 32;
75.78286, 11688, 10592, 11736, 32, 11736, 40;
75.78286, 11688, 10632, 11736, 40, 11736, 40;
75.78286, 11688, 10632, 11736, 40, 11736, 40;
75.78286, 11688, 10848, 11736, 40, 11736, 40;
76.20190, 11696, 10488, 11736, 40, 11736, 40;
76.20190, 11696, 10488, 11736, 32, 11736, 40;
76.20190, 11688, 10592, 11736, 32, 11736, 40;
76.20190, 11688, 11256, 11736, 32, 11736, 40;
76.20190, 11688, 11256, 11736, 32, 11736, 40;
76.20190, 11688, 11048, 11736, 32, 11736, 40;
76.20190, 11688, 11048, 11736, 32, 11736, 40;
76.20190, 11688, 10672, 11736, 40, 11736, 40;
76.20190, 11688, 11064, 11736, 40, 11736, 40;
76.20190, 11688, 11064, 11736, 32, 11736, 40;
76.20190, 11688, 10968, 11736, 32, 11736, 40;
76.20190, 11688, 10968, 11736, 32, 11736, 40;
76.20190, 11688, 10384, 11736, 32, 11736, 40;
76.20190, 11688, 10744, 11736, 32, 11736, 40;
76.20190, 11688, 10488, 11736, 32, 11736, 40;
76.20190, 11688, 10488, 11736, 40, 11736, 40;
76.30667, 11688, 10840, 11736, 32, 11736, 40;
76.30667, 11688, 10840, 11736, 32, 11736, 40;
76.30667, 11688, 11112, 11736, 32, 11736, 40;
76.30667, 11688, 10736, 11736, 32, 11736, 40;
76.30667, 11688, 10736, 11736, 40, 11736, 40;
76.30667, 11688, 10776, 11736, 32, 11736, 40;
76.30667, 11688, 10520, 11736, 32, 11736, 40;
76.30667, 11688, 10520, 11736, 32, 11736, 40;
76.30667, 11688, 10744, 11736, 32, 11736, 40;
76.30667, 11688, 10744, 11736, 32, 11736, 40;
76.30667, 11688, 10888, 11736, 32, 11736, 40;
76.30667, 11688, 10912, 11736, 32, 11736, 40;
76.30667, 11688, 10912, 11736, 40, 11736, 40;
76.30667, 11688, 10376, 11736, 32, 11736, 40;
76.30667, 11688, 10376, 11736, 32, 11736, 40;
76.30667, 11688, 10424, 11736, 32, 11728, 40;
76.30667, 11688, 10552, 11736, 32, 11728, 40;
76.62096, 11688, 10552, 11736, 40, 11736, 40;
76.62096, 11696, 10800, 11736, 40, 11736, 40;
76.62096, 11696, 10992, 11736, 40, 11736, 40;
76.62096, 11688, 10992, 11736, 40, 11736, 40;
76.62096, 11688, 11008, 11736, 32, 11736, 40;
76.62096, 11688, 11008, 11736, 32, 11736, 40;
76.62096, 11688, 10688, 11736, 32, 11736, 40;
76.62096, 11688, 11056, 11736, 40, 11736, 40;
76.62096, 11688, 11128, 11736, 40, 11736, 40;
76.62096, 11688, 11128, 11736, 32, 11736, 40;
76.62096, 11688, 10504, 11736, 32, 11736, 40;
76.62096, 11688, 10504, 11736, 32, 11736, 40;
76.62096, 11688, 10400, 11736, 32, 11736, 40;
76.62096, 11688, 10752, 11736, 32, 11736, 40;
76.62096, 11688, 10752, 11736, 32, 11736, 40;
77.24953, 11696, 10800, 11736, 32, 11736, 40;
77.24953, 11696, 10768, 11736, 32, 11728, 40;
77.24953, 11688, 10768, 11736, 40, 11728, 40;
77.24953, 11688, 11376, 11736, 40, 11728, 40;
77.24953, 11688, 11376, 11736, 40, 11736, 40;
77.24953, 11688, 10696, 11736, 40, 11736, 40;
77.24953, 11688, 11264, 11736, 40, 11736, 40;
77.24953, 11688, 11264, 11736, 32, 11736, 40;
77.24953, 11688, 11160, 11736, 40, 11736, 40;
77.24953, 11688, 11160, 11736, 40, 11736, 40;
77.24953, 11688, 10728, 11736, 32, 11736, 40;
77.24953, 11688, 10552, 11736, 32, 11736, 40;
77.24953, 11688, 10552, 11736, 40, 11736, 40;
77.24953, 11688, 10600, 11736, 32, 11736, 40;
77.24953, 11688, 10832, 11736, 32, 11736, 40;
77.24953, 11688, 10832, 11736, 40, 11736, 40;
77.24953, 11688, 10704, 11736, 40, 11736, 40;
77.35429, 11688, 10616, 11736, 40, 11736, 40;
77.35429, 11688, 10616, 11736, 32, 11736, 40;
77.35429, 11688, 10792, 11736, 32, 11736, 40;
77.35429, 11688, 10904, 11736, 32, 11736, 40;
77.35429, 11688, 10904, 11736, 40, 11736, 40;
77.35429, 11688, 10656, 11736, 32, 11736, 40;
77.35429, 11688, 10656, 11736, 32, 11736, 40;
77.35429, 11688, 11360, 11736, 32, 11736, 40;
77.35429, 11688, 10648, 11736, 32, 11728, 40;
77.35429, 11688, 10648, 11736, 32, 11736, 40;
77.35429, 11688, 10576, 11736, 32, 11736, 40;
77.35429, 11688, 10576, 11736, 32, 11728, 40;
77.35429, 11688, 10856, 11736, 40, 11728, 40;
77.35429, 11688, 10688, 11736, 40, 11728, 40;
77.35429, 11688, 10688, 11736, 40, 11736, 40;
77.98286, 11688, 10392, 11736, 40, 11736, 40;
77.98286, 11688, 11808, 11736, 40, 11736, 40;
77.98286, 11688, 11808, 11736, 40, 11736, 40;
77.98286, 11688, 10760, 11736, 32, 11736, 40;
77.98286, 11688, 10760, 11736, 32, 11728, 40;
77.98286, 11680, 11384, 11736, 40, 11736, 40;
77.98286, 11688, 10912, 11736, 40, 11736, 40;
77.98286, 11688, 10912, 11728, 32, 11736, 40;
77.98286, 11688, 10744, 11736, 32, 11736, 40;
77.98286, 11688, 10648, 11736, 40, 11728, 40;
77.98286, 11688, 10648, 11736, 40, 11728, 40;
77.98286, 11688, 10904, 11736, 32, 11736, 40;
77.98286, 11688, 10512, 11736, 32, 11736, 40;
77.98286, 11688, 10512, 11736, 40, 11736, 40;
77.98286, 11688, 10704, 11736, 40, 11736, 40;
77.98286, 11688, 10704, 11736, 40, 11736, 40;
78.29714, 11688, 10832, 11736, 40, 11736, 40;
78.29714, 11688, 11376, 11736, 32, 11736, 40;
78.29714, 11688, 11376, 11736, 32, 11736, 40;
78.29714, 11680, 10928, 11736, 40, 11736, 40;
78.29714, 11680, 10696, 11736, 40, 11736, 40;
78.29714, 11688, 10696, 11736, 32, 11728, 40;
78.29714, 11688, 10536, 11736, 40, 11728, 40;
78.29714, 11688, 10536, 11736, 40, 11736, 40;
78.29714, 11688, 10976, 11736, 40, 11728, 40;
78.29714, 11688, 10952, 11736, 40, 11728, 40;
78.29714, 11688, 10952, 11736, 40, 11736, 40;
78.29714, 11688, 11176, 11736, 40, 11736, 40;
78.29714, 11688, 11672, 11736, 40, 11736, 40;
78.29714, 11688, 11672, 11736, 32, 11736, 40;
78.29714, 11688, 11248, 11736, 40, 11736, 40;
78.29714, 11688, 11248, 11736, 40, 11728, 40;
78.92572, 11688, 10464, 11736, 40, 11728, 40;
78.92572, 11688, 10808, 11736, 40, 11736, 40;
78.92572, 11688, 11416, 11736, 32, 11728, 40;
78.92572, 11688, 11416, 11736, 32, 11728, 40;
78.92572, 11688, 10488, 11736, 40, 11728, 40;
78.92572, 11688, 10488, 11736, 40, 11736, 40;
78.92572, 11680, 10704, 11736, 32, 11736, 40;
78.92572, 11688, 11240, 11736, 32, 11728, 40;
78.92572, 11688, 11240, 11728, 40, 11736, 40;
78.92572, 11688, 10992, 11736, 32, 11736, 40;
78.92572, 11688, 10992, 11736, 32, 11728, 40;
78.92572, 11688, 11344, 11736, 40, 11728, 40;
78.92572, 11688, 10784, 11736, 40, 11728, 40;
78.92572, 11688, 10784, 11736, 40, 11736, 40;
78.92572, 11688, 10424, 11736, 40, 11736, 40;
78.92572, 11688, 11192, 11736, 40, 11736, 40;
79.03048, 11688, 11192, 11736, 40, 11728, 40;
79.03048, 11688, 10824, 11736, 32, 11728, 40;
79.03048, 11688, 10824, 11736, 32, 11736, 40;
79.03048, 11680, 10592, 11728, 40, 11728, 40;
79.03048, 11688, 11224, 11728, 40, 11728, 40;
79.03048, 11688, 11224, 11736, 32, 11736, 40;
79.03048, 11688, 11032, 11736, 40, 11736, 40;
79.03048, 11688, 11032, 11736, 40, 11736, 40;
79.03048, 11688, 11136, 11736, 32, 11736, 40;
79.03048, 11680, 10616, 11736, 40, 11736, 40;
79.03048, 11680, 10616, 11736, 40, 11736, 40;
79.03048, 11688, 11472, 11736, 40, 11736, 40;
79.03048, 11688, 10688, 11736, 32, 11736, 40;
79.03048, 11688, 11336, 11736, 32, 11736, 40;
79.03048, 11688, 11336, 11736, 32, 11728, 40;
79.03048, 11688, 11152, 11736, 32, 11728, 40;
79.76381, 11688, 11152, 11736, 40, 11736, 40;
79.76381, 11688, 11152, 11736, 32, 11736, 40;
79.76381, 11688, 11256, 11736, 32, 11728, 40;
79.76381, 11688, 11256, 11728, 32, 11728, 40;
79.76381, 11680, 11016, 11728, 32, 11728, 40;
79.76381, 11680, 11016, 11736, 32, 11728, 40;
79.76381, 11688, 11568, 11736, 32, 11736, 40;
79.76381, 11688, 11152, 11736, 32, 11736, 40;
79.76381, 11688, 11152, 11736, 32, 11728, 40;
79.76381, 11680, 11184, 11736, 40, 11728, 40;
79.76381, 11680, 10936, 11736, 40, 11736, 40;
79.76381, 11688, 10936, 11736, 32, 11736, 40;
79.76381, 11688, 11328, 11736, 40, 11736, 40;
79.76381, 11688, 11328, 11736, 40, 11736, 40;
79.76381, 11688, 11608, 11736, 32, 11736, 40;
79.76381, 11688, 11320, 11736, 32, 11736, 40;
79.76381, 11688, 11320, 11736, 40, 11736, 40;
80.18286, 11688, 11032, 11736, 40, 11736, 40;
80.18286, 11688, 11032, 11736, 40, 11728, 40;
80.18286, 11680, 11504, 11736, 32, 11728, 40;
80.18286, 11688, 11432, 11736, 32, 11728, 40;
80.18286, 11680, 11000, 11736, 32, 11736, 40;
80.18286, 11680, 11000, 11728, 40, 11728, 40;
80.18286, 11680, 11056, 11736, 32, 11728, 40;
80.18286, 11680, 11056, 11736, 32, 11728, 40;
80.18286, 11688, 11096, 11736, 40, 11736, 40;
80.18286, 11688, 11048, 11736, 40, 11736, 40;
80.18286, 11688, 11048, 11736, 40, 11736, 40;
80.18286, 11688, 11352, 11736, 32, 11736, 40;
80.18286, 11688, 11512, 11736, 32, 11728, 40;
80.18286, 11688, 11512, 11736, 32, 11736, 40;
80.18286, 11688, 11200, 11736, 32, 11736, 40;
80.81143, 11688, 11200, 11728, 32, 11736, 40;
80.81143, 11680, 10656, 11728, 32, 11728, 40;
80.81143, 11680, 11224, 11728, 32, 11728, 40;
80.81143, 11680, 11224, 11728, 32, 11728, 40;
80.81143, 11688, 11424, 11736, 40, 11728, 40;
80.81143, 11688, 11424, 11736, 40, 11736, 40;
80.81143, 11688, 11464, 11736, 32, 11728, 40;
80.81143, 11688, 11168, 11736, 32, 11728, 40;
80.81143, 11688, 11168, 11728, 32, 11728, 40;
80.81143, 11680, 10872, 11736, 32, 11728, 40;
80.81143, 11680, 11384, 11736, 32, 11736, 40;
80.81143, 11688, 11384, 11736, 32, 11736, 40;
80.81143, 11680, 11096, 11736, 32, 11736, 40;
80.81143, 11688, 10656, 11728, 32, 11728, 40;
80.81143, 11688, 10656, 11736, 40, 11728, 40;
80.81143, 11688, 11216, 11736, 32, 11728, 40;
81.02095, 11688, 10984, 11736, 32, 11728, 40;
81.02095, 11688, 10984, 11736, 32, 11736, 40;
81.02095, 11688, 11544, 11736, 32, 11736, 40;
81.02095, 11688, 11544, 11736, 32, 11728, 40;
81.02095, 11680, 10896, 11736, 40, 11736, 40;
81.02095, 11688, 11464, 11736, 40, 11736, 40;
81.02095, 11688, 11464, 11728, 32, 11728, 40;
81.02095, 11688, 10832, 11736, 32, 11728, 40;
81.02095, 11688, 10824, 11736, 32, 11728, 40;
81.02095, 11680, 10824, 11736, 40, 11728, 40;
81.02095, 11688, 11568, 11736, 40, 11728, 40;
81.02095, 11688, 11568, 11728, 40, 11728, 40;
81.02095, 11688, 10672, 11736, 40, 11728, 40;
81.02095, 11688, 10896, 11736, 40, 11728, 40;
81.02095, 11680, 10896, 11728, 32, 11736, 40;
81.02095, 11688, 12024, 11736, 40, 11736, 40;
81.02095, 11688, 12024, 11736, 40, 11728, 40;
81.33524, 11688, 10608, 11736, 32, 11736, 40;
81.33524, 11680, 10992, 11736, 32, 11736, 40;
81.33524, 11680, 10992, 11736, 32, 11736, 40;
81.33524, 11688, 11416, 11728, 32, 11736, 40;
81.33524, 11688, 10960, 11728, 32, 11728, 40;
81.33524, 11688, 10960, 11736, 32, 11728, 40;
81.33524, 11688, 10984, 11736, 40, 11736, 40;
81.33524, 11680, 11080, 11736, 40, 11736, 40;
81.33524, 11680, 11080, 11736, 32, 11736, 40;
81.33524, 11688, 11104, 11736, 40, 11736, 40;
81.33524, 11688, 11560, 11736, 40, 11736, 40;
81.33524, 11688, 11560, 11736, 40, 11736, 40;
81.33524, 11688, 11448, 11736, 40, 11736, 40;
81.33524, 11688, 11448, 11736, 40, 11728, 40;
81.33524, 11688, 10648, 11736, 40, 11728, 40;
81.33524, 11688, 11008, 11736, 40, 11728, 40;
81.85905, 11688, 11008, 11736, 32, 11736, 40;
81.85905, 11688, 11000, 11736, 32, 11736, 40;
81.85905, 11688, 11000, 11736, 32, 11728, 40;
81.85905, 11680, 10944, 11736, 40, 11736, 40;
81.85905, 11680, 11408, 11736, 40, 11736, 40;
81.85905, 11680, 11408, 11736, 40, 11736, 40;
81.85905, 11680, 11136, 11736, 32, 11736, 40;
81.85905, 11680, 10664, 11736, 32, 11736, 40;
81.85905, 11680, 10664, 11736, 32, 11736, 40;
81.85905, 11680, 11400, 11736, 32, 11736, 40;
81.85905, 11680, 11400, 11736, 32, 11728, 40;
81.85905, 11680, 10800, 11728, 32, 11728, 40;
81.85905, 11680, 10576, 11728, 32, 11728, 40;
81.85905, 11680, 10576, 11736, 32, 11728, 40;
81.85905, 11688, 10912, 11736, 32, 11736, 40;
82.38286, 11688, 10960, 11736, 32, 11736, 40;
82.38286, 11688, 10960, 11736, 32, 11728, 40;
82.38286, 11680, 11112, 11736, 32, 11728, 40;
82.38286, 11688, 12056, 11736, 32, 11728, 40;
82.38286, 11688, 12056, 11728, 40, 11728, 40;
82.38286, 11688, 11984, 11736, 32, 11728, 40;
82.38286, 11688, 11136, 11736, 32, 11728, 40;
82.38286, 11680, 11136, 11736, 40, 11728, 40;
82.38286, 11680, 11032, 11736, 40, 11728, 40;
82.38286, 11680, 11032, 11736, 40, 11728, 40;
82.38286, 11688, 11144, 11728, 32, 11728, 40;
82.38286, 11688, 11544, 11728, 32, 11736, 40;
82.38286, 11688, 11544, 11736, 40, 11736, 40;
82.38286, 11680, 11120, 11736, 40, 11736, 40;
82.38286, 11680, 11120, 11736, 40, 11728, 40;
82.38286, 11688, 11160, 11728, 40, 11736, 40;
82.38286, 11688, 11328, 11728, 40, 11736, 40;
82.80190, 11688, 11328, 11736, 40, 11728, 40;
82.80190, 11680, 10592, 11736, 32, 11728, 40;
82.80190, 11680, 11216, 11736, 32, 11728, 40;
82.80190, 11688, 11216, 11728, 32, 11736, 40;
82.80190, 11688, 11056, 11728, 40, 11736, 40;
82.80190, 11688, 11056, 11736, 40, 11728, 40;
82.80190, 11688, 11288, 11728, 32, 11728, 40;
82.80190, 11680, 11848, 11736, 40, 11728, 40;
82.80190, 11680, 11256, 11736, 40, 11728, 40;
82.80190, 11688, 11256, 11728, 32, 11736, 40;
82.80190, 11680, 11232, 11728, 32, 11736, 40;
82.80190, 11680, 11232, 11736, 32, 11728, 40;
82.80190, 11688, 11200, 11728, 40, 11728, 40;
82.80190, 11680, 11120, 11728, 40, 11736, 40;
82.80190, 11680, 11120, 11736, 32, 11728, 40;
82.80190, 11688, 10664, 11736, 32, 11728, 40;
83.01143, 11688, 10664, 11736, 32, 11736, 40;
83.01143, 11680, 11088, 11736, 32, 11728, 40;
83.01143, 11688, 10760, 11736, 32, 11728, 40;
83.01143, 11688, 10760, 11728, 32, 11728, 40;
83.01143, 11680, 10944, 11728, 32, 11728, 40;
83.01143, 11680, 11480, 11728, 32, 11728, 40;
83.01143, 11680, 11480, 11728, 32, 11736, 40;
83.01143, 11688, 10952, 11728, 40, 11736, 40;
83.01143, 11688, 10952, 11728, 40, 11728, 40;
83.01143, 11680, 11104, 11736, 32, 11728, 40;
83.01143, 11688, 11208, 11736, 32, 11728, 40;
83.01143, 11688, 11208, 11736, 32, 11728, 40;
83.01143, 11688, 10760, 11728, 40, 11728, 40;
83.01143, 11688, 10888, 11728, 40, 11736, 40;
83.01143, 11680, 10888, 11728, 40, 11728, 40;
83.01143, 11688, 11256, 11728, 32, 11728, 40;
83.32571, 11688, 11432, 11736, 32, 11728, 40;
83.32571, 11688, 11432, 11728, 32, 11736, 40;
83.32571, 11688, 11032, 11736, 40, 11736, 40;
83.32571, 11688, 11056, 11736, 40, 11736, 40;
83.32571, 11688, 11056, 11736, 32, 11728, 40;
83.32571, 11688, 11456, 11736, 32, 11728, 40;
83.32571, 11688, 11456, 11736, 32, 11728, 40;
83.32571, 11688, 11736, 11736, 40, 11728, 40;
83.32571, 11688, 10984, 11736, 40, 11728, 40;
83.32571, 11688, 10984, 11736, 32, 11736, 40;
83.32571, 11680, 11296, 11736, 40, 11736, 40;
83.32571, 11680, 11296, 11736, 40, 11728, 48;
83.32571, 11680, 11800, 11736, 40, 11736, 40;
83.32571, 11680, 11208, 11736, 40, 11736, 40;
83.32571, 11680, 11208, 11736, 32, 11728, 40;
83.32571, 11688, 11568, 11736, 32, 11728, 40;
83.74477, 11688, 11032, 11736, 32, 11728, 40;
83.74477, 11688, 11032, 11736, 40, 11728, 40;
83.74477, 11680, 10792, 11736, 40, 11728, 40;
83.74477, 11680, 10792, 11728, 40, 11728, 40;
83.74477, 11680, 10912, 11728, 32, 11728, 40;
83.74477, 11688, 11248, 11728, 32, 11728, 40;
83.74477, 11688, 11248, 11736, 32, 11736, 40;
83.74477, 11688, 11008, 11728, 32, 11736, 40;
83.74477, 11688, 11008, 11728, 32, 11736, 40;
83.74477, 11688, 11344, 11736, 40, 11728, 40;
83.74477, 11688, 11152, 11728, 40, 11728, 40;
83.74477, 11688, 10592, 11728, 40, 11728, 40;
83.74477, 11688, 10592, 11728, 40, 11728, 40;
83.74477, 11680, 11208, 11736, 32, 11728, 40;
83.74477, 11680, 11208, 11736, 32, 11736, 40;
83.74477, 11688, 11208, 11736, 40, 11736, 40;
84.05905, 11688, 10752, 11736, 40, 11736, 40;
84.05905, 11688, 10752, 11736, 40, 11728, 40;
84.05905, 11688, 11488, 11736, 40, 11728, 40;
84.05905, 11688, 11000, 11736, 40, 11728, 40;
84.05905, 11688, 11000, 11728, 40, 11728, 40;
84.05905, 11688, 11496, 11728, 32, 11728, 40;
84.05905, 11688, 11496, 11736, 32, 11728, 40;
84.05905, 11688, 11800, 11736, 32, 11728, 40;
84.05905, 11680, 11656, 11736, 32, 11728, 40;
84.05905, 11680, 11656, 11736, 40, 11736, 40;
84.05905, 11680, 11480, 11728, 32, 11736, 40;
84.05905, 11680, 11112, 11728, 32, 11736, 40;
84.05905, 11680, 11112, 11728, 32, 11736, 40;
84.05905, 11688, 11184, 11728, 32, 11736, 40;
84.05905, 11688, 11184, 11736, 32, 11728, 40;
84.05905, 11688, 11008, 11736, 32, 11728, 48;
84.05905, 11688, 11216, 11736, 32, 11728, 48;
84.37334, 11680, 11216, 11728, 32, 11736, 40;
84.37334, 11688, 11240, 11728, 40, 11736, 40;
84.37334, 11688, 11136, 11728, 40, 11736, 40;
84.37334, 11688, 11136, 11728, 40, 11728, 40;
84.37334, 11688, 11080, 11728, 32, 11728, 40;
84.37334, 11688, 11760, 11728, 32, 11728, 40;
84.37334, 11680, 11760, 11736, 32, 11736, 40;
84.37334, 11680, 11224, 11736, 40, 11736, 40;
84.37334, 11680, 11224, 11728, 40, 11736, 40;
84.37334, 11688, 11296, 11728, 32, 11728, 40;
84.37334, 11680, 11624, 11728, 32, 11728, 40;
84.37334, 11680, 11624, 11728, 32, 11736, 40;
84.37334, 11688, 11040, 11728, 32, 11736, 40;
84.37334, 11688, 10984, 11728, 32, 11728, 40;
84.37334, 11688, 10984, 11736, 40, 11728, 40;
84.37334, 11680, 11432, 11736, 32, 11728, 40;
84.47810, 11680, 11432, 11728, 32, 11728, 40;
84.47810, 11688, 11112, 11728, 40, 11728, 40;
84.47810, 11680, 11280, 11728, 40, 11736, 40;
84.47810, 11680, 11280, 11728, 32, 11728, 40;
84.47810, 11680, 11168, 11728, 32, 11728, 40;
84.47810, 11680, 11168, 11728, 32, 11728, 40;
84.47810, 11688, 10936, 11736, 32, 11728, 40;
84.47810, 11680, 10992, 11736, 32, 11728, 40;
84.47810, 11680, 10992, 11728, 32, 11728, 40;
84.47810, 11680, 11096, 11728, 40, 11728, 40;
84.47810, 11688, 11256, 11728, 32, 11728, 40;
84.47810, 11688, 11256, 11736, 32, 11728, 64;
84.47810, 11680, 11120, 11728, 32, 11728, 40;
84.47810, 11688, 11168, 11728, 32, 11728, 40;
84.47810, 11688, 11168, 11736, 32, 11728, 40;
84.47810, 11688, 11272, 11728, 40, 11728, 40;
84.47810, 11688, 10816, 11728, 40, 11736, 40;
84.47810, 11688, 10816, 11736, 32, 11728, 40;
84.47810, 11680, 11560, 11736, 32, 11728, 40;
84.47810, 11680, 11560, 11728, 32, 11728, 40;
84.47810, 11688, 11064, 11728, 32, 11736, 40;
84.47810, 11688, 11296, 11728, 32, 11736, 40;
84.47810, 11688, 11296, 11736, 40, 11736, 40;
84.47810, 11688, 11104, 11728, 32, 11736, 40;
84.47810, 11688, 11104, 11728, 32, 11728, 40;
84.47810, 11688, 11168, 11728, 32, 11736, 40;
84.47810, 11688, 11032, 11728, 40, 11736, 40;
84.47810, 11688, 11032, 11736, 40, 11728, 40;
84.47810, 11680, 11040, 11736, 40, 11728, 40;
84.47810, 11680, 11224, 11736, 40, 11736, 40;
84.47810, 11688, 11224, 11736, 40, 11728, 40;
84.47810, 11680, 11488, 11736, 32, 11728, 40;
84.89714, 11680, 11488, 11736, 32, 11728, 40;
84.89714, 11688, 11032, 11728, 32, 11728, 40;
84.89714, 11680, 11592, 11728, 32, 11728, 40;
84.89714, 11680, 11216, 11728, 32, 11728, 40;
84.89714, 11680, 11216, 11728, 32, 11728, 40;
84.89714, 11688, 11960, 11728, 40, 11728, 40;
84.89714, 11688, 11960, 11736, 40, 11728, 40;
84.89714, 11688, 11104, 11736, 32, 11728, 40;
84.89714, 11680, 11256, 11736, 32, 11728, 40;
84.89714, 11680, 11256, 11736, 32, 11728, 40;
84.89714, 11680, 11328, 11736, 40, 11728, 40;
84.89714, 11680, 11184, 11736, 40, 11728, 40;
84.89714, 11680, 11184, 11736, 40, 11728, 32;
84.89714, 11680, 11328, 11736, 32, 11728, 32;
84.89714, 11680, 11328, 11736, 32, 11728, 40;
84.89714, 11680, 11312, 11736, 40, 11728, 40;
85.00191, 11688, 11976, 11736, 40, 11728, 40;
85.00191, 11688, 11976, 11728, 32, 11728, 40;
85.00191, 11688, 10792, 11728, 32, 11728, 40;
85.00191, 11688, 10792, 11728, 32, 11736, 40;
85.00191, 11688, 11480, 11728, 40, 11728, 40;
85.00191, 11680, 11512, 11728, 40, 11728, 40;
85.00191, 11680, 11512, 11728, 32, 11728, 40;
85.00191, 11688, 11424, 11728, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 32, 11728, 40;
85.00191, 11680, 11240, 11728, 32, 11728, 40;
85.00191, 11688, 11456, 11728, 32, 11728, 40;
85.00191, 11688, 11456, 11736, 32, 11728, 40;
85.00191, 11680, 11000, 11736, 40, 11728, 40;
85.00191, 11688, 11456, 11728, 40, 11728, 40;
85.00191, 11688, 11112, 11728, 40, 11728, 40;
85.00191, 11688, 11112, 11728, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 32, 11728, 40;
85.00191, 11680, 11024, 11736, 32, 11736, 40;
85.00191, 11688, 11544, 11736, 32, 11736, 40;
85.00191, 11688, 11544, 11728, 40, 11728, 40;
85.00191, 11688, 10632, 11728, 40, 11728, 40;
85.00191, 11688, 10632, 11728, 40, 11728, 40;
85.00191, 11680, 11184, 11736, 40, 11728, 40;
85.00191, 11688, 11456, 11736, 32, 11728, 40;
85.00191, 11688, 11456, 11728, 32, 11728, 40;
85.00191, 11688, 11664, 11736, 40, 11728, 40;
85.00191, 11688, 10840, 11736, 40, 11728, 40;
85.00191, 11680, 10840, 11736, 32, 11728, 48;
85.00191, 11680, 11528, 11736, 40, 11728, 48;
85.00191, 11680, 11528, 11736, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 40, 11728, 40;
85.00191, 11680, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 11344, 11736, 40, 11728, 40;
85.00191, 11688, 11280, 11736, 40, 11728, 40;
85.00191, 11688, 10976, 11736, 40, 11728, 40;
85.00191, 11688, 10976, 11736, 32, 11728, 40;
85.00191, 11680, 11080, 11736, 40, 11728, 40;
85.00191, 11680, 11632, 11736, 40, 11728, 40;
85.00191, 11680, 11632, 11728, 32, 11728, 40;
85.00191, 11688, 10864, 11728, 32, 11728, 40;
85.00191, 11688, 10704, 11728, 32, 11736, 40;
85.00191, 11680, 10704, 11728, 32, 11736, 40;
85.00191, 11680, 11656, 11728, 40, 11736, 40;
85.00191, 11680, 11656, 11736, 40, 11728, 40;
85.00191, 11680, 11232, 11736, 32, 11728, 40;
85.00191, 11680, 10976, 11736, 32, 11728, 40;
85.00191, 11688, 10976, 11736, 32, 11736, 40;
85.00191, 11680, 11072, 11736, 40, 11736, 40;
85.00191, 11680, 11072, 11736, 40, 11728, 40;
85.00191, 11680, 11464, 11728, 32, 11736, 40;
85.00191, 11680, 10936, 11728, 32, 11736, 40;
85.00191, 11680, 10936, 11736, 32, 11728, 40;
85.00191, 11680, 11456, 11736, 32, 11728, 40;
85.00191, 11680, 11280, 11736, 32, 11736, 40;
85.00191, 11688, 11280, 11728, 32, 11736, 40;
85.00191, 11680, 11184, 11728, 32, 11736, 40;
85.00191, 11680, 11184, 11736, 32, 11728, 40;
85.00191, 11680, 11344, 11736, 32, 11728, 40;
85.00191, 11688, 11560, 11736, 32, 11728, 40;
85.00191, 11688, 11560, 11728, 32, 11728, 40;
85.00191, 11688, 11248, 11736, 40, 11728, 40;
85.00191, 11680, 11200, 11736, 40, 11728, 40;
85.00191, 11680, 11200, 11736, 40, 11728, 40;
85.00191, 11688, 11392, 11736, 32, 11728, 40;
85.00191, 11680, 11096, 11736, 32, 11728, 40;
85.00191, 11680, 11096, 11728, 32, 11728, 40;
85.00191, 11688, 11432, 11736, 40, 11728, 40;
85.00191, 11688, 11432, 11736, 40, 11728, 40;
85.00191, 11680, 10792, 11728, 32, 11728, 32;
85.00191, 11680, 11224, 11728, 32, 11728, 32;
85.00191, 11680, 11224, 11736, 32, 11728, 40;
85.00191, 11680, 11384, 11736, 32, 11728, 40;
85.00191, 11680, 11536, 11736, 32, 11728, 40;
85.00191, 11688, 11536, 11736, 40, 11728, 40;
85.00191, 11688, 10744, 11736, 40, 11728, 40;
85.00191, 11688, 10744, 11736, 40, 11728, 40;
85.00191, 11680, 11456, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11736, 40, 11728, 40;
85.00191, 11688, 11152, 11736, 40, 11728, 40;
85.00191, 11688, 11088, 11736, 40, 11728, 40;
85.00191, 11688, 11088, 11736, 32, 11728, 40;
85.00191, 11680, 11264, 11736, 32, 11728, 40;
85.00191, 11680, 11264, 11728, 32, 11728, 40;
85.00191, 11680, 11320, 11736, 32, 11728, 40;
85.00191, 11688, 10824, 11728, 40, 11728, 40;
85.00191, 11688, 10992, 11728, 40, 11728, 40;
85.00191, 11688, 10992, 11736, 32, 11728, 40;
85.00191, 11680, 11136, 11736, 40, 11728, 40;
85.00191, 11680, 11136, 11728, 40, 11728, 40;
85.00191, 11688, 11224, 11728, 32, 11728, 40;
85.00191, 11688, 10928, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11736, 40, 11728, 40;
85.00191, 11680, 11480, 11736, 32, 11728, 40;
85.00191, 11680, 11480, 11736, 32, 11728, 40;
85.00191, 11688, 10800, 11736, 40, 11736, 40;
85.00191, 11688, 11176, 11736, 40, 11736, 40;
85.00191, 11688, 11176, 11736, 32, 11728, 40;
85.00191, 11680, 11272, 11736, 40, 11728, 40;
85.00191, 11680, 11336, 11736, 40, 11728, 40;
85.00191, 11680, 11336, 11728, 32, 11728, 40;
85.00191, 11688, 10632, 11728, 40, 11728, 40;
85.00191, 11688, 10632, 11736, 40, 11728, 40;
85.00191, 11688, 11128, 11736, 32, 11728, 40;
85.00191, 11688, 11152, 11736, 32, 11728, 40;
85.00191, 11688, 11152, 11736, 40, 11728, 40;
85.00191, 11680, 11312, 11736, 32, 11728, 40;
85.00191, 11680, 11312, 11736, 32, 11728, 40;
85.00191, 11688, 11240, 11736, 40, 11728, 40;
85.00191, 11688, 10776, 11736, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 32, 11728, 40;
85.00191, 11688, 11320, 11736, 40, 11728, 40;
85.00191, 11680, 11424, 11728, 40, 11728, 40;
85.00191, 11680, 11424, 11728, 40, 11728, 40;
85.00191, 11688, 11200, 11736, 40, 11728, 40;
85.00191, 11688, 10592, 11736, 40, 11728, 40;
85.00191, 11688, 10592, 11736, 32, 11728, 40;
85.00191, 11688, 11496, 11728, 32, 11728, 40;
85.00191, 11688, 11320, 11728, 32, 11728, 40;
85.00191, 11688, 11320, 11728, 32, 11728, 40;
85.00191, 11688, 10808, 11728, 32, 11728, 40;
85.00191, 11688, 10808, 11736, 32, 11728, 40;
85.00191, 11688, 10464, 11736, 32, 11728, 48;
85.00191, 11688, 11544, 11736, 32, 11728, 48;
85.00191, 11688, 11544, 11728, 32, 11728, 48;
85.00191, 11680, 11360, 11736, 32, 11728, 48;
85.00191, 11680, 11448, 11736, 32, 11728, 56;
85.00191, 11680, 11448, 11728, 40, 11728, 56;
85.00191, 11688, 11304, 11728, 32, 11728, 56;
85.00191, 11688, 11304, 11736, 32, 11728, 56;
85.00191, 11680, 10856, 11728, 40, 11728, 56;
85.00191, 11680, 11176, 11728, 40, 11728, 56;
85.00191, 11688, 11176, 11736, 40, 11728, 56;
85.00191, 11680, 11216, 11736, 32, 11728, 56;
85.00191, 11680, 11216, 11736, 32, 11728, 48;
85.00191, 11688, 11176, 11736, 32, 11728, 48;
85.00191, 11680, 10936, 11728, 32, 11728, 56;
85.00191, 11680, 11208, 11728, 32, 11728, 56;
85.00191, 11688, 11208, 11728, 40, 11728, 48;
85.00191, 11680, 11144, 11728, 40, 11728, 48;
85.00191, 11680, 11144, 11728, 40, 11728, 56;
85.00191, 11688, 11712, 11736, 40, 11728, 48;
85.00191, 11688, 10992, 11736, 40, 11728, 48;
85.00191, 11688, 10992, 11736, 40, 11736, 48;
85.00191, 11688, 11216, 11736, 40, 11736, 56;
85.00191, 11688, 11352, 11736, 40, 11728, 56;
85.00191, 11680, 11352, 11736, 32, 11728, 48;
85.00191, 11688, 11336, 11736, 40, 11728, 48;
85.00191, 11688, 11336, 11728, 40, 11728, 56;
85.00191, 11688, 10976, 11736, 40, 11728, 56;
85.00191, 11688, 11248, 11736, 40, 11728, 56;
85.00191, 11688, 11248, 11728, 32, 11728, 64;
85.00191, 11680, 11000, 11736, 40, 11728, 64;
85.00191, 11680, 11000, 11736, 40, 11728, 56;
85.00191, 11680, 11408, 11728, 32, 11728, 64;
85.00191, 11688, 11048, 11728, 32, 11728, 64;
85.00191, 11688, 11048, 11728, 32, 11736, 48;
85.00191, 11688, 11040, 11728, 40, 11736, 56;
85.00191, 11688, 11064, 11728, 40, 11736, 56;
85.00191, 11680, 11064, 11736, 32, 11728, 56;
85.00191, 11680, 11296, 11736, 40, 11728, 48;
85.00191, 11688, 11080, 11736, 40, 11728, 48;
85.00191, 11688, 11080, 11728, 32, 11728, 56;
85.00191, 11680, 10856, 11728, 32, 11728, 56;
85.00191, 11680, 11384, 11728, 32, 11728, 56;
85.00191, 11688, 11384, 11736, 32, 11728, 56;
85.00191, 11688, 11008, 11736, 40, 11728, 56;
85.00191, 11688, 11008, 11736, 40, 11728, 56;
85.00191, 11688, 11312, 11736, 32, 11728, 56;
85.00191, 11680, 11064, 11736, 32, 11728, 56;
85.00191, 11680, 11064, 11736, 40, 11728, 104;
85.00191, 11680, 11264, 11728, 32, 11728, 104;
85.00191, 11680, 11016, 11728, 32, 11728, 104;
85.00191, 11680, 11016, 11736, 40, 11736, 48;
85.00191, 11688, 11472, 11736, 40, 11736, 48;
85.00191, 11688, 11472, 11728, 40, 11728, 40;
85.00191, 11688, 11056, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11736, 40;
85.00191, 11680, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11288, 11728, 32, 11728, 40;
85.00191, 11680, 11288, 11736, 32, 11728, 40;
85.00191, 11688, 11184, 11728, 32, 11728, 40;
85.00191, 11688, 10992, 11736, 40, 11728, 40;
85.00191, 11688, 11224, 11736, 40, 11728, 40;
85.00191, 11688, 11224, 11736, 40, 11728, 40;
85.00191, 11688, 11200, 11736, 32, 11728, 40;
85.00191, 11688, 11200, 11736, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 40, 11728, 40;
85.00191, 11688, 11464, 11728, 40, 11728, 40;
85.00191, 11688, 11464, 11736, 40, 11728, 40;
85.00191, 11688, 10896, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11736, 40;
85.00191, 11688, 11080, 11736, 40, 11728, 40;
85.00191, 11680, 11208, 11736, 32, 11728, 40;
85.00191, 11680, 11208, 11736, 32, 11728, 40;
85.00191, 11688, 11400, 11728, 40, 11728, 40;
85.00191, 11688, 10520, 11728, 40, 11728, 40;
85.00191, 11688, 10520, 11736, 32, 11728, 40;
85.00191, 11688, 11368, 11736, 32, 11728, 40;
85.00191, 11688, 11368, 11736, 32, 11728, 40;
85.00191, 11680, 11368, 11728, 32, 11728, 40;
85.00191, 11688, 11176, 11728, 32, 11728, 40;
85.00191, 11688, 11176, 11736, 40, 11728, 40;
85.00191, 11680, 10960, 11736, 32, 11728, 40;
85.00191, 11680, 11408, 11736, 32, 11736, 40;
85.00191, 11688, 11408, 11736, 32, 11736, 40;
85.00191, 11680, 11256, 11736, 32, 11736, 40;
85.00191, 11680, 11464, 11736, 32, 11728, 40;
85.00191, 11680, 11464, 11728, 32, 11728, 40;
85.00191, 11688, 11288, 11736, 40, 11728, 40;
85.00191, 11688, 11136, 11736, 40, 11728, 40;
85.00191, 11688, 11136, 11728, 32, 11728, 40;
85.00191, 11680, 10968, 11728, 32, 11728, 40;
85.00191, 11680, 10968, 11736, 32, 11728, 40;
85.00191, 11688, 11440, 11728, 32, 11728, 40;
85.00191, 11688, 11184, 11728, 32, 11728, 40;
85.00191, 11688, 11184, 11728, 40, 11736, 40;
85.00191, 11680, 11160, 11728, 40, 11736, 40;
85.00191, 11680, 11448, 11728, 40, 11728, 40;
85.00191, 11688, 11448, 11736, 32, 11736, 40;
85.00191, 11688, 10896, 11736, 32, 11736, 40;
85.00191, 11688, 10896, 11728, 32, 11728, 40;
85.00191, 11680, 11208, 11728, 32, 11728, 40;
85.00191, 11680, 11416, 11728, 32, 11728, 40;
85.00191, 11680, 11416, 11728, 32, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 11280, 11736, 40, 11728, 40;
85.00191, 11680, 11032, 11736, 40, 11728, 40;
85.00191, 11688, 11752, 11736, 40, 11728, 40;
85.00191, 11688, 11752, 11736, 32, 11728, 40;
85.00191, 11688, 11248, 11728, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 32, 11736, 40;
85.00191, 11680, 11072, 11728, 32, 11728, 40;
85.00191, 11680, 11264, 11736, 32, 11728, 40;
85.00191, 11688, 11344, 11736, 32, 11728, 40;
85.00191, 11688, 11344, 11728, 40, 11728, 40;
85.00191, 11688, 10936, 11736, 40, 11728, 40;
85.00191, 11688, 11120, 11736, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11144, 11728, 40, 11728, 40;
85.00191, 11688, 11760, 11728, 40, 11728, 40;
85.00191, 11688, 11760, 11728, 40, 11728, 40;
85.00191, 11688, 10832, 11728, 40, 11728, 40;
85.00191, 11688, 10832, 11728, 40, 11736, 40;
85.00191, 11688, 10784, 11736, 32, 11728, 40;
85.00191, 11680, 11440, 11736, 32, 11728, 40;
85.00191, 11680, 11440, 11736, 32, 11728, 40;
85.00191, 11688, 11440, 11728, 40, 11728, 40;
85.00191, 11688, 10768, 11728, 40, 11728, 40;
85.00191, 11688, 10768, 11736, 32, 11736, 40;
85.00191, 11680, 11624, 11736, 32, 11736, 40;
85.00191, 11680, 11624, 11736, 32, 11728, 40;
85.00191, 11680, 10984, 11736, 40, 11728, 40;
85.00191, 11680, 11208, 11736, 40, 11728, 40;
85.00191, 11680, 11208, 11736, 32, 11728, 40;
85.00191, 11688, 11376, 11728, 40, 11736, 40;
85.00191, 11680, 10960, 11728, 40, 11736, 40;
85.00191, 11680, 10960, 11736, 40, 11728, 40;
85.00191, 11680, 11144, 11736, 40, 11728, 40;
85.00191, 11680, 11576, 11736, 40, 11728, 40;
85.00191, 11680, 11576, 11728, 40, 11728, 40;
85.00191, 11688, 10896, 11736, 32, 11728, 40;
85.00191, 11688, 10768, 11736, 32, 11728, 40;
85.00191, 11680, 10768, 11728, 32, 11728, 40;
85.00191, 11680, 11560, 11728, 32, 11728, 40;
85.00191, 11680, 11560, 11736, 32, 11728, 40;
85.00191, 11688, 11088, 11736, 40, 11728, 40;
85.00191, 11688, 11024, 11736, 40, 11736, 40;
85.00191, 11688, 11024, 11736, 32, 11728, 80;
85.00191, 11680, 11144, 11736, 40, 11728, 80;
85.00191, 11680, 11144, 11728, 40, 11728, 72;
85.00191, 11680, 11288, 11728, 32, 11728, 72;
85.00191, 11680, 11040, 11728, 32, 11728, 72;
85.00191, 11680, 11040, 11736, 40, 11728, 64;
85.00191, 11688, 11424, 11728, 32, 11728, 88;
85.00191, 11688, 11136, 11728, 32, 11728, 88;
85.00191, 11688, 11136, 11728, 40, 11728, 88;
85.00191, 11680, 11056, 11728, 32, 11728, 88;
85.00191, 11680, 11056, 11728, 32, 11728, 88;
85.00191, 11688, 11480, 11736, 32, 11728, 80;
85.00191, 11688, 11112, 11728, 32, 11728, 80;
85.00191, 11688, 10776, 11728, 32, 11728, 112;
85.00191, 11688, 10776, 11736, 32, 11736, 112;
85.00191, 11680, 11312, 11736, 32, 11736, 112;
85.00191, 11680, 11312, 11728, 32, 11728, 88;
85.00191, 11688, 11144, 11728, 40, 11728, 72;
85.00191, 11680, 10992, 11728, 40, 11728, 72;
85.00191, 11680, 10992, 11736, 40, 11728, 80;
85.00191, 11680, 11560, 11736, 40, 11728, 80;
85.00191, 11680, 11560, 11736, 40, 11728, 56;
85.00191, 11688, 10552, 11728, 32, 11736, 40;
85.00191, 11680, 11088, 11728, 32, 11736, 40;
85.00191, 11680, 11088, 11736, 32, 11728, 40;
85.00191, 11680, 11224, 11736, 40, 11728, 40;
85.00191, 11680, 11392, 11736, 40, 11728, 40;
85.00191, 11688, 11392, 11728, 32, 11728, 40;
85.00191, 11688, 10840, 11728, 40, 11728, 40;
85.00191, 11688, 10840, 11736, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 11352, 11728, 40, 11728, 40;
85.00191, 11688, 11352, 11728, 40, 11728, 40;
85.00191, 11688, 11376, 11736, 32, 11728, 40;
85.00191, 11688, 11216, 11736, 32, 11728, 40;
85.00191, 11688, 11216, 11736, 32, 11728, 40;
85.00191, 11680, 11016, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 32, 11728, 40;
85.00191, 11680, 11216, 11736, 32, 11728, 40;
85.00191, 11680, 11216, 11736, 32, 11736, 40;
85.00191, 11688, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 10984, 11728, 40, 11728, 40;
85.00191, 11680, 10984, 11728, 40, 11728, 40;
85.00191, 11688, 11480, 11728, 40, 11728, 40;
85.00191, 11688, 10768, 11728, 40, 11728, 40;
85.00191, 11680, 10768, 11736, 40, 11728, 40;
85.00191, 11688, 10968, 11736, 32, 11728, 40;
85.00191, 11688, 10968, 11736, 32, 11728, 40;
85.00191, 11688, 10776, 11728, 40, 11736, 40;
85.00191, 11680, 11328, 11728, 40, 11736, 40;
85.00191, 11680, 11328, 11736, 32, 11728, 40;
85.00191, 11680, 11080, 11736, 32, 11728, 40;
85.00191, 11680, 11392, 11736, 32, 11728, 40;
85.00191, 11688, 11392, 11728, 32, 11736, 40;
85.00191, 11680, 11016, 11728, 40, 11736, 40;
85.00191, 11680, 11016, 11736, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 32, 11728, 40;
85.00191, 11680, 11160, 11728, 32, 11728, 40;
85.00191, 11688, 11064, 11736, 32, 11728, 40;
85.00191, 11688, 11064, 11728, 40, 11728, 40;
85.00191, 11688, 11368, 11728, 40, 11728, 40;
85.00191, 11688, 11368, 11736, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 32, 11728, 40;
85.00191, 11680, 11120, 11728, 32, 11728, 40;
85.00191, 11688, 11120, 11736, 32, 11728, 40;
85.00191, 11688, 11080, 11736, 32, 11728, 40;
85.00191, 11688, 11080, 11736, 32, 11736, 40;
85.00191, 11688, 11712, 11728, 32, 11728, 40;
85.00191, 11680, 11064, 11728, 32, 11728, 40;
85.00191, 11680, 11064, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11736, 40, 11728, 40;
85.00191, 11688, 11168, 11736, 40, 11728, 40;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11688, 11568, 11728, 32, 11728, 40;
85.00191, 11688, 11568, 11736, 32, 11728, 40;
85.00191, 11680, 11120, 11736, 32, 11728, 40;
85.00191, 11688, 11264, 11736, 32, 11728, 40;
85.00191, 11688, 11264, 11728, 40, 11728, 40;
85.00191, 11688, 11096, 11736, 32, 11728, 40;
85.00191, 11688, 11096, 11736, 32, 11728, 40;
85.00191, 11688, 11616, 11728, 32, 11728, 40;
85.00191, 11688, 10816, 11728, 32, 11728, 40;
85.00191, 11688, 10816, 11736, 40, 11728, 40;
85.00191, 11680, 10400, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11736, 40, 11728, 40;
85.00191, 11680, 11328, 11736, 40, 11728, 40;
85.00191, 11680, 11584, 11728, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11680, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11384, 11728, 32, 11728, 40;
85.00191, 11680, 11384, 11736, 40, 11728, 40;
85.00191, 11688, 10792, 11736, 32, 11728, 40;
85.00191, 11688, 10792, 11736, 32, 11728, 40;
85.00191, 11680, 11424, 11728, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 32, 11728, 40;
85.00191, 11680, 11136, 11728, 40, 11728, 40;
85.00191, 11680, 11136, 11728, 40, 11728, 40;
85.00191, 11688, 11048, 11736, 32, 11728, 40;
85.00191, 11680, 11328, 11736, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 32, 11728, 40;
85.00191, 11688, 11328, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11736, 32, 11728, 40;
85.00191, 11688, 11312, 11736, 40, 11728, 40;
85.00191, 11688, 11312, 11736, 40, 11728, 40;
85.00191, 11680, 10992, 11728, 32, 11728, 40;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11688, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11736, 32, 11736, 40;
85.00191, 11680, 11112, 11728, 32, 11736, 40;
85.00191, 11680, 11112, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11736, 32, 11728, 40;
85.00191, 11688, 11392, 11736, 32, 11728, 40;
85.00191, 11688, 11392, 11728, 40, 11728, 40;
85.00191, 11680, 10728, 11728, 32, 11728, 40;
85.00191, 11680, 11488, 11728, 32, 11728, 40;
85.00191, 11680, 11488, 11728, 40, 11728, 40;
85.00191, 11680, 11128, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11736, 32, 11728, 40;
85.00191, 11688, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11736, 32, 11736, 40;
85.00191, 11688, 11400, 11728, 40, 11736, 40;
85.00191, 11688, 11400, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11736, 32, 11728, 40;
85.00191, 11688, 11152, 11736, 32, 11728, 40;
85.00191, 11688, 11152, 11736, 32, 11728, 40;
85.00191, 11688, 11104, 11728, 40, 11728, 40;
85.00191, 11688, 11240, 11728, 40, 11728, 40;
85.00191, 11680, 11240, 11728, 32, 11728, 40;
85.00191, 11688, 11584, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 32, 11728, 40;
85.00191, 11688, 11144, 11728, 32, 11728, 40;
85.00191, 11688, 11312, 11728, 32, 11728, 40;
85.00191, 11680, 11312, 11728, 32, 11728, 40;
85.00191, 11680, 11312, 11728, 40, 11728, 40;
85.00191, 11680, 11312, 11736, 40, 11728, 40;
85.00191, 11688, 10832, 11736, 32, 11728, 40;
85.00191, 11688, 11400, 11736, 32, 11728, 40;
85.00191, 11688, 11400, 11736, 40, 11728, 40;
85.00191, 11688, 10928, 11728, 40, 11728, 40;
85.00191, 11688, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11736, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 32, 11728, 40;
85.00191, 11688, 11008, 11728, 32, 11728, 40;
85.00191, 11688, 11008, 11736, 32, 11728, 40;
85.00191, 11688, 11320, 11736, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 40, 11728, 40;
85.00191, 11688, 11272, 11728, 40, 11736, 40;
85.00191, 11680, 11544, 11728, 40, 11736, 40;
85.00191, 11680, 11544, 11728, 40, 11728, 40;
85.00191, 11688, 11280, 11736, 32, 11728, 40;
85.00191, 11688, 10856, 11736, 32, 11728, 40;
85.00191, 11688, 10856, 11728, 32, 11728, 40;
85.00191, 11680, 11160, 11736, 40, 11728, 40;
85.00191, 11680, 11176, 11736, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 10504, 11736, 32, 11728, 40;
85.00191, 11688, 10592, 11736, 32, 11728, 40;
85.00191, 11680, 10592, 11728, 40, 11728, 40;
85.00191, 11688, 11536, 11728, 32, 11728, 40;
85.00191, 11688, 11536, 11736, 32, 11728, 40;
85.00191, 11688, 11216, 11728, 40, 11728, 40;
85.00191, 11688, 11024, 11728, 40, 11736, 40;
85.00191, 11688, 11024, 11736, 32, 11728, 40;
85.00191, 11680, 11104, 11736, 40, 11728, 40;
85.00191, 11680, 11104, 11736, 40, 11728, 40;
85.00191, 11688, 11472, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11736, 40, 11728, 40;
85.00191, 11688, 11424, 11736, 40, 11728, 40;
85.00191, 11688, 11016, 11736, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11680, 10856, 11728, 40, 11728, 40;
85.00191, 11680, 10856, 11728, 40, 11728, 40;
85.00191, 11688, 11432, 11736, 32, 11728, 40;
85.00191, 11688, 11056, 11736, 32, 11728, 40;
85.00191, 11688, 11024, 11728, 32, 11728, 40;
85.00191, 11688, 11024, 11728, 32, 11728, 40;
85.00191, 11680, 11184, 11728, 32, 11728, 40;
85.00191, 11680, 11184, 11728, 32, 11728, 40;
85.00191, 11688, 11352, 11728, 32, 11728, 40;
85.00191, 11680, 10840, 11728, 32, 11728, 40;
85.00191, 11680, 10840, 11736, 40, 11728, 40;
85.00191, 11680, 11520, 11728, 32, 11728, 40;
85.00191, 11680, 10744, 11728, 32, 11728, 40;
85.00191, 11680, 10744, 11728, 32, 11728, 40;
85.00191, 11688, 11008, 11728, 40, 11728, 40;
85.00191, 11688, 11008, 11736, 40, 11728, 40;
85.00191, 11688, 11152, 11736, 32, 11728, 32;
85.00191, 11688, 11152, 11736, 32, 11728, 32;
85.00191, 11688, 11512, 11728, 32, 11728, 40;
85.00191, 11680, 10544, 11728, 32, 11728, 40;
85.00191, 11680, 10544, 11736, 32, 11728, 40;
85.00191, 11680, 10968, 11736, 32, 11728, 40;
85.00191, 11688, 11080, 11736, 32, 11728, 40;
85.00191, 11688, 11080, 11736, 40, 11736, 32;
85.00191, 11688, 11128, 11728, 40, 11736, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 32, 11728, 40;
85.00191, 11688, 11296, 11728, 32, 11728, 40;
85.00191, 11688, 11296, 11728, 32, 11728, 40;
85.00191, 11680, 11112, 11736, 32, 11728, 32;
85.00191, 11680, 11352, 11736, 40, 11728, 40;
85.00191, 11680, 11088, 11736, 40, 11728, 40;
85.00191, 11688, 11088, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11680, 11632, 11736, 32, 11728, 40;
85.00191, 11688, 11208, 11736, 32, 11728, 40;
85.00191, 11688, 11208, 11728, 32, 11728, 32;
85.00191, 11688, 11064, 11736, 40, 11728, 32;
85.00191, 11688, 11064, 11736, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 32, 11728, 40;
85.00191, 11688, 11392, 11728, 32, 11728, 40;
85.00191, 11688, 11392, 11728, 32, 11728, 40;
85.00191, 11680, 10952, 11728, 32, 11728, 40;
85.00191, 11680, 11376, 11728, 32, 11728, 40;
85.00191, 11688, 11376, 11728, 32, 11728, 40;
85.00191, 11680, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11736, 40, 11728, 40;
85.00191, 11688, 11344, 11736, 40, 11728, 40;
85.00191, 11688, 11344, 11728, 32, 11728, 40;
85.00191, 11680, 11152, 11736, 40, 11728, 40;
85.00191, 11680, 11152, 11736, 40, 11728, 32;
85.00191, 11688, 11720, 11736, 40, 11728, 40;
85.00191, 11688, 11032, 11728, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 40, 11728, 32;
85.00191, 11680, 11216, 11728, 32, 11728, 32;
85.00191, 11680, 11664, 11728, 32, 11728, 40;
85.00191, 11688, 11664, 11728, 40, 11728, 40;
85.00191, 11680, 10848, 11728, 40, 11728, 40;
85.00191, 11680, 10848, 11728, 40, 11728, 40;
85.00191, 11680, 11448, 11728, 32, 11728, 40;
85.00191, 11680, 10896, 11728, 32, 11728, 40;
85.00191, 11688, 10896, 11736, 40, 11728, 40;
85.00191, 11680, 11192, 11736, 32, 11728, 40;
85.00191, 11680, 11192, 11728, 32, 11728, 40;
85.00191, 11688, 11264, 11736, 40, 11728, 40;
85.00191, 11688, 11016, 11736, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 32, 11728, 40;
85.00191, 11688, 11512, 11728, 32, 11728, 40;
85.00191, 11680, 11512, 11728, 40, 11728, 32;
85.00191, 11688, 11144, 11728, 40, 11728, 32;
85.00191, 11688, 11144, 11728, 40, 11728, 40;
85.00191, 11680, 10864, 11728, 40, 11728, 40;
85.00191, 11680, 11744, 11728, 40, 11728, 40;
85.00191, 11688, 11744, 11736, 32, 11728, 40;
85.00191, 11680, 11312, 11728, 40, 11728, 40;
85.00191, 11680, 11192, 11728, 32, 11728, 40;
85.00191, 11680, 11192, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 40, 11728, 40;
85.00191, 11688, 11240, 11728, 40, 11728, 40;
85.00191, 11688, 11240, 11728, 40, 11728, 40;
85.00191, 11680, 11096, 11736, 32, 11728, 40;
85.00191, 11680, 11096, 11736, 32, 11728, 40;
85.00191, 11688, 11416, 11728, 40, 11728, 32;
85.00191, 11688, 11032, 11728, 40, 11728, 32;
85.00191, 11688, 11032, 11736, 40, 11728, 40;
85.00191, 11680, 11008, 11728, 32, 11728, 40;
85.00191, 11680, 11472, 11728, 32, 11728, 40;
85.00191, 11680, 11472, 11728, 32, 11728, 40;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11240, 11736, 32, 11728, 40;
85.00191, 11680, 11216, 11736, 32, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11688, 11312, 11736, 32, 11728, 40;
85.00191, 11688, 11312, 11736, 32, 11728, 40;
85.00191, 11680, 10832, 11736, 32, 11728, 40;
85.00191, 11688, 11496, 11736, 32, 11728, 40;
85.00191, 11688, 11496, 11728, 40, 11728, 40;
85.00191, 11688, 10792, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11736, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11464, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11688, 11184, 11736, 32, 11728, 40;
85.00191, 11688, 11224, 11736, 32, 11728, 40;
85.00191, 11688, 11224, 11728, 40, 11728, 32;
85.00191, 11688, 11064, 11728, 32, 11728, 32;
85.00191, 11688, 11064, 11728, 32, 11728, 40;
85.00191, 11680, 11160, 11728, 40, 11728, 40;
85.00191, 11688, 11560, 11728, 40, 11728, 40;
85.00191, 11688, 11560, 11728, 40, 11728, 40;
85.00191, 11680, 10640, 11728, 32, 11728, 40;
85.00191, 11680, 11120, 11728, 32, 11728, 40;
85.00191, 11680, 11120, 11736, 32, 11728, 40;
85.00191, 11680, 11272, 11736, 32, 11728, 40;
85.00191, 11680, 11272, 11736, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 32, 11728, 40;
85.00191, 11688, 10704, 11728, 32, 11728, 40;
85.00191, 11688, 10704, 11736, 40, 11728, 40;
85.00191, 11680, 11416, 11736, 40, 11728, 40;
85.00191, 11680, 11416, 11728, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 32;
85.00191, 11680, 11448, 11728, 32, 11728, 32;
85.00191, 11680, 11448, 11728, 40, 11728, 40;
85.00191, 11688, 11440, 11728, 32, 11728, 40;
85.00191, 11680, 10848, 11728, 40, 11728, 40;
85.00191, 11680, 10848, 11728, 40, 11728, 40;
85.00191, 11680, 11336, 11736, 40, 11728, 40;
85.00191, 11688, 11528, 11736, 40, 11728, 40;
85.00191, 11688, 11528, 11728, 40, 11728, 40;
85.00191, 11688, 10896, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11736, 32, 11728, 40;
85.00191, 11680, 11384, 11736, 32, 11728, 40;
85.00191, 11680, 11384, 11728, 32, 11728, 40;
85.00191, 11680, 10936, 11736, 32, 11728, 40;
85.00191, 11688, 11384, 11736, 32, 11728, 40;
85.00191, 11688, 11384, 11728, 40, 11728, 40;
85.00191, 11688, 10912, 11728, 32, 11728, 40;
85.00191, 11688, 10912, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 32, 11728, 40;
85.00191, 11680, 11192, 11728, 32, 11728, 40;
85.00191, 11680, 11192, 11736, 32, 11728, 40;
85.00191, 11688, 11424, 11728, 32, 11728, 40;
85.00191, 11688, 10992, 11728, 32, 11728, 40;
85.00191, 11688, 10992, 11728, 32, 11728, 40;
85.00191, 11688, 11320, 11728, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 40, 11728, 32;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11184, 11736, 32, 11728, 40;
85.00191, 11680, 11216, 11736, 32, 11728, 40;
85.00191, 11688, 11216, 11736, 32, 11728, 40;
85.00191, 11688, 10808, 11736, 40, 11728, 40;
85.00191, 11688, 10808, 11736, 40, 11728, 40;
85.00191, 11688, 11240, 11736, 32, 11728, 40;
85.00191, 11680, 11608, 11736, 32, 11728, 40;
85.00191, 11680, 11608, 11728, 40, 11728, 40;
85.00191, 11688, 10792, 11728, 32, 11728, 40;
85.00191, 11688, 10336, 11728, 32, 11728, 40;
85.00191, 11680, 10336, 11736, 40, 11728, 40;
85.00191, 11688, 11448, 11736, 32, 11728, 40;
85.00191, 11688, 11448, 11728, 32, 11728, 40;
85.00191, 11680, 11352, 11728, 32, 11728, 40;
85.00191, 11680, 11304, 11728, 32, 11728, 40;
85.00191, 11688, 11304, 11728, 32, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11688, 11136, 11728, 32, 11728, 40;
85.00191, 11680, 10848, 11728, 32, 11728, 40;
85.00191, 11680, 10848, 11736, 32, 11728, 40;
85.00191, 11688, 11472, 11728, 40, 11728, 40;
85.00191, 11688, 11032, 11728, 40, 11728, 40;
85.00191, 11688, 11032, 11736, 40, 11728, 40;
85.00191, 11680, 10824, 11736, 32, 11728, 40;
85.00191, 11680, 11296, 11728, 32, 11728, 40;
85.00191, 11680, 11296, 11736, 40, 11728, 40;
85.00191, 11688, 11280, 11728, 32, 11728, 40;
85.00191, 11688, 11560, 11728, 32, 11728, 40;
85.00191, 11688, 11560, 11728, 32, 11728, 40;
85.00191, 11680, 11064, 11728, 32, 11728, 40;
85.00191, 11680, 11064, 11736, 32, 11728, 40;
85.00191, 11688, 11168, 11736, 32, 11728, 40;
85.00191, 11680, 11256, 11736, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 32, 11728, 40;
85.00191, 11688, 11536, 11728, 32, 11728, 40;
85.00191, 11688, 11536, 11728, 32, 11728, 40;
85.00191, 11688, 10920, 11728, 40, 11728, 32;
85.00191, 11688, 11216, 11728, 40, 11728, 32;
85.00191, 11688, 11216, 11728, 32, 11728, 32;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11688, 11584, 11728, 40, 11728, 40;
85.00191, 11688, 11584, 11728, 32, 11728, 40;
85.00191, 11680, 10872, 11728, 32, 11728, 40;
85.00191, 11680, 10872, 11736, 32, 11736, 40;
85.00191, 11680, 11280, 11728, 32, 11728, 40;
85.00191, 11680, 11208, 11728, 32, 11728, 40;
85.00191, 11680, 11208, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11736, 32, 11728, 40;
85.00191, 11680, 11160, 11736, 32, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 32;
85.00191, 11688, 11064, 11728, 40, 11736, 40;
85.00191, 11688, 11216, 11728, 40, 11736, 40;
85.00191, 11688, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11544, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 32, 11728, 40;
85.00191, 11680, 10656, 11728, 32, 11728, 40;
85.00191, 11680, 10656, 11728, 32, 11728, 40;
85.00191, 11680, 11648, 11728, 40, 11728, 40;
85.00191, 11680, 11384, 11728, 40, 11728, 40;
85.00191, 11680, 11384, 11728, 32, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11016, 11736, 40, 11728, 32;
85.00191, 11688, 11512, 11736, 40, 11728, 32;
85.00191, 11688, 11512, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 32, 11728, 40;
85.00191, 11680, 11368, 11728, 32, 11728, 40;
85.00191, 11680, 11368, 11728, 32, 11728, 32;
85.00191, 11688, 11144, 11728, 40, 11728, 32;
85.00191, 11688, 11144, 11728, 40, 11728, 40;
85.00191, 11680, 10976, 11728, 32, 11728, 40;
85.00191, 11680, 11368, 11728, 32, 11728, 40;
85.00191, 11680, 11368, 11736, 32, 11736, 32;
85.00191, 11688, 11048, 11728, 32, 11728, 40;
85.00191, 11688, 11088, 11728, 40, 11728, 40;
85.00191, 11688, 11088, 11736, 40, 11728, 40;
85.00191, 11680, 11024, 11728, 32, 11728, 40;
85.00191, 11680, 10680, 11728, 32, 11728, 40;
85.00191, 11680, 10680, 11736, 32, 11728, 32;
85.00191, 11680, 11040, 11736, 32, 11728, 32;
85.00191, 11680, 11040, 11736, 32, 11728, 40;
85.00191, 11688, 11360, 11728, 40, 11728, 40;
85.00191, 11680, 10768, 11728, 40, 11728, 40;
85.00191, 11680, 10768, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11736, 40, 11728, 40;
85.00191, 11680, 11264, 11736, 40, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 32;
85.00191, 11680, 11520, 11728, 32, 11728, 32;
85.00191, 11680, 11520, 11736, 32, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 10856, 11728, 40, 11728, 40;
85.00191, 11688, 10856, 11728, 32, 11728, 32;
85.00191, 11680, 11320, 11736, 40, 11728, 32;
85.00191, 11680, 11448, 11736, 40, 11728, 40;
85.00191, 11688, 11448, 11728, 40, 11728, 40;
85.00191, 11688, 10928, 11728, 32, 11728, 40;
85.00191, 11688, 10928, 11736, 32, 11728, 40;
85.00191, 11680, 11096, 11736, 40, 11728, 32;
85.00191, 11680, 11488, 11728, 40, 11728, 32;
85.00191, 11680, 11240, 11728, 40, 11728, 40;
85.00191, 11680, 11240, 11728, 32, 11728, 40;
85.00191, 11688, 11312, 11728, 32, 11728, 40;
85.00191, 11688, 11312, 11736, 32, 11728, 40;
85.00191, 11680, 11072, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11688, 11128, 11728, 32, 11728, 40;
85.00191, 11688, 11128, 11728, 32, 11728, 40;
85.00191, 11680, 11184, 11728, 40, 11728, 40;
85.00191, 11688, 11296, 11728, 40, 11728, 40;
85.00191, 11688, 11296, 11736, 32, 11728, 40;
85.00191, 11688, 11000, 11728, 32, 11728, 40;
85.00191, 11688, 11088, 11728, 32, 11728, 40;
85.00191, 11688, 11088, 11728, 40, 11728, 40;
85.00191, 11680, 10792, 11728, 32, 11728, 40;
85.00191, 11680, 10792, 11736, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 32, 11728, 40;
85.00191, 11688, 11064, 11728, 32, 11728, 40;
85.00191, 11688, 11064, 11728, 40, 11736, 40;
85.00191, 11680, 11312, 11728, 32, 11736, 40;
85.00191, 11680, 11312, 11728, 32, 11728, 40;
85.00191, 11688, 11152, 11736, 40, 11728, 40;
85.00191, 11680, 11296, 11736, 40, 11728, 40;
85.00191, 11680, 11024, 11728, 32, 11728, 40;
85.00191, 11688, 11024, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 32;
85.00191, 11680, 11472, 11728, 40, 11728, 32;
85.00191, 11680, 11472, 11728, 40, 11728, 40;
85.00191, 11688, 11216, 11728, 40, 11728, 40;
85.00191, 11688, 10608, 11728, 40, 11728, 40;
85.00191, 11680, 10608, 11736, 40, 11728, 40;
85.00191, 11688, 11672, 11736, 40, 11728, 40;
85.00191, 11688, 11672, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11688, 11288, 11728, 40, 11728, 40;
85.00191, 11688, 11288, 11728, 32, 11728, 40;
85.00191, 11688, 10944, 11728, 40, 11728, 40;
85.00191, 11688, 10944, 11728, 40, 11728, 40;
85.00191, 11688, 11496, 11728, 32, 11728, 40;
85.00191, 11680, 11184, 11728, 32, 11728, 40;
85.00191, 11680, 11184, 11736, 32, 11728, 40;
85.00191, 11680, 11384, 11728, 32, 11728, 40;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11688, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11488, 11736, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 40, 11728, 40;
85.00191, 11688, 10968, 11728, 40, 11728, 40;
85.00191, 11688, 10968, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11728, 32, 11728, 40;
85.00191, 11680, 11168, 11728, 32, 11728, 40;
85.00191, 11688, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 10832, 11728, 40, 11728, 40;
85.00191, 11680, 10832, 11736, 32, 11728, 40;
85.00191, 11680, 11392, 11728, 32, 11728, 40;
85.00191, 11680, 11000, 11728, 32, 11728, 40;
85.00191, 11688, 11000, 11728, 40, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11680, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 10840, 11728, 40, 11728, 40;
85.00191, 11680, 10840, 11728, 40, 11728, 32;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11688, 11096, 11728, 40, 11728, 40;
85.00191, 11688, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11312, 11728, 32, 11728, 40;
85.00191, 11680, 11408, 11728, 32, 11728, 40;
85.00191, 11688, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 10736, 11728, 40, 11728, 40;
85.00191, 11688, 11304, 11728, 40, 11728, 40;
85.00191, 11688, 11304, 11728, 32, 11728, 32;
85.00191, 11680, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 11136, 11728, 40, 11728, 40;
85.00191, 11688, 11136, 11728, 40, 11728, 40;
85.00191, 11680, 10864, 11728, 40, 11728, 40;
85.00191, 11680, 10864, 11728, 40, 11728, 40;
85.00191, 11688, 11392, 11728, 40, 11728, 40;
85.00191, 11680, 11160, 11728, 40, 11728, 40;
85.00191, 11680, 11160, 11736, 40, 11728, 40;
85.00191, 11688, 11336, 11736, 32, 11728, 40;
85.00191, 11688, 11336, 11728, 32, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 32, 11728, 40;
85.00191, 11680, 11112, 11728, 32, 11728, 40;
85.00191, 11688, 11112, 11728, 32, 11728, 40;
85.00191, 11680, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 40, 11728, 40;
85.00191, 11688, 11016, 11736, 40, 11728, 40;
85.00191, 11680, 11112, 11736, 32, 11728, 40;
85.00191, 11688, 11376, 11736, 32, 11728, 40;
85.00191, 11688, 11376, 11728, 32, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11688, 11440, 11728, 32, 11728, 40;
85.00191, 11688, 11440, 11736, 40, 11728, 40;
85.00191, 11680, 11008, 11728, 32, 11728, 32;
85.00191, 11680, 11584, 11728, 32, 11728, 32;
85.00191, 11688, 11584, 11728, 32, 11728, 40;
85.00191, 11680, 10872, 11728, 40, 11728, 40;
85.00191, 11680, 10872, 11728, 40, 11728, 40;
85.00191, 11688, 11208, 11736, 40, 11728, 40;
85.00191, 11688, 11216, 11736, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11320, 11728, 32, 11728, 40;
85.00191, 11680, 11320, 11728, 32, 11728, 40;
85.00191, 11688, 10984, 11728, 32, 11728, 40;
85.00191, 11680, 10976, 11728, 32, 11728, 40;
85.00191, 11680, 10976, 11728, 32, 11728, 32;
85.00191, 11688, 11176, 11728, 40, 11728, 32;
85.00191, 11688, 11312, 11728, 40, 11728, 32;
85.00191, 11680, 11312, 11728, 32, 11728, 32;
85.00191, 11688, 11208, 11728, 32, 11728, 32;
85.00191, 11688, 11208, 11728, 32, 11728, 40;
85.00191, 11688, 10704, 11728, 32, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11680, 11472, 11728, 40, 11728, 40;
85.00191, 11680, 11424, 11728, 32, 11728, 40;
85.00191, 11680, 11424, 11728, 32, 11728, 40;
85.00191, 11680, 10904, 11728, 40, 11728, 40;
85.00191, 11688, 11416, 11728, 40, 11728, 40;
85.00191, 11688, 11416, 11728, 32, 11728, 40;
85.00191, 11680, 10984, 11728, 32, 11728, 40;
85.00191, 11680, 10984, 11728, 32, 11728, 40;
85.00191, 11680, 11560, 11728, 40, 11728, 40;
85.00191, 11688, 11224, 11728, 40, 11728, 40;
85.00191, 11688, 11224, 11728, 40, 11728, 40;
85.00191, 11688, 10880, 11728, 40, 11728, 40;
85.00191, 11688, 11296, 11728, 40, 11728, 40;
85.00191, 11680, 11296, 11736, 40, 11728, 40;
85.00191, 11688, 11248, 11736, 32, 11728, 40;
85.00191, 11688, 11248, 11728, 32, 11728, 40;
85.00191, 11688, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11176, 11728, 32, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 32, 11728, 40;
85.00191, 11688, 10928, 11728, 32, 11728, 40;
85.00191, 11688, 10928, 11728, 32, 11728, 32;
85.00191, 11680, 11456, 11728, 40, 11728, 32;
85.00191, 11680, 11456, 11728, 40, 11728, 40;
85.00191, 11688, 10752, 11728, 40, 11728, 32;
85.00191, 11688, 10880, 11728, 40, 11728, 32;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11728, 32, 11728, 40;
85.00191, 11680, 11576, 11728, 32, 11728, 40;
85.00191, 11680, 11576, 11728, 32, 11728, 40;
85.00191, 11688, 10736, 11736, 40, 11728, 40;
85.00191, 11688, 11080, 11736, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11064, 11736, 40, 11728, 40;
85.00191, 11688, 11176, 11736, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 40, 11736, 40;
85.00191, 11680, 11120, 11728, 32, 11728, 40;
85.00191, 11680, 11488, 11728, 32, 11728, 40;
85.00191, 11680, 11488, 11728, 32, 11728, 40;
85.00191, 11688, 11376, 11728, 32, 11728, 40;
85.00191, 11680, 11072, 11728, 32, 11728, 40;
85.00191, 11680, 11072, 11728, 32, 11728, 40;
85.00191, 11680, 11376, 11736, 32, 11728, 40;
85.00191, 11680, 11376, 11736, 32, 11728, 40;
85.00191, 11680, 11200, 11728, 32, 11728, 40;
85.00191, 11688, 11200, 11728, 32, 11728, 40;
85.00191, 11688, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 32;
85.00191, 11680, 11544, 11728, 40, 11728, 32;
85.00191, 11688, 11544, 11728, 32, 11728, 40;
85.00191, 11680, 10976, 11728, 40, 11728, 40;
85.00191, 11680, 10976, 11728, 40, 11728, 40;
85.00191, 11688, 11432, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11736, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11688, 11496, 11728, 40, 11728, 40;
85.00191, 11688, 10760, 11728, 40, 11728, 40;
85.00191, 11680, 10760, 11728, 40, 11728, 40;
85.00191, 11680, 11360, 11728, 40, 11728, 40;
85.00191, 11680, 11360, 11728, 40, 11728, 40;
85.00191, 11688, 11024, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11736, 40, 11728, 32;
85.00191, 11680, 11080, 11736, 32, 11728, 40;
85.00191, 11680, 11416, 11736, 32, 11728, 40;
85.00191, 11680, 11416, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11736, 32, 11728, 40;
85.00191, 11680, 11120, 11736, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11312, 11728, 32, 11728, 40;
85.00191, 11680, 11448, 11728, 32, 11728, 40;
85.00191, 11680, 11448, 11728, 32, 11728, 40;
85.00191, 11688, 11000, 11736, 40, 11728, 40;
85.00191, 11688, 11192, 11736, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11728, 40, 11728, 40;
85.00191, 11688, 11136, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11736, 32, 11728, 40;
85.00191, 11680, 11416, 11728, 32, 11728, 40;
85.00191, 11680, 11096, 11728, 32, 11728, 40;
85.00191, 11688, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11688, 11192, 11728, 32, 11728, 40;
85.00191, 11688, 11192, 11736, 40, 11728, 40;
85.00191, 11680, 11312, 11728, 40, 11728, 32;
85.00191, 11680, 11256, 11728, 40, 11728, 32;
85.00191, 11688, 11256, 11728, 32, 11728, 40;
85.00191, 11688, 11040, 11728, 40, 11728, 40;
85.00191, 11688, 11040, 11728, 40, 11728, 40;
85.00191, 11688, 11088, 11736, 32, 11728, 40;
85.00191, 11680, 11240, 11736, 32, 11728, 40;
85.00191, 11680, 11240, 11736, 32, 11728, 48;
85.00191, 11688, 11216, 11728, 40, 11728, 48;
85.00191, 11688, 10608, 11728, 40, 11728, 32;
85.00191, 11680, 10608, 11728, 40, 11728, 40;
85.00191, 11688, 11504, 11728, 32, 11728, 40;
85.00191, 11688, 11504, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11688, 11216, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 40, 11728, 40;
85.00191, 11680, 11032, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11064, 11728, 40, 11728, 40;
85.00191, 11680, 11064, 11736, 40, 11728, 40;
85.00191, 11688, 11384, 11728, 40, 11728, 40;
85.00191, 11688, 10992, 11728, 40, 11728, 40;
85.00191, 11688, 10992, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 40, 11728, 40;
85.00191, 11680, 11552, 11728, 40, 11728, 40;
85.00191, 11680, 11552, 11728, 40, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 40;
85.00191, 11680, 11128, 11728, 40, 11728, 40;
85.00191, 11688, 11128, 11728, 40, 11728, 40;
85.00191, 11680, 10920, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 32, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11232, 11728, 40, 11728, 40;
85.00191, 11688, 11408, 11728, 40, 11728, 40;
85.00191, 11688, 11408, 11728, 40, 11728, 40;
85.00191, 11688, 10920, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 40, 11728, 40;
85.00191, 11688, 11448, 11728, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 32, 11728, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 10896, 11728, 40, 11728, 40;
85.00191, 11688, 11200, 11728, 32, 11728, 40;
85.00191, 11688, 11168, 11728, 32, 11728, 40;
85.00191, 11680, 11168, 11736, 32, 11728, 40;
85.00191, 11680, 11464, 11736, 32, 11728, 40;
85.00191, 11680, 11464, 11728, 32, 11728, 40;
85.00191, 11680, 10728, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11160, 11728, 40, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11688, 11264, 11728, 32, 11728, 40;
85.00191, 11688, 11264, 11736, 32, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11312, 11728, 40, 11728, 40;
85.00191, 11680, 11312, 11728, 40, 11728, 40;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 10688, 11728, 40, 11728, 40;
85.00191, 11680, 10688, 11728, 40, 11728, 40;
85.00191, 11680, 11320, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11680, 10952, 11736, 40, 11728, 40;
85.00191, 11680, 10952, 11728, 40, 11728, 40;
85.00191, 11680, 11584, 11728, 32, 11728, 40;
85.00191, 11680, 10968, 11728, 32, 11728, 40;
85.00191, 11680, 10968, 11736, 32, 11728, 40;
85.00191, 11680, 11464, 11736, 32, 11728, 40;
85.00191, 11680, 11464, 11728, 32, 11728, 40;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 10992, 11728, 40, 11736, 40;
85.00191, 11680, 10992, 11728, 40, 11728, 40;
85.00191, 11680, 11280, 11736, 40, 11728, 40;
85.00191, 11680, 11280, 11736, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 32, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11680, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11688, 11216, 11728, 32, 11728, 40;
85.00191, 11680, 11336, 11728, 40, 11728, 40;
85.00191, 11680, 11336, 11728, 40, 11728, 40;
85.00191, 11688, 11528, 11736, 40, 11728, 40;
85.00191, 11680, 10912, 11736, 40, 11728, 40;
85.00191, 11680, 10912, 11728, 32, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 40, 11728, 40;
85.00191, 11688, 11128, 11728, 32, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11680, 11560, 11728, 32, 11728, 40;
85.00191, 11680, 11560, 11728, 32, 11728, 40;
85.00191, 11688, 10960, 11728, 40, 11728, 32;
85.00191, 11688, 11248, 11728, 32, 11728, 32;
85.00191, 11688, 11248, 11728, 32, 11728, 40;
85.00191, 11680, 11096, 11728, 32, 11728, 40;
85.00191, 11680, 11320, 11728, 32, 11728, 40;
85.00191, 11688, 11320, 11728, 40, 11728, 40;
85.00191, 11680, 10976, 11728, 32, 11728, 40;
85.00191, 11680, 10976, 11736, 32, 11728, 40;
85.00191, 11680, 11248, 11728, 32, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11688, 11016, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 32, 11728, 40;
85.00191, 11680, 11320, 11728, 32, 11728, 40;
85.00191, 11680, 11320, 11728, 32, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 40;
85.00191, 11680, 11272, 11736, 32, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 32, 11728, 40;
85.00191, 11680, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11504, 11728, 32, 11728, 40;
85.00191, 11680, 11504, 11728, 32, 11728, 40;
85.00191, 11688, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 10760, 11728, 40, 11728, 40;
85.00191, 11680, 10760, 11728, 32, 11728, 40;
85.00191, 11680, 11704, 11728, 40, 11728, 40;
85.00191, 11680, 11704, 11728, 40, 11728, 40;
85.00191, 11688, 11320, 11728, 40, 11728, 40;
85.00191, 11688, 11184, 11728, 40, 11728, 40;
85.00191, 11688, 11184, 11736, 40, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11680, 11416, 11728, 32, 11728, 40;
85.00191, 11688, 11416, 11728, 40, 11728, 40;
85.00191, 11680, 10864, 11728, 32, 11728, 40;
85.00191, 11680, 10864, 11728, 32, 11728, 40;
85.00191, 11680, 11352, 11728, 40, 11728, 40;
85.00191, 11688, 11208, 11728, 40, 11728, 40;
85.00191, 11688, 11208, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11736, 32, 11728, 40;
85.00191, 11680, 11168, 11736, 32, 11728, 40;
85.00191, 11680, 11368, 11728, 32, 11728, 40;
85.00191, 11680, 11296, 11728, 32, 11728, 40;
85.00191, 11680, 11296, 11728, 40, 11728, 40;
85.00191, 11688, 10920, 11728, 32, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 11424, 11728, 40, 11728, 40;
85.00191, 11680, 11424, 11728, 40, 11728, 40;
85.00191, 11688, 11224, 11728, 40, 11728, 40;
85.00191, 11688, 10544, 11728, 40, 11728, 40;
85.00191, 11680, 10544, 11728, 32, 11728, 40;
85.00191, 11688, 11480, 11728, 40, 11728, 40;
85.00191, 11688, 11480, 11736, 40, 11728, 40;
85.00191, 11688, 11208, 11728, 32, 11728, 40;
85.00191, 11688, 11216, 11728, 32, 11728, 40;
85.00191, 11688, 11216, 11736, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11688, 10904, 11728, 32, 11728, 40;
85.00191, 11688, 10904, 11736, 32, 11728, 40;
85.00191, 11688, 11296, 11728, 32, 11728, 40;
85.00191, 11688, 11344, 11728, 32, 11728, 40;
85.00191, 11688, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 11576, 11728, 32, 11728, 40;
85.00191, 11688, 11576, 11728, 40, 11728, 40;
85.00191, 11680, 11016, 11728, 40, 11728, 40;
85.00191, 11680, 11016, 11728, 40, 11728, 40;
85.00191, 11688, 11296, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11736, 32, 11728, 40;
85.00191, 11688, 11176, 11728, 32, 11728, 40;
85.00191, 11688, 10712, 11728, 32, 11728, 40;
85.00191, 11680, 10712, 11728, 32, 11728, 40;
85.00191, 11680, 11536, 11728, 32, 11728, 40;
85.00191, 11680, 11536, 11728, 32, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11280, 11728, 40, 11736, 40;
85.00191, 11680, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 11336, 11728, 32, 11728, 40;
85.00191, 11680, 11336, 11728, 32, 11728, 40;
85.00191, 11688, 11120, 11728, 32, 11728, 40;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11680, 10944, 11736, 40, 11728, 40;
85.00191, 11680, 11608, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 10968, 11728, 32, 11728, 40;
85.00191, 11680, 10968, 11728, 32, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 32, 11728, 40;
85.00191, 11688, 11536, 11728, 32, 11728, 40;
85.00191, 11688, 11536, 11728, 40, 11728, 40;
85.00191, 11680, 11024, 11728, 40, 11728, 40;
85.00191, 11680, 11024, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11688, 11456, 11728, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 32, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11688, 11480, 11728, 40, 11728, 40;
85.00191, 11688, 11480, 11728, 40, 11728, 32;
85.00191, 11688, 11160, 11728, 32, 11728, 40;
85.00191, 11688, 11336, 11728, 32, 11728, 40;
85.00191, 11680, 11336, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11688, 11392, 11728, 32, 11728, 40;
85.00191, 11688, 11392, 11736, 40, 11728, 32;
85.00191, 11680, 11472, 11728, 40, 11728, 40;
85.00191, 11680, 11296, 11728, 40, 11728, 40;
85.00191, 11688, 11296, 11728, 40, 11728, 40;
85.00191, 11680, 10888, 11728, 40, 11728, 40;
85.00191, 11680, 11552, 11728, 40, 11728, 40;
85.00191, 11680, 11552, 11728, 40, 11728, 32;
85.00191, 11680, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11192, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11688, 11360, 11728, 32, 11728, 40;
85.00191, 11680, 11168, 11728, 32, 11728, 40;
85.00191, 11680, 11168, 11736, 32, 11728, 40;
85.00191, 11680, 11376, 11728, 40, 11728, 40;
85.00191, 11680, 11376, 11728, 40, 11728, 40;
85.00191, 11688, 10880, 11728, 40, 11728, 40;
85.00191, 11680, 11112, 11728, 40, 11728, 40;
85.00191, 11680, 11112, 11728, 32, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11184, 11728, 32, 11728, 32;
85.00191, 11688, 11048, 11728, 32, 11728, 32;
85.00191, 11688, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 40, 11728, 40;
85.00191, 11680, 11616, 11728, 32, 11728, 40;
85.00191, 11680, 11616, 11728, 32, 11728, 40;
85.00191, 11688, 10832, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11192, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 32, 11728, 40;
85.00191, 11688, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 10912, 11728, 32, 11728, 40;
85.00191, 11680, 10912, 11728, 32, 11728, 40;
85.00191, 11680, 11432, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11688, 11104, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 32, 11728, 40;
85.00191, 11688, 11488, 11736, 32, 11728, 40;
85.00191, 11688, 11016, 11736, 32, 11728, 40;
85.00191, 11680, 11016, 11728, 32, 11728, 40;
85.00191, 11688, 11264, 11728, 40, 11728, 40;
85.00191, 11688, 11264, 11736, 40, 11728, 40;
85.00191, 11680, 11424, 11728, 32, 11728, 40;
85.00191, 11680, 11416, 11728, 32, 11728, 40;
85.00191, 11680, 10864, 11728, 32, 11728, 40;
85.00191, 11688, 10864, 11736, 40, 11728, 40;
85.00191, 11688, 11512, 11736, 32, 11728, 40;
85.00191, 11688, 11512, 11728, 32, 11728, 40;
85.00191, 11688, 10944, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 32, 11728, 40;
85.00191, 11680, 11160, 11728, 40, 11728, 40;
85.00191, 11680, 11160, 11728, 40, 11728, 32;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11688, 11264, 11728, 40, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 40;
85.00191, 11680, 11512, 11728, 32, 11728, 40;
85.00191, 11680, 11512, 11728, 32, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 10768, 11728, 40, 11728, 40;
85.00191, 11680, 10768, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11688, 11064, 11728, 40, 11728, 40;
85.00191, 11688, 11064, 11728, 40, 11728, 40;
85.00191, 11680, 10864, 11728, 40, 11728, 40;
85.00191, 11680, 11496, 11728, 40, 11728, 40;
85.00191, 11680, 11232, 11728, 40, 11728, 32;
85.00191, 11680, 11232, 11728, 32, 11728, 32;
85.00191, 11680, 11312, 11728, 40, 11728, 32;
85.00191, 11680, 11312, 11728, 40, 11728, 40;
85.00191, 11688, 11312, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11688, 11368, 11728, 32, 11728, 40;
85.00191, 11688, 10864, 11728, 32, 11728, 40;
85.00191, 11688, 10864, 11728, 40, 11728, 40;
85.00191, 11680, 10984, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11728, 40, 11728, 40;
85.00191, 11688, 11400, 11728, 40, 11728, 40;
85.00191, 11688, 10816, 11728, 40, 11728, 40;
85.00191, 11688, 10816, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 32, 11728, 40;
85.00191, 11680, 11120, 11728, 32, 11728, 40;
85.00191, 11680, 11120, 11736, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 32, 11728, 40;
85.00191, 11688, 11592, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11728, 32, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11728, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 40;
85.00191, 11680, 11472, 11728, 40, 11728, 40;
85.00191, 11680, 11472, 11728, 40, 11728, 40;
85.00191, 11688, 11040, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11384, 11728, 32, 11728, 40;
85.00191, 11680, 11384, 11736, 32, 11728, 40;
85.00191, 11688, 11264, 11728, 40, 11728, 40;
85.00191, 11688, 10904, 11728, 40, 11728, 40;
85.00191, 11688, 10904, 11728, 40, 11728, 40;
85.00191, 11680, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11456, 11728, 32, 11728, 32;
85.00191, 11680, 10496, 11728, 32, 11728, 32;
85.00191, 11680, 10496, 11728, 32, 11728, 40;
85.00191, 11688, 10768, 11736, 32, 11728, 40;
85.00191, 11688, 11112, 11736, 32, 11728, 40;
85.00191, 11680, 11112, 11728, 32, 11728, 40;
85.00191, 11688, 11304, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11736, 40, 11728, 40;
85.00191, 11680, 11448, 11728, 32, 11728, 40;
85.00191, 11680, 10576, 11728, 32, 11728, 40;
85.00191, 11680, 10576, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 32, 11728, 40;
85.00191, 11680, 11056, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11392, 11728, 40, 11728, 40;
85.00191, 11680, 11392, 11728, 40, 11728, 40;
85.00191, 11688, 11072, 11728, 32, 11728, 40;
85.00191, 11688, 11168, 11728, 32, 11728, 40;
85.00191, 11680, 11168, 11728, 32, 11728, 40;
85.00191, 11680, 11240, 11728, 32, 11728, 40;
85.00191, 11680, 11240, 11728, 32, 11728, 40;
85.00191, 11680, 11664, 11736, 32, 11728, 40;
85.00191, 11680, 11072, 11736, 32, 11728, 40;
85.00191, 11688, 11072, 11736, 32, 11728, 40;
85.00191, 11680, 10952, 11736, 32, 11728, 40;
85.00191, 11680, 10952, 11736, 32, 11728, 40;
85.00191, 11680, 11448, 11728, 32, 11728, 40;
85.00191, 11688, 11040, 11728, 32, 11728, 40;
85.00191, 11688, 11040, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 32;
85.00191, 11680, 11232, 11728, 40, 11728, 32;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 32, 11728, 40;
85.00191, 11680, 11040, 11728, 32, 11728, 40;
85.00191, 11680, 11040, 11728, 32, 11728, 40;
85.00191, 11680, 11480, 11728, 40, 11728, 40;
85.00191, 11680, 10816, 11728, 40, 11728, 40;
85.00191, 11688, 10816, 11728, 32, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11680, 11184, 11728, 40, 11728, 40;
85.00191, 11680, 11528, 11728, 40, 11728, 40;
85.00191, 11680, 11528, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 32;
85.00191, 11680, 10800, 11728, 32, 11728, 40;
85.00191, 11680, 11048, 11728, 32, 11728, 40;
85.00191, 11680, 11048, 11728, 32, 11728, 32;
85.00191, 11680, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11400, 11728, 32, 11728, 40;
85.00191, 11688, 11400, 11728, 40, 11728, 40;
85.00191, 11680, 10960, 11728, 40, 11728, 40;
85.00191, 11680, 10960, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 11384, 11728, 40, 11728, 40;
85.00191, 11680, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 32;
85.00191, 11680, 11152, 11728, 40, 11728, 32;
85.00191, 11680, 11152, 11728, 32, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11680, 11184, 11728, 40, 11728, 40;
85.00191, 11680, 11184, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11304, 11728, 40, 11728, 40;
85.00191, 11688, 11304, 11728, 32, 11728, 40;
85.00191, 11680, 11160, 11728, 32, 11728, 40;
85.00191, 11680, 11160, 11728, 32, 11728, 40;
85.00191, 11680, 11032, 11728, 40, 11728, 40;
85.00191, 11680, 11304, 11728, 40, 11728, 40;
85.00191, 11680, 11304, 11728, 32, 11728, 40;
85.00191, 11680, 11112, 11736, 32, 11728, 40;
85.00191, 11680, 11440, 11736, 32, 11728, 40;
85.00191, 11680, 11440, 11728, 32, 11728, 40;
85.00191, 11680, 10840, 11728, 32, 11728, 40;
85.00191, 11680, 10840, 11728, 32, 11728, 40;
85.00191, 11680, 10888, 11736, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 32, 11728, 40;
85.00191, 11680, 11024, 11728, 32, 11728, 40;
85.00191, 11688, 11024, 11728, 40, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11688, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 10888, 11728, 32, 11728, 40;
85.00191, 11680, 10888, 11728, 32, 11728, 40;
85.00191, 11680, 11360, 11728, 32, 11728, 40;
85.00191, 11680, 11360, 11728, 32, 11728, 40;
85.00191, 11688, 11480, 11728, 32, 11728, 40;
85.00191, 11680, 10856, 11728, 32, 11728, 40;
85.00191, 11680, 10856, 11728, 32, 11728, 40;
85.00191, 11680, 11320, 11728, 40, 11728, 40;
85.00191, 11680, 11464, 11728, 40, 11728, 40;
85.00191, 11680, 11464, 11728, 40, 11728, 40;
85.00191, 11688, 11136, 11728, 40, 11728, 40;
85.00191, 11688, 11136, 11728, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 40;
85.00191, 11688, 11512, 11728, 40, 11728, 40;
85.00191, 11688, 11512, 11728, 40, 11728, 40;
85.00191, 11680, 11112, 11728, 40, 11728, 40;
85.00191, 11680, 11184, 11728, 40, 11728, 40;
85.00191, 11688, 11184, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 32, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 11000, 11728, 40, 11728, 40;
85.00191, 11680, 11240, 11728, 40, 11728, 40;
85.00191, 11688, 11240, 11728, 32, 11728, 40;
85.00191, 11680, 10752, 11728, 40, 11728, 40;
85.00191, 11680, 10752, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 40;
85.00191, 11688, 10864, 11728, 32, 11728, 40;
85.00191, 11688, 10864, 11728, 40, 11736, 40;
85.00191, 11688, 11032, 11728, 40, 11736, 40;
85.00191, 11688, 11112, 11728, 40, 11728, 40;
85.00191, 11680, 11112, 11728, 32, 11728, 40;
85.00191, 11680, 11440, 11728, 32, 11728, 40;
85.00191, 11680, 11440, 11728, 32, 11728, 40;
85.00191, 11688, 10736, 11728, 32, 11728, 32;
85.00191, 11680, 11056, 11728, 32, 11728, 32;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11192, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11096, 11728, 32, 11728, 40;
85.00191, 11680, 11016, 11728, 32, 11728, 40;
85.00191, 11680, 11016, 11728, 32, 11728, 40;
85.00191, 11680, 11112, 11728, 40, 11728, 40;
85.00191, 11680, 11112, 11728, 40, 11728, 40;
85.00191, 11680, 11344, 11728, 32, 11728, 32;
85.00191, 11688, 11264, 11728, 32, 11728, 32;
85.00191, 11688, 11264, 11728, 40, 11728, 40;
85.00191, 11688, 10664, 11728, 40, 11728, 40;
85.00191, 11688, 11504, 11728, 40, 11728, 40;
85.00191, 11688, 11504, 11728, 40, 11728, 40;
85.00191, 11680, 11224, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 32, 11728, 40;
85.00191, 11688, 11136, 11728, 32, 11728, 32;
85.00191, 11680, 10920, 11728, 32, 11728, 32;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11680, 11416, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 40, 11728, 40;
85.00191, 11688, 10712, 11728, 32, 11728, 40;
85.00191, 11688, 10520, 11728, 32, 11728, 40;
85.00191, 11680, 10520, 11728, 40, 11728, 40;
85.00191, 11680, 11680, 11728, 32, 11728, 40;
85.00191, 11680, 11128, 11728, 40, 11728, 40;
85.00191, 11680, 11128, 11728, 40, 11728, 40;
85.00191, 11688, 11200, 11728, 40, 11728, 40;
85.00191, 11688, 11032, 11728, 40, 11728, 40;
85.00191, 11680, 11032, 11728, 40, 11728, 40;
85.00191, 11688, 11288, 11728, 40, 11728, 40;
85.00191, 11688, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11728, 32, 11728, 40;
85.00191, 11688, 10832, 11728, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11384, 11728, 32, 11728, 40;
85.00191, 11680, 10824, 11728, 32, 11728, 40;
85.00191, 11680, 10824, 11736, 32, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 40, 11728, 40;
85.00191, 11688, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11688, 10976, 11728, 40, 11728, 40;
85.00191, 11680, 11008, 11728, 40, 11728, 40;
85.00191, 11680, 11008, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11688, 11104, 11728, 32, 11728, 40;
85.00191, 11688, 10376, 11728, 32, 11728, 40;
85.00191, 11680, 10376, 11728, 40, 11728, 40;
85.00191, 11688, 11536, 11728, 32, 11728, 40;
85.00191, 11688, 11536, 11728, 32, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11680, 11088, 11728, 32, 11728, 40;
85.00191, 11688, 11152, 11728, 32, 11728, 40;
85.00191, 11680, 10952, 11728, 32, 11728, 40;
85.00191, 11680, 10952, 11728, 32, 11728, 32;
85.00191, 11688, 11424, 11728, 40, 11728, 40;
85.00191, 11688, 10944, 11728, 40, 11728, 40;
85.00191, 11688, 10944, 11728, 40, 11728, 32;
85.00191, 11680, 10936, 11728, 32, 11728, 32;
85.00191, 11680, 10936, 11728, 32, 11728, 40;
85.00191, 11680, 11600, 11728, 40, 11728, 40;
85.00191, 11688, 11016, 11728, 32, 11728, 40;
85.00191, 11688, 11024, 11728, 32, 11728, 40;
85.00191, 11688, 11024, 11728, 40, 11728, 40;
85.00191, 11680, 11392, 11728, 40, 11728, 40;
85.00191, 11680, 11392, 11728, 40, 11728, 40;
85.00191, 11688, 11528, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 32;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 32, 11728, 40;
85.00191, 11688, 10880, 11736, 32, 11728, 40;
85.00191, 11688, 11240, 11736, 32, 11728, 40;
85.00191, 11688, 11240, 11728, 40, 11728, 40;
85.00191, 11688, 11048, 11728, 40, 11728, 40;
85.00191, 11688, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 10592, 11728, 40, 11728, 40;
85.00191, 11688, 11440, 11728, 40, 11728, 40;
85.00191, 11688, 11440, 11728, 32, 11728, 40;
85.00191, 11680, 11144, 11728, 40, 11728, 32;
85.00191, 11680, 11688, 11728, 40, 11728, 32;
85.00191, 11680, 11688, 11728, 40, 11728, 32;
85.00191, 11680, 11136, 11728, 40, 11728, 32;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11288, 11728, 32, 11728, 40;
85.00191, 11680, 11632, 11728, 32, 11728, 40;
85.00191, 11688, 11632, 11728, 32, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11688, 11552, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11688, 11384, 11728, 40, 11728, 40;
85.00191, 11688, 10792, 11728, 32, 11728, 40;
85.00191, 11688, 10792, 11728, 32, 11728, 40;
85.00191, 11680, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11448, 11728, 40, 11728, 40;
85.00191, 11680, 11448, 11728, 40, 11728, 40;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11688, 11168, 11728, 40, 11728, 40;
85.00191, 11680, 10872, 11728, 40, 11728, 40;
85.00191, 11680, 11504, 11728, 40, 11728, 40;
85.00191, 11680, 11504, 11728, 32, 11728, 40;
85.00191, 11688, 11112, 11728, 40, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 11112, 11728, 32, 11728, 40;
85.00191, 11688, 10760, 11728, 32, 11728, 40;
85.00191, 11688, 10760, 11728, 40, 11728, 40;
85.00191, 11680, 10704, 11728, 40, 11728, 40;
85.00191, 11680, 10704, 11728, 40, 11728, 40;
85.00191, 11680, 11688, 11728, 40, 11728, 40;
85.00191, 11680, 11064, 11728, 40, 11728, 40;
85.00191, 11680, 11064, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 32, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11688, 11280, 11728, 40, 11728, 40;
85.00191, 11680, 11336, 11728, 32, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11680, 11144, 11728, 32, 11728, 40;
85.00191, 11688, 11056, 11728, 40, 11728, 40;
85.00191, 11688, 11008, 11728, 40, 11728, 40;
85.00191, 11680, 11008, 11728, 32, 11728, 40;
85.00191, 11680, 11744, 11728, 40, 11728, 40;
85.00191, 11680, 11744, 11728, 40, 11728, 40;
85.00191, 11688, 10888, 11728, 32, 11728, 40;
85.00191, 11688, 11200, 11728, 32, 11728, 40;
85.00191, 11688, 11200, 11728, 32, 11728, 40;
85.00191, 11680, 11288, 11728, 40, 11728, 40;
85.00191, 11688, 11704, 11728, 32, 11728, 40;
85.00191, 11688, 11704, 11728, 32, 11728, 40;
85.00191, 11680, 10784, 11728, 40, 11728, 40;
85.00191, 11680, 11296, 11728, 40, 11728, 40;
85.00191, 11680, 11296, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 32, 11728, 40;
85.00191, 11688, 11232, 11728, 32, 11728, 40;
85.00191, 11680, 11496, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 10992, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 32, 11728, 40;
85.00191, 11680, 11544, 11728, 32, 11728, 40;
85.00191, 11680, 11544, 11728, 32, 11728, 40;
85.00191, 11688, 11128, 11728, 40, 11728, 40;
85.00191, 11680, 10664, 11728, 40, 11728, 40;
85.00191, 11680, 10664, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 40, 11728, 40;
85.00191, 11680, 11568, 11728, 40, 11728, 40;
85.00191, 11680, 11568, 11728, 32, 11728, 40;
85.00191, 11688, 11312, 11728, 40, 11728, 40;
85.00191, 11688, 11312, 11728, 40, 11728, 40;
85.00191, 11680, 10992, 11728, 40, 11728, 40;
85.00191, 11688, 11400, 11728, 40, 11728, 40;
85.00191, 11688, 10984, 11728, 40, 11728, 40;
85.00191, 11680, 10984, 11728, 40, 11728, 40;
85.00191, 11680, 11408, 11728, 32, 11728, 40;
85.00191, 11680, 11408, 11728, 32, 11728, 40;
85.00191, 11680, 11088, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 40, 11728, 40;
85.00191, 11680, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 10904, 11728, 40, 11728, 40;
85.00191, 11680, 10904, 11728, 40, 11728, 40;
85.00191, 11680, 11456, 11728, 32, 11728, 40;
85.00191, 11680, 11000, 11728, 32, 11728, 40;
85.00191, 11680, 11000, 11728, 40, 11728, 40;
85.00191, 11680, 10984, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 40, 11728, 40;
85.00191, 11688, 11272, 11728, 32, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11688, 11216, 11728, 40, 11728, 40;
85.00191, 11688, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11040, 11728, 32, 11728, 32;
85.00191, 11680, 11440, 11728, 32, 11728, 32;
85.00191, 11680, 10752, 11728, 32, 11728, 40;
85.00191, 11680, 10752, 11728, 40, 11728, 40;
85.00191, 11680, 11040, 11728, 40, 11728, 40;
85.00191, 11680, 11040, 11728, 40, 11728, 40;
85.00191, 11680, 11296, 11728, 32, 11728, 40;
85.00191, 11688, 11568, 11728, 32, 11728, 40;
85.00191, 11688, 11568, 11728, 40, 11728, 40;
85.00191, 11688, 10800, 11728, 40, 11728, 40;
85.00191, 11688, 11200, 11728, 40, 11728, 40;
85.00191, 11680, 11200, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11688, 11080, 11728, 32, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 32;
85.00191, 11688, 11208, 11728, 32, 11728, 32;
85.00191, 11688, 11208, 11728, 40, 11728, 40;
85.00191, 11680, 11056, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 32, 11728, 40;
85.00191, 11680, 11544, 11728, 40, 11728, 40;
85.00191, 11680, 11544, 11728, 40, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11688, 10592, 11728, 40, 11728, 40;
85.00191, 11680, 10592, 11728, 32, 11728, 40;
85.00191, 11680, 11480, 11728, 40, 11728, 40;
85.00191, 11680, 11480, 11728, 40, 11728, 32;
85.00191, 11680, 11376, 11728, 32, 11728, 40;
85.00191, 11688, 11112, 11728, 32, 11728, 40;
85.00191, 11688, 10992, 11728, 32, 11728, 40;
85.00191, 11680, 10992, 11728, 40, 11728, 40;
85.00191, 11680, 11464, 11728, 40, 11728, 40;
85.00191, 11680, 11464, 11728, 40, 11728, 32;
85.00191, 11680, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11216, 11728, 40, 11728, 40;
85.00191, 11680, 11000, 11728, 40, 11728, 32;
85.00191, 11680, 10984, 11728, 40, 11728, 32;
85.00191, 11680, 10984, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 40, 11728, 40;
85.00191, 11680, 11104, 11728, 40, 11728, 40;
85.00191, 11688, 11352, 11728, 40, 11728, 40;
85.00191, 11680, 11096, 11728, 40, 11728, 40;
85.00191, 11680, 11096, 11728, 32, 11728, 40;
85.00191, 11680, 11008, 11728, 40, 11728, 40;
85.00191, 11680, 11008, 11728, 40, 11728, 40;
85.00191, 11680, 11392, 11728, 32, 11728, 40;
85.00191, 11680, 11048, 11728, 32, 11728, 40;
85.00191, 11680, 11048, 11728, 40, 11728, 40;
85.00191, 11680, 11432, 11728, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 40;
85.00191, 11688, 11144, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 32, 11728, 40;
85.00191, 11680, 11448, 11728, 32, 11728, 32;
85.00191, 11680, 10760, 11728, 32, 11728, 32;
85.00191, 11680, 10760, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11208, 11728, 32, 11728, 32;
85.00191, 11680, 11248, 11728, 32, 11728, 32;
85.00191, 11680, 11248, 11728, 32, 11728, 40;
85.00191, 11680, 10912, 11728, 32, 11728, 40;
85.00191, 11680, 11176, 11728, 32, 11728, 32;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11352, 11728, 40, 11728, 40;
85.00191, 11680, 11352, 11728, 40, 11728, 40;
85.00191, 11680, 11320, 11728, 40, 11728, 40;
85.00191, 11680, 11256, 11728, 40, 11728, 40;
85.00191, 11688, 11256, 11728, 32, 11728, 32;
85.00191, 11680, 10776, 11728, 32, 11728, 32;
85.00191, 11680, 10776, 11728, 32, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11600, 11728, 40, 11728, 40;
85.00191, 11680, 11600, 11728, 32, 11728, 40;
85.00191, 11688, 11144, 11728, 32, 11728, 40;
85.00191, 11680, 10792, 11728, 40, 11728, 40;
85.00191, 11680, 10792, 11728, 40, 11728, 40;
85.00191, 11680, 11392, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11248, 11728, 32, 11728, 40;
85.00191, 11688, 11192, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 40, 11728, 40;
85.00191, 11688, 11152, 11728, 32, 11728, 40;
85.00191, 11680, 11280, 11728, 32, 11728, 40;
85.00191, 11680, 11280, 11728, 32, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11016, 11728, 40, 11728, 40;
85.00191, 11680, 11016, 11728, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 32, 11728, 40;
85.00191, 11680, 11264, 11728, 32, 11728, 40;
85.00191, 11680, 11264, 11728, 40, 11728, 40;
85.00191, 11688, 11056, 11728, 40, 11728, 40;
85.00191, 11688, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 11120, 11728, 40, 11728, 40;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11688, 11408, 11728, 40, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 32, 11728, 40;
85.00191, 11680, 10992, 11728, 40, 11728, 40;
85.00191, 11680, 10992, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11352, 11728, 32, 11728, 40;
85.00191, 11680, 11256, 11728, 32, 11728, 40;
85.00191, 11688, 11256, 11728, 40, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11680, 10920, 11728, 40, 11728, 40;
85.00191, 11680, 11456, 11728, 40, 11728, 32;
85.00191, 11680, 11496, 11728, 40, 11728, 32;
85.00191, 11680, 11496, 11728, 40, 11728, 40;
85.00191, 11688, 11008, 11728, 40, 11728, 40;
85.00191, 11688, 11008, 11728, 40, 11728, 40;
85.00191, 11680, 10928, 11728, 40, 11728, 32;
85.00191, 11680, 11584, 11728, 40, 11728, 32;
85.00191, 11680, 11584, 11728, 40, 11728, 40;
85.00191, 11680, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 40, 11728, 40;
85.00191, 11680, 11272, 11728, 32, 11728, 40;
85.00191, 11688, 11304, 11728, 32, 11728, 40;
85.00191, 11688, 11304, 11728, 32, 11728, 40;
85.00191, 11688, 11296, 11728, 40, 11728, 40;
85.00191, 11680, 11320, 11728, 32, 11728, 40;
85.00191, 11680, 11336, 11728, 32, 11728, 40;
85.00191, 11680, 11336, 11728, 40, 11728, 40;
85.00191, 11688, 10992, 11728, 32, 11728, 40;
85.00191, 11688, 10992, 11728, 32, 11728, 40;
85.00191, 11680, 11136, 11728, 40, 11728, 32;
85.00191, 11680, 11376, 11728, 40, 11728, 32;
85.00191, 11680, 11376, 11728, 32, 11728, 40;
85.00191, 11680, 10896, 11736, 32, 11728, 40;
85.00191, 11680, 10896, 11736, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 40, 11728, 40;
85.00191, 11680, 11152, 11728, 32, 11728, 40;
85.00191, 11688, 11088, 11728, 32, 11728, 40;
85.00191, 11688, 11048, 11728, 32, 11728, 40;
85.00191, 11680, 11048, 11728, 32, 11728, 40;
85.00191, 11680, 11432, 11728, 32, 11728, 40;
85.00191, 11680, 11432, 11728, 32, 11728, 32;
85.00191, 11688, 11248, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11688, 11232, 11728, 40, 11728, 40;
85.00191, 11680, 11112, 11728, 32, 11728, 40;
85.00191, 11688, 11336, 11728, 40, 11728, 32;
85.00191, 11680, 11040, 11728, 40, 11728, 32;
85.00191, 11680, 11040, 11728, 32, 11728, 40;
85.00191, 11688, 11072, 11728, 40, 11728, 40;
85.00191, 11688, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11768, 11728, 40, 11728, 40;
85.00191, 11680, 11768, 11728, 40, 11728, 40;
85.00191, 11680, 10776, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 32, 11728, 40;
85.00191, 11680, 11224, 11728, 40, 11728, 32;
85.00191, 11680, 11336, 11728, 40, 11728, 32;
85.00191, 11680, 11336, 11728, 40, 11728, 40;
85.00191, 11688, 11504, 11728, 32, 11728, 40;
85.00191, 11680, 10952, 11728, 32, 11728, 40;
85.00191, 11680, 10952, 11728, 32, 11728, 40;
85.00191, 11680, 11432, 11728, 32, 11728, 40;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11680, 10944, 11728, 40, 11728, 32;
85.00191, 11680, 11312, 11728, 32, 11728, 32;
85.00191, 11680, 11312, 11728, 32, 11728, 40;
85.00191, 11688, 11352, 11728, 40, 11728, 40;
85.00191, 11688, 10744, 11728, 40, 11728, 40;
85.00191, 11680, 10744, 11728, 40, 11728, 40;
85.00191, 11680, 11328, 11728, 40, 11728, 40;
85.00191, 11680, 11376, 11728, 40, 11728, 40;
85.00191, 11680, 11376, 11728, 40, 11728, 40;
85.00191, 11688, 11024, 11728, 40, 11728, 40;
85.00191, 11680, 11040, 11728, 40, 11728, 40;
85.00191, 11680, 11040, 11728, 32, 11728, 40;
85.00191, 11680, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 10976, 11728, 32, 11728, 40;
85.00191, 11688, 11200, 11728, 32, 11728, 40;
85.00191, 11688, 11200, 11728, 32, 11728, 40;
85.00191, 11680, 11104, 11728, 32, 11728, 40;
85.00191, 11680, 11360, 11728, 32, 11728, 40;
85.00191, 11688, 11360, 11728, 32, 11728, 32;
85.00191, 11680, 10856, 11728, 40, 11728, 32;
85.00191, 11680, 10856, 11728, 40, 11728, 40;
85.00191, 11680, 11400, 11728, 40, 11728, 40;
85.00191, 11688, 11064, 11728, 40, 11728, 40;
85.00191, 11688, 11064, 11728, 32, 11728, 32;
85.00191, 11680, 10944, 11728, 32, 11728, 32;
85.00191, 11680, 10944, 11728, 32, 11728, 40;
85.00191, 11680, 11344, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11072, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11680, 11176, 11728, 40, 11728, 40;
85.00191, 11688, 11208, 11728, 40, 11728, 32;
85.00191, 11680, 10944, 11728, 40, 11728, 32;
85.00191, 11680, 10944, 11728, 40, 11728, 40;
85.00191, 11680, 11456, 11728, 40, 11728, 40;
85.00191, 11680, 10760, 11728, 40, 11728, 40;
85.10667, 11680, 10760, 11728, 40, 11728, 40;
85.10667, 11680, 11104, 11728, 32, 11728, 40;
85.10667, 11680, 11104, 11728, 32, 11728, 40;
85.10667, 11680, 11264, 11728, 40, 11728, 40;
85.10667, 11680, 11488, 11728, 40, 11728, 40;
85.10667, 11680, 11488, 11728, 40, 11728, 40;
85.10667, 11680, 10680, 11728, 40, 11728, 40;
85.10667, 11680, 11272, 11728, 40, 11728, 40;
85.10667, 11680, 11272, 11728, 40, 11728, 40;
85.10667, 11680, 11248, 11728, 32, 11728, 40;
85.10667, 11680, 11248, 11728, 32, 11728, 32;
85.10667, 11680, 11200, 11728, 40, 11728, 40;
85.10667, 11680, 11384, 11728, 40, 11728, 40;
85.10667, 11688, 11384, 11728, 32, 11728, 40;
85.10667, 11688, 10856, 11728, 40, 11728, 40;
85.10667, 11688, 10856, 11728, 40, 11728, 40;
85.10667, 11680, 11352, 11728, 32, 11728, 40;
85.10667, 11680, 11312, 11728, 32, 11728, 40;
85.10667, 11680, 11312, 11728, 40, 11728, 40;
85.10667, 11688, 11152, 11728, 40, 11728, 40;
85.10667, 11680, 10752, 11728, 40, 11728, 40;
85.10667, 11680, 10752, 11728, 40, 11728, 40;
85.10667, 11680, 11584, 11728, 40, 11728, 40;
85.10667, 11680, 10888, 11728, 40, 11728, 40;
85.10667, 11680, 10888, 11728, 40, 11728, 40;
85.10667, 11680, 11072, 11728, 40, 11728, 40;
85.10667, 11680, 10936, 11728, 40, 11728, 40;
85.10667, 11680, 10936, 11728, 40, 11728, 40;
85.10667, 11680, 11064, 11728, 32, 11728, 40;
85.10667, 11680, 11064, 11728, 32, 11728, 40;
85.10667, 11680, 11168, 11728, 32, 11728, 40;
85.10667, 11680, 11168, 11728, 32, 11728, 40;
85.10667, 11680, 11640, 11728, 40, 11728, 40;
85.10667, 11688, 11288, 11728, 40, 11728, 40;
85.10667, 11688, 11288, 11728, 40, 11728, 40;
85.10667, 11680, 10856, 11728, 40, 11728, 40;
85.10667, 11688, 11704, 11728, 40, 11728, 40;
85.10667, 11688, 11704, 11728, 32, 11728, 40;
85.10667, 11680, 11168, 11728, 40, 11728, 40;
85.10667, 11680, 11496, 11728, 40, 11728, 40;
85.10667, 11680, 11496, 11728, 32, 11728, 40;
85.10667, 11688, 11112, 11728, 32, 11728, 40;
85.10667, 11688, 11112, 11728, 32, 11728, 40;
85.10667, 11680, 11080, 11728, 32, 11728, 40;
85.10667, 11680, 11440, 11728, 40, 11728, 40;
85.10667, 11680, 11360, 11728, 40, 11728, 40;
85.10667, 11680, 11360, 11728, 32, 11728, 40;
85.10667, 11688, 10920, 11728, 32, 11728, 40;
85.10667, 11688, 10920, 11728, 32, 11728, 40;
85.10667, 11680, 11128, 11728, 40, 11728, 40;
85.10667, 11688, 11352, 11728, 40, 11728, 40;
85.10667, 11688, 11352, 11728, 32, 11728, 40;
85.10667, 11680, 10904, 11728, 32, 11728, 40;
85.10667, 11680, 11520, 11728, 32, 11728, 40;
85.10667, 11688, 11520, 11728, 40, 11728, 40;
85.10667, 11680, 10944, 11728, 40, 11728, 40;
85.10667, 11680, 10944, 11728, 40, 11728, 40;
85.10667, 11680, 10880, 11728, 32, 11728, 40;
85.10667, 11680, 11656, 11728, 32, 11728, 40;
85.10667, 11680, 11656, 11728, 40, 11728, 40;
85.10667, 11680, 11000, 11728, 32, 11728, 40;
85.10667, 11680, 11000, 11728, 32, 11728, 40;
85.10667, 11680, 11112, 11728, 32, 11728, 40;
85.10667, 11680, 11144, 11728, 32, 11728, 40;
85.10667, 11680, 11144, 11728, 40, 11728, 40;
85.52571, 11688, 11224, 11728, 32, 11728, 40;
85.52571, 11688, 11232, 11728, 32, 11728, 40;
85.52571, 11680, 11232, 11728, 40, 11728, 40;
85.52571, 11680, 11600, 11728, 32, 11728, 40;
85.52571, 11680, 11056, 11728, 32, 11728, 40;
85.52571, 11680, 11056, 11728, 40, 11728, 40;
85.52571, 11680, 10848, 11728, 40, 11728, 40;
85.52571, 11680, 11344, 11728, 40, 11728, 40;
85.52571, 11680, 11344, 11728, 32, 11728, 40;
85.52571, 11680, 11152, 11728, 40, 11728, 40;
85.52571, 11680, 11152, 11728, 40, 11728, 40;
85.52571, 11680, 11728, 11728, 32, 11728, 40;
85.52571, 11680, 11056, 11728, 32, 11728, 40;
85.52571, 11680, 11056, 11728, 32, 11728, 40;
85.52571, 11680, 11400, 11728, 40, 11728, 40;
85.52571, 11680, 11400, 11728, 40, 11728, 40;
86.15428, 11680, 11296, 11728, 32, 11728, 40;
86.15428, 11680, 11584, 11728, 32, 11728, 40;
86.15428, 11680, 11584, 11728, 32, 11728, 40;
86.15428, 11680, 11568, 11728, 40, 11728, 40;
86.15428, 11680, 11288, 11728, 40, 11728, 40;
86.15428, 11680, 11288, 11728, 40, 11728, 40;
86.15428, 11680, 11424, 11728, 40, 11728, 40;
86.15428, 11680, 11424, 11728, 40, 11728, 40;
86.15428, 11680, 11632, 11728, 32, 11728, 32;
86.15428, 11680, 11472, 11728, 32, 11728, 32;
86.15428, 11680, 11472, 11728, 32, 11728, 40;
86.15428, 11680, 11648, 11728, 40, 11728, 40;
86.15428, 11680, 11648, 11728, 40, 11728, 40;
86.15428, 11680, 11472, 11728, 32, 11728, 40;
86.15428, 11680, 11200, 11728, 40, 11728, 40;
86.15428, 11680, 11216, 11728, 40, 11728, 40;
86.36382, 11680, 11216, 11728, 40, 11728, 40;
86.36382, 11680, 11536, 11728, 40, 11728, 40;
86.36382, 11680, 11704, 11728, 40, 11728, 40;
86.36382, 11680, 11704, 11728, 40, 11728, 40;
86.36382, 11680, 10976, 11728, 40, 11728, 40;
86.36382, 11680, 10976, 11728, 40, 11728, 40;
86.36382, 11680, 11304, 11728, 40, 11728, 32;
86.36382, 11680, 11888, 11728, 40, 11728, 32;
86.36382, 11680, 11888, 11728, 40, 11728, 40;
86.36382, 11680, 11232, 11728, 40, 11728, 40;
86.36382, 11680, 11232, 11728, 40, 11728, 40;
86.36382, 11680, 11232, 11728, 32, 11728, 40;
86.36382, 11680, 11160, 11728, 32, 11728, 40;
86.36382, 11680, 11160, 11728, 40, 11728, 40;
86.36382, 11680, 11112, 11728, 40, 11728, 40;
86.36382, 11680, 11112, 11728, 40, 11728, 40;
86.36382, 11680, 11632, 11728, 32, 11728, 40;
86.36382, 11680, 11528, 11728, 32, 11728, 40;
86.36382, 11680, 11528, 11728, 32, 11728, 40;
86.36382, 11680, 11392, 11728, 32, 11728, 40;
86.36382, 11680, 11368, 11728, 32, 11728, 40;
86.36382, 11680, 11368, 11728, 40, 11728, 40;
86.36382, 11680, 11864, 11728, 32, 11728, 40;
86.36382, 11688, 11624, 11728, 40, 11728, 40;
86.36382, 11688, 11624, 11728, 40, 11728, 32;
86.36382, 11688, 10904, 11728, 32, 11728, 40;
86.36382, 11680, 11144, 11728, 32, 11728, 40;
86.36382, 11680, 11144, 11728, 40, 11728, 40;
86.36382, 11680, 11424, 11728, 32, 11728, 40;
86.36382, 11680, 11424, 11728, 32, 11728, 40;
86.36382, 11680, 11160, 11728, 32, 11728, 40;
86.36382, 11680, 11408, 11728, 32, 11728, 40;
86.78286, 11680, 11408, 11728, 40, 11728, 40;
86.78286, 11680, 11496, 11728, 40, 11728, 40;
86.78286, 11680, 11344, 11728, 40, 11728, 40;
86.78286, 11680, 11344, 11728, 32, 11728, 40;
86.78286, 11680, 11592, 11728, 40, 11728, 40;
86.78286, 11680, 11592, 11728, 40, 11728, 40;
86.78286, 11680, 11848, 11728, 40, 11728, 40;
86.78286, 11680, 11600, 11728, 40, 11728, 40;
86.78286, 11680, 11600, 11728, 40, 11728, 40;
86.78286, 11680, 11544, 11728, 40, 11728, 40;
86.78286, 11680, 11544, 11728, 40, 11728, 40;
86.78286, 11680, 11576, 11728, 40, 11728, 40;
86.78286, 11688, 11040, 11728, 40, 11728, 40;
86.78286, 11688, 11040, 11728, 40, 11728, 40;
86.78286, 11680, 11112, 11728, 32, 11728, 40;
86.78286, 11680, 11408, 11728, 40, 11728, 40;
87.30667, 11680, 11408, 11728, 40, 11728, 40;
87.30667, 11680, 11304, 11728, 32, 11728, 40;
87.30667, 11672, 11744, 11728, 40, 11728, 40;
87.30667, 11672, 11744, 11728, 40, 11728, 40;
87.30667, 11680, 11624, 11728, 40, 11728, 40;
87.30667, 11680, 11552, 11728, 40, 11728, 40;
87.30667, 11680, 11552, 11728, 40, 11728, 40;
87.30667, 11680, 11280, 11728, 40, 11728, 40;
87.30667, 11680, 11280, 11728, 40, 11728, 32;
87.30667, 11680, 11968, 11728, 32, 11728, 32;
87.30667, 11680, 11080, 11728, 32, 11728, 32;
87.30667, 11680, 11080, 11728, 32, 11728, 40;
87.30667, 11680, 11416, 11728, 40, 11728, 40;
87.30667, 11680, 11368, 11728, 40, 11728, 40;
87.30667, 11680, 11368, 11728, 32, 11728, 32;
87.30667, 11680, 11000, 11728, 40, 11728, 32;
87.30667, 11680, 11000, 11728, 40, 11728, 40;
87.51619, 11680, 11632, 11728, 32, 11728, 32;
87.51619, 11680, 11528, 11728, 32, 11728, 32;
87.51619, 11680, 11528, 11728, 40, 11728, 40;
87.51619, 11680, 11816, 11728, 32, 11728, 40;
87.51619, 11680, 11816, 11728, 32, 11728, 40;
87.51619, 11680, 11464, 11728, 40, 11728, 40;
87.51619, 11680, 11136, 11728, 40, 11728, 40;
87.51619, 11680, 11720, 11728, 40, 11728, 40;
87.51619, 11680, 11720, 11728, 40, 11728, 40;
87.51619, 11680, 11544, 11728, 32, 11728, 40;
87.51619, 11680, 11544, 11728, 32, 11728, 40;
87.51619, 11680, 11272, 11728, 40, 11728, 40;
87.51619, 11680, 11448, 11728, 40, 11728, 40;
87.51619, 11680, 11448, 11728, 32, 11728, 40;
87.51619, 11680, 11840, 11728, 40, 11728, 40;
87.51619, 11680, 11240, 11728, 40, 11728, 40;
87.83047, 11680, 11240, 11728, 32, 11728, 40;
87.83047, 11680, 11232, 11728, 40, 11728, 40;
87.83047, 11680, 11232, 11728, 40, 11728, 40;
87.83047, 11680, 11344, 11728, 40, 11728, 32;
87.83047, 11680, 11576, 11728, 40, 11728, 32;
87.83047, 11680, 11576, 11728, 32, 11728, 40;
87.83047, 11680, 11328, 11728, 32, 11728, 40;
87.83047, 11680, 11328, 11728, 32, 11728, 40;
87.83047, 11680, 11072, 11728, 40, 11728, 32;
87.83047, 11680, 11184, 11728, 40, 11728, 32;
87.83047, 11680, 11184, 11728, 32, 11728, 40;
87.83047, 11680, 11864, 11728, 32, 11728, 40;
87.83047, 11680, 11784, 11728, 32, 11728, 40;
87.83047, 11680, 11784, 11728, 32, 11728, 40;
87.83047, 11680, 11392, 11728, 40, 11728, 40;
87.83047, 11680, 11392, 11728, 40, 11728, 32;
88.24953, 11680, 11640, 11728, 40, 11728, 40;
88.24953, 11680, 10936, 11728, 32, 11728, 40;
88.24953, 11680, 11424, 11728, 32, 11728, 40;
88.24953, 11680, 11424, 11728, 40, 11728, 40;
88.24953, 11680, 11864, 11728, 40, 11728, 40;
88.24953, 11680, 11864, 11728, 40, 11728, 40;
88.24953, 11680, 11672, 11728, 32, 11728, 40;
88.24953, 11680, 11464, 11728, 32, 11728, 40;
88.24953, 11680, 11464, 11728, 32, 11728, 40;
88.24953, 11680, 11456, 11728, 40, 11728, 40;
88.24953, 11680, 11136, 11728, 40, 11728, 40;
88.24953, 11680, 11136, 11728, 40, 11728, 40;
88.24953, 11680, 11112, 11728, 32, 11728, 40;
88.24953, 11680, 11112, 11728, 32, 11728, 40;
88.24953, 11680, 11344, 11728, 40, 11728, 40;
88.24953, 11680, 11040, 11728, 40, 11728, 40;
88.45905, 11680, 11040, 11728, 40, 11728, 32;
88.45905, 11680, 11080, 11728, 40, 11728, 32;
88.45905, 11680, 11080, 11728, 40, 11728, 32;
88.45905, 11680, 11248, 11728, 40, 11728, 40;
88.45905, 11680, 11160, 11728, 40, 11728, 40;
88.45905, 11680, 11160, 11728, 40, 11728, 40;
88.45905, 11680, 11768, 11728, 40, 11728, 40;
88.45905, 11680, 11400, 11728, 40, 11728, 40;
88.45905, 11680, 11400, 11728, 40, 11728, 40;
88.45905, 11680, 11008, 11728, 32, 11728, 40;
88.45905, 11680, 11016, 11728, 32, 11728, 40;
88.45905, 11680, 11016, 11728, 40, 11728, 40;
88.45905, 11680, 10808, 11728, 40, 11728, 40;
88.45905, 11680, 10896, 11728, 40, 11728, 40;
88.45905, 11680, 10896, 11728, 32, 11728, 40;
88.45905, 11680, 11328, 11728, 40, 11728, 40;
88.87810, 11680, 11328, 11728, 40, 11728, 40;
88.87810, 11680, 11032, 11728, 32, 11728, 40;
88.87810, 11672, 11552, 11728, 32, 11728, 40;
88.87810, 11672, 11552, 11728, 32, 11728, 40;
88.87810, 11680, 11864, 11728, 32, 11728, 40;
88.87810, 11680, 11864, 11728, 32, 11728, 40;
88.87810, 11680, 11808, 11728, 40, 11728, 40;
88.87810, 11680, 11944, 11728, 40, 11728, 40;
88.87810, 11680, 11944, 11728, 32, 11728, 40;
88.87810, 11680, 11552, 11728, 32, 11728, 40;
88.87810, 11680, 11128, 11728, 32, 11728, 40;
88.87810, 11680, 11128, 11728, 40, 11728, 40;
88.87810, 11680, 11136, 11728, 32, 11728, 40;
88.87810, 11680, 11136, 11728, 32, 11728, 40;
88.87810, 11680, 11568, 11728, 40, 11728, 32;
88.87810, 11672, 11672, 11728, 40, 11728, 32;
88.87810, 11672, 11672, 11728, 32, 11728, 32;
89.40190, 11680, 12056, 11728, 32, 11728, 32;
89.40190, 11680, 11672, 11728, 40, 11728, 40;
89.40190, 11680, 11672, 11728, 40, 11728, 40;
89.40190, 11680, 10984, 11728, 32, 11728, 40;
89.40190, 11680, 11584, 11728, 32, 11728, 40;
89.40190, 11680, 11584, 11728, 40, 11728, 40;
89.40190, 11688, 11880, 11728, 40, 11728, 40;
89.40190, 11688, 10992, 11728, 40, 11728, 40;
89.40190, 11680, 10992, 11728, 32, 11728, 40;
89.40190, 11672, 11872, 11728, 40, 11728, 40;
89.40190, 11672, 11872, 11728, 40, 11728, 32;
89.40190, 11688, 11792, 11728, 40, 11728, 40;
89.40190, 11688, 10824, 11728, 40, 11728, 40;
89.40190, 11680, 10824, 11728, 40, 11728, 40;
89.40190, 11680, 11904, 11728, 40, 11728, 40;
89.40190, 11680, 11904, 11728, 40, 11728, 40;
89.61143, 11688, 11648, 11728, 40, 11728, 40;
89.61143, 11672, 11288, 11728, 40, 11728, 40;
89.61143, 11672, 11288, 11728, 40, 11728, 40;
89.61143, 11680, 12184, 11728, 32, 11728, 40;
89.61143, 11680, 11368, 11728, 32, 11728, 40;
89.61143, 11680, 11368, 11728, 32, 11728, 40;
89.61143, 11672, 11424, 11728, 40, 11728, 40;
89.61143, 11672, 11424, 11728, 40, 11728, 40;
89.61143, 11688, 11592, 11728, 40, 11728, 40;
89.61143, 11672, 11472, 11728, 40, 11728, 40;
89.61143, 11672, 11824, 11728, 40, 11728, 40;
89.61143, 11680, 11824, 11728, 40, 11728, 40;
89.61143, 11680, 11392, 11728, 40, 11728, 40;
89.61143, 11680, 11392, 11728, 40, 11728, 40;
89.61143, 11680, 11392, 11728, 32, 11728, 40;
89.61143, 11680, 11392, 11728, 32, 11728, 40;
89.82095, 11680, 11264, 11728, 32, 11728, 40;
89.82095, 11680, 12176, 11728, 40, 11728, 40;
89.82095, 11680, 12176, 11728, 40, 11728, 40;
89.82095, 11680, 10904, 11728, 40, 11728, 40;
89.82095, 11680, 12048, 11728, 40, 11728, 40;
89.82095, 11680, 12048, 11728, 40, 11728, 32;
89.82095, 11680, 10696, 11728, 40, 11728, 40;
89.82095, 11680, 12144, 11728, 40, 11728, 40;
89.82095, 11680, 12144, 11728, 32, 11728, 40;
89.82095, 11680, 11176, 11728, 40, 11728, 40;
89.82095, 11680, 11176, 11728, 40, 11728, 40;
89.82095, 11688, 11992, 11728, 40, 11728, 40;
89.82095, 11680, 10880, 11728, 40, 11728, 40;
89.82095, 11680, 10880, 11728, 40, 11728, 40;
89.82095, 11688, 11480, 11728, 40, 11728, 40;
89.82095, 11688, 12016, 11728, 40, 11728, 32;
89.82095, 11672, 12016, 11728, 32, 11728, 32;
90.24001, 11680, 10816, 11728, 40, 11728, 32;
90.24001, 11680, 10816, 11728, 40, 11728, 40;
90.24001, 11680, 12312, 11728, 40, 11728, 40;
90.24001, 11680, 10920, 11728, 40, 11728, 40;
90.24001, 11680, 11872, 11728, 40, 11728, 40;
90.24001, 11680, 11872, 11728, 40, 11728, 40;
90.24001, 11680, 11920, 11728, 32, 11728, 40;
90.24001, 11680, 11920, 11728, 32, 11728, 40;
90.24001, 11680, 11104, 11728, 40, 11728, 40;
90.24001, 11680, 11720, 11728, 40, 11728, 40;
90.24001, 11688, 11720, 11728, 40, 11728, 40;
90.24001, 11672, 12128, 11728, 40, 11728, 40;
90.24001, 11672, 12128, 11728, 40, 11728, 40;
90.24001, 11680, 10784, 11728, 32, 11728, 40;
90.24001, 11680, 12152, 11728, 32, 11728, 40;
90.24001, 11680, 12152, 11728, 40, 11728, 40;
90.86858, 11680, 11688, 11728, 40, 11728, 40;
90.86858, 11680, 11056, 11728, 40, 11728, 40;
90.86858, 11672, 11056, 11728, 40, 11728, 32;
90.86858, 11680, 11840, 11728, 40, 11728, 32;
90.86858, 11680, 11840, 11728, 40, 11728, 40;
90.86858, 11680, 11776, 11728, 40, 11728, 40;
90.86858, 11672, 12128, 11728, 40, 11728, 40;
90.86858, 11672, 12128, 11728, 40, 11728, 40;
90.86858, 11672, 11000, 11728, 32, 11728, 40;
90.86858, 11672, 11000, 11728, 32, 11728, 40;
90.86858, 11680, 11416, 11728, 40, 11728, 40;
90.86858, 11688, 11952, 11728, 32, 11728, 40;
90.86858, 11680, 12344, 11728, 32, 11728, 40;
90.86858, 11680, 12344, 11728, 40, 11728, 40;
90.86858, 11680, 12408, 11728, 40, 11728, 40;
90.86858, 11680, 12408, 11728, 40, 11728, 32;
91.49715, 11680, 11512, 11728, 40, 11728, 40;
91.49715, 11672, 12328, 11728, 40, 11728, 40;
91.49715, 11672, 12328, 11728, 40, 11728, 40;
91.49715, 11672, 11952, 11728, 40, 11728, 40;
91.49715, 11672, 11192, 11728, 40, 11728, 40;
91.49715, 11672, 11192, 11728, 32, 11728, 40;
91.49715, 11672, 11376, 11728, 40, 11728, 40;
91.49715, 11672, 11376, 11728, 40, 11728, 32;
91.49715, 11672, 11328, 11728, 32, 11728, 40;
91.49715, 11680, 11488, 11728, 32, 11728, 40;
91.49715, 11680, 11488, 11728, 40, 11728, 40;
91.49715, 11672, 12488, 11728, 40, 11728, 40;
91.49715, 11672, 12792, 11728, 40, 11728, 40;
91.49715, 11672, 12792, 11728, 40, 11728, 40;
91.49715, 11680, 12544, 11728, 40, 11728, 40;
91.49715, 11680, 12544, 11728, 40, 11728, 40;
91.49715, 11688, 11776, 11728, 32, 11728, 40;
91.81143, 11688, 11568, 11728, 32, 11728, 40;
91.81143, 11680, 11568, 11728, 40, 11728, 40;
91.81143, 11672, 11008, 11728, 40, 11728, 40;
91.81143, 11672, 11096, 11728, 40, 11728, 40;
91.81143, 11672, 11096, 11728, 40, 11728, 40;
91.81143, 11680, 12112, 11728, 40, 11728, 40;
91.81143, 11680, 12576, 11728, 40, 11728, 40;
91.81143, 11680, 12576, 11728, 40, 11728, 40;
91.81143, 11680, 11312, 11728, 32, 11728, 40;
91.81143, 11680, 11312, 11728, 32, 11728, 40;
91.81143, 11672, 11088, 11728, 40, 11728, 40;
91.81143, 11680, 11976, 11728, 40, 11728, 40;
91.81143, 11680, 11976, 11728, 40, 11728, 32;
91.81143, 11688, 11864, 11728, 40, 11728, 40;
91.81143, 11688, 11016, 11728, 40, 11728, 40;
91.81143, 11672, 11016, 11728, 40, 11728, 40;
92.44000, 11672, 11712, 11728, 32, 11728, 40;
92.44000, 11672, 11712, 11728, 32, 11728, 40;
92.44000, 11680, 13184, 11728, 40, 11728, 40;
92.44000, 11672, 11424, 11728, 40, 11728, 40;
92.44000, 11672, 11424, 11728, 40, 11728, 40;
92.44000, 11680, 11400, 11728, 40, 11728, 40;
92.44000, 11680, 11400, 11728, 40, 11728, 40;
92.44000, 11680, 11688, 11728, 40, 11728, 32;
92.44000, 11672, 11216, 11728, 40, 11728, 32;
92.44000, 11672, 11216, 11728, 40, 11728, 40;
92.44000, 11680, 12136, 11728, 32, 11728, 40;
92.44000, 11680, 10816, 11728, 32, 11728, 40;
92.44000, 11672, 10816, 11728, 32, 11728, 40;
92.44000, 11680, 11896, 11728, 40, 11728, 32;
92.44000, 11680, 12856, 11728, 40, 11728, 32;
92.44000, 11680, 12856, 11728, 32, 11728, 40;
93.06857, 11672, 11192, 11728, 32, 11728, 40;
93.06857, 11672, 13400, 11728, 32, 11728, 40;
93.06857, 11680, 13400, 11728, 32, 11728, 40;
93.06857, 11672, 12216, 11728, 40, 11728, 40;
93.06857, 11672, 12216, 11728, 40, 11728, 40;
93.06857, 11672, 11704, 11728, 32, 11728, 40;
93.06857, 11680, 13008, 11728, 32, 11728, 40;
93.06857, 11680, 13008, 11728, 40, 11728, 40;
93.06857, 11680, 12880, 11728, 40, 11728, 40;
93.06857, 11680, 11688, 11728, 40, 11728, 40;
93.06857, 11672, 11688, 11728, 32, 11728, 40;
93.06857, 11672, 11008, 11728, 40, 11728, 40;
93.06857, 11672, 11008, 11728, 40, 11728, 40;
93.06857, 11672, 11424, 11728, 40, 11728, 40;
93.06857, 11672, 11624, 11728, 40, 11728, 40;
93.06857, 11680, 11624, 11728, 40, 11728, 40;
93.06857, 11680, 12136, 11728, 40, 11728, 40;
93.80191, 11680, 12136, 11728, 40, 11728, 40;
93.80191, 11688, 12480, 11728, 32, 11728, 40;
93.80191, 11680, 13984, 11728, 32, 11728, 40;
93.80191, 11680, 13824, 11728, 40, 11728, 40;
93.80191, 11680, 13824, 11728, 40, 11728, 32;
93.80191, 11680, 13512, 11728, 40, 11728, 32;
93.80191, 11680, 13512, 11728, 40, 11728, 40;
93.80191, 11664, 11336, 11728, 40, 11728, 40;
93.80191, 11672, 11168, 11728, 40, 11728, 40;
93.80191, 11672, 11168, 11728, 32, 11728, 32;
93.80191, 11688, 13568, 11728, 40, 11728, 40;
93.80191, 11688, 11480, 11728, 40, 11728, 40;
93.80191, 11664, 11480, 11728, 40, 11728, 40;
93.80191, 11680, 11136, 11728, 32, 11728, 40;
93.80191, 11680, 11136, 11728, 32, 11728, 40;
93.80191, 11680, 12952, 11728, 32, 11728, 40;
94.11620, 11672, 10624, 11728, 32, 11728, 40;
94.11620, 11672, 10624, 11728, 40, 11728, 40;
94.11620, 11680, 13608, 11728, 40, 11728, 40;
94.11620, 11680, 13608, 11728, 40, 11728, 40;
94.11620, 11664, 11176, 11728, 32, 11728, 40;
94.11620, 11672, 13088, 11728, 32, 11728, 40;
94.11620, 11672, 13088, 11728, 40, 11728, 40;
94.11620, 11688, 12832, 11728, 40, 11728, 40;
94.11620, 11688, 9816, 11728, 40, 11728, 40;
94.11620, 11672, 9816, 11728, 40, 11728, 40;
94.11620, 11680, 12984, 11728, 40, 11728, 40;
94.11620, 11680, 12984, 11728, 40, 11728, 32;
94.11620, 11688, 11736, 11728, 40, 11728, 32;
94.11620, 11664, 10776, 11728, 40, 11728, 32;
94.11620, 11664, 10776, 11728, 32, 11728, 40;
94.11620, 11680, 13016, 11728, 40, 11728, 40;
95.16381, 11688, 13016, 11728, 40, 11728, 40;
95.16381, 11688, 13016, 11728, 40, 11720, 40;
95.16381, 11656, 15176, 11720, 40, 11720, 40;
95.16381, 11672, 15488, 11720, 40, 11720, 40;
95.16381, 11672, 15488, 11720, 40, 11728, 40;
95.16381, 11648, 15200, 11728, 40, 11728, 40;
95.16381, 11648, 15200, 11728, 40, 11720, 40;
95.16381, 11688, 14080, 11720, 32, 11728, 40;
95.16381, 11664, 11048, 11720, 32, 11728, 40;
95.16381, 11664, 11048, 11728, 32, 11728, 40;
95.16381, 11656, 14256, 11728, 40, 11728, 32;
95.16381, 11656, 14168, 11728, 40, 11720, 32;
95.16381, 11664, 14168, 11728, 32, 11720, 40;
95.16381, 11672, 13984, 11728, 32, 11720, 40;
95.16381, 11672, 13984, 11728, 32, 11720, 32;
95.16381, 11680, 13576, 11728, 40, 11720, 40;
95.16381, 11680, 13168, 11728, 40, 11720, 40;
95.47810, 11680, 13168, 11728, 32, 11720, 40;
95.47810, 11672, 13280, 11728, 40, 11720, 40;
95.47810, 11672, 14576, 11728, 40, 11720, 40;
95.47810, 11656, 14576, 11728, 40, 11720, 40;
95.47810, 11664, 14352, 11728, 32, 11720, 40;
95.47810, 11664, 14352, 11728, 32, 11728, 40;
95.47810, 11672, 10920, 11728, 32, 11728, 40;
95.47810, 11688, 10688, 11728, 32, 11728, 40;
95.47810, 11688, 12696, 11728, 32, 11728, 40;
95.47810, 11664, 12696, 11728, 32, 11728, 40;
95.47810, 11680, 9720, 11728, 40, 11728, 40;
95.47810, 11680, 9720, 11720, 40, 11720, 40;
95.47810, 11672, 13352, 11728, 40, 11720, 40;
95.47810, 11672, 11536, 11728, 40, 11728, 40;
95.47810, 11672, 11536, 11728, 40, 11728, 40;
95.47810, 11672, 12848, 11728, 32, 11728, 40;
95.68762, 11672, 12848, 11728, 32, 11736, 32;
95.68762, 11664, 11064, 11712, 32, 11712, 40;
95.68762, 11632, 17800, 11712, 32, 11712, 40;
95.68762, 11632, 17800, 11712, 40, 11712, 40;
95.68762, 11640, 16240, 11720, 40, 11712, 40;
95.68762, 11640, 15160, 11720, 40, 11720, 40;
95.68762, 11648, 15160, 11720, 40, 11720, 40;
95.68762, 11656, 14984, 11720, 32, 11720, 40;
95.68762, 11656, 14984, 11720, 32, 11720, 40;
95.68762, 11664, 14112, 11720, 32, 11720, 40;
95.68762, 11664, 13576, 11720, 32, 11720, 40;
95.68762, 11664, 13576, 11728, 40, 11728, 40;
95.68762, 11672, 12720, 11728, 32, 11728, 40;
95.68762, 11672, 12720, 11728, 32, 11728, 40;
95.68762, 11672, 12976, 11728, 40, 11728, 40;
95.68762, 11680, 12104, 11728, 40, 11728, 40;
95.68762, 11680, 12104, 11728, 40, 11728, 40;
95.68762, 11672, 12400, 11728, 40, 11728, 32;
95.68762, 11664, 12312, 11728, 32, 11728, 32;
95.68762, 11664, 12312, 11728, 32, 11728, 40;
95.68762, 11672, 12784, 11728, 32, 11728, 40;
95.68762, 11672, 12720, 11728, 32, 11728, 40;
95.68762, 11672, 12720, 11728, 32, 11728, 40;
95.68762, 11680, 12696, 11728, 40, 11728, 40;
95.68762, 11680, 11616, 11728, 40, 11728, 40;
95.68762, 11672, 11616, 11728, 40, 11728, 40;
95.68762, 11680, 12008, 11728, 40, 11728, 40;
95.68762, 11680, 12008, 11728, 40, 11728, 40;
95.68762, 11672, 11952, 11728, 32, 11728, 40;
95.68762, 11672, 11584, 11728, 32, 11728, 40;
95.68762, 11672, 11584, 11728, 32, 11728, 32;
95.68762, 11672, 12760, 11728, 40, 11728, 32;
95.68762, 11672, 12224, 11728, 40, 11728, 32;
96.10667, 11672, 12224, 11728, 32, 11728, 40;
96.10667, 11672, 12736, 11728, 32, 11728, 40;
96.10667, 11672, 12736, 11728, 32, 11728, 40;
96.10667, 11672, 12760, 11728, 32, 11728, 40;
96.10667, 11672, 12128, 11728, 32, 11728, 40;
96.10667, 11672, 12128, 11728, 32, 11728, 40;
96.10667, 11680, 12616, 11728, 32, 11728, 40;
96.10667, 11680, 12616, 11728, 32, 11728, 40;
96.10667, 11680, 11576, 11728, 32, 11728, 40;
96.10667, 11680, 11936, 11728, 32, 11728, 40;
96.10667, 11680, 11696, 11728, 40, 11728, 40;
96.10667, 11680, 11696, 11728, 40, 11728, 40;
96.10667, 11672, 11912, 11728, 32, 11728, 40;
96.10667, 11672, 11912, 11728, 32, 11728, 40;
96.10667, 11680, 11312, 11728, 40, 11728, 40;
96.10667, 11672, 12920, 11728, 40, 11728, 40;
96.42096, 11672, 12920, 11728, 40, 11728, 40;
96.42096, 11672, 11952, 11728, 32, 11728, 32;
96.42096, 11672, 12376, 11728, 32, 11728, 32;
96.42096, 11672, 12376, 11728, 40, 11728, 40;
96.42096, 11672, 13288, 11728, 40, 11728, 40;
96.42096, 11672, 13288, 11728, 40, 11728, 40;
96.42096, 11672, 12656, 11728, 32, 11728, 40;
96.42096, 11672, 12304, 11728, 32, 11728, 40;
96.42096, 11672, 12304, 11728, 32, 11728, 40;
96.42096, 11680, 11848, 11728, 32, 11728, 40;
96.42096, 11680, 11848, 11728, 32, 11728, 40;
96.42096, 11672, 12520, 11728, 40, 11728, 40;
96.42096, 11672, 12112, 11728, 40, 11728, 40;
96.42096, 11672, 12112, 11728, 32, 11728, 40;
96.42096, 11672, 12344, 11728, 32, 11728, 40;
96.42096, 11672, 13072, 11728, 32, 11728, 40;
96.42096, 11672, 13072, 11728, 32, 11728, 40;
96.63048, 11672, 12456, 11728, 40, 11728, 40;
96.63048, 11672, 12456, 11728, 40, 11728, 40;
96.63048, 11680, 12472, 11728, 40, 11728, 40;
96.63048, 11680, 11808, 11728, 32, 11728, 40;
96.63048, 11680, 11784, 11728, 32, 11728, 40;
96.63048, 11672, 11784, 11728, 32, 11728, 40;
96.63048, 11680, 11944, 11728, 40, 11728, 40;
96.63048, 11680, 11944, 11728, 40, 11728, 40;
96.63048, 11672, 12632, 11728, 32, 11728, 32;
96.63048, 11680, 10888, 11728, 32, 11728, 32;
96.63048, 11680, 10888, 11728, 40, 11728, 32;
96.63048, 11672, 12496, 11728, 32, 11728, 32;
96.63048, 11672, 12120, 11728, 32, 11728, 40;
96.63048, 11664, 12120, 11728, 32, 11728, 40;
96.63048, 11672, 12376, 11728, 40, 11728, 40;
96.63048, 11672, 12376, 11728, 40, 11728, 40;
96.73524, 11672, 12736, 11728, 40, 11728, 40;
96.73524, 11672, 13072, 11728, 40, 11728, 40;
96.73524, 11672, 13072, 11728, 40, 11728, 40;
96.73524, 11680, 12352, 11728, 40, 11728, 40;
96.73524, 11680, 12352, 11728, 40, 11728, 40;
96.73524, 11680, 12272, 11728, 32, 11728, 40;
96.73524, 11672, 11736, 11728, 32, 11728, 40;
96.73524, 11672, 11736, 11728, 40, 11728, 32;
96.73524, 11672, 10856, 11728, 40, 11728, 40;
96.73524, 11672, 12424, 11728, 40, 11728, 40;
96.73524, 11672, 12424, 11728, 32, 11728, 40;
96.73524, 11672, 11456, 11728, 40, 11728, 40;
96.73524, 11672, 12936, 11728, 40, 11728, 40;
96.73524, 11672, 12936, 11728, 40, 11728, 40;
96.73524, 11672, 11296, 11728, 32, 11728, 40;
96.73524, 11672, 12480, 11728, 32, 11728, 40;
96.73524, 11672, 12480, 11728, 40, 11728, 40;
97.04953, 11672, 12768, 11728, 40, 11728, 40;
97.04953, 11672, 12768, 11728, 40, 11728, 40;
97.04953, 11680, 12984, 11728, 32, 11728, 40;
97.04953, 11680, 12648, 11728, 32, 11720, 40;
97.04953, 11680, 12648, 11728, 40, 11728, 40;
97.04953, 11680, 11704, 11728, 32, 11728, 40;
97.04953, 11680, 11704, 11728, 32, 11728, 32;
97.04953, 11672, 11664, 11728, 40, 11728, 40;
97.04953, 11680, 11352, 11728, 40, 11728, 40;
97.04953, 11680, 11352, 11728, 32, 11728, 40;
97.04953, 11672, 11856, 11728, 40, 11728, 40;
97.04953, 11672, 11536, 11728, 40, 11728, 40;
97.04953, 11680, 11536, 11728, 32, 11728, 40;
97.04953, 11672, 12576, 11728, 32, 11728, 40;
97.04953, 11672, 12576, 11728, 32, 11728, 40;
97.04953, 11672, 11912, 11728, 40, 11728, 40;
97.25905, 11672, 12696, 11728, 40, 11728, 40;
97.25905, 11672, 12696, 11728, 40, 11728, 40;
97.25905, 11672, 12960, 11728, 40, 11728, 40;
97.25905, 11672, 12792, 11728, 40, 11728, 40;
97.25905, 11672, 12792, 11728, 40, 11728, 40;
97.25905, 11672, 12528, 11728, 32, 11728, 40;
97.25905, 11680, 11688, 11728, 32, 11728, 40;
97.25905, 11680, 11688, 11728, 40, 11728, 40;
97.25905, 11672, 11424, 11728, 32, 11728, 40;
97.25905, 11672, 11688, 11728, 32, 11728, 40;
97.25905, 11680, 11688, 11728, 40, 11728, 40;
97.25905, 11672, 12240, 11728, 32, 11728, 40;
97.25905, 11672, 12240, 11728, 32, 11728, 40;
97.25905, 11672, 11648, 11728, 40, 11728, 40;
97.25905, 11672, 12072, 11728, 40, 11728, 40;
97.25905, 11672, 12072, 11728, 32, 11728, 40;
97.25905, 11672, 12224, 11728, 40, 11728, 40;
97.46857, 11672, 12224, 11728, 40, 11728, 40;
97.46857, 11672, 12632, 11728, 40, 11728, 40;
97.46857, 11672, 12184, 11728, 40, 11728, 40;
97.46857, 11672, 12184, 11728, 40, 11728, 32;
97.46857, 11672, 12448, 11728, 40, 11728, 40;
97.46857, 11672, 12488, 11728, 40, 11728, 40;
97.46857, 11672, 12488, 11728, 32, 11728, 40;
97.46857, 11672, 12664, 11728, 32, 11728, 40;
97.46857, 11672, 12664, 11728, 32, 11728, 40;
97.46857, 11680, 12872, 11728, 32, 11728, 40;
97.46857, 11680, 12984, 11728, 32, 11728, 40;
97.46857, 11680, 12624, 11728, 32, 11728, 40;
97.46857, 11680, 12624, 11728, 40, 11728, 40;
97.46857, 11680, 11648, 11728, 32, 11728, 40;
97.46857, 11680, 11648, 11728, 32, 11728, 40;
97.46857, 11672, 12224, 11728, 32, 11728, 40;
97.67810, 11680, 11568, 11728, 32, 11728, 40;
97.67810, 11680, 11568, 11728, 32, 11728, 40;
97.67810, 11672, 12264, 11728, 40, 11728, 40;
97.67810, 11672, 12264, 11728, 40, 11728, 32;
97.67810, 11672, 11576, 11728, 40, 11728, 40;
97.67810, 11672, 12960, 11728, 40, 11728, 40;
97.67810, 11672, 12960, 11728, 40, 11728, 40;
97.67810, 11672, 12336, 11728, 32, 11728, 40;
97.67810, 11672, 12296, 11728, 32, 11728, 40;
97.67810, 11680, 12296, 11728, 32, 11728, 40;
97.67810, 11672, 13136, 11728, 32, 11728, 40;
97.67810, 11672, 13136, 11728, 32, 11728, 40;
97.67810, 11680, 12376, 11728, 40, 11728, 40;
97.67810, 11680, 12296, 11728, 40, 11728, 40;
97.67810, 11680, 12296, 11728, 40, 11728, 40;
97.67810, 11680, 11832, 11728, 40, 11728, 40;
97.67810, 11680, 11832, 11728, 40, 11728, 40;
97.67810, 11672, 11664, 11728, 32, 11728, 40;
97.67810, 11680, 11592, 11728, 40, 11728, 40;
97.67810, 11680, 11592, 11728, 40, 11728, 40;
97.67810, 11672, 12792, 11728, 32, 11728, 32;
97.67810, 11672, 11904, 11728, 40, 11728, 32;
97.67810, 11672, 12584, 11728, 40, 11728, 40;
97.67810, 11672, 12584, 11728, 32, 11728, 40;
97.67810, 11672, 12008, 11728, 40, 11728, 40;
97.67810, 11672, 12008, 11728, 40, 11728, 40;
97.67810, 11680, 12136, 11728, 40, 11728, 40;
97.67810, 11680, 11776, 11728, 40, 11728, 40;
97.67810, 11672, 11776, 11728, 40, 11728, 40;
97.67810, 11672, 11288, 11728, 40, 11728, 40;
97.67810, 11672, 11288, 11728, 40, 11728, 32;
97.67810, 11672, 11952, 11728, 32, 11728, 32;
97.67810, 11672, 11824, 11728, 32, 11728, 32;
97.57333, 11672, 11824, 11728, 40, 11728, 40;
97.57333, 11672, 12856, 11728, 40, 11728, 40;
97.57333, 11672, 11736, 11728, 40, 11728, 40;
97.57333, 11672, 11736, 11728, 40, 11728, 40;
97.57333, 11672, 12520, 11728, 40, 11728, 40;
97.57333, 11672, 12520, 11728, 40, 11728, 40;
97.57333, 11672, 12560, 11728, 32, 11728, 40;
97.57333, 11672, 12464, 11728, 32, 11728, 40;
97.57333, 11672, 12464, 11728, 40, 11728, 32;
97.57333, 11672, 12352, 11728, 32, 11728, 32;
97.57333, 11672, 12352, 11728, 32, 11728, 40;
97.57333, 11672, 11968, 11728, 32, 11728, 40;
97.57333, 11672, 11832, 11728, 32, 11728, 40;
97.57333, 11680, 11584, 11728, 32, 11728, 40;
97.57333, 11680, 11584, 11728, 40, 11728, 40;
97.57333, 11672, 13048, 11728, 40, 11728, 40;
97.67810, 11672, 13048, 11728, 40, 11728, 40;
97.67810, 11672, 11336, 11728, 32, 11728, 40;
97.67810, 11672, 12152, 11728, 32, 11728, 40;
97.67810, 11672, 12152, 11728, 40, 11728, 40;
97.67810, 11672, 12264, 11728, 32, 11728, 40;
97.67810, 11672, 12336, 11728, 32, 11728, 40;
97.67810, 11672, 12336, 11728, 40, 11728, 40;
97.67810, 11672, 12872, 11728, 40, 11728, 40;
97.67810, 11672, 12872, 11728, 40, 11728, 40;
97.67810, 11672, 12752, 11728, 40, 11728, 40;
97.67810, 11680, 12912, 11728, 40, 11728, 40;
97.67810, 11680, 12912, 11728, 32, 11728, 40;
97.67810, 11680, 12368, 11728, 40, 11728, 40;
97.67810, 11680, 12368, 11728, 40, 11728, 40;
97.67810, 11672, 11664, 11728, 32, 11728, 40;
97.67810, 11680, 11552, 11728, 32, 11728, 40;
97.67810, 11680, 11552, 11728, 32, 11728, 40;
97.67810, 11672, 12408, 11728, 40, 11728, 40;
97.67810, 11672, 11880, 11728, 40, 11728, 40;
97.67810, 11672, 11880, 11728, 32, 11728, 40;
97.67810, 11672, 12104, 11728, 40, 11728, 40;
97.67810, 11672, 12120, 11728, 40, 11728, 40;
97.67810, 11672, 12120, 11728, 40, 11728, 40;
97.67810, 11672, 12720, 11728, 40, 11728, 40;
97.67810, 11672, 12664, 11728, 40, 11728, 40;
97.67810, 11672, 12664, 11728, 40, 11728, 40;
97.67810, 11672, 13064, 11728, 32, 11728, 40;
97.67810, 11672, 13064, 11728, 32, 11728, 40;
97.67810, 11680, 12384, 11728, 40, 11728, 32;
97.67810, 11680, 11744, 11728, 40, 11728, 32;
97.67810, 11680, 11744, 11728, 40, 11728, 40;
97.67810, 11672, 11584, 11728, 40, 11728, 40;
97.67810, 11672, 11592, 11728, 40, 11728, 40;
97.67810, 11680, 11592, 11728, 32, 11728, 40;
97.67810, 11672, 12880, 11728, 40, 11728, 40;
97.67810, 11672, 12880, 11728, 40, 11728, 40;
97.67810, 11672, 11744, 11728, 40, 11728, 40;
97.67810, 11672, 13056, 11728, 40, 11728, 40;
97.67810, 11672, 13056, 11728, 32, 11728, 40;
97.67810, 11680, 12984, 11728, 32, 11728, 40;
97.67810, 11680, 12984, 11728, 32, 11728, 40;
97.67810, 11680, 11752, 11728, 32, 11728, 40;
97.67810, 11672, 12368, 11728, 32, 11728, 40;
97.67810, 11672, 12368, 11728, 40, 11728, 40;
97.67810, 11672, 11824, 11728, 40, 11728, 40;
97.67810, 11672, 11936, 11728, 32, 11728, 40;
97.67810, 11672, 11936, 11728, 32, 11728, 40;
97.67810, 11672, 12680, 11728, 40, 11728, 40;
97.67810, 11672, 12720, 11728, 40, 11728, 40;
97.67810, 11672, 12720, 11728, 40, 11728, 40;
97.67810, 11680, 12712, 11728, 40, 11728, 40;
97.67810, 11680, 12376, 11728, 40, 11728, 40;
97.67810, 11680, 12376, 11728, 40, 11728, 40;
97.67810, 11680, 12024, 11728, 32, 11728, 40;
97.67810, 11680, 12024, 11728, 32, 11728, 40;
97.67810, 11680, 11480, 11728, 40, 11728, 40;
97.67810, 11672, 12304, 11728, 40, 11728, 40;
97.67810, 11672, 12304, 11728, 32, 11728, 40;
97.67810, 11680, 11392, 11728, 32, 11728, 40;
97.67810, 11680, 11392, 11728, 32, 11728, 40;
97.67810, 11672, 12440, 11728, 40, 11728, 40;
97.67810, 11672, 12168, 11728, 40, 11728, 40;
97.67810, 11672, 12168, 11728, 40, 11728, 40;
97.67810, 11672, 11904, 11728, 40, 11728, 40;
97.67810, 11672, 12672, 11728, 40, 11728, 40;
97.67810, 11672, 12672, 11728, 32, 11728, 40;
97.67810, 11672, 12632, 11728, 32, 11728, 40;
97.67810, 11672, 12632, 11728, 32, 11728, 40;
97.67810, 11672, 12112, 11728, 40, 11728, 40;
97.67810, 11680, 11488, 11728, 40, 11728, 40;
97.67810, 11680, 11488, 11728, 32, 11728, 40;
97.67810, 11672, 12520, 11728, 40, 11728, 40;
97.67810, 11672, 11896, 11728, 40, 11728, 40;
97.67810, 11672, 11896, 11728, 40, 11728, 40;
97.67810, 11672, 12184, 11728, 40, 11728, 32;
97.67810, 11672, 11824, 11728, 40, 11728, 32;
97.67810, 11672, 11824, 11728, 40, 11728, 40;
97.67810, 11672, 12464, 11728, 32, 11728, 40;
97.67810, 11672, 12784, 11728, 32, 11728, 40;
97.67810, 11672, 12784, 11728, 32, 11728, 40;
97.67810, 11680, 12744, 11728, 40, 11728, 40;
97.67810, 11680, 12744, 11728, 40, 11728, 40;
97.67810, 11672, 12224, 11728, 40, 11728, 40;
97.67810, 11672, 11672, 11728, 40, 11728, 40;
97.67810, 11680, 11672, 11728, 40, 11728, 40;
97.67810, 11680, 11792, 11728, 40, 11728, 40;
97.67810, 11680, 11792, 11728, 40, 11728, 40;
97.67810, 11672, 11856, 11728, 40, 11728, 32;
97.67810, 11672, 12456, 11728, 40, 11728, 32;
97.67810, 11672, 12456, 11728, 40, 11728, 40;
97.67810, 11664, 11424, 11728, 32, 11728, 40;
97.67810, 11664, 12568, 11728, 32, 11728, 40;
97.67810, 11672, 12568, 11728, 40, 11728, 40;
97.67810, 11672, 12672, 11728, 40, 11728, 40;
97.67810, 11672, 12672, 11728, 40, 11728, 40;
97.67810, 11672, 12416, 11728, 40, 11728, 40;
97.67810, 11672, 11560, 11728, 40, 11728, 40;
97.67810, 11672, 11736, 11728, 40, 11728, 40;
97.67810, 11672, 11736, 11728, 32, 11728, 40;
97.67810, 11672, 12760, 11728, 32, 11728, 40;
97.67810, 11672, 12760, 11728, 32, 11728, 40;
97.67810, 11672, 11536, 11728, 40, 11728, 40;
97.67810, 11672, 12752, 11728, 40, 11728, 40;
97.67810, 11672, 12752, 11728, 32, 11728, 40;
97.67810, 11672, 12824, 11728, 32, 11728, 40;
97.67810, 11672, 12824, 11728, 32, 11728, 40;
97.67810, 11672, 12696, 11728, 40, 11728, 40;
97.67810, 11672, 12056, 11728, 40, 11728, 40;
97.67810, 11672, 12056, 11728, 40, 11728, 40;
97.67810, 11672, 12872, 11728, 32, 11728, 32;
97.67810, 11672, 12600, 11728, 32, 11728, 32;
97.67810, 11680, 12600, 11728, 40, 11728, 40;
97.67810, 11680, 11888, 11728, 32, 11728, 40;
97.67810, 11680, 11888, 11728, 32, 11728, 40;
97.67810, 11672, 11832, 11728, 40, 11728, 40;
97.67810, 11672, 11456, 11728, 40, 11728, 40;
97.67810, 11672, 11456, 11728, 32, 11728, 40;
97.67810, 11672, 12640, 11728, 32, 11728, 40;
97.67810, 11672, 12256, 11728, 32, 11728, 40;
97.67810, 11672, 12256, 11728, 40, 11728, 40;
97.67810, 11664, 12144, 11728, 40, 11728, 40;
97.67810, 11672, 12888, 11728, 40, 11728, 40;
97.67810, 11672, 12888, 11728, 40, 11728, 40;
97.67810, 11672, 12848, 11728, 32, 11728, 40;
97.67810, 11672, 12744, 11728, 32, 11728, 40;
97.67810, 11680, 12744, 11728, 40, 11728, 40;
97.67810, 11680, 12152, 11728, 40, 11728, 40;
97.67810, 11680, 12152, 11728, 40, 11728, 32;
97.67810, 11672, 11888, 11728, 32, 11728, 40;
97.67810, 11672, 12080, 11728, 32, 11728, 40;
97.67810, 11680, 12080, 11728, 40, 11728, 40;
97.67810, 11672, 12648, 11728, 32, 11728, 40;
97.67810, 11672, 12648, 11728, 32, 11728, 40;
97.67810, 11672, 13216, 11728, 40, 11728, 40;
97.67810, 11672, 12312, 11728, 40, 11728, 40;
97.67810, 11672, 12312, 11728, 32, 11728, 40;
97.67810, 11680, 12632, 11728, 40, 11728, 40;
97.67810, 11680, 12304, 11728, 40, 11728, 40;
97.67810, 11680, 12304, 11728, 40, 11728, 40;
97.67810, 11672, 11600, 11728, 40, 11728, 40;
97.67810, 11672, 11600, 11728, 40, 11728, 40;
97.67810, 11680, 11544, 11728, 40, 11728, 40;
97.67810, 11672, 12712, 11728, 40, 11728, 40;
97.67810, 11672, 12712, 11728, 40, 11728, 40;
97.67810, 11672, 12112, 11728, 40, 11728, 40;
97.67810, 11672, 11704, 11728, 32, 11728, 40;
97.67810, 11672, 11704, 11728, 32, 11728, 40;
97.67810, 11664, 12760, 11728, 40, 11728, 40;
97.67810, 11672, 12704, 11728, 40, 11728, 40;
97.67810, 11672, 12704, 11728, 40, 11728, 40;
97.67810, 11680, 12424, 11728, 40, 11728, 40;
97.67810, 11680, 12424, 11728, 40, 11720, 40;
97.67810, 11680, 12256, 11728, 40, 11728, 40;
97.67810, 11672, 11440, 11728, 40, 11728, 40;
97.67810, 11672, 11440, 11728, 40, 11728, 40;
97.67810, 11680, 11632, 11728, 40, 11728, 40;
97.67810, 11680, 12096, 11728, 40, 11728, 40;
97.67810, 11672, 12096, 11728, 40, 11728, 40;
97.67810, 11680, 11560, 11728, 40, 11728, 40;
97.67810, 11680, 11560, 11728, 40, 11728, 40;
97.67810, 11672, 12792, 11728, 32, 11728, 40;
97.67810, 11672, 11800, 11728, 32, 11728, 40;
97.67810, 11672, 11800, 11728, 40, 11728, 40;
97.67810, 11672, 12568, 11728, 32, 11728, 40;
97.67810, 11672, 12568, 11728, 32, 11728, 40;
97.67810, 11672, 12936, 11728, 40, 11728, 40;
97.67810, 11680, 12632, 11728, 32, 11728, 40;
97.67810, 11680, 12632, 11728, 32, 11720, 40;
97.67810, 11680, 12448, 11728, 40, 11720, 40;
97.67810, 11680, 11672, 11728, 40, 11728, 40;
97.67810, 11680, 11672, 11728, 32, 11728, 40;
97.67810, 11672, 11792, 11728, 40, 11728, 40;
97.67810, 11680, 11688, 11728, 40, 11728, 40;
97.67810, 11680, 11688, 11728, 40, 11728, 40;
97.67810, 11672, 11760, 11728, 32, 11728, 40;
97.67810, 11672, 11576, 11728, 32, 11728, 40;
97.67810, 11680, 11576, 11728, 32, 11728, 40;
97.67810, 11672, 12104, 11728, 40, 11728, 40;
97.67810, 11672, 12104, 11728, 40, 11728, 40;
97.67810, 11672, 12104, 11728, 40, 11728, 40;
97.67810, 11672, 12432, 11728, 40, 11728, 40;
97.67810, 11672, 12432, 11728, 40, 11728, 40;
97.67810, 11664, 12560, 11728, 40, 11728, 40;
97.67810, 11664, 12664, 11728, 40, 11728, 40;
97.67810, 11672, 12664, 11728, 32, 11728, 40;
97.67810, 11680, 13016, 11728, 40, 11728, 40;
97.67810, 11680, 13016, 11728, 40, 11728, 40;
97.67810, 11680, 11824, 11728, 40, 11728, 40;
97.67810, 11672, 11248, 11728, 40, 11728, 40;
97.67810, 11672, 11248, 11728, 40, 11728, 40;
97.67810, 11672, 11648, 11728, 32, 11728, 40;
97.67810, 11672, 11648, 11728, 32, 11728, 40;
97.67810, 11672, 12704, 11728, 32, 11728, 32;
97.67810, 11672, 11808, 11728, 32, 11728, 32;
97.67810, 11672, 11808, 11728, 32, 11728, 40;
97.67810, 11672, 12400, 11728, 40, 11728, 40;
97.67810, 11672, 12192, 11728, 40, 11728, 40;
97.67810, 11672, 12192, 11728, 40, 11728, 40;
97.67810, 11672, 12624, 11728, 40, 11728, 40;
97.67810, 11680, 11944, 11728, 40, 11728, 40;
97.67810, 11680, 11944, 11728, 32, 11728, 40;
97.67810, 11680, 12152, 11728, 40, 11728, 40;
97.67810, 11680, 12056, 11728, 40, 11728, 40;
97.67810, 11672, 12056, 11728, 32, 11728, 40;
97.67810, 11672, 11768, 11728, 32, 11728, 40;
97.67810, 11672, 11768, 11728, 32, 11728, 40;
97.67810, 11672, 12880, 11728, 40, 11728, 40;
97.67810, 11672, 12544, 11728, 40, 11728, 40;
97.67810, 11672, 12544, 11728, 40, 11728, 40;
97.67810, 11672, 12696, 11728, 40, 11728, 40;
97.67810, 11672, 12696, 11728, 40, 11728, 40;
97.67810, 11680, 12576, 11728, 40, 11728, 40;
97.67810, 11680, 12160, 11728, 40, 11728, 40;
97.67810, 11680, 12160, 11728, 40, 11728, 40;
97.67810, 11672, 11576, 11728, 40, 11728, 40;
97.67810, 11672, 11016, 11728, 40, 11728, 40;
97.67810, 11672, 11016, 11728, 32, 11728, 40;
97.67810, 11672, 12944, 11728, 32, 11728, 40;
97.67810, 11672, 12944, 11728, 32, 11728, 40;
97.67810, 11672, 11912, 11728, 32, 11728, 40;
97.67810, 11672, 12328, 11728, 32, 11728, 40;
97.67810, 11672, 12832, 11728, 32, 11728, 40;
97.67810, 11672, 12832, 11728, 32, 11728, 32;
97.67810, 11672, 12136, 11728, 32, 11728, 32;
97.67810, 11672, 12136, 11728, 32, 11728, 40;
97.67810, 11672, 11976, 11728, 32, 11728, 40;
97.67810, 11680, 10808, 11728, 32, 11728, 40;
97.67810, 11680, 10808, 11728, 40, 11728, 40;
97.67810, 11672, 12872, 11728, 32, 11728, 40;
97.67810, 11672, 12000, 11728, 32, 11728, 40;
97.67810, 11672, 12000, 11728, 40, 11728, 40;
97.67810, 11672, 12584, 11728, 40, 11728, 40;
97.67810, 11672, 12584, 11728, 40, 11728, 40;
97.67810, 11672, 12992, 11728, 40, 11728, 40;
97.67810, 11680, 12248, 11728, 40, 11728, 40;
97.67810, 11680, 12248, 11728, 40, 11728, 40;
97.67810, 11672, 12056, 11728, 40, 11728, 40;
97.67810, 11672, 12056, 11728, 40, 11728, 40;
97.67810, 11680, 11504, 11728, 40, 11728, 40;
97.67810, 11672, 13000, 11728, 40, 11728, 40;
97.67810, 11672, 13000, 11728, 32, 11728, 40;
97.67810, 11672, 11840, 11728, 32, 11728, 40;
97.67810, 11672, 12016, 11728, 32, 11728, 40;
97.67810, 11672, 12016, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 32, 11728, 40;
97.67810, 11672, 12744, 11728, 32, 11728, 40;
97.67810, 11672, 12744, 11728, 40, 11720, 40;
97.67810, 11680, 12600, 11728, 40, 11720, 32;
97.67810, 11680, 11768, 11728, 40, 11728, 32;
97.67810, 11680, 11768, 11728, 32, 11728, 32;
97.67810, 11672, 12080, 11728, 40, 11728, 32;
97.67810, 11672, 12080, 11728, 40, 11728, 40;
97.67810, 11672, 11304, 11728, 40, 11728, 40;
97.67810, 11672, 12136, 11728, 40, 11728, 40;
97.67810, 11672, 12136, 11728, 40, 11728, 40;
97.67810, 11672, 12824, 11728, 40, 11728, 40;
97.67810, 11672, 12824, 11728, 40, 11728, 40;
97.67810, 11672, 12480, 11728, 32, 11728, 32;
97.67810, 11672, 12760, 11728, 32, 11728, 32;
97.67810, 11672, 12760, 11728, 32, 11728, 40;
97.67810, 11672, 13032, 11728, 40, 11728, 40;
97.67810, 11672, 12480, 11728, 40, 11728, 40;
97.67810, 11680, 12480, 11728, 32, 11728, 32;
97.67810, 11680, 12104, 11728, 32, 11728, 32;
97.67810, 11680, 12104, 11728, 32, 11728, 40;
97.67810, 11672, 11608, 11728, 40, 11728, 40;
97.67810, 11680, 11848, 11728, 40, 11728, 40;
97.67810, 11680, 11848, 11728, 40, 11728, 40;
97.67810, 11672, 12376, 11728, 40, 11728, 40;
97.67810, 11672, 11344, 11728, 40, 11728, 40;
97.67810, 11672, 11344, 11728, 40, 11728, 40;
97.67810, 11672, 12064, 11728, 40, 11728, 40;
97.67810, 11664, 12664, 11728, 40, 11728, 40;
97.67810, 11664, 12664, 11728, 32, 11728, 40;
97.67810, 11672, 12904, 11728, 40, 11728, 40;
97.67810, 11672, 12272, 11728, 40, 11728, 40;
97.67810, 11680, 12272, 11728, 40, 11728, 40;
97.67810, 11680, 11864, 11728, 32, 11728, 40;
97.67810, 11680, 11864, 11728, 32, 11728, 40;
97.67810, 11672, 11656, 11728, 40, 11728, 40;
97.67810, 11672, 11632, 11728, 40, 11728, 40;
97.67810, 11680, 11632, 11728, 40, 11728, 40;
97.67810, 11672, 12768, 11728, 32, 11728, 40;
97.67810, 11672, 12768, 11728, 32, 11728, 40;
97.67810, 11664, 11848, 11728, 40, 11728, 40;
97.67810, 11664, 12600, 11728, 40, 11728, 40;
97.67810, 11664, 12600, 11728, 40, 11728, 40;
97.67810, 11672, 12680, 11728, 40, 11728, 40;
97.67810, 11672, 12376, 11728, 40, 11728, 40;
97.67810, 11672, 12376, 11728, 32, 11728, 40;
97.67810, 11672, 11872, 11728, 40, 11728, 40;
97.67810, 11672, 11872, 11728, 40, 11728, 40;
97.67810, 11680, 11560, 11728, 40, 11728, 40;
97.67810, 11680, 13024, 11728, 40, 11728, 40;
97.67810, 11680, 13024, 11728, 32, 11728, 40;
97.67810, 11672, 12112, 11728, 32, 11728, 40;
97.67810, 11664, 11952, 11728, 40, 11728, 40;
97.67810, 11664, 11952, 11728, 40, 11728, 40;
97.67810, 11672, 12400, 11728, 40, 11728, 32;
97.67810, 11672, 12848, 11728, 40, 11728, 32;
97.67810, 11672, 12848, 11728, 40, 11728, 40;
97.67810, 11680, 12664, 11728, 40, 11728, 40;
97.67810, 11680, 12664, 11728, 40, 11728, 40;
97.67810, 11680, 11576, 11728, 40, 11728, 40;
97.67810, 11672, 12000, 11728, 40, 11728, 40;
97.67810, 11672, 12000, 11728, 40, 11728, 40;
97.67810, 11680, 11632, 11728, 40, 11728, 40;
97.67810, 11680, 12120, 11728, 40, 11728, 40;
97.67810, 11672, 12120, 11728, 40, 11728, 40;
97.67810, 11672, 11952, 11728, 40, 11728, 40;
97.67810, 11672, 11952, 11728, 40, 11728, 40;
97.67810, 11672, 12280, 11728, 32, 11728, 40;
97.67810, 11672, 13216, 11728, 32, 11728, 40;
97.67810, 11672, 13216, 11728, 32, 11720, 32;
97.67810, 11672, 12480, 11728, 40, 11720, 32;
97.67810, 11672, 12584, 11728, 40, 11728, 40;
97.67810, 11680, 12584, 11728, 40, 11728, 40;
97.67810, 11680, 13032, 11728, 40, 11728, 40;
97.67810, 11680, 13032, 11728, 40, 11728, 40;
97.67810, 11672, 11768, 11728, 40, 11728, 40;
97.67810, 11680, 11568, 11728, 32, 11728, 40;
97.67810, 11680, 11584, 11728, 32, 11728, 40;
97.67810, 11672, 11584, 11728, 32, 11728, 40;
97.67810, 11672, 11776, 11728, 40, 11728, 40;
97.67810, 11672, 11776, 11728, 40, 11728, 40;
97.67810, 11672, 12136, 11728, 40, 11728, 40;
97.67810, 11672, 13104, 11728, 40, 11728, 40;
97.67810, 11664, 13104, 11728, 40, 11728, 40;
97.67810, 11680, 13056, 11728, 40, 11728, 40;
97.67810, 11680, 13056, 11728, 40, 11728, 32;
97.67810, 11672, 11952, 11728, 40, 11728, 40;
97.67810, 11680, 12024, 11728, 40, 11728, 40;
97.67810, 11680, 12024, 11728, 40, 11728, 40;
97.67810, 11672, 12536, 11728, 40, 11728, 40;
97.67810, 11672, 11792, 11728, 40, 11728, 40;
97.67810, 11672, 11792, 11728, 40, 11728, 40;
97.67810, 11680, 12360, 11728, 40, 11728, 40;
97.67810, 11680, 12360, 11728, 40, 11728, 32;
97.67810, 11672, 11920, 11728, 40, 11728, 40;
97.67810, 11672, 12576, 11728, 40, 11728, 40;
97.67810, 11672, 12576, 11728, 40, 11728, 40;
97.67810, 11672, 12032, 11728, 40, 11728, 40;
97.67810, 11672, 12032, 11728, 40, 11728, 40;
97.67810, 11672, 12640, 11728, 32, 11728, 32;
97.67810, 11672, 13104, 11728, 32, 11728, 32;
97.67810, 11680, 12880, 11728, 40, 11728, 40;
97.67810, 11680, 12880, 11728, 40, 11720, 40;
97.67810, 11680, 12704, 11728, 32, 11720, 40;
97.67810, 11680, 12704, 11728, 32, 11720, 40;
97.67810, 11680, 12376, 11728, 40, 11728, 40;
97.67810, 11672, 12048, 11728, 40, 11728, 40;
97.67810, 11672, 12048, 11728, 40, 11728, 32;
97.67810, 11680, 11160, 11728, 32, 11728, 40;
97.67810, 11680, 12216, 11728, 32, 11728, 40;
97.67810, 11672, 12216, 11728, 32, 11728, 40;
97.67810, 11680, 11744, 11728, 32, 11728, 40;
97.67810, 11680, 11744, 11728, 32, 11728, 40;
97.67810, 11672, 12328, 11728, 40, 11728, 40;
97.67810, 11672, 12392, 11728, 40, 11728, 40;
97.67810, 11672, 12392, 11728, 40, 11728, 40;
97.67810, 11672, 12832, 11728, 32, 11728, 40;
97.67810, 11672, 13016, 11728, 32, 11728, 40;
97.67810, 11680, 13016, 11728, 40, 11728, 40;
97.67810, 11680, 11672, 11728, 40, 11728, 40;
97.67810, 11680, 11672, 11728, 40, 11728, 40;
97.67810, 11672, 11832, 11728, 32, 11728, 40;
97.67810, 11672, 10744, 11728, 32, 11728, 40;
97.67810, 11672, 10744, 11728, 40, 11728, 40;
97.67810, 11672, 12344, 11728, 40, 11728, 40;
97.67810, 11672, 12344, 11728, 40, 11728, 40;
97.67810, 11672, 12192, 11728, 32, 11728, 40;
97.67810, 11672, 12768, 11728, 32, 11728, 40;
97.67810, 11672, 13024, 11728, 32, 11728, 40;
97.67810, 11672, 13024, 11728, 32, 11728, 40;
97.67810, 11672, 12616, 11728, 40, 11728, 40;
97.67810, 11672, 12616, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 40, 11728, 40;
97.67810, 11680, 12392, 11728, 40, 11728, 40;
97.67810, 11680, 12392, 11728, 40, 11728, 40;
97.67810, 11672, 11328, 11728, 32, 11728, 40;
97.67810, 11672, 11800, 11728, 32, 11728, 40;
97.67810, 11680, 11800, 11728, 40, 11728, 40;
97.67810, 11672, 12864, 11728, 40, 11728, 40;
97.67810, 11672, 12864, 11728, 40, 11728, 40;
97.67810, 11672, 11392, 11728, 40, 11728, 32;
97.67810, 11672, 12264, 11728, 40, 11728, 32;
97.67810, 11672, 12264, 11728, 40, 11728, 32;
97.67810, 11672, 13128, 11728, 40, 11728, 32;
97.67810, 11672, 13128, 11728, 40, 11728, 40;
97.67810, 11672, 12952, 11728, 32, 11728, 40;
97.67810, 11672, 12400, 11728, 32, 11728, 40;
97.67810, 11672, 12400, 11728, 40, 11728, 40;
97.67810, 11680, 12016, 11728, 32, 11728, 40;
97.67810, 11680, 11856, 11728, 32, 11728, 40;
97.67810, 11672, 11856, 11728, 40, 11728, 32;
97.67810, 11672, 11512, 11728, 40, 11728, 40;
97.67810, 11672, 11984, 11728, 40, 11728, 40;
97.67810, 11672, 11984, 11728, 40, 11728, 40;
97.67810, 11672, 12168, 11728, 32, 11728, 40;
97.67810, 11672, 12520, 11728, 32, 11728, 40;
97.67810, 11672, 12520, 11728, 40, 11728, 40;
97.67810, 11672, 12720, 11728, 40, 11728, 40;
97.67810, 11672, 12720, 11728, 40, 11728, 40;
97.67810, 11680, 12880, 11728, 40, 11720, 40;
97.67810, 11680, 12168, 11728, 40, 11720, 40;
97.67810, 11680, 12168, 11728, 40, 11728, 32;
97.67810, 11680, 11672, 11728, 32, 11728, 32;
97.67810, 11680, 12432, 11728, 32, 11728, 40;
97.67810, 11672, 12432, 11728, 40, 11728, 32;
97.67810, 11672, 11608, 11728, 32, 11728, 32;
97.67810, 11672, 11608, 11728, 32, 11728, 40;
97.67810, 11672, 11832, 11728, 40, 11728, 40;
97.67810, 11672, 12560, 11728, 40, 11728, 40;
97.67810, 11672, 12560, 11728, 40, 11728, 32;
97.67810, 11672, 12376, 11728, 40, 11728, 32;
97.67810, 11672, 12376, 11728, 40, 11728, 40;
97.67810, 11672, 13368, 11728, 40, 11728, 40;
97.67810, 11680, 12080, 11728, 40, 11728, 40;
97.67810, 11680, 12080, 11728, 40, 11728, 40;
97.67810, 11672, 12200, 11728, 32, 11728, 40;
97.67810, 11672, 11456, 11728, 40, 11728, 40;
97.67810, 11672, 11456, 11728, 40, 11728, 40;
97.67810, 11672, 12208, 11728, 32, 11728, 40;
97.67810, 11672, 12104, 11728, 32, 11728, 40;
97.67810, 11672, 12104, 11728, 40, 11728, 40;
97.67810, 11672, 12760, 11728, 40, 11728, 40;
97.67810, 11672, 12976, 11728, 40, 11728, 40;
97.67810, 11680, 12976, 11728, 32, 11728, 32;
97.67810, 11680, 11736, 11728, 40, 11728, 32;
97.67810, 11680, 11736, 11728, 40, 11728, 40;
97.67810, 11672, 11608, 11728, 32, 11728, 32;
97.67810, 11680, 11416, 11728, 32, 11728, 32;
97.67810, 11680, 11416, 11728, 40, 11728, 40;
97.67810, 11672, 12656, 11728, 40, 11728, 40;
97.67810, 11672, 12656, 11728, 40, 11728, 32;
97.67810, 11672, 11952, 11728, 40, 11728, 32;
97.67810, 11672, 12504, 11728, 40, 11728, 32;
97.67810, 11672, 12504, 11728, 32, 11728, 40;
97.67810, 11672, 12408, 11728, 32, 11728, 40;
97.67810, 11672, 12120, 11728, 32, 11728, 40;
97.67810, 11672, 12120, 11728, 40, 11728, 40;
97.67810, 11672, 12952, 11728, 32, 11728, 40;
97.67810, 11672, 12952, 11728, 32, 11728, 40;
97.67810, 11672, 12984, 11728, 32, 11728, 40;
97.67810, 11672, 12256, 11728, 32, 11728, 40;
97.67810, 11672, 11928, 11728, 40, 11728, 40;
97.67810, 11680, 11928, 11728, 40, 11728, 40;
97.67810, 11672, 12904, 11728, 40, 11728, 40;
97.67810, 11672, 12904, 11728, 40, 11728, 40;
97.67810, 11672, 11928, 11728, 40, 11728, 32;
97.67810, 11680, 12312, 11728, 40, 11728, 32;
97.67810, 11680, 12312, 11728, 40, 11728, 40;
97.67810, 11672, 13312, 11728, 40, 11728, 40;
97.67810, 11672, 12864, 11728, 40, 11728, 40;
97.67810, 11680, 12864, 11728, 40, 11728, 32;
97.67810, 11672, 11800, 11728, 32, 11728, 32;
97.67810, 11672, 11800, 11728, 32, 11728, 40;
97.67810, 11680, 11608, 11728, 40, 11728, 32;
97.67810, 11680, 11648, 11728, 40, 11728, 32;
97.67810, 11672, 11648, 11728, 40, 11728, 40;
97.67810, 11672, 11592, 11728, 40, 11728, 40;
97.67810, 11672, 11592, 11728, 40, 11728, 32;
97.67810, 11672, 12856, 11728, 40, 11728, 40;
97.67810, 11672, 12128, 11728, 40, 11728, 40;
97.67810, 11672, 12128, 11728, 40, 11728, 32;
97.67810, 11672, 12592, 11728, 32, 11728, 32;
97.67810, 11672, 12328, 11728, 32, 11728, 40;
97.67810, 11672, 12328, 11728, 32, 11728, 40;
97.67810, 11680, 12048, 11728, 32, 11728, 40;
97.67810, 11680, 12048, 11728, 32, 11728, 32;
97.67810, 11672, 12024, 11728, 40, 11728, 40;
97.67810, 11672, 11824, 11728, 40, 11728, 40;
97.67810, 11672, 12288, 11728, 40, 11728, 40;
97.67810, 11672, 12288, 11728, 32, 11728, 40;
97.67810, 11664, 12480, 11728, 32, 11728, 40;
97.67810, 11664, 12480, 11728, 32, 11728, 40;
97.67810, 11672, 12992, 11728, 40, 11728, 40;
97.67810, 11680, 12416, 11728, 40, 11728, 40;
97.67810, 11680, 12416, 11728, 40, 11728, 40;
97.67810, 11680, 12824, 11728, 32, 11728, 40;
97.67810, 11680, 12824, 11728, 32, 11728, 40;
97.67810, 11680, 11664, 11728, 40, 11728, 40;
97.67810, 11672, 11120, 11728, 40, 11728, 40;
97.67810, 11672, 11120, 11728, 32, 11728, 40;
97.67810, 11672, 12072, 11728, 40, 11728, 40;
97.67810, 11672, 11752, 11728, 40, 11728, 40;
97.67810, 11672, 11752, 11728, 32, 11728, 40;
97.67810, 11672, 12648, 11728, 40, 11728, 40;
97.67810, 11672, 12648, 11728, 40, 11728, 40;
97.67810, 11672, 12656, 11728, 40, 11728, 32;
97.67810, 11672, 12952, 11728, 40, 11728, 32;
97.67810, 11672, 12952, 11728, 40, 11720, 40;
97.67810, 11680, 11808, 11728, 32, 11720, 40;
97.67810, 11680, 11808, 11728, 32, 11728, 40;
97.67810, 11680, 11720, 11728, 40, 11728, 40;
97.67810, 11672, 12568, 11728, 32, 11728, 40;
97.67810, 11672, 11976, 11728, 32, 11728, 40;
97.67810, 11672, 11976, 11728, 32, 11728, 40;
97.67810, 11672, 12560, 11728, 32, 11728, 40;
97.67810, 11672, 12560, 11728, 32, 11728, 32;
97.67810, 11672, 12640, 11728, 32, 11720, 40;
97.67810, 11672, 12728, 11728, 40, 11720, 40;
97.67810, 11672, 12728, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 40, 11728, 40;
97.67810, 11672, 11864, 11728, 40, 11728, 40;
97.67810, 11680, 11864, 11728, 32, 11720, 40;
97.67810, 11680, 12448, 11728, 32, 11720, 40;
97.67810, 11680, 12448, 11728, 32, 11728, 40;
97.67810, 11680, 11528, 11728, 40, 11728, 40;
97.67810, 11672, 12048, 11728, 40, 11728, 40;
97.67810, 11672, 12048, 11728, 32, 11728, 32;
97.67810, 11672, 10432, 11728, 40, 11728, 32;
97.67810, 11672, 12288, 11728, 40, 11728, 40;
97.67810, 11664, 12288, 11728, 32, 11728, 40;
97.67810, 11664, 13056, 11728, 40, 11728, 40;
97.67810, 11664, 13056, 11728, 40, 11728, 32;
97.67810, 11672, 12744, 11728, 40, 11728, 32;
97.67810, 11672, 12144, 11728, 40, 11728, 32;
97.67810, 11672, 12144, 11728, 32, 11728, 40;
97.67810, 11680, 11456, 11728, 32, 11728, 40;
97.67810, 11672, 12568, 11728, 40, 11728, 40;
97.67810, 11672, 12568, 11728, 40, 11728, 40;
97.67810, 11672, 12152, 11728, 32, 11728, 40;
97.67810, 11672, 12440, 11728, 32, 11728, 40;
97.67810, 11672, 12440, 11728, 40, 11728, 40;
97.67810, 11672, 13032, 11728, 40, 11728, 40;
97.67810, 11672, 13032, 11728, 40, 11728, 40;
97.67810, 11672, 12672, 11728, 40, 11728, 40;
97.67810, 11680, 12608, 11728, 40, 11728, 40;
97.67810, 11680, 12608, 11728, 32, 11720, 40;
97.67810, 11672, 12976, 11728, 40, 11720, 40;
97.67810, 11672, 12352, 11728, 40, 11728, 40;
97.67810, 11680, 12352, 11728, 32, 11728, 40;
97.67810, 11680, 11712, 11728, 40, 11728, 40;
97.67810, 11680, 11712, 11728, 40, 11728, 40;
97.67810, 11672, 12496, 11728, 40, 11728, 40;
97.67810, 11672, 11448, 11728, 40, 11728, 40;
97.67810, 11672, 11448, 11728, 40, 11728, 40;
97.67810, 11672, 11984, 11728, 32, 11728, 40;
97.67810, 11672, 11984, 11728, 32, 11728, 40;
97.67810, 11672, 12480, 11728, 40, 11728, 40;
97.67810, 11672, 12968, 11728, 40, 11728, 40;
97.67810, 11672, 12968, 11728, 40, 11728, 40;
97.67810, 11672, 11776, 11728, 40, 11728, 40;
97.67810, 11672, 11960, 11728, 40, 11728, 40;
97.67810, 11680, 11960, 11728, 40, 11728, 40;
97.67810, 11672, 12392, 11728, 40, 11728, 40;
97.67810, 11672, 11296, 11728, 40, 11728, 40;
97.67810, 11672, 11296, 11728, 40, 11728, 40;
97.67810, 11672, 12616, 11728, 40, 11728, 40;
97.67810, 11672, 12920, 11728, 40, 11728, 40;
97.67810, 11672, 12920, 11728, 40, 11728, 32;
97.67810, 11672, 12920, 11728, 32, 11728, 32;
97.67810, 11672, 12920, 11728, 32, 11728, 40;
97.67810, 11672, 12104, 11728, 40, 11728, 40;
97.67810, 11672, 11784, 11728, 40, 11728, 40;
97.67810, 11672, 11784, 11728, 40, 11728, 40;
97.67810, 11672, 12912, 11728, 32, 11728, 40;
97.67810, 11672, 11856, 11728, 32, 11728, 40;
97.67810, 11672, 11856, 11728, 40, 11720, 32;
97.67810, 11672, 12592, 11728, 40, 11720, 32;
97.67810, 11672, 12592, 11728, 40, 11728, 32;
97.67810, 11672, 11944, 11728, 32, 11728, 40;
97.67810, 11672, 12544, 11728, 32, 11728, 40;
97.67810, 11672, 12544, 11728, 40, 11728, 40;
97.67810, 11672, 12224, 11728, 32, 11728, 40;
97.67810, 11672, 12224, 11728, 32, 11728, 40;
97.67810, 11672, 11376, 11728, 32, 11728, 40;
97.67810, 11672, 12232, 11728, 32, 11728, 40;
97.67810, 11672, 12232, 11728, 32, 11728, 40;
97.67810, 11680, 11600, 11728, 40, 11728, 40;
97.67810, 11672, 12880, 11728, 32, 11728, 40;
97.67810, 11672, 12880, 11728, 32, 11728, 40;
97.67810, 11672, 11464, 11728, 40, 11728, 40;
97.67810, 11672, 12560, 11728, 40, 11728, 40;
97.67810, 11672, 12560, 11728, 32, 11728, 40;
97.67810, 11672, 12480, 11728, 40, 11728, 40;
97.67810, 11672, 12784, 11728, 40, 11728, 40;
97.67810, 11672, 12784, 11728, 40, 11728, 40;
97.67810, 11672, 12752, 11728, 32, 11728, 40;
97.67810, 11672, 12752, 11728, 32, 11728, 40;
97.67810, 11680, 11656, 11728, 40, 11728, 40;
97.67810, 11672, 12776, 11728, 40, 11728, 40;
97.67810, 11672, 12776, 11728, 32, 11728, 40;
97.67810, 11672, 12128, 11728, 40, 11728, 40;
97.67810, 11672, 12128, 11728, 40, 11728, 40;
97.67810, 11672, 12256, 11728, 40, 11728, 40;
97.67810, 11672, 12432, 11728, 40, 11728, 40;
97.67810, 11672, 12432, 11728, 32, 11728, 40;
97.67810, 11672, 12560, 11728, 32, 11728, 40;
97.67810, 11672, 12552, 11728, 32, 11728, 40;
97.67810, 11680, 12552, 11728, 40, 11728, 40;
97.67810, 11680, 10480, 11728, 40, 11728, 40;
97.67810, 11680, 10480, 11728, 40, 11728, 40;
97.67810, 11672, 12552, 11728, 40, 11728, 40;
97.67810, 11672, 11680, 11728, 40, 11728, 32;
97.67810, 11672, 12504, 11728, 40, 11728, 32;
97.67810, 11672, 12504, 11728, 40, 11728, 40;
97.67810, 11672, 12576, 11728, 32, 11728, 40;
97.67810, 11672, 12576, 11728, 32, 11728, 40;
97.67810, 11672, 12560, 11728, 40, 11728, 40;
97.67810, 11672, 12912, 11728, 40, 11728, 40;
97.67810, 11672, 12912, 11720, 40, 11728, 40;
97.67810, 11680, 12480, 11728, 40, 11728, 40;
97.67810, 11680, 11808, 11728, 40, 11728, 40;
97.67810, 11672, 11808, 11728, 32, 11728, 40;
97.67810, 11680, 11560, 11728, 32, 11728, 40;
97.67810, 11680, 11560, 11728, 32, 11728, 40;
97.67810, 11672, 12600, 11728, 40, 11728, 40;
97.67810, 11672, 12224, 11728, 40, 11728, 40;
97.67810, 11672, 12224, 11728, 40, 11728, 40;
97.67810, 11672, 12584, 11728, 40, 11728, 40;
97.67810, 11672, 12584, 11728, 40, 11728, 40;
97.67810, 11672, 13064, 11728, 32, 11728, 40;
97.67810, 11672, 12968, 11728, 32, 11728, 40;
97.67810, 11672, 12968, 11728, 32, 11720, 40;
97.67810, 11672, 12024, 11728, 40, 11720, 40;
97.67810, 11672, 11176, 11728, 40, 11728, 40;
97.67810, 11680, 11176, 11728, 40, 11728, 40;
97.67810, 11672, 12072, 11728, 32, 11728, 40;
97.67810, 11672, 11920, 11728, 32, 11728, 40;
97.67810, 11672, 11920, 11728, 32, 11728, 40;
97.67810, 11672, 12512, 11728, 32, 11728, 40;
97.67810, 11672, 12888, 11728, 32, 11728, 40;
97.67810, 11672, 12888, 11728, 32, 11720, 40;
97.67810, 11672, 12728, 11728, 40, 11720, 40;
97.67810, 11672, 12728, 11728, 40, 11720, 40;
97.67810, 11680, 12280, 11728, 40, 11720, 32;
97.67810, 11680, 11808, 11728, 40, 11728, 32;
97.67810, 11680, 11808, 11728, 40, 11728, 40;
97.67810, 11672, 11752, 11728, 40, 11728, 40;
97.67810, 11672, 11752, 11728, 40, 11728, 40;
97.67810, 11680, 11912, 11728, 40, 11728, 40;
97.67810, 11672, 12536, 11728, 40, 11728, 40;
97.67810, 11672, 12536, 11728, 32, 11728, 40;
97.67810, 11664, 12048, 11728, 40, 11728, 32;
97.67810, 11664, 12648, 11728, 40, 11728, 32;
97.67810, 11672, 12648, 11728, 32, 11728, 40;
97.67810, 11672, 12880, 11728, 40, 11728, 40;
97.67810, 11672, 12880, 11728, 40, 11728, 40;
97.67810, 11680, 12928, 11728, 40, 11720, 40;
97.67810, 11680, 11784, 11728, 40, 11720, 40;
97.67810, 11680, 11784, 11728, 40, 11728, 32;
97.67810, 11680, 11592, 11728, 40, 11728, 32;
97.67810, 11680, 11592, 11728, 40, 11728, 40;
97.67810, 11672, 11928, 11728, 40, 11728, 40;
97.67810, 11672, 11184, 11728, 32, 11728, 40;
97.67810, 11672, 12704, 11728, 32, 11728, 40;
97.67810, 11672, 12704, 11728, 32, 11728, 40;
97.67810, 11672, 12304, 11728, 40, 11728, 40;
97.67810, 11672, 12632, 11728, 40, 11728, 40;
97.67810, 11672, 12632, 11728, 40, 11728, 40;
97.67810, 11672, 12600, 11728, 40, 11728, 40;
97.67810, 11672, 12600, 11720, 40, 11728, 40;
97.67810, 11672, 12384, 11728, 40, 11728, 40;
97.67810, 11672, 11872, 11728, 40, 11728, 40;
97.67810, 11672, 11872, 11728, 40, 11728, 40;
97.67810, 11680, 11472, 11728, 32, 11728, 40;
97.67810, 11680, 11472, 11728, 32, 11728, 40;
97.67810, 11672, 12624, 11728, 32, 11728, 40;
97.67810, 11672, 11376, 11728, 32, 11728, 40;
97.67810, 11672, 11376, 11728, 32, 11728, 40;
97.67810, 11672, 12280, 11728, 40, 11728, 40;
97.67810, 11672, 12080, 11728, 40, 11728, 40;
97.67810, 11672, 12080, 11728, 40, 11728, 32;
97.67810, 11672, 12528, 11728, 40, 11728, 32;
97.67810, 11672, 12528, 11728, 40, 11728, 40;
97.67810, 11672, 13080, 11728, 40, 11728, 40;
97.67810, 11672, 12704, 11728, 40, 11728, 40;
97.67810, 11672, 12704, 11728, 40, 11720, 40;
97.67810, 11672, 12480, 11728, 40, 11728, 40;
97.67810, 11680, 11648, 11728, 40, 11728, 40;
97.67810, 11680, 11648, 11728, 40, 11728, 40;
97.67810, 11672, 12304, 11728, 40, 11728, 40;
97.67810, 11672, 11776, 11728, 40, 11728, 40;
97.67810, 11672, 11776, 11728, 32, 11728, 40;
97.67810, 11672, 12520, 11728, 40, 11728, 40;
97.67810, 11672, 12520, 11728, 40, 11728, 40;
97.67810, 11672, 12728, 11728, 40, 11728, 40;
97.67810, 11672, 11536, 11728, 40, 11728, 40;
97.67810, 11672, 11536, 11728, 40, 11720, 40;
97.67810, 11672, 12712, 11728, 32, 11720, 40;
97.67810, 11672, 12072, 11728, 32, 11720, 40;
97.67810, 11672, 12072, 11728, 40, 11728, 40;
97.67810, 11672, 11888, 11728, 32, 11728, 40;
97.67810, 11672, 11888, 11728, 32, 11720, 40;
97.67810, 11680, 11648, 11728, 32, 11728, 40;
97.67810, 11672, 11528, 11728, 32, 11728, 40;
97.67810, 11672, 11528, 11728, 32, 11728, 32;
97.67810, 11672, 11872, 11728, 32, 11728, 32;
97.67810, 11672, 11872, 11728, 32, 11728, 40;
97.67810, 11672, 12608, 11728, 40, 11728, 40;
97.67810, 11672, 12168, 11728, 40, 11728, 40;
97.67810, 11672, 12168, 11728, 40, 11720, 40;
97.67810, 11672, 12312, 11728, 32, 11720, 40;
97.67810, 11672, 12816, 11728, 40, 11728, 40;
97.67810, 11672, 12592, 11728, 40, 11720, 40;
97.67810, 11672, 12592, 11728, 40, 11728, 40;
97.67810, 11680, 12256, 11728, 32, 11728, 40;
97.67810, 11680, 12256, 11728, 32, 11728, 40;
97.67810, 11672, 12752, 11728, 40, 11728, 40;
97.67810, 11672, 12080, 11728, 40, 11728, 40;
97.67810, 11672, 12080, 11728, 40, 11728, 40;
97.67810, 11680, 12032, 11728, 40, 11728, 40;
97.67810, 11680, 12032, 11728, 40, 11728, 40;
97.67810, 11672, 11736, 11728, 40, 11728, 32;
97.67810, 11672, 10664, 11728, 40, 11728, 32;
97.67810, 11672, 10664, 11728, 40, 11728, 40;
97.67810, 11672, 12648, 11728, 40, 11728, 40;
97.67810, 11672, 11656, 11728, 40, 11728, 40;
97.67810, 11672, 11656, 11728, 32, 11728, 40;
97.67810, 11672, 12688, 11728, 40, 11728, 40;
97.67810, 11672, 12688, 11728, 40, 11728, 40;
97.67810, 11672, 12776, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 32, 11728, 40;
97.67810, 11680, 12864, 11728, 32, 11728, 40;
97.67810, 11680, 12864, 11728, 32, 11728, 40;
97.67810, 11680, 11656, 11728, 40, 11728, 40;
97.67810, 11672, 12688, 11728, 40, 11728, 40;
97.67810, 11672, 11616, 11728, 32, 11728, 32;
97.67810, 11672, 11616, 11728, 40, 11728, 40;
97.67810, 11672, 12520, 11728, 40, 11728, 40;
97.67810, 11672, 12520, 11728, 40, 11728, 40;
97.67810, 11672, 12488, 11728, 32, 11728, 40;
97.67810, 11672, 12536, 11728, 32, 11728, 40;
97.67810, 11672, 12536, 11728, 40, 11728, 40;
97.67810, 11672, 12560, 11728, 40, 11728, 40;
97.67810, 11672, 11552, 11728, 40, 11728, 40;
97.67810, 11680, 11552, 11728, 40, 11728, 40;
97.67810, 11672, 12184, 11728, 32, 11728, 40;
97.67810, 11672, 12184, 11728, 32, 11728, 40;
97.67810, 11672, 11256, 11720, 40, 11728, 40;
97.67810, 11672, 12240, 11720, 40, 11728, 40;
97.67810, 11672, 12240, 11728, 32, 11728, 40;
97.67810, 11672, 11672, 11728, 40, 11728, 40;
97.67810, 11672, 11672, 11728, 40, 11728, 40;
97.67810, 11672, 12464, 11728, 40, 11728, 40;
97.67810, 11672, 12952, 11728, 40, 11728, 40;
97.67810, 11672, 12952, 11728, 40, 11728, 32;
97.67810, 11672, 12656, 11728, 40, 11728, 32;
97.67810, 11672, 12336, 11728, 40, 11728, 40;
97.67810, 11672, 12336, 11728, 40, 11728, 40;
97.67810, 11680, 11928, 11728, 32, 11728, 40;
97.67810, 11680, 11928, 11728, 32, 11728, 40;
97.67810, 11672, 12720, 11728, 40, 11728, 40;
97.67810, 11680, 11928, 11728, 32, 11728, 40;
97.67810, 11680, 12424, 11728, 32, 11728, 40;
97.67810, 11672, 12424, 11728, 40, 11728, 32;
97.67810, 11672, 12992, 11728, 40, 11728, 32;
97.67810, 11672, 12992, 11728, 40, 11728, 40;
97.67810, 11672, 11856, 11728, 40, 11720, 40;
97.67810, 11672, 12712, 11728, 40, 11720, 40;
97.67810, 11672, 12712, 11728, 40, 11720, 40;
97.67810, 11680, 11816, 11728, 40, 11720, 40;
97.67810, 11680, 11872, 11728, 40, 11728, 40;
97.67810, 11672, 11872, 11728, 40, 11728, 40;
97.67810, 11680, 12008, 11728, 40, 11728, 40;
97.67810, 11680, 12008, 11728, 40, 11728, 40;
97.67810, 11672, 12728, 11728, 32, 11728, 40;
97.67810, 11672, 12128, 11728, 32, 11728, 40;
97.67810, 11664, 12128, 11728, 32, 11720, 40;
97.67810, 11672, 11896, 11728, 40, 11720, 40;
97.67810, 11672, 11896, 11728, 40, 11728, 32;
97.67810, 11672, 12632, 11728, 32, 11728, 40;
97.67810, 11672, 13192, 11728, 32, 11728, 40;
97.67810, 11672, 13192, 11728, 32, 11728, 40;
97.67810, 11680, 12408, 11728, 40, 11728, 40;
97.67810, 11680, 12160, 11728, 40, 11720, 40;
97.67810, 11672, 12160, 11728, 40, 11728, 40;
97.67810, 11672, 12112, 11728, 32, 11728, 40;
97.67810, 11680, 11480, 11728, 32, 11728, 40;
97.67810, 11680, 11480, 11728, 40, 11720, 40;
97.67810, 11672, 12552, 11728, 40, 11720, 32;
97.67810, 11672, 12704, 11728, 40, 11728, 32;
97.67810, 11664, 12704, 11728, 32, 11728, 32;
97.67810, 11672, 12616, 11728, 32, 11728, 32;
97.67810, 11672, 12616, 11728, 32, 11728, 40;
97.67810, 11680, 11968, 11728, 40, 11728, 32;
97.67810, 11680, 11232, 11728, 40, 11728, 32;
97.67810, 11680, 11232, 11728, 40, 11728, 40;
97.67810, 11672, 12696, 11728, 40, 11728, 40;
97.67810, 11672, 12696, 11728, 40, 11728, 32;
97.67810, 11672, 11944, 11728, 40, 11728, 40;
97.67810, 11672, 12920, 11728, 40, 11728, 40;
97.67810, 11672, 12920, 11728, 32, 11728, 40;
97.67810, 11672, 12936, 11728, 40, 11728, 40;
97.67810, 11672, 11888, 11728, 40, 11728, 40;
97.67810, 11672, 11888, 11728, 32, 11728, 40;
97.67810, 11672, 11520, 11728, 32, 11728, 40;
97.67810, 11672, 11520, 11728, 32, 11728, 40;
97.67810, 11680, 11664, 11728, 32, 11728, 40;
97.67810, 11672, 12936, 11728, 32, 11728, 40;
97.67810, 11672, 12936, 11728, 40, 11728, 40;
97.67810, 11672, 11896, 11728, 40, 11728, 40;
97.67810, 11672, 12752, 11728, 40, 11728, 32;
97.67810, 11672, 12752, 11728, 40, 11720, 40;
97.67810, 11680, 12880, 11728, 40, 11728, 40;
97.67810, 11680, 12264, 11728, 40, 11728, 40;
97.67810, 11680, 12264, 11728, 40, 11728, 40;
97.67810, 11672, 11520, 11728, 32, 11728, 40;
97.67810, 11672, 11440, 11728, 32, 11728, 40;
97.67810, 11680, 11440, 11728, 32, 11728, 40;
97.67810, 11672, 12528, 11728, 40, 11728, 40;
97.67810, 11672, 12528, 11728, 40, 11728, 40;
97.67810, 11672, 11488, 11728, 32, 11728, 40;
97.67810, 11672, 11904, 11728, 32, 11728, 40;
97.67810, 11672, 11904, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 40, 11728, 40;
97.67810, 11672, 12840, 11728, 40, 11728, 40;
97.67810, 11672, 12720, 11728, 32, 11728, 40;
97.67810, 11672, 12216, 11728, 32, 11728, 40;
97.67810, 11672, 12216, 11728, 40, 11728, 40;
97.67810, 11680, 12072, 11728, 40, 11728, 40;
97.67810, 11680, 12472, 11728, 40, 11728, 40;
97.67810, 11672, 12472, 11728, 32, 11728, 40;
97.67810, 11672, 11696, 11728, 40, 11728, 40;
97.67810, 11672, 11696, 11728, 40, 11720, 40;
97.67810, 11672, 12544, 11728, 40, 11720, 40;
97.67810, 11672, 13096, 11728, 40, 11728, 40;
97.67810, 11672, 12248, 11728, 32, 11728, 40;
97.67810, 11680, 12248, 11728, 40, 11720, 40;
97.67810, 11680, 11984, 11728, 40, 11720, 40;
99.24953, 11680, 11984, 11728, 40, 11728, 32;
99.24953, 11680, 11608, 11728, 40, 11728, 32;
99.24953, 11672, 12184, 11728, 40, 11728, 32;
99.24953, 11672, 12184, 11728, 40, 11728, 40;
99.24953, 11672, 11664, 11728, 40, 11728, 40;
99.24953, 11672, 11664, 11728, 40, 11728, 40;
99.24953, 11672, 12952, 11728, 32, 11728, 40;
99.24953, 11664, 12000, 11728, 32, 11728, 40;
99.24953, 11664, 12000, 11728, 40, 11728, 40;
99.24953, 11672, 12064, 11728, 32, 11728, 40;
99.24953, 11672, 12216, 11728, 32, 11728, 40;
99.24953, 11672, 12216, 11728, 40, 11728, 40;
99.24953, 11672, 12480, 11728, 40, 11728, 40;
99.24953, 11672, 12480, 11728, 40, 11728, 40;
99.24953, 11672, 12728, 11728, 40, 11728, 40;
99.24953, 11680, 11712, 11728, 40, 11728, 40;
99.24953, 11680, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 11760, 11728, 40, 11728, 40;
99.77333, 11672, 11504, 11728, 40, 11728, 40;
99.77333, 11672, 11504, 11728, 40, 11728, 40;
99.77333, 11672, 12360, 11728, 32, 11728, 40;
99.77333, 11672, 12360, 11728, 32, 11728, 40;
99.77333, 11672, 11936, 11728, 40, 11728, 40;
99.77333, 11664, 12512, 11728, 32, 11728, 40;
99.77333, 11664, 12656, 11728, 32, 11728, 40;
99.77333, 11672, 12656, 11728, 40, 11720, 40;
99.77333, 11680, 12848, 11728, 32, 11720, 40;
99.77333, 11680, 12848, 11728, 32, 11728, 32;
99.77333, 11672, 11608, 11728, 40, 11728, 32;
99.77333, 11672, 11352, 11728, 40, 11728, 32;
99.77333, 11680, 11352, 11728, 32, 11728, 32;
99.77333, 11672, 12448, 11728, 40, 11728, 32;
99.77333, 11672, 12448, 11728, 40, 11728, 32;
99.77333, 11672, 11992, 11728, 32, 11728, 40;
99.77333, 11672, 12512, 11728, 32, 11728, 40;
99.77333, 11672, 12512, 11728, 32, 11728, 32;
99.77333, 11672, 12888, 11728, 40, 11728, 40;
99.77333, 11672, 12928, 11728, 40, 11728, 40;
99.77333, 11672, 12928, 11728, 40, 11728, 40;
99.77333, 11680, 12448, 11728, 40, 11728, 40;
99.77333, 11680, 12448, 11728, 40, 11728, 40;
99.77333, 11672, 12088, 11728, 40, 11728, 32;
99.77333, 11672, 11672, 11728, 40, 11728, 32;
99.77333, 11672, 11672, 11728, 32, 11728, 40;
99.77333, 11672, 11312, 11728, 40, 11728, 40;
99.77333, 11672, 11312, 11728, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 32, 11728, 40;
99.77333, 11664, 12128, 11728, 40, 11728, 40;
99.77333, 11672, 12872, 11728, 40, 11728, 40;
99.77333, 11672, 12872, 11728, 40, 11720, 40;
99.77333, 11680, 12632, 11728, 40, 11720, 40;
99.77333, 11680, 12632, 11728, 40, 11720, 40;
99.77333, 11680, 12208, 11728, 32, 11728, 32;
99.77333, 11672, 11456, 11728, 32, 11728, 32;
99.77333, 11672, 11456, 11728, 40, 11728, 40;
99.77333, 11672, 11048, 11728, 32, 11728, 40;
99.77333, 11672, 12688, 11728, 32, 11728, 40;
99.77333, 11672, 12688, 11728, 40, 11728, 40;
99.77333, 11672, 11720, 11728, 40, 11728, 40;
99.77333, 11672, 11720, 11728, 40, 11728, 40;
99.77333, 11672, 12400, 11728, 40, 11728, 32;
99.77333, 11672, 12904, 11728, 40, 11728, 32;
99.77333, 11672, 12904, 11728, 40, 11728, 40;
99.77333, 11672, 12720, 11728, 32, 11728, 40;
99.77333, 11672, 11888, 11728, 32, 11728, 40;
99.77333, 11680, 11888, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 12504, 11728, 40, 11728, 40;
99.77333, 11672, 11504, 11728, 40, 11728, 40;
99.77333, 11680, 11504, 11728, 32, 11728, 40;
99.77333, 11672, 12720, 11728, 40, 11728, 40;
99.77333, 11672, 12376, 11728, 40, 11728, 40;
99.77333, 11672, 12376, 11728, 40, 11728, 40;
99.77333, 11672, 12672, 11728, 40, 11728, 40;
99.77333, 11672, 12504, 11728, 40, 11720, 40;
99.77333, 11680, 12504, 11728, 40, 11728, 40;
99.77333, 11680, 11976, 11728, 40, 11728, 40;
99.77333, 11680, 11976, 11728, 40, 11728, 40;
99.77333, 11672, 12160, 11728, 40, 11728, 40;
99.77333, 11672, 11000, 11728, 40, 11728, 40;
99.77333, 11672, 11000, 11728, 32, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11728, 40;
99.77333, 11672, 12632, 11728, 40, 11728, 40;
99.77333, 11672, 12632, 11728, 40, 11728, 40;
99.77333, 11672, 12552, 11728, 32, 11728, 40;
99.77333, 11672, 12552, 11728, 32, 11720, 40;
99.77333, 11672, 12376, 11728, 40, 11720, 40;
99.77333, 11672, 11648, 11728, 40, 11728, 40;
99.77333, 11672, 11648, 11728, 32, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11728, 40;
99.77333, 11672, 11464, 11728, 40, 11728, 40;
99.77333, 11672, 12760, 11728, 40, 11728, 40;
99.77333, 11672, 12760, 11728, 40, 11728, 40;
99.77333, 11672, 12576, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 32;
99.77333, 11672, 12992, 11728, 40, 11720, 40;
99.77333, 11680, 11344, 11728, 40, 11720, 40;
99.77333, 11680, 11344, 11728, 32, 11728, 40;
99.77333, 11664, 12048, 11728, 40, 11728, 40;
99.77333, 11664, 11400, 11728, 40, 11728, 40;
99.77333, 11672, 11400, 11720, 32, 11728, 40;
99.77333, 11672, 12736, 11720, 40, 11728, 40;
99.77333, 11672, 12736, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 32, 11728, 40;
99.77333, 11672, 12376, 11728, 32, 11728, 40;
99.77333, 11672, 12376, 11728, 40, 11728, 40;
99.77333, 11672, 13192, 11728, 40, 11728, 40;
99.77333, 11672, 13192, 11728, 40, 11728, 40;
99.77333, 11680, 12896, 11728, 40, 11720, 40;
99.77333, 11680, 11984, 11728, 40, 11720, 40;
99.77333, 11680, 11984, 11728, 40, 11720, 40;
99.77333, 11680, 12200, 11728, 32, 11720, 40;
99.77333, 11680, 11624, 11728, 32, 11728, 40;
99.77333, 11672, 11624, 11728, 40, 11728, 40;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11672, 12144, 11728, 40, 11728, 40;
99.77333, 11672, 12296, 11728, 40, 11728, 40;
99.77333, 11672, 12296, 11728, 32, 11720, 40;
99.77333, 11672, 12600, 11728, 40, 11728, 40;
99.77333, 11672, 12880, 11728, 32, 11728, 40;
99.77333, 11672, 12880, 11728, 32, 11720, 40;
99.77333, 11672, 12080, 11728, 32, 11720, 40;
99.77333, 11672, 12488, 11728, 32, 11720, 40;
99.77333, 11672, 12488, 11728, 32, 11728, 40;
99.77333, 11680, 11912, 11728, 40, 11728, 40;
99.77333, 11680, 12584, 11728, 40, 11728, 40;
99.77333, 11672, 12584, 11728, 40, 11728, 32;
99.77333, 11672, 11896, 11728, 40, 11728, 32;
99.77333, 11672, 11896, 11728, 40, 11720, 40;
99.77333, 11672, 12672, 11728, 32, 11720, 40;
99.77333, 11672, 12928, 11728, 32, 11728, 40;
99.77333, 11672, 12928, 11728, 40, 11720, 40;
99.77333, 11672, 13072, 11728, 40, 11720, 40;
99.77333, 11672, 13072, 11728, 40, 11720, 40;
99.77333, 11680, 12256, 11728, 40, 11720, 40;
99.77333, 11680, 11912, 11728, 40, 11720, 40;
99.77333, 11680, 11912, 11728, 40, 11728, 40;
99.77333, 11672, 11936, 11728, 40, 11728, 40;
99.77333, 11672, 10992, 11728, 40, 11728, 40;
99.77333, 11672, 10992, 11728, 32, 11728, 40;
99.77333, 11672, 12064, 11728, 32, 11728, 40;
99.77333, 11672, 12064, 11728, 32, 11728, 40;
99.77333, 11672, 11280, 11728, 40, 11728, 40;
99.77333, 11672, 12584, 11728, 40, 11728, 40;
99.77333, 11672, 12392, 11728, 40, 11728, 40;
99.77333, 11672, 12392, 11728, 40, 11728, 40;
99.77333, 11672, 12640, 11728, 40, 11728, 40;
99.77333, 11672, 12640, 11728, 40, 11728, 40;
99.77333, 11672, 12680, 11728, 40, 11720, 40;
99.77333, 11672, 11992, 11728, 40, 11720, 40;
99.77333, 11672, 11992, 11728, 32, 11728, 40;
99.77333, 11680, 12288, 11728, 40, 11728, 40;
99.77333, 11680, 12288, 11728, 40, 11720, 40;
99.77333, 11680, 11816, 11720, 32, 11728, 40;
99.77333, 11672, 12816, 11720, 40, 11728, 40;
99.77333, 11672, 12816, 11728, 40, 11728, 40;
99.77333, 11672, 12016, 11728, 32, 11728, 32;
99.77333, 11672, 12288, 11728, 32, 11728, 32;
99.77333, 11672, 12288, 11728, 40, 11728, 40;
99.77333, 11672, 12144, 11728, 32, 11728, 40;
99.77333, 11672, 12144, 11728, 32, 11728, 40;
99.77333, 11672, 12328, 11728, 40, 11728, 40;
99.77333, 11672, 12824, 11728, 40, 11728, 40;
99.77333, 11672, 12824, 11728, 40, 11728, 40;
99.77333, 11672, 12504, 11728, 32, 11728, 40;
99.77333, 11672, 11936, 11728, 32, 11720, 40;
99.77333, 11672, 11936, 11728, 32, 11728, 40;
99.77333, 11680, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 11784, 11728, 40, 11728, 40;
99.77333, 11672, 11784, 11728, 32, 11728, 32;
99.77333, 11672, 11680, 11728, 32, 11728, 40;
99.77333, 11672, 12672, 11728, 32, 11728, 40;
99.77333, 11672, 12672, 11728, 40, 11728, 32;
99.77333, 11664, 12384, 11728, 40, 11728, 32;
99.77333, 11664, 12384, 11728, 40, 11728, 40;
99.77333, 11672, 12152, 11728, 32, 11728, 40;
99.77333, 11672, 12848, 11728, 32, 11728, 40;
99.77333, 11664, 12848, 11728, 32, 11728, 32;
99.77333, 11672, 12896, 11728, 40, 11728, 32;
99.77333, 11672, 12896, 11728, 40, 11728, 40;
99.77333, 11680, 11872, 11728, 40, 11728, 40;
99.77333, 11680, 11688, 11728, 40, 11728, 40;
99.77333, 11680, 11688, 11728, 40, 11728, 40;
99.77333, 11672, 12320, 11728, 40, 11728, 40;
99.77333, 11672, 11528, 11728, 40, 11728, 40;
99.77333, 11672, 11528, 11728, 40, 11720, 32;
99.77333, 11672, 12320, 11728, 32, 11720, 32;
99.77333, 11672, 12320, 11728, 32, 11728, 40;
99.77333, 11672, 12984, 11728, 40, 11728, 32;
99.77333, 11672, 12320, 11728, 40, 11720, 32;
99.77333, 11672, 12320, 11728, 40, 11728, 40;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11672, 11680, 11728, 40, 11728, 32;
99.77333, 11672, 11680, 11728, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 40, 11728, 40;
99.77333, 11672, 12224, 11728, 40, 11728, 40;
99.77333, 11672, 12224, 11728, 40, 11728, 40;
99.77333, 11672, 12544, 11728, 40, 11728, 40;
99.77333, 11672, 12544, 11728, 40, 11728, 40;
99.77333, 11672, 13064, 11728, 40, 11720, 40;
99.77333, 11680, 12696, 11728, 40, 11720, 40;
99.77333, 11680, 12696, 11728, 40, 11720, 32;
99.77333, 11680, 11792, 11728, 32, 11720, 40;
99.77333, 11680, 11928, 11728, 32, 11728, 40;
99.77333, 11680, 11928, 11728, 32, 11728, 40;
99.77333, 11680, 12416, 11728, 32, 11728, 40;
99.77333, 11680, 12416, 11728, 32, 11728, 32;
99.77333, 11672, 11960, 11728, 40, 11720, 40;
99.77333, 11672, 12704, 11728, 40, 11720, 40;
99.77333, 11672, 12704, 11728, 32, 11728, 40;
99.77333, 11672, 12096, 11728, 40, 11728, 40;
99.77333, 11672, 12520, 11728, 40, 11728, 40;
99.77333, 11680, 12520, 11728, 32, 11728, 40;
99.77333, 11672, 11784, 11728, 32, 11728, 40;
99.77333, 11672, 11784, 11728, 32, 11728, 40;
99.77333, 11680, 11648, 11728, 40, 11728, 32;
99.77333, 11680, 11992, 11728, 40, 11728, 32;
99.77333, 11672, 11336, 11728, 40, 11728, 40;
99.77333, 11680, 11336, 11728, 32, 11728, 40;
99.77333, 11672, 12960, 11728, 40, 11728, 40;
99.77333, 11672, 12960, 11728, 40, 11728, 40;
99.77333, 11664, 12472, 11728, 40, 11728, 40;
99.77333, 11664, 12480, 11728, 40, 11728, 40;
99.77333, 11672, 12480, 11728, 40, 11728, 40;
99.77333, 11680, 12864, 11728, 40, 11728, 40;
99.77333, 11680, 12864, 11728, 40, 11728, 40;
99.77333, 11680, 12560, 11728, 32, 11728, 32;
99.77333, 11672, 11296, 11728, 32, 11728, 32;
99.77333, 11672, 11296, 11728, 32, 11728, 40;
99.77333, 11672, 11248, 11728, 32, 11728, 40;
99.77333, 11672, 12472, 11728, 32, 11720, 40;
99.77333, 11672, 12472, 11728, 40, 11728, 40;
99.77333, 11664, 12144, 11728, 40, 11728, 40;
99.77333, 11664, 12144, 11728, 40, 11728, 40;
99.77333, 11672, 12448, 11728, 40, 11728, 40;
99.77333, 11672, 12792, 11728, 40, 11728, 40;
99.77333, 11672, 12792, 11728, 32, 11728, 40;
99.77333, 11672, 12936, 11728, 40, 11728, 40;
99.77333, 11672, 12936, 11728, 40, 11728, 40;
99.77333, 11680, 12472, 11728, 32, 11728, 40;
99.77333, 11680, 11576, 11728, 32, 11728, 40;
99.77333, 11680, 11576, 11728, 40, 11728, 40;
99.77333, 11672, 12616, 11728, 40, 11728, 32;
99.77333, 11672, 11640, 11728, 40, 11728, 32;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11672, 12368, 11728, 40, 11728, 40;
99.77333, 11672, 13072, 11728, 40, 11728, 40;
99.77333, 11672, 13072, 11728, 40, 11728, 40;
99.77333, 11672, 13080, 11728, 32, 11728, 40;
99.77333, 11672, 12184, 11728, 32, 11720, 40;
99.77333, 11680, 12184, 11728, 32, 11720, 32;
99.77333, 11680, 11768, 11728, 40, 11720, 32;
99.77333, 11680, 11768, 11728, 40, 11728, 40;
99.77333, 11672, 12320, 11728, 32, 11728, 40;
99.77333, 11672, 11248, 11728, 32, 11728, 40;
99.77333, 11672, 11248, 11728, 40, 11728, 40;
99.77333, 11672, 12272, 11728, 40, 11728, 40;
99.77333, 11672, 12008, 11728, 40, 11728, 40;
99.77333, 11672, 12008, 11728, 40, 11728, 40;
99.77333, 11672, 12736, 11728, 40, 11728, 40;
99.77333, 11672, 12736, 11728, 40, 11720, 40;
99.77333, 11680, 12840, 11728, 40, 11720, 40;
99.77333, 11680, 11816, 11728, 40, 11720, 40;
99.77333, 11680, 11816, 11728, 32, 11728, 40;
99.77333, 11672, 12128, 11728, 32, 11728, 40;
99.77333, 11672, 12128, 11728, 32, 11728, 40;
99.77333, 11672, 10664, 11728, 32, 11728, 40;
99.77333, 11672, 12240, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11664, 12256, 11728, 40, 11728, 40;
99.77333, 11664, 12256, 11728, 40, 11728, 40;
99.77333, 11672, 12904, 11728, 40, 11728, 40;
99.77333, 11680, 12752, 11728, 40, 11728, 40;
99.77333, 11680, 12752, 11728, 40, 11728, 40;
99.77333, 11672, 12088, 11728, 40, 11728, 32;
99.77333, 11672, 11608, 11728, 40, 11728, 32;
99.77333, 11680, 11608, 11728, 32, 11728, 40;
99.77333, 11672, 12488, 11728, 40, 11728, 40;
99.77333, 11672, 12488, 11728, 40, 11728, 40;
99.77333, 11672, 11960, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11728, 40, 11728, 40;
99.77333, 11672, 12784, 11728, 40, 11728, 40;
99.77333, 11672, 12784, 11728, 40, 11728, 32;
99.77333, 11680, 11440, 11728, 40, 11728, 32;
99.77333, 11672, 11848, 11728, 40, 11728, 32;
99.77333, 11672, 11848, 11728, 40, 11728, 40;
99.77333, 11672, 11864, 11728, 40, 11728, 32;
99.77333, 11672, 12304, 11728, 40, 11728, 32;
99.77333, 11672, 12304, 11728, 32, 11728, 40;
99.77333, 11664, 12520, 11728, 40, 11728, 40;
99.77333, 11664, 12640, 11728, 40, 11720, 32;
99.77333, 11672, 12640, 11728, 40, 11720, 40;
99.77333, 11680, 12392, 11728, 32, 11720, 40;
99.77333, 11680, 11664, 11728, 32, 11720, 40;
99.77333, 11680, 11664, 11728, 40, 11728, 40;
99.77333, 11672, 11408, 11728, 32, 11728, 40;
99.77333, 11672, 11408, 11728, 32, 11728, 40;
99.77333, 11680, 11672, 11728, 40, 11728, 32;
99.77333, 11672, 12480, 11728, 40, 11728, 32;
99.77333, 11672, 12480, 11728, 32, 11728, 40;
99.77333, 11672, 11888, 11728, 40, 11728, 40;
99.77333, 11672, 12376, 11728, 40, 11728, 32;
99.77333, 11672, 12376, 11728, 40, 11728, 40;
99.77333, 11672, 12928, 11728, 32, 11728, 40;
99.77333, 11672, 12928, 11728, 32, 11728, 40;
99.77333, 11672, 12896, 11728, 32, 11728, 40;
99.77333, 11672, 12360, 11728, 32, 11720, 40;
99.77333, 11680, 12360, 11728, 40, 11728, 40;
99.77333, 11672, 11016, 11728, 32, 11728, 40;
99.77333, 11672, 11016, 11728, 32, 11728, 40;
99.77333, 11672, 11648, 11720, 32, 11728, 40;
99.77333, 11672, 12168, 11720, 32, 11728, 40;
99.77333, 11672, 12168, 11728, 40, 11728, 40;
99.77333, 11672, 12760, 11728, 40, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11728, 40;
99.77333, 11672, 13000, 11728, 40, 11720, 40;
99.77333, 11680, 12296, 11728, 40, 11720, 40;
99.77333, 11680, 12296, 11728, 40, 11720, 40;
99.77333, 11680, 11776, 11728, 32, 11720, 40;
99.77333, 11680, 12504, 11728, 32, 11728, 40;
99.77333, 11672, 12504, 11728, 40, 11728, 32;
99.77333, 11672, 11632, 11728, 40, 11728, 32;
99.77333, 11672, 11632, 11728, 40, 11728, 40;
99.77333, 11664, 12736, 11728, 32, 11728, 40;
99.77333, 11672, 12688, 11728, 32, 11728, 40;
99.77333, 11672, 12688, 11728, 40, 11728, 40;
99.77333, 11672, 12360, 11728, 40, 11728, 40;
99.77333, 11672, 12360, 11728, 40, 11720, 40;
99.77333, 11680, 11944, 11728, 40, 11728, 40;
99.77333, 11680, 11928, 11728, 40, 11728, 40;
99.77333, 11680, 11928, 11728, 40, 11728, 40;
99.77333, 11672, 11920, 11728, 40, 11728, 40;
99.77333, 11672, 11488, 11728, 40, 11728, 40;
99.77333, 11672, 11488, 11728, 32, 11728, 40;
99.77333, 11672, 12768, 11728, 40, 11728, 40;
99.77333, 11672, 12768, 11728, 40, 11728, 40;
99.77333, 11680, 11720, 11720, 40, 11728, 40;
99.77333, 11672, 12608, 11720, 40, 11728, 40;
99.77333, 11672, 12608, 11728, 32, 11728, 40;
99.77333, 11672, 13104, 11728, 40, 11728, 32;
99.77333, 11672, 12584, 11728, 32, 11728, 32;
99.77333, 11672, 12584, 11728, 32, 11720, 40;
99.77333, 11672, 12336, 11728, 40, 11728, 40;
99.77333, 11680, 11368, 11728, 40, 11728, 40;
99.77333, 11680, 11368, 11728, 32, 11728, 40;
99.77333, 11672, 12296, 11720, 40, 11728, 40;
99.77333, 11672, 11552, 11720, 40, 11728, 40;
99.77333, 11680, 11552, 11728, 40, 11728, 40;
99.77333, 11664, 12336, 11728, 40, 11728, 40;
99.77333, 11664, 12336, 11728, 40, 11728, 40;
99.77333, 11672, 12808, 11728, 40, 11728, 40;
99.77333, 11672, 11912, 11728, 40, 11728, 40;
99.77333, 11672, 11912, 11728, 40, 11720, 40;
99.77333, 11672, 12544, 11728, 40, 11720, 40;
99.77333, 11672, 12544, 11728, 40, 11728, 40;
99.77333, 11680, 11608, 11728, 40, 11728, 40;
99.77333, 11672, 11944, 11728, 40, 11728, 40;
99.77333, 11672, 11944, 11728, 40, 11728, 40;
99.77333, 11680, 11472, 11728, 32, 11728, 40;
99.77333, 11680, 12544, 11728, 32, 11728, 40;
99.77333, 11672, 12544, 11728, 40, 11728, 40;
99.77333, 11664, 12128, 11728, 40, 11728, 40;
99.77333, 11664, 12128, 11728, 40, 11728, 40;
99.77333, 11672, 12400, 11728, 40, 11728, 40;
99.77333, 11672, 13152, 11728, 40, 11728, 40;
99.77333, 11672, 12704, 11728, 40, 11720, 40;
99.77333, 11680, 12704, 11728, 40, 11720, 40;
99.77333, 11672, 12088, 11728, 32, 11720, 40;
99.77333, 11672, 12088, 11728, 32, 11728, 40;
99.77333, 11680, 11064, 11728, 40, 11728, 32;
99.77333, 11672, 11752, 11728, 40, 11728, 32;
99.77333, 11672, 11752, 11728, 40, 11728, 40;
99.77333, 11672, 12024, 11728, 32, 11728, 40;
99.77333, 11672, 12024, 11728, 32, 11728, 40;
99.77333, 11672, 12112, 11728, 40, 11728, 40;
99.77333, 11664, 12808, 11728, 40, 11728, 40;
99.77333, 11664, 12808, 11728, 32, 11720, 40;
99.77333, 11672, 12784, 11728, 40, 11720, 40;
99.77333, 11672, 12320, 11728, 40, 11720, 40;
99.77333, 11680, 12320, 11728, 40, 11720, 40;
99.77333, 11680, 12008, 11728, 40, 11720, 40;
99.77333, 11680, 12008, 11728, 40, 11728, 40;
99.77333, 11664, 11960, 11728, 40, 11728, 32;
99.77333, 11672, 11784, 11728, 40, 11728, 32;
99.77333, 11672, 11784, 11728, 32, 11728, 40;
99.77333, 11672, 12256, 11728, 40, 11728, 40;
99.77333, 11672, 12256, 11728, 40, 11728, 40;
99.77333, 11664, 12760, 11728, 32, 11728, 40;
99.77333, 11672, 12672, 11728, 40, 11728, 40;
99.77333, 11680, 12640, 11728, 40, 11728, 32;
99.77333, 11680, 12640, 11728, 32, 11720, 40;
99.77333, 11688, 12648, 11728, 40, 11720, 40;
99.77333, 11688, 11744, 11728, 40, 11720, 40;
99.77333, 11672, 11744, 11728, 40, 11728, 40;
99.77333, 11672, 11368, 11728, 40, 11728, 40;
99.77333, 11672, 11368, 11728, 40, 11728, 40;
99.77333, 11672, 11584, 11720, 40, 11728, 40;
99.77333, 11672, 11832, 11720, 40, 11728, 40;
99.77333, 11672, 11832, 11728, 32, 11720, 40;
99.77333, 11672, 12432, 11728, 32, 11720, 40;
99.77333, 11672, 12432, 11728, 32, 11728, 40;
99.77333, 11664, 12080, 11728, 40, 11720, 32;
99.77333, 11672, 12904, 11728, 40, 11720, 32;
99.77333, 11672, 12904, 11728, 32, 11720, 40;
99.77333, 11680, 12704, 11728, 40, 11720, 40;
99.77333, 11680, 12080, 11728, 40, 11720, 40;
99.77333, 11680, 12080, 11728, 40, 11728, 40;
99.77333, 11672, 11912, 11728, 40, 11728, 40;
99.77333, 11672, 11912, 11728, 40, 11728, 40;
99.77333, 11680, 11528, 11728, 40, 11728, 40;
99.77333, 11680, 12688, 11728, 40, 11728, 40;
99.77333, 11672, 12688, 11728, 40, 11728, 40;
99.77333, 11672, 12336, 11728, 40, 11728, 40;
99.77333, 11672, 12336, 11728, 40, 11720, 40;
99.77333, 11672, 12920, 11728, 40, 11720, 32;
99.77333, 11672, 12648, 11728, 40, 11720, 40;
99.77333, 11680, 11880, 11728, 40, 11720, 40;
99.77333, 11680, 11880, 11728, 32, 11720, 40;
99.77333, 11672, 12288, 11728, 40, 11720, 40;
99.77333, 11672, 12288, 11728, 40, 11728, 40;
99.77333, 11672, 11832, 11728, 32, 11728, 32;
99.77333, 11672, 11848, 11728, 32, 11728, 32;
99.77333, 11672, 11848, 11728, 32, 11728, 40;
99.77333, 11672, 12152, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 40, 11728, 40;
99.77333, 11672, 13032, 11728, 40, 11728, 40;
99.77333, 11672, 13032, 11728, 40, 11728, 40;
99.77333, 11672, 12408, 11728, 40, 11720, 32;
99.77333, 11672, 12728, 11728, 40, 11720, 32;
99.77333, 11672, 12728, 11728, 32, 11728, 40;
99.77333, 11672, 11952, 11720, 40, 11728, 40;
99.77333, 11672, 11952, 11720, 40, 11728, 40;
99.77333, 11672, 12584, 11728, 40, 11728, 40;
99.77333, 11672, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 12432, 11728, 40, 11728, 40;
99.77333, 11672, 12752, 11728, 40, 11728, 40;
99.77333, 11672, 12752, 11728, 32, 11728, 40;
99.77333, 11664, 12176, 11728, 40, 11720, 40;
99.77333, 11672, 13104, 11728, 32, 11720, 40;
99.77333, 11672, 13104, 11728, 32, 11728, 40;
99.77333, 11680, 12552, 11728, 40, 11728, 40;
99.77333, 11680, 11960, 11728, 40, 11728, 40;
99.77333, 11664, 11960, 11720, 40, 11728, 32;
99.77333, 11680, 11464, 11720, 40, 11728, 32;
99.77333, 11680, 11464, 11728, 40, 11728, 40;
99.77333, 11672, 12200, 11728, 40, 11728, 40;
99.77333, 11672, 12320, 11728, 40, 11728, 40;
99.77333, 11672, 12320, 11728, 40, 11720, 40;
99.77333, 11672, 12680, 11728, 40, 11720, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 40;
99.77333, 11680, 12416, 11728, 40, 11720, 40;
99.77333, 11680, 11800, 11728, 40, 11720, 40;
99.77333, 11680, 11800, 11728, 40, 11728, 40;
99.77333, 11672, 11456, 11728, 40, 11728, 40;
99.77333, 11672, 11600, 11728, 40, 11720, 40;
99.77333, 11680, 11600, 11720, 40, 11728, 40;
99.77333, 11672, 11904, 11720, 32, 11728, 40;
99.77333, 11672, 11904, 11728, 32, 11728, 40;
99.77333, 11680, 11824, 11728, 32, 11728, 40;
99.77333, 11672, 12408, 11728, 32, 11728, 40;
99.77333, 11672, 12408, 11728, 40, 11728, 40;
99.77333, 11672, 12288, 11728, 40, 11728, 40;
99.77333, 11672, 11880, 11728, 40, 11720, 40;
99.77333, 11672, 11880, 11728, 40, 11728, 40;
99.77333, 11672, 12736, 11728, 40, 11720, 40;
99.77333, 11672, 12552, 11728, 40, 11720, 40;
99.77333, 11672, 12552, 11728, 32, 11720, 40;
99.77333, 11672, 11784, 11728, 40, 11720, 40;
99.77333, 11672, 11632, 11728, 40, 11728, 40;
99.77333, 11672, 11632, 11728, 40, 11728, 40;
99.77333, 11680, 12576, 11728, 32, 11728, 40;
99.77333, 11680, 12576, 11720, 32, 11728, 40;
99.77333, 11672, 12296, 11728, 32, 11728, 40;
99.77333, 11672, 12632, 11728, 32, 11720, 40;
99.77333, 11672, 12632, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11720, 40;
99.77333, 11680, 12752, 11728, 32, 11728, 40;
99.77333, 11672, 11872, 11728, 32, 11728, 40;
99.77333, 11672, 11872, 11728, 40, 11728, 40;
99.77333, 11672, 11336, 11728, 32, 11728, 40;
99.77333, 11672, 12800, 11728, 32, 11728, 40;
99.77333, 11672, 12800, 11728, 40, 11728, 40;
99.77333, 11664, 12456, 11728, 40, 11728, 40;
99.77333, 11664, 12456, 11728, 40, 11728, 40;
99.77333, 11672, 12776, 11728, 40, 11728, 40;
99.77333, 11672, 12832, 11728, 40, 11728, 40;
99.77333, 11672, 12760, 11728, 40, 11720, 40;
99.77333, 11680, 12760, 11728, 32, 11728, 40;
99.77333, 11672, 11616, 11728, 40, 11728, 40;
99.77333, 11672, 11616, 11728, 40, 11728, 40;
99.77333, 11672, 11848, 11728, 40, 11728, 40;
99.77333, 11672, 12432, 11728, 40, 11728, 40;
99.77333, 11672, 12432, 11728, 32, 11728, 40;
99.77333, 11672, 11504, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11728, 32, 11728, 40;
99.77333, 11672, 12376, 11728, 40, 11728, 40;
99.77333, 11672, 12376, 11728, 40, 11728, 32;
99.77333, 11672, 12944, 11728, 40, 11728, 40;
99.77333, 11672, 11976, 11728, 40, 11720, 40;
99.77333, 11680, 11976, 11728, 40, 11728, 40;
99.77333, 11680, 11792, 11728, 32, 11728, 40;
99.77333, 11680, 11792, 11728, 32, 11728, 40;
99.77333, 11672, 11600, 11728, 40, 11728, 40;
99.77333, 11672, 11304, 11728, 40, 11728, 40;
99.77333, 11672, 11304, 11728, 32, 11728, 40;
99.77333, 11672, 12496, 11728, 40, 11728, 40;
99.77333, 11672, 12080, 11728, 40, 11728, 40;
99.77333, 11672, 12080, 11728, 40, 11728, 40;
99.77333, 11664, 12696, 11728, 40, 11728, 40;
99.77333, 11664, 12696, 11728, 40, 11728, 40;
99.77333, 11672, 12840, 11728, 40, 11728, 40;
99.77333, 11680, 12496, 11728, 40, 11728, 40;
99.77333, 11680, 12160, 11728, 40, 11720, 40;
99.77333, 11672, 12160, 11728, 40, 11728, 40;
99.77333, 11672, 11672, 11728, 40, 11728, 40;
99.77333, 11672, 11672, 11728, 40, 11728, 32;
99.77333, 11672, 12512, 11720, 40, 11728, 40;
99.77333, 11672, 11712, 11720, 40, 11728, 40;
99.77333, 11672, 11712, 11728, 40, 11728, 40;
99.77333, 11664, 12568, 11728, 32, 11728, 40;
99.77333, 11664, 12568, 11728, 32, 11728, 40;
99.77333, 11672, 13224, 11728, 40, 11720, 40;
99.77333, 11672, 12488, 11728, 40, 11720, 40;
99.77333, 11672, 12488, 11728, 32, 11720, 32;
99.77333, 11672, 11888, 11728, 40, 11720, 40;
99.77333, 11672, 12080, 11728, 40, 11720, 40;
99.77333, 11680, 12080, 11728, 40, 11720, 40;
99.77333, 11672, 11808, 11728, 32, 11720, 40;
99.77333, 11672, 11808, 11728, 32, 11728, 40;
99.77333, 11680, 11896, 11720, 40, 11728, 40;
99.77333, 11672, 12232, 11720, 40, 11728, 40;
99.77333, 11672, 12232, 11728, 40, 11728, 40;
99.77333, 11672, 11976, 11728, 40, 11728, 40;
99.77333, 11672, 11976, 11728, 40, 11728, 40;
99.77333, 11672, 12496, 11728, 32, 11728, 40;
99.77333, 11672, 13256, 11728, 32, 11728, 40;
99.77333, 11672, 13040, 11728, 32, 11728, 40;
99.77333, 11672, 13040, 11728, 32, 11728, 40;
99.77333, 11680, 12032, 11720, 40, 11728, 40;
99.77333, 11680, 12008, 11720, 40, 11720, 40;
99.77333, 11680, 12008, 11728, 40, 11728, 40;
99.77333, 11672, 11776, 11728, 40, 11728, 40;
99.77333, 11672, 11776, 11728, 40, 11728, 40;
99.77333, 11672, 11240, 11728, 40, 11728, 40;
99.77333, 11672, 12280, 11728, 40, 11728, 40;
99.77333, 11672, 12280, 11728, 40, 11728, 40;
99.77333, 11664, 12160, 11728, 40, 11728, 40;
99.77333, 11664, 12160, 11728, 40, 11728, 40;
99.77333, 11672, 12712, 11728, 40, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11720, 40;
99.77333, 11672, 12528, 11728, 32, 11720, 40;
99.77333, 11672, 11720, 11728, 32, 11728, 40;
99.77333, 11672, 11720, 11728, 40, 11728, 40;
99.77333, 11672, 11280, 11728, 32, 11728, 40;
99.77333, 11672, 11280, 11728, 32, 11728, 40;
99.77333, 11680, 12792, 11728, 32, 11728, 40;
99.77333, 11672, 12008, 11728, 32, 11728, 40;
99.77333, 11672, 12008, 11728, 40, 11728, 40;
99.77333, 11664, 12520, 11728, 40, 11728, 40;
99.77333, 11672, 12480, 11728, 40, 11728, 40;
99.77333, 11672, 12480, 11728, 40, 11728, 40;
99.77333, 11672, 12960, 11728, 40, 11728, 40;
99.77333, 11680, 12776, 11728, 40, 11720, 40;
99.77333, 11680, 12776, 11728, 40, 11720, 40;
99.77333, 11680, 11944, 11728, 40, 11720, 40;
99.77333, 11680, 11944, 11728, 40, 11728, 40;
99.77333, 11672, 12224, 11728, 32, 11728, 40;
99.77333, 11672, 10816, 11728, 32, 11728, 40;
99.77333, 11672, 10816, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 40, 11728, 40;
99.77333, 11672, 13016, 11728, 40, 11728, 40;
99.77333, 11672, 13016, 11728, 40, 11720, 40;
99.77333, 11680, 12864, 11720, 40, 11720, 40;
99.77333, 11672, 12512, 11720, 40, 11720, 40;
99.77333, 11672, 12512, 11728, 40, 11720, 32;
99.77333, 11680, 12016, 11728, 40, 11720, 32;
99.77333, 11680, 12016, 11728, 40, 11728, 40;
99.77333, 11672, 11824, 11728, 40, 11728, 40;
99.77333, 11672, 12528, 11728, 32, 11728, 40;
99.77333, 11672, 12528, 11728, 32, 11728, 32;
99.77333, 11680, 11592, 11728, 40, 11728, 40;
99.77333, 11680, 12440, 11728, 40, 11728, 40;
99.77333, 11664, 12440, 11728, 40, 11720, 40;
99.77333, 11672, 12752, 11728, 40, 11720, 40;
99.77333, 11672, 11328, 11728, 40, 11720, 40;
99.77333, 11672, 11328, 11728, 40, 11728, 40;
99.77333, 11672, 12232, 11720, 40, 11728, 40;
99.77333, 11672, 11928, 11720, 40, 11728, 40;
99.77333, 11672, 11928, 11728, 40, 11728, 40;
99.77333, 11672, 12112, 11728, 40, 11728, 40;
99.77333, 11672, 12112, 11728, 40, 11728, 40;
99.77333, 11672, 12160, 11728, 40, 11720, 40;
99.77333, 11664, 12528, 11728, 40, 11720, 40;
99.77333, 11664, 12528, 11728, 40, 11728, 32;
99.77333, 11664, 12888, 11728, 40, 11728, 40;
99.77333, 11664, 11912, 11728, 40, 11728, 40;
99.77333, 11672, 11912, 11728, 32, 11720, 40;
99.77333, 11672, 12800, 11728, 40, 11720, 40;
99.77333, 11672, 12800, 11728, 40, 11720, 40;
99.77333, 11680, 12072, 11720, 32, 11720, 40;
99.77333, 11680, 12408, 11720, 32, 11728, 40;
99.77333, 11672, 12408, 11720, 40, 11728, 32;
99.77333, 11672, 11888, 11728, 40, 11728, 32;
99.77333, 11672, 11888, 11728, 40, 11720, 32;
99.77333, 11672, 12392, 11728, 40, 11728, 40;
99.77333, 11680, 12808, 11728, 40, 11728, 40;
99.77333, 11680, 12808, 11728, 40, 11720, 40;
99.77333, 11672, 12448, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11728, 40, 11720, 40;
99.77333, 11672, 11552, 11728, 40, 11728, 40;
99.77333, 11672, 11872, 11728, 40, 11728, 40;
99.77333, 11672, 11872, 11728, 32, 11728, 40;
99.77333, 11680, 11528, 11728, 40, 11728, 40;
99.77333, 11680, 12928, 11728, 40, 11728, 40;
99.77333, 11672, 12928, 11728, 32, 11728, 40;
99.77333, 11672, 11776, 11728, 40, 11728, 40;
99.77333, 11672, 11776, 11728, 40, 11728, 40;
99.77333, 11672, 12400, 11728, 40, 11720, 40;
99.77333, 11672, 12952, 11728, 40, 11720, 40;
99.77333, 11672, 12952, 11728, 40, 11728, 32;
99.77333, 11672, 12688, 11728, 40, 11728, 32;
99.77333, 11672, 12688, 11728, 40, 11720, 40;
99.77333, 11672, 11600, 11728, 40, 11728, 40;
99.77333, 11680, 11600, 11728, 40, 11728, 40;
99.77333, 11680, 11600, 11728, 40, 11728, 40;
99.77333, 11672, 12840, 11728, 40, 11728, 32;
99.77333, 11672, 11544, 11728, 40, 11728, 32;
99.77333, 11672, 11544, 11728, 40, 11720, 40;
99.77333, 11672, 12216, 11728, 32, 11720, 40;
99.77333, 11672, 12216, 11728, 32, 11728, 40;
99.77333, 11664, 12680, 11728, 40, 11720, 32;
99.77333, 11672, 12864, 11728, 32, 11720, 32;
99.77333, 11672, 12024, 11728, 32, 11720, 40;
99.77333, 11680, 12024, 11728, 40, 11720, 40;
99.77333, 11680, 11848, 11728, 40, 11720, 40;
99.77333, 11680, 11848, 11728, 40, 11728, 40;
99.77333, 11672, 12264, 11720, 40, 11728, 40;
99.77333, 11672, 11736, 11720, 40, 11728, 40;
99.77333, 11672, 11736, 11720, 40, 11720, 40;
99.77333, 11672, 12208, 11728, 40, 11720, 40;
99.77333, 11672, 12536, 11728, 40, 11728, 40;
99.77333, 11672, 12536, 11728, 32, 11728, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 40;
99.77333, 11672, 12760, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11720, 32;
99.77333, 11672, 12640, 11728, 32, 11720, 32;
99.77333, 11672, 12640, 11728, 32, 11728, 40;
99.77333, 11680, 11688, 11728, 40, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11728, 40;
99.77333, 11672, 11952, 11728, 40, 11728, 40;
99.77333, 11672, 11696, 11728, 40, 11720, 40;
99.77333, 11672, 11696, 11728, 40, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11728, 40;
99.77333, 11672, 12808, 11728, 40, 11720, 40;
99.77333, 11672, 12808, 11728, 32, 11720, 40;
99.77333, 11672, 12576, 11728, 40, 11720, 40;
99.77333, 11672, 11936, 11728, 40, 11720, 40;
99.77333, 11680, 11936, 11728, 40, 11728, 40;
99.77333, 11672, 12432, 11728, 32, 11728, 40;
99.77333, 11672, 12432, 11720, 32, 11728, 40;
99.77333, 11672, 11992, 11728, 40, 11728, 40;
99.77333, 11672, 12840, 11728, 40, 11728, 40;
99.77333, 11672, 12840, 11728, 32, 11728, 40;
99.77333, 11672, 12632, 11728, 32, 11728, 40;
99.77333, 11672, 12632, 11728, 32, 11720, 40;
99.77333, 11680, 13192, 11728, 40, 11728, 32;
99.77333, 11672, 12032, 11728, 40, 11728, 32;
99.77333, 11672, 12032, 11728, 40, 11728, 40;
99.77333, 11680, 11248, 11728, 40, 11728, 40;
99.77333, 11680, 12088, 11728, 40, 11728, 40;
99.77333, 11672, 12088, 11728, 32, 11728, 32;
99.77333, 11672, 11720, 11728, 32, 11728, 32;
99.77333, 11672, 11720, 11728, 32, 11720, 40;
99.77333, 11672, 12648, 11728, 40, 11728, 40;
99.77333, 11672, 12120, 11728, 40, 11728, 40;
99.77333, 11672, 12120, 11728, 40, 11728, 40;
99.77333, 11672, 12712, 11728, 32, 11728, 40;
99.77333, 11672, 12920, 11728, 32, 11728, 40;
99.77333, 11672, 12920, 11728, 40, 11720, 40;
99.77333, 11672, 12152, 11728, 32, 11720, 40;
99.77333, 11672, 11376, 11728, 32, 11720, 40;
99.77333, 11672, 11376, 11728, 40, 11728, 40;
99.77333, 11672, 11536, 11720, 32, 11728, 40;
99.77333, 11672, 12680, 11720, 32, 11728, 40;
99.77333, 11672, 12680, 11728, 40, 11728, 40;
99.77333, 11672, 11896, 11728, 40, 11728, 40;
99.77333, 11672, 11896, 11728, 40, 11720, 32;
99.77333, 11664, 12600, 11728, 32, 11720, 40;
99.77333, 11664, 12896, 11728, 32, 11728, 40;
99.77333, 11680, 12896, 11720, 40, 11728, 32;
99.77333, 11680, 11760, 11720, 32, 11728, 32;
99.77333, 11680, 11760, 11728, 32, 11728, 40;
99.77333, 11672, 12280, 11728, 32, 11728, 40;
99.77333, 11672, 11512, 11728, 32, 11728, 40;
99.77333, 11672, 11512, 11728, 40, 11720, 32;
99.77333, 11664, 11696, 11728, 32, 11720, 32;
99.77333, 11664, 12792, 11728, 32, 11728, 32;
99.77333, 11672, 12792, 11728, 40, 11728, 40;
99.77333, 11672, 12320, 11728, 32, 11728, 40;
99.77333, 11672, 12320, 11728, 32, 11720, 40;
99.77333, 11680, 12872, 11728, 32, 11720, 40;
99.77333, 11680, 11904, 11728, 32, 11728, 40;
99.77333, 11680, 11904, 11720, 40, 11728, 32;
99.77333, 11672, 12144, 11728, 32, 11728, 40;
99.77333, 11672, 11584, 11728, 40, 11728, 40;
99.77333, 11672, 11584, 11728, 40, 11720, 40;
99.77333, 11672, 11856, 11728, 32, 11720, 32;
99.77333, 11672, 12336, 11728, 32, 11728, 32;
99.77333, 11672, 12336, 11728, 40, 11720, 40;
99.77333, 11664, 12336, 11728, 40, 11720, 40;
99.77333, 11664, 12336, 11728, 40, 11728, 40;
99.77333, 11672, 13024, 11728, 40, 11728, 40;
99.77333, 11680, 12008, 11728, 40, 11728, 40;
99.77333, 11680, 12008, 11728, 40, 11728, 40;
99.77333, 11672, 12000, 11720, 40, 11728, 32;
99.77333, 11672, 11744, 11720, 40, 11728, 32;
99.77333, 11672, 11744, 11720, 40, 11728, 40;
99.77333, 11672, 12728, 11720, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 40, 11728, 40;
99.77333, 11672, 12736, 11728, 40, 11720, 40;
99.77333, 11672, 12256, 11728, 40, 11720, 40;
99.77333, 11672, 12256, 11728, 40, 11728, 40;
99.77333, 11672, 12904, 11728, 40, 11728, 40;
99.77333, 11672, 12592, 11728, 40, 11728, 40;
99.77333, 11680, 12592, 11728, 40, 11720, 32;
99.77333, 11672, 12280, 11728, 32, 11720, 32;
99.77333, 11672, 12280, 11728, 32, 11720, 40;
99.77333, 11680, 11824, 11720, 32, 11720, 40;
99.77333, 11672, 11768, 11728, 40, 11728, 40;
99.77333, 11672, 11832, 11728, 40, 11728, 40;
99.77333, 11672, 11832, 11728, 40, 11728, 40;
99.77333, 11672, 12056, 11728, 40, 11728, 40;
99.77333, 11672, 12056, 11720, 40, 11728, 40;
99.77333, 11672, 11752, 11728, 40, 11728, 40;
99.77333, 11672, 12512, 11728, 40, 11720, 40;
99.77333, 11672, 12512, 11728, 40, 11728, 40;
99.77333, 11664, 12736, 11728, 40, 11728, 40;
99.77333, 11664, 12736, 11728, 40, 11728, 40;
99.77333, 11672, 12888, 11728, 40, 11720, 40;
99.77333, 11672, 11968, 11728, 40, 11720, 40;
99.77333, 11672, 11968, 11728, 32, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 40;
99.77333, 11672, 11768, 11728, 40, 11728, 40;
99.77333, 11672, 11768, 11728, 40, 11728, 40;
99.77333, 11672, 12608, 11728, 40, 11728, 32;
99.77333, 11672, 12520, 11728, 40, 11728, 32;
99.77333, 11672, 12520, 11728, 40, 11720, 40;
99.77333, 11672, 12824, 11728, 40, 11720, 40;
99.77333, 11672, 12824, 11728, 40, 11720, 40;
99.77333, 11672, 11696, 11720, 40, 11720, 40;
99.77333, 11672, 12488, 11720, 40, 11720, 40;
99.77333, 11672, 11824, 11728, 40, 11728, 40;
99.77333, 11672, 11824, 11728, 40, 11728, 40;
99.77333, 11680, 11680, 11728, 32, 11728, 40;
99.77333, 11680, 11680, 11728, 32, 11728, 40;
99.77333, 11672, 12848, 11728, 32, 11728, 40;
99.77333, 11672, 11776, 11728, 32, 11728, 40;
99.77333, 11672, 11776, 11728, 40, 11728, 40;
99.77333, 11664, 12224, 11728, 40, 11728, 40;
99.77333, 11664, 12736, 11728, 40, 11728, 40;
99.77333, 11672, 12736, 11728, 40, 11720, 40;
99.77333, 11672, 12472, 11728, 40, 11720, 40;
99.77333, 11672, 12472, 11728, 40, 11720, 40;
99.77333, 11672, 12088, 11728, 40, 11728, 40;
99.77333, 11680, 11464, 11728, 40, 11728, 40;
99.77333, 11680, 11464, 11720, 40, 11728, 32;
99.77333, 11672, 12288, 11728, 32, 11728, 32;
99.77333, 11672, 11592, 11728, 32, 11728, 40;
99.77333, 11672, 11592, 11728, 40, 11720, 40;
99.77333, 11672, 12400, 11728, 32, 11720, 40;
99.77333, 11672, 12400, 11728, 32, 11728, 40;
99.77333, 11672, 12504, 11728, 40, 11728, 40;
99.77333, 11672, 12584, 11728, 40, 11728, 40;
99.77333, 11664, 12584, 11728, 40, 11720, 40;
99.77333, 11672, 12832, 11728, 32, 11720, 40;
99.77333, 11672, 12832, 11720, 32, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11720, 40;
99.77333, 11680, 12632, 11728, 40, 11720, 40;
99.77333, 11680, 12208, 11728, 40, 11728, 40;
99.77333, 11680, 12208, 11728, 40, 11728, 40;
99.77333, 11680, 12304, 11728, 40, 11728, 40;
99.77333, 11680, 12304, 11728, 40, 11728, 40;
99.77333, 11680, 11168, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 32, 11728, 40;
99.77333, 11664, 12208, 11728, 32, 11728, 40;
99.77333, 11664, 12344, 11728, 32, 11720, 40;
99.77333, 11672, 12344, 11728, 40, 11720, 40;
99.77333, 11672, 12592, 11728, 40, 11720, 40;
99.77333, 11672, 12592, 11728, 40, 11720, 40;
99.77333, 11680, 12080, 11728, 40, 11720, 40;
99.77333, 11672, 11680, 11728, 40, 11728, 40;
99.77333, 11672, 11680, 11728, 40, 11728, 40;
99.77333, 11672, 11328, 11728, 40, 11728, 40;
99.77333, 11672, 11328, 11728, 40, 11728, 32;
99.77333, 11672, 12264, 11728, 40, 11728, 32;
99.77333, 11664, 12384, 11728, 40, 11728, 32;
99.77333, 11664, 12384, 11728, 40, 11728, 40;
99.77333, 11672, 12504, 11728, 40, 11728, 32;
99.77333, 11672, 12576, 11728, 40, 11720, 32;
99.77333, 11672, 12576, 11728, 40, 11728, 40;
99.77333, 11680, 11792, 11720, 40, 11728, 40;
99.77333, 11672, 11944, 11720, 40, 11728, 40;
99.77333, 11672, 11944, 11720, 32, 11728, 40;
99.77333, 11672, 12112, 11728, 40, 11728, 40;
99.77333, 11672, 12432, 11728, 40, 11720, 40;
99.77333, 11672, 12432, 11728, 40, 11728, 40;
99.77333, 11680, 12856, 11728, 32, 11728, 40;
99.77333, 11680, 12856, 11728, 32, 11720, 32;
99.77333, 11680, 12312, 11728, 32, 11720, 32;
99.77333, 11672, 11016, 11728, 32, 11720, 32;
99.77333, 11672, 11016, 11728, 40, 11728, 40;
99.77333, 11672, 11608, 11728, 40, 11728, 40;
99.77333, 11672, 12152, 11728, 40, 11720, 40;
99.77333, 11672, 12152, 11728, 40, 11728, 40;
99.77333, 11672, 12920, 11728, 32, 11728, 40;
99.77333, 11672, 12920, 11728, 32, 11720, 40;
99.77333, 11672, 12776, 11728, 32, 11720, 40;
99.77333, 11672, 11304, 11728, 32, 11720, 40;
99.77333, 11672, 11304, 11728, 40, 11720, 40;
99.77333, 11680, 11752, 11728, 40, 11720, 40;
99.77333, 11680, 11752, 11728, 40, 11728, 40;
99.77333, 11672, 12472, 11720, 40, 11728, 40;
99.77333, 11672, 11944, 11720, 40, 11728, 40;
99.77333, 11672, 11944, 11720, 40, 11720, 40;
99.77333, 11672, 12360, 11728, 40, 11720, 40;
99.77333, 11672, 13016, 11728, 32, 11728, 40;
99.77333, 11672, 13016, 11728, 32, 11720, 40;
99.77333, 11672, 12928, 11728, 40, 11728, 32;
99.77333, 11672, 11664, 11728, 40, 11728, 32;
99.77333, 11672, 11664, 11728, 32, 11728, 32;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11672, 12512, 11728, 40, 11728, 40;
99.77333, 11672, 12512, 11720, 40, 11728, 40;
99.77333, 11672, 12296, 11720, 40, 11728, 40;
99.77333, 11672, 12296, 11728, 40, 11720, 40;
99.77333, 11672, 12208, 11728, 40, 11720, 40;
99.77333, 11672, 12168, 11728, 40, 11728, 40;
99.77333, 11672, 12168, 11728, 40, 11720, 40;
99.77333, 11680, 11880, 11728, 40, 11720, 40;
99.77333, 11680, 11880, 11728, 40, 11728, 40;
99.77333, 11664, 11800, 11728, 40, 11728, 40;
99.77333, 11672, 11664, 11728, 40, 11728, 40;
99.77333, 11672, 11664, 11728, 40, 11728, 40;
99.77333, 11672, 12800, 11728, 40, 11728, 40;
99.77333, 11672, 12048, 11728, 40, 11728, 40;
99.77333, 11664, 12048, 11728, 40, 11728, 40;
99.77333, 11672, 12528, 11728, 40, 11728, 40;
99.77333, 11672, 12528, 11728, 40, 11728, 40;
99.77333, 11672, 13160, 11728, 40, 11720, 40;
99.77333, 11680, 12520, 11728, 40, 11720, 40;
99.77333, 11680, 11912, 11728, 40, 11720, 40;
99.77333, 11672, 11912, 11728, 32, 11728, 40;
99.77333, 11672, 11832, 11728, 40, 11728, 40;
99.77333, 11672, 11832, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 32, 11728, 32;
99.77333, 11672, 11992, 11728, 32, 11728, 32;
99.77333, 11672, 11992, 11728, 40, 11720, 32;
99.77333, 11680, 12400, 11728, 32, 11720, 32;
99.77333, 11680, 12400, 11728, 32, 11728, 40;
99.77333, 11672, 13096, 11728, 32, 11720, 40;
99.77333, 11672, 12688, 11728, 32, 11720, 40;
99.77333, 11672, 12688, 11728, 32, 11728, 32;
99.77333, 11672, 11216, 11728, 32, 11728, 40;
99.77333, 11672, 12200, 11728, 32, 11720, 40;
99.77333, 11672, 12200, 11728, 32, 11728, 40;
99.77333, 11672, 11568, 11728, 40, 11728, 40;
99.77333, 11672, 11568, 11728, 40, 11728, 40;
99.77333, 11672, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 12672, 11728, 40, 11728, 40;
99.77333, 11672, 12672, 11728, 40, 11728, 40;
99.77333, 11664, 12352, 11728, 40, 11728, 40;
99.77333, 11664, 12552, 11728, 40, 11728, 40;
99.77333, 11672, 12552, 11728, 32, 11728, 40;
99.77333, 11672, 12944, 11728, 32, 11728, 40;
99.77333, 11672, 12944, 11728, 32, 11720, 40;
99.77333, 11680, 12120, 11728, 40, 11720, 40;
99.77333, 11672, 12072, 11720, 40, 11720, 40;
99.77333, 11672, 11624, 11720, 40, 11728, 40;
99.77333, 11672, 11624, 11728, 40, 11728, 40;
99.77333, 11672, 12248, 11728, 32, 11728, 40;
99.77333, 11672, 12248, 11728, 32, 11728, 40;
99.77333, 11672, 12888, 11728, 40, 11728, 40;
99.77333, 11672, 12304, 11728, 40, 11720, 40;
99.77333, 11672, 12304, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 11640, 11728, 32, 11720, 32;
99.77333, 11672, 12496, 11728, 32, 11720, 32;
99.77333, 11672, 12496, 11728, 32, 11728, 40;
99.77333, 11672, 12696, 11728, 40, 11728, 32;
99.77333, 11672, 12688, 11728, 40, 11720, 32;
99.77333, 11672, 12688, 11728, 32, 11720, 40;
99.77333, 11672, 11440, 11728, 40, 11720, 40;
99.77333, 11672, 11440, 11728, 40, 11720, 40;
99.77333, 11680, 11680, 11728, 40, 11728, 40;
99.77333, 11672, 12096, 11728, 40, 11728, 40;
99.77333, 11672, 12096, 11720, 32, 11728, 32;
99.77333, 11672, 12008, 11728, 40, 11728, 32;
99.77333, 11672, 12008, 11728, 40, 11720, 40;
99.77333, 11672, 12392, 11728, 32, 11728, 40;
99.77333, 11672, 12744, 11728, 40, 11728, 40;
99.77333, 11680, 13128, 11728, 40, 11720, 40;
99.77333, 11680, 13128, 11728, 40, 11720, 40;
99.77333, 11672, 12696, 11728, 40, 11720, 40;
99.77333, 11672, 12696, 11728, 40, 11720, 40;
99.77333, 11680, 12424, 11728, 40, 11720, 32;
99.77333, 11672, 11872, 11728, 32, 11720, 32;
99.77333, 11672, 11872, 11728, 32, 11728, 40;
99.77333, 11672, 11648, 11728, 40, 11728, 40;
99.77333, 11672, 12432, 11728, 40, 11720, 40;
99.77333, 11672, 12432, 11728, 40, 11728, 40;
99.77333, 11664, 11952, 11728, 32, 11728, 40;
99.77333, 11664, 11952, 11728, 32, 11720, 40;
99.77333, 11672, 12960, 11728, 32, 11728, 40;
99.77333, 11672, 12632, 11728, 32, 11728, 40;
99.77333, 11672, 12632, 11728, 32, 11720, 32;
99.77333, 11680, 11736, 11728, 32, 11720, 32;
99.77333, 11680, 11368, 11728, 32, 11720, 40;
99.77333, 11672, 11368, 11720, 32, 11728, 40;
99.77333, 11672, 11288, 11720, 32, 11728, 40;
99.87810, 11672, 11288, 11728, 32, 11728, 40;
99.87810, 11672, 12792, 11728, 40, 11728, 32;
99.87810, 11672, 12272, 11728, 40, 11728, 32;
99.87810, 11672, 12272, 11728, 40, 11728, 40;
99.87810, 11664, 12560, 11728, 40, 11728, 40;
99.87810, 11672, 12952, 11728, 32, 11720, 40;
99.87810, 11672, 12952, 11728, 32, 11720, 40;
99.87810, 11672, 12768, 11728, 32, 11720, 32;
99.87810, 11672, 12816, 11728, 32, 11720, 32;
99.87810, 11672, 12816, 11728, 32, 11720, 40;
99.87810, 11680, 11656, 11728, 32, 11720, 40;
99.87810, 11680, 11656, 11728, 32, 11720, 40;
99.87810, 11672, 11936, 11720, 40, 11728, 40;
99.87810, 11672, 11648, 11720, 40, 11728, 40;
99.87810, 11672, 11648, 11728, 40, 11720, 40;
99.87810, 11672, 12488, 11728, 40, 11720, 40;
99.87810, 11672, 12008, 11728, 40, 11728, 40;
99.87810, 11672, 12008, 11728, 40, 11728, 40;
99.87810, 11672, 12384, 11728, 40, 11728, 40;
99.87810, 11672, 12384, 11728, 40, 11728, 40;
99.87810, 11680, 12952, 11728, 32, 11728, 40;
99.87810, 11680, 11896, 11728, 32, 11720, 40;
99.87810, 11680, 11896, 11720, 40, 11728, 40;
99.87810, 11672, 12032, 11728, 40, 11728, 40;
99.87810, 11672, 12032, 11728, 40, 11728, 40;
99.87810, 11672, 11648, 11728, 40, 11720, 40;
99.87810, 11672, 12248, 11728, 40, 11720, 40;
99.87810, 11672, 12248, 11728, 40, 11728, 40;
99.87810, 11672, 13224, 11728, 40, 11728, 32;
99.87810, 11672, 12560, 11728, 40, 11720, 32;
99.87810, 11680, 12560, 11728, 40, 11720, 40;
99.87810, 11672, 12592, 11728, 32, 11720, 40;
99.87810, 11680, 11696, 11728, 32, 11720, 40;
99.87810, 11680, 11696, 11720, 32, 11728, 40;
99.87810, 11672, 10792, 11728, 40, 11728, 40;
99.87810, 11672, 11840, 11728, 40, 11728, 40;
99.87810, 11680, 11840, 11728, 32, 11720, 40;
99.87810, 11672, 12720, 11728, 40, 11720, 40;
99.87810, 11672, 12720, 11728, 40, 11728, 40;
99.87810, 11664, 12736, 11728, 32, 11728, 40;
99.87810, 11672, 12536, 11728, 32, 11728, 40;
99.87810, 11672, 12536, 11728, 40, 11720, 40;
99.87810, 11672, 12024, 11728, 40, 11720, 40;
99.87810, 11672, 12040, 11728, 40, 11720, 40;
99.87810, 11680, 12040, 11728, 40, 11728, 40;
99.87810, 11672, 12096, 11728, 40, 11728, 40;
99.87810, 11672, 12096, 11728, 40, 11728, 40;
99.87810, 11672, 12104, 11728, 40, 11728, 40;
99.87810, 11672, 12096, 11728, 40, 11728, 40;
99.87810, 11672, 12096, 11728, 40, 11720, 40;
99.87810, 11672, 12616, 11728, 40, 11720, 40;
99.87810, 11672, 12616, 11728, 40, 11728, 40;
99.87810, 11680, 12592, 11728, 40, 11720, 32;
99.87810, 11672, 12296, 11728, 40, 11720, 32;
99.87810, 11672, 12296, 11728, 40, 11728, 40;
99.87810, 11680, 11952, 11728, 32, 11728, 40;
99.87810, 11680, 11552, 11720, 40, 11728, 40;
99.87810, 11680, 11552, 11720, 40, 11728, 40;
99.87810, 11672, 11816, 11728, 40, 11728, 40;
99.87810, 11672, 12448, 11728, 40, 11728, 40;
99.87810, 11672, 12448, 11728, 32, 11728, 40;
99.87810, 11664, 11528, 11728, 32, 11728, 40;
99.87810, 11664, 12680, 11728, 32, 11720, 40;
99.87810, 11672, 12680, 11728, 40, 11728, 40;
99.87810, 11672, 12624, 11728, 40, 11728, 40;
99.87810, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12912, 11728, 40, 11728, 40;
99.77333, 11672, 11600, 11728, 40, 11728, 40;
99.77333, 11672, 11600, 11728, 40, 11728, 40;
99.77333, 11672, 11704, 11728, 40, 11728, 40;
99.77333, 11672, 11704, 11728, 40, 11720, 40;
99.77333, 11672, 12664, 11728, 32, 11728, 32;
99.77333, 11672, 12696, 11728, 32, 11728, 32;
99.77333, 11672, 12696, 11728, 40, 11720, 40;
99.77333, 11672, 12824, 11728, 40, 11720, 40;
99.77333, 11672, 12352, 11728, 40, 11720, 40;
99.77333, 11672, 12352, 11728, 40, 11720, 40;
99.77333, 11680, 11760, 11728, 40, 11720, 40;
99.77333, 11680, 11760, 11720, 40, 11728, 40;
99.77333, 11672, 12272, 11728, 40, 11728, 40;
99.77333, 11664, 12032, 11728, 40, 11728, 40;
99.77333, 11664, 12712, 11728, 40, 11720, 40;
99.87810, 11672, 12712, 11728, 40, 11728, 40;
99.87810, 11672, 12832, 11728, 32, 11728, 40;
99.87810, 11672, 12832, 11728, 32, 11720, 40;
99.87810, 11680, 12472, 11728, 40, 11720, 40;
99.87810, 11672, 11320, 11728, 40, 11720, 40;
99.87810, 11672, 11320, 11728, 32, 11728, 40;
99.87810, 11672, 11856, 11728, 32, 11728, 40;
99.87810, 11672, 12472, 11728, 32, 11728, 40;
99.87810, 11672, 12472, 11728, 40, 11728, 40;
99.87810, 11664, 12064, 11728, 40, 11728, 40;
99.87810, 11664, 12064, 11728, 40, 11720, 32;
99.87810, 11664, 12480, 11728, 40, 11720, 40;
99.87810, 11664, 12848, 11728, 40, 11728, 40;
99.87810, 11672, 12848, 11720, 40, 11720, 40;
99.87810, 11680, 12752, 11720, 40, 11720, 40;
99.87810, 11680, 12752, 11728, 40, 11720, 40;
99.87810, 11664, 11960, 11728, 40, 11728, 40;
99.87810, 11672, 11400, 11728, 40, 11728, 40;
99.87810, 11672, 11400, 11728, 40, 11720, 40;
99.87810, 11672, 12360, 11728, 40, 11720, 40;
99.87810, 11672, 12488, 11728, 40, 11728, 40;
99.87810, 11664, 12488, 11728, 40, 11720, 32;
99.87810, 11672, 12328, 11728, 32, 11720, 32;
99.87810, 11672, 11992, 11728, 32, 11720, 32;
99.87810, 11672, 11992, 11728, 40, 11728, 40;
99.87810, 11672, 11880, 11728, 32, 11728, 40;
99.87810, 11672, 12664, 11728, 32, 11728, 40;
99.87810, 11672, 12664, 11728, 40, 11728, 40;
99.87810, 11672, 11976, 11728, 40, 11728, 40;
99.87810, 11672, 11976, 11728, 40, 11720, 40;
99.87810, 11672, 11528, 11728, 40, 11720, 40;
99.87810, 11672, 12808, 11728, 40, 11720, 40;
99.87810, 11672, 12808, 11728, 32, 11728, 40;
99.87810, 11672, 12424, 11728, 40, 11728, 40;
99.77333, 11672, 12424, 11728, 40, 11728, 40;
99.77333, 11672, 12544, 11728, 32, 11720, 40;
99.77333, 11680, 11712, 11728, 32, 11720, 40;
99.77333, 11680, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 12672, 11720, 32, 11728, 40;
99.77333, 11672, 11840, 11720, 32, 11728, 40;
99.77333, 11672, 11840, 11720, 40, 11720, 40;
99.77333, 11672, 12680, 11720, 32, 11720, 40;
99.77333, 11672, 12680, 11728, 32, 11728, 40;
99.77333, 11672, 12952, 11728, 32, 11728, 40;
99.77333, 11680, 12728, 11728, 32, 11728, 40;
99.77333, 11680, 12728, 11728, 40, 11720, 40;
99.77333, 11680, 12504, 11728, 40, 11720, 40;
99.77333, 11680, 11168, 11728, 40, 11720, 40;
99.77333, 11680, 11168, 11728, 40, 11728, 40;
99.77333, 11672, 11944, 11720, 32, 11728, 40;
99.77333, 11672, 11400, 11720, 32, 11728, 40;
99.77333, 11672, 11400, 11728, 40, 11720, 40;
99.77333, 11672, 12600, 11728, 40, 11720, 40;
99.77333, 11672, 12848, 11728, 40, 11728, 40;
99.77333, 11672, 12848, 11728, 40, 11728, 40;
99.77333, 11672, 13024, 11728, 32, 11728, 40;
99.77333, 11672, 13024, 11728, 32, 11720, 40;
99.77333, 11680, 12000, 11728, 40, 11720, 40;
99.77333, 11680, 11808, 11728, 40, 11728, 40;
99.77333, 11672, 11808, 11728, 40, 11728, 40;
99.77333, 11672, 12408, 11728, 40, 11728, 40;
99.77333, 11672, 12408, 11728, 40, 11728, 40;
99.77333, 11680, 11504, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11664, 12536, 11728, 32, 11728, 40;
99.77333, 11664, 12432, 11728, 32, 11728, 40;
99.77333, 11672, 12432, 11728, 40, 11720, 40;
99.77333, 11680, 11912, 11728, 40, 11720, 40;
99.77333, 11680, 11912, 11728, 40, 11720, 32;
99.77333, 11680, 11880, 11720, 40, 11720, 40;
99.77333, 11680, 12248, 11720, 40, 11728, 40;
99.77333, 11672, 11720, 11728, 40, 11728, 40;
99.77333, 11672, 11720, 11728, 40, 11728, 40;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11672, 11640, 11728, 40, 11728, 40;
99.77333, 11664, 12040, 11728, 40, 11728, 40;
99.77333, 11672, 12472, 11728, 40, 11728, 40;
99.77333, 11672, 12472, 11728, 40, 11728, 40;
99.77333, 11672, 12784, 11728, 40, 11728, 40;
99.77333, 11672, 12784, 11728, 40, 11720, 32;
99.77333, 11680, 11960, 11728, 40, 11728, 40;
99.77333, 11672, 11816, 11728, 40, 11728, 40;
99.77333, 11672, 11816, 11728, 40, 11728, 40;
99.77333, 11672, 11280, 11720, 40, 11728, 40;
99.77333, 11672, 12904, 11720, 40, 11728, 40;
99.77333, 11672, 12904, 11728, 40, 11728, 40;
99.77333, 11664, 12072, 11728, 40, 11728, 40;
99.77333, 11664, 12072, 11728, 40, 11728, 40;
99.77333, 11672, 12608, 11728, 40, 11720, 40;
99.77333, 11672, 12856, 11728, 40, 11720, 40;
99.77333, 11672, 12856, 11728, 32, 11720, 40;
99.77333, 11672, 11248, 11728, 40, 11720, 40;
99.77333, 11672, 11248, 11728, 40, 11728, 32;
99.77333, 11672, 12576, 11720, 32, 11728, 40;
99.77333, 11672, 11888, 11720, 32, 11728, 40;
99.77333, 11672, 11888, 11728, 40, 11728, 40;
99.77333, 11672, 12656, 11728, 40, 11728, 40;
99.77333, 11672, 12864, 11728, 40, 11728, 40;
99.77333, 11672, 12864, 11728, 40, 11720, 40;
99.77333, 11672, 12264, 11728, 40, 11720, 40;
99.77333, 11672, 12216, 11728, 40, 11720, 40;
99.77333, 11672, 12216, 11728, 40, 11720, 40;
99.77333, 11672, 11480, 11728, 40, 11720, 40;
99.77333, 11672, 11952, 11728, 40, 11728, 40;
99.77333, 11672, 11952, 11720, 40, 11728, 32;
99.77333, 11672, 12088, 11720, 40, 11728, 32;
99.77333, 11672, 12088, 11728, 40, 11720, 40;
99.77333, 11672, 12888, 11728, 40, 11728, 32;
99.77333, 11672, 12928, 11728, 40, 11728, 32;
99.77333, 11672, 12928, 11720, 40, 11720, 32;
99.77333, 11680, 11712, 11728, 40, 11720, 32;
99.77333, 11680, 11960, 11728, 40, 11720, 40;
99.77333, 11664, 11960, 11728, 40, 11728, 40;
99.77333, 11680, 11456, 11728, 40, 11728, 40;
99.77333, 11680, 11456, 11720, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 40, 11728, 40;
99.77333, 11672, 12128, 11728, 40, 11728, 40;
99.77333, 11664, 12128, 11728, 40, 11720, 32;
99.77333, 11672, 11744, 11728, 32, 11720, 32;
99.77333, 11672, 11744, 11728, 32, 11720, 32;
99.77333, 11680, 12800, 11728, 40, 11728, 40;
99.77333, 11680, 11504, 11720, 40, 11728, 40;
99.77333, 11672, 12992, 11720, 40, 11728, 40;
99.77333, 11672, 12992, 11728, 40, 11728, 40;
99.77333, 11672, 11944, 11728, 40, 11728, 40;
99.77333, 11672, 11944, 11728, 40, 11728, 40;
99.77333, 11664, 12400, 11728, 40, 11720, 40;
99.77333, 11672, 13032, 11728, 40, 11720, 40;
99.77333, 11672, 13032, 11720, 40, 11720, 40;
99.77333, 11672, 11880, 11728, 32, 11720, 40;
99.77333, 11672, 11632, 11728, 32, 11720, 40;
99.77333, 11672, 11632, 11728, 32, 11728, 32;
99.77333, 11680, 11320, 11728, 40, 11728, 32;
99.77333, 11680, 11320, 11720, 40, 11720, 40;
99.77333, 11672, 12688, 11728, 40, 11720, 40;
99.77333, 11672, 12232, 11728, 40, 11728, 40;
99.77333, 11672, 12232, 11728, 40, 11728, 40;
99.77333, 11672, 12592, 11728, 40, 11728, 40;
99.77333, 11672, 12592, 11728, 40, 11720, 40;
99.77333, 11680, 12152, 11728, 40, 11728, 32;
99.77333, 11672, 11936, 11728, 40, 11728, 32;
99.77333, 11672, 11936, 11728, 40, 11728, 32;
99.77333, 11672, 12000, 11728, 40, 11728, 40;
99.77333, 11672, 11440, 11728, 40, 11728, 40;
99.77333, 11680, 11440, 11728, 40, 11728, 40;
99.77333, 11664, 12528, 11728, 32, 11728, 40;
99.77333, 11672, 13184, 11728, 32, 11728, 40;
99.77333, 11672, 13184, 11728, 40, 11720, 40;
99.77333, 11672, 11960, 11728, 40, 11720, 32;
99.77333, 11672, 12192, 11728, 40, 11720, 32;
99.77333, 11672, 12192, 11728, 32, 11728, 40;
99.77333, 11672, 11448, 11728, 40, 11728, 40;
99.77333, 11672, 11448, 11728, 40, 11728, 40;
99.77333, 11664, 12472, 11728, 40, 11728, 40;
99.77333, 11672, 12112, 11728, 40, 11728, 40;
99.77333, 11672, 12112, 11728, 40, 11728, 40;
99.77333, 11664, 12408, 11728, 40, 11728, 40;
99.77333, 11664, 13088, 11728, 40, 11720, 40;
99.77333, 11672, 13088, 11720, 40, 11728, 40;
99.77333, 11680, 12464, 11720, 32, 11728, 40;
99.77333, 11680, 12464, 11728, 32, 11720, 40;
99.77333, 11672, 12184, 11720, 40, 11720, 32;
99.77333, 11672, 10528, 11720, 40, 11728, 32;
99.77333, 11672, 10528, 11720, 40, 11728, 40;
99.77333, 11672, 12448, 11720, 32, 11728, 40;
99.77333, 11672, 12448, 11728, 32, 11728, 40;
99.77333, 11664, 11808, 11728, 32, 11728, 32;
99.77333, 11664, 12544, 11728, 32, 11728, 32;
99.77333, 11664, 12544, 11728, 40, 11728, 40;
99.77333, 11672, 13224, 11728, 32, 11728, 40;
99.77333, 11672, 12192, 11728, 32, 11720, 40;
99.77333, 11672, 12192, 11728, 40, 11720, 32;
99.77333, 11672, 12208, 11728, 40, 11728, 40;
99.77333, 11680, 11808, 11728, 40, 11728, 40;
99.77333, 11680, 11808, 11728, 32, 11728, 40;
99.77333, 11672, 12456, 11728, 40, 11728, 40;
99.77333, 11672, 12264, 11728, 40, 11728, 40;
99.77333, 11672, 12264, 11728, 32, 11728, 40;
99.77333, 11672, 12520, 11728, 40, 11728, 40;
99.77333, 11672, 12520, 11728, 40, 11728, 40;
99.77333, 11672, 12464, 11728, 40, 11728, 40;
99.77333, 11680, 12272, 11728, 40, 11720, 40;
99.77333, 11680, 12272, 11720, 40, 11720, 40;
99.77333, 11672, 11928, 11728, 40, 11720, 40;
99.77333, 11672, 11928, 11728, 40, 11728, 40;
99.77333, 11672, 11648, 11728, 32, 11728, 32;
99.77333, 11672, 12488, 11728, 32, 11728, 32;
99.77333, 11672, 12488, 11728, 40, 11728, 40;
99.77333, 11672, 12416, 11728, 40, 11728, 32;
99.77333, 11672, 12720, 11728, 40, 11728, 32;
99.77333, 11672, 12720, 11728, 32, 11720, 32;
99.77333, 11672, 12576, 11728, 40, 11720, 32;
99.77333, 11672, 12576, 11728, 40, 11720, 32;
99.77333, 11680, 11416, 11720, 32, 11728, 40;
99.77333, 11664, 11616, 11720, 32, 11728, 40;
99.77333, 11664, 11616, 11728, 40, 11728, 40;
99.77333, 11672, 11808, 11720, 32, 11728, 32;
99.77333, 11672, 12320, 11720, 32, 11728, 32;
99.77333, 11672, 12320, 11728, 32, 11728, 40;
99.77333, 11664, 12688, 11728, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 32, 11720, 32;
99.77333, 11680, 12872, 11720, 40, 11720, 32;
99.77333, 11680, 11880, 11720, 40, 11720, 32;
99.77333, 11672, 11880, 11728, 40, 11720, 40;
99.77333, 11672, 11696, 11728, 40, 11720, 40;
99.77333, 11672, 11696, 11728, 40, 11728, 40;
99.77333, 11672, 10592, 11720, 32, 11728, 40;
99.77333, 11672, 12440, 11720, 32, 11728, 40;
99.77333, 11672, 12440, 11728, 40, 11728, 40;
99.77333, 11672, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 11712, 11728, 40, 11728, 40;
99.77333, 11672, 12632, 11728, 40, 11720, 40;
99.77333, 11672, 12640, 11728, 40, 11720, 40;
99.77333, 11672, 12640, 11728, 32, 11720, 40;
99.77333, 11680, 12336, 11728, 40, 11720, 40;
99.77333, 11680, 11664, 11728, 40, 11728, 40;
99.77333, 11672, 11664, 11728, 40, 11728, 40;
99.77333, 11672, 11536, 11728, 40, 11728, 40;
99.77333, 11672, 11536, 11728, 40, 11720, 40;
99.77333, 11672, 12144, 11728, 40, 11720, 40;
99.77333, 11672, 12320, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11664, 12624, 11728, 40, 11720, 40;
99.77333, 11672, 12112, 11728, 40, 11720, 40;
99.77333, 11672, 12112, 11728, 40, 11720, 40;
99.77333, 11680, 11960, 11720, 40, 11720, 40;
99.77333, 11672, 12008, 11720, 40, 11728, 40;
99.77333, 11672, 12008, 11720, 32, 11728, 40;
99.77333, 11672, 11536, 11720, 40, 11728, 40;
99.77333, 11672, 11536, 11720, 40, 11720, 32;
99.77333, 11672, 12392, 11728, 40, 11720, 40;
99.77333, 11672, 12624, 11728, 40, 11720, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12968, 11728, 32, 11728, 40;
99.77333, 11672, 11832, 11728, 32, 11720, 40;
99.77333, 11672, 11832, 11720, 40, 11720, 40;
99.77333, 11672, 10864, 11720, 40, 11720, 40;
99.77333, 11672, 10864, 11720, 40, 11728, 40;
99.77333, 11672, 12496, 11720, 32, 11728, 40;
99.77333, 11664, 12128, 11720, 32, 11728, 40;
99.77333, 11664, 12128, 11728, 40, 11720, 40;
99.77333, 11672, 12520, 11728, 40, 11720, 40;
99.77333, 11672, 12952, 11728, 40, 11720, 40;
99.77333, 11672, 12952, 11728, 40, 11720, 32;
99.77333, 11680, 11888, 11728, 32, 11720, 32;
99.77333, 11680, 11888, 11728, 32, 11728, 40;
99.77333, 11672, 12000, 11728, 40, 11728, 40;
99.77333, 11672, 11784, 11728, 40, 11728, 40;
99.77333, 11672, 11784, 11728, 40, 11728, 40;
99.77333, 11672, 12384, 11728, 40, 11728, 40;
99.77333, 11672, 12384, 11728, 40, 11728, 40;
99.77333, 11672, 12120, 11720, 32, 11720, 32;
99.77333, 11680, 12496, 11720, 32, 11720, 32;
99.77333, 11680, 12496, 11720, 40, 11720, 40;
99.77333, 11672, 11472, 11728, 40, 11720, 40;
99.77333, 11672, 11552, 11728, 40, 11728, 40;
99.77333, 11672, 11552, 11728, 40, 11728, 40;
99.77333, 11672, 12360, 11728, 40, 11728, 40;
99.77333, 11672, 12360, 11728, 40, 11728, 40;
99.77333, 11664, 12336, 11728, 40, 11720, 40;
99.77333, 11664, 12120, 11728, 40, 11720, 40;
99.77333, 11664, 12120, 11728, 40, 11728, 40;
99.77333, 11672, 13032, 11720, 40, 11720, 40;
99.77333, 11680, 12392, 11720, 40, 11720, 40;
99.77333, 11680, 12392, 11728, 40, 11720, 32;
99.77333, 11672, 11624, 11728, 40, 11720, 40;
99.77333, 11672, 11872, 11728, 40, 11728, 40;
99.77333, 11672, 11872, 11720, 32, 11720, 40;
99.77333, 11672, 12296, 11728, 40, 11720, 40;
99.77333, 11672, 12296, 11728, 40, 11728, 32;
99.77333, 11664, 12704, 11728, 40, 11720, 40;
99.77333, 11672, 12520, 11728, 40, 11720, 40;
99.77333, 11672, 12520, 11728, 40, 11720, 40;
99.77333, 11672, 12648, 11728, 40, 11720, 40;
99.77333, 11672, 12120, 11728, 40, 11720, 40;
99.77333, 11680, 12120, 11720, 40, 11728, 40;
99.77333, 11672, 12904, 11720, 40, 11728, 40;
99.77333, 11672, 12904, 11728, 40, 11728, 40;
99.77333, 11664, 12224, 11728, 40, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11728, 40;
99.77333, 11672, 12560, 11728, 40, 11720, 40;
99.77333, 11672, 12552, 11728, 40, 11720, 40;
99.77333, 11672, 12128, 11728, 40, 11720, 40;
99.77333, 11680, 12128, 11720, 40, 11728, 40;
99.77333, 11664, 11344, 11728, 32, 11728, 40;
99.77333, 11664, 11344, 11728, 32, 11728, 40;
99.77333, 11672, 11552, 11728, 32, 11720, 40;
99.77333, 11664, 12232, 11728, 40, 11720, 40;
99.77333, 11664, 12232, 11728, 40, 11728, 40;
99.77333, 11664, 12440, 11728, 40, 11720, 40;
99.77333, 11680, 12176, 11728, 40, 11720, 40;
99.77333, 11680, 12176, 11728, 40, 11728, 40;
99.77333, 11672, 12680, 11728, 40, 11728, 40;
99.77333, 11672, 12056, 11728, 40, 11720, 40;
99.77333, 11680, 12056, 11728, 40, 11728, 40;
99.77333, 11672, 11752, 11728, 32, 11728, 40;
99.77333, 11672, 11752, 11720, 32, 11728, 40;
99.77333, 11672, 11952, 11728, 40, 11720, 40;
99.77333, 11672, 12112, 11728, 40, 11720, 40;
99.77333, 11672, 12112, 11728, 32, 11728, 32;
99.77333, 11672, 12888, 11728, 40, 11728, 40;
99.77333, 11672, 12360, 11728, 40, 11720, 40;
99.77333, 11680, 12360, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11720, 40;
99.77333, 11672, 11920, 11720, 40, 11720, 40;
99.77333, 11672, 11528, 11720, 40, 11720, 40;
99.77333, 11672, 11528, 11728, 40, 11728, 40;
99.77333, 11672, 12880, 11728, 32, 11728, 40;
99.77333, 11672, 12680, 11728, 32, 11720, 40;
99.77333, 11680, 12680, 11728, 40, 11728, 40;
99.77333, 11672, 12168, 11728, 32, 11728, 40;
99.77333, 11672, 11888, 11728, 32, 11720, 40;
99.77333, 11680, 11888, 11728, 40, 11728, 40;
99.77333, 11664, 12520, 11728, 40, 11728, 40;
99.77333, 11664, 12520, 11728, 40, 11728, 40;
99.77333, 11672, 12128, 11728, 40, 11720, 40;
99.77333, 11672, 12384, 11728, 40, 11720, 40;
99.77333, 11672, 12384, 11728, 40, 11720, 40;
99.77333, 11672, 12616, 11728, 40, 11720, 32;
99.77333, 11672, 12848, 11728, 40, 11720, 32;
99.77333, 11680, 12848, 11728, 40, 11728, 40;
99.77333, 11672, 11744, 11728, 40, 11728, 40;
99.77333, 11672, 11744, 11728, 40, 11728, 40;
99.77333, 11672, 11480, 11728, 40, 11720, 40;
99.77333, 11672, 12192, 11728, 40, 11720, 40;
99.77333, 11672, 12192, 11728, 32, 11728, 40;
99.77333, 11672, 12800, 11728, 40, 11728, 40;
99.77333, 11672, 12864, 11728, 32, 11720, 40;
99.77333, 11672, 12864, 11728, 32, 11720, 40;
99.77333, 11672, 12720, 11728, 40, 11720, 40;
99.77333, 11680, 11320, 11728, 40, 11720, 40;
99.77333, 11680, 11320, 11720, 32, 11728, 40;
99.77333, 11672, 12704, 11728, 40, 11728, 40;
99.77333, 11672, 12704, 11728, 40, 11728, 40;
99.77333, 11672, 12240, 11728, 40, 11728, 40;
99.77333, 11672, 12424, 11728, 32, 11728, 40;
99.77333, 11672, 12424, 11728, 32, 11728, 40;
99.77333, 11672, 12784, 11720, 40, 11728, 40;
99.77333, 11672, 12408, 11720, 40, 11720, 40;
99.77333, 11672, 12408, 11728, 32, 11728, 40;
99.77333, 11672, 11888, 11728, 32, 11728, 40;
99.77333, 11672, 11888, 11720, 32, 11728, 40;
99.77333, 11672, 11832, 11720, 40, 11728, 40;
99.77333, 11672, 12096, 11720, 40, 11728, 40;
99.77333, 11672, 12488, 11728, 40, 11728, 40;
99.77333, 11672, 12488, 11728, 40, 11720, 32;
99.77333, 11672, 13176, 11728, 40, 11720, 32;
99.77333, 11672, 13176, 11728, 40, 11720, 40;
99.77333, 11672, 12384, 11720, 40, 11720, 40;
99.77333, 11672, 12208, 11720, 40, 11720, 40;
99.77333, 11672, 12208, 11728, 40, 11720, 40;
99.77333, 11664, 11536, 11728, 40, 11720, 40;
99.77333, 11664, 11632, 11728, 40, 11728, 40;
99.77333, 11672, 11632, 11728, 40, 11720, 40;
99.77333, 11672, 12592, 11728, 40, 11720, 40;
99.77333, 11672, 12592, 11728, 40, 11728, 40;
99.77333, 11664, 12616, 11728, 40, 11728, 40;
99.77333, 11664, 12952, 11728, 40, 11720, 40;
99.77333, 11672, 12952, 11728, 40, 11720, 40;
99.77333, 11680, 12432, 11728, 32, 11720, 40;
99.77333, 11680, 12432, 11728, 32, 11720, 40;
99.77333, 11680, 12136, 11720, 32, 11728, 40;
99.77333, 11672, 12296, 11720, 32, 11728, 40;
99.77333, 11672, 12296, 11728, 40, 11728, 40;
99.77333, 11664, 11960, 11728, 40, 11728, 40;
99.77333, 11664, 12496, 11728, 40, 11728, 40;
99.77333, 11672, 12496, 11728, 32, 11720, 40;
99.77333, 11672, 12584, 11728, 40, 11720, 40;
99.77333, 11672, 12584, 11728, 40, 11720, 40;
99.77333, 11680, 12640, 11728, 40, 11720, 40;
99.77333, 11672, 11504, 11720, 32, 11720, 40;
99.77333, 11672, 11768, 11720, 32, 11728, 40;
99.77333, 11672, 11768, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 40, 11728, 32;
99.77333, 11664, 12032, 11720, 40, 11720, 40;
99.77333, 11672, 12752, 11720, 40, 11720, 40;
99.77333, 11672, 12752, 11728, 40, 11720, 40;
99.77333, 11664, 11984, 11728, 32, 11720, 40;
99.77333, 11664, 11984, 11728, 32, 11728, 40;
99.77333, 11672, 11776, 11720, 32, 11728, 40;
99.77333, 11672, 12416, 11720, 40, 11728, 40;
99.77333, 11672, 12416, 11720, 40, 11728, 32;
99.77333, 11664, 12688, 11728, 40, 11728, 40;
99.77333, 11664, 12712, 11728, 40, 11728, 40;
99.77333, 11672, 12712, 11728, 40, 11728, 40;
99.77333, 11672, 12984, 11728, 40, 11728, 40;
99.77333, 11672, 12984, 11728, 40, 11720, 40;
99.77333, 11680, 12392, 11728, 40, 11720, 40;
99.77333, 11672, 11736, 11728, 40, 11720, 40;
99.77333, 11672, 11736, 11728, 40, 11728, 40;
99.77333, 11672, 11536, 11720, 40, 11728, 40;
99.77333, 11672, 11664, 11720, 40, 11720, 40;
99.77333, 11672, 11664, 11728, 32, 11720, 40;
99.77333, 11664, 12544, 11728, 40, 11720, 40;
99.77333, 11672, 13224, 11728, 40, 11720, 40;
99.77333, 11672, 13224, 11728, 32, 11720, 40;
99.77333, 11672, 11872, 11728, 32, 11720, 40;
99.77333, 11672, 11896, 11728, 32, 11720, 40;
99.77333, 11680, 11896, 11728, 40, 11728, 40;
99.77333, 11672, 12408, 11728, 40, 11728, 40;
99.77333, 11672, 12408, 11720, 40, 11728, 40;
99.77333, 11672, 11784, 11720, 32, 11728, 40;
99.77333, 11672, 12224, 11720, 32, 11720, 40;
99.77333, 11672, 12224, 11728, 40, 11728, 40;
99.77333, 11664, 12504, 11728, 32, 11728, 40;
99.77333, 11664, 12504, 11728, 32, 11728, 40;
99.77333, 11672, 12784, 11728, 32, 11720, 40;
99.77333, 11680, 12520, 11728, 32, 11720, 40;
99.77333, 11680, 12520, 11720, 40, 11728, 40;
99.77333, 11680, 12128, 11728, 40, 11728, 40;
99.77333, 11680, 12600, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11720, 40, 11728, 40;
99.77333, 11672, 11728, 11720, 40, 11728, 40;
99.77333, 11672, 11728, 11728, 40, 11720, 40;
99.77333, 11680, 12416, 11728, 40, 11720, 40;
99.77333, 11672, 12824, 11728, 40, 11728, 40;
99.77333, 11672, 12824, 11728, 40, 11728, 40;
99.77333, 11672, 12712, 11728, 40, 11728, 40;
99.77333, 11672, 11440, 11728, 40, 11720, 40;
99.77333, 11672, 11440, 11728, 40, 11728, 40;
99.77333, 11672, 11704, 11720, 40, 11728, 40;
99.77333, 11672, 12136, 11720, 40, 11728, 40;
99.77333, 11672, 12136, 11720, 32, 11728, 40;
99.77333, 11664, 11824, 11728, 40, 11728, 40;
99.77333, 11664, 11824, 11728, 40, 11728, 40;
99.77333, 11672, 12688, 11728, 40, 11720, 40;
99.77333, 11672, 12992, 11728, 40, 11720, 40;
99.77333, 11672, 12992, 11728, 40, 11720, 40;
99.77333, 11680, 12680, 11728, 40, 11720, 40;
99.77333, 11680, 11248, 11728, 40, 11720, 40;
99.77333, 11672, 11248, 11720, 32, 11728, 40;
99.77333, 11672, 11656, 11720, 40, 11728, 40;
99.77333, 11672, 11656, 11728, 40, 11728, 40;
99.77333, 11672, 12600, 11720, 40, 11728, 40;
99.77333, 11672, 11896, 11720, 40, 11728, 40;
99.77333, 11672, 11896, 11728, 32, 11720, 40;
99.77333, 11672, 12728, 11728, 40, 11720, 40;
99.77333, 11672, 12672, 11728, 40, 11720, 40;
99.77333, 11672, 12672, 11728, 40, 11720, 40;
99.77333, 11680, 12176, 11728, 40, 11720, 40;
99.77333, 11680, 12176, 11728, 40, 11720, 40;
99.77333, 11672, 12248, 11728, 32, 11720, 40;
99.77333, 11672, 11744, 11728, 32, 11728, 40;
99.77333, 11664, 11744, 11728, 40, 11720, 40;
99.77333, 11672, 12456, 11728, 40, 11728, 40;
99.77333, 11672, 12624, 11728, 32, 11728, 40;
99.77333, 11672, 12624, 11720, 32, 11720, 40;
99.77333, 11680, 12432, 11728, 40, 11720, 40;
99.77333, 11680, 11520, 11728, 40, 11720, 40;
99.77333, 11672, 11520, 11728, 40, 11728, 32;
99.77333, 11672, 11296, 11720, 32, 11728, 32;
99.77333, 11672, 11296, 11720, 32, 11720, 32;
99.77333, 11672, 12392, 11728, 40, 11728, 40;
99.77333, 11664, 12808, 11728, 40, 11728, 40;
99.77333, 11664, 12808, 11728, 32, 11720, 40;
99.77333, 11672, 12664, 11728, 32, 11720, 32;
99.77333, 11672, 12160, 11728, 32, 11720, 32;
99.77333, 11672, 12160, 11728, 32, 11720, 40;
99.77333, 11680, 12056, 11728, 32, 11720, 40;
99.77333, 11680, 12056, 11728, 32, 11728, 40;
99.77333, 11672, 12400, 11720, 32, 11728, 40;
99.77333, 11672, 12080, 11720, 32, 11728, 40;
99.77333, 11672, 12080, 11728, 32, 11720, 40;
99.77333, 11672, 12336, 11728, 40, 11720, 40;
99.77333, 11672, 12336, 11728, 40, 11728, 40;
99.77333, 11672, 12992, 11720, 40, 11720, 40;
99.77333, 11680, 12464, 11720, 40, 11720, 40;
99.77333, 11680, 12464, 11728, 40, 11720, 40;
99.77333, 11680, 12136, 11728, 40, 11720, 40;
99.77333, 11680, 12048, 11720, 32, 11720, 40;
99.77333, 11680, 12048, 11720, 32, 11728, 40;
99.77333, 11664, 12056, 11720, 40, 11728, 40;
99.77333, 11672, 11648, 11720, 40, 11728, 40;
99.77333, 11672, 11648, 11728, 40, 11720, 32;
99.77333, 11672, 11728, 11728, 32, 11720, 32;
99.77333, 11672, 13192, 11728, 32, 11728, 40;
99.77333, 11672, 13192, 11728, 40, 11720, 40;
99.77333, 11672, 12776, 11728, 40, 11720, 40;
99.77333, 11672, 12776, 11728, 40, 11728, 40;
99.77333, 11680, 12008, 11728, 40, 11720, 40;
99.77333, 11672, 12088, 11728, 40, 11720, 40;
99.77333, 11672, 12088, 11720, 40, 11728, 40;
99.77333, 11672, 12032, 11720, 32, 11728, 40;
99.77333, 11672, 11448, 11720, 32, 11728, 40;
99.77333, 11672, 11448, 11728, 40, 11720, 40;
99.77333, 11672, 12672, 11728, 40, 11720, 40;
99.77333, 11672, 12672, 11728, 40, 11728, 32;
99.77333, 11664, 12776, 11728, 40, 11728, 40;
99.77333, 11664, 12872, 11728, 40, 11720, 40;
99.77333, 11680, 12872, 11728, 40, 11720, 32;
99.77333, 11672, 12392, 11728, 40, 11720, 32;
99.77333, 11672, 12392, 11728, 40, 11728, 40;
99.77333, 11680, 11512, 11720, 40, 11728, 40;
99.77333, 11672, 12728, 11728, 40, 11728, 40;
99.77333, 11672, 11808, 11728, 40, 11728, 40;
99.77333, 11672, 11808, 11728, 32, 11728, 40;
99.77333, 11664, 12544, 11728, 40, 11728, 40;
99.77333, 11664, 12544, 11728, 40, 11720, 40;
99.77333, 11672, 12416, 11720, 40, 11720, 40;
99.77333, 11672, 11480, 11720, 40, 11720, 40;
99.77333, 11672, 11480, 11728, 32, 11720, 40;
99.77333, 11672, 12328, 11720, 40, 11720, 40;
99.77333, 11672, 12040, 11720, 40, 11728, 40;
99.77333, 11672, 12040, 11728, 40, 11728, 40;
99.77333, 11672, 12720, 11728, 40, 11728, 40;
99.77333, 11672, 12720, 11728, 40, 11728, 32;
99.77333, 11664, 12008, 11728, 40, 11728, 40;
99.77333, 11664, 13016, 11728, 40, 11728, 40;
99.77333, 11664, 13016, 11728, 40, 11720, 40;
99.77333, 11680, 12768, 11728, 40, 11720, 40;
99.77333, 11680, 12768, 11728, 40, 11720, 40;
99.77333, 11672, 11904, 11728, 32, 11720, 40;
99.77333, 11672, 11920, 11728, 32, 11720, 40;
99.77333, 11672, 11920, 11728, 40, 11728, 40;
99.77333, 11672, 11656, 11720, 32, 11728, 40;
99.77333, 11672, 12640, 11720, 32, 11728, 40;
99.77333, 11672, 12640, 11728, 40, 11720, 40;
99.77333, 11672, 12360, 11728, 40, 11720, 40;
99.77333, 11672, 12920, 11720, 40, 11720, 40;
99.77333, 11672, 12920, 11728, 40, 11720, 40;
99.77333, 11680, 11936, 11720, 40, 11720, 40;
99.77333, 11680, 11224, 11720, 40, 11728, 40;
99.77333, 11672, 11224, 11728, 40, 11720, 40;
99.77333, 11672, 12768, 11728, 32, 11720, 40;
99.77333, 11672, 12768, 11728, 32, 11728, 40;
99.77333, 11664, 11408, 11728, 40, 11728, 40;
99.77333, 11672, 12608, 11728, 40, 11728, 40;
99.77333, 11672, 12608, 11728, 40, 11720, 40;
99.77333, 11680, 11688, 11728, 40, 11720, 40;
99.77333, 11680, 11856, 11728, 40, 11728, 32;
99.77333, 11672, 11856, 11728, 40, 11728, 40;
99.77333, 11672, 12752, 11728, 40, 11728, 40;
99.77333, 11672, 12752, 11720, 40, 11728, 40;
99.77333, 11672, 11760, 11728, 32, 11728, 40;
99.77333, 11672, 12888, 11728, 32, 11720, 40;
99.77333, 11664, 12888, 11728, 40, 11720, 40;
99.77333, 11672, 12080, 11728, 32, 11720, 40;
99.77333, 11672, 12080, 11728, 32, 11720, 40;
99.77333, 11672, 12472, 11728, 40, 11720, 40;
99.77333, 11672, 12208, 11728, 40, 11720, 40;
99.77333, 11672, 12208, 11720, 40, 11728, 40;
99.77333, 11672, 11856, 11720, 32, 11728, 40;
99.77333, 11672, 12736, 11720, 32, 11720, 40;
99.77333, 11672, 12736, 11728, 32, 11728, 40;
99.77333, 11664, 11984, 11728, 40, 11720, 32;
99.77333, 11672, 12928, 11728, 40, 11720, 32;
99.77333, 11672, 12928, 11728, 40, 11720, 40;
99.77333, 11672, 12504, 11728, 40, 11720, 40;
99.77333, 11672, 11728, 11728, 40, 11720, 40;
99.77333, 11680, 11728, 11728, 40, 11720, 40;
99.77333, 11672, 11632, 11728, 40, 11720, 40;
99.77333, 11672, 11632, 11728, 40, 11728, 40;
99.77333, 11672, 11648, 11728, 40, 11728, 40;
99.77333, 11664, 12560, 11728, 40, 11720, 40;
99.77333, 11664, 12560, 11728, 32, 11720, 32;
99.77333, 11672, 11984, 11728, 40, 11720, 32;
99.77333, 11672, 11984, 11728, 40, 11720, 40;
99.77333, 11672, 13104, 11728, 40, 11720, 40;
99.77333, 11672, 12120, 11728, 40, 11720, 40;
99.77333, 11672, 12120, 11728, 40, 11720, 40;
99.77333, 11680, 11504, 11728, 40, 11720, 40;
99.77333, 11680, 12648, 11728, 40, 11728, 40;
99.77333, 11672, 12648, 11728, 40, 11728, 40;
99.77333, 11672, 11736, 11728, 40, 11728, 40;
99.77333, 11672, 11736, 11728, 40, 11720, 40;
99.77333, 11672, 12464, 11728, 40, 11720, 40;
99.77333, 11672, 13152, 11728, 40, 11728, 40;
99.77333, 11672, 13152, 11720, 40, 11720, 40;
99.77333, 11680, 12680, 11728, 40, 11720, 40;
99.77333, 11672, 11880, 11728, 32, 11720, 40;
99.77333, 11672, 11880, 11728, 32, 11728, 40;
99.77333, 11672, 11384, 11720, 40, 11720, 40;
99.77333, 11672, 12392, 11720, 40, 11720, 40;
99.77333, 11672, 12392, 11728, 40, 11728, 40;
99.77333, 11664, 12120, 11728, 40, 11728, 40;
99.77333, 11664, 12120, 11728, 40, 11728, 40;
99.77333, 11672, 12440, 11728, 40, 11720, 40;
99.77333, 11680, 12472, 11728, 40, 11720, 40;
99.77333, 11680, 12472, 11728, 40, 11720, 40;
99.77333, 11672, 11704, 11720, 40, 11720, 40;
99.77333, 11672, 12104, 11720, 40, 11728, 40;
99.77333, 11672, 12104, 11728, 40, 11728, 40;
99.77333, 11672, 12208, 11728, 40, 11728, 40;
99.77333, 11672, 12208, 11728, 40, 11720, 40;
99.77333, 11672, 13016, 11728, 40, 11720, 40;
99.77333, 11672, 12216, 11728, 40, 11720, 40;
99.77333, 11672, 12216, 11728, 40, 11728, 40;
99.77333, 11680, 11216, 11720, 32, 11728, 40;
99.77333, 11680, 13128, 11720, 32, 11720, 40;
99.77333, 11672, 13128, 11728, 40, 11720, 32;
99.77333, 11664, 12384, 11728, 40, 11720, 32;
99.77333, 11664, 12384, 11728, 40, 11728, 40;
99.77333, 11672, 12232, 11728, 40, 11728, 40;
99.77333, 11680, 12664, 11720, 40, 11720, 40;
99.77333, 11680, 11824, 11720, 40, 11720, 40;
99.77333, 11672, 11824, 11720, 32, 11728, 40;
99.77333, 11672, 12960, 11720, 40, 11728, 40;
99.77333, 11672, 12960, 11728, 40, 11728, 40;
99.77333, 11672, 11912, 11728, 40, 11728, 40;
99.77333, 11672, 12792, 11728, 40, 11720, 40;
99.77333, 11664, 12792, 11728, 40, 11720, 40;
99.77333, 11680, 12552, 11720, 40, 11720, 40;
99.77333, 11680, 12552, 11720, 40, 11720, 40;
99.77333, 11672, 11688, 11728, 40, 11720, 40;
99.77333, 11672, 11880, 11728, 40, 11720, 40;
99.77333, 11672, 11880, 11720, 40, 11728, 40;
99.77333, 11672, 10864, 11728, 40, 11728, 40;
99.56381, 11672, 12576, 11728, 40, 11728, 40;
99.56381, 11664, 12576, 11728, 40, 11728, 40;
99.56381, 11672, 12496, 11728, 32, 11728, 40;
99.56381, 11672, 12496, 11728, 32, 11720, 40;
99.56381, 11672, 12880, 11728, 40, 11720, 40;
99.56381, 11680, 12616, 11728, 40, 11720, 40;
99.56381, 11680, 12616, 11728, 32, 11720, 40;
99.56381, 11680, 11680, 11728, 40, 11720, 40;
99.56381, 11680, 11680, 11728, 40, 11728, 40;
99.56381, 11672, 12408, 11720, 40, 11728, 40;
99.56381, 11672, 10936, 11720, 40, 11728, 40;
99.56381, 11672, 12456, 11728, 32, 11720, 40;
99.56381, 11672, 12456, 11728, 32, 11728, 40;
99.56381, 11672, 12824, 11720, 40, 11728, 40;
99.56381, 11672, 12824, 11720, 40, 11728, 40;
99.56381, 11672, 12640, 11728, 32, 11720, 40;
99.56381, 11672, 12232, 11728, 40, 11720, 40;
99.45905, 11672, 12232, 11720, 40, 11728, 40;
99.45905, 11672, 11312, 11720, 32, 11728, 40;
99.45905, 11672, 12928, 11720, 32, 11728, 40;
99.45905, 11672, 12928, 11720, 32, 11728, 40;
99.45905, 11672, 11864, 11720, 40, 11728, 40;
99.45905, 11672, 11864, 11728, 40, 11728, 40;
99.45905, 11672, 12304, 11728, 40, 11728, 40;
99.45905, 11672, 12840, 11728, 40, 11728, 40;
99.45905, 11672, 12840, 11720, 40, 11720, 40;
99.45905, 11672, 12808, 11728, 32, 11720, 40;
99.45905, 11672, 12464, 11728, 32, 11728, 40;
99.45905, 11672, 12464, 11720, 32, 11720, 40;
99.45905, 11680, 11824, 11720, 40, 11720, 40;
99.45905, 11680, 11824, 11728, 40, 11720, 40;
99.45905, 11672, 11760, 11728, 40, 11720, 40;
99.45905, 11672, 11440, 11728, 40, 11720, 40;
99.45905, 11680, 11440, 11720, 40, 11728, 40;
99.45905, 11672, 12352, 11720, 40, 11728, 40;
99.45905, 11672, 12352, 11728, 40, 11728, 40;
99.45905, 11672, 11936, 11728, 40, 11720, 40;
99.45905, 11664, 12512, 11728, 40, 11720, 40;
99.45905, 11664, 12568, 11728, 40, 11720, 40;
99.45905, 11672, 12568, 11728, 32, 11728, 40;
99.45905, 11672, 12120, 11728, 32, 11728, 40;
99.45905, 11672, 12120, 11728, 32, 11728, 40;
99.45905, 11672, 11888, 11728, 32, 11728, 32;
99.45905, 11672, 11416, 11728, 32, 11728, 32;
99.45905, 11672, 11416, 11720, 40, 11728, 40;
99.45905, 11672, 12168, 11728, 32, 11728, 40;
99.45905, 11672, 12624, 11728, 32, 11728, 40;
99.45905, 11672, 12624, 11728, 40, 11728, 32;
99.45905, 11672, 12456, 11728, 32, 11728, 32;
99.45905, 11672, 12456, 11728, 32, 11728, 40;
99.45905, 11672, 12328, 11728, 40, 11728, 40;
99.45905, 11672, 12168, 11728, 40, 11728, 40;
99.45905, 11672, 12168, 11728, 40, 11728, 40;
99.45905, 11672, 12808, 11720, 40, 11728, 40;
99.45905, 11672, 12808, 11720, 40, 11720, 40;
99.45905, 11672, 11448, 11728, 40, 11720, 40;
99.45905, 11672, 11520, 11728, 40, 11720, 40;
99.45905, 11672, 11520, 11720, 40, 11728, 40;
99.45905, 11680, 11720, 11720, 40, 11728, 40;
99.45905, 11680, 12488, 11720, 40, 11728, 40;
99.45905, 11672, 12488, 11728, 40, 11728, 40;
99.45905, 11664, 12096, 11728, 40, 11720, 40;
99.45905, 11672, 12576, 11728, 40, 11720, 40;
99.45905, 11672, 12576, 11728, 40, 11720, 40;
99.45905, 11672, 12936, 11728, 40, 11720, 40;
99.45905, 11672, 12936, 11728, 40, 11720, 40;
98.41143, 11680, 12168, 11728, 32, 11728, 40;
98.41143, 11672, 11656, 11728, 32, 11728, 40;
98.41143, 11672, 11656, 11720, 32, 11720, 40;
98.41143, 11672, 11936, 11720, 40, 11720, 40;
98.41143, 11672, 12456, 11720, 40, 11720, 40;
98.41143, 11672, 12456, 11728, 40, 11728, 40;
98.41143, 11672, 11944, 11728, 32, 11728, 40;
98.41143, 11672, 12272, 11728, 32, 11720, 40;
98.41143, 11672, 12272, 11728, 32, 11728, 40;
98.41143, 11664, 12920, 11728, 40, 11728, 40;
98.41143, 11664, 12920, 11720, 40, 11728, 40;
98.41143, 11672, 12944, 11728, 40, 11728, 40;
98.41143, 11672, 11704, 11728, 40, 11720, 40;
98.41143, 11672, 11704, 11720, 40, 11720, 40;
98.41143, 11672, 12512, 11720, 40, 11720, 40;
98.41143, 11672, 12512, 11728, 40, 11728, 40;
98.41143, 11664, 11656, 11728, 40, 11728, 40;
95.79238, 11672, 11656, 11728, 40, 11728, 40;
95.79238, 11672, 11656, 11728, 40, 11720, 40;
95.79238, 11672, 12264, 11728, 40, 11720, 40;
95.79238, 11664, 12512, 11728, 40, 11728, 40;
95.79238, 11664, 12512, 11728, 40, 11720, 40;
95.79238, 11664, 12208, 11728, 40, 11728, 40;
95.79238, 11672, 12144, 11728, 40, 11728, 40;
95.79238, 11672, 12144, 11720, 32, 11720, 40;
95.79238, 11672, 11880, 11728, 40, 11720, 40;
95.79238, 11672, 12768, 11728, 40, 11728, 40;
95.79238, 11672, 12768, 11728, 40, 11728, 40;
95.79238, 11672, 12032, 11728, 32, 11728, 40;
95.79238, 11672, 12032, 11728, 32, 11720, 40;
95.79238, 11672, 12696, 11728, 40, 11720, 40;
95.79238, 11664, 12520, 11728, 40, 11728, 40;
95.79238, 11664, 12520, 11728, 40, 11728, 40;
93.69714, 11672, 12576, 11728, 32, 11728, 40;
93.69714, 11672, 12576, 11728, 32, 11736, 40;
93.69714, 11720, 6120, 11744, 40, 11736, 40;
93.69714, 11712, 6424, 11744, 40, 11736, 40;
93.69714, 11712, 6424, 11736, 40, 11736, 40;
93.69714, 11712, 7464, 11736, 40, 11736, 40;
93.69714, 11712, 8928, 11736, 40, 11736, 40;
93.69714, 11696, 8928, 11736, 40, 11736, 40;
93.69714, 11704, 8704, 11736, 40, 11736, 40;
93.69714, 11704, 8704, 11736, 40, 11736, 40;
93.69714, 11688, 9280, 11736, 40, 11736, 40;
93.69714, 11688, 9240, 11736, 40, 11736, 40;
93.69714, 11688, 9240, 11736, 40, 11728, 40;
93.69714, 11688, 10864, 11736, 40, 11728, 40;
93.69714, 11688, 10864, 11736, 40, 11728, 40;
93.69714, 11688, 8168, 11728, 40, 11728, 40;
93.69714, 11696, 10984, 11728, 40, 11728, 40;
92.12572, 11696, 10984, 11728, 40, 11728, 40;
92.12572, 11688, 11472, 11728, 32, 11728, 40;
92.12572, 11688, 10896, 11728, 32, 11736, 40;
92.12572, 11696, 10896, 11728, 40, 11728, 40;
92.12572, 11696, 9448, 11728, 40, 11728, 40;
92.12572, 11696, 9448, 11736, 40, 11728, 40;
92.12572, 11680, 9224, 11728, 40, 11728, 40;
92.12572, 11688, 10272, 11728, 40, 11728, 40;
92.12572, 11688, 10272, 11736, 40, 11728, 40;
92.12572, 11688, 11776, 11736, 40, 11728, 40;
92.12572, 11688, 10984, 11736, 40, 11728, 40;
92.12572, 11688, 10984, 11728, 40, 11728, 40;
92.12572, 11680, 10224, 11728, 40, 11728, 40;
92.12572, 11680, 10184, 11728, 40, 11728, 40;
92.12572, 11680, 10184, 11728, 40, 11728, 40;
92.12572, 11680, 11040, 11728, 40, 11728, 40;
90.13524, 11680, 12048, 11728, 40, 11728, 40;
90.13524, 11688, 12048, 11736, 40, 11736, 40;
90.13524, 11688, 11008, 11736, 40, 11736, 40;
90.13524, 11688, 11008, 11736, 40, 11728, 40;
90.13524, 11680, 10440, 11728, 40, 11728, 40;
90.13524, 11688, 10200, 11728, 40, 11728, 40;
90.13524, 11688, 10200, 11728, 32, 11728, 40;
90.13524, 11680, 10960, 11728, 40, 11728, 40;
90.13524, 11680, 10960, 11728, 40, 11728, 40;
90.13524, 11688, 10992, 11728, 32, 11728, 40;
90.13524, 11688, 9808, 11728, 32, 11728, 40;
90.13524, 11688, 9808, 11728, 32, 11728, 40;
90.13524, 11672, 10328, 11728, 40, 11728, 40;
90.13524, 11672, 11464, 11728, 40, 11728, 40;
90.13524, 11680, 11464, 11728, 40, 11728, 40;
90.13524, 11680, 11920, 11728, 40, 11728, 40;
90.13524, 11680, 11920, 11728, 40, 11728, 40;
88.66857, 11680, 11832, 11728, 40, 11728, 40;
88.66857, 11688, 11672, 11728, 40, 11728, 40;
88.66857, 11688, 11672, 11728, 40, 11728, 40;
88.66857, 11688, 11000, 11728, 40, 11728, 40;
88.66857, 11688, 11000, 11728, 40, 11728, 40;
88.66857, 11680, 10872, 11728, 40, 11728, 40;
88.66857, 11680, 10448, 11728, 40, 11728, 40;
88.66857, 11688, 10256, 11728, 40, 11728, 40;
88.66857, 11688, 10256, 11728, 32, 11728, 40;
88.66857, 11680, 11728, 11728, 40, 11728, 40;
88.66857, 11680, 11728, 11728, 40, 11728, 40;
88.66857, 11680, 10296, 11728, 40, 11728, 40;
88.66857, 11680, 11544, 11728, 40, 11728, 40;
88.66857, 11680, 11544, 11728, 40, 11728, 40;
88.66857, 11680, 10456, 11728, 40, 11728, 40;
88.66857, 11680, 11576, 11728, 40, 11728, 40;
87.20190, 11688, 11576, 11728, 32, 11728, 40;
87.20190, 11688, 10856, 11728, 40, 11728, 40;
87.20190, 11688, 10856, 11728, 40, 11728, 40;
87.20190, 11680, 10312, 11728, 40, 11728, 40;
87.20190, 11688, 11176, 11728, 40, 11728, 40;
87.20190, 11688, 11176, 11728, 40, 11728, 40;
87.20190, 11688, 10872, 11728, 40, 11728, 40;
87.20190, 11688, 10288, 11728, 40, 11728, 40;
87.20190, 11688, 10288, 11728, 40, 11728, 40;
87.20190, 11688, 10072, 11728, 32, 11728, 40;
87.20190, 11688, 10072, 11728, 32, 11728, 40;
87.20190, 11688, 10616, 11728, 32, 11728, 40;
87.20190, 11688, 10824, 11728, 32, 11728, 40;
87.20190, 11688, 10824, 11728, 40, 11728, 40;
87.20190, 11688, 10784, 11728, 40, 11728, 40;
87.20190, 11680, 10856, 11728, 40, 11728, 40;
86.36382, 11680, 10856, 11728, 40, 11728, 40;
86.36382, 11680, 11112, 11728, 32, 11728, 40;
86.36382, 11680, 10848, 11728, 32, 11728, 40;
86.36382, 11680, 10848, 11728, 40, 11728, 40;
86.36382, 11680, 11176, 11728, 40, 11728, 40;
86.36382, 11680, 11176, 11728, 40, 11728, 40;
86.36382, 11688, 10296, 11728, 40, 11728, 40;
86.36382, 11680, 10768, 11728, 40, 11728, 40;
86.36382, 11680, 10768, 11728, 40, 11728, 40;
86.36382, 11680, 11000, 11728, 40, 11728, 40;
86.36382, 11680, 10544, 11728, 40, 11728, 40;
86.36382, 11680, 10544, 11728, 32, 11728, 40;
86.36382, 11680, 11104, 11728, 32, 11728, 40;
86.36382, 11680, 11104, 11728, 32, 11728, 40;
86.36382, 11680, 10800, 11728, 40, 11728, 40;
86.36382, 11680, 10800, 11728, 40, 11728, 40;
85.31619, 11680, 10880, 11728, 32, 11728, 40;
85.31619, 11680, 10624, 11728, 40, 11728, 40;
85.31619, 11680, 10624, 11728, 40, 11728, 32;
85.31619, 11680, 10904, 11728, 40, 11728, 40;
85.31619, 11680, 10552, 11728, 40, 11728, 40;
85.31619, 11680, 10552, 11728, 40, 11728, 40;
85.31619, 11680, 11032, 11728, 40, 11728, 40;
85.31619, 11688, 10832, 11728, 32, 11728, 40;
85.31619, 11688, 10832, 11728, 32, 11728, 40;
85.31619, 11688, 10344, 11728, 40, 11728, 40;
85.31619, 11680, 10744, 11728, 40, 11728, 40;
85.31619, 11680, 10744, 11728, 40, 11728, 40;
85.31619, 11680, 10656, 11728, 32, 11728, 40;
85.31619, 11680, 11056, 11728, 32, 11728, 40;
85.31619, 11680, 11056, 11728, 32, 11728, 40;
85.31619, 11680, 11160, 11728, 32, 11728, 40;
83.64000, 11680, 11160, 11728, 32, 11728, 40;
83.64000, 11680, 10904, 11728, 40, 11728, 40;
83.64000, 11688, 10416, 11728, 40, 11728, 40;
83.64000, 11688, 10416, 11728, 40, 11728, 40;
83.64000, 11688, 10608, 11728, 40, 11728, 40;
83.64000, 11688, 10120, 11728, 40, 11728, 40;
83.64000, 11688, 10120, 11728, 40, 11728, 40;
83.64000, 11688, 10296, 11728, 32, 11728, 40;
83.64000, 11688, 10296, 11728, 32, 11728, 40;
83.64000, 11688, 10456, 11728, 40, 11728, 40;
83.64000, 11688, 10736, 11728, 40, 11728, 40;
83.64000, 11688, 10736, 11728, 32, 11728, 40;
83.64000, 11688, 10320, 11728, 40, 11728, 40;
83.64000, 11688, 10320, 11728, 40, 11728, 40;
83.64000, 11680, 10960, 11728, 40, 11728, 40;
83.64000, 11688, 10928, 11728, 40, 11728, 40;
83.64000, 11688, 10864, 11728, 40, 11728, 40;
82.59238, 11680, 10864, 11728, 40, 11728, 40;
82.59238, 11688, 10232, 11728, 40, 11728, 40;
82.59238, 11688, 10232, 11728, 40, 11728, 40;
82.59238, 11688, 10304, 11728, 40, 11728, 40;
82.59238, 11688, 10360, 11728, 40, 11728, 40;
82.59238, 11688, 10360, 11728, 40, 11728, 40;
82.59238, 11688, 10280, 11728, 40, 11728, 40;
82.59238, 11688, 10312, 11728, 40, 11728, 40;
82.59238, 11680, 10312, 11728, 40, 11728, 40;
82.59238, 11688, 10712, 11728, 40, 11728, 40;
82.59238, 11688, 10712, 11728, 40, 11728, 40;
82.59238, 11688, 10880, 11728, 40, 11728, 40;
82.59238, 11680, 10608, 11728, 40, 11728, 40;
82.59238, 11680, 10608, 11728, 40, 11728, 40;
82.59238, 11680, 10504, 11728, 40, 11728, 40;
81.44000, 11680, 10504, 11728, 40, 11728, 40;
81.44000, 11680, 10688, 11728, 40, 11728, 40;
81.44000, 11688, 10336, 11728, 40, 11728, 40;
81.44000, 11688, 10336, 11728, 40, 11728, 40;
81.44000, 11688, 10680, 11728, 32, 11728, 40;
81.44000, 11688, 10264, 11728, 32, 11728, 40;
81.44000, 11688, 10264, 11728, 40, 11728, 40;
81.44000, 11688, 10336, 11728, 40, 11728, 40;
81.44000, 11688, 10336, 11728, 40, 11728, 40;
81.44000, 11688, 11080, 11728, 40, 11728, 40;
81.44000, 11688, 10192, 11728, 40, 11728, 40;
81.44000, 11688, 11208, 11728, 40, 11728, 40;
81.44000, 11688, 11208, 11728, 40, 11728, 40;
81.44000, 11688, 10432, 11728, 32, 11728, 40;
81.44000, 11688, 10432, 11728, 32, 11728, 40;
81.44000, 11680, 10968, 11728, 32, 11728, 40;
80.39238, 11680, 10648, 11728, 32, 11728, 40;
80.39238, 11680, 10648, 11728, 40, 11728, 40;
80.39238, 11696, 9904, 11728, 40, 11728, 40;
80.39238, 11696, 10096, 11728, 40, 11728, 40;
80.39238, 11680, 10096, 11728, 40, 11728, 40;
80.39238, 11688, 9824, 11728, 40, 11728, 40;
80.39238, 11688, 9824, 11728, 40, 11728, 40;
80.39238, 11688, 10176, 11728, 32, 11728, 40;
80.39238, 11688, 10688, 11728, 32, 11728, 40;
80.39238, 11688, 10688, 11728, 40, 11728, 40;
80.39238, 11688, 10992, 11728, 40, 11728, 40;
80.39238, 11688, 10992, 11728, 40, 11728, 40;
80.39238, 11688, 10984, 11728, 40, 11728, 40;
80.39238, 11688, 10680, 11728, 40, 11728, 40;
80.39238, 11688, 10680, 11728, 40, 11728, 40;
80.39238, 11688, 10704, 11728, 40, 11728, 40;
80.39238, 11688, 10536, 11728, 40, 11728, 40;
79.34476, 11688, 10536, 11728, 40, 11728, 40;
79.34476, 11688, 9712, 11728, 40, 11728, 40;
79.34476, 11688, 9712, 11728, 40, 11728, 40;
79.34476, 11688, 10152, 11728, 40, 11728, 40;
79.34476, 11688, 9984, 11728, 40, 11728, 40;
79.34476, 11688, 9984, 11728, 40, 11728, 40;
79.34476, 11688, 10048, 11736, 40, 11728, 40;
79.34476, 11688, 10048, 11736, 40, 11728, 40;
79.34476, 11688, 9992, 11728, 40, 11728, 40;
79.34476, 11688, 10240, 11728, 40, 11728, 40;
79.34476, 11688, 10368, 11728, 40, 11728, 40;
79.34476, 11680, 10368, 11728, 40, 11728, 40;
79.34476, 11688, 10384, 11728, 40, 11728, 40;
79.34476, 11688, 10384, 11728, 40, 11728, 40;
79.34476, 11688, 10128, 11728, 32, 11728, 40;
79.34476, 11680, 10128, 11728, 32, 11728, 40;
78.71619, 11680, 10128, 11728, 40, 11728, 40;
78.71619, 11688, 10208, 11728, 40, 11728, 40;
78.71619, 11688, 10048, 11728, 40, 11728, 40;
78.71619, 11688, 10048, 11728, 40, 11728, 40;
78.71619, 11688, 10624, 11728, 40, 11728, 40;
78.71619, 11688, 10624, 11728, 40, 11728, 40;
78.71619, 11688, 10120, 11728, 40, 11728, 40;
78.71619, 11688, 10504, 11728, 40, 11728, 40;
78.71619, 11688, 10504, 11728, 40, 11728, 40;
78.71619, 11688, 10728, 11728, 32, 11728, 40;
78.71619, 11688, 10728, 11728, 32, 11728, 40;
78.71619, 11688, 10720, 11728, 40, 11728, 40;
78.71619, 11688, 10904, 11728, 40, 11728, 40;
78.71619, 11688, 10904, 11728, 40, 11728, 40;
78.71619, 11688, 10968, 11728, 40, 11728, 40;
78.71619, 11688, 10552, 11728, 40, 11728, 40;
77.45905, 11688, 10552, 11728, 32, 11728, 40;
77.45905, 11688, 9912, 11728, 40, 11728, 40;
77.45905, 11688, 9912, 11728, 40, 11728, 40;
77.45905, 11688, 9648, 11728, 40, 11728, 40;
77.45905, 11696, 9952, 11728, 40, 11728, 40;
77.45905, 11696, 9952, 11728, 32, 11728, 40;
77.45905, 11688, 9800, 11728, 40, 11728, 40;
77.45905, 11688, 9720, 11728, 40, 11728, 40;
77.45905, 11688, 9720, 11728, 40, 11728, 40;
77.45905, 11688, 9888, 11728, 40, 11728, 40;
77.45905, 11688, 9888, 11728, 40, 11728, 40;
77.45905, 11688, 10168, 11728, 40, 11728, 40;
77.45905, 11688, 10104, 11728, 40, 11728, 40;
77.45905, 11688, 10120, 11728, 32, 11728, 40;
77.45905, 11688, 10120, 11728, 40, 11728, 40;
77.45905, 11688, 10584, 11728, 40, 11728, 40;
76.72572, 11688, 10584, 11728, 40, 11728, 40;
76.72572, 11688, 9984, 11736, 40, 11728, 40;
76.72572, 11688, 9184, 11736, 40, 11728, 40;
76.72572, 11688, 9184, 11728, 32, 11728, 40;
76.72572, 11688, 9472, 11736, 40, 11728, 40;
76.72572, 11688, 9472, 11736, 40, 11728, 32;
76.72572, 11688, 9976, 11728, 40, 11728, 40;
76.72572, 11688, 9872, 11728, 40, 11728, 40;
76.72572, 11688, 9872, 11728, 40, 11728, 40;
76.72572, 11688, 10032, 11736, 40, 11728, 40;
76.72572, 11688, 9760, 11736, 40, 11728, 40;
76.72572, 11688, 9760, 11728, 32, 11728, 40;
76.72572, 11688, 9960, 11728, 40, 11728, 40;
76.72572, 11688, 9960, 11728, 40, 11728, 40;
76.72572, 11688, 10616, 11728, 40, 11728, 32;
76.72572, 11688, 10216, 11728, 40, 11728, 32;
76.09715, 11688, 10216, 11736, 40, 11728, 40;
76.09715, 11696, 9792, 11728, 40, 11728, 40;
76.09715, 11696, 9792, 11728, 40, 11728, 40;
76.09715, 11688, 9952, 11736, 32, 11728, 40;
76.09715, 11688, 10128, 11736, 32, 11728, 40;
76.09715, 11688, 10128, 11728, 40, 11728, 40;
76.09715, 11688, 10040, 11728, 32, 11728, 40;
76.09715, 11688, 9584, 11728, 32, 11728, 40;
76.09715, 11688, 9584, 11728, 40, 11728, 40;
76.09715, 11688, 10224, 11728, 32, 11728, 40;
76.09715, 11688, 10224, 11728, 32, 11728, 40;
76.09715, 11688, 10360, 11728, 32, 11728, 40;
76.09715, 11688, 9888, 11728, 32, 11728, 40;
76.09715, 11688, 9888, 11728, 40, 11728, 40;
76.09715, 11688, 9856, 11728, 40, 11728, 40;
76.09715, 11688, 9856, 11728, 40, 11728, 40;
75.15429, 11688, 9960, 11728, 32, 11728, 40;
75.15429, 11688, 9776, 11728, 40, 11728, 40;
75.15429, 11688, 9776, 11736, 40, 11728, 40;
75.15429, 11688, 10064, 11728, 40, 11728, 40;
75.15429, 11688, 9800, 11728, 40, 11728, 40;
75.15429, 11688, 9800, 11736, 40, 11728, 40;
75.15429, 11688, 9992, 11736, 40, 11728, 40;
75.15429, 11688, 9992, 11728, 40, 11728, 40;
75.15429, 11688, 9632, 11736, 40, 11728, 40;
75.15429, 11688, 10128, 11736, 40, 11728, 40;
75.15429, 11688, 10128, 11728, 40, 11728, 40;
75.15429, 11688, 9808, 11728, 32, 11728, 40;
75.15429, 11688, 9608, 11728, 32, 11728, 40;
75.15429, 11688, 9608, 11728, 40, 11728, 40;
75.15429, 11688, 10144, 11728, 40, 11728, 40;
75.15429, 11688, 10144, 11728, 40, 11728, 40;
74.21143, 11688, 9560, 11728, 40, 11728, 40;
74.21143, 11688, 9464, 11728, 40, 11728, 40;
74.21143, 11688, 9464, 11736, 40, 11728, 40;
74.21143, 11696, 9536, 11736, 40, 11728, 40;
74.21143, 11696, 9536, 11736, 40, 11728, 40;
74.21143, 11696, 9576, 11736, 40, 11728, 32;
74.21143, 11688, 9360, 11736, 40, 11728, 32;
74.21143, 11688, 9360, 11736, 40, 11736, 40;
74.21143, 11696, 9968, 11728, 40, 11736, 40;
74.21143, 11696, 9248, 11728, 40, 11728, 40;
74.21143, 11696, 9248, 11728, 32, 11736, 32;
74.21143, 11688, 9576, 11728, 32, 11736, 32;
74.21143, 11688, 9576, 11728, 32, 11728, 40;
74.21143, 11688, 9728, 11728, 40, 11728, 40;
74.21143, 11688, 9696, 11728, 40, 11728, 40;
74.21143, 11688, 9696, 11736, 40, 11728, 40;
74.21143, 11688, 9816, 11736, 40, 11728, 40;
73.37334, 11688, 9816, 11736, 40, 11728, 40;
73.37334, 11696, 9784, 11728, 40, 11736, 40;
73.37334, 11696, 9240, 11728, 40, 11736, 40;
73.37334, 11696, 9240, 11736, 32, 11728, 40;
73.37334, 11696, 9480, 11736, 32, 11728, 32;
73.37334, 11696, 9528, 11736, 32, 11728, 32;
73.37334, 11696, 9528, 11728, 40, 11728, 40;
73.37334, 11688, 9384, 11728, 32, 11728, 40;
73.37334, 11688, 9384, 11736, 32, 11728, 40;
73.37334, 11696, 9600, 11728, 40, 11728, 40;
73.37334, 11696, 9648, 11728, 40, 11728, 40;
73.37334, 11696, 9648, 11728, 40, 11728, 40;
73.37334, 11696, 9392, 11736, 32, 11728, 40;
73.37334, 11696, 9392, 11736, 32, 11728, 40;
73.37334, 11688, 9752, 11728, 40, 11728, 40;
73.37334, 11688, 9608, 11728, 40, 11728, 40;
72.95428, 11688, 9608, 11736, 40, 11728, 40;
72.95428, 11696, 9624, 11736, 40, 11728, 40;
72.95428, 11696, 9400, 11736, 40, 11728, 40;
72.95428, 11696, 9400, 11736, 40, 11736, 40;
72.95428, 11688, 9376, 11736, 32, 11736, 40;
72.95428, 11688, 9376, 11736, 32, 11728, 40;
72.95428, 11688, 9640, 11728, 40, 11728, 40;
72.95428, 11696, 9488, 11728, 40, 11728, 40;
72.95428, 11696, 9488, 11736, 40, 11728, 32;
72.95428, 11688, 9680, 11736, 40, 11728, 32;
72.95428, 11688, 9976, 11736, 40, 11728, 40;
72.95428, 11688, 9976, 11728, 40, 11728, 40;
72.95428, 11696, 9664, 11728, 32, 11728, 40;
72.95428, 11696, 9664, 11728, 32, 11728, 40;
72.95428, 11688, 9456, 11736, 40, 11728, 40;
72.95428, 11688, 9776, 11736, 40, 11728, 40;
72.32571, 11688, 9776, 11728, 40, 11728, 40;
72.32571, 11696, 9088, 11728, 40, 11728, 40;
72.32571, 11696, 9088, 11736, 40, 11728, 40;
72.32571, 11688, 9432, 11736, 40, 11728, 40;
72.32571, 11696, 9160, 11736, 40, 11728, 40;
72.32571, 11696, 9160, 11736, 40, 11736, 40;
72.32571, 11696, 9584, 11736, 40, 11736, 40;
72.32571, 11696, 9608, 11736, 40, 11728, 40;
72.32571, 11696, 9608, 11728, 40, 11728, 40;
72.32571, 11696, 9392, 11728, 32, 11728, 40;
72.32571, 11696, 9392, 11736, 32, 11736, 40;
72.32571, 11696, 9264, 11736, 40, 11736, 40;
72.32571, 11696, 9416, 11736, 40, 11728, 40;
72.32571, 11696, 9416, 11728, 40, 11736, 40;
72.32571, 11696, 9136, 11728, 40, 11736, 40;
72.32571, 11696, 9136, 11728, 40, 11728, 40;
71.27809, 11688, 9824, 11728, 40, 11736, 40;
71.27809, 11696, 9088, 11728, 40, 11736, 40;
71.27809, 11696, 9088, 11736, 40, 11736, 40;
71.27809, 11696, 9192, 11736, 40, 11736, 40;
71.27809, 11696, 9216, 11736, 40, 11736, 40;
71.27809, 11696, 9216, 11736, 40, 11728, 40;
71.27809, 11696, 9000, 11736, 40, 11728, 40;
71.27809, 11696, 9000, 11736, 40, 11736, 40;
71.27809, 11696, 9288, 11736, 40, 11728, 40;
71.27809, 11696, 9432, 11736, 40, 11728, 40;
71.27809, 11696, 9432, 11736, 40, 11736, 40;
71.27809, 11696, 9168, 11736, 32, 11736, 40;
71.27809, 11696, 9168, 11736, 32, 11736, 40;
71.27809, 11696, 9520, 11736, 32, 11736, 40;
71.27809, 11696, 9136, 11736, 40, 11736, 40;
71.27809, 11696, 9136, 11736, 40, 11736, 40;
70.54476, 11696, 9264, 11736, 40, 11736, 40;
70.54476, 11696, 8848, 11736, 40, 11736, 40;
70.54476, 11696, 8848, 11736, 40, 11736, 40;
70.54476, 11696, 9168, 11736, 32, 11736, 40;
70.54476, 11696, 9168, 11736, 32, 11728, 40;
70.54476, 11696, 9152, 11736, 40, 11736, 40;
70.54476, 11696, 8920, 11736, 40, 11736, 40;
70.54476, 11696, 8920, 11736, 32, 11728, 40;
70.54476, 11696, 9144, 11736, 40, 11728, 40;
70.54476, 11696, 9016, 11736, 40, 11736, 40;
70.54476, 11696, 9016, 11736, 40, 11736, 40;
70.54476, 11696, 8960, 11736, 40, 11736, 40;
70.54476, 11696, 8960, 11736, 40, 11728, 40;
70.54476, 11696, 9232, 11736, 40, 11728, 40;
70.54476, 11696, 9088, 11736, 40, 11728, 40;
70.54476, 11696, 9088, 11736, 40, 11736, 40;
69.49715, 11696, 9016, 11736, 40, 11736, 40;
69.49715, 11696, 9016, 11736, 40, 11736, 40;
69.49715, 11696, 8744, 11736, 40, 11736, 40;
69.49715, 11696, 8520, 11736, 40, 11736, 40;
69.49715, 11696, 8520, 11736, 40, 11736, 40;
69.49715, 11696, 8784, 11736, 40, 11736, 40;
69.49715, 11696, 8784, 11736, 40, 11736, 40;
69.49715, 11704, 8784, 11736, 40, 11736, 40;
69.49715, 11696, 8576, 11736, 40, 11736, 40;
69.49715, 11696, 8576, 11736, 40, 11736, 40;
69.49715, 11696, 8664, 11736, 40, 11736, 40;
69.49715, 11696, 8784, 11736, 40, 11736, 40;
69.49715, 11696, 8784, 11736, 32, 11736, 40;
69.49715, 11696, 8712, 11736, 40, 11736, 40;
69.49715, 11696, 8712, 11736, 40, 11736, 40;
69.49715, 11696, 8984, 11736, 32, 11736, 40;
68.97334, 11696, 9224, 11736, 32, 11736, 40;
68.97334, 11696, 9224, 11736, 40, 11736, 40;
68.97334, 11696, 8416, 11736, 40, 11736, 40;
68.97334, 11696, 8928, 11736, 40, 11736, 40;
68.97334, 11704, 8928, 11736, 32, 11736, 40;
68.97334, 11696, 8544, 11736, 40, 11736, 40;
68.97334, 11696, 8544, 11736, 40, 11736, 40;
68.97334, 11696, 8824, 11736, 40, 11736, 40;
68.97334, 11696, 8744, 11736, 40, 11736, 40;
68.97334, 11696, 8744, 11736, 32, 11736, 40;
68.97334, 11696, 8432, 11736, 40, 11736, 40;
68.97334, 11696, 8432, 11736, 40, 11736, 40;
68.97334, 11696, 8696, 11736, 40, 11736, 40;
68.97334, 11696, 8488, 11736, 40, 11736, 40;
68.97334, 11696, 8488, 11736, 32, 11736, 40;
68.97334, 11696, 9056, 11736, 40, 11736, 40;
68.97334, 11696, 9112, 11736, 40, 11736, 40;
68.76381, 11696, 9112, 11736, 40, 11736, 40;
68.76381, 11696, 8376, 11736, 40, 11736, 40;
68.76381, 11696, 8376, 11736, 40, 11736, 40;
68.76381, 11696, 9120, 11736, 40, 11736, 40;
68.76381, 11704, 8928, 11736, 40, 11736, 40;
68.76381, 11704, 8928, 11736, 40, 11736, 40;
68.76381, 11696, 8432, 11736, 40, 11736, 40;
68.76381, 11696, 9216, 11736, 40, 11736, 40;
68.76381, 11696, 9216, 11736, 40, 11736, 40;
68.76381, 11704, 9224, 11736, 40, 11736, 40;
68.76381, 11704, 9224, 11736, 40, 11736, 40;
68.76381, 11696, 9144, 11736, 32, 11736, 40;
68.76381, 11696, 9392, 11736, 32, 11736, 40;
68.76381, 11696, 9392, 11736, 32, 11736, 40;
68.76381, 11696, 8904, 11736, 40, 11736, 40;
68.76381, 11696, 8904, 11736, 40, 11736, 40;
68.44952, 11696, 9336, 11736, 40, 11736, 40;
68.44952, 11696, 8584, 11736, 40, 11736, 40;
68.44952, 11696, 8584, 11736, 32, 11736, 40;
68.44952, 11696, 8424, 11736, 40, 11736, 40;
68.44952, 11696, 9272, 11736, 40, 11736, 40;
68.44952, 11696, 9272, 11736, 40, 11736, 40;
68.44952, 11696, 8376, 11736, 40, 11736, 40;
68.44952, 11696, 8376, 11736, 40, 11728, 40;
68.44952, 11696, 9240, 11736, 40, 11728, 40;
68.44952, 11696, 8656, 11736, 40, 11736, 40;
68.44952, 11696, 8656, 11736, 40, 11736, 40;
68.44952, 11696, 9072, 11736, 40, 11736, 40;
68.44952, 11696, 9072, 11736, 40, 11728, 40;
68.44952, 11696, 8712, 11736, 40, 11736, 40;
68.44952, 11696, 9016, 11736, 40, 11736, 40;
68.44952, 11696, 9016, 11736, 40, 11736, 40;
67.92571, 11696, 9056, 11736, 32, 11736, 40;
67.92571, 11696, 9144, 11736, 32, 11736, 40;
67.92571, 11696, 9144, 11736, 32, 11736, 40;
67.92571, 11704, 9008, 11736, 40, 11736, 40;
67.92571, 11704, 9008, 11736, 40, 11736, 40;
67.92571, 11704, 9040, 11736, 32, 11736, 40;
67.92571, 11696, 9336, 11736, 32, 11736, 40;
67.92571, 11696, 9336, 11736, 32, 11736, 40;
67.92571, 11696, 8856, 11736, 40, 11736, 40;
67.92571, 11696, 8856, 11736, 40, 11736, 40;
67.92571, 11696, 8960, 11736, 40, 11736, 40;
67.92571, 11704, 8368, 11736, 40, 11736, 40;
67.92571, 11704, 8368, 11736, 40, 11736, 40;
67.92571, 11696, 8856, 11736, 40, 11736, 40;
67.92571, 11696, 8496, 11736, 40, 11736, 40;
67.92571, 11696, 8496, 11736, 40, 11736, 40;
66.87810, 11696, 9120, 11736, 32, 11736, 40;
66.87810, 11696, 9120, 11736, 32, 11736, 40;
66.87810, 11712, 7392, 11736, 40, 11736, 40;
66.87810, 11704, 8776, 11736, 40, 11736, 40;
66.87810, 11704, 8776, 11736, 40, 11736, 40;
66.87810, 11704, 8432, 11736, 40, 11736, 40;
66.87810, 11704, 8464, 11736, 40, 11736, 40;
66.87810, 11696, 8464, 11736, 32, 11736, 40;
66.87810, 11704, 8880, 11736, 40, 11736, 40;
66.87810, 11704, 8880, 11736, 40, 11736, 40;
66.87810, 11704, 7864, 11736, 40, 11736, 40;
66.87810, 11704, 8760, 11736, 40, 11736, 40;
66.87810, 11696, 8760, 11736, 40, 11736, 40;
66.87810, 11696, 8688, 11736, 40, 11736, 40;
66.87810, 11696, 8688, 11736, 40, 11736, 32;
66.87810, 11696, 8240, 11736, 40, 11736, 40;
66.24953, 11704, 8568, 11736, 40, 11736, 40;
66.24953, 11704, 8568, 11736, 40, 11736, 40;
66.24953, 11704, 8176, 11736, 40, 11736, 40;
66.24953, 11704, 8192, 11736, 40, 11736, 40;
66.24953, 11704, 8192, 11736, 40, 11736, 40;
66.24953, 11704, 8312, 11736, 40, 11736, 40;
66.24953, 11704, 8312, 11736, 40, 11736, 40;
66.24953, 11704, 8296, 11736, 40, 11736, 40;
66.24953, 11704, 8008, 11736, 40, 11736, 40;
66.24953, 11704, 8008, 11736, 40, 11736, 40;
66.24953, 11704, 8488, 11736, 32, 11736, 40;
66.24953, 11704, 8488, 11736, 32, 11736, 40;
66.24953, 11704, 8400, 11736, 40, 11736, 40;
66.24953, 11704, 8216, 11736, 40, 11736, 40;
66.24953, 11704, 8216, 11736, 40, 11736, 40;
66.24953, 11704, 8616, 11736, 40, 11736, 40;
65.52159, 11704, 8376, 11736, 40, 11736, 40;
65.52159, 11704, 8376, 11736, 32, 11736, 40;
65.52159, 11704, 7696, 11736, 40, 11736, 40;
65.52159, 11704, 7696, 11736, 40, 11736, 40;
65.52159, 11704, 8104, 11736, 40, 11736, 40;
65.52159, 11704, 7872, 11736, 40, 11736, 40;
65.52159, 11704, 7872, 11736, 40, 11736, 40;
65.52159, 11704, 7880, 11736, 40, 11736, 40;
65.52159, 11704, 7880, 11736, 40, 11736, 40;
65.52159, 11704, 7960, 11736, 40, 11736, 40;
65.52159, 11704, 7880, 11736, 40, 11736, 40;
65.52159, 11704, 7880, 11736, 40, 11736, 40;
65.52159, 11704, 8464, 11736, 40, 11736, 40;
65.52159, 11704, 8112, 11736, 40, 11736, 40;
65.52159, 11704, 8112, 11736, 40, 11736, 40;
65.52159, 11704, 8120, 11736, 40, 11736, 40;
64.05980, 11704, 8120, 11736, 40, 11736, 40;
64.05980, 11704, 8104, 11736, 32, 11736, 40;
64.05980, 11712, 6784, 11736, 32, 11736, 40;
64.05980, 11712, 6784, 11736, 32, 11736, 40;
64.05980, 11712, 7136, 11736, 40, 11736, 40;
64.05980, 11712, 7248, 11736, 40, 11736, 40;
64.05980, 11712, 7248, 11736, 40, 11736, 40;
64.05980, 11712, 7128, 11736, 32, 11736, 40;
64.05980, 11712, 7128, 11736, 32, 11736, 40;
64.05980, 11712, 7464, 11736, 40, 11736, 40;
64.05980, 11712, 7512, 11736, 40, 11736, 40;
64.05980, 11712, 7512, 11736, 40, 11736, 40;
64.05980, 11712, 7152, 11736, 40, 11736, 40;
64.05980, 11712, 7152, 11736, 40, 11736, 40;
64.05980, 11712, 7392, 11736, 40, 11736, 40;
64.05980, 11712, 7408, 11736, 40, 11736, 40;
63.32890, 11712, 7408, 11736, 40, 11736, 40;
63.32890, 11712, 7200, 11736, 40, 11736, 40;
63.32890, 11712, 7136, 11736, 40, 11736, 40;
63.32890, 11712, 7136, 11736, 40, 11736, 40;
63.32890, 11712, 6936, 11736, 32, 11736, 40;
63.32890, 11712, 6936, 11736, 32, 11736, 40;
63.32890, 11712, 7184, 11744, 40, 11736, 40;
63.32890, 11712, 7392, 11744, 40, 11736, 40;
63.32890, 11712, 7392, 11736, 40, 11736, 40;
63.32890, 11712, 6792, 11736, 32, 11736, 40;
63.32890, 11712, 6792, 11736, 32, 11736, 40;
63.32890, 11712, 7248, 11736, 40, 11736, 40;
63.32890, 11712, 7248, 11736, 40, 11736, 40;
63.32890, 11712, 7248, 11736, 32, 11736, 40;
63.32890, 11712, 7184, 11736, 40, 11736, 40;
63.32890, 11712, 7280, 11736, 40, 11736, 40;
62.59801, 11712, 7280, 11736, 40, 11736, 40;
62.59801, 11712, 6808, 11736, 40, 11736, 40;
62.59801, 11712, 6808, 11736, 40, 11736, 40;
62.59801, 11712, 6704, 11744, 40, 11736, 40;
62.59801, 11712, 6992, 11744, 40, 11736, 40;
62.59801, 11712, 6992, 11744, 40, 11736, 40;
62.59801, 11712, 6880, 11736, 40, 11736, 40;
62.59801, 11712, 6880, 11736, 40, 11736, 40;
62.59801, 11712, 6728, 11744, 32, 11736, 32;
62.59801, 11712, 7264, 11744, 32, 11736, 32;
62.59801, 11712, 7264, 11736, 40, 11736, 40;
62.59801, 11712, 7048, 11736, 32, 11736, 40;
62.59801, 11712, 6992, 11736, 32, 11736, 40;
62.59801, 11712, 6992, 11736, 40, 11736, 40;
62.59801, 11712, 7304, 11736, 40, 11736, 40;
62.59801, 11712, 7304, 11736, 40, 11736, 40;
61.13622, 11712, 6800, 11744, 40, 11736, 40;
61.13622, 11720, 6336, 11744, 40, 11736, 40;
61.13622, 11720, 6336, 11744, 40, 11736, 40;
61.13622, 11720, 6072, 11744, 40, 11736, 40;
61.13622, 11720, 6144, 11744, 40, 11744, 40;
61.13622, 11720, 6144, 11744, 32, 11744, 40;
61.13622, 11720, 6264, 11744, 40, 11744, 40;
61.13622, 11720, 6264, 11744, 40, 11744, 40;
61.13622, 11720, 6184, 11744, 40, 11744, 40;
61.13622, 11720, 6392, 11744, 40, 11744, 40;
61.13622, 11720, 6392, 11744, 40, 11744, 40;
61.13622, 11720, 6328, 11744, 40, 11744, 40;
61.13622, 11720, 6328, 11744, 40, 11744, 40;
61.13622, 11720, 6096, 11744, 32, 11736, 40;
61.13622, 11720, 6544, 11744, 32, 11736, 40;
61.13622, 11720, 6544, 11744, 40, 11736, 40;
52.00000, 11720, 6408, 11744, 32, 11736, 40;
52.00000, 11720, 1040, 11744, 32, 11752, 40;
52.00000, 11752, 1040, 11752, 40, 11752, 40;
52.00000, 11760, 1032, 11752, 40, 11752, 40;
52.00000, 11760, 1032, 11752, 40, 11752, 40;
52.00000, 11760, 1032, 11752, 40, 11752, 40;
52.00000, 11760, 1024, 11752, 40, 11752, 40;
52.00000, 11760, 1024, 11752, 40, 11752, 40;
52.00000, 11760, 1024, 11760, 40, 11752, 40;
52.00000, 11760, 1024, 11760, 40, 11752, 40;
52.00000, 11760, 1024, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1016, 11752, 40, 11752, 40;
52.00000, 11760, 1008, 11752, 40, 11752, 40;
52.00000, 11760, 1008, 11752, 40, 11752, 40;
52.00000, 11760, 1008, 11760, 32, 11752, 40;
52.00000, 11760, 1000, 11760, 40, 11752, 40;
52.00000, 11760, 1000, 11760, 40, 11752, 40;
52.00000, 11760, 1000, 11760, 40, 11752, 40;
52.00000, 11760, 1000, 11760, 40, 11752, 40;
52.00000, 11760, 1000, 11752, 40, 11752, 40;
52.00000, 11760, 1000, 11752, 40, 11752, 40;
52.00000, 11760, 1000, 11752, 40, 11752, 40;
52.00000, 11760, 1000, 11752, 32, 11752, 40;
52.00000, 11760, 1000, 11752, 40, 11752, 40;
52.00000, 11760, 992, 11752, 40, 11752, 40;
52.00000, 11760, 992, 11752, 32, 11760, 40;
52.00000, 11760, 1000, 11752, 40, 11760, 40;
52.00000, 11760, 1000, 11752, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11752, 40, 11760, 40;
52.00000, 11760, 1000, 11752, 40, 11760, 40;
52.00000, 11760, 1000, 11760, 40, 11752, 40;
52.00000, 11760, 1000, 11752, 40, 11752, 40;
52.00000, 11760, 992, 11752, 40, 11752, 40;
52.00000, 11760, 992, 11752, 40, 11760, 40;
52.00000, 11760, 992, 11752, 40, 11760, 40;
52.00000, 11760, 992, 11752, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 992, 11760, 32, 11752, 40;
52.00000, 11760, 992, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11760, 40;
52.00000, 11760, 984, 11752, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11752, 40, 11760, 40;
52.00000, 11760, 984, 11752, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11752, 40, 11760, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 32;
52.00000, 11760, 984, 11760, 40, 11760, 32;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 40, 11752, 40;
52.00000, 11760, 984, 11752, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11752, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11752, 40, 11760, 40;
52.00000, 11760, 992, 11752, 40, 11760, 40;
52.00000, 11760, 992, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 992, 11760, 32, 11760, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 992, 11760, 32, 11752, 40;
52.00000, 11760, 992, 11760, 32, 11752, 40;
52.00000, 11760, 992, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 984, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11752, 32, 11760, 40;
52.00000, 11760, 976, 11752, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11752, 40, 11752, 40;
52.00000, 11760, 976, 11752, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 32;
52.00000, 11760, 976, 11760, 40, 11760, 32;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11752, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11752, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 32;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 32;
52.00000, 11760, 976, 11760, 32, 11760, 32;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 72;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 32;
52.00000, 11760, 976, 11760, 40, 11760, 32;
52.00000, 11760, 976, 11760, 40, 11760, 32;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 48;
52.00000, 11760, 976, 11760, 40, 11760, 48;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 32, 11760, 40;
52.00000, 11760, 984, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
52.00000, 11760, 976, 11760, 40, 11760, 40;
];
|
afc5b06673a2e38d7847f2ce2941904075541bd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH5/EX5.6/example6.sce | 3d24ff7a573d1bb572ceee1bbf91d50e30245d1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,471 | sce | example6.sce | clc
clear
//input data
R=0.5//Degree of reaction
P1=14//Initial pressure in bar
T1=588//Initial temperature in K
P2=0.14//Final pressure in bar
Ns=0.75//Stage efficiency
RF=1.04//Reheat factor
N=20//No. of stages
W=11770//Total power output in kW
a1=20//Exit blade angle in degree
hD=1/12//Ratio of blade height to blade mean diameter
//calculations
hs1=3080//Isentropic enthalpy at initial condition from mollier chart in kJ/kg
hs2=2270//Isentropic enthalpy at final condition from mollier chart in kJ/kg
dhs=hs1-hs2//Isentropic enthalpy change in kJ/kg
Nt=Ns*RF//Overall efficiency
dh=Nt*dhs//Actual enthalpy drop in kJ/kg
hs=dh/N//Enthalpy drop per stage in kJ/kg
m=W/dh//Mass flow rate in kg/s
C11=1.43*1//Velocity of steam at exit from nozzle in m/s in terms of U for 0.5 degree of reaction
Wm=1*((2*C11*sind(90-a1))-1)//Work done per mass of steam in terms of U^2 in kJ/kg
U=((hs*10^3)/Wm)^(1/2)//Mean blade velocity in m/s as work done equals enthalpy drop per stage
C1=1.43*U//Velocity of steam at exit from nozzle in m/s
Ca=C1*cosd(90-a1)//Flow velocity in m/s
v=1.618//Specific volume of steam from steam table at 1.05 bar with dry saturated steam in m^3/kg
D=((m*v)/(hD*3.14*Ca))^(1/2)//Blade mean diameter in m
N=(U*60)/(3.14*D)//Rotor speed in rpm
//output
printf('(a)Mass flow rate of steam is %3.2f kg/s\n(b)Mean blade velocity is %3.1f m/s \n(c)Blade mean diameter is %3.3f m \n(d)Rotor speed is %3i rpm',m,U,D,N)
|
2b22f72a6024e184e2874836565324352cbd6891 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3014/CH1/EX1.33/Ex1_33.sce | 6f3fb21b876a60f07491f0501fd308a53b063af4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 730 | sce | Ex1_33.sce |
clc
//Given that
lambda = 2e-12 // de Broglie wavelength of an electron in m
c = 3e8 // Speed of light in m/s
m = 9.1e-31 // Mass of electron in Kg
h = 6.63e-34 // Plank constant
printf("Example 1.33")
E = h*c/(lambda*1.6e-19) // Energy due to momentum
E_rest = m*c^2/(1.6e-19) // Calculation of rest mass energy
E_total = sqrt(E^2+E_rest^2) // Total energy in eV
KE = E_total - E_rest // Kinetic energy
v_g = c*sqrt(1-(E_rest/E_total)^2) // Group velocity
v_p = c^2/v_g // Phase velocity
printf("\n Kinetic energy of electron is %f KeV.",KE/1000)
printf("\n Group velocity of de Broglie waves is %fc m/s and\n phase velocity is %fc m/s.\n\n\n",v_g/c,v_p/c)
// Answer in book is v_g = 0.6035c & v_p = 1.657c
|
6e48a9ee25133a1d9cf720bf4dbec5f3ee9a39a1 | 013fbb3c74956eb0dd76e916566c11e5823feef4 | /projects/02/Nx.tst | cc2e3b33eb402f02a4ee5217d5e8e4b3e5c5f44f | [] | no_license | btesf/nand_to_tetris | f0831cbaa41bacedacdef8975d1497f224c0ac55 | 5f418a3e191b89c7f32e35f3ae6180c3b506ce73 | refs/heads/master | 2023-05-28T00:08:37.728944 | 2021-06-19T17:09:22 | 2021-06-19T17:09:22 | 356,931,420 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | tst | Nx.tst | load Nx.hdl,
output-file Nx.out,
compare-to Nx.cmp,
output-list in%B3.1.3 nx%B3.1.3 out%B3.1.3;
set in 0,
set nx 0,
eval,
output;
set in 0,
set nx 1,
eval,
output;
set in 1,
set nx 0,
eval,
output;
set in 1,
set nx 1,
eval,
output;
|
bc46701fd2e3dd25c89707c1acbc5d7117d49ebe | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /cscross.sce | 8ddb0ec9af3988dc97c7858fcffaf0392fbd88f8 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 46,430 | sce | cscross.sce | Name=cscross
PlayerCharacters=Counter-Striker
BotCharacters=cspeekers.rot;cs crouch.bot;cs jiggle.bot;cs stop.bot;cs swing.bot;cs peek.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Counter-Striker
AddedBots=cs swing.bot;cs swing.bot
PlayerMaxLives=0
BotMaxLives=0;0
PlayerTeam=1
BotTeams=2;2
MapName=CROSS.map
MapScale=3.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=1.0
ScoreToWin=1000.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=cs
WeaponHeroTag=
DifficultyTag=3
AuthorsTag=gli
BlockHitMarkers=true
BlockHitSounds=true
BlockMissSounds=true
BlockFCT=true
Description=two walls close
GameVersion=1.0.6.2
ScorePerDistance=0.0
[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
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=cs jiggle
DodgeProfileNames=cs jiggle
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=false
CharacterProfile=Counter-Striker
SeeThroughWalls=true
[Bot Profile]
Name=cs swing
DodgeProfileNames=cs swing
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=false
CharacterProfile=Counter-Striker
SeeThroughWalls=true
[Bot Profile]
Name=cs crouch
DodgeProfileNames=cs crouch
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=false
CharacterProfile=Counter-Striker
SeeThroughWalls=true
[Bot Profile]
Name=cs stop
DodgeProfileNames=cs stop
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=false
CharacterProfile=Counter-Striker
SeeThroughWalls=true
[Bot Profile]
Name=cs peek
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=false
CharacterProfile=Counter-Striker
SeeThroughWalls=true
[Bot Rotation Profile]
Name=cspeekers
ProfileNames=cs jiggle;cs swing;cs crouch;cs stop;cs peek
ProfileWeights=1.0;1.0;1.0;1.0;1.0
Randomized=true
[Character Profile]
Name=Counter-Striker
MaxHealth=100.0
WeaponProfileNames=AK-47;M4A1-S;M4A4;USP-S;pistol slower;pistol;;
MinRespawnDelay=0.0001
MaxRespawnDelay=1.0
StepUpHeight=75.0
CrouchHeightModifier=0.66
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1050.0
MaxCrouchSpeed=350.0
Acceleration=6000.0
AirAcceleration=16000.0
Friction=7.5
BrakingFrictionFactor=0.5
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=255.0
MainBBRadius=35.0
MainBBHasHead=true
MainBBHeadRadius=25.0
MainBBHeadOffset=-5.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=512.0
BlockSpawnFOV=25.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
[Dodge Profile]
Name=cs jiggle
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.075
MaxLRTimeChange=0.25
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.75
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=2.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.4
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.025
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.125
[Dodge Profile]
Name=cs swing
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=3.0
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.05
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.2
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.4
StrafeSwapMaxPause=0.7
BlockedMovementPercent=0.6
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.125
[Dodge Profile]
Name=cs crouch
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=2.0
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.1
CrouchInAirFrequency=0.6
CrouchOnGroundFrequency=0.6
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.2
MaxCrouchTime=0.8
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
[Dodge Profile]
Name=cs stop
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=1.2
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.25
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.25
StrafeSwapMaxPause=1.1
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.4
[Dodge Profile]
Name=cs peek
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.01
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.8
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.1
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.4
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.2
MaxCrouchTime=0.4
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.5
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.125
[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=30
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=4000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.02
WallParticleEffect=Gunshot
HitParticleEffect=Blood
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=150.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,27.0,-9.0,2.0
SpreadSCA=2.0,27.0,-9.0,2.0
SpreadMSA=2.0,27.0,-9.0,2.0
SpreadMCA=2.0,27.0,-9.0,2.0
SpreadSSH=4.1,40.0,0.1,5.0
SpreadSCH=2.05,40.0,0.0,5.0
SpreadMSH=4.1,400.0,10.0,20.0
SpreadMCH=2.05,40.0,0.0,5.0
MaxRecoilUp=0.4
MinRecoilUp=0.4
MinRecoilHoriz=-0.4
MaxRecoilHoriz=0.4
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.099
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.1
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.08
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.099998
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=3.0
MagazineMax=20
AmmoPerShot=1
ReloadTimeFromEmpty=1.37
ReloadTimeFromPartial=1.37
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=7000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
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=200.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=20
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.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=1.5,27.0,-9.0,0.5
SpreadSCA=1.5,27.0,-9.0,0.5
SpreadMSA=1.5,27.0,-9.0,0.5
SpreadMCA=1.5,27.0,-9.0,0.5
SpreadSSH=4.02,40.0,0.1,5.0
SpreadSCH=2.01,40.0,0.0,5.0
SpreadMSH=4.02,400.0,10.0,20.0
SpreadMCH=2.01,40.0,0.0,5.0
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.099
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.1
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.09
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=M4A4
Type=Hitscan
ShotsPerClick=1
DamagePerShot=33.0
KnockbackFactor=0.2
TimeBetweenShots=0.09
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=2.7
ReloadTimeFromPartial=2.7
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.02
WallParticleEffect=Gunshot
HitParticleEffect=Blood
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=225.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.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,27.0,-9.0,0.75
SpreadSCA=4.0,27.0,-9.0,0.75
SpreadMSA=4.0,27.0,-9.0,0.75
SpreadMCA=4.0,27.0,-9.0,0.75
SpreadSSH=4.01,44.0,0.1,5.0
SpreadSCH=4.05,440.0,0.0,5.0
SpreadMSH=4.01,440.0,10.0,20.0
SpreadMCH=4.05,440.0,0.0,5.0
MaxRecoilUp=0.4
MinRecoilUp=0.4
MinRecoilHoriz=-0.4
MaxRecoilHoriz=0.4
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.089
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.1
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.08
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.4,-0.25
PSR1=0.4,-0.1
PSR2=0.9,0.5
PSR3=1.2,-0.5
PSR4=1.1,0.4
PSR5=1.3,0.4
PSR6=0.9,-1.0
PSR7=0.7,-0.75
PSR8=0.5,-1.1
PSR9=0.6,-0.3
PSR10=0.7,0.5
PSR11=-0.4,1.5
PSR12=0.1,1.7
PSR13=-0.3,1.3
PSR14=0.2,1.0
PSR15=0.2,-0.9
PSR16=-0.1,0.0
PSR17=0.3,0.5
PSR18=0.2,0.5
PSR19=-0.2,0.5
PSR20=-0.2,-0.75
PSR21=0.5,-2.0
PSR22=-0.2,-0.7
PSR23=0.2,-0.6
PSR24=-0.1,-0.75
PSR25=-0.1,-0.5
PSR26=0.3,0.3
PSR27=0.3,-0.4
PSR28=0.1,-0.2
PSR29=0.15,-0.2
PSR30=0.15,-0.2
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=USP-S
Type=Hitscan
ShotsPerClick=1
DamagePerShot=33.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=4.0
MagazineMax=12
AmmoPerShot=1
ReloadTimeFromEmpty=2.2
ReloadTimeFromPartial=2.2
DamageFalloffStartDistance=300.0
DamageFalloffStopDistance=1000.0
DamageAtMaxRange=33.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
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=200.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=12
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.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=5.0,25.0,0.2,7.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=5.0,25.0,0.2,7.0
SpreadMCA=5.0,25.0,0.2,7.0
SpreadSSH=10.2,58.799999,0.2,100.0
SpreadSCH=1.5,50.880001,0.0,0.0
SpreadMSH=1.5,500.880005,5.0,15.0
SpreadMCH=1.5,50.880001,0.0,0.0
MaxRecoilUp=0.4
MinRecoilUp=0.4
MinRecoilHoriz=-0.2
MaxRecoilHoriz=0.2
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.17
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.1
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.08
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
[Weapon Profile]
Name=pistol slower
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=4.0
TimeBetweenShots=0.05
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=4.0
MagazineMax=1
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Flare
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=4.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=100.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.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=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,30.0,30.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=pistol
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=0.0
TimeBetweenShots=0.09
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=4.0
MagazineMax=10
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=100.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=10
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.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=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,30.0,30.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.001
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-256.000000 0.000000 768.000000
768.000000 0.000000 768.000000
768.000000 0.000000 -256.000000
-256.000000 0.000000 -256.000000
-256.000000 -64.000000 768.000000
768.000000 -64.000000 768.000000
768.000000 -64.000000 -256.000000
-256.000000 -64.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 192.000000 -192.000000
768.000000 192.000000 -192.000000
768.000000 192.000000 -256.000000
-256.000000 192.000000 -256.000000
-256.000000 0.000000 -192.000000
768.000000 0.000000 -192.000000
768.000000 0.000000 -256.000000
-256.000000 0.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
704.000000 192.000000 832.000000
768.000000 192.000000 832.000000
768.000000 192.000000 -192.000000
704.000000 192.000000 -192.000000
704.000000 0.000000 832.000000
768.000000 0.000000 832.000000
768.000000 0.000000 -192.000000
704.000000 0.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 192.000000 832.000000
-192.000000 192.000000 832.000000
-192.000000 192.000000 -192.000000
-256.000000 192.000000 -192.000000
-256.000000 0.000000 832.000000
-192.000000 0.000000 832.000000
-192.000000 0.000000 -192.000000
-256.000000 0.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 192.000000 576.000000
768.000000 192.000000 576.000000
768.000000 192.000000 512.000000
-192.000000 192.000000 512.000000
-192.000000 0.000000 576.000000
768.000000 0.000000 576.000000
768.000000 0.000000 512.000000
-192.000000 0.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-192.000000 32.000000 576.000000
704.000000 32.000000 576.000000
704.000000 32.000000 512.000000
-192.000000 32.000000 512.000000
-192.000000 0.000000 576.000000
704.000000 0.000000 576.000000
704.000000 0.000000 512.000000
-192.000000 0.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 192.000000 832.000000
192.000000 192.000000 832.000000
192.000000 192.000000 768.000000
-192.000000 192.000000 768.000000
-192.000000 0.000000 832.000000
192.000000 0.000000 832.000000
192.000000 0.000000 768.000000
-192.000000 0.000000 768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
320.000000 192.000000 832.000000
704.000000 192.000000 832.000000
704.000000 192.000000 768.000000
320.000000 192.000000 768.000000
320.000000 0.000000 832.000000
704.000000 0.000000 832.000000
704.000000 0.000000 768.000000
320.000000 0.000000 768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
192.000000 192.000000 832.000000
320.000000 192.000000 832.000000
320.000000 192.000000 768.000000
192.000000 192.000000 768.000000
192.000000 -64.000000 832.000000
320.000000 -64.000000 832.000000
320.000000 -64.000000 768.000000
192.000000 -64.000000 768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-192.000000 192.000000 1088.000000
-128.000000 192.000000 1088.000000
-128.000000 192.000000 832.000000
-192.000000 192.000000 832.000000
-192.000000 0.000000 1088.000000
-128.000000 0.000000 1088.000000
-128.000000 0.000000 832.000000
-192.000000 0.000000 832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
640.000000 192.000000 1088.000000
704.000000 192.000000 1088.000000
704.000000 192.000000 832.000000
640.000000 192.000000 832.000000
640.000000 0.000000 1088.000000
704.000000 0.000000 1088.000000
704.000000 0.000000 832.000000
640.000000 0.000000 832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 192.000000 1152.000000
704.000000 192.000000 1152.000000
704.000000 192.000000 1088.000000
-192.000000 192.000000 1088.000000
-192.000000 0.000000 1152.000000
704.000000 0.000000 1152.000000
704.000000 0.000000 1088.000000
-192.000000 0.000000 1088.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 0.000000 1280.000000
768.000000 0.000000 1280.000000
768.000000 0.000000 768.000000
-256.000000 0.000000 768.000000
-256.000000 -64.000000 1280.000000
768.000000 -64.000000 1280.000000
768.000000 -64.000000 768.000000
-256.000000 -64.000000 768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position 512.000000 0.000000 896.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 288.000000 0.000000 -32.000000
Vector3 angles 360.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 576.000000 0.000000 960.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 448.000000 0.000000 896.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 512.000000 0.000000 960.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 576.000000 0.000000 1024.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 576.000000 0.000000 896.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 896.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 896.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 64.000000 0.000000 896.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 960.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 960.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 1024.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
|
21b2075c7e529cc663b78ffce955b0bd635b6636 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH9/EX9.15/Example915.sce | a8c4ee0ca0cbc52761dd3cb1dd65c76d73713b74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,244 | sce | Example915.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 9 Example # 9.15 ")
//Temperature in degree K
T = 800;
//Diameter of sphere in m
D = 0.4;
//Partial pressure of nitrogen in atm
PN2 = 1;
//Partial pressure of H2O in atm
PH2O = 0.4;
//Partial pressure of CO2 in atm
PCO2 = 0.6;
//The mean beam length for a spherical mass of gas is obtained from Table 9.7
//Beam length in m
L = (2/3)*D;
//The emissivities are given in Figs. 9.46 and 9.47
//Emissivity of H2O
epsilonH2O = 0.15;
//Emissivity of CO2
epsilonCO2 = 0.125;
//N2 does not radiate appreciably at 800 K, but since the total gas pressure
//is 2 atm, we must correct the 1-atm values for epsilon.
//From Figs. 9.48 and 9.49 the pressure correction factors are
//Pressure correction factor for H2O
CH2O = 1.62;
//Pressure correction factor for CO2
CCO2 = 1.12;
//From fig. 9.50
//Chnage in emissivity
deltaEpsilon = 0.014;
//Finally, the emissivity of the mixture can be obtained from Eq. (9.114):
disp("Emissivity of the mixture is")
//Emissivity of the mixture
epsilonMix = CH2O*epsilonH2O+CCO2*epsilonCO2-deltaEpsilon
|
f05620b0db701a46c2a77fb9a39b3653c252ada6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1784/CH40/EX40.1/example_1.sce | b3ce203ca88ab803f382769efc8cb50b132ba6ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | example_1.sce | //chapter 40
//Example 1
//clc()
u=(10)*(1.0)*3600// in Joules
c=3*10^8// in m/sec
t=3600//in sec
disp("solution (a)")
disp(u,"energy reflected from mirror in joule=")
p=(2*u)/c
disp(p,"momentum after i hr illumination in kg-m/sec=")
disp("solution (b)")
f=p/t
disp(f,"force in newton=")
|
5793d74970d0ebfe25c0f38ae50ec2f924ff44be | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH9/EX9.2/ch9_2.sce | fd1d06e6dbc293d9aa1d9e14583e093c52e757ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 513 | sce | ch9_2.sce | clear;
clc;
V_s=230;
V_m=sqrt(2)*V_s;
a=45;
V_or=(V_s)*sqrt(1/%pi*((%pi-a*%pi/180)+sind(2*a)/2)); printf("rms value of o/p voltage=%.3f V",V_or);
R=20;
I_or=V_or/R;
P_o=I_or^2*R; printf("\nload power=%.2f W",P_o);
I_s=I_or;
VA=V_s*I_s;
pf=P_o/VA; printf("\ni/p pf=%.4f",pf);
I_TA=sqrt(2)*V_s/(2*%pi*R)*(cosd(a)+1); printf("\navg thyristor current=%.3f A",I_TA);
I_Tr=sqrt(2)*V_s/(2*R)*sqrt(1/%pi*((%pi-a*%pi/180)+sind(2*a)/2)); printf("\nrms value of thyristor current=%.4f A",I_Tr); |
1b38a6bcb3f2d7eaecded50f09823f6ebca205de | 1988df91caa448a35bbf274a6d2698fe434571b1 | /tst/proof/axiom.tst | c702be19d7100cfedbb457a7e552cb74599a6770 | [] | no_license | namin/GETFOL | bd60e9a2d9f0905c50ff5c0cff4b6bf57a2049e2 | bf42caf61799578eb82e9f17b3342bc2ee638a22 | refs/heads/master | 2021-10-25T08:08:20.142137 | 2021-10-22T16:16:40 | 2021-10-22T16:16:40 | 204,234,318 | 4 | 1 | null | 2019-08-25T02:05:54 | 2019-08-25T02:05:54 | null | UTF-8 | Scilab | false | false | 3,304 | tst | axiom.tst | COMMENT | ************************************************************* |
COMMENT | * AUTHOR: Luciano Serafini (serafini) |
COMMENT | * |
COMMENT | * SUBJECT: AXIOM SCHEMAS TEST |
COMMENT | * |
COMMENT | * GETFOL VERSION: june 1991 |
COMMENT | * |
COMMENT | ************************************************************* |
declare indvar x y z x1 x2 x3 y1 y2 y3 z1 z2 z3;
declare funconst f 1;
declare funconst g 2;
declare funconst h 3;
declare predconst p q 1;
declare predconst r s 2;
declare funpar PHI PHI1 PHI2 1;
declare funpar PSI PSI1 PSI2 2;
declare funpar CHI CHI1 CHI2 3;
declare predpar PI 1;
declare predpar RHO 2;
declare Predpar SIGMA 3;
axiom lin11: PHI1(PHI2(x)) = PHI2(PHI1(x));
axiom lin12: PHI(PSI(x y)) = PSI(PHI(x) PHI(y));
axiom lin13: PHI(CHI(x y z)) = CHI(PHI(x) PHI(y) PHI(z));
axiom lin21: PSI(PHI(x) PHI(y)) = PHI(PSI(x y));
axiom lin22: PSI1(PSI2(x1 y1) PSI2(x2 y2)) = PSI2(PSI1(x1 x2) PSI1(y1 y2));
axiom lin23: PSI(CHI(x1 y1 z1) CHI(x2 y2 z2)) =
CHI(PSI(x1 x2) PSI(y1 y2) PSI(z1 z2));
axiom lin31: CHI(PHI(x) PHI(y) PHI(x)) = PHI(CHI(x y z));
axiom lin32: CHI(PSI(x1 y1) PSI(x2 y2) PSI(x3 y3)) =
PSI(CHI(x1 y1 z1) CHI(x2 y2 z2));
axiom lin33: CHI1(CHI2(x1 y1 z1) CHI2(x2 y2 z2) CHI2(x3 y3 z3)) =
CHI2(CHI1(x1 x2 x3) CHI1(y1 y2 y3) CHI1(z1 z2 z3));
axiom unary: PI(x) imp PI(f(x));
axiom binary: PI(x) and PI(y) imp PI(g(x y));
axiom ternary: PI(x) and PI(y) and PI(z) imp PI(h(x y z));
COMMENT | |
COMMENT | we prove: forall x. f(x) = x |
COMMENT | |
eval x = x;
impe 1 unary PI:lambda y. x=y;
alli 2 x;
COMMENT | |
COMMENT | we prove: forall x. g(x x) = x |
COMMENT | |
andi 1 1;
alli binary PI:lambda y. x=y y:y1;
alle ^1 x;
impe ^1 ^3;
alli ^1 x;
COMMENT | |
COMMENT | we prove: forall x. h(x x x) = x |
COMMENT | |
andi 1 1;
andi ^1 1;
alli ternary PI:lambda y. x=y y:y1 z:z1;
alle ^1 x x;
impe ^1 ^3;
alli ^1 x;
COMMENT | we prove: |
COMMENT | |
COMMENT | f(g(h(x1 y1 z1) h(x2 y2 z2))) = |
COMMENT | h(g(f(x1) f(x2)) g(f(y1) f(y2)) g(f(z1) f(z2))) |
COMMENT | |
eval f(g(h(x1 y1 z1) h(x2 y2 z2))) = f(g(h(x1 y1 z1) h(x2 y2 z2)));
alli lin12 PHI: lambda x. f(x) PSI: lambda x y. g(x y) x y;
alle ^1 h(x1 y1 z1) h(x2 y2 z2);
subst ^3 ^1 occ 2;
alli lin13 PHI: lambda x. f(x) CHI: lambda x y z. h(x y z) x y z;
alle ^1 x1 y1 z1;
subst ^3 ^1;
alle ^3 x2 y2 z2;
subst ^2 ^1;
alli lin23 PSI: lambda x y. g(x y) CHI: lambda x y z. h(x y z) x1 x2 y1 y2 z1 z2;
alle ^1 f(x1) f(x2) f(y1) f(y2) f(z1) f(z2);
subst ^3 ^1;
|
74d5942e60f558353c516491e8a4e4eb2a9c2683 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3872/CH12/EX12.9/Ex12_9.sce | 6cd8eba6e89dc6ed96ee7e21070ddb28892bbfeb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,199 | sce | Ex12_9.sce | //Book - Power System: Analysis & Design 5th Edition
//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
//Chapter - 12 ; Example 12.9
//Scilab Version - 6.0.0 ; OS - Windows
clc;
clear;
B11=1.5e-4; B12=2e-5; B22=3e-5; // Loss coefficients
lamda=16; //Area incremental cost in $/MWhr
e1=[20.8e-3 32e-5 6]; //Coefficients of incremental operating cost equation1
e2=[32e-5 18.96e-3 8]; //Coefficients of incremental operating cost equation2
P1=(e2(2)*e1(3)-e1(2)*e2(3))/(e2(2)*e1(1)-e1(2)*e2(1)); //Solution of P1 from incremental cost equations
P2=(e2(1)*e1(3)-e1(1)*e2(3))/(e1(2)*e2(1)-e2(2)*e1(1)); //Solution of P2 from incremental cost equations
Pl=B11*P1^2+B12*P1*P2+B22*P2^2; //Total losses
Pt=P1+P2-Pl; //Total demand
CT=10*P1+8e-3*P1^2+8*P2+9e-3*P2^2; // Cost equation taken from example 12.6
printf('The output of each unit are given by P1=%d MW and P2=%d MW\n',P1,P2)
printf('The total transmission loss is %.2f MW\n',Pl)
printf('The total demand is %.2f MW\n',Pt)
printf('The total operation cost is %.2f $/hr',CT)
|
2a504317488cb0d12f27ce6d844cb6c4604512b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH3/EX3.27.a/Example3_27_a.sce | ad07aa5ec896a439a80cd14509ff626ca2c7b414 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | Example3_27_a.sce | //Example 3.27 (a)
//Program to Compute the Convolution of the following Sequences
//x1[n]=[1,1,1]
//x2[n]=[2,-1,2]
clear;
clc ;
close ;
x1=[1,1,1];
x2=[2,-1,2];
//Convolution Computation
X1=fft (x1,-1);
X2=fft (x2,-1);
Y=X1.*X2;
y=fft (Y,1);
//Display Sequence y[n] in command window
disp(y,"y[n]="); |
83855b55e67701ed4d924cca7ecb030789027155 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testpilefile.sce | ba85ce85fb4a39211f7c8cb373bdab533f08a373 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | testpilefile.sce | // stack representation
L=[] // empty stack
L=[1,L] // add 1 to the stack
L=[2,L] // add 2 to the stack
L=[3,L] // add 3 to the stack
x=L(1),L(1)=[] // "unstacking"
// queue representation
F=[] // empty queue
F=[F,1] // add 1 to the queue
F=[F,2] // add 2 to the queue
F=[F,3] // add 3 to the queue
x=F(1),F(1)=[] // remove from the queue
|
27d129b7d21c10bae878da82a1b215d4ab1e3b17 | e657bbadea88191ece0e48eb447173a4c5f816f6 | /tasks/cw3/integral(29_03_17).sci | 5636c9838b4d053ee6484fff9d426817a5276422 | [] | no_license | vainia/Learning-SCILAB | c37d6071907ea4fad811071a3164454a927602d8 | d77877b1316b8b3546cb32cb9e29e7ad70d25280 | refs/heads/master | 2020-03-10T09:51:08.444686 | 2018-04-12T23:13:06 | 2018-04-12T23:13:06 | 129,320,183 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 319 | sci | integral(29_03_17).sci | function calka=calkujPL(f,n)
x=0:1/n:1
calka=sum(f(x(1:n)))/n
endfunction
function calka=calkujPP(f,n)
x=0:1/n:1
calka=sum(f(x(2:n+1)))/n
endfunction
function calka=calkujT(f,n)
calka=(calkujPL(f1,n)+calkujPP(f1,n))/2
endfunction
function calka=calkujMC(f,n)
x=rand(1,n)
calka=sum(f(x(1:n)))/n
endfunction
|
d6204140fc4481e5202e5e89c1d6df66b4c15aad | 69147dbbf89bfbceb8875e0e1545e513ebfaf1be | /TopTracksPrimGenre_4.tst | c09ea81fd38376098d078e60e4bea67d27da1b85 | [] | no_license | Cbro/Oracle-scripts | 225e7121f3e8b6d77d9da786ddbad58502486989 | 97769548e7a2794d6cc75a1ac46821f58d347dec | refs/heads/master | 2020-12-24T14:36:20.643782 | 2011-05-07T18:55:51 | 2011-05-07T18:55:51 | 667,071 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,046 | tst | TopTracksPrimGenre_4.tst | PL/SQL Developer Test script 3.0
38
-- Created on 11/04/2008 by MKAUL
declare
-- Local variables here
i integer;
vTrackID track.id%type;
vRankNum INTEGER;
begin
for x in (
-- Test statements here
select x.track_id,
x.rank_num
from
(
select /*+ FIRST_ROWS */ v.track_id track_id,
row_number() over ( order by v.play_count desc ) rank_num
from track t,
service_track st,
v_track_count_forever v
where t.id = v.track_id
and st.service_id = v.service_id
and st.track_id = t.id
and st.service_id = :sid
and v.primary_genre_id = :prim_gen_id
and (st.release_date is null or st.release_date < sysdate)
and (st.expiry_date is null or st.expiry_date > sysdate)
) x
where x.rank_num <= :topCount
) loop
dbms_output.put_line('Track ID : '|| x.track_id );
dbms_output.put_line('Rank : '|| x.rank_num );
end loop;
end;
3
sid
1
50
3
prim_gen_id
1
50
3
topCount
1
20
3
0
|
504a7d9003b19e09f34a86f54daf4013c31cd495 | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/JnJk/jnjk.4.tst | 734cd566d4220bb13fb708009847cfd3c36a15d7 | [
"MIT"
] | permissive | SaeedNajafi/transliterator | 4d58b8604fa31f52ee2dce7845e002a18214fd5e | 523a087b777a5d6eec041165dabb43848f6222e6 | refs/heads/master | 2021-09-18T17:02:59.083727 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 48,366 | tst | jnjk.4.tst | a b o 安 保
a b o 阿 保
a b u r a i 油 井
a d u o 阿 多
a g e o 上 尾
a i m o t o 相 本
a i o i 相 生
a i z u b a n g e 会 津 坂 下
a j i m u 安 心 院
a j i o k a 味 岡
a k a h a 赤 羽
a k a h o s h i 赤 星
a k a i k e 赤 池
a k a i w a 赤 岩
a k a s o 赤 楚
a k a t s u 赤 津
a k i g a w a 秋 川
a k i m a 秋 間
a k i n a 明 菜
a k i r o 秋 郎
a k i t a n i 秋 谷
a m a h a 天 羽
a m i k u r a 網 倉
a n a m i z u 穴 水
a n z u 杏
a o s h i k a 青 鹿
a r a d a 荒 田
a r a g a n e 荒 金
a r a s a w a 荒 沢
a r i s a w a 有 沢
a r i y o s h i 有 吉
a s a b a 浅 場
a s a b a 浅 葉
a s a h i k a w a 旭 川
a t s u y o 修 代
a t s u y o 厚 代
a t s u y o 敦 代
a t s u y o 篤 代
a w a m u r a 粟 村
a y a 亜 也
a y a 亜 弥
a y a 亜 矢
a y a 亜 耶
a y a 史
a y a 彩
a y a 恵
a y a 文
a y a 斐
a y a 礼
a y a 絢
a y a 綾
a y u 亜 由
a y u k a w a 鮎 川
a z e 安 瀬
a z u s a 亜 津 佐
a z u s a 亜 津 沙
a z u s a 亜 津 紗
a z u s a 梓
b a n n o 万 野
b a n n o 伴 野
b a n n o 坂 野
b a n n o 板 野
b a n n o 阪 野
b a n t o 阪 東
b e n i k o 紅 子
b i b a i 美 唄
b u n g o 文 吾
b u n g o t a k a d a 豊 後 高 田
b u n t a r o 文 太 郎
b u s u j i m a 毒 島
b u s u j i m a 毒 嶋
c h a n g p i n g 昌 平
c h a n g p i n g 長 平
c h i e m i 千 恵 巳
c h i e m i 千 恵 美
c h i e m i 千 枝 美
c h i e m i 千 江 美
c h i e m i 千 絵 美
c h i e m i 智 恵 実
c h i e m i 智 恵 美
c h i e m i 智 枝 美
c h i e m i 智 栄 美
c h i e m i 智 江 美
c h i e m i 智 絵 美
c h i e o 智 栄 夫
c h i e o 智 栄 生
c h i e o 智 栄 男
c h i e o 智 栄 郎
c h i e o 智 栄 雄
c h i k a o k a 近 岡
c h i k u g o 筑 後
c h i k u s a 千 種
c h i n a m i 千 奈 美
c h i n a m i 千 波
c h i n a m i 智 奈 美
c h i n a m i 知 奈 美
c h i r y u 知 立
c h i s a k a 千 坂
c h i y a k o 千 夜 子
c h i y o 千 世
c h i y o 千 代
c h i y o 千 蓉
c h i y o 智 世
c h i y o 智 代
c h i y o 知 代
c h i y o d a 千 代 田
c h i z u y o 千 寿 代
c h i z u y o 千 津 世
c h i z u y o 千 鶴 代
c h i z u y o 知 津 代
c h o f u 調 布
c h o n o s u k e 長 之 助
c h o t a r o 長 太 郎
c h u a n g 創
c h u g o r i 中 郡
d a i 台
d a i 大
d a i r a k u 大 楽
d a i s a b u r o 大 三 郎
d a z a i f u 太 宰 府
d e m i z u 出 水
d e n ' i c h i 伝 一
d e n j i 伝 二
d e n j i 田 治
d e s h o u 徳 寿
d e y i 徳 一
d o h i 土 肥
d o i 土 井
d o i 土 居
d o i 土 肥
d o m o n 土 門
e b a r a 江 原
e b a r a 荏 原
e b u c h i 江 淵
e g a w a 江 川
e g u s a 江 草
e i k o 映 子
e i k o 暎 子
e i k o 栄 子
e i k o 榮 子
e i k o 永 子
e i k o 瑛 子
e i k o 英 子
e i k o 詠 子
e i k o 鋭 子
e i m i 詠 美
e i s h i 英 志
e j i m a 江 島
e m o r i 江 守
e m o r i 江 森
e m u r a 江 村
e n d o 遠 藤
e n k i c h i 円 吉
e s u m i 江 角
e t s u y a 悦 也
f u c h i d a 淵 田
f u c h i n o 淵 野
f u c h i u e 淵 上
f u j i m o t o 藤 元
f u j i m o t o 藤 本
f u j i m u r a 藤 村
f u j i n a k a 藤 中
f u j i n a k a 藤 仲
f u j i o 不 二 夫
f u j i o 不 二 生
f u j i o 不 二 男
f u j i o 不 二 郎
f u j i o 不 二 雄
f u j i o 二 士 夫
f u j i o 二 士 生
f u j i o 二 士 男
f u j i o 二 士 郎
f u j i o 二 士 雄
f u j i o 冨 士 夫
f u j i o 冨 士 生
f u j i o 冨 士 男
f u j i o 冨 士 郎
f u j i o 冨 士 雄
f u j i o 富 士 夫
f u j i o 富 士 生
f u j i o 富 士 男
f u j i o 富 士 郎
f u j i o 富 士 雄
f u j i o 藤 夫
f u j i o 藤 尾
f u j i o 藤 生
f u j i o 藤 男
f u j i o 藤 郎
f u j i o 藤 雄
f u j i s a t o 藤 里
f u j i s h i m a 藤 島
f u k a i s h i 深 石
f u k a m a c h i 深 町
f u k a y a m a 深 山
f u k i a g e 吹 上
f u k i k o 冨 紀 子
f u k i k o 冨 貴 子
f u k i k o 吹 子
f u k i k o 富 貴 子
f u k i k o 扶 紀 子
f u k i k o 芙 季 子
f u k i k o 芙 希 子
f u k i k o 芙 紀 子
f u k i k o 芙 貴 子
f u k u 福
f u k u m o r i 福 森
f u k u m u r a 福 村
f u k u s a k i 福 崎
f u k u s h i m a 福 島
f u k u z a w a 福 沢
f u m i n a r i 文 成
f u n a b a 船 場
f u n a k u b o 舟 久 保
f u n a m o t o 舟 本
f u n a m o t o 船 本
f u n a s a k a 船 坂
f u r u d o n o 古 殿
f u r u m i y a 古 宮
f u y a 布 谷
g a m o 蒲 生
g a n g 剛
g e n j i r o 源 次 郎
g e n k i c h i 源 吉
g i f u 岐 阜
g i n j i 銀 二
g i n j i 銀 司
g o k i t a 五 木 田
g o n n o 権 野
g u a n y i 貫 一
h a b u 土 生
h a b u 羽 生
h a g i o 萩 尾
h a k a t a 博 多
h a m a b e 浜 辺
h a m a g u c h i 浜 口
h a m a n i s h i 浜 西
h a m a s a k i 浜 崎
h a m a s u n a 浜 砂
h a m a y a 浜 谷
h a m o c h i 羽 茂
h a n a b a t a 花 畑
h a n a z a t o 花 里
h a n j i r o 伴 次 郎
h a n m a 半 間
h a n n a n 阪 南
h a n t a n i 半 谷
h a o r o n g 浩 栄
h a s a m a 挾 間
h a s e g a w a 長 谷 川
h a s h i 橋
h a s h i k u r a 橋 倉
h a s h i m o t o 橋 元
h a s h i m o t o 橋 本
h a s h i y a d a 橋 谷 田
h a t o k o 鳩 子
h a t o y a m a 鳩 山
h a t s u t a 初 田
h a y a s a k i 早 崎
h a y a s e 早 瀬
h a z a m a 狭 間
h a z a m a 硲
h a z a m a 間
h e i h a c h i 平 八
h e i z a b u r o 平 三 郎
h i b a r a 日 原
h i d a n o 肥 田 野
h i d e 日 出
h i d e 秀
h i d e 英
h i d e h i k o 秀 彦
h i d e h i k o 英 彦
h i d e j i 秀 二
h i d e j i 秀 司
h i d e j i 秀 次
h i d e j i 秀 治
h i d e j i 英 二
h i d e j i 英 司
h i d e j i 英 次
h i d e k i 秀 喜
h i d e k i 秀 樹
h i d e k i 秀 紀
h i d e k i 秀 規
h i d e k i 秀 貴
h i d e k i 秀 輝
h i d e k i 英 喜
h i d e k i 英 樹
h i d e k i 英 紀
h i d e k i 英 記
h i d e k i 英 貴
h i d e m i 日 出 実
h i d e m i 日 出 海
h i d e m i 日 出 美
h i d e m i 秀 実
h i d e m i 秀 巳
h i d e m i 秀 美
h i d e m i 英 実
h i d e m i 英 美
h i g a s a 日 笠
h i g a s h i h a r a 東 原
h i g a s h i o s a k a 東 大 阪
h i g e t a 日 下 田
h i g u m a 樋 熊
h i h a r a 日 原
h i j i k a t a 土 方
h i j i k a t a 行 方
h i k a r i 光
h i k a r i 晶
h i k i t a 引 田
h i k i t a 疋 田
h i k u m a 日 隈
h i n o h a r a 日 野 原
h i r a k a 平 賀
h i r a k a 平 鹿
h i r a o 平 尾
h i r a u c h i 平 内
h i r a y a 平 谷
h i r o i s h i 広 石
h i r o n a k a 広 中
h i r o n a k a 弘 中
h i r o t a k e 弘 赳
h i r u t a 蛭 田
h i s a e 久 恵
h i s a e 久 枝
h i s a e 久 栄
h i s a e 久 榮
h i s a e 久 江
h i s a e 久 絵
h i s a e 寿 恵
h i s a e 寿 枝
h i s a e 寿 江
h i s a e 比 佐 恵
h i s a e 比 佐 枝
h i s a e 比 佐 江
h i s a e 比 佐 絵
h i s a e 比 沙 恵
h i s a e 比 紗 恵
h i s a i 久 井
h i s a i 久 居
h i s a k a w a 久 川
h i s a t o m i 久 冨
h i s a t o m i 久 富
h i s h i k i 菱 木
h i s h i y a 菱 谷
h i s o k a 密
h i t a 日 田
h o d a c h i 保 立
h o i 保 井
h o i z u m i 保 泉
h o n ' y a b a k e i 本 耶 馬 溪
h o n g p i n g 宏 平
h o r i 堀
h o r i g u c h i 堀 口
h o s h i 星
h o s h i b a 干 場
h o s h i k a w a 干 川
h o s h i k a w a 星 川
h o s o k a w a 細 川
h o s o y a 細 矢
h o s o y a 細 谷
h o t a n i 保 谷
h u i z h i 恵 志
i b a r a 井 原
i b a t a 井 畑
i b a t a 井 端
i b u k i 伊 吹
i c h i g o r o 一 五 郎
i c h i g o r o 市 五 郎
i c h i o 一 夫
i c h i o 一 生
i c h i o 一 男
i c h i o 一 郎
i c h i o 一 雄
i c h i o 市 夫
i c h i o 市 生
i c h i o 市 男
i c h i o 市 郎
i c h i o 市 雄
i c h i y a m a 市 山
i d e 井 出
i d e 井 手
i e k a z u 家 和
i g a m i 伊 神
i h a r a 井 原
i h a r a 伊 原
i h a r a 猪 原
i i d a 飯 田
i i k u r a 飯 倉
i i m o r i 飯 森
i j i c h i 伊 地 知
i j u r o 伊 重 郎
i k e k a w a 池 川
i k e m a t s u 池 松
i k u j i m a 生 島
i k u j i m a 生 嶋
i k u s a w a 生 沢
i m a d a 今 田
i m a d e 今 出
i m a z u 今 津
i m o t o 井 元
i m o t o 井 本
i m u r a 井 村
i m u r a 伊 村
i m u r a 居 村
i n a d o m i 稲 富
i n a k i 稲 木
i n a r i 稲 荷
i n o d a 猪 田
i n o k o s h i 猪 越
i n o y a m a 猪 山
i r i m u r a 入 村
i s a k o 伊 佐 子
i s a k o 伊 沙 子
i s a k o 伊 紗 子
i s a k o 功 子
i s a k o 勲 子
i s e s a k i 伊 勢 崎
i s e y a 伊 勢 谷
i s e y a m a 伊 勢 山
i s h i b i k i 石 引
i s h i d o y a 石 戸 谷
i s h i n 維 新
i s h i n a b e 石 鍋
i s h i y a m a 石 山
i s h i z o n e 石 曽 根
i s o g a m i 磯 上
i s o g o 磯 子
i s o m u r a 磯 村
i s o m u r a 礒 村
i s s a 一 茶
i t a g a k i 板 垣
i t a k u r a 板 倉
i t a n i 井 谷
i t a n i 伊 谷
i t a s a k a 板 坂
i w a a s a 岩 浅
i w a i d a 岩 井 田
i w a s a k i 岩 崎
i w a s h i r o 岩 代
i w a t s u k i 岩 月
i w a t s u k i 岩 槻
i w a t s u k i 岩 附
i w a z o 岩 蔵
i z e k i 井 関
i z u h a r a 厳 原
i z u m i y a 泉 谷
j i a n y i 健 一
j i a n y i 建 一
j i h e i 治 平
j i n b a 神 馬
j i n g u 神 宮
j i n g u j i 神 宮 司
j i n n o c h i 陣 内
j o 丈
j o 丞
j o 城
j o 浄
j o h a n a 城 端
j o s h i m a 城 嶋
j u n 俊
j u n 凖
j u n 殉
j u n 洵
j u n 淳
j u n 準
j u n 潤
j u n 純
j u n 遵
j u n 隼
j u n 順
j u n 駿
j u n g o 淳 吾
k a b u y a m a 蕪 山
k a e k o 佳 恵 子
k a e k o 佳 永 子
k a e k o 加 恵 子
k a g a 加 賀
k a g a m i 加 賀 美
k a g a m i 加 賀 見
k a g a m i 各 務
k a g a m i 鏡
k a g e k i 景 樹
k a g e y a m a 影 山
k a g e y a m a 景 山
k a g e y a m a 蔭 山
k a g e y a m a 陰 山
k a i h e i 海 平
k a i t a 貝 田
k a i t a 開 田
k a i t a 頴 田
k a j i t s u k a 梶 塚
k a j i w a r a 梶 原
k a k u d a 角 田
k a k u m o t o 角 本
k a k u y a 角 屋
k a k u y a 角 谷
k a m a k u r a 鎌 倉
k a m a n o 鎌 野
k a m a t a 蒲 田
k a m a t a 釜 田
k a m a t a 鎌 田
k a m a t a 鹿 又
k a m a t a n i 釜 谷
k a m a t a n i 鎌 谷
k a m e j i r o 亀 次 郎
k a m i c h i 上 地
k a m i i s h i 上 石
k a m i m o t o 上 本
k a m i m o t o 神 本
k a m i t s u 神 津
k a m i t s u k i 上 月
k a m o g a w a 鴨 川
k a n ' i c h i r o 寛 一 郎
k a n ' i c h i r o 幹 一 郎
k a n a k o 佳 名 子
k a n a k o 佳 奈 子
k a n a k o 佳 菜 子
k a n a k o 佳 那 子
k a n a k o 加 南 子
k a n a k o 加 奈 子
k a n a k o 加 菜 子
k a n a k o 可 南 子
k a n a k o 可 奈 子
k a n a k o 嘉 奈 子
k a n a k o 華 奈 子
k a n a k o 賀 奈 子
k a n a k o 香 奈 子
k a n a k o 香 菜 子
k a n a s u g i 金 杉
k a n a u c h i 金 内
k a n b a r a 神 原
k a n b a r a 蒲 原
k a n d o 菅 藤
k a n e b a k o 金 箱
k a n e h i r a 兼 平
k a n e k a w a 金 川
k a n e o 兼 夫
k a n e o 兼 生
k a n e o 兼 男
k a n e o 兼 郎
k a n e o 兼 雄
k a n e o 金 夫
k a n e o 金 尾
k a n e o 金 生
k a n e o 金 男
k a n e o 金 郎
k a n e o 金 雄
k a n e t s u 金 津
k a n i e 蟹 江
k a n n a 柑 奈
k a n t o 関 東
k a o h s i u n g 高 雄
k a r a m a t s u 唐 松
k a r i n a 香 利 奈
k a r i n a 香 里 奈
k a r i n o 狩 野
k a s a g i 笠 木
k a s a g i 笠 置
k a s a o k a 笠 岡
k a s h i n o 樫 野
k a s h i w a r a 柏 原
k a s h i w a t a n i 柏 谷
k a s o r i 加 曽 利
k a s o r i 加 曾 利
k a t a g i s h i 片 岸
k a t a i 片 井
k a t a n o 交 野
k a t a n o 片 野
k a t a s e 片 瀬
k a t s u n a r i 勝 也
k a t s u n u m a 勝 沼
k a t s u r a g i 桂 木
k a t s u r a g i 葛 城
k a w a k a m i 川 上
k a w a k a m i 河 上
k a w a m a t a 川 俣
k a w a m a t a 川 又
k a w a m a t a 川 股
k a w a m a t a 河 又
k a w a m o r i 川 森
k a w a m u k i 川 向
k a w a m u r a 川 村
k a w a m u r a 河 村
k a w a n o 川 野
k a w a n o e 川 之 江
k a w a r a 香 春
k a y a n u m a 萱 沼
k a y o m i 佳 代 美
k a z u f u m i 一 文
k a z u f u m i 和 文
k a z u h e i 和 平
k a z u j i 一 二
k a z u j i 和 二
k a z u s h i g e 一 成
k a z u s h i g e 一 茂
k a z u s h i g e 和 繁
k a z u s h i g e 和 茂
k a z u s h i g e 和 重
k e i i c h i r o 啓 一 郎
k e i i c h i r o 圭 一 郎
k e i i c h i r o 恵 一 郎
k e i i c h i r o 慶 一 郎
k e i i c h i r o 敬 一 郎
k e i i c h i r o 桂 一 郎
k e i j i 啓 之
k e i j i 啓 二
k e i j i 啓 児
k e i j i 啓 司
k e i j i 啓 次
k e i j i 啓 治
k e i j i 圭 二
k e i j i 圭 児
k e i j i 圭 司
k e i j i 圭 次
k e i j i 圭 治
k e i j i 奎 治
k e i j i 恵 二
k e i j i 恵 児
k e i j i 恵 司
k e i j i 恵 次
k e i j i 恵 治
k e i j i 慶 二
k e i j i 慶 児
k e i j i 慶 司
k e i j i 慶 次
k e i j i 慶 治
k e i j i 敬 二
k e i j i 敬 児
k e i j i 敬 司
k e i j i 敬 志
k e i j i 敬 治
k e i j i 景 二
k e i j i 桂 二
k e i j i 桂 司
k e i j i 渓 治
k e i n o 慶 野
k e i n o s u k e 圭 之 助
k e i n o s u k e 敬 之 介
k e i n o s u k e 敬 之 助
k e n s a k u 健 作
k e n s a k u 建 作
k e n s a k u 憲 作
k e n s a k u 謙 作
k e n s a k u 賢 作
k i d a 喜 田
k i d a 木 田
k i d a 貴 田
k i d o g u c h i 木 戸 口
k i d o k o r o 城 所
k i d o k o r o 木 所
k i g a w a 木 川
k i k u 菊
k i k u h a r a 菊 原
k i k u j i 喜 久 治
k i k u j i 紀 久 二
k i k u j i 菊 治
k i k u t a 菊 田
k i k u z o 菊 蔵
k i m i j i m a 君 島
k i m i t a k a 公 孝
k i m i t o 公 人
k i m o r i 喜 盛
k i n j i r o 謹 治 郎
k i n j i r o 金 二 郎
k i n j i r o 金 次 郎
k i n j i r o 金 治 郎
k i n o s u k e 喜 之 助
k i n p e i 金 平
k i n s h i c h i 金 七
k i r o 喜 郎
k i r y u 桐 生
k i s a r a g i 如 月
k i s h i m a 貴 島
k i t a g a w a 北 川
k i t a g a w a 喜 多 川
k i t a h a r a 北 原
k i t a k a t a 北 方
k i t a k a t a 喜 多 方
k i t a n a k a 北 中
k i t a n i s h i 北 西
k i t a o 北 尾
k i t a r o 喜 太 郎
k i t a z o n o 北 園
k i t s u d a k a 橘 高
k i t s u n a i 橘 内
k i y o 喜 世
k i y o 喜 代
k i y o 季 代
k i y o 清
k i y o 清 夫
k i y o 清 生
k i y o 清 男
k i y o 清 郎
k i y o 清 雄
k i y o 記 代
k i y o 貴 世
k i y o 起 代
k i y o a k i 清 明
k i y o a k i 清 昭
k i y o e 季 代 恵
k i y o e 季 代 枝
k i y o e 希 代 恵
k i y o e 希 代 枝
k i y o e 清 恵
k i y o e 清 枝
k i y o e 清 栄
k i y o e 清 江
k i y o e 清 絵
k i y o e 紀 代 恵
k i y o e 紀 代 枝
k i y o e 貴 代 恵
k i y o e 貴 代 枝
k i y o h i t o 清 仁
k i y o m a t s u 喜 代 松
k i y o m a t s u 清 松
k i y o m i t s u 清 光
k i y o s h i g e 清 茂
k i y o s h i g e 清 重
k i y o t a 清 田
k i y o y u k i 清 之
k i y o y u k i 清 幸
k i y o y u k i 清 行
k o b e 神 戸
k o g a n e z a w a 小 金 沢
k o g a t a 小 方
k o h a c h i 幸 八
k o i c h i r o 光 一 郎
k o i c h i r o 功 一 郎
k o i c h i r o 好 一 郎
k o i c h i r o 孝 一 郎
k o i c h i r o 幸 一 郎
k o i c h i r o 康 一 郎
k o i c h i r o 弘 一 郎
k o i c h i r o 恒 一 郎
k o i c h i r o 晃 一 郎
k o i c h i r o 浩 一 郎
k o i c h i r o 耕 一 郎
k o i c h i r o 興 一 郎
k o i c h i r o 行 一 郎
k o i k e 古 池
k o i k e 小 池
k o j i k a 小 鹿
k o k a i 小 海
k o k u h o 国 保
k o m a i 駒 井
k o m a k i 小 牧
k o m a k i 駒 木
k o m a n o 駒 野
k o m e t a n i 米 谷
k o m e z a k i 米 崎
k o m o r i 古 森
k o m o r i 小 守
k o m o r i 小 森
k o n d o 近 藤
k o n t a n i 紺 谷
k o s h i d a k a 腰 高
k o s h o k u 更 埴
k o t a b e 小 田 部
k o t o 古 藤
k o t o 言 夫
k o t o 言 生
k o t o 言 男
k o t o 言 郎
k o t o 言 雄
k o t o k a 琴 丘
k o t o m i 古 都 美
k o t o m i 琴 実
k o t o m i 琴 海
k o t o m i 琴 美
k o w a d a 小 和 田
k o w a s h i 毅
k o y a n a g i 小 柳
k o y o 光 洋
k o y o 小 用
k o y o 耕 陽
k u j i m a 久 島
k u j i m a 久 嶋
k u m a h a r u 隈 晴
k u m e d a 久 米 田
k u m e d a 粂 田
k u n i a k i 国 明
k u n i a k i 国 昭
k u n i a k i 国 秋
k u n i a k i 訓 明
k u n i a k i 邦 明
k u n i a k i 邦 昭
k u n i a k i 邦 章
k u n i r o 邦 郎
k u n i s a w a 国 沢
k u n i s a w a 國 澤
k u n i s h i g e 国 重
k u n i s h i g e 邦 茂
k u n i t s u g u 邦 次
k u n i y o 邦 代
k u n i y o s h i 国 吉
k u n i y o s h i 国 義
k u n i y o s h i 国 良
k u n i y o s h i 邦 芳
k u n u g i 功 刀
k u r a b e 倉 部
k u r a m a e 倉 前
k u r a n o s u k e 倉 之 助
k u r a o k a 倉 岡
k u r a t a 倉 田
k u r a t a 蔵 田
k u r a t a n i 倉 谷
k u r a t o m i 倉 冨
k u r a t o m i 倉 富
k u r i h a r a 栗 原
k u r i s u 栗 栖
k u r i s u 栗 須
k u r o i w a 黒 岩
k u r o s a k a 黒 坂
k u r o y a n a g i 畔 柳
k u r o y a n a g i 黒 柳
k u r u s u 来 栖
k u r u s u 栗 栖
k u s a k i 草 木
k u s h i h i k i 櫛 引
k u s u o 九 州 男
k u t s u m a 久 津 間
k u w a j i m a 桑 島
k u w a k o 桑 子
k u w a m o t o 桑 本
k u w a s h i m a 桑 島
k u w a t a 桑 田
k u z u m o t o 葛 本
k y o a 興 亜
k y o j i 境 二
k y o j i 強 二
k y o j i 恭 二
k y o j i 興 二
k y o k u t a r o 極 太 郎
k y o w a 協 和
k y u g o 久 伍
k y u s a k u 久 作
l i 李
l i 礼
l i 麗
l i 黎
m a d o k a 円
m a e b a y a s h i 前 林
m a e j i m a 前 島
m a k i s h i m a 巻 島
m a k i s h i m a 槙 島
m a k i s h i m a 槙 嶋
m a k i s h i m a 牧 島
m a k i s h i m a 牧 嶋
m a k i u r a 牧 浦
m a k i y o 満 紀 代
m a k i y o 牧 代
m a m a t a 侭 田
m a n n o 万 野
m a r u k a w a 丸 川
m a s a h i t o 政 仁
m a s a h i t o 昌 人
m a s a h i t o 正 人
m a s a h i t o 正 仁
m a s a h i t o 賢 人
m a s a h i t o 雅 仁
m a s a h o 正 穂
m a s a j i 政 二
m a s a j i 政 司
m a s a j i 政 次
m a s a j i 政 治
m a s a j i 正 二
m a s a j i 正 司
m a s a j i 正 次
m a s a j i 正 治
m a s a n a o 将 尚
m a s a n a o 将 直
m a s a n a o 政 尚
m a s a n a o 政 直
m a s a n a o 昌 尚
m a s a n a o 昌 直
m a s a n a o 正 作
m a s a n a o 正 尚
m a s a n a o 正 直
m a s a n a o 雅 尚
m a s a n a o 雅 直
m a s a y a 将 也
m a s a y a 将 哉
m a s a y a 政 也
m a s a y a 政 哉
m a s a y a 昌 也
m a s a y a 昌 哉
m a s a y a 柾 谷
m a s a y a 正 也
m a s a y a 正 哉
m a s a y a 正 弥
m a s a y a 雅 也
m a s a y a 雅 哉
m a s a z o 政 三
m a s e 真 瀬
m a s e 間 瀬
m a s u h i r o 増 広
m a s u h i r o 益 央
m a s u h i r o 益 弘
m a s u k a w a 増 川
m a s u k a w a 益 川
m a s u m o t o 升 本
m a s u m o t o 増 本
m a s u m o t o 枡 本
m a s u m o t o 舛 本
m a s u t a k a 益 孝
m a s u t a k a 益 高
m a s u y u k i 増 幸
m a s u y u k i 益 幸
m a t a k i c h i 又 吉
m a t o b a 的 場
m a t s u d a 松 田
m a t s u d a i r a 松 平
m a t s u k u m a 松 隈
m a t s u m o t o 松 元
m a t s u m o t o 松 本
m a t s u s h i r o 松 代
m a t s u y o 末 代
m a t s u y o 松 代
m a y a m a 真 山
m a y a m a 間 山
m e i i c h i r o 明 一 郎
m e z a k i 目 崎
m i c h i j i 道 治
m i c h i k o 三 千 子
m i c h i k o 三 智 子
m i c h i k o 三 知 子
m i c h i k o 倫 子
m i c h i k o 充 子
m i c h i k o 典 子
m i c h i k o 己 知 子
m i c h i k o 満 子
m i c h i k o 紀 子
m i c h i k o 美 千 子
m i c h i k o 美 智 子
m i c h i k o 美 知 子
m i c h i k o 路 子
m i c h i k o 迪 子
m i c h i k o 通 子
m i c h i k o 道 子
m i c h i m a s a 通 正
m i c h i m a s a 通 雅
m i c h i m a s a 道 正
m i c h i m a s a 道 芳
m i c h i n o r i 道 典
m i c h i n o r i 道 徳
m i c h i o 三 千 夫
m i c h i o 三 千 生
m i c h i o 三 千 男
m i c h i o 三 千 郎
m i c h i o 三 千 雄
m i c h i o 三 知 夫
m i c h i o 三 知 生
m i c h i o 三 知 男
m i c h i o 三 知 郎
m i c h i o 三 知 雄
m i c h i o 理 夫
m i c h i o 端 夫
m i c h i o 端 生
m i c h i o 端 男
m i c h i o 端 郎
m i c h i o 端 雄
m i c h i o 美 智 夫
m i c h i o 美 智 生
m i c h i o 美 智 男
m i c h i o 美 智 郎
m i c h i o 美 智 雄
m i c h i o 美 知 夫
m i c h i o 美 知 男
m i c h i o 美 知 雄
m i c h i o 路 夫
m i c h i o 路 生
m i c h i o 路 男
m i c h i o 路 郎
m i c h i o 路 雄
m i c h i o 通 夫
m i c h i o 通 生
m i c h i o 通 男
m i c h i o 通 郎
m i c h i o 通 雄
m i c h i o 道 夫
m i c h i o 道 生
m i c h i o 道 男
m i c h i o 道 郎
m i c h i o 道 雄
m i c h i o 陸 夫
m i c h i o 陸 生
m i c h i o 陸 男
m i c h i o 陸 郎
m i c h i o 陸 雄
m i c h i y a 路 也
m i c h i y a 路 哉
m i c h i y a 道 也
m i c h i y a 道 哉
m i c h i y a m a 道 山
m i g i w a 汀
m i g i w a 渚
m i k a r i 美 加 理
m i k o m e 見 米
m i n a k a w a 源 川
m i n a m i a s h i g a r a 南 足 柄
m i n a m i h a t a 南 畑
m i n a m i m o t o 南 本
m i n e k a z u 峯 和
m i n e k i 峯 木
m i n e k i 峰 木
m i n e s a k i 峯 崎
m i n e s a k i 峰 崎
m i n e s h i m a 峯 島
m i n e s h i m a 峰 島
m i n o r a 箕 浦
m i o j i 三 男 司
m i r a i 未 来
m i s a e 操 江
m i s a e 美 佐 恵
m i s a e 美 佐 枝
m i s a e 美 佐 栄
m i s a e 美 佐 江
m i s a e 美 佐 絵
m i s a e 美 沙 恵
m i s a e 美 沙 枝
m i s a e 美 沙 江
m i s a e 美 沙 絵
m i s a e 美 砂 恵
m i s a e 美 砂 枝
m i s a e 美 砂 江
m i s a e 美 砂 絵
m i s a e 美 紗 恵
m i s a e 美 紗 枝
m i s a e 美 紗 江
m i s a e 美 紗 絵
m i s u m i 三 角
m i t a r a i 御 手 洗
m i t o 三 戸
m i t o 水 戸
m i t o 美 都
m i t o m a 三 苫
m i t s u h a s h i 三 橋
m i t s u h i d e 光 秀
m i t s u h i t o 充 人
m i t s u t a 満 田
m i t s u t s u g u 光 次
m i u r a 三 浦
m i y a j i 宮 地
m i y a j i 宮 治
m i y a j i 宮 路
m i y a k o s h i 宮 腰
m i y a k o s h i 宮 越
m i y a w a k i 宮 脇
m i y o k o 三 代 子
m i y o k o 己 代 子
m i y o k o 巳 代 子
m i y o k o 美 世 子
m i y o k o 美 代 子
m i y o k o 美 夜 子
m i y o k o 見 代 子
m i y o t s u g u 彌 代 次
m i z o b e 溝 部
m i z u c h i 水 内
m i z u s h i n a 水 品
m o c h i f u m i 望 史
m o c h i m a r u 持 丸
m o d e g i 茂 出 木
m o n g u c h i 門 口
m o n z e n 門 前
m o r i g u c h i 守 口
m o r i g u c h i 森 口
m o r i k u b o 森 久 保
m o r i o k a 守 岡
m o r i o k a 森 岡
m o r i o k a 盛 岡
m o r i w a k i 森 脇
m o r i z u m i 森 住
m o r o y a m a 毛 呂 山
m o s a b u r o 茂 三 郎
m o t o j i 元 司
m o t o j i 元 次
m o t o j i 元 治
m o t o j i 基 司
m o t o j i 基 次
m o t o k a z u 元 一
m o t o k a z u 元 和
m o t o k a z u 基 一
m o t o k a z u 基 和
m o t o k a z u 素 一
m o t o k a z u 素 和
m o t o k o 元 子
m o t o k o 原 子
m o t o k o 基 子
m o t o k o 素 子
m o t o k o 茂 登 子
m o t o y a m a 元 山
m o t o y a m a 本 山
m o t o y o 紀 代
m u n a m u r a 宗 村
m u n e y u k i 宗 之
m u n e y u k i 宗 幸
m u r a g u c h i 村 口
m u r a i s h i 村 石
m u r a n u s h i 村 主
m u r a s a k i 村 崎
m u r o k o s h i 室 越
m u t s u o 六 夫
m u t s u o 六 生
m u t s u o 六 男
m u t s u o 六 郎
m u t s u o 六 雄
m u t s u o 睦 夫
m u t s u o 睦 生
m u t s u o 睦 男
m u t s u o 睦 郎
m u t s u o 睦 雄
n a d a 名 田
n a d a 灘
n a e 奈 恵
n a e 奈 枝
n a e 奈 江
n a e 奈 絵
n a e 苗
n a g a k i 永 木
n a g a k i 長 岐
n a g a k u b o 永 久 保
n a g a k u b o 長 久 保
n a g o 名 護
n a g u m o 南 雲
n a k a h a r a 中 原
n a k a h a r a 仲 原
n a k a k i 中 木
n a k a n i i d a 中 新 田
n a k a s e k o 中 世 古
n a k a s h i r o 中 城
n a n a s a w a 七 沢
n a n a t s u k a 七 塚
n a n b u 南 部
n a o f u m i 尚 史
n a o f u m i 尚 文
n a o f u m i 直 史
n a o f u m i 直 文
n a o h i k o 尚 彦
n a o h i k o 直 彦
n a o k o 奈 保 子
n a o k o 奈 央 子
n a o k o 奈 生 子
n a o k o 奈 穂 子
n a o k o 奈 緒 子
n a o k o 尚 央 子
n a o k o 尚 子
n a o k o 直 央 子
n a o k o 直 子
n a o k o 菜 生 子
n a o k o 菜 穂 子
n a o k o 菜 緒 子
n a o s h i 尚 史
n a o s h i 尚 司
n a o s h i 尚 士
n a o s h i 尚 志
n a o s h i 直
n a o s h i 直 史
n a o s h i 直 司
n a o s h i 直 志
n a r a 奈 良
n a r a h a 楢 葉
n a r a k i 楢 木
n a r u o 成 尾
n a r u s a w a 成 沢
n a r u s a w a 成 澤
n a r u s a w a 鳴 沢
n a t s u k i 夏 喜
n a t s u k i 夏 季
n a t s u k i 夏 木
n a t s u k i 夏 樹
n a t s u k i 夏 生
n a t s u k i 夏 紀
n a t s u k i 夏 輝
n a t s u k i 奈 月
n a t s u k i 奈 津 季
n a t s u k i 奈 津 希
n a t s u k i 奈 津 紀
n a t s u k i 奈 津 貴
n a t s u y o 夏 代
n a t s u y o 奈 津 代
n a t s u y o 那 津 代
n e d a c h i 根 立
n e g i s h i 根 岸
n e y a g a w a 寝 屋 川
n i g o r i k a w a 濁 川
n i i h a m a 新 居 浜
n i i s e k i 新 関
n i i z a w a 新 沢
n i k k o 日 光
n i s h i g o r i 西 郡
n i s h i g o r i 錦 織
n i s h i h a m a 西 浜
n i s h i h i r a 西 平
n i s h i m o r i 西 森
n i s h i z a w a 西 沢
n i s h i z a w a 西 澤
n o b a t a 野 畑
n o d a 野 田
n o d e r a 野 寺
n o g a w a 野 川
n o g u c h i 野 口
n o i k e 野 池
n o j i m a 野 島
n o r i e 典 利 江
n o r i e 典 恵
n o r i e 典 枝
n o r i e 典 江
n o r i e 典 絵
n o r i e 則 江
n o r i e 徳 江
n o r i e 礼 江
n o r i e 紀 恵
n o r i e 紀 枝
n o r i e 紀 江
n o r i e 紀 絵
n o r i e 規 恵
n o r i m i c h i 徳 道
n o r i m i c h i 憲 道
n o r i m i c h i 教 道
n o r i m i c h i 法 道
n o r i m i c h i 規 道
n o s e 能 勢
n o s e 野 瀬
n o y a 納 谷
n u m a n o 沼 野
n u m a s a k i 沼 崎
o d a w a r a 小 田 原
o d e 大 出
o d e 大 手
o g u s h i 大 串
o g u s h i 小 串
o h i n a t a 大 日 向
o h i n a t a 大 日 方
o k a s a k a 岡 坂
o k a t o 岡 戸
o k a u e 岡 上
o k i n a k a 沖 中
o k u 奥
o k u r o 大 黒
o m a m i u d a 大 豆 生 田
o n a 小 名
o n d a 恩 田
o n d a 遠 田
o n o z a w a 小 野 沢
o o c h i 大 内
o o c h i d a 大 内 田
o o k a 大 岡
o r i b e 織 部
o r i g a s a 折 笠
o r u i 大 類
o s a k u 大 作
o s a k u 小 作
o s a m u 一
o s a m u 乃
o s a m u 伊
o s a m u 修
o s a m u 収
o s a m u 士
o s a m u 平
o s a m u 惣
o s a m u 收
o s a m u 攻
o s a m u 敦
o s a m u 治
o s a m u 治 虫
o s a m u 理
o s a m u 税
o s a m u 穣
o s a m u 穰
o s a m u 紀
o s a m u 納
o s a m u 統
o s a m u 縮
o s a m u 耕
o s a m u 脩
o s a m u 道
o s a m u 靖
o s a n a m i 長 南
o s a w a n o 大 沢 野
o s h i b a 大 柴
o s h i b a 大 芝
o t a i r a 大 平
o t a w a r a 大 田 原
o t a w a r a 太 田 原
o t o h a t a 乙 幡
o t o m i 大 富
o z e 小 瀬
p u 朴
r i a 里 亜
r i k o 理 子
r i y a 里 矢
r o 朗
r y o k o 了 子
r y o k o 亮 子
r y o k o 涼 子
r y o k o 綾 子
r y o k o 良 子
r y o k o 諒 子
r y o k o 遼 子
r y o k o 量 子
r y o s a k u 良 作
r y o y a 良 哉
r y o y a 良 弥
r y o z o 良 三
r y o z o 良 蔵
r y o z o 良 造
r y o z o 量 三
r y u t a 竜 太
r y u t a 隆 太
r y u t a 龍 太
s a d a k a z u 定 一
s a d a k a z u 定 和
s a d a k a z u 貞 一
s a d a k a z u 貞 和
s a d a t o s h i 定 俊
s a d a t o s h i 定 利
s a d a t o s h i 貞 敏
s a g a m i k o 相 模 湖
s a i c h i 佐 一
s a i c h i 佐 市
s a i c h i r o 佐 一 郎
s a j u r o 佐 十 郎
s a k a b e 坂 部
s a k a b e 阪 部
s a k a m o t o 坂 元
s a k a m o t o 坂 本
s a k a m o t o 酒 本
s a k a m o t o 阪 本
s a k a t a 坂 田
s a k a t a 酒 田
s a k a t a 阪 田
s a k e t a 酒 田
s a k i y a m a 崎 山
s a k u r a d a 桜 田
s a n d a y u 三 太 夫
s a n j o 三 条
s a r u w a t a r i 猿 渡
s a s a g e 捧
s a t o a k i 聖 明
s a t o m i 佐 登 美
s a t o m i 恵 規
s a t o m i 智 実
s a t o m i 智 美
s a t o m i 理 実
s a t o m i 理 美
s a t o m i 聖 実
s a t o m i 聖 美
s a t o m i 聡 実
s a t o m i 聡 未
s a t o m i 聡 美
s a t o m i 里 実
s a t o m i 里 未
s a t o m i 里 美
s a t o m i 里 見
s a w a 沢
s a w a 澤
s a w a b e 沢 辺
s a w a b e 沢 部
s a w a f u j i 沢 藤
s a w a f u j i 澤 藤
s a w a m o t o 沢 本
s a w a t a n i 沢 谷
s a w a t a n i 澤 谷
s a w a z a k i 沢 崎
s a w a z a k i 澤 崎
s e i h a c h i 清 八
s e i i c h i 征 一
s e i i c h i 成 一
s e i i c h i 政 一
s e i i c h i 晴 一
s e i i c h i 清 一
s e i i c h i 清 市
s e i i c h i 生 一
s e i i c h i 盛 一
s e i i c h i 精 一
s e i i c h i 聖 一
s e i i c h i 西 一
s e i i c h i 誠 一
s e i i c h i 靖 一
s e i i c h i 静 一
s e i i c h i 静 市
s e i k i 清 喜
s e i k i 誠 喜
s e i s h i 征 之
s e i s h i 正 史
s e i s h i 正 志
s e i s h i 誠 之
s e k i g u c h i 関 口
s e k i u c h i 関 内
s e k i y a m a 関 山
s e n 宣
s e n 泉
s e n d a 仙 田
s e n d a 千 田
s e n g o k u 仙 石
s e n s u i 泉 水
s e o 瀬 尾
s e s h i t a 瀬 下
s e t o g a w a 瀬 戸 川
s e t o i 瀬 戸 井
s h i b a h a r a 柴 原
s h i b a h a r a 芝 原
s h i b a s a k i 芝 崎
s h i b u i c h i 四 分 一
s h i b u t a n i 渋 谷
s h i g e a k i 成 章
s h i g e a k i 繁 明
s h i g e a k i 繁 昭
s h i g e a k i 繁 秋
s h i g e a k i 繁 章
s h i g e a k i 茂 明
s h i g e a k i 茂 昭
s h i g e a k i 茂 秋
s h i g e a k i 茂 章
s h i g e a k i 重 明
s h i g e a k i 重 昭
s h i g e a k i 重 秋
s h i g e a k i 重 章
s h i g e h a r a 茂 原
s h i g e h a r a 重 原
s h i g e k i c h i 繁 吉
s h i g e m o r i 重 森
s h i g e m o r i 重 衛
s h i g e n o r i 成 則
s h i g e n o r i 成 徳
s h i g e n o r i 繁 典
s h i g e n o r i 繁 則
s h i g e n o r i 繁 徳
s h i g e n o r i 繁 憲
s h i g e n o r i 茂 則
s h i g e n o r i 重 典
s h i g e n o r i 重 則
s h i g e n o r i 重 徳
s h i g e n o r i 重 憲
s h i g e n o r i 重 範
s h i g e t o m i 重 冨
s h i g e t o m i 重 富
s h i g e y a m a 茂 山
s h i g e y a m a 重 山
s h i k a 志 賀
s h i k a k u r a 鹿 倉
s h i k a t a n i 鹿 谷
s h i m a g a m i 島 上
s h i m a k u r a 島 倉
s h i m a k u r a 嶋 倉
s h i m o c h i 下 地
s h i m o g a w a r a 下 川 原
s h i m o h a r a 下 原
s h i m o j i m a 下 島
s h i m o j i m a 下 嶋
s h i m o j i m a 霜 島
s h i m o s u w a 下 諏 訪
s h i n 伸
s h i n 信
s h i n 慎
s h i n 新
s h i n 晋
s h i n 真
s h i n ' i c h i 伸 一
s h i n ' i c h i 信 一
s h i n ' i c h i 心 一
s h i n ' i c h i 愼 一
s h i n ' i c h i 慎 一
s h i n ' i c h i 新 一
s h i n ' i c h i 晋 一
s h i n ' i c h i 眞 一
s h i n ' i c h i 真 一
s h i n ' i c h i 真 市
s h i n ' i c h i 紳 一
s h i n ' i c h i 親 一
s h i n ' i c h i 辰 一
s h i n ' i c h i 進 一
s h i n ' y a 伸 也
s h i n ' y a 伸 哉
s h i n ' y a 伸 弥
s h i n ' y a 信 也
s h i n ' y a 信 哉
s h i n ' y a 信 弥
s h i n ' y a 慎 也
s h i n ' y a 慎 哉
s h i n ' y a 慎 弥
s h i n ' y a 新 家
s h i n ' y a 新 屋
s h i n ' y a 新 谷
s h i n ' y a 晋 也
s h i n ' y a 津 也
s h i n ' y a 真 也
s h i n ' y a 真 哉
s h i n ' y a 真 弥
s h i n ' y a 真 矢
s h i n ' y a 進 也
s h i n b a r a 新 原
s h i n b o 新 保
s h i n b o 真 保
s h i n c h i 新 地
s h i n j i r o 伸 次 郎
s h i n j i r o 信 次 郎
s h i n j i r o 新 二 郎
s h i n j i r o 新 次 郎
s h i n j i r o 進 次 郎
s h i n k a w a 新 川
s h i n o 志 乃
s h i n o 志 野
s h i n o 滋 野
s h i n o 篠
s h i n t o n e 新 利 根
s h i o k a w a 塩 川
s h i r a h a m a 白 浜
s h i r a k a m i 白 神
s h i r a s a k i 白 崎
s h i r a t o r i 白 取
s h i r a t o r i 白 鳥
s h i r o n e 白 根
s h i r o n o 城 野
s h i t a z a w a 下 沢
s h i z u o k a 静 岡
s h o n a i 庄 内
s o h a c h i 宗 八
s o n o 園
s o n o d a 其 田
s o n o d a 園 田
s o n o d a 薗 田
s o n o k o 園 子
s o n o k o 苑 子
s o r i m a c h i 反 町
s o s h i c h i 壮 七
s o s h i c h i 宗 七
s o s h i c h i 惣 七
s o s h i c h i 総 七
s o s h i c h i 荘 七
s u b a r u 昴
s u e d a 末 田
s u e i c h i 末 一
s u g a i 菅 井
s u g a i 須 貝
s u g a n u m a 菅 沼
s u g a s a w a 菅 沢
s u g i b u c h i 杉 淵
s u g i n o 杉 野
s u g i z a k i 杉 崎
s u g u h o 直 穂
s u k e g a w a 佑 川
s u k e g a w a 助 川
s u k u m o 宿 毛
s u m i h i k o 澄 彦
s u m i h i k o 純 彦
s u m i k u r a 角 倉
s u m i m o t o 住 本
s u m i t a 住 田
s u m i t a 隅 田
s u m i y a m a 住 山
s u m i y a m a 角 山
s u n a g a w a 砂 川
s u n a h a r a 砂 原
s u n o c h i 須 之 内
t a b a t a 田 幡
t a b a t a 田 畑
t a b a t a 田 端
t a b e i 田 部 井
t a c h i b a n a 橘
t a c h i b a n a 立 花
t a d a h i r o 忠 博
t a d a h i r o 忠 宏
t a d a h i r o 忠 広
t a d a h i r o 忠 弘
t a d a h i r o 忠 浩
t a d a h i r o 忠 裕
t a d a i e 忠 家
t a d a k a t s u 忠 克
t a d a k a t s u 忠 勝
t a d a k a t s u 正 勝
t a d a k a z u 忠 一
t a d a k a z u 忠 和
t a d a k a z u 直 和
t a d a t a k a 忠 孝
t a d a y o s h i 唯 義
t a d a y o s h i 忠 吉
t a d a y o s h i 忠 好
t a d a y o s h i 忠 義
t a d a y o s h i 忠 良
t a d a y o s h i 忠 芳
t a i k o 泰 子
t a i k o 鯛 子
t a i m e i 岱 明
t a k a b a y a s h i 高 林
t a k a h a n e 高 羽
t a k a h a r a 高 原
t a k a h i s a 喬 久
t a k a h i s a 孝 久
t a k a h i s a 尭 久
t a k a h i s a 崇 永
t a k a h i s a 敬 久
t a k a h i s a 貴 久
t a k a h i s a 隆 久
t a k a i w a 高 岩
t a k a m i z u 高 水
t a k a n o 高 埜
t a k a n o 高 野
t a k a n o 鷹 野
t a k a n o b u 孝 伸
t a k a n o b u 孝 信
t a k a n o b u 敬 信
t a k a n o b u 隆 信
t a k a n o r i 孝 典
t a k a n o r i 孝 則
t a k a n o r i 孝 徳
t a k a n o r i 孝 憲
t a k a n o r i 孝 紀
t a k a n o r i 尚 典
t a k a n o r i 崇 智
t a k a n o r i 貴 則
t a k a n o r i 隆 典
t a k a n o r i 隆 則
t a k a n o r i 隆 徳
t a k a n o r i 隆 憲
t a k a n o r i 隆 紀
t a k a n o r i 高 典
t a k a n o r i 高 則
t a k a n o r i 高 徳
t a k a n o r i 高 憲
t a k a n o r i 高 紀
t a k a s a g o 高 砂
t a k a s h i m i z u 高 清 水
t a k a s u g i 高 杉
t a k a s u k a 高 須 賀
t a k a y a m a 高 山
t a k e b a y a s h i 武 林
t a k e b a y a s h i 竹 林
t a k e k u n i 丈 邦
t a k e m a e 竹 前
t a k e m i t s u 健 光
t a k e m i t s u 武 光
t a k e s a k i 竹 崎
t a k e t o s h i 武 俊
t a k e t o s h i 武 利
t a k e t o s h i 武 敏
t a k e t o s h i 猛 俊
t a k e t o s h i 猛 敏
t a k e y a 武 谷
t a k e y a 竹 谷
t a k i g a w a 滝 川
t a k i s h i t a 滝 下
t a k i s h i t a 瀧 下
t a k u z o 卓 三
t a k u z o 卓 造
t a m a o k a 玉 岡
t a m a y a m a 玉 山
t a m i j i 多 美 次
t a m i j i 民 治
t a m o r i 田 森
t a m u r a 田 村
t a n a h a s h i 棚 橋
t a n a s h i 田 無
t a n i m o t o 谷 本
t a n i u e 谷 上
t a n i z a w a 谷 沢
t a n n o 丹 野
t a s u k u 亮
t a s u k u 介
t a s u k u 伍
t a s u k u 佐
t a s u k u 佑
t a s u k u 侑
t a s u k u 匡
t a s u k u 将
t a s u k u 弼
t a s u k u 比
t a s u k u 相
t a s u k u 祐
t a s u k u 補
t a s u k u 賛
t a s u k u 輔
t a t e j i m a 立 島
t a t e j i m a 立 嶋
t a t e u c h i 舘 内
t a t e u c h i 館 内
t a t s u h i k o 建 彦
t a t s u h i k o 竜 彦
t a t s u h i k o 辰 彦
t a t s u h i k o 達 彦
t a t s u h i k o 龍 彦
t a t s u m a s a 辰 勝
t a t s u t a 立 田
t a t s u t a 竜 田
t a t s u t a 龍 田
t a w a r a y a m a 俵 山
t e i 悌
t e i 禎
t e i 貞
t e r a k a d o 寺 門
t e r a o k a 寺 岡
t e r a s h i t a 寺 下
t e r a y a m a 寺 山
t e r u 照
t e r u 輝
t e r u c h i 照 内
t e r u k o 光 子
t e r u k o 彰 子
t e r u k o 昭 子
t e r u k o 照 子
t e r u k o 輝 子
t e r u s a d a 昭 定
t e r u y a m a 照 山
t e t s u e 哲 枝
t e t s u k a z u 哲 一
t e t s u k a z u 哲 和
t e t s u k a z u 徹 一
t e t s u k a z u 鉄 一
t o b a 戸 羽
t o b a 鳥 羽
t o b i i s h i 飛 石
t o d a 戸 田
t o d a 東 田
t o d a 遠 田
t o d o r o k i 轟
t o i s h i 戸 石
t o i z u m i 戸 泉
t o j i m a 戸 島
t o j i m a 戸 嶋
t o j i m a 東 島
t o j i m a 東 嶋
t o k a n o 戸 叶
t o k i h i k o 時 彦
t o k i h i t o 時 人
t o k i w a 常 盤
t o k i w a 常 葉
t o k i y o 時 世
t o k i y o 時 代
t o k u k o 徳 子
t o k u k o 登 久 子
t o k u m a s a 得 政
t o k u m a s u 徳 増
t o k u n a g a 徳 永
t o k u t o m i 徳 冨
t o k u t o m i 徳 富
t o m i n a r i 冨 成
t o m i t a r o 冨 太 郎
t o m i t a r o 富 太 郎
t o m o a k i 伴 明
t o m o a k i 友 彰
t o m o a k i 友 明
t o m o a k i 友 昭
t o m o a k i 友 章
t o m o a k i 智 明
t o m o a k i 智 昭
t o m o a k i 智 章
t o m o a k i 知 明
t o m o a k i 知 昭
t o m o a k i 知 章
t o m o c h i k a 友 親
t o m o c h i k a 智 親
t o m o c h i k a 朋 親
t o m o f u m i 友 史
t o m o f u m i 友 文
t o m o f u m i 智 史
t o m o f u m i 智 文
t o m o f u m i 朋 史
t o m o f u m i 朋 文
t o m o f u m i 知 史
t o m o h a r u 友 春
t o m o h a r u 友 晴
t o m o h a r u 智 晴
t o m o h a r u 智 治
t o m o h a r u 朝 治
t o m o h a r u 知 治
t o m o h i s a 智 久
t o m o h i s a 朋 久
t o m o j i 友 二
t o m o j i 友 次
t o m o j i 友 治
t o m o j i 智 二
t o m o j i 智 司
t o m o j i r o 友 次 郎
t o m o j i r o 智 次 郎
t o m o y o 友 世
t o m o y o 友 代
t o m o y o 智 世
t o m o y o 智 代
t o m o y o 朋 世
t o m o y o 朋 代
t o m o y o 知 世
t o m o y o 知 代
t o n e 刀 根
t o n e 刀 祢
t o n e 刀 禰
t o n e 利 根
t o r a m i 寅 実
t o r a m i 寅 美
t o r i y a 鳥 屋
t o r i y a 鳥 谷
t o r u 亨
t o r u 享
t o r u 亮
t o r u 利
t o r u 博
t o r u 叡
t o r u 徹
t o r u 明
t o r u 暢
t o r u 竜
t o r u 融
t o r u 貫
t o r u 透
t o r u 通
t o r u 達
t o s a k i 戸 崎
t o s h i m i 俊 実
t o s h i m i 俊 美
t o s h i m i 俊 見
t o s h i m i 利 三
t o s h i m i 利 実
t o s h i m i 利 巳
t o s h i m i 利 美
t o s h i m i 寿 美
t o s h i m i 年 美
t o s h i m i 敏 実
t o s h i m i 敏 己
t o s h i m i 敏 美
t o s h i m i 敏 見
t o s h i m i 稔 見
t o s h i m i 駿 美
t o s h i m i c h i 俊 道
t o s h i m i c h i 利 通
t o s h i m i c h i 利 道
t o s h i m i c h i 敏 道
t o s h i n o b u 俊 伸
t o s h i n o b u 俊 信
t o s h i n o b u 利 伸
t o s h i n o b u 利 信
t o s h i n o b u 利 延
t o s h i n o b u 寿 信
t o s h i n o b u 寿 延
t o s h i n o b u 年 信
t o s h i n o b u 敏 伸
t o s h i n o b u 敏 信
t o s h i n o b u 稔 伸
t o s h i t a k e 俊 剛
t o s h i t a k e 利 武
t o t t o r i 鳥 取
t o y a m a 富 山
t o y a m a 当 山
t o y a m a 戸 山
t o y a m a 登 山
t o y a m a 遠 山
t o y o h a r u 豊 春
t o y o h a r u 豊 治
t s u b o k u r a 坪 倉
t s u c h i t a n i 槌 谷
t s u f u k u 津 布 久
t s u g e 柘 植
t s u g e 津 下
t s u g i k a z u 二 一
t s u g u t o s h i 次 利
t s u g u t o s h i 次 敏
t s u k a g u c h i 塚 口
t s u k a m o t o 塚 本
t s u k i d a 月 田
t s u m i d a 積 田
t s u n e i z u m i 常 泉
t s u n e j i 常 二
t s u n e j i 常 次
t s u n e j i 常 治
t s u n e j i 恒 二
t s u n e j i 恒 次
t s u n e j i 恒 治
t s u n e k a z u 常 一
t s u n e k a z u 常 和
t s u n e k a z u 恒 一
t s u n e k a z u 恒 和
t s u n e k a z u 経 一
t s u n e y o s h i 常 喜
t s u n e y o s h i 恒 義
t s u n e y o s h i 恒 芳
t s u n o 津 野
t s u n o d a 津 野 田
t s u n o d a 角 田
t s u r u m a 鶴 間
t s u r u t a n i 鶴 谷
t s u t a n i 津 谷
t s u t a o 蔦 朗
t s u z u k i 続 木
t s u z u k i 胤
t s u z u k i 都 竹
t s u z u k i 都 筑
t s u z u k i 都 築
u c h i h o r i 内 堀
u c h i k u r a 内 倉
u c h i u r a 内 浦
u d a 宇 田
u e d e 上 出
u e h a t a 上 畑
u e s a k a 上 坂
u g a j i n 宇 賀 神
u g i 卯 木
u g i 鵜 木
u k i k o 憂 紀 子
u k u 宇 久
u m e j i r o 梅 次 郎
u m e z a w a 梅 沢
u m e z a w a 梅 澤
u m i n o 海 野
u r a b e 卜 部
u r a b e 占 部
u r a b e 浦 辺
u r a b e 浦 部
u r a s a k i 浦 崎
u r u n o 宇 留 野
u r u s h i b a r a 漆 原
u s h i j i m a 牛 島
u s h i j i m a 牛 嶋
u s h i k o s h i 牛 越
u s h i z a w a 牛 沢
u s h i z o 丑 蔵
u t a 右 田
u t a d a 歌 田
u t s u k i 宇 都 木
w a g a t s u m a 我 妻
w a h e i 和 平
w a k a m i y a 若 宮
w a k a t a 若 田
w a k a t a b e 若 田 部
w a k u i 和 久 井
w a k u i 涌 井
w a k u i 湧 井
w a k u t a 和 久 田
w a k u t a 涌 田
w a k u t a 湧 田
w a r a t a n i 藁 谷
w a s h i n o s u 鷲 巣
x i a n g z h i 祥 治
x i n 信
x i n 新
x i n 欣
x i n y i 心 一
x i n y i 欣 一
x i u q u a n 秀 全
y a b u 籔
y a b u 薮
y a b u n o 薮 野
y a g a m i 八 神
y a g a m i 矢 上
y a h a g i 矢 作
y a h a g i 矢 矧
y a h a g i 矢 萩
y a h a s h i 八 橋
y a h a s h i 矢 橋
y a m a d a 山 田
y a m a k u n i 山 国
y a m a m i c h i 山 道
y a m a n o 山 野
y a m a n o c h i 山 之 内
y a m a n o c h i 山 内
y a m a t e 山 手
y a m a t s u r i 矢 祭
y a m a z a k i 山 崎
y a n 研
y a n a g a w a 柳 川
y a n a g a w a 梁 川
y a n a g i m a c h i 柳 町
y a n a g i m o t o 柳 本
y a n a i 柳 井
y a n a i 柳 内
y a n a i 矢 内
y a n a i 箭 内
y a n a t o r i 梁 取
y a o i t a 八 百 板
y a o i t a 矢 尾 板
y a s u k o 保 子
y a s u k o 八 洲 子
y a s u k o 和 子
y a s u k o 妥 子
y a s u k o 安 子
y a s u k o 康 子
y a s u k o 弥 寿 子
y a s u k o 恭 子
y a s u k o 恵 子
y a s u k o 易 子
y a s u k o 泰 子
y a s u k o 育 子
y a s u k o 靖 子
y a s u s h i 也 寸 志
y a s u s h i 予
y a s u s h i 仁
y a s u s h i 保
y a s u s h i 保 司
y a s u s h i 和
y a s u s h i 妥
y a s u s h i 安
y a s u s h i 安 史
y a s u s h i 安 司
y a s u s h i 安 志
y a s u s h i 寧
y a s u s h i 寿
y a s u s h i 康
y a s u s h i 康 史
y a s u s h i 康 司
y a s u s h i 康 嗣
y a s u s h i 康 四
y a s u s h i 康 志
y a s u s h i 廉 士
y a s u s h i 恭
y a s u s h i 恭 史
y a s u s h i 悌
y a s u s h i 易
y a s u s h i 欣
y a s u s h i 泰
y a s u s h i 泰 史
y a s u s h i 泰 司
y a s u s h i 泰 志
y a s u s h i 渥
y a s u s h i 術
y a s u s h i 靖
y a s u s h i 靖 史
y a s u s h i 靖 司
y a s u s h i 靖 志
y a s u s h i 静
y a s u y o 安 世
y a s u y o 安 代
y a s u y o 康 世
y a s u y o 康 代
y a s u y o 恭 代
y a s u y o 恵 代
y a s u y o 泰 世
y a s u y o 泰 代
y a s u y o 靖 世
y a s u y o 靖 代
y i n g c i 英 次
y o g o 余 語
y o g o r o 与 五 郎
y o k o g i 横 木
y o k o m a t s u 横 松
y o k o m u r a 横 村
y o k o s u k a 横 須 賀
y o k o t a 横 田
y o k o t e 横 手
y o m o d a 四 方 田
y o n a g o 米 子
y o n e h a r a 米 原
y o n e j i m a 米 島
y o n e j i m a 米 嶋
y o n e o k a 米 岡
y o n e t a n i 米 谷
y o r i i 寄 居
y o r i t a 依 田
y o s a b u r o 与 三 郎
y o s h i a k i 佳 明
y o s h i a k i 佳 昭
y o s h i a k i 佳 秋
y o s h i a k i 佳 章
y o s h i a k i 克 明
y o s h i a k i 吉 彰
y o s h i a k i 吉 明
y o s h i a k i 吉 昭
y o s h i a k i 吉 秋
y o s h i a k i 吉 章
y o s h i a k i 善 明
y o s h i a k i 善 昭
y o s h i a k i 善 秋
y o s h i a k i 善 章
y o s h i a k i 喜 明
y o s h i a k i 喜 昭
y o s h i a k i 喜 章
y o s h i a k i 嘉 彰
y o s h i a k i 嘉 明
y o s h i a k i 嘉 昭
y o s h i a k i 嘉 晃
y o s h i a k i 嘉 章
y o s h i a k i 好 明
y o s h i a k i 好 昭
y o s h i a k i 好 晃
y o s h i a k i 好 朗
y o s h i a k i 好 章
y o s h i a k i 宜 昭
y o s h i a k i 宣 明
y o s h i a k i 慶 明
y o s h i a k i 由 明
y o s h i a k i 美 昭
y o s h i a k i 美 章
y o s h i a k i 義 彰
y o s h i a k i 義 明
y o s h i a k i 義 昭
y o s h i a k i 義 朗
y o s h i a k i 義 秋
y o s h i a k i 義 章
y o s h i a k i 義 顕
y o s h i a k i 良 彰
y o s h i a k i 良 明
y o s h i a k i 良 昭
y o s h i a k i 良 秋
y o s h i a k i 良 章
y o s h i a k i 芳 明
y o s h i a k i 芳 昭
y o s h i a k i 芳 章
y o s h i b a 吉 場
y o s h i b a 吉 羽
y o s h i b a 吉 葉
y o s h i b a 葭 葉
y o s h i b a s h i 吉 橋
y o s h i k a t s u 善 勝
y o s h i k a t s u 喜 克
y o s h i k a t s u 由 勝
y o s h i k a t s u 義 勝
y o s h i k a t s u 良 克
y o s h i k a t s u 芳 勝
y o s h i k i 佳 樹
y o s h i k i 佳 紀
y o s h i k i 吉 木
y o s h i k i 善 樹
y o s h i k i 嘉 樹
y o s h i k i 好 基
y o s h i k i 由 紀
y o s h i k i 美 樹
y o s h i k i 義 樹
y o s h i k i 義 紀
y o s h i k i 良 喜
y o s h i k i 良 樹
y o s h i k i 芳 喜
y o s h i k i 芳 城
y o s h i k i 芳 樹
y o s h i t s u n e 嘉 恒
y o s h i y a 好 也
y o s h i y a 美 哉
y o s h i y a 義 也
y o s h i y a 義 哉
y o s h i y a 義 弥
y o s h i y a 良 也
y o s h i y a 良 哉
y o s h i y a 良 矢
y o s h i y a 芳 也
y o s h i y a 芳 哉
y o s h i y a 芳 弥
y o s u k e 与 助
y o s u k e 庸 介
y o s u k e 洋 介
y o s u k e 洋 佑
y o s u k e 洋 助
y o s u k e 洋 右
y o s u k e 洋 祐
y o s u k e 洋 補
y o s u k e 洋 輔
y o s u k e 遙 介
y o s u k e 遙 佑
y o s u k e 遙 助
y o s u k e 遙 祐
y o s u k e 遙 輔
y o s u k e 遥 介
y o s u k e 遥 佑
y o s u k e 遥 助
y o s u k e 遥 祐
y o s u k e 遥 輔
y o s u k e 陽 介
y o s u k e 陽 佑
y o s u k e 陽 助
y o s u k e 陽 祐
y o s u k e 陽 輔
y u a n 元
y u a n y i 元 一
y u i c h i 優 一
y u i c h i 勇 一
y u i c h i 勇 市
y u i c h i 友 一
y u i c h i 右 一
y u i c h i 悠 一
y u i c h i 有 一
y u i c h i 由 一
y u i c h i 祐 一
y u i c h i 祐 市
y u i c h i 裕 一
y u i c h i 郁 一
y u i c h i 雄 一
y u i c h i 雄 市
y u i k a 結 花
y u j i r o 優 二 郎
y u j i r o 優 次 郎
y u j i r o 勇 二 郎
y u j i r o 勇 次 郎
y u j i r o 友 二 郎
y u j i r o 友 次 郎
y u j i r o 悠 二 郎
y u j i r o 悠 次 郎
y u j i r o 祐 次 郎
y u j i r o 裕 二 郎
y u j i r o 裕 次 郎
y u j i r o 雄 二 郎
y u j i r o 雄 四 郎
y u j i r o 雄 次 郎
y u k i s u k e 幸 助
y u k i t a k a 幸 孝
y u k i t a k a 幸 隆
y u k i t a k a 幸 高
y u k i t a k a 行 孝
y u k u h a s h i 行 橋
y u r i y o 由 里 代
y u r i y o 百 合 代
y u s u k e 佑 介
y u s u k e 優 介
y u s u k e 優 佑
y u s u k e 優 助
y u s u k e 優 祐
y u s u k e 優 輔
y u s u k e 勇 介
y u s u k e 勇 佑
y u s u k e 勇 助
y u s u k e 勇 祐
y u s u k e 勇 輔
y u s u k e 友 介
y u s u k e 友 佑
y u s u k e 友 助
y u s u k e 友 祐
y u s u k e 友 輔
y u s u k e 悠 介
y u s u k e 悠 佑
y u s u k e 悠 助
y u s u k e 悠 祐
y u s u k e 悠 輔
y u s u k e 有 介
y u s u k e 祐 介
y u s u k e 祐 助
y u s u k e 祐 輔
y u s u k e 裕 亮
y u s u k e 裕 介
y u s u k e 雄 介
y u s u k e 雄 佑
y u s u k e 雄 助
y u s u k e 雄 祐
y u s u k e 雄 輔
y u t a 優 太
y u t a 勇 太
y u t a 友 太
y u t a 悠 太
y u t a 由 太
y u t a 祐 太
y u t a 裕 太
y u t a 雄 大
y u t a 雄 太
y u t a k a 優
y u t a k a 大
y u t a k a 完
y u t a k a 宥
y u t a k a 富
y u t a k a 寛
y u t a k a 最
y u t a k a 泰
y u t a k a 浩
y u t a k a 温
y u t a k a 碩
y u t a k a 祐
y u t a k a 穣
y u t a k a 穰
y u t a k a 肥
y u t a k a 裕
y u t a k a 豊
y u t a k a 隆
z e n t s u j i 善 通 寺
z h a o x i n g 照 星
z u s h i 図 師
z u s h i 逗 子
|
295c821fcf59ae2271ea3fc070fc63b7bd10e755 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.48/5_48.sce | 80e21f4cf8433b15bdfee38fe6556c864e079130 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 628 | sce | 5_48.sce | Kp=29.64;//dissociation pressure of CaCO3 in mm of Hg//
printf('CaCO3+C=CaO+2CO for the dissociation of CaCO3=CaO+CO2');
printf('\nKp1=PCO2=29.64/760=0.039atm\nFor the reduction of CO2 by C,CO2+C=2CO.Kp2=PCO^2/PCO2\nVolume percent=mol percent=mole fraction*100\nPCO=xCO*total pressure=xCO since total pressure=1atm\nxCO=PCO=0.724atm and xCO2=PCO2=0.276atm');
printf('\nKp2=PCO^2/PCO2=(0.724)^2/0.276=1.9atm');
Kp1=0.039;//dissociation pressure of CaCO3 in atm//
Kp2=1.9;
Kp3=Kp1*Kp2;//equilibrium constant for overall reaction in atm^2//
printf('\nEquilibrium constant for overall reaction=Kp3=%f=7.41*10^-2atm^2',Kp3);
|
3bd4754494a17016e15bb1ab1090c4bd4453422b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH4/EX4.1/4_1.sce | bf643cc0578977a75b4f290c8ee41a0819dfa2ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | 4_1.sce | clc
//Intitalisation of variables
clear
v= 240 //ml
p= 1.25 //atm
p1= 0.75 //atm
n= 2
//CALCULATIONS
v1= v*p/p1
dv= v1-v
V= n*v1
//RESULTS
printf ('Increase in volume = %.f ml',dv)
printf ('\n Final volume = %.f ml',V)
|
1a6b7f2b87976d649b482057094d2f5d94498fd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH1/EX1.34/Example1_34.sce | 1034da9e11ab276cda32cadc62f73adce9b50790 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 423 | sce | Example1_34.sce | // Example 1.34
clear; clc; close;
format('v',7);
// Given data
P=8;//no. of Poles
f=50;//in Hz
Tm=150;//in N-m
N=650;//in rpm
R2=0.6;//in ohm
S=4;//in %
//Calculations
S=S/100;//Slip
Ns=120*f/P;//in rpm
Sm=(Ns-N)/Ns;//Maximum Slip
//Formula : T proportional to S*E2^2*R2/(R2^2+(S*X2)^2)
X2=R2/Sm;//in ohm
T=Tm*S*(R2^2+(Sm*X2)^2)/Sm/(R2^2+(S*X2)^2);//In N-m
disp(T,"Torque at 4% slip (in N-m) : ");
|
2385f79dbcdfebad5aac848fae96afd4891edc83 | 09fb666c0701b49ab031e9c772024f96f6ed1c7e | /Lab 0/laboratorio0.sce | 90063d8e2d65681d21fee25691daa82db05e9ed2 | [] | no_license | Alejandro287/Numerica_Methods | ccbf8fa032809f6f6398a0f8100a268a750d8491 | 968f6cf10b651ff1049855a677753e6b2a44ca26 | refs/heads/master | 2020-04-02T02:45:35.586981 | 2018-10-20T16:38:01 | 2018-10-20T16:38:01 | 153,926,195 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | laboratorio0.sce | clc
UN_epsilon;
printf("\n")
UN_raiz_cuadrada(2,99,1e-10,10);
printf("\n")
UN_raiz_cuadrada(2,99,1e-10,15);
printf("\n")
p = UN_horner([3 7 0 -8 4],2);
disp('p = ')
disp(p)
printf("\n")
dx = UN_derivada_poli([3 7 0 -8 4]);
disp('dx = ')
disp(dx)
printf("\n")
UN_exp(0.5,10e-10,10);
printf("\n")
UN_exp(0.5,10e-10,15);
printf("\n")
|
16fc000fe0b9998dfb343cbdc9ac8abfe8fed62e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1962/CH1/EX1.7/example1_7.sce | 15755d89361df70fbf2cb559eb32820f4eaefec5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | example1_7.sce | //example 1.7
//page 21
clc; funcprot(0);
//initialisation of variable
//part1
y=poly([0 0.01 -1],'x','coeff');
z=roots(y);
disp(z(1),"distance between walls (m)");
//part2
mu=1.005/1000;//viscosity
sigma=-mu*10*(0.01-2*z(1));
disp(sigma,"shear stress on the wall(N/m^2)=");
//part3
y=20*10^-6;
sigma=mu*10*(0.01-2*y);
disp(sigma,"shear stress on the wall(N/m^2)=");
//part4
y=0.01/2;
disp(y,"distance at which stress becomes zero(m)=");
//part5
y=0.01/2;
disp(y,"distance at which velocity is maximum(m)=");
clear
|
3a79528b8c8b638550e31afc3caabbcb1d22166b | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/fpaacal_fcn.sce | 0305f343420e179a7b1812b8ea0671950a4a991b | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 34,806 | sce | fpaacal_fcn.sce | global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
kappa_constant = 30; // relationship of target current between subVt and lowsubVt range.
function dir_callback()
[a,b]=unix_g('acroread /home/ubuntu/rasp30/sci2blif/documentation/cal_guide.pdf &');
if b == 1 then messagebox("Install Adobe Reader via the Documents menu on main RASP Design gui. ", "Adode Reader not installed yet!", "scilab"); end
endfunction
function Choose_Board2_callback()
global board_num brdtype
Choose_Board2= findobj('tag','Choose_Board2');
if (Choose_Board2.value == 1) then
elseif (Choose_Board2.value == 2) then board_num=2; brdtype = ''; disp('You are now using the settings for the 3.0 Board');
elseif (Choose_Board2.value == 3) then board_num=3; brdtype = '_30a'; disp('You are now using the settings for the 3.0 A Board');
elseif (Choose_Board2.value == 4) then board_num=4; brdtype = '_30n'; disp('You are now using the settings for the 3.0 N Board');
elseif (Choose_Board2.value == 5) then board_num=5; brdtype = '_30h'; disp('You are now using the settings for the 3.0 H Board');
else
end
endfunction
function Choose_Chip2_callback()
global chip_num;
Choose_Chip2 = findobj('tag','Choose_Chip2');
chip_num = Choose_Chip2.string;
endfunction
function Initate_Amm_callback()
[amm_opt, amm_con] = unix_g('sudo chmod 777 /dev/prologix');
[amm_opt, amm_con1] = unix_g('sudo chmod 777 /dev/rasp30');
if amm_con then messagebox(["Prologix GPIB-USB Controller is not connected under the VM Devices tab." "Please select Prologix and initiate again."],"Ammeter is not Connected via USB Devices" , "info", "modal");
else disp("Ammeter has been initiated."); end
if amm_con1 then messagebox(["FPAA Board is not connected under the VM Devices tab." "Please select the board and initiate again."],"FPAA Board is not Connected via USB Devices" , "info", "modal");
else disp("FPAA Board has been initiated."); end
endfunction
function Step_1_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
disp('Step_1: Diode ADC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step01"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step01");
path = pwd();
messagebox('Before pressing OK, please make the connections as shown in Configuration A.',"Diode ADC Setup", "info", ["OK"], "modal");
// diode ADC
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_diodeADC_cal.sce",-1); //get hex measurements for diode ADC
unix_w("cp data_diodeADC_ivdd25V ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_diodeADC/data_diodeADC_chip"+chip_num+brdtype+"_ivdd25V');
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_diodeADC.sce",-1); // Call Diode ADC polifit function for six reference currents
disp('Step 1 is complete!');
endfunction
function Step_2_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
disp('Step 2: Drain DAC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step02"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step02");
path = pwd();
messagebox('Before pressing OK, please make the connections as shown in Configuration B.',"Drain DAC Setup", "info", ["OK"], "modal");
// drain DAC
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_drainDAC_cal.sce",-1); //get voltage measurements for drain DAC codes
unix_w("cp data_drainDAC_ivdd60V ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_drainDAC/data_drainDAC_chip"+chip_num+brdtype+"_ivdd60V');
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_drainDAC.sce",-1); // Call Drain DAC polifit function for matrix of reference drain dac voltages to get the voltage codes
unix_w("cp Vd_table_30mV ~/rasp30/prog_assembly/libs/chip_parameters/Vd_table/Vd_table_30mV_chip"+chip_num+brdtype);
disp('Step 2 is complete!');
endfunction
function Step_3_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
disp('Step 3: Gate DAC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step03"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step03");
path = pwd();
messagebox('Before pressing OK, please make the connections as shown in Configuration C.',"Gate DAC Setup", "info", ["OK"], "modal");
// gate DAC
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC_cal.sce",-1);//get voltage measurements for gate DAC codes
unix_w("cp data_gateDAC_ivdd25V ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC/data_gateDAC_chip"+chip_num+brdtype+"_ivdd25V');
unix_w("cp data_gateDAC_ivdd60V_0 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC/data_gateDAC_chip"+chip_num+brdtype+"_ivdd60V_0');
unix_w("cp data_gateDAC_ivdd60V_1 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC/data_gateDAC_chip"+chip_num+brdtype+"_ivdd60V_1');
unix_w("cp data_gateDAC_ivdd60V_0_ER ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC/data_gateDAC_chip"+chip_num+brdtype+"_ivdd60V_0_ER');
unix_w("cp data_gateDAC_ivdd60V_1_ER ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC/data_gateDAC_chip"+chip_num+brdtype+"_ivdd60V_1_ER');
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gateDAC.sce",-1); // Call gate DAC polifit function for 5 of reference gate dac voltages to get the voltage codes
// Plot the data
scf(5);clf(5);
plot2d("nn", gate_dac_ivdd25V_m(:,1), gate_dac_ivdd25V_m(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=1;
plot2d("nn", gate_dac_ivdd60V_m_0(:,1), gate_dac_ivdd60V_m_0(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=2;
plot2d("nn", gate_dac_ivdd60V_m_1(:,1), gate_dac_ivdd60V_m_1(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=3;
plot2d("nn", gate_dac_ivdd60V_m_0ER(:,1), gate_dac_ivdd60V_m_0ER(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=4;
plot2d("nn", gate_dac_ivdd60V_m_1ER(:,1), gate_dac_ivdd60V_m_1ER(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=5;
plot2d("nn", Gate_range_ivdd25V, gate_dac_fit_ivdd25V, style=1);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", Gate_range_ivdd60V_0, gate_dac_fit_ivdd60V_0, style=2);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", Gate_range_ivdd60V_1, gate_dac_fit_ivdd60V_1, style=3);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", Gate_range_ivdd60V_0ER, gate_dac_fit_ivdd60V_0ER, style=4);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", Gate_range_ivdd60V_1ER, gate_dac_fit_ivdd60V_1ER, style=5);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
a=gca();a.data_bounds=[0 0; 300 6];
legend("ivdd2.5V","ivdd6V_0","ivdd6V_1","ivdd6V_0ER","ivdd6V_1ER","in_lower_right");
xtitle("","ADC code","Vg (V)");
disp('Step 3 is complete!');
endfunction
function Step_4_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
disp('Step 4: Gate coupling of Recover Injection Parameters');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step04"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step04");
path = pwd();
messagebox('Before pressing OK, please remove all Digilent connections as they are not needed.',"Step 4-6 Setup", "info", ["OK"], "modal");
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_v2i.sce',-1);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_i2v.sce',-1);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_v2h.sce',-1);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_h2v.sce',-1);
hex_1na=int(diodeADC_v2h(diodeADC_i2v(1e-09,chip_num,brdtype),chip_num,brdtype));
// Copy default files (only once at the first time)
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/Default_chip_para_TR_SP_RI_CP_FP.sce",-1);
pulse_width_table_path = "~/rasp30/prog_assembly/libs/chip_parameters/pulse_width_table";
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_swc_default "+pulse_width_table_path+"/pulse_width_table_swc_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_ota_default "+pulse_width_table_path+"/pulse_width_table_ota_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_otaref_default "+pulse_width_table_path+"/pulse_width_table_otaref_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_mite_default "+pulse_width_table_path+"/pulse_width_table_mite_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_dirswc_default "+pulse_width_table_path+"/pulse_width_table_dirswc_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_lowsubVt_swc_default "+pulse_width_table_path+"/pulse_width_table_lowsubVt_swc_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_lowsubVt_ota_default "+pulse_width_table_path+"/pulse_width_table_lowsubVt_ota_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_lowsubVt_otaref_default "+pulse_width_table_path+"/pulse_width_table_lowsubVt_otaref_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_lowsubVt_mite_default "+pulse_width_table_path+"/pulse_width_table_lowsubVt_mite_chip"+chip_num+brdtype);
unix_w("cp "+pulse_width_table_path+"/pulse_width_table_lowsubVt_dirswc_default "+pulse_width_table_path+"/pulse_width_table_lowsubVt_dirswc_chip"+chip_num+brdtype);
//Recover injection parameters
// Gate coupling calibration
unix_w("cp ~/rasp30/prog_assembly/libs/chip_parameters/chip_para/chip_para_RI_chip"+chip_num+brdtype+".asm chip_para_RI.asm');
unix_w("cp ~/rasp30/prog_assembly/libs/chip_parameters/chip_para/chip_para_TR_chip"+chip_num+brdtype+".asm chip_para_TR.asm');
disp('Step 4: In progress');
unix_w("sudo ~/rasp30/prog_assembly/libs/sh/asm2ihex.sh tunnel_revtun_SWC_CAB ~/rasp30/prog_assembly/libs/asm_code/tunnel_revtun_SWC_CAB_ver00.s43 16384 16384 16384");
fd = mopen('target_info_swc','wt'); mputl('0x0001 0x002d 0x0110 0x2302 0x0000 0xffff', fd); mclose(fd); // 45(Row) 272(Col) 10E-06(Target Current) 1
fd = mopen('target_info_ota','wt'); mputl('0x0001 0x0153 0x03a1 0x2302 0x0000 0xffff', fd); mclose(fd); // 339 929 10E-06 3
fd = mopen('target_info_otaref','wt'); mputl('0x0001 0x0152 0x03a1 0x2302 0x0000 0xffff', fd); mclose(fd); // 338 929 10E-06 2
fd = mopen('target_info_mite','wt'); mputl('0x0001 0x01d9 0x03d1 0x2302 0x0000 0xffff', fd); mclose(fd); // 473 977 10E-06 4
fd = mopen('target_info_dirswc','wt'); mputl('0x0001 0x0026 0x03b1 0x2302 0x0000 0xffff', fd); mclose(fd); // 38 945 10E-06 6
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_gate_coupling.sce",-1);
unix_w("cp chip_para_RI.asm ~/rasp30/prog_assembly/libs/chip_parameters/chip_para/chip_para_RI_chip"+chip_num+brdtype+".asm");
//////////////see if plot is okay if not open file
disp('Step 4 is complete!');
endfunction
function Step_5_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
disp('Step 5: Pulse width table for coarse injection paramerters');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step05"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step05");
path = pwd();
file_name = path + "/Scurve_char.xcos";
[path,fname,extension]=fileparts(file_name);
hid_dir=path+'.'+fname;
unix_s('mkdir -p '+hid_dir);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_v2i.sce',-1);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_i2v.sce',-1);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_v2h.sce',-1);
exec('~/rasp30/prog_assembly/libs/scilab_code/diodeADC_h2v.sce',-1);
hex_1na=int(diodeADC_v2h(diodeADC_i2v(1e-09,chip_num,brdtype),chip_num,brdtype));
//coarse program parameter
// S curve calibration for pulse_width_table @ coarse program
fd = mopen('input_vector','wt'); mputl('0x0000 0x0000 0x03e8 0xFFFF', fd); mclose(fd); // making fake input_vector
fd = mopen('output_info','wt'); mputl('0x0000', fd); mclose(fd); // making fake output_info
fd = mopen('Scurve_char.swcs','wt'); mputl('0 0 0 0',fd); mputl('45 272 1E-06 1',fd); mputl('339 929 1E-06 3',fd); mputl('338 929 1E-06 2',fd); mputl('473 977 1E-06 4',fd); mputl('38 945 1E-06 6',fd); mputl('46 272 50E-12 1',fd); mputl('339 945 50E-12 3',fd); mputl('338 961 50E-12 2',fd); mputl('473 978 50E-12 4',fd); mputl('39 945 50E-12 6',fd); mclose(fd);
exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/Recover_Injection_for_Scurve.sce",-1);
unix_w("cp ~/rasp30/prog_assembly/libs/chip_parameters/chip_para/chip_para_CP_chip"+chip_num+brdtype+".asm "+ path+'/chip_para_CP.asm');
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_Scurve.sce",-1);
pulse_width_table_path = "~/rasp30/prog_assembly/libs/chip_parameters/pulse_width_table";
unix_w("cp pulse_width_table_swc "+pulse_width_table_path+"/pulse_width_table_swc_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_ota "+pulse_width_table_path+"/pulse_width_table_ota_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_otaref "+pulse_width_table_path+"/pulse_width_table_otaref_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_mite "+pulse_width_table_path+"/pulse_width_table_mite_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_dirswc "+pulse_width_table_path+"/pulse_width_table_dirswc_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_lowsubVt_swc "+pulse_width_table_path+"/pulse_width_table_lowsubVt_swc_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_lowsubVt_ota "+pulse_width_table_path+"/pulse_width_table_lowsubVt_ota_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_lowsubVt_otaref "+pulse_width_table_path+"/pulse_width_table_lowsubVt_otaref_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_lowsubVt_mite "+pulse_width_table_path+"/pulse_width_table_lowsubVt_mite_chip"+chip_num+brdtype);
unix_w("cp pulse_width_table_lowsubVt_dirswc "+pulse_width_table_path+"/pulse_width_table_lowsubVt_dirswc_chip"+chip_num+brdtype);
disp('Step 5 is complete!');
endfunction
function Step_6_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 1;
disp('Step 6: Check Coarse & Fine Program Parameters')
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step06"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step06");
path = pwd();
file_name = path + "/Check_C_F_prog_para.xcos";
[path,fname,extension]=fileparts(file_name);
hid_dir=path+'.'+fname;
unix_s('mkdir -p '+hid_dir);
// Check Coarse & Fine Program parameters
etc5_callback;
fd = mopen('Check_C_F_prog_para.swcs','wt');
mputl('325 37 7E-09 1',fd); mputl('325 38 12E-09 1',fd); mputl('325 39 58E-09 1',fd); mputl('325 40 93E-09 1',fd); // SWC sub Vt
mputl('45 272 7E-09 1',fd); mputl('46 272 12E-09 1',fd); mputl('47 272 58E-09 1',fd); mputl('48 272 93E-09 1',fd); // SWC sub Vt
// mputl('49 272 500E-09 1',fd); mputl('50 272 1E-06 1',fd); mputl('51 272 5E-06 1',fd); mputl('52 272 10E-06 1',fd); // SWC above Vt
// mputl('53 272 900E-12 1',fd); mputl('54 272 500E-12 1',fd); mputl('55 272 100E-12 1',fd); mputl('56 272 50E-12 1',fd); // SWC low sub Vt
// mputl('358 18 2.000000e-10 1',fd); mputl('358 19 2.000000e-10 1',fd); mputl('358 20 2.000000e-10 1',fd); mputl('358 21 2.000000e-10 1',fd); // SWC low sub Vt
// mputl('358 22 2.000000e-10 1',fd); mputl('358 23 2.000000e-10 1',fd); mputl('358 24 2.000000e-10 1',fd); mputl('358 25 2.000000e-10 1',fd); // SWC low sub Vt
// mputl('339 929 5E-09 3',fd); mputl('339 945 10E-09 3',fd); mputl('339 961 50E-09 3',fd); mputl('339 977 100E-09 3',fd); // OTA sub Vt
// mputl('339 930 500E-09 3',fd); mputl('339 946 1E-06 3',fd); mputl('339 962 5E-06 3',fd); mputl('339 978 10E-06 3',fd); // OTA above Vt
// mputl('339 931 900E-12 3',fd); mputl('339 947 500E-12 3',fd); mputl('339 963 100E-12 3',fd); mputl('339 979 50E-12 3',fd); //OTA low sub Vt
// mputl('338 929 5E-09 2',fd); mputl('338 961 10E-09 2',fd); mputl('338 993 50E-09 2',fd); mputl('338 1009 100E-09 2',fd); // OTA_ref sub Vt
// mputl('338 930 500E-09 2',fd); mputl('338 962 1E-06 2',fd); mputl('338 994 5E-06 2',fd); mputl('338 1010 10E-06 2',fd); // OTA_ref above Vt
// mputl('338 931 900E-12 2',fd); mputl('338 963 500E-12 2',fd); mputl('338 995 100E-12 2',fd); mputl('338 1011 50E-12 2',fd); // OTA_ref low sub Vt
// mputl('473 977 5E-09 4',fd); mputl('473 978 10E-09 4',fd); mputl('473 979 50E-09 4',fd); mputl('473 980 100E-09 4',fd); // MITE sub Vt
// mputl('473 981 500E-09 4',fd); mputl('473 982 1E-06 4',fd); mputl('473 983 5E-06 4',fd); mputl('473 984 10E-06 4',fd); // MITE above Vt
// mputl('473 985 900E-12 4',fd); mputl('473 986 500E-12 4',fd); mputl('473 1009 100E-12 4',fd); mputl('473 1010 50E-12 4',fd); //MITE low sub Vt
// mputl('38 945 5E-09 6',fd); mputl('39 945 10E-09 6',fd); mputl('40 945 50E-09 6',fd); mputl('41 945 100E-09 6',fd); // DIR SWC sub Vt
// mputl('42 945 500E-09 6',fd); mputl('43 945 1E-06 6',fd); mputl('44 945 5E-06 6',fd); mputl('45 945 10E-06 6',fd); // DIR SWC above Vt
// mputl('46 945 900E-12 6',fd); mputl('47 945 500E-12 6',fd); mputl('48 945 100E-12 6',fd); mputl('49 945 50E-12 6',fd); //DIR SWC low sub Vt
mclose(fd);
fd = mopen('input_vector','wt'); mputl('0x0000 0x0000 0x03e8 0xFFFF', fd); mclose(fd); // making fake input_vector
fd = mopen('output_info','wt'); mputl('0x0000', fd); mclose(fd); // making fake output_info
exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1);
exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce', -1);
disp('tunnel , reverse tunnel done');
exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/target_program_ver02_gui.sce', -1);
disp('target_program done');
disp('Step 6 is complete!');
endfunction
function Step_7_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 0;
disp('Step 7: Golden Nfet & Pfet');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step07"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step07");
messagebox('Before pressing OK, please make the connections as shown in Configuration F.',"Golden Nfet & Pfet Setup", "info", ["OK"], "modal");
// Golden nFET & pFET
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_nFETpFET_cal.sce",-1);
unix_w("cp data_nFET_IVg_curve ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_nFETpFET/data_nFET_IVg_curve_chip"+chip_num+brdtype);
unix_w("cp data_nFET_IVd_curve ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_nFETpFET/data_nFET_IVd_curve_chip"+chip_num+brdtype);
unix_w("cp data_pFET_IVg_curve ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_nFETpFET/data_pFET_IVg_curve_chip"+chip_num+brdtype);
unix_w("cp data_pFET_IVd_curve ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_nFETpFET/data_pFET_IVd_curve_chip"+chip_num+brdtype);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_nFETpFET.sce");
disp('Step 7 is complete!');
endfunction
function Step_8_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 0;
disp('Step 8: On-Chip DAC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step08"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step08");
path = pwd();
file_name = path + "/onchipDAC.xcos";
mkdir .onchipDAC;
[path,fname,extension]=fileparts(file_name);
hid_dir=path+'.'+fname;
messagebox('Before pressing OK, please make the connections as shown in Configuration E.',"On-Chip DAC Setup", "info", ["OK"], "modal");
// Onchip DAC
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC_cal.sce",-1);
//exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/DAC_cal.sce",-1);//Sahil added for dac with mite cal.
unix_w("cp data_onchipDAC00 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC00_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC01 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC01_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC02 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC02_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC03 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC03_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC04 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC04_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC05 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC05_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC06 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC06_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC07 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC07_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC08 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC08_chip"+chip_num+brdtype);
unix_w("cp data_onchipDAC09 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC/data_onchipDAC09_chip"+chip_num+brdtype);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_onchipDAC.sce"); // Call onchip ADC polifit function
// Plot the data
scf(6);clf(6);
plot2d("nn", onchip_dac00_char_data(:,1), onchip_dac00_char_data(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=1;
plot2d("nn", onchip_dac01_char_data(:,1), onchip_dac01_char_data(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=2;
plot2d("nn", onchip_dac02_char_data(:,1), onchip_dac02_char_data(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=3;
plot2d("nn", onchip_dac03_char_data(:,1), onchip_dac03_char_data(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=5;
plot2d("nn", onchip_dac04_char_data(:,1), onchip_dac04_char_data(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=6;
plot2d("nn", onchip_dac05_char_data(:,1), onchip_dac05_char_data(:,2));p = get("hdl"); p.children.mark_style = 2; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=1;
plot2d("nn", onchip_dac06_char_data(:,1), onchip_dac06_char_data(:,2));p = get("hdl"); p.children.mark_style = 2; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=2;
plot2d("nn", onchip_dac07_char_data(:,1), onchip_dac07_char_data(:,2));p = get("hdl"); p.children.mark_style = 2; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=3;
plot2d("nn", onchip_dac08_char_data(:,1), onchip_dac08_char_data(:,2));p = get("hdl"); p.children.mark_style = 2; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=5;
plot2d("nn", onchip_dac09_char_data(:,1), onchip_dac09_char_data(:,2));p = get("hdl"); p.children.mark_style = 2; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=6;
plot2d("nn", DAC00_HEX_range, DAC00_fit, style=1);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC01_HEX_range, DAC01_fit, style=2);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC02_HEX_range, DAC02_fit, style=3);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC03_HEX_range, DAC03_fit, style=5);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC04_HEX_range, DAC04_fit, style=6);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC05_HEX_range, DAC05_fit, style=1);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC06_HEX_range, DAC06_fit, style=2);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC07_HEX_range, DAC07_fit, style=3);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC08_HEX_range, DAC08_fit, style=5);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
plot2d("nn", DAC09_HEX_range, DAC09_fit, style=6);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
a=gca();a.data_bounds=[0 0; 150 2.6];
legend("DAC00","DAC01","DAC02","DAC03","DAC04","DAC05","DAC06","DAC07","DAC08","DAC09","in_upper_right");
xtitle("","ADC code","Vg (V)");
disp('Step 8 is complete!');
endfunction
function Step_9_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 0;
disp('Step 9: MITE ADC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step09"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step09");
path = pwd();
file_name = path + "/miteADC.xcos";
mkdir .miteADC;
[path,fname,extension]=fileparts(file_name);
hid_dir=path+'.'+fname;
// MITE ADC
// Copy default files (only once at the first time)
data_miteADC_path = "~/rasp30/prog_assembly/libs/scilab_code/characterization/char_miteADC";
unix_w("cp "+data_miteADC_path+"/data_miteADC473_977_default "+data_miteADC_path+"/data_miteADC473_977_chip"+chip_num+brdtype);
//unix_w("cp "+data_miteADC_path+"/data_miteADC473_978_default "+data_miteADC_path+"/data_miteADC473_978_chip"+chip_num+brdtype);
//unix_w("cp "+data_miteADC_path+"/data_miteADC473_979_default "+data_miteADC_path+"/data_miteADC473_979_chip"+chip_num+brdtype);
// Start miteADC calibration
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_miteADC_cal.sce",-1);
unix_w("cp data_miteADC473_977 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_miteADC/data_miteADC473_977_chip"+chip_num+brdtype);
//unix_w("cp data_miteADC473_978 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_miteADC/data_miteADC473_978_chip"+chip_num+brdtype);
//unix_w("cp data_miteADC473_979 ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_miteADC/data_miteADC473_979_chip"+chip_num+brdtype);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_miteADC.sce");
// Plot the data
scf(7);clf(7);
plot2d("nn", mite_473_977_10uA(:,1), mite_473_977_10uA(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=1;
//plot2d("nn", mite_473_978_10uA(:,1), mite_473_978_10uA(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=2;
//plot2d("nn", mite_473_979_10uA(:,1), mite_473_979_10uA(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.thickness = 3; p.children.line_mode="off";p.children.mark_foreground=3;
plot2d("nn", MITE_range_977, MITE_fit_977, style=1);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
//plot2d("nn", MITE_range_978, MITE_fit_978, style=2);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
//plot2d("nn", MITE_range_979, MITE_fit_979, style=3);p = get("hdl"); p.children.line_style = 1; p.children.thickness = 3; p.children.thickness = 3;p.children.line_mode="on";
a=gca();//a.data_bounds=[0 0; 150 2.6];
legend("mite_473_977","in_upper_right"); //legend("mite_473_977","mite_473_978","mite_473_979","in_upper_right");
xtitle("","ADC code","Vg (V)");
disp('Step 9 is complete!');
endfunction
function Step_10_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 0;
disp('Step 10: FG OTA DAC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step10"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step10");
// FG OTA DAC calibration
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_FGOTADAC_cal.sce",-1);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_FGOTADAC.sce",-1);
unix_w("cp data_fgotadac ~/rasp30/prog_assembly/libs/scilab_code/characterization/char_fgotaDAC/data_fgotadac_chip"+chip_num+brdtype);
disp('Step 10 is complete!');
endfunction
function Step_11_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 0;
disp('Step 11: Ramp ADC');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step11"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step11");
// Compiled Ramp ADC calibration
disp('Step 11 is complete!');
endfunction
function Step_12_callback()
global file_name path fname extension chip_num board_num brdtype hex_1na showprog;
showprog = 0;
disp('Step 12: Vt0 Mismatch');
unix_g("mkdir ~/rasp30/prog_assembly/work"); //create temp folder for calibration
unix_g("mkdir ~/rasp30/prog_assembly/work/calibration_step12"); //create temp folder to store intermediate files
cd("~/rasp30/prog_assembly/work/calibration_step12");
// Mismatch calibration
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_mismatch_meas_cal.sce",-1);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_mismatch_cal.sce",-1);
exec("~/rasp30/prog_assembly/libs/scilab_code/characterization/char_mismatch.sce",-1);
mismatchmap=csvRead('mismatch_map');
[a1,b1]=unix_g('ls ~/rasp30/prog_assembly/libs/chip_parameters/mismatch_map/mismatch_map_chip'+chip_num+brdtype);
if (b1==0) then // 0 if no error occurred, 1 if error.
mismatch_map_pre = csvRead('~/rasp30/prog_assembly/libs/chip_parameters/mismatch_map/mismatch_map_chip'+chip_num+brdtype);
combined_mismatchmap=[mismatch_map_pre;mismatchmap]; // Option 1: attach new one at the end of the previous one
//combined_mismatchmap=mismatch_map_pre; combined_mismatchmap(:,3)=combined_mismatchmap(:,3)+mismatchmap(:,3)/2; // Mismatch accumulation
//combined_mismatchmap=mismatch_map_pre; combined_mismatchmap(:,3)=combined_mismatchmap(:,3)+mismatchmap(:,3)/4; // Mismatch accumulation
//combined_mismatchmap=mismatch_map_pre; combined_mismatchmap(:,3)=combined_mismatchmap(:,3)+mismatchmap(:,3)/8; // Mismatch accumulation
//combined_mismatchmap=mismatch_map_pre; combined_mismatchmap(:,3)=combined_mismatchmap(:,3)+mismatchmap(:,3)/16; // Mismatch accumulation
end
if (b1~=0) then // 0 if no error occurred, 1 if error.
combined_mismatchmap=mismatchmap;
end
csvWrite(combined_mismatchmap, 'mismatch_map_combined');
unix_w("cp mismatch_map_combined ~/rasp30/prog_assembly/libs/chip_parameters/mismatch_map/mismatch_map_chip"+chip_num+brdtype);
disp('Step 12 is complete!');
endfunction
|
c8b9951510e481dc697424c9e930eea70ad2eef6 | 542cf0bb990e80712856b7ab778624c29538a49d | /demodulatorResearch/demodulators/SsbDemodulator/phaseShifter.sci | 5a17b4e54aae205f4992bad68bbde389a01ec1e6 | [] | no_license | wizardyesterday/RtlSdrDiags | e77cf60506deefa91d7b2fa9565bd7575ec5a6e2 | 19d3b1c2546b37738d8e1c2f175b9a6e59415871 | refs/heads/master | 2023-08-16T10:28:37.161708 | 2023-08-13T18:45:16 | 2023-08-13T18:45:16 | 219,863,229 | 21 | 1 | null | 2023-08-03T21:17:02 | 2019-11-05T22:32:53 | C++ | UTF-8 | Scilab | false | false | 2,088 | sci | phaseShifter.sci | //******************************************************************
// This program generates the required filter coefficients for a
// 90 degree phase shifter so that a single sideband signal can be
// demodulated. The filter has an odd number of taps, and the group
// delay is G = (N - 1)/2, where N is the number of taps in the
// filter. When processing an IQ signal pair, the Q component of
// the signal is passed through the phase shifter, and the I
// component is delayed by G/2 samples. This can be realized by a
// FIR filter that has G delay elements.
// The filter specifications are listed below.
//
// Filter Type: Hilbert transformer.
// Window Function: Hamming.
//
// Chris G. 08/17/2017
///******************************************************************
//******************************************************************
// Function declarations.
//******************************************************************
//******************************************************************
// Set up parameters.
//******************************************************************
// Sample rate is 8000 S/s.
Fsample = 8000;
// Number of taps for our filter.
n = 31;
//******************************************************************
// Generate the FIR filter coefficients and magnitude of frequency
// response..
//******************************************************************
//------------------------------------------------------------------
// This will be a Hilbert transformer with a Hamming window
// applied to the coefficients.
//------------------------------------------------------------------
h = hilb(n,'hm');
// Compute magnitude and frequency points.
[hm,fr] = frmag(h,1024);
//******************************************************************
// Plot magnitudes.
//******************************************************************
set("figure_style","new");
title("Phase Shifter Filter");
a = gca();
a.margins = [0.225 0.1 0.125 0.2];
a.grid = [1 1];
a.x_label.text = "F, Hz";
a.y_label.text = "|H|";
plot2d(fr*Fsample,hm);
|
80ec00f9f9f6c368b543a33d95f6ca9742531b76 | 67310b5d7500649b9d53cf62226ec2d23468413c | /tags/archive/TestCaseGenerator-Plugin-OpeningSequenceCoverage/trunk/tests/large-system-tests/inputs/jEdit/ground_truth/OpeningSequenceCoverage/length-1/max-150/t84.tst | 50c691ca3dfc434b6bd80e32da23d2ee53844271 | [] | no_license | csnowleopard/guitar | e09cb77b2fe8b7e38d471be99b79eb7a66a5eb02 | 1fa5243fcf4de80286d26057db142b5b2357f614 | refs/heads/master | 2021-01-19T07:53:57.863136 | 2013-06-06T15:26:25 | 2013-06-06T15:26:25 | 10,353,457 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 661 | tst | t84.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TestCase>
<Step>
<EventId>e38</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e72</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e41</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e77</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e42</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e35</EventId>
<ReachingStep>false</ReachingStep>
</Step>
</TestCase>
|
f455ab02cd03a97a3981175034b243fd1832dfd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH7/EX7.9/7_9.sce | 3ee7180cc9c247c0bda64555d69aaaaca753c245 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 7_9.sce | //Eg-7.9
//pg-355
clear
clc
y = [2 9 24 47 78];
t = [0 1 2 3 4];
//since P0 = 1 b0 will be as
P0 = [1 1 1 1 1];
b0 = sum(y)/5;
//P1 = t-G1
G1 = sum(t)/5;
//b1 = summation(P1*y)/summation(P1^2)
P1 = t - [G1 G1 G1 G1 G1];
b1 = sum(P1.*y)/sum(P1^2);
//P2 = (t-G2)P1 - d2
//G2 = summation(t*P1^2)/summation(P1^2)
G2 = sum(t.*P1^2)/sum(P1^2);
//d2 = summation(t*P1*P0)/summation(P0^2)
d2 = sum(t.*P1.*P0)/sum(P0^2);
P2 = (t-[G2 G2 G2 G2 G2]).*P1 - [d2 d2 d2 d2 d2]
b2 = sum(P2.*y)/sum(P2^2);
printf('Therefore the expression is V = (%f)P0 + (%f)P1 + (%f)P2,\n where P0 = 1, P1 = (t-2), P2 = (t-2)\n\n Finally V = 4*t^2 + 3*t + 2\n\n',b0,b1,b2) |
d34fb6457a81211a3731efb00a3a07a3a5b865f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH32/EX32.3/Example32_3.sce | 4c58296f1cf8533351e541fb848f555ea4c6c5b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,126 | sce | Example32_3.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART III : SWITCHGEAR AND PROTECTION
// CHAPTER 6: CIRCUIT BREAKER
// EXAMPLE : 6.3 :
// Page number 545-546
clear ; clc ; close ; // Clear the work space and console
// Given data
kV = 132.0 // Voltage(kV)
pf = 0.3 // Power factor of the fault
K3 = 0.95 // Recovery voltage was 0.95 of full line value
f_n = 16000.0 // Natural frequency of the restriking transient(Hz)
// Calculations
kV_phase = kV/3**0.5 // System voltage(kV)
sin_phi = sind(acosd(pf)) // Sinφ
K2 = 1.0
v = K2*K3*kV/3**0.5*2**0.5*sin_phi // Active recovery voltage(kV)
V_max_restrike = 2*v // Maximum restriking voltage(kV)
t = 1.0/(2.0*f_n) // Time(sec)
RRRV = V_max_restrike/(t*10**6) // Rate of rise of restriking voltage(kV/µ-sec)
// Results
disp("PART III - EXAMPLE : 6.3 : SOLUTION :-")
printf("\nRate of rise of restriking voltage, R.R.R.V = %.2f kV/µ-sec", RRRV)
|
acc8eae678e8a724672238a5f34dbe9abecec57b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH8/EX8.1/8_1.sce | eab0daa475a874a81bfd0ebf9e1e722b96df2c6e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | 8_1.sce | clear all; clc;
disp("Ex 8_1")
p=80//force in N
a=30*%pi/180
//Calculations
//Applying equations of equilibrium
//We get three equations and we solve for each component
//Solving by matrix method to obtain solution
A=[-1,0,0;0,1,0;0,0,((80*sin(a))+196.2)]//Putting the value of NC in equation 3
B=[-80*cos(a);((80*sin(a))+196.2);(80*cos(a)*0.2)-(80*sin(a)*0.4)]
C=inv(A)
D=C*B
F=D(1)
NC=D(2)
x=D(3)
y=x*1000
//Result
printf('\n The values are \n')
printf('\n F=%0.1f N\n NC=%0.0f N\n x=%0.5f m = %0.2f mm',F,NC,x,y)
|
bf8f61851cede1bf048297250edeb5937022b307 | 449d555969bfd7befe906877abab098c6e63a0e8 | /371/CH8/EX8.8/8_8.sci | d76b5d0b5cf3cc0e029ff65c7fdf354e71ab8cf6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sci | 8_8.sci | //Harmonic and Powerfactor with the Converter system//
//Example 8.8//
Wv=18.6;
h=6;
C=sqrt(h^2-(Wv^2*((h^2-1)^2)/2*10^4))*10^6/sqrt(h^2-1);//cosine of triggering angle//
C=sqrt(14.68/35);
printf('cosine of triggering angle=C=%f',C);
A=acos(C)*180/%pi;
printf('\ntriggering angle of the device=A=%fdegrees',A);//endof program//
|
9ab1b9f06a0b7c4d5a4abf4b7ee32bb8bed7cf81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /689/CH8/EX8.2/2.sce | ef80c4492f2172a883eb8de2bef4259c0a620fd5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 418 | sce | 2.sce | clc; funcprot(0);
//Example 8.2 Lift Equation
// Initialisation of variables
V = 90*1.467; // Velocity in ft/s
S = 300; //Wing Area.
rho = 0.00237;
W = 3000;
// Calculations
Cl = W*2/(rho*S*V^2); // From figure 8.8
//Results
disp("Corrosponding value of alpha for the above Lift Coefficient is 1.7 degree (from fig 8.8).",Cl,"Lift Coefficient for the above data is :");
|
e2b6969a05126c5fbe28a87c87d9147301d8f261 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/exec.man.tst | 37b75d8d1e644a7545f21f861fbdf4e4e08cc0df | [
"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 | 436 | tst | exec.man.tst | clear;lines(0);
// create a script file
write(TMPDIR+'/myscript','a=1;b=2')
// execute it
exec(TMPDIR+'/myscript')
who
//create a function
deff('y=foo(x)','a=x+1;y=a^2')
clear a b
//execute the function
foo(1)
// a is a variable created in the environment of the function foo
// it is destroyed when foo returns
who
x=1 //create x to make it known by the script foo
exec(foo)
// a and y are created in the current environment
who
|
c33e39ec10f8f37b9974e3792aafdde44c62a276 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH11/EX11.4/11_4.sce | 9de282c503110a76b70325da8f5096dc3453a6f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 231 | sce | 11_4.sce | clc
//initialisation of variables
P1= 2000//psi
V1= 1500 //in^3
T2= 250 //F
T1= 75 //F
V2= 1000 //in^3
//CALCULATIONS
P2= (P1+14.7)*V1*(T2+460)/((T1+460)*V2)
P3= P2-14.7
//RESULTS
printf ('guage pressure = %.f psi',P3)
|
c73f65760d004a265536f837fdf99e56c63399c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH16/EX81.7/81.sce | 99505960c63759129cd4aa837ec4d87c3d54398c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 81.sce | clc
//initialisation of variables
n1=750//rpm
z1=14//m
z2=70//m
z3=15//m
z4=45//m
//CALCULATIONS
N=n1*((z1*z3)/(z2*z4))//rpm
//RESULTS
printf('the driving gear on shaft=% f rpm',N)
|
4300b31ed6da004e05d924c18938148e0abbf723 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH22/EX22.10/22_10.sce | f7563f3be1ef0602d4605436a5bd659a79d5a657 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | 22_10.sce | clear//
//Variables
VCC = 5.0 //Source voltage (in volts)
RE = 100.0 //Emitter resistance (in kilo-ohm)
VBE = 0.7 //Emitter-base Voltage (in volts)
//Calculation
//Case 1 : when VBB = 0.2 V ->OFF
//Case 2: when VBB = 3 V ->ON
//Result
printf("\n When VBB = 0 V , LED is in OFF condition.\nWhen VBB = 3 V , LED is in ON condition.")
|
96bafbfbbdbf9822e3edfba434b71172a8dcf296 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH23/EX23.14/Ex23_14.sce | 1eb3cb4aac152f81bbdd174d9a2c05a66ce917d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,600 | sce | Ex23_14.sce |
function[r]=mag(A)
x=real(A)
y=imag(A)
r=sqrt(x^2+y^2)
endfunction
j=%i
Vl=220//line voltage
Vph=Vl/sqrt(3)//stator phase voltage
n=.65//ratio of no. of rotor winding turns to no. of stator winding turns
E2=n*Vph//phase voltage induced in the rotor winding at standstill
R2=.1//rotor resistance per phase
X2=.8//standstill reactance per phase
//at 5 % slip
s=5/100
X=s*X2//reactance per phase
Z2=R2+X*j//rotor impedance
e2=s*E2//rotor phase voltage
I2=e2/mag(Z2)
mprintf("Rotor current at 5 percent slip=%f A\n",I2)
//calculating rotor input
Prcu=3*I2^2*R2//total rotor copper losses
Pg=Prcu/s
mprintf("Rotor input=%f W\n",Pg)
//calculating total torque at 5% slip
Pm=Pg-3*I2^2*R2//mechanical power developed by the rotor
Ns=120*50/4//synchronous speed
Nr=Ns*(1-s)//speed of the rotor
T=60*Pm/(2*%pi*round(Nr))
mprintf("Total torque developed by the rotor at 5 percent slip=%f N-m\nTotal mechanical power at 5 percent slip=%f kW\n",T,Pm/1000)
//calculating rotor current at maximum torque
s_m=R2/X2//slip for maximum torque
I2m=s_m*E2/sqrt(R2^2+(s_m*X2)^2)
mprintf("Rotor current at maximum torque=%d A\n",round(I2m))
//calculating rotor input corresponding to maximum torque
Sm=3*round(I2m)^2*R2//total rotor copper losses
Pg=Sm/s_m
mprintf("Rotor input corresponding to maximum torque=%f W\n",Pg)
//calculating maximum torque
Pm=Pg-Sm
Nm=Ns*(1-s_m)
T=60*Pm/(2*%pi*round(Nm))
mprintf("Maximum torque=%f N-m\nSpeed at maximum torque=%d rpm\nMaximum mechanical power=%f kW",T,Nm,Pm/1000)
//answers vary from the textbook due to round off error
|
1dd691c4f58506e94ce1710becef38337d9d5131 | 449d555969bfd7befe906877abab098c6e63a0e8 | /539/CH9/EX9.3.a/Example_9_3a.sce | bce434165b08a4d29a85ec7260bd1aa3521ced7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | Example_9_3a.sce | //Determination of Phases Present
clear;
clc;
printf("\tExample 9.3\n");
printf("\n\tPart A");
C1=40; // Overall alloy composition
Cb=98;
Ca=10;
Wa=(Cb-C1)/(Cb-Ca);
Wb=(C1-Ca)/(Cb-Ca);
printf("\nMass fractions for alpha and beta phases are : %.2f and %.2f respectively\n",Wa,Wb);
//End |
b7cd0974ece92579dff9e3f75b6509190c7d6cbb | c2362ea8126f9c7e56db025d6b174fd2827e8f02 | /projects/01/And16.tst | e80fc2f57eadc80ce2a7996969ecbbfd8978111f | [] | no_license | itotallyrock/nand2tetris | d22a7280064ba6f72364d4e03a2dd98bb788ea45 | 034c11a5bb05d518a00834dddf3c48e2d2866ba6 | refs/heads/master | 2020-03-28T04:54:28.807199 | 2018-11-30T05:35:22 | 2018-11-30T05:35:22 | 147,743,945 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | tst | And16.tst |
load And16.hdl,
output-file And16.out,
compare-to And16.cmp,
output-list a%B3.16.3 b%B3.16.3 out%B3.16.3;
// Used these six test cases because it there were over 256 possibilities
set a %B0000000000000000,
set b %B0000000000000000,
eval,
output;
set a %B1111111111111111,
set b %B1111111111111111,
eval,
output;
set a %B1111111111111111,
set b %B0000000000000000,
eval,
output;
set a %B1010101010101010,
set b %B0101010101010101,
eval,
output;
set a %B1010101010101010,
set b %B0000000000000000,
eval,
output;
set a %B1010101010101010,
set b %B1111111111111111,
eval,
output;
|
4b03fecef7f8ee6eb772945b22d8bdfbf093c8b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH5/EX5.11/Ex5_11.sce | e44adeea539ad1418482287397fefeae8eca9382 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | Ex5_11.sce | clc
pmv = 15000 // present market value in Rs
ss = 6000 // sum needed to make it serviceable in Rs
ic = ss + pmv // investment cost in Rs
pbv = 30000 // present book value in Rs
sv = 15000 // salvage value in Rs
ui = pbv - sv // unamortized investment in Rs
printf("\n Investment cost = Rs %d\n Unamortized investment = Rs %d" , ic , ui)
|
e5efdb64de80112bf56bca49098462434a83030f | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH4/EX4.3/c4_3.sce | 1783cedd4bda8ae9d45fa6f338b37c8a707fbda5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,135 | sce | c4_3.sce | // (4.3) Steam enters a converging–diverging nozzle operating at steady state with p1 = 40 bar, T1= 400C, and a velocity of 10 m/s. The steam flows through the nozzle with negligible heat transfer and no significant change in potential energy. At the exit, p2 = 15 bar, and the velocity is 665 m/s. The mass flow rate is 2 kg/s. Determine the exit area of the nozzle, in m2.
//solution
//variable initialization
p1 = 40 //entry pressure in bar
T1 = 400 //entry temperature in degree celcius
V1 = 10 //entry velocity in m/s
P2 = 15 //exit pressure in bar
V2 =665 //exit velocity in m/s
mdot = 2 //mass flow rate in kg/s
//from table A-4
h1 = 3213.6 //specific enthalpy in in kj/kg
h2 = h1+((V1^2-V2^2)/2)/1000
//from table A-4
v2 = .1627 //specific volume at the exit in m^3/kg
A2 = mdot*v2/V2
printf('the exit area of the nozzle in m^2 is \n\t A2 = %e',A2) |
bc461d76e07f8bcecd1826667ca604f70e70a76e | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/4_3_2.sci | 31de19ab553d46623a37331808e605287482946f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 45 | sci | 4_3_2.sci | basis=100 //mol
FinalBasis=1250 //lb-moles/h |
47ca2c0e91619225d765270995063c9cae643559 | bb3c300381ad1a419b5fb40891e830e534656595 | /test/testcases/bad_get_args1.tst | bb5fb75f779d109172c95a3e65f5495d99e1047f | [] | no_license | DHorrible/visited_count | 60a082514dbce832fbd621223a44b0260300b34b | 5a7709b59c9feb2135844687d6303abb16991098 | refs/heads/master | 2021-04-17T00:41:52.110770 | 2020-03-24T22:53:14 | 2020-03-24T22:53:14 | 249,397,482 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 85 | tst | bad_get_args1.tst | METHOD='GET'
ARGS=''
OUT='Error: A GET request should contains two args (are time)!'
|
0a2a35afe2030a478dcb57fba265a5ba0c0aea18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH34/EX34.9/34_9.sce | 45116f68da9098d45f6633837288fb44acd1a2c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | 34_9.sce | //ques-34.9
//Calculating concentration of a solution
clc
ratio=1/0.4;//= Io/I
EC=6000;//(in L/mol/cm)
l=2;//thickness (in cm)
C=log10(ratio)/(EC*l);
printf("The concentration of the solution is %.8f mol/L.",C);
|
afe94911bb87814935bec9e4300936c8c46708ba | da5b40d917ec2982828bd9bdf06b18b7bf189f26 | /sim/scripts/turboexp.tst | 86363d770a451fddfa34375c602cdf17345c1dc0 | [] | no_license | psy007/NNPC-CHEMICAL-SIM- | 4bddfc1012e0bc60c5ec6307149174bcd04398f9 | 8fb4c90180dc96be66f7ca05a30e59a8735fc072 | refs/heads/master | 2020-04-12T15:37:04.174834 | 2019-02-06T10:10:20 | 2019-02-06T10:10:20 | 162,587,144 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,698 | tst | turboexp.tst | # turboexpander test (from old Hysim manual)
units Field
$thermo = VirtualMaterials.Peng-Robinson
/ -> $thermo
thermo + Nitrogen Carbon_Dioxide Methane Ethane PROPANE
thermo + ISOBUTANE n-BUTANE ISOPENTANE n-PENTANE n-Hexane
# define plant feed
feed = Stream.Stream_Material()
feed.In.T = 60
feed.In.P = 600
feed.In.MoleFlow = 100
feed.In.Fraction = 1.49 .2 91.22 4.96 1.48 .26 .2 .1 .06 .03
# define feed cooler
cooler = Heater.Cooler()
feed.Out -> cooler.In
cooler.Out.T = -105
cooler.DeltaP = 15
# high pressure separator
hp-sep = Flash.SimpleFlash()
cooler.Out -> hp-sep.In
# turbo expander
expander = Compressor.Expander()
expander.Efficiency = .75
expander.Out.P = 330
hp-sep.Vap -> expander.In
# low pressure separator
lp-sep = Flash.SimpleFlash()
expander.Out -> lp-sep.In
# valve
valve = Valve.Valve()
hp-sep.Liq0 -> valve.In
valve.Out.P = 335
demeth = Tower.Tower()
demeth.Stage_0
demeth.Stage_0 + 4 # just six stages`
cd demeth.Stage_0
f = Tower.Feed()
/lp-sep.Liq0 -> f.Port
v = Tower.VapourDraw()
v.Port.P = 330
#v.Port.MoleFlow = 21.7 # overhead flow spec
v.estF = Tower.Estimate('MoleFlow')
v.estF.Value = 22
#estT = Tower.Estimate('T')
#estT.Value = -120
cd ../Stage_1
f = Tower.Feed()
f.Port -> /valve.Out
cd ../Stage_5
l = Tower.LiquidDraw()
l.Port.P = 335
reb = Tower.EnergyFeed(1)
#reb.Port.Energy = 0.065e6
l.Port.Fraction.METHANE = 0.01
estT = Tower.Estimate('T')
estT.Value = 0
cd ..
/overhead = Stream.Stream_Material()
/overhead.In -> Stage_0.v.Port
/bottoms = Stream.Stream_Material()
/bottoms.In -> Stage_5.l.Port
TryToSolve = 1 # start calculation - turned off by default
/overhead.Out
/bottoms.Out
copy /
paste /
/bottoms.In
/RootClone.bottoms.In
|
c5765cacade6dbc66ef3cc1620cd9ac3ca4873b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH4/EX4.42/42.sce | 5feee93592abf8cb9888546b0a26e046d9029a28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sce | 42.sce | clc
p1=7.5*10^5; //N/m^2
C1=140; //m/s
h1=950*10^3; //J/kg
p2=2*10^5; //N/m^2
C2=280; //m/s
h2=650*10^3; //J/kg
m=5; //kg/s
W=(h1-h2)+(C1^2-C2^2)/2
Power=m*W/1000;
disp("Power capacity of turbine = ")
disp(Power)
disp("kW") |
05b023f20bd57c83d129dbd9ce7f1da8507c93d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH16/EX16.14/16_14.sce | f27fc38220a31b5a289c274bc5b54b7f817e7140 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 331 | sce | 16_14.sce | //ques-16.14
//Calculating energy of activation of the reaction
clc
T1=300; T2=350;//temperature (in K)
t1=20; t2=5;//time (in min)
//1st order reaction
k1=0.6932/t1; k2=0.6932/t2//(in /min)
Ea=(log10(k2/k1)*2.303*8.314*T1*T2)/(T2-T1);//energy of activation
printf("Energy of activation of the reaction is %d J/mol.",Ea);
|
aae433c87ff557add86aaf08c5cad17719044b81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /506/CH6/EX6.2/Example6_2.sce | 1a86406eef3c1edfc5ed0bc293678e24f06a6e48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | Example6_2.sce | clear;
clc;
//Caption: To verify given equation
disp('NOTE: We will write A with a bar on its top as a ');
disp('To verify');
disp(' A + aB = A + B');
disp('We know that B + 1 = 1 and A1 = A');
disp('A + aB = A(B+1) + aB = AB + A + aB =');
disp('(A + a)B + A = B + A');
disp('which is equal to RHS')
//end |
2d1d93a53ad5aad4297d733b6002ec289395a521 | 449d555969bfd7befe906877abab098c6e63a0e8 | /746/DEPENDENCIES/8_06.sci | 87e0e9ddaa1a1d0e3ed1413c1472704e818edc50 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 446 | sci | 8_06.sci | //Flow rate of crude oil(in bbl):
Q=1.6*10^6;
//Inside diamete of pipe(i inches):
D=48;
//Maximum allowable pressure(in psi):
p2=1200;
//Minimum pressure required to keep gases dissolves(in psi):
p1=50;
//Specific gravity of crde oil:
SG=0.93;
//Viscosity at 140 F(in lbf-s/ft^2):
u=3.5*10^-4;
//Efficincy of pump:
Effp=0.85;
//Density(in slug/ft^3):
d=1.94;
//Viscosity (in lbf-sec):
u=3.5*10^-4;
//Friction factor:
f=0.017;
|
430aa085f543d7e425204d19dc86702d2cf4ac22 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1835/CH11/EX11.6/Ex11_6.sce | fb6f9e84f66c33fe1d0ee38710ecf16b0d8bbab3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,510 | sce | Ex11_6.sce | //CHAPTER 11 ILLUSRTATION 6 PAGE NO 294
//TITLE:VIBRATIONS
//FIGURE 11.14
clc
clear
//===========================================================================================
//INPUT DATA
PI=3.147
g=9.81// ACCELERATION DUE TO GRAVITY IN N /m^2
D=.06// DIAMETER OF SHAFT IN m
L=3// LENGTH OF SHAFT IN m
W1=1500// WEIGHT ACTING AT C IN N
W2=2000// WEIGHT ACTING AT D IN N
W3=1000// WEIGHT ACTING AT E IN N
L1=1// LENGTH FROM A TO C IN m
L2=2// LENGTH FROM A TO D IN m
L3=2.5// LENGTH FROM A TO E IN m
I=PI*D^4/64
E=200*10^9// YOUNGS MODUKUS OF SHAFT MATERIAL IN Pascals
//===========================================================================================
DELTA1=W1*L1^2*(L-L1)^2/(3*E*I*L)// STATIC DEFLECTION DUE TO W1
DELTA2=W2*L2^2*(L-L2)^2/(3*E*I*L)// STATIC DEFLECTION DUE TO W2
DELTA3=W2*L3^2*(L-L3)^2/(3*E*I*L)// STATIC DEFLECTION DUE TO W2
Fn=.4985/(DELTA1+DELTA2+DELTA3)^.5// FREQUENCY OF TRANSVERSE VIBRATION IN Hz
//==========================================================================================
printf('FREQUENCY OF TRANSVERSE VIBRATION = %.3f Hz',Fn)
|
369c24179fe82f14026ea9361268bbaa179498e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH3/EX3.12/example3_12.sce | b194072d341b7cef4880e1d6c2d5aa9b3a59d02a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 577 | sce | example3_12.sce | // Determine maximum and average values of power
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 3-12 in page 159
clear; clc; close;
// Given data
V1=230; // Input voltage in V
N=1/3; // Turn ratio
Rl=200; // Load resistance in ohms
// Calculation
V2=V1*N;
Vm=sqrt(2)*V2;
Im=Vm/Rl;
P=Im^2*Rl;
Vdc=0.318*Vm;
Idc=Vdc/Rl;
Pdc=Idc^2*Rl;
printf("Maximum load power = %0.2f W\n",P);
printf("Average load power = %0.2f W",Pdc);
// Result
// Maximum power = 58.78 W
// Average power = 5.94 W |
eb16f001d49d5b3eaa5856c2e3aff94dbc0be4f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH5/EX5.1/Ch05Ex1.sce | ffa3b0ce6c14afad8680abdcff4f528a041b8133 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 601 | sce | Ch05Ex1.sce | // Scilab Code Ex5.1: Page:297 (2011)
clc;clear;
n1 = 10;....// Order of interference maximum for lambda = 7000 angstrom
lambda1 = 7000;....// Wavelength of the light, angstrom
lambda2 = 5000;....// Wavelength of the light, angstrom
// As W = D*lambda/(2*d) then, x = n1*D*lambda1/(2*d) = n2*D*lambda2/(2*d), solving for n2
n2 = n1*lambda1/lambda2; // Order of interference maximum for lambda = 5000 angstrom
printf("\nThe order of interference maximum for wavelength of 5000 angstrom = %2d ", n2);
// Result
// The order of interference maximum for wavelength of 5000 angstrom = 14
|
55344f144e7c3a48827edc499e18ac8f9375a40e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1598/CH5/EX5.20/ex5_20.sce | de2520fab36f22d1ce888396b1fa60c3f9ca99ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | sce | ex5_20.sce | clc;
P1=100; //power in Watts
P2=500; //power in Watts
P=P2/P1; //ratio
disp("P>0 Therefore I2>I1"); //displaying result |
23d75d262da79043587a3f46ad8c66bf029b76ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH4/EX4.4/4.sce | 8ba14230be01bbb551d21e6364485ecef17db120 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | sce | 4.sce | clc
//Example 4.4
//calculate the change in internal energy of the system
p=14.7;//lbf/in^2 atmospheric pressure
dV=1;//ft^3 change in volume
dW=p*dV*(144/778)//Btu work done
dQ=-42;//Btu heat removed from the system
dU=dQ-dW//Btu change in internal energy of the system
printf("the change in internal energy of the system is %f Btu",dU); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.