-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
2287 lines (2287 loc) · 81.2 KB
/
manifest.json
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
{
"version": 1,
"locale": "en_GB",
"platform": "4.4.1",
"metadata": {
"appmode": "static",
"primary_rmd": null,
"primary_html": "index.html",
"content_category": null,
"has_parameters": false
},
"packages": null,
"files": {
"404.html": {
"checksum": "c192c3a91adafd1516b67cb3aa142aaf"
},
"adjusted-coefficient-of-determination.html": {
"checksum": "50ffc388512ac4a53ba8398ef4b67327"
},
"an-example-of-hypothesis-testing.html": {
"checksum": "b04efa9f4b6f66f9284c0e2ec699f62f"
},
"another-example-of-a-one-sample-t-test.html": {
"checksum": "b96ae981f578443157e735a6fe6fd636"
},
"app/app.json": {
"checksum": "f4e7b5bbcc808807a93862ba56caa7d5"
},
"app/build_histogram/app.json": {
"checksum": "af2e14d58e4e53b16b859244d49a1fc5"
},
"app/build_histogram/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/build_histogram/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/chi-square/app.json": {
"checksum": "03672bc3ae9e8fb753905934bdc78883"
},
"app/chi-square/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/chi-square/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/CI_hist_app/app.json": {
"checksum": "cd14d6c20709c2d43c33b9dee5234a5e"
},
"app/CI_hist_app/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/CI_hist_app/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/corr_click/app.json": {
"checksum": "53768d4102210768066236e73352a3f3"
},
"app/corr_click/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/corr_click/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/edit/index.html": {
"checksum": "551f667063e959a41c8f65b1aa43d3e3"
},
"app/f_distribution/app.json": {
"checksum": "2e796ea2b1bdf351c03b3a531130e82f"
},
"app/f_distribution/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/f_distribution/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/forest/app.json": {
"checksum": "ad74780ffd57a7e8483e92758b9631f1"
},
"app/forest/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/forest/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/index.html": {
"checksum": "447778783dd90e28f0a40938dcfbc0b0"
},
"app/normal_pos_neg/app.json": {
"checksum": "71c2d068d43bdee132dc9d7557331633"
},
"app/normal_pos_neg/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/normal_pos_neg/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/randomisation/app.json": {
"checksum": "472bd566cf54259713f66796ea2d9c9f"
},
"app/randomisation/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/randomisation/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/regr_click/app.json": {
"checksum": "f8d2c60d719897887acf6222b025cc05"
},
"app/regr_click/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/regr_click/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/shinylive-sw.js": {
"checksum": "d6ff7593d915291b97c57f7a2632c787"
},
"app/shinylive/chunk-GWAOPURX.js": {
"checksum": "fb2dc929468a02c8f4c6748588928170"
},
"app/shinylive/Editor.css": {
"checksum": "a8401fdeb839219f79d0c769b5e2db2f"
},
"app/shinylive/Editor.js": {
"checksum": "ea5851df3cd9ee7c2391413449e21205"
},
"app/shinylive/load-shinylive-sw.js": {
"checksum": "d9fa3595d7718760dea1f41feffe52a9"
},
"app/shinylive/pyodide-worker.js": {
"checksum": "03ffa996c6908ee55cb24e2c76c7a9d2"
},
"app/shinylive/run-python-blocks.js": {
"checksum": "678bb150bf9cf7bc337b208f4f5e672f"
},
"app/shinylive/shinylive.css": {
"checksum": "46d3bce19e3e728a79f0a07e59adf358"
},
"app/shinylive/shinylive.js": {
"checksum": "0d4dca2f4f2dd914db23b508e3d31c7b"
},
"app/shinylive/style-resets.css": {
"checksum": "326179a3af08325314a9f92ef53b7b20"
},
"app/shinylive/webr/esbuild.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/libRblas.so": {
"checksum": "fd13b9763c979e9df90aeafe2ece6b90"
},
"app/shinylive/webr/libRlapack.so": {
"checksum": "f94f1429e42496f09c6e05b7d9249464"
},
"app/shinylive/webr/R.bin.data": {
"checksum": "160f7616e765c2668b7bd1a21df4e278"
},
"app/shinylive/webr/R.bin.js": {
"checksum": "a34b590e28af7829a79bb1241dbab8fe"
},
"app/shinylive/webr/R.bin.wasm": {
"checksum": "6f4cd65956de1248b54dcf7a23509795"
},
"app/shinylive/webr/repl/App.d.ts": {
"checksum": "45461e1112ad6f37590f602b60521bec"
},
"app/shinylive/webr/repl/components/Editor.d.ts": {
"checksum": "5b8695b453c0db4eaaa0bc8c7bed8cfa"
},
"app/shinylive/webr/repl/components/Files.d.ts": {
"checksum": "85184877fbba6a5cf7cdeac40f2698b1"
},
"app/shinylive/webr/repl/components/Plot.d.ts": {
"checksum": "3446e718672bb3130aa2df3e33eceadb"
},
"app/shinylive/webr/repl/components/Terminal.d.ts": {
"checksum": "d416d609d673331f431e42e58d02ba1c"
},
"app/shinylive/webr/repl/components/utils.d.ts": {
"checksum": "b9f9171cc64739ca15d789bbf6529271"
},
"app/shinylive/webr/tests/packages/webr.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/chan/channel-postmessage.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/console.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/error.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/proxy.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/robj.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/utils.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/webr-main.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/webr-r.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/tests/webR/webr-worker.test.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/shinylive/webr/vfs/etc/fonts/fonts.conf": {
"checksum": "6300427804c4677462c2b187d9e2d3d3"
},
"app/shinylive/webr/vfs/usr/lib/R/doc.data": {
"checksum": "c613fe632bde522c8dffb1b3b379bbaf"
},
"app/shinylive/webr/vfs/usr/lib/R/doc.js.metadata": {
"checksum": "ff5b55dc452a434ea166616f15146414"
},
"app/shinylive/webr/vfs/usr/lib/R/library/base/demo.data": {
"checksum": "b97fa10e3624a40ddc242cf1f90ca33e"
},
"app/shinylive/webr/vfs/usr/lib/R/library/base/demo.js.metadata": {
"checksum": "fe59ac9830a37f3e4cbf46dfd544dfa7"
},
"app/shinylive/webr/vfs/usr/lib/R/library/base/help.data": {
"checksum": "ab0d7b67ed5355d9d619f0366c6e713f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/base/help.js.metadata": {
"checksum": "580fcf389540dcacf761671ec8b56da9"
},
"app/shinylive/webr/vfs/usr/lib/R/library/base/html.data": {
"checksum": "23ff564f907182b4df63fc60c3f917c7"
},
"app/shinylive/webr/vfs/usr/lib/R/library/base/html.js.metadata": {
"checksum": "fd851526fb79ab86be421c2170b4005b"
},
"app/shinylive/webr/vfs/usr/lib/R/library/compiler/help.data": {
"checksum": "599db0a6ce40bcae3b87b0b819688f75"
},
"app/shinylive/webr/vfs/usr/lib/R/library/compiler/help.js.metadata": {
"checksum": "79639ae928d7ca7c6ae864bb40ac4212"
},
"app/shinylive/webr/vfs/usr/lib/R/library/compiler/html.data": {
"checksum": "4d603ac761ec2af3a1912c494500ea28"
},
"app/shinylive/webr/vfs/usr/lib/R/library/compiler/html.js.metadata": {
"checksum": "95a6c6c9ee587fd7187539b01ea421e2"
},
"app/shinylive/webr/vfs/usr/lib/R/library/compiler/tests.data": {
"checksum": "4acc43a3194602c51ea78605a52d8078"
},
"app/shinylive/webr/vfs/usr/lib/R/library/compiler/tests.js.metadata": {
"checksum": "3781d88991275b3dd34ce121eda11110"
},
"app/shinylive/webr/vfs/usr/lib/R/library/datasets/help.data": {
"checksum": "d03447e153be2429d4b19ddc22cef3c7"
},
"app/shinylive/webr/vfs/usr/lib/R/library/datasets/help.js.metadata": {
"checksum": "0bd7de3a34969adb89d8e97ad4ef93db"
},
"app/shinylive/webr/vfs/usr/lib/R/library/datasets/html.data": {
"checksum": "dc76029795e792f6da44ed3c01af5c7e"
},
"app/shinylive/webr/vfs/usr/lib/R/library/datasets/html.js.metadata": {
"checksum": "407d6c036ab875fcac40df7bcfb5dc21"
},
"app/shinylive/webr/vfs/usr/lib/R/library/graphics/demo.data": {
"checksum": "d008cd970f9bd1cb3846f80b20b21481"
},
"app/shinylive/webr/vfs/usr/lib/R/library/graphics/demo.js.metadata": {
"checksum": "f6332c7e2f56012d47b2ef05251a03af"
},
"app/shinylive/webr/vfs/usr/lib/R/library/graphics/help.data": {
"checksum": "3eb51649787c80accb652dcbc28f15d2"
},
"app/shinylive/webr/vfs/usr/lib/R/library/graphics/help.js.metadata": {
"checksum": "d55b593d09c345a69829fafef67c4a78"
},
"app/shinylive/webr/vfs/usr/lib/R/library/graphics/html.data": {
"checksum": "545916adabc6f64a4130064176e9efe7"
},
"app/shinylive/webr/vfs/usr/lib/R/library/graphics/html.js.metadata": {
"checksum": "3a7f8f6002abecac71886ca09f35fccf"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/afm.data": {
"checksum": "a3b09aa7bc18098190659e05580272d9"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/afm.js.metadata": {
"checksum": "b8e7a18d5d1adba8e15927a0492b956d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/demo.data": {
"checksum": "115c0b165ee413e82a3d0b3562c6b9f2"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/demo.js.metadata": {
"checksum": "f5df59543ddbdb38165abc0af959ee9e"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/enc.data": {
"checksum": "fddb700b1b442f714fb93e87c2cb6691"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/enc.js.metadata": {
"checksum": "3135aac16c77273aa91b2bc77958475f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/fonts.data": {
"checksum": "fa92dca6ba97a7bbe299a80374eae23a"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/fonts.js.metadata": {
"checksum": "32fc8ec23753b36a14cddda492ba08df"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/help.data": {
"checksum": "c95cf4e8a8f0c004c0322411a068b9a0"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/help.js.metadata": {
"checksum": "66e049c12f48d8d28fc3fc4d8de5f341"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/html.data": {
"checksum": "4c46557949a711ca822c220f3d6dbd48"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/html.js.metadata": {
"checksum": "6e8a0575f2ddc6399366c9b2cf897648"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/libs/cairo.so": {
"checksum": "99e6d60cbcb8b563f1d3bcc0c8b3b1ff"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/tests.data": {
"checksum": "8bb94b7774ac628dd9b2cb9a72c327a9"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grDevices/tests.js.metadata": {
"checksum": "3d93e643fa7f9ec2fccf5f09aca4605d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/doc.data": {
"checksum": "2111885c2c163465aa6f426c4fdb127b"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/doc.js.metadata": {
"checksum": "eee83c1c302dae5dd314a69667f04ab4"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/help.data": {
"checksum": "9ad4ef7ebc4f7bbb9ae53e5a2c12b8ff"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/help.js.metadata": {
"checksum": "e72a25dce883f5e4387988740fd5019b"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/html.data": {
"checksum": "5ffa3ef25a8aae28a05edf15f0061499"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/html.js.metadata": {
"checksum": "1777ecf014c3b5d0a199c703afe7a4a7"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/tests.data": {
"checksum": "fb3ef1850b3981673ba5090022ef468f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/grid/tests.js.metadata": {
"checksum": "3e4ce961edee97526a8b3090e3dba3f2"
},
"app/shinylive/webr/vfs/usr/lib/R/library/methods/help.data": {
"checksum": "226fe5164bf3195f1b31efdba3d6b50f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/methods/help.js.metadata": {
"checksum": "13e8e741be60b3ed96fab4db92c0055c"
},
"app/shinylive/webr/vfs/usr/lib/R/library/methods/html.data": {
"checksum": "bb65284618c6261b91aa98a4a15561c4"
},
"app/shinylive/webr/vfs/usr/lib/R/library/methods/html.js.metadata": {
"checksum": "52d580d6f64f0926d85899d6b0767959"
},
"app/shinylive/webr/vfs/usr/lib/R/library/methods/tests.data": {
"checksum": "4b88fcdf4bff83113cce4b235ff59e46"
},
"app/shinylive/webr/vfs/usr/lib/R/library/methods/tests.js.metadata": {
"checksum": "984f009b1cbc07d918de09edba403b31"
},
"app/shinylive/webr/vfs/usr/lib/R/library/parallel.data": {
"checksum": "90be568fcb4a583e70d135eccb700f16"
},
"app/shinylive/webr/vfs/usr/lib/R/library/parallel.js.metadata": {
"checksum": "4a12abed76e0ab0ab1f4b90460ae9cf6"
},
"app/shinylive/webr/vfs/usr/lib/R/library/splines/help.data": {
"checksum": "77fbefb1b6e697751f43c88c9e4704cc"
},
"app/shinylive/webr/vfs/usr/lib/R/library/splines/help.js.metadata": {
"checksum": "52abffe7ba66da311be56000f1d1d14d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/splines/html.data": {
"checksum": "abd8bf228df6b9e4f148db4d50dd9548"
},
"app/shinylive/webr/vfs/usr/lib/R/library/splines/html.js.metadata": {
"checksum": "36277e71756145d8a58eb555099570f7"
},
"app/shinylive/webr/vfs/usr/lib/R/library/splines/tests.data": {
"checksum": "2c970b50d6d05663c8297ed3db14e53d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/splines/tests.js.metadata": {
"checksum": "a75dfeb75efac9b43410c98ef35303c2"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/demo.data": {
"checksum": "81da0f6483fbea6d7d987b833adaf876"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/demo.js.metadata": {
"checksum": "6a7b734f0d0dc8d9535c2e07abe643d0"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/help.data": {
"checksum": "ef5d80f5b24368398d7046adc95677ff"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/help.js.metadata": {
"checksum": "ad9639d287b2617612512f9946b7bda9"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/html.data": {
"checksum": "e834dbf229ccd85231d4591bcb0e3827"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/html.js.metadata": {
"checksum": "7450f428d1fceeca9ab011520d6deba5"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/tests.data": {
"checksum": "dfc667adb987646af2e6811fcfe6d343"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats/tests.js.metadata": {
"checksum": "bee72a7c5cdb379d28c489baabd018f9"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats4/help.data": {
"checksum": "a1224e0d96dde8d1c4e8253f018dd507"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats4/help.js.metadata": {
"checksum": "05ff9d742c6ef55ccc4d2ea47f186bc6"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats4/html.data": {
"checksum": "ceb829990e018b1012b6307dfacb85ed"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats4/html.js.metadata": {
"checksum": "2241053863a66820a293b7f73df4ebf5"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats4/tests.data": {
"checksum": "d2606b2f293b232851e6daefc394391d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/stats4/tests.js.metadata": {
"checksum": "fd4eeb673585d7386c54d1117793c688"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tcltk.data": {
"checksum": "f57ef161fb0e0f00d52a7e6b6061bc5d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tcltk.js.metadata": {
"checksum": "5d72a09d13b6a7d6ff360afc88411296"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tools/help.data": {
"checksum": "2531c05718d9f41b67b0fa9dbaf2f27d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tools/help.js.metadata": {
"checksum": "75fad6e610298448e492e806ea752614"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tools/html.data": {
"checksum": "18bb7da2f57f17f3861169db44d34d7e"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tools/html.js.metadata": {
"checksum": "00de76ef4ac004e79baa552fe7485e3e"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tools/tests.data": {
"checksum": "660f40abb307aa37974ac2e2c63ff824"
},
"app/shinylive/webr/vfs/usr/lib/R/library/tools/tests.js.metadata": {
"checksum": "b84111befd4937058fdb76e166a3474e"
},
"app/shinylive/webr/vfs/usr/lib/R/library/translations.data": {
"checksum": "af4f0a099529b14f223390bdeef85eca"
},
"app/shinylive/webr/vfs/usr/lib/R/library/translations.js.metadata": {
"checksum": "82cb7a2a68d577a3d91cdab2de9b18cc"
},
"app/shinylive/webr/vfs/usr/lib/R/library/translations/DESCRIPTION": {
"checksum": "471e016ac4982952e6c5cb87565ef9f5"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/doc.data": {
"checksum": "00ebcf3db985426450d7ed0b437bcdc2"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/doc.js.metadata": {
"checksum": "cca6164d142e611937cad532007e30db"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/help.data": {
"checksum": "63602c21decf8890e767afffdb8eb696"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/help.js.metadata": {
"checksum": "bb4b9608a0f27be3bdf8a97d98fbfbfb"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/html.data": {
"checksum": "60c98be4662ce37f09b5885bf29af18f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/html.js.metadata": {
"checksum": "cb8199e33acd4f1569733069ca6aed80"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/misc.data": {
"checksum": "dc1fdc8566529881bf55d3e88fac4b6f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/misc.js.metadata": {
"checksum": "612cba7ef6f134d6e2ee8dd823227f0d"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/tests.data": {
"checksum": "ba8774d826134ca1932de522e8a1c43f"
},
"app/shinylive/webr/vfs/usr/lib/R/library/utils/tests.js.metadata": {
"checksum": "220061b4b9b42a95c6ea270ddf0215b6"
},
"app/shinylive/webr/vfs/usr/lib/R/share.data": {
"checksum": "a27ce626aa94c90bf3e77f6a8505a453"
},
"app/shinylive/webr/vfs/usr/lib/R/share.js.metadata": {
"checksum": "e3905e713fae6f1fff2d34abe245d54e"
},
"app/shinylive/webr/vfs/usr/lib/R/tests.data": {
"checksum": "9398e119126f8fa3b2acee6c432eb36b"
},
"app/shinylive/webr/vfs/usr/lib/R/tests.js.metadata": {
"checksum": "9ecb9f25f565a25d30f9aaace618852a"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSans-Bold.ttf": {
"checksum": "24d5e8ab973d38b3a7e30bd632bca199"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSans-BoldItalic.ttf": {
"checksum": "074e53d6c18a38856bde494e7383340e"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSans-Italic.ttf": {
"checksum": "faadc42c392f92b754b2a4322c5c4cb6"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSans-Regular.ttf": {
"checksum": "17b1a4cfa1a3397412f16eb1e271f44b"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSansMono-Bold.ttf": {
"checksum": "3fb27ce0b5f4b0dcb486f883b40dca82"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSansMono-Regular.ttf": {
"checksum": "b74a624c4a9a1cf70592ad154bb1e4f7"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSerif-Bold.ttf": {
"checksum": "eb8a8ba64d03bf76bc188d2e22ff9211"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSerif-BoldItalic.ttf": {
"checksum": "9337357b91c6b9134beef6448e1fbdd8"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSerif-Italic.ttf": {
"checksum": "858b3c0567bb168f142d8efd9601946e"
},
"app/shinylive/webr/vfs/usr/share/fonts/NotoSerif-Regular.ttf": {
"checksum": "811988e53e8c4aba75a5d2ce60bb362b"
},
"app/shinylive/webr/vfs/usr/share/gdal.data": {
"checksum": "a2957633e60da5fb68ca68aa79a21e59"
},
"app/shinylive/webr/vfs/usr/share/gdal.js.metadata": {
"checksum": "9d9a2ce5132237b103402c1c8a523a20"
},
"app/shinylive/webr/vfs/usr/share/proj.data": {
"checksum": "0a3cbdc7be8c1d3e451e02c0eb576584"
},
"app/shinylive/webr/vfs/usr/share/proj.js.metadata": {
"checksum": "45886af888cc96465a046ae01862e36b"
},
"app/shinylive/webr/vfs/usr/share/udunits.data": {
"checksum": "5c9adc002682bd8219115e47205abdc9"
},
"app/shinylive/webr/vfs/usr/share/udunits.js.metadata": {
"checksum": "1a5c14ca2d82ff8d174b641261079e23"
},
"app/shinylive/webr/vfs/var/cache/fontconfig/3830d5c3ddfd5cd38a049b759396e72e-le32d8.cache-7": {
"checksum": "7af75ba0f216cb019e8b8c82985649ca"
},
"app/shinylive/webr/vfs/var/cache/fontconfig/CACHEDIR.TAG": {
"checksum": "edad2301cde055e29b0d30b8d2f4b724"
},
"app/shinylive/webr/webr-serviceworker.js": {
"checksum": "eb11220c1ea84d1d787428461d147088"
},
"app/shinylive/webr/webr-serviceworker.js.map": {
"checksum": "f4d5aea5a00479a9508f3a54b63ceb83"
},
"app/shinylive/webr/webr-serviceworker.mjs": {
"checksum": "00dc4dda7ff2844e5a857acd97e1f385"
},
"app/shinylive/webr/webr-serviceworker.mjs.map": {
"checksum": "f7b029b77c6864ec90de167a04f20e4e"
},
"app/shinylive/webr/webr-worker.js": {
"checksum": "c12c27f8d067a79477e2ef7eda006d8b"
},
"app/shinylive/webr/webr-worker.js.map": {
"checksum": "02883e99538010557a05e2e3df9dc3ca"
},
"app/shinylive/webr/webr.cjs": {
"checksum": "aec35c8195775e12bd033c9d66037292"
},
"app/shinylive/webr/webr.cjs.map": {
"checksum": "507fb1bcbc67b9cfedf8ab277f5cb29d"
},
"app/shinylive/webr/webr.mjs": {
"checksum": "ba27da0d13aa5004ea5bddf3f0765f3c"
},
"app/shinylive/webr/webr.mjs.map": {
"checksum": "91d5e149b37c7393ffed34ff5bcbf2e2"
},
"app/shinylive/webr/webR/chan/channel-common.d.ts": {
"checksum": "fec049491a432f1ccbf3ce024bba3baa"
},
"app/shinylive/webr/webR/chan/channel-postmessage.d.ts": {
"checksum": "eb527fb0f33c8fcc5722772045684957"
},
"app/shinylive/webr/webR/chan/channel-service.d.ts": {
"checksum": "6e7e5f5796d610ea1bb783c1acfa388d"
},
"app/shinylive/webr/webR/chan/channel-shared.d.ts": {
"checksum": "b8238297c56343a6f1703187c16db0b0"
},
"app/shinylive/webr/webR/chan/channel.d.ts": {
"checksum": "5edf98282e3eaaf75a81e7ac9451d07e"
},
"app/shinylive/webr/webR/chan/message.d.ts": {
"checksum": "7705b5d065fc7c9ec24c5906bcb3e1e9"
},
"app/shinylive/webr/webR/chan/queue.d.ts": {
"checksum": "88820d2b2237896b22d15da0bb8246ea"
},
"app/shinylive/webr/webR/chan/serviceworker.d.ts": {
"checksum": "6d929e5cd8ad392cfa10734d88c25d67"
},
"app/shinylive/webr/webR/chan/task-common.d.ts": {
"checksum": "fd7246d4024268a546f1b93e2c67a519"
},
"app/shinylive/webr/webR/chan/task-main.d.ts": {
"checksum": "f6f605da203f29469a5b4d38b2c0bcce"
},
"app/shinylive/webr/webR/chan/task-worker.d.ts": {
"checksum": "cf6b12ffd3797cb9303bbd190351eb4b"
},
"app/shinylive/webr/webR/compat.d.ts": {
"checksum": "33eda8bd4455ab1b10c7e580db558f45"
},
"app/shinylive/webr/webR/config.d.ts": {
"checksum": "236fa02f8d4546e85a6ecc26cbc6569e"
},
"app/shinylive/webr/webR/console.d.ts": {
"checksum": "591c23a125e11dcf3dd2e959cfdc06b9"
},
"app/shinylive/webr/webR/emscripten.d.ts": {
"checksum": "dd6eed95be831dd299761a0a13f7c749"
},
"app/shinylive/webr/webR/error.d.ts": {
"checksum": "f6ab6e58de6eb63a7d7b16aaa48be714"
},
"app/shinylive/webr/webR/payload.d.ts": {
"checksum": "eb9cd4d5c9df6f2a1a9b20e70e06aa35"
},
"app/shinylive/webr/webR/proxy.d.ts": {
"checksum": "57c4fcbdf5465a962806ec8f84f72f91"
},
"app/shinylive/webr/webR/robj-main.d.ts": {
"checksum": "5546b01be7587fec7459a1867088ed91"
},
"app/shinylive/webr/webR/robj-worker.d.ts": {
"checksum": "e9015df5d414c4dd13bccbeb2aab3870"
},
"app/shinylive/webr/webR/robj.d.ts": {
"checksum": "f195cb2832080d69b7a46f096e44e80c"
},
"app/shinylive/webr/webR/utils-r.d.ts": {
"checksum": "8dd57576c21644349c45e562ce9f1f4a"
},
"app/shinylive/webr/webR/utils.d.ts": {
"checksum": "cc52657cc111c63269c29ee8af7cd99e"
},
"app/shinylive/webr/webR/webr-chan.d.ts": {
"checksum": "d26e80e168e27769611e8cca40adf6a7"
},
"app/shinylive/webr/webR/webr-main.d.ts": {
"checksum": "db1036d78d09e9d3a8cefae9ab071977"
},
"app/shinylive/webr/webR/webr-worker.d.ts": {
"checksum": "e2ebd7ddedcadeeadbf819c35985c768"
},
"app/t_score/app.json": {
"checksum": "93a1493ac6a5f3008f8ed2a0a1afe92b"
},
"app/t_score/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/t_score/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"app/zandp/app.json": {
"checksum": "f4e7b5bbcc808807a93862ba56caa7d5"
},
"app/zandp/edit/index.html": {
"checksum": "b617fa2d6384ba6b3df085b8e7ebe447"
},
"app/zandp/index.html": {
"checksum": "8cd71031eaef4494a20079dc197aee88"
},
"appendexA_CMS.html": {
"checksum": "83a409c7bb9a98f36127d9d2e67fc018"
},
"appendexA.html": {
"checksum": "5bfdace5f2405ca7ad207c0b4ee95901"
},
"appendixA_units.html": {
"checksum": "7aec0435e690cc9ec228a93d62ce0ecb"
},
"appendixC_tables.html": {
"checksum": "eefd6f0c27b76a99706eb82be960f313"
},
"assumptions-of-randomisation.html": {
"checksum": "337de967bf1f4c19d7e4b48c8e91bb65"
},
"background_mathematics.html": {
"checksum": "43c58498ed320cb09207c5eac3fde74b"
},
"bookdown-demo_files/figure-html/unnamed-chunk-1-1.png": {
"checksum": "7d6b58d3e3159d88849d3f130ff60133"
},
"bookdown-demo_files/figure-html/unnamed-chunk-100-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-101-1.png": {
"checksum": "66121b3cb194e1237369e55c4b9a42dd"
},
"bookdown-demo_files/figure-html/unnamed-chunk-102-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-103-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-104-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-105-1.png": {
"checksum": "4f18678a7a33e1d63782a5e3d50b5391"
},
"bookdown-demo_files/figure-html/unnamed-chunk-107-1.png": {
"checksum": "4f18678a7a33e1d63782a5e3d50b5391"
},
"bookdown-demo_files/figure-html/unnamed-chunk-108-1.png": {
"checksum": "4f18678a7a33e1d63782a5e3d50b5391"
},
"bookdown-demo_files/figure-html/unnamed-chunk-109-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-110-1.png": {
"checksum": "4f18678a7a33e1d63782a5e3d50b5391"
},
"bookdown-demo_files/figure-html/unnamed-chunk-111-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-112-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-113-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-114-1.png": {
"checksum": "7d55419077821edea1bd3cc3375e678f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-117-1.png": {
"checksum": "3f705525f86010d68e3cb052b7996660"
},
"bookdown-demo_files/figure-html/unnamed-chunk-118-1.png": {
"checksum": "3f705525f86010d68e3cb052b7996660"
},
"bookdown-demo_files/figure-html/unnamed-chunk-119-1.png": {
"checksum": "79974a9b0512bcce1f64a48f42866206"
},
"bookdown-demo_files/figure-html/unnamed-chunk-12-1.png": {
"checksum": "7d6b58d3e3159d88849d3f130ff60133"
},
"bookdown-demo_files/figure-html/unnamed-chunk-120-1.png": {
"checksum": "906e06acef80d06d147ee524c5875343"
},
"bookdown-demo_files/figure-html/unnamed-chunk-121-1.png": {
"checksum": "79974a9b0512bcce1f64a48f42866206"
},
"bookdown-demo_files/figure-html/unnamed-chunk-122-1.png": {
"checksum": "906e06acef80d06d147ee524c5875343"
},
"bookdown-demo_files/figure-html/unnamed-chunk-123-1.png": {
"checksum": "906e06acef80d06d147ee524c5875343"
},
"bookdown-demo_files/figure-html/unnamed-chunk-124-1.png": {
"checksum": "906e06acef80d06d147ee524c5875343"
},
"bookdown-demo_files/figure-html/unnamed-chunk-127-1.png": {
"checksum": "65aa2db98229eed5579e4fc80abe4419"
},
"bookdown-demo_files/figure-html/unnamed-chunk-128-1.png": {
"checksum": "65aa2db98229eed5579e4fc80abe4419"
},
"bookdown-demo_files/figure-html/unnamed-chunk-129-1.png": {
"checksum": "fca456ab5c1cef275de4564fb8865d36"
},
"bookdown-demo_files/figure-html/unnamed-chunk-13-1.png": {
"checksum": "25e1816776451d246a905559b962afb8"
},
"bookdown-demo_files/figure-html/unnamed-chunk-130-1.png": {
"checksum": "65aa2db98229eed5579e4fc80abe4419"
},
"bookdown-demo_files/figure-html/unnamed-chunk-131-1.png": {
"checksum": "fca456ab5c1cef275de4564fb8865d36"
},
"bookdown-demo_files/figure-html/unnamed-chunk-132-1.png": {
"checksum": "fca456ab5c1cef275de4564fb8865d36"
},
"bookdown-demo_files/figure-html/unnamed-chunk-133-1.png": {
"checksum": "fca456ab5c1cef275de4564fb8865d36"
},
"bookdown-demo_files/figure-html/unnamed-chunk-134-1.png": {
"checksum": "79974a9b0512bcce1f64a48f42866206"
},
"bookdown-demo_files/figure-html/unnamed-chunk-135-1.png": {
"checksum": "906e06acef80d06d147ee524c5875343"
},
"bookdown-demo_files/figure-html/unnamed-chunk-136-1.png": {
"checksum": "79974a9b0512bcce1f64a48f42866206"
},
"bookdown-demo_files/figure-html/unnamed-chunk-137-1.png": {
"checksum": "65aa2db98229eed5579e4fc80abe4419"
},
"bookdown-demo_files/figure-html/unnamed-chunk-138-1.png": {
"checksum": "fca456ab5c1cef275de4564fb8865d36"
},
"bookdown-demo_files/figure-html/unnamed-chunk-139-1.png": {
"checksum": "906e06acef80d06d147ee524c5875343"
},
"bookdown-demo_files/figure-html/unnamed-chunk-14-1.png": {
"checksum": "e16e71994270b7f50efc99938cf51cb3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-140-1.png": {
"checksum": "65aa2db98229eed5579e4fc80abe4419"
},
"bookdown-demo_files/figure-html/unnamed-chunk-141-1.png": {
"checksum": "00042b2b8dfcaa45d03ad594d6f847b0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-142-1.png": {
"checksum": "00042b2b8dfcaa45d03ad594d6f847b0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-143-1.png": {
"checksum": "8c510b228865edca2bda6bd69e25ca11"
},
"bookdown-demo_files/figure-html/unnamed-chunk-144-1.png": {
"checksum": "5d7fca8e6885624309bda969cb0acb08"
},
"bookdown-demo_files/figure-html/unnamed-chunk-145-1.png": {
"checksum": "ce09b3b111d0108434bcedf3439ceeac"
},
"bookdown-demo_files/figure-html/unnamed-chunk-146-1.png": {
"checksum": "ad88cc9e5843a8002f288d24851cac57"
},
"bookdown-demo_files/figure-html/unnamed-chunk-147-1.png": {
"checksum": "7d62a15f6276e257dbfc1093eaf69f15"
},
"bookdown-demo_files/figure-html/unnamed-chunk-148-1.png": {
"checksum": "ad88cc9e5843a8002f288d24851cac57"
},
"bookdown-demo_files/figure-html/unnamed-chunk-149-1.png": {
"checksum": "d2aa961582ae886c136696565d39154f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-15-1.png": {
"checksum": "73d9052a12c9139baa9a6c2a76c27580"
},
"bookdown-demo_files/figure-html/unnamed-chunk-150-1.png": {
"checksum": "49d42aa13c85fc6b3a72a476d5855495"
},
"bookdown-demo_files/figure-html/unnamed-chunk-151-1.png": {
"checksum": "49d42aa13c85fc6b3a72a476d5855495"
},
"bookdown-demo_files/figure-html/unnamed-chunk-152-1.png": {
"checksum": "8c510b228865edca2bda6bd69e25ca11"
},
"bookdown-demo_files/figure-html/unnamed-chunk-153-1.png": {
"checksum": "49d42aa13c85fc6b3a72a476d5855495"
},
"bookdown-demo_files/figure-html/unnamed-chunk-154-1.png": {
"checksum": "49d42aa13c85fc6b3a72a476d5855495"
},
"bookdown-demo_files/figure-html/unnamed-chunk-155-1.png": {
"checksum": "49d42aa13c85fc6b3a72a476d5855495"
},
"bookdown-demo_files/figure-html/unnamed-chunk-156-1.png": {
"checksum": "d96e819a650c78c9e5e6eeba1dcee2a0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-157-1.png": {
"checksum": "d96e819a650c78c9e5e6eeba1dcee2a0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-158-1.png": {
"checksum": "f95f6fa2af98cd0807fd6d7135d9f33e"
},
"bookdown-demo_files/figure-html/unnamed-chunk-159-1.png": {
"checksum": "605b024e5ebda8382e540fb07375d674"
},
"bookdown-demo_files/figure-html/unnamed-chunk-16-1.png": {
"checksum": "e16e71994270b7f50efc99938cf51cb3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-160-1.png": {
"checksum": "432369cb2fcae915b0d2fa4b01539cf4"
},
"bookdown-demo_files/figure-html/unnamed-chunk-161-1.png": {
"checksum": "c198ee592eadc88da01453ed69988bdd"
},
"bookdown-demo_files/figure-html/unnamed-chunk-162-1.png": {
"checksum": "76129e212cc472a658282ba169074bfd"
},
"bookdown-demo_files/figure-html/unnamed-chunk-163-1.png": {
"checksum": "e23c770ecd4d1dc2a3a5da9fd9abae2a"
},
"bookdown-demo_files/figure-html/unnamed-chunk-164-1.png": {
"checksum": "cc121a309031a4d0590d3dbccb3566e2"
},
"bookdown-demo_files/figure-html/unnamed-chunk-165-1.png": {
"checksum": "96515e9cd09d43f46a0966658051d226"
},
"bookdown-demo_files/figure-html/unnamed-chunk-166-1.png": {
"checksum": "66c3aca8548a502a0972b01b4eafb6fb"
},
"bookdown-demo_files/figure-html/unnamed-chunk-167-1.png": {
"checksum": "432369cb2fcae915b0d2fa4b01539cf4"
},
"bookdown-demo_files/figure-html/unnamed-chunk-168-1.png": {
"checksum": "2c7deb1bca721759a5968293edf4485a"
},
"bookdown-demo_files/figure-html/unnamed-chunk-169-1.png": {
"checksum": "d96e819a650c78c9e5e6eeba1dcee2a0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-17-1.png": {
"checksum": "e16e71994270b7f50efc99938cf51cb3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-170-1.png": {
"checksum": "432369cb2fcae915b0d2fa4b01539cf4"
},
"bookdown-demo_files/figure-html/unnamed-chunk-171-1.png": {
"checksum": "77485931eabc7412054e6e730e4ffeff"
},
"bookdown-demo_files/figure-html/unnamed-chunk-172-1.png": {
"checksum": "d96e819a650c78c9e5e6eeba1dcee2a0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-173-1.png": {
"checksum": "432369cb2fcae915b0d2fa4b01539cf4"
},
"bookdown-demo_files/figure-html/unnamed-chunk-174-1.png": {
"checksum": "b28c008a23daa286b425d0785d65bbda"
},
"bookdown-demo_files/figure-html/unnamed-chunk-175-1.png": {
"checksum": "432369cb2fcae915b0d2fa4b01539cf4"
},
"bookdown-demo_files/figure-html/unnamed-chunk-176-1.png": {
"checksum": "5cf01534115eee9992b16608dd2b6a08"
},
"bookdown-demo_files/figure-html/unnamed-chunk-177-1.png": {
"checksum": "d7a8bdf5f50b251a1c902d7ed0f90518"
},
"bookdown-demo_files/figure-html/unnamed-chunk-178-1.png": {
"checksum": "d96e819a650c78c9e5e6eeba1dcee2a0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-179-1.png": {
"checksum": "d1415f3649859e067463f54aef97a354"
},
"bookdown-demo_files/figure-html/unnamed-chunk-18-1.png": {
"checksum": "e16e71994270b7f50efc99938cf51cb3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-180-1.png": {
"checksum": "66481adef6c50c44e54c003003434f84"
},
"bookdown-demo_files/figure-html/unnamed-chunk-181-1.png": {
"checksum": "432369cb2fcae915b0d2fa4b01539cf4"
},
"bookdown-demo_files/figure-html/unnamed-chunk-182-1.png": {
"checksum": "d96e819a650c78c9e5e6eeba1dcee2a0"
},
"bookdown-demo_files/figure-html/unnamed-chunk-183-1.png": {
"checksum": "8cba10b1035f485546cb5ed7a0d5fa11"
},
"bookdown-demo_files/figure-html/unnamed-chunk-184-1.png": {
"checksum": "a9b061686d6850a1143ee662a7e27135"
},
"bookdown-demo_files/figure-html/unnamed-chunk-185-1.png": {
"checksum": "d9818d6d3a714adde2671894c976e137"
},
"bookdown-demo_files/figure-html/unnamed-chunk-186-1.png": {
"checksum": "e56e54f005021a3077e56887d637d78f"
},
"bookdown-demo_files/figure-html/unnamed-chunk-187-1.png": {
"checksum": "2154b53a1b50319e27ad3fd870fb23ef"
},
"bookdown-demo_files/figure-html/unnamed-chunk-188-1.png": {
"checksum": "54d3d8b472534ffe1a2fbfa49e271908"
},
"bookdown-demo_files/figure-html/unnamed-chunk-189-1.png": {
"checksum": "878c978b934cbe825654492c597582b3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-19-1.png": {
"checksum": "e16e71994270b7f50efc99938cf51cb3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-190-1.png": {
"checksum": "878c978b934cbe825654492c597582b3"
},
"bookdown-demo_files/figure-html/unnamed-chunk-191-1.png": {
"checksum": "878c978b934cbe825654492c597582b3"
},