-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilter.astronomik.nb
3152 lines (2999 loc) · 123 KB
/
Filter.astronomik.nb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 10.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 125552, 3144]
NotebookOptionsPosition[ 121175, 3025]
NotebookOutlinePosition[ 121531, 3041]
CellTagsIndexPosition[ 121488, 3038]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"\[Lambda]c2", "=",
RowBox[{"1", "-", "0.4"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]c3", "=",
RowBox[{"1", "-", ".666666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]c4", "=",
RowBox[{"1", "-", ".8"}]}], " "}], "\n",
RowBox[{
RowBox[{"\[Lambda]c5", "=",
RowBox[{"1", "-", ".933333333"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]c6", "=",
RowBox[{"1", "-", ".933333333"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]c7", "=",
RowBox[{"1", "-", ".866666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]c8", "=",
RowBox[{"1", "-", ".733333333"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]d2", "=",
RowBox[{"1", "-", "0.466666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]d3", "=",
RowBox[{"1", "-", "0.8"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]d4", "=",
RowBox[{"1", "-", "0.933333333"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]d5", "=", " ",
RowBox[{"1", "-", "1"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]d6", "=",
RowBox[{"1", "-", "1"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]d7", "=",
RowBox[{"1", "-", "0.933333333"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]d8", "=",
RowBox[{"1", "-", "0.733333333"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]e2", "=",
RowBox[{"1", "-", "0.533333333"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]e3", "=",
RowBox[{"1", "-", "0.8"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]e4", "=",
RowBox[{"1", "-", "0.866666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]e5", "=",
RowBox[{"1", "-", "0.933333333"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]e6", "=",
RowBox[{"1", "-", "0.933333333"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]e7", "=",
RowBox[{"1", "-", "0.866666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]e8", "=",
RowBox[{"1", "-", "0.666666667"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]f2", "=",
RowBox[{"1", "-", "0.466666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]f3", "=",
RowBox[{"1", "-", "0.666666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]f4", "=",
RowBox[{"1", "-", "0.866666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]f5", "=", " ",
RowBox[{"1", "-", "0.866666667"}]}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]f6", "=",
RowBox[{"1", "-", "0.866666667"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]f7", "=",
RowBox[{"1", "-", "0.8"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]f8", "=",
RowBox[{"1", "-", "0.6"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]g2", "=",
RowBox[{"1", "-", "0.266666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]g3", "=",
RowBox[{"1", "-", "0.533333333"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]g4", "=",
RowBox[{"1", "-", "0.666666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]g5", "=", " ",
RowBox[{"1", "-", "0.666666667"}]}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]g6", "=",
RowBox[{"1", "-", "0.666666667"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]g7", "=",
RowBox[{"1", "-", "0.6"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]g8", "=",
RowBox[{"1", "-", "0.4"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]h2", "=",
RowBox[{"1", "-", "0."}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]h3", "=",
RowBox[{"1", "-", "0.333333333"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]h4", "=",
RowBox[{"1", "-", "0.4"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]h5", "=", " ",
RowBox[{"1", "-", "0.466666667"}]}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]h6", "=",
RowBox[{"1", "-", "0.4"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]h7", "=",
RowBox[{"1", "-", "0.333333333"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]h8", "=",
RowBox[{"1", "-", "0.133333333"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]i2", "=",
RowBox[{"1", "-", "0.266666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]i3", "=",
RowBox[{"1", "-", "0.066666667"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]i4", "=",
RowBox[{"1", "-", "0.066666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]i5", "=", " ",
RowBox[{"1", "-", "0.2"}]}], " "}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]i6", "=",
RowBox[{"1", "-", "0.133333333"}]}], "\[IndentingNewLine]",
RowBox[{"\[Lambda]i7", "=",
RowBox[{"1", "-", "0.066666667"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Lambda]i8", "=",
RowBox[{"1", "-", "0.333333333"}]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ic2", "=", "0.9546"}], " "}], "\[IndentingNewLine]",
RowBox[{"Ic3", "=", ".9719"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ic4", "=", ".959"}], " "}], "\n",
RowBox[{
RowBox[{"Ic5", "=", ".9686"}], " "}], "\[IndentingNewLine]",
RowBox[{"Ic6", "=", ".9764"}], "\[IndentingNewLine]",
RowBox[{"Ic7", "=", ".9631"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ic8", "=", ".9425"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Id2", "=", "0.9537"}], "\[IndentingNewLine]",
RowBox[{"Id3", "=", "0.975"}], "\[IndentingNewLine]",
RowBox[{"Id4", "=", "0.9346"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Id5", "=", " ", "0.9692"}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Id6", "=", "0.9744"}], " "}], "\[IndentingNewLine]",
RowBox[{"Id7", "=", "0.9672"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Id8", "=", "0.9483"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Ie2", "=", "0.955"}], "\[IndentingNewLine]",
RowBox[{"Ie3", "=", "0.972"}], "\[IndentingNewLine]",
RowBox[{"Ie4", "=", "0.9312"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ie5", "=", " ", "0.9667"}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ie6", "=", "0.9602"}], " "}], "\[IndentingNewLine]",
RowBox[{"Ie7", "=", "0.9642"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ie8", "=", "0.9489"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"If2", "=", "0.9544"}], "\[IndentingNewLine]",
RowBox[{"If3", "=", "0.9718"}], "\[IndentingNewLine]",
RowBox[{"If4", "=", "0.9237"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"If5", "=", " ", "0.9681"}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"If6", "=", "0.9601"}], " "}], "\[IndentingNewLine]",
RowBox[{"If7", "=", "0.9604"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"If8", "=", "0.9482"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Ig2", "=", "0.9529"}], "\[IndentingNewLine]",
RowBox[{"Ig3", "=", "0.9723"}], "\[IndentingNewLine]",
RowBox[{"Ig4", "=", "0.9208"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ig5", "=", " ", "0.9698"}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ig6", "=", "0.9568"}], " "}], "\[IndentingNewLine]",
RowBox[{"Ig7", "=", "0.9615"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ig8", "=", "0.9512"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Ih2", "=", "0.9531"}], "\[IndentingNewLine]",
RowBox[{"Ih3", "=", "0.9715"}], "\[IndentingNewLine]",
RowBox[{"Ih4", "=", "0.9197"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ih5", "=", " ", "0.9734"}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ih6", "=", "0.9585"}], " "}], "\[IndentingNewLine]",
RowBox[{"Ih7", "=", "0.9628"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ih8", "=", "0.9516"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Ii2", "=", "0.9526"}], "\[IndentingNewLine]",
RowBox[{"Ii3", "=", "0.9735"}], "\[IndentingNewLine]",
RowBox[{"Ii4", "=", "0.9199"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ii5", "=", " ", "0.9694"}], " "}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Ii6", "=", "0.9561"}], " "}], "\[IndentingNewLine]",
RowBox[{"Ii7", "=", "0.9612"}], "\[IndentingNewLine]",
RowBox[{"Ii8", "=", "0.9482"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.718758446640889*^9, 3.7187584466420307`*^9}, {
3.718758479698254*^9, 3.718758662290001*^9}, {3.718758694078211*^9,
3.718759013843557*^9}, {3.718759945232727*^9, 3.7187599755102253`*^9}, {
3.7187602116450863`*^9, 3.718760229755077*^9}, {3.718760887843862*^9,
3.718760980265841*^9}, {3.718761175455676*^9, 3.718761225057271*^9}, {
3.718761274911677*^9, 3.718761551747734*^9}, {3.718761978559587*^9,
3.71876225145277*^9}, {3.718762284804262*^9, 3.718762349395241*^9}, {
3.718811087889797*^9, 3.718811382347883*^9}, {3.718811449651223*^9,
3.718811551251636*^9}, {3.7188116462021837`*^9, 3.718811686551859*^9}, {
3.7188117564115753`*^9, 3.7188117579275103`*^9}, {3.718811881301477*^9,
3.718811961308694*^9}, {3.718812043395993*^9, 3.718812351249469*^9}}],
Cell[BoxData["0.6`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128719366503`*^9}],
Cell[BoxData["0.333333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812871946793*^9}],
Cell[BoxData["0.19999999999999996`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812871954151*^9}],
Cell[BoxData["0.06666666700000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812871961741*^9}],
Cell[BoxData["0.06666666700000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287196966*^9}],
Cell[BoxData["0.13333333300000005`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812871976904*^9}],
Cell[BoxData["0.26666666699999997`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128719846563`*^9}],
Cell[BoxData["0.5333333330000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812871991715*^9}],
Cell[BoxData["0.19999999999999996`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872001754*^9}],
Cell[BoxData["0.06666666700000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872011904*^9}],
Cell[BoxData["0"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872022582*^9}],
Cell[BoxData["0"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128720337553`*^9}],
Cell[BoxData["0.06666666700000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872044664*^9}],
Cell[BoxData["0.26666666699999997`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872054694*^9}],
Cell[BoxData["0.46666666700000003`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872064562*^9}],
Cell[BoxData["0.19999999999999996`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872073983*^9}],
Cell[BoxData["0.13333333300000005`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128720846653`*^9}],
Cell[BoxData["0.06666666700000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872093389*^9}],
Cell[BoxData["0.06666666700000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872102038*^9}],
Cell[BoxData["0.13333333300000005`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872111163*^9}],
Cell[BoxData["0.333333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872119837*^9}],
Cell[BoxData["0.5333333330000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872126883*^9}],
Cell[BoxData["0.333333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872136057*^9}],
Cell[BoxData["0.13333333300000005`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872143875*^9}],
Cell[BoxData["0.13333333300000005`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872153117*^9}],
Cell[BoxData["0.13333333300000005`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128721608877`*^9}],
Cell[BoxData["0.19999999999999996`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128721700373`*^9}],
Cell[BoxData["0.4`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872177741*^9}],
Cell[BoxData["0.733333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128721868677`*^9}],
Cell[BoxData["0.46666666700000003`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872194569*^9}],
Cell[BoxData["0.333333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872203628*^9}],
Cell[BoxData["0.333333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128722119904`*^9}],
Cell[BoxData["0.333333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872220376*^9}],
Cell[BoxData["0.4`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872228715*^9}],
Cell[BoxData["0.6`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872237546*^9}],
Cell[BoxData["1.`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287224545*^9}],
Cell[BoxData["0.666666667`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128722542887`*^9}],
Cell[BoxData["0.6`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872262398*^9}],
Cell[BoxData["0.5333333330000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872318328*^9}],
Cell[BoxData["0.6`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128723260098`*^9}],
Cell[BoxData["0.666666667`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872335525*^9}],
Cell[BoxData["0.8666666670000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872343539*^9}],
Cell[BoxData["0.733333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872352826*^9}],
Cell[BoxData["0.933333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872360716*^9}],
Cell[BoxData["0.933333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872370133*^9}],
Cell[BoxData["0.8`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872377936*^9}],
Cell[BoxData["0.8666666670000001`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872387227*^9}],
Cell[BoxData["0.933333333`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872395791*^9}],
Cell[BoxData["0.666666667`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872404479*^9}],
Cell[BoxData["0.9546`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872412731*^9}],
Cell[BoxData["0.9719`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287242136*^9}],
Cell[BoxData["0.959`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872429714*^9}],
Cell[BoxData["0.9686`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872438403*^9}],
Cell[BoxData["0.9764`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872446722*^9}],
Cell[BoxData["0.9631`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128724553137`*^9}],
Cell[BoxData["0.9425`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128724636917`*^9}],
Cell[BoxData["0.9537`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128724720592`*^9}],
Cell[BoxData["0.975`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128724804173`*^9}],
Cell[BoxData["0.9346`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872489018*^9}],
Cell[BoxData["0.9692`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287249758*^9}],
Cell[BoxData["0.9744`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128725068817`*^9}],
Cell[BoxData["0.9672`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872515218*^9}],
Cell[BoxData["0.9483`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872523761*^9}],
Cell[BoxData["0.955`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872532304*^9}],
Cell[BoxData["0.972`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872540638*^9}],
Cell[BoxData["0.9312`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872548847*^9}],
Cell[BoxData["0.9667`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872557417*^9}],
Cell[BoxData["0.9602`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872566031*^9}],
Cell[BoxData["0.9642`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872574575*^9}],
Cell[BoxData["0.9489`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872582652*^9}],
Cell[BoxData["0.9544`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872591111*^9}],
Cell[BoxData["0.9718`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128725993567`*^9}],
Cell[BoxData["0.9237`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872607589*^9}],
Cell[BoxData["0.9681`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872615912*^9}],
Cell[BoxData["0.9601`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287262436*^9}],
Cell[BoxData["0.9604`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872632533*^9}],
Cell[BoxData["0.9482`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287264071*^9}],
Cell[BoxData["0.9529`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872701166*^9}],
Cell[BoxData["0.9723`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128727097197`*^9}],
Cell[BoxData["0.9208`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872718631*^9}],
Cell[BoxData["0.9698`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872726616*^9}],
Cell[BoxData["0.9568`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872735269*^9}],
Cell[BoxData["0.9615`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872743229*^9}],
Cell[BoxData["0.9512`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872751893*^9}],
Cell[BoxData["0.9531`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872759863*^9}],
Cell[BoxData["0.9715`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872768326*^9}],
Cell[BoxData["0.9197`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.71881287277606*^9}],
Cell[BoxData["0.9734`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872784902*^9}],
Cell[BoxData["0.9585`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872793421*^9}],
Cell[BoxData["0.9628`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872802168*^9}],
Cell[BoxData["0.9516`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872810975*^9}],
Cell[BoxData["0.9526`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872820486*^9}],
Cell[BoxData["0.9735`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872828548*^9}],
Cell[BoxData["0.9199`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.7188128728375797`*^9}],
Cell[BoxData["0.9694`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872845831*^9}],
Cell[BoxData["0.9561`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872855124*^9}],
Cell[BoxData["0.9612`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872863645*^9}],
Cell[BoxData["0.9482`"], "Output",
CellChangeTimes->{3.718759910699147*^9, 3.7187602306964407`*^9,
3.718760984495994*^9, 3.718761239531065*^9, 3.718761553144809*^9,
3.718762351270204*^9, 3.718811687749619*^9, 3.7188119629468327`*^9,
3.718812355813787*^9, 3.718812872872388*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"BubbleChart", "[",
RowBox[{
RowBox[{"{", "\[IndentingNewLine]",
RowBox[{
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "1", ",", "Ic8"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c8"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "Ic7"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c7"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "3", ",", "Ic6"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c6"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "4", ",", "Ic6"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c5"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "5", ",", "Ic4"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c4"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "6", ",", "Ic3"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c3"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "7", ",", "Ic2"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]c2"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "1", ",", "Id8"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d8"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "2", ",", "Id7"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d7"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "3", ",", "Id6"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d6"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "4", ",", "Id5"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d5"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "5", ",", "Id4"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d4"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "6", ",", "Id3"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d3"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "7", ",", "Id2"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]d2"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "1", ",", "Ie8"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e8"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "2", ",", "Ie7"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e7"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "3", ",", "Ie6"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e6"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "4", ",", "Ie5"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e5"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "5", ",", "Ie4"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e4"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "6", ",", "Ie3"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e3"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"3", ",", "7", ",", "Ie2"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]e2"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"4", ",", "1", ",", "If8"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]f8"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"4", ",", "2", ",", "If7"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]f7"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"{",
RowBox[{"4", ",", "3", ",", "If6"}], "}"}], ",",
RowBox[{"Lighter", "[",
RowBox[{"Blue", ",", "\[Lambda]f6"}], "]"}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Style", "[",
RowBox[{