-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_structure.txt
executable file
·1048 lines (1047 loc) · 58.6 KB
/
project_structure.txt
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
.
├── app
│ ├── Console
│ │ ├── Commands
│ │ │ ├── ClearLog.php
│ │ │ ├── FluxActivate.php
│ │ │ └── TestMailCommand.php
│ │ └── Kernel.php
│ ├── Events
│ │ ├── ImagesSpecimenCreated.php
│ │ └── SpecimenCreated.php
│ ├── Http
│ │ ├── Controllers
│ │ │ ├── Admin
│ │ │ │ ├── AdminCharacterController.php
│ │ │ │ ├── AdminDashboardController.php
│ │ │ │ ├── AdminDataSourceController.php
│ │ │ │ ├── AdminExportDatabaseController.php
│ │ │ │ ├── AdminLookUpController.php
│ │ │ │ ├── AdminMBListController.php
│ │ │ │ └── AdminSpecimenController.php
│ │ │ ├── ArticleController.php
│ │ │ ├── Auth
│ │ │ │ ├── AuthenticatedSessionController.php
│ │ │ │ ├── ConfirmablePasswordController.php
│ │ │ │ ├── EmailVerificationNotificationController.php
│ │ │ │ ├── EmailVerificationPromptController.php
│ │ │ │ ├── NewPasswordController.php
│ │ │ │ ├── PasswordController.php
│ │ │ │ ├── PasswordResetLinkController.php
│ │ │ │ ├── RegisteredUserController.php
│ │ │ │ └── VerifyEmailController.php
│ │ │ ├── CharacterController.php
│ │ │ ├── CharacterSpecimenController.php
│ │ │ ├── ClusterController.php
│ │ │ ├── ClusterSpecimenController.php
│ │ │ ├── CompareController.php
│ │ │ ├── ContactController.php
│ │ │ ├── Controller.php
│ │ │ ├── DataSourceController.php
│ │ │ ├── DataSourceDataTypeController.php
│ │ │ ├── DisplayOptionController.php
│ │ │ ├── DnaSequenceController.php
│ │ │ ├── GroupController.php
│ │ │ ├── GroupSpecimenController.php
│ │ │ ├── ImageSpecimenController.php
│ │ │ ├── ImageSpecimenThumbnailController.php
│ │ │ ├── Lookup
│ │ │ │ ├── AbundanceController.php
│ │ │ │ ├── AnnulusPositionController.php
│ │ │ │ ├── BulbTypeController.php
│ │ │ │ ├── CapContextFleshController.php
│ │ │ │ ├── CapMarginShapeController.php
│ │ │ │ ├── CapMarginTypeController.php
│ │ │ │ ├── CapShapeController.php
│ │ │ │ ├── CapShapeTopViewController.php
│ │ │ │ ├── CapSurfaceDrynessController.php
│ │ │ │ ├── CapSurfaceTextureController.php
│ │ │ │ ├── ChemReactionController.php
│ │ │ │ ├── ColorController.php
│ │ │ │ ├── CountryController.php
│ │ │ │ ├── EpithetController.php
│ │ │ │ ├── FungusTypeController.php
│ │ │ │ ├── GenusController.php
│ │ │ │ ├── GillAttachmentController.php
│ │ │ │ ├── GillBreadthController.php
│ │ │ │ ├── GillConFleshLatexAbunController.php
│ │ │ │ ├── GillEdgeController.php
│ │ │ │ ├── GillOtherController.php
│ │ │ │ ├── GillSpacingController.php
│ │ │ │ ├── GillThicknessController.php
│ │ │ │ ├── HabitatController.php
│ │ │ │ ├── HabitController.php
│ │ │ │ ├── LensController.php
│ │ │ │ ├── OdorController.php
│ │ │ │ ├── PartController.php
│ │ │ │ ├── PartialInnerVeilAppearanceController.php
│ │ │ │ ├── PartialInnerVeilFateController.php
│ │ │ │ ├── PartialInnerVeilTextureController.php
│ │ │ │ ├── PartInVeilAnnRiPositController.php
│ │ │ │ ├── PreservationMethodController.php
│ │ │ │ ├── SoilTypeController.php
│ │ │ │ ├── SpeciesController.php
│ │ │ │ ├── SpecimenAgeController.php
│ │ │ │ ├── SpecimenLocationNowController.php
│ │ │ │ ├── StateController.php
│ │ │ │ ├── StemInteriorController.php
│ │ │ │ ├── StemLocationController.php
│ │ │ │ ├── StemShapeController.php
│ │ │ │ ├── StemSurfaceController.php
│ │ │ │ ├── StemTextureController.php
│ │ │ │ ├── TasteController.php
│ │ │ │ ├── ToxicController.php
│ │ │ │ ├── UnivOutVeilAppearController.php
│ │ │ │ ├── UnivOutVeilFateController.php
│ │ │ │ ├── UnivOutVeilTextureController.php
│ │ │ │ └── VeilController.php
│ │ │ ├── PdfController.php
│ │ │ ├── PlantAssociationController.php
│ │ │ ├── PlantController.php
│ │ │ ├── PossibleMatchController.php
│ │ │ ├── ProfileController.php
│ │ │ ├── ProjectBelongToController.php
│ │ │ ├── RegisteredUserController.php
│ │ │ ├── SessionController.php
│ │ │ ├── SpecimenCompareController.php
│ │ │ ├── SpecimenController.php
│ │ │ ├── SupportArticleController.php
│ │ │ ├── SynonymController.php
│ │ │ ├── TreeController.php
│ │ │ └── UserTypeController.php
│ │ ├── Kernel.php
│ │ ├── Middleware
│ │ │ ├── AdminMiddleware.php
│ │ │ ├── Authenticate.php
│ │ │ ├── CorsMiddleware.php
│ │ │ ├── EncryptCookies.php
│ │ │ ├── RedirectIfAuthenticated.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustProxies.php
│ │ │ └── VerifyCsrfToken.php
│ │ └── Requests
│ │ ├── Auth
│ │ │ └── LoginRequest.php
│ │ ├── ColorRequest.php
│ │ └── ProfileUpdateRequest.php
│ ├── Imports
│ │ └── MBListImport.php
│ ├── Listeners
│ │ └── AssignSpecimenToGroup.php
│ ├── Mail
│ │ ├── ContactFormMail.php
│ │ ├── ContactMail.php
│ │ ├── ImagesSpecimenCreated.php
│ │ └── SpecimenCreated.php
│ ├── Models
│ │ ├── Article.php
│ │ ├── Character.php
│ │ ├── CharacterSpecimen.php
│ │ ├── Cluster.php
│ │ ├── ClusterSpecimen.php
│ │ ├── Compare.php
│ │ ├── DataSourceDataTypes.php
│ │ ├── DataSource.php
│ │ ├── DisplayOption.php
│ │ ├── Group.php
│ │ ├── GroupSpecimen.php
│ │ ├── ImageSpecimen.php
│ │ ├── ImageSpecimenThumbnail.php
│ │ ├── Lookup
│ │ │ ├── Abundance.php
│ │ │ ├── AnnulusPosition.php
│ │ │ ├── BulbType.php
│ │ │ ├── CapContextFlesh.php
│ │ │ ├── CapMarginShape.php
│ │ │ ├── CapMarginType.php
│ │ │ ├── CapShape.php
│ │ │ ├── CapShapeTopView.php
│ │ │ ├── CapSurfaceDryness.php
│ │ │ ├── CapSurfaceTexture.php
│ │ │ ├── Character.php
│ │ │ ├── ChemReaction.php
│ │ │ ├── Color.php
│ │ │ ├── Country.php
│ │ │ ├── DnaSequence.php
│ │ │ ├── Epithet.php
│ │ │ ├── FungusType.php
│ │ │ ├── Genus.php
│ │ │ ├── GillAttachment.php
│ │ │ ├── GillBreadth.php
│ │ │ ├── GillConFleshLatexAbun.php
│ │ │ ├── GillEdge.php
│ │ │ ├── GillOther.php
│ │ │ ├── GillSpacing.php
│ │ │ ├── GillThickness.php
│ │ │ ├── Habitat.php
│ │ │ ├── Habit.php
│ │ │ ├── Lens.php
│ │ │ ├── Odor.php
│ │ │ ├── PartialInnerVeilAppearance.php
│ │ │ ├── PartialInnerVeilFate.php
│ │ │ ├── PartialInnerVeilTexture.php
│ │ │ ├── PartInVeilAnnRiPosit.php
│ │ │ ├── Part.php
│ │ │ ├── PlantAssociation.php
│ │ │ ├── PreservationMethod.php
│ │ │ ├── ProjectBelongTo.php
│ │ │ ├── SoilType.php
│ │ │ ├── Species.php
│ │ │ ├── SpecimenAge.php
│ │ │ ├── SpecimenLocationNow.php
│ │ │ ├── State.php
│ │ │ ├── StemInterior.php
│ │ │ ├── StemLocation.php
│ │ │ ├── StemShape.php
│ │ │ ├── StemSurface.php
│ │ │ ├── StemTexture.php
│ │ │ ├── Taste.php
│ │ │ ├── Toxic.php
│ │ │ ├── UnivOutVeilAppear.php
│ │ │ ├── UnivOutVeilFate.php
│ │ │ ├── UnivOutVeilTexture.php
│ │ │ └── Veil.php
│ │ ├── MBList.php
│ │ ├── Plant.php
│ │ ├── PossibleMatch.php
│ │ ├── Specimen.php
│ │ ├── Synonym.php
│ │ ├── Tree.php
│ │ ├── User.php
│ │ └── UserType.php
│ ├── Notifications
│ │ └── CustomVerifyEmail.php
│ ├── Policies
│ │ ├── AdminCharacterPolicy.php
│ │ ├── AdminLookUpTablePolicy.php
│ │ ├── AdminSpecimenPolicy.php
│ │ ├── ArticlePolicy.php
│ │ ├── BookPolicy.php
│ │ ├── ClusterPolicy.php
│ │ ├── GroupPolicy.php
│ │ ├── ImageSpecimenPolicy.php
│ │ └── SpecimenPolicy.php
│ ├── Providers
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ └── RouteServiceProvider.php
│ ├── Repositories
│ │ ├── CharacterSpecimenRepository.php
│ │ ├── ImageRepository.php
│ │ └── Lookup
│ │ └── CharacterRepository.php
│ ├── Services
│ │ ├── CharacterSpecimenService.php
│ │ ├── Lookup
│ │ │ └── CharacterService.php
│ │ └── ZipExtractor.php
│ ├── Utils
│ │ ├── DatabaseUtils.php
│ │ ├── DateUtils.php
│ │ ├── ImageUtils.php
│ │ ├── MemberUtils.php
│ │ ├── NumberUtils.php
│ │ └── StringUtils.php
│ └── View
│ └── Components
│ ├── Alert.php
│ ├── AppLayout.php
│ ├── CharacterSpecimenForm.php
│ ├── DisplayColorCharacterSelectForm.php
│ ├── DisplayExistingBasicSpecimenCharacters.php
│ ├── DisplayExistingSpecimenCharacters.php
│ ├── DisplaySwitch.php
│ ├── EditCharactersSwitch.php
│ ├── GetCharacterSpecimenValueFromLookup.php
│ ├── GuestLayout.php
│ └── SpecimenFilter.php
├── artisan
├── bootstrap
│ ├── app.php
│ ├── cache
│ │ ├── packages.php
│ │ └── services.php
│ └── providers.php
├── composer.json
├── composer.lock
├── config
│ ├── app.php
│ ├── auth.php
│ ├── cache.php
│ ├── database.php
│ ├── filesystems.php
│ ├── image.php
│ ├── livewire.php
│ ├── logging.php
│ ├── mail.php
│ ├── permission.php
│ ├── queue.php
│ ├── services.php
│ └── session.php
├── database
│ ├── factories
│ │ ├── ArticleFactory.php
│ │ ├── CharacterSpecimenFactory.php
│ │ ├── ColorFactory.php
│ │ ├── SpecimenFactory.php
│ │ └── UserFactory.php
│ ├── migrations
│ │ ├── 0001_01_01_000000_create_users_table.php
│ │ ├── 0001_01_01_000001_create_cache_table.php
│ │ ├── 0001_01_01_000002_create_jobs_table.php
│ │ ├── 2024_05_12_000007_create_abundances_table.php
│ │ ├── 2024_05_12_000008_create_annulus_positions_table.php
│ │ ├── 2024_05_12_000009_create_bulb_types_table.php
│ │ ├── 2024_05_12_000010_create_cap_context_flesh_textures_table.php
│ │ ├── 2024_05_12_000011_create_cap_margin_shapes_table.php
│ │ ├── 2024_05_12_000012_create_cap_margin_types_table.php
│ │ ├── 2024_05_12_000013_create_cap_shapes_table.php
│ │ ├── 2024_05_12_000014_create_cap_shape_top_views_table.php
│ │ ├── 2024_05_12_000015_create_cap_surface_dryness_table.php
│ │ ├── 2024_05_12_000016_create_cap_surface_textures_table.php
│ │ ├── 2024_05_12_000017_create_chem_reactions_table.php
│ │ ├── 2024_05_12_000018_create_countries_table.php
│ │ ├── 2024_05_12_000019_create_data_source_data_types_table.php
│ │ ├── 2024_05_12_000020_create_display_options_table.php
│ │ ├── 2024_05_12_000021_create_epithets_table.php
│ │ ├── 2024_05_12_000022_create_fungus_types_table.php
│ │ ├── 2024_05_12_000023_create_genus_table.php
│ │ ├── 2024_05_12_000024_create_gill_attachments_table.php
│ │ ├── 2024_05_12_000025_create_gill_breadths_table.php
│ │ ├── 2024_05_12_000026_create_gill_con_flesh_latex_abuns_table.php
│ │ ├── 2024_05_12_000027_create_gill_edges_table.php
│ │ ├── 2024_05_12_000028_create_gill_others_table.php
│ │ ├── 2024_05_12_000029_create_gill_spacings_table.php
│ │ ├── 2024_05_12_000030_create_gill_thickness_table.php
│ │ ├── 2024_05_12_000031_create_habits_table.php
│ │ ├── 2024_05_12_000032_create_habitats_table.php
│ │ ├── 2024_05_12_000033_create_odors_table.php
│ │ ├── 2024_05_12_000034_create_partial_inner_veil_appearances_table.php
│ │ ├── 2024_05_12_000035_create_partial_inner_veil_fates_table.php
│ │ ├── 2024_05_12_000036_create_partial_inner_veil_textures_table.php
│ │ ├── 2024_05_12_000037_create_part_in_veil_ann_ri_posits_table.php
│ │ ├── 2024_05_12_000038_create_parts_table.php
│ │ ├── 2024_05_12_000039_create_plant_associations_table.php
│ │ ├── 2024_05_12_000040_create_possible_matches_table.php
│ │ ├── 2024_05_12_000041_create_preservation_methods_table.php
│ │ ├── 2024_05_12_000042_create_soil_types_table.php
│ │ ├── 2024_05_12_000043_create_species_table.php
│ │ ├── 2024_05_12_000044_create_specimen_ages_table.php
│ │ ├── 2024_05_12_000045_create_specimen_locations_now_table.php
│ │ ├── 2024_05_12_000047_create_states_table.php
│ │ ├── 2024_05_12_000048_create_stem_interiors_table.php
│ │ ├── 2024_05_12_000049_create_stem_locations_table.php
│ │ ├── 2024_05_12_000050_create_stem_shapes_table.php
│ │ ├── 2024_05_12_000051_create_stem_surfaces_table.php
│ │ ├── 2024_05_12_000052_create_stem_textures_table.php
│ │ ├── 2024_05_12_000053_create_tastes_table.php
│ │ ├── 2024_05_12_000054_create_toxics_table.php
│ │ ├── 2024_05_12_000055_create_universal_outer_veil_appearances_table.php
│ │ ├── 2024_05_12_000056_create_universal_outer_veil_fates_table.php
│ │ ├── 2024_05_12_000057_create_universal_outer_veil_textures_table.php
│ │ ├── 2024_05_12_000058_create_characters_table.php
│ │ ├── 2024_05_12_000058_create_colors_table.php
│ │ ├── 2024_05_12_000058_create_data_sources_table.php
│ │ ├── 2024_05_12_000058_create_lens_table.php
│ │ ├── 2024_05_12_000058_create_member_types_table.php
│ │ ├── 2024_05_12_000058_create_plants_table.php
│ │ ├── 2024_05_12_000058_create_synonyms_table.php
│ │ ├── 2024_05_12_000058_create_veils_table.php
│ │ ├── 2024_05_12_000059_create_specimens_table.php
│ │ ├── 2024_05_12_000060_create_character_specimens_table.php
│ │ ├── 2024_07_11_000061_create_dna_sequences_table.php
│ │ ├── 2024_07_20_000058_create_image_specimens_table.php
│ │ ├── 2024_07_29_064010_create_image_specimen_thumbnails_table.php
│ │ ├── 2024_08_09_064010_create_project_belong_tos_table.php
│ │ ├── 2024_11_000001_create_mycelium_textures_table.php
│ │ ├── 2024_11_000002_create_rhizomorph_textures_table.php
│ │ ├── 2024_11_13_123554_create_articles_table.php
│ │ ├── 2024_12_22_103154_create_permission_tables.php
│ │ ├── 2024_12_23_000050_create_clusters_table.php
│ │ ├── 2024_12_23_000051_create_groups_table.php
│ │ ├── 2024_12_23_000058_create_cluster_specimens_table.php
│ │ └── 2024_12_23_000058_create_group_specimens_table.php
│ └── seeders
│ └── DatabaseSeeder.php
├── favicon.ico
├── index.php
├── LICENSE
├── MBList
│ └── MBList_3_21_2023.csv
├── package.json
├── package-lock.json
├── php_errors.log
├── php_errors.log-20241201.gz-2024120304.backup
├── php_errors.log-20241223.gz
├── php_errors.log-20241228.gz
├── php_errors.log-20241229.gz
├── php_errors.log-20241230.gz
├── php_errors.log-20250102
├── phpinfo.php
├── phpunit.xml
├── postcss.config.js
├── prettierrc.json
├── project_structure.txt
├── public
│ ├── favicon.ico
│ ├── hot
│ ├── index.php
│ ├── php_errors.log
│ ├── phpinfo.php
│ ├── robots.txt
│ └── storage -> /var/www/public_html/mrdbid/storage/app/public
├── README.md
├── resources
│ ├── css
│ │ └── app.css
│ ├── js
│ │ ├── app.js
│ │ └── bootstrap.js
│ └── views
│ ├── about.blade.php
│ ├── admin
│ │ ├── admin_character
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── admin_data_source
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── admin_export_database
│ │ │ └── index.blade.php
│ │ ├── admin_lookup
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── admin_specimen
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── dashboard.blade.php
│ │ └── mblist
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── show.blade.php
│ │ └── upload.blade.php
│ ├── articles
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── auth
│ │ ├── confirm-password.blade.php
│ │ ├── forgot-password.blade.php
│ │ ├── login.blade.php
│ │ ├── register.blade.php
│ │ ├── reset-password.blade.php
│ │ └── verify-email.blade.php
│ ├── book.blade.php
│ ├── characters
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── OLD_index.blade.php
│ │ └── show.blade.php
│ ├── character_specimens
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── clusters
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── index_OLD.blade.php
│ │ └── show.blade.php
│ ├── compares
│ │ ├── index.blade.php
│ │ └── result.blade.php
│ ├── components
│ │ ├── action-buttons.blade.php
│ │ ├── admin-dashboard-nav-bar.blade.php
│ │ ├── admin-nav-link.blade.php
│ │ ├── alert.blade.php
│ │ ├── application-logo.blade.php
│ │ ├── auth-session-status.blade.php
│ │ ├── autocomplete.blade.php
│ │ ├── autocomplete_edit.blade.php
│ │ ├── button.blade.php
│ │ ├── cancel-button.blade.php
│ │ ├── danger-button.blade.php
│ │ ├── dashboard-nav-bar.blade.php
│ │ ├── display-character-by-display-option-switch.blade.php
│ │ ├── display-characters-lookup-table-list.blade.php
│ │ ├── display-character-specimens-form.blade.php
│ │ ├── display-color-character-select-table.blade.php
│ │ ├── display-colors-top-characters-bottom-form-table.blade.php
│ │ ├── display-existing-basic-specimen-characters.blade.php
│ │ ├── display-existing-specimen-characters.blade.php
│ │ ├── display-state-country-dropdown.blade.php
│ │ ├── display-state-country-dropdown-edit.blade.php
│ │ ├── display-unset-characters.blade.php
│ │ ├── dropdown.blade.php
│ │ ├── dropdown-link.blade.php
│ │ ├── edit_characters_switch.blade.php
│ │ ├── form-button.blade.php
│ │ ├── form-button-small.blade.php
│ │ ├── form-error.blade.php
│ │ ├── form-field.blade.php
│ │ ├── form-input.blade.php
│ │ ├── form-label.blade.php
│ │ ├── get-character-specimen-value-from-lookup.blade.php
│ │ ├── input-error.blade.php
│ │ ├── input-label.blade.php
│ │ ├── login-logout-option-bar.blade.php
│ │ ├── modal.blade.php
│ │ ├── nav-link.blade.php
│ │ ├── notification.blade.php
│ │ ├── primary-button.blade.php
│ │ ├── responsive-nav-link.blade.php
│ │ ├── secondary-button.blade.php
│ │ ├── site-nav-bar.blade.php
│ │ ├── site-nav-bar-simple-no-logo.blade.php
│ │ ├── specimen-filter.blade.php
│ │ ├── specimens-nav-bar.blade.php
│ │ ├── specimens-nav-link.blade.php
│ │ └── text-input.blade.php
│ ├── contact.blade.php
│ ├── data_sources
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── emails
│ │ └── contact.blade.php
│ ├── groups
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── home.blade.php
│ ├── image_specimens
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── layouts
│ │ ├── app.blade.php
│ │ └── guest.blade.php
│ ├── mail
│ │ └── specimen-created.blade.php
│ ├── pdf
│ │ ├── all_specimens.blade.php
│ │ └── user_specimens.blade.php
│ ├── profile
│ │ ├── edit.blade.php
│ │ └── partials
│ │ ├── delete-user-form.blade.php
│ │ ├── update-password-form.blade.php
│ │ └── update-profile-information-form.blade.php
│ ├── specimen_compares
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── specimens
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── filter_search.blade.php
│ │ ├── guest.blade.php
│ │ ├── index.blade.php
│ │ ├── look_up_tables
│ │ │ ├── abundance.blade.php
│ │ │ ├── annulus_position.blade.php
│ │ │ ├── bulb_type.blade.php
│ │ │ ├── cap_context_flesh_texture.blade.php
│ │ │ ├── cap_margin_shape.blade.php
│ │ │ ├── cap_margin_type.blade.php
│ │ │ ├── cap_shape.blade.php
│ │ │ ├── cap_shape_top_view.blade.php
│ │ │ ├── cap_surface_dryness.blade.php
│ │ │ ├── cap_surface_texture.blade.php
│ │ │ ├── chem_reaction.blade.php
│ │ │ ├── colors.blade.php
│ │ │ ├── country.blade.php
│ │ │ ├── data_source_data_type.blade.php
│ │ │ ├── display_option.blade.php
│ │ │ ├── dna_sequence.blade.php
│ │ │ ├── epithet.blade.php
│ │ │ ├── fungus_type.blade.php
│ │ │ ├── genus.blade.php
│ │ │ ├── gill_attachment.blade.php
│ │ │ ├── gill_breadth.blade.php
│ │ │ ├── gill_context_flesh_latex_abundance.blade.php
│ │ │ ├── gill_edge.blade.php
│ │ │ ├── gill_other.blade.php
│ │ │ ├── gill_spacing.blade.php
│ │ │ ├── gill_thickness.blade.php
│ │ │ ├── habitat.blade.php
│ │ │ ├── habit.blade.php
│ │ │ ├── lens.blade.php
│ │ │ ├── member_type.blade.php
│ │ │ ├── odor.blade.php
│ │ │ ├── part.blade.php
│ │ │ ├── partial_inner_veil_appearance.blade.php
│ │ │ ├── partial_inner_veil_fate.blade.php
│ │ │ ├── partial_inner_veil_texture.blade.php
│ │ │ ├── part_in_veil_ann_ri_posit.blade.php
│ │ │ ├── plant_association.blade.php
│ │ │ ├── plant.blade.php
│ │ │ ├── possible_match.blade.php
│ │ │ ├── preservation_method.blade.php
│ │ │ ├── project_belong_to.blade.php
│ │ │ ├── soil_type.blade.php
│ │ │ ├── species.blade.php
│ │ │ ├── specimen_age.blade.php
│ │ │ ├── specimen_cluster.blade.php
│ │ │ ├── specimen_group.blade.php
│ │ │ ├── specimen_location_now.blade.php
│ │ │ ├── state.blade.php
│ │ │ ├── stem_interior.blade.php
│ │ │ ├── stem_location.blade.php
│ │ │ ├── stem_shape.blade.php
│ │ │ ├── stem_surface.blade.php
│ │ │ ├── stem_texture.blade.php
│ │ │ ├── synonym.blade.php
│ │ │ ├── taste.blade.php
│ │ │ ├── toxic.blade.php
│ │ │ ├── universal_outer_veil_appearance.blade.php
│ │ │ ├── universal_outer_veil_fate.blade.php
│ │ │ ├── universal_outer_veil_texture.blade.php
│ │ │ └── veil.blade.php
│ │ ├── partials
│ │ │ ├── add-to-cluster-modal.blade.php
│ │ │ ├── add-to-group-modal.blade.php
│ │ │ ├── button-view-clusters-modal.blade.php
│ │ │ └── button-view-groups-modal.blade.php
│ │ └── show.blade.php
│ └── trees
│ ├── create.blade.php
│ ├── edit.blade.php
│ ├── index.blade.php
│ └── show.blade.php
├── robots.txt
├── routes
│ ├── admin_routes.php
│ ├── api.php
│ ├── auth.php
│ ├── auth_routes.php
│ ├── console.php
│ ├── email_routes.php
│ ├── lookup_routes.php
│ ├── public_routes.php
│ ├── test_routes.php
│ ├── user_routes.php
│ └── web.php
├── scripts
│ ├── deploy.sh
│ └── load_chunks.sh
├── storage
│ ├── app
│ │ ├── public
│ │ │ ├── export
│ │ │ │ ├── mrdbid_2024-09-10
│ │ │ │ │ └── mrdbid.sql
│ │ │ │ ├── mrdbid_2024-10-12
│ │ │ │ │ ├── mrdbid_INSERT_INTO.sql
│ │ │ │ │ └── mrdbid.sql
│ │ │ │ ├── mrdbid_2024-11-05
│ │ │ │ │ ├── mrdbid_INSERT_INTO.sql
│ │ │ │ │ └── mrdbid.sql
│ │ │ │ └── mrdbid_2024-12-28
│ │ │ │ ├── mrdbid_db_INSERT_INTO.sql
│ │ │ │ └── mrdbid_db.sql
│ │ │ ├── images
│ │ │ │ ├── amazon
│ │ │ │ │ ├── available_at_amazon_en_horizontal_635x103.png
│ │ │ │ │ ├── available_at_amazon_US_EN_logo_stacked_RGB_SQUID_100x48.png
│ │ │ │ │ ├── available_at_amazon_US_EN_logo_stacked_RGB_SQUID_1500x723.png
│ │ │ │ │ ├── available_at_amazon_US_EN_logo_stacked_RGB_SQUID_200x96.png
│ │ │ │ │ └── available_at_amazon_US_EN_logo_stacked_RGB_SQUID_300x146.png
│ │ │ │ ├── AMS_colors
│ │ │ │ │ ├── banner_50x50
│ │ │ │ │ │ ├── banner_10.jpg
│ │ │ │ │ │ ├── banner_11.jpg
│ │ │ │ │ │ ├── banner_12.jpg
│ │ │ │ │ │ ├── banner_13.jpg
│ │ │ │ │ │ ├── banner_14.jpg
│ │ │ │ │ │ ├── banner_15.jpg
│ │ │ │ │ │ ├── banner_16.jpg
│ │ │ │ │ │ ├── banner_17.jpg
│ │ │ │ │ │ ├── banner_18.jpg
│ │ │ │ │ │ ├── banner_19.jpg
│ │ │ │ │ │ ├── banner_1.jpg
│ │ │ │ │ │ ├── banner_20.jpg
│ │ │ │ │ │ ├── banner_21.jpg
│ │ │ │ │ │ ├── banner_22.jpg
│ │ │ │ │ │ ├── banner_23.jpg
│ │ │ │ │ │ ├── banner_24.jpg
│ │ │ │ │ │ ├── banner_25.jpg
│ │ │ │ │ │ ├── banner_26.jpg
│ │ │ │ │ │ ├── banner_27.jpg
│ │ │ │ │ │ ├── banner_28.jpg
│ │ │ │ │ │ ├── banner_29.jpg
│ │ │ │ │ │ ├── banner_2.jpg
│ │ │ │ │ │ ├── banner_30.jpg
│ │ │ │ │ │ ├── banner_31.jpg
│ │ │ │ │ │ ├── banner_32.jpg
│ │ │ │ │ │ ├── banner_33.jpg
│ │ │ │ │ │ ├── banner_34.jpg
│ │ │ │ │ │ ├── banner_35.jpg
│ │ │ │ │ │ ├── banner_36.jpg
│ │ │ │ │ │ ├── banner_37.jpg
│ │ │ │ │ │ ├── banner_38.jpg
│ │ │ │ │ │ ├── banner_39.jpg
│ │ │ │ │ │ ├── banner_3.jpg
│ │ │ │ │ │ ├── banner_40.jpg
│ │ │ │ │ │ ├── banner_41.jpg
│ │ │ │ │ │ ├── banner_42.jpg
│ │ │ │ │ │ ├── banner_43.jpg
│ │ │ │ │ │ ├── banner_44.jpg
│ │ │ │ │ │ ├── banner_45.jpg
│ │ │ │ │ │ ├── banner_46.jpg
│ │ │ │ │ │ ├── banner_47.jpg
│ │ │ │ │ │ ├── banner_48.jpg
│ │ │ │ │ │ ├── banner_49.jpg
│ │ │ │ │ │ ├── banner_4.jpg
│ │ │ │ │ │ ├── banner_50.jpg
│ │ │ │ │ │ ├── banner_5.jpg
│ │ │ │ │ │ ├── banner_6.jpg
│ │ │ │ │ │ ├── banner_7.jpg
│ │ │ │ │ │ ├── banner_8.jpg
│ │ │ │ │ │ └── banner_9.jpg
│ │ │ │ │ └── color_big
│ │ │ │ │ ├── color_big_10.jpg
│ │ │ │ │ ├── color_big_11.jpg
│ │ │ │ │ ├── color_big_12.jpg
│ │ │ │ │ ├── color_big_13.jpg
│ │ │ │ │ ├── color_big_14.jpg
│ │ │ │ │ ├── color_big_15.jpg
│ │ │ │ │ ├── color_big_16.jpg
│ │ │ │ │ ├── color_big_17.jpg
│ │ │ │ │ ├── color_big_18.jpg
│ │ │ │ │ ├── color_big_19.jpg
│ │ │ │ │ ├── color_big_1.jpg
│ │ │ │ │ ├── color_big_20.jpg
│ │ │ │ │ ├── color_big_21.jpg
│ │ │ │ │ ├── color_big_22.jpg
│ │ │ │ │ ├── color_big_23.jpg
│ │ │ │ │ ├── color_big_24.jpg
│ │ │ │ │ ├── color_big_25.jpg
│ │ │ │ │ ├── color_big_26.jpg
│ │ │ │ │ ├── color_big_27.jpg
│ │ │ │ │ ├── color_big_28.jpg
│ │ │ │ │ ├── color_big_29.jpg
│ │ │ │ │ ├── color_big_2.jpg
│ │ │ │ │ ├── color_big_30.jpg
│ │ │ │ │ ├── color_big_31.jpg
│ │ │ │ │ ├── color_big_32.jpg
│ │ │ │ │ ├── color_big_33.jpg
│ │ │ │ │ ├── color_big_34.jpg
│ │ │ │ │ ├── color_big_35.jpg
│ │ │ │ │ ├── color_big_36.jpg
│ │ │ │ │ ├── color_big_37.jpg
│ │ │ │ │ ├── color_big_38.jpg
│ │ │ │ │ ├── color_big_39.jpg
│ │ │ │ │ ├── color_big_3.jpg
│ │ │ │ │ ├── color_big_40.jpg
│ │ │ │ │ ├── color_big_41.jpg
│ │ │ │ │ ├── color_big_42.jpg
│ │ │ │ │ ├── color_big_43.jpg
│ │ │ │ │ ├── color_big_44.jpg
│ │ │ │ │ ├── color_big_45.jpg
│ │ │ │ │ ├── color_big_46.jpg
│ │ │ │ │ ├── color_big_47.jpg
│ │ │ │ │ ├── color_big_48.jpg
│ │ │ │ │ ├── color_big_49.jpg
│ │ │ │ │ ├── color_big_4.jpg
│ │ │ │ │ ├── color_big_50.jpg
│ │ │ │ │ ├── color_big_5.jpg
│ │ │ │ │ ├── color_big_6.jpg
│ │ │ │ │ ├── color_big_7.jpg
│ │ │ │ │ ├── color_big_8.jpg
│ │ │ │ │ └── color_big_9.jpg
│ │ │ │ ├── AMS_Field_Data_Sheet_400x298.png
│ │ │ │ ├── info_16dp_5F6368_FILL0_wght400_GRAD0_opsz20.png
│ │ │ │ ├── info_18dp_5F6368_FILL0_wght400_GRAD0_opsz20.png
│ │ │ │ └── trees
│ │ │ │ ├── american_beech_sign.JPG
│ │ │ │ ├── american_holly_sign.JPG
│ │ │ │ ├── american_hornbeam_sign.JPG
│ │ │ │ ├── bigleaf_magnolia_sign.JPG
│ │ │ │ ├── black_cherry_2_sign.JPG
│ │ │ │ ├── black_cherry_sign.JPG
│ │ │ │ ├── black_gum_sign.JPG
│ │ │ │ ├── black_walnut_sign.JPG
│ │ │ │ ├── bluestem_palmetto_sign.JPG
│ │ │ │ ├── darlington_oak_sign.JPG
│ │ │ │ ├── devils_walking_stick.JPG
│ │ │ │ ├── Florida_anise_sign.JPG
│ │ │ │ ├── green_ash_sign.JPG
│ │ │ │ ├── hop_hornbeam_sign.JPG
│ │ │ │ ├── loblolly_pine_sign.JPG
│ │ │ │ ├── longleaf_pine_sign.JPG
│ │ │ │ ├── mockernut_hickory_sign.JPG
│ │ │ │ ├── pignut_hickory_sign.JPG
│ │ │ │ ├── red_cedar_sign.JPG
│ │ │ │ ├── red_maple_sign.JPG
│ │ │ │ ├── sourwood_sign.JPG
│ │ │ │ ├── southern_magnolia_sign.JPG
│ │ │ │ ├── sparkleberry_sign.JPG
│ │ │ │ ├── swamp_chestnut_oak_sign.JPG
│ │ │ │ ├── swamp_tupelo_sign.JPG
│ │ │ │ ├── sweetbay_magnolia_sign.JPG
│ │ │ │ ├── sweetgum_sign.JPG
│ │ │ │ ├── tulip_poplar_sign.JPG
│ │ │ │ ├── white_oak_sign.JPG
│ │ │ │ └── witch_hazel_sign.JPG
│ │ │ └── uploaded_images
│ │ │ └── thumbnail
│ │ └── support-articles
│ │ └── MBList
│ │ ├── 10_1_2024_MBList_zip_download
│ │ │ ├── MBList.xlsx
│ │ │ └── MBList.zip
│ │ ├── 10_1_2024_where_did_MBList_go.txt
│ │ ├── greek_letter_infraspecific.txt
│ │ ├── MBList_count_taxon_name_parts.php
│ │ ├── MBList_get_genus_names.php
│ │ ├── MBList_get_Greek_alpha.php
│ │ ├── MBList_get_name.php
│ │ ├── MBList_process_list.php
│ │ ├── MBList_select_distinct_values.php
│ │ └── Mycobank_Database
│ │ ├── GenBank.txt
│ │ ├── greek_letter_infraspecific.txt
│ │ ├── mycobank_genera.txt
│ │ └── taxonomy.txt
│ ├── debugbar
│ │ ├── X0498d4d5e7f6856b82224aecbe16520c.json
│ │ ├── X04cac3fdcde862916fdf06aebe9096fd.json
│ │ ├── X04d956fd03afd883873d8816b75c3ced.json
│ │ ├── X0c35ff23b3e63b6021bca083f560b4c0.json
│ │ ├── X111e2238431e86b4b75e50be9e3df8a5.json
│ │ ├── X1186e5ed020fbb5208d9491079a638cb.json
│ │ ├── X11be7a1e255397729d2fea52e9fd1540.json
│ │ ├── X149a2b7fcd0ce922ac98f27c0998bfe0.json
│ │ ├── X182cd911b6c15fd44483e549b39b4d4e.json
│ │ ├── X1de3dc740b989a38530d014f1ba4eb90.json
│ │ ├── X1e6af165042921db29e2c9ef82b09757.json
│ │ ├── X1efcb8028beeef206a59b2e096d47df4.json
│ │ ├── X2315d91f1cfd8e49680de1e9dfe95b25.json
│ │ ├── X23b487944c29692b898383b7934d8c5d.json
│ │ ├── X2497e881a777deb4201e89c9eb19265a.json
│ │ ├── X2554b08eefac7151cbd2d6d36d9da715.json
│ │ ├── X260bce9160b496f271c5a6bdd115f6d2.json
│ │ ├── X28bf06953104c6a6d9490acf24bd5853.json
│ │ ├── X295a1b72796731c5d1ca636983cdd17a.json
│ │ ├── X2aa159b79fc873163f1df371fa367690.json
│ │ ├── X2b13990cd723dab256eab47990447744.json
│ │ ├── X2ecc3086cc00d41070abf2ca18e1a0b5.json
│ │ ├── X2fb5e9e6356fa3b790f66e1a1c165ba5.json
│ │ ├── X33aac34667c14b1ec4dd6a7dba1c586f.json
│ │ ├── X368cd1d6e6b3fc3193ee4336dbbc6559.json
│ │ ├── X3724e1cfce5279ed6b3a2c481ccda599.json
│ │ ├── X37a994d57873d856c3e4270d08cfcb5c.json
│ │ ├── X3ae727200a37c351b24607d0455027f9.json
│ │ ├── X3cbb1b00e5b4a7c99fdbe3133ef9064a.json
│ │ ├── X3f3d19660a80e25f68dbae5b60a4fd50.json
│ │ ├── X4410be74fd7c36bd06f180ef85ca31f8.json
│ │ ├── X48d28b5d37b99eb61bd8015c79f15f0b.json
│ │ ├── X4a66118a6771f63f0a9636c25ec908d0.json
│ │ ├── X4ce42438a846da8b53c79e302cfcdc39.json
│ │ ├── X4d1ba1298a6a61a1c14567b3549daa58.json
│ │ ├── X4e2abf4f4f3951a7d1bf3bf98f95948d.json
│ │ ├── X4e66d73046bae0f37ffb83b16615a318.json
│ │ ├── X4ec91c690687f68c62b0695c4432c278.json
│ │ ├── X54a9151d6b902908e66e730ea10b3ddd.json
│ │ ├── X54ecc3c607d5af5a659187be07722a1f.json
│ │ ├── X55b5864d7fbdee016ae5839f6015f333.json
│ │ ├── X55f1ad445123394aea20ec927138173d.json
│ │ ├── X5a22e651eaf32144580b6b08d23860ed.json
│ │ ├── X5b25a702fd70241c35970ac26c909c37.json
│ │ ├── X615357391a26db7632be8da02af067f3.json
│ │ ├── X626e50a54db907654c649af8b242c962.json
│ │ ├── X629a523e7fb495b6c3f59d8ab3bef0ab.json
│ │ ├── X682366c63ff969c29a01c0bb488e0250.json
│ │ ├── X6878327b138c924734dcff3cc70270fc.json
│ │ ├── X68da1fec9041af4f921f6178137858e3.json
│ │ ├── X698aa66ad5494acb2743b9623751f26c.json
│ │ ├── X6aa0e01c7f590fecf9f54b67c5d7af9b.json
│ │ ├── X6b6c7f6f5f39f69855c50c1047856d84.json
│ │ ├── X6d7189ac8ec5510a49d5831f134738a0.json
│ │ ├── X6f3f1788f7ce863320942cae1902a91a.json
│ │ ├── X6f5cbec76b83b28f6044b710bd6ead69.json
│ │ ├── X6fc93c076234a14fa0eaf419d77e8292.json
│ │ ├── X706d59c53796a736c41e8ae9e053c6eb.json
│ │ ├── X71bcb6180c77323c7ac4853ff8cca662.json
│ │ ├── X72b56035006ad52ad6d9dd9c073b1ba2.json
│ │ ├── X73bf35d24d4eb141ec75938f7912e35e.json
│ │ ├── X744bfbf85bee3ecb375ad915ba41f8c0.json
│ │ ├── X74d94d48d6e3eadbefe67b7b9f1f900e.json
│ │ ├── X751d5cd656350564e3acf8c36466c9ac.json
│ │ ├── X760544ccbcf77b2c38a53c2ac2c66194.json
│ │ ├── X780e699e4953c43388fbf911c47eb22e.json
│ │ ├── X7a4754a8eb576a8bc164f0f176ff6b40.json
│ │ ├── X7b2f56c03bd8caf9e9af43d72d2a9d7d.json
│ │ ├── X7dd5d80ce71a6d097eb4471ef7320ac3.json
│ │ ├── X7f1725e363896ac1cc0b677cdca070e0.json
│ │ ├── X803b77540c9f3fef9b708d09f28dc7a7.json
│ │ ├── X82ea5975a7b0fa3cecf6a7b2bc139874.json
│ │ ├── X8449848f6d3fecdd67cc90c749adb06d.json
│ │ ├── X8667e1100f21aa96d28faefbc7cb6211.json
│ │ ├── X87cfb5a8d08d6f6be20a89fc55a64051.json
│ │ ├── X89ba1050f6b2b926eb6ea0253047a25e.json
│ │ ├── X8c4b239ef2b1c51420a7a6b7dd004c34.json
│ │ ├── X8cb55793efcc8bc6b58ef30268a3eed3.json
│ │ ├── X8ced917800c5b6a9083db34d3e59c2c0.json
│ │ ├── X8df5b77c32a3a850e625fd41cd8a40bb.json
│ │ ├── X8f2ef7f26cd9d2a041812479280d8ad1.json
│ │ ├── X900f41beaf0186534796eba11e8b9a73.json
│ │ ├── X94292ccfef7e2fbba3a3b52c63f7c12e.json
│ │ ├── X9720d048def16fa8fd5aafff21de7e87.json
│ │ ├── X9b7dd2c02093b8c1121dc0f11de3bb15.json
│ │ ├── X9cf445e5a0852978cb4a28811f9c6e28.json
│ │ ├── X9df63f6b398acc156e369d06e689254f.json
│ │ ├── Xaa396d654d34bde4fe7a396b23938566.json
│ │ ├── Xab46abe0fb80f395ff3e8af406746fce.json
│ │ ├── Xb09fd8aef16a6e1ee7d7422d9c54098c.json
│ │ ├── Xb133ae5cc5a7aee02b32a18257ecea23.json
│ │ ├── Xb37555241aecc2805af0ba2ca0858728.json
│ │ ├── Xb71100ffc3250b3582723568bcaa1640.json
│ │ ├── Xb788dedcca3dbc12b3387b56e8be9c00.json
│ │ ├── Xb84a522635c3b62205cbde683d914ab0.json
│ │ ├── Xba8aa9025525eb1a8d2bd6f19a02e68f.json
│ │ ├── Xbb78dbe6f83274a825e4c0d32cc0be97.json
│ │ ├── Xbbc69177e6eb47bdf13598ffd4a4345a.json
│ │ ├── Xbc033557d0f768e7deb7241f8fab4d9f.json
│ │ ├── Xbe5fe3000fc60080f5b69e9afbe08703.json
│ │ ├── Xc109ef6bba096223a32a1c65654753eb.json
│ │ ├── Xc1d00269462a046ab8d6e0819d04504e.json
│ │ ├── Xc29a25c36ddac1ec199cae98fc0b1191.json
│ │ ├── Xc4cbbf05ea41cf1b3a91afe4859ea147.json
│ │ ├── Xc6b3ba7a28bc6783da31f85d87a653f4.json
│ │ ├── Xc7b0f834ca6617e083a3dc554cc35bd5.json
│ │ ├── Xc7f39f0fea7bc7d43ddfecec0c06613b.json
│ │ ├── Xc824e4ea5694a9c14d71b5c2b66e22a5.json
│ │ ├── Xd16b03eba8662b9dccdaf53e070a591c.json
│ │ ├── Xd2c6bcdfdeb33d0dd1c5db7fd71886e6.json
│ │ ├── Xd330096a23ce71a9d6d6e04ccfef6ad8.json
│ │ ├── Xd482555cef8caf4664445ece7e9c8f61.json
│ │ ├── Xd6039b7cf5410ec1308104dde6d82277.json
│ │ ├── Xdb6c98b4b5b00fea9bbd69457fe6d2a9.json
│ │ ├── Xdbeb4824ab2c3a142dae22b54129fa58.json
│ │ ├── Xde92e31484a9631ecf86e522cdde225b.json
│ │ ├── Xe065964e5562fa4fb50cd8c7702487e9.json
│ │ ├── Xe11f99649b990de1a6a6bbd845bc91a6.json
│ │ ├── Xe224fe533c5256efd53ba296ba91dac5.json
│ │ ├── Xe2e2b76d61a754982d0b71dc00660519.json
│ │ ├── Xe4de09ecdd476cdf647b3b6a11481346.json
│ │ ├── Xe9a60e3b56b5df00a0b68ba050c03935.json
│ │ ├── Xea3e2e849fd378c295276880d6dc1610.json
│ │ ├── Xea7301e2474eb822bd4bbee9f77a09d7.json
│ │ ├── Xeb712f2698c193764330f39c19c24d0d.json
│ │ ├── Xec608f2b8146eed4e0aa3f03d8f82ca4.json
│ │ ├── Xec791bc87d0eeb6013b8fa24659a9026.json
│ │ ├── Xedcd3e8bf0f09e2b7931cb312f8a118d.json
│ │ ├── Xeeb7f439b553e7a7748caba3cd90b9d7.json
│ │ ├── Xef303bd67a35e64158c4cc7beaa9d5ee.json
│ │ ├── Xef521d97ba56797cd62fdd727cddbd7d.json
│ │ ├── Xef7d0a83aa2f117b293d65eb6ec1df29.json
│ │ ├── Xf6eb4c19a748a658e4a0c7abc6fefdbf.json
│ │ ├── Xf77c91c4c906b95fde76728424a8d053.json
│ │ ├── Xf7b48d6223626872ec642eafef88158d.json
│ │ ├── Xf7f8e355e55ebc41b10a6e7387a6fc00.json
│ │ ├── Xfa77a2fe434e4cff4a8eb191bab77b50.json
│ │ └── Xfe212506eef9541f9f4b889d93303ab9.json
│ ├── export
│ │ └── mrdbid_2024-12-28
│ │ ├── mrdbid_db_INSERT_INTO.sql
│ │ └── mrdbid_db.sql
│ ├── framework
│ │ ├── cache
│ │ │ └── data
│ │ ├── sessions
│ │ ├── testing
│ │ └── views
│ │ ├── 0151cc38230604bb2720af4cf80e6425.php
│ │ ├── 01bd0ce27b9f4a0de47a1a89c4cb3bd8.php
│ │ ├── 0276f6c0d652692fa117d33ff1818b5f.php
│ │ ├── 06139dc5f0fb65f6373849f0b5321403.php
│ │ ├── 06ebd1d3b3ca685128f5253db875701f.php
│ │ ├── 0cd115c400ba1489ae30e2aadcce315f.php
│ │ ├── 0dd6faabe1e5c759477850752b2a1707.php
│ │ ├── 1138310721330e97ee6c86c994221054.php
│ │ ├── 187525d00c03b2e37e63369e95dd8a92.php
│ │ ├── 1ec36bd27348c8b4d62b9949d1ee3c47.php
│ │ ├── 2262bf69e0441638c00138a6c6e7861f.php
│ │ ├── 25b322ea977b4c751d8e4e27eaecbd00.php
│ │ ├── 2d31e7b7a4fbb543b815b249e7499b4a.php
│ │ ├── 331ab8ad650b6ac5580985b4324a1a0a.php
│ │ ├── 37bf1a96bc61cc56398c35db0f3a4e16.php
│ │ ├── 3a42c07405b4985132b26ce3747148a1.php
│ │ ├── 3e927c922d1e10b641198eafa31d7cd6.php
│ │ ├── 402e3b10783840333f3c88a963421b74.php
│ │ ├── 41409d93c2127bd0131a901f398f25ba.php
│ │ ├── 41422bffca1c3ad26f0de6a5142fc126.php
│ │ ├── 4ce143b695e33af763e86e8881a4c25a.php
│ │ ├── 5518052c51cb3f6cb7b1a1df0f2560f0.php
│ │ ├── 650a57aa69a749274394962d4fdd6aa8.php
│ │ ├── 712ed0a0156186903d63865fa621790b.php
│ │ ├── 7c2a1df25c06f17fc794e936699ca124.php
│ │ ├── 7c2cfe6e5d98d409d3f4a5a058b5f2f2.php
│ │ ├── 7d30b373190bbf2470557c9e54fc9081.php