-
Notifications
You must be signed in to change notification settings - Fork 81
/
channel.json
2970 lines (2970 loc) · 85.2 KB
/
channel.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
[
{
"createTime": 1675963028,
"desc": "Mouse to Whale Vertebrae - What bone should I do next? How big is a mouse vertebra? How big is a whale vertebrae? A lot bigger, but all vertebrae share the same shape. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7198206283571285294",
"stats": {
"collectCount": 92400,
"commentCount": 5464,
"diggCount": 1500000,
"playCount": 14000000,
"shareCount": 11800
},
"contents": [
{
"desc": "Mouse to Whale Vertebrae - What bone should I do next? How big is a mouse vertebra? How big is a whale vertebrae? A lot bigger, but all vertebrae share the same shape. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1625685200,
"desc": "Neat or nah? - Rattlesnake Rattle #animals #science #learnontiktok",
"id": "6982264743109119238",
"stats": {
"collectCount": 60300,
"commentCount": 10500,
"diggCount": 2300000,
"playCount": 14700000,
"shareCount": 38300
},
"contents": [
{
"desc": "Neat or nah? - Rattlesnake Rattle #animals #science #learnontiktok",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1643220860,
"desc": "Remora - These weird fish stick to sharks and whales. I had no idea their heads look like that. #animals #science #learnontiktok",
"id": "7057579848453147951",
"stats": {
"collectCount": 27000,
"commentCount": 3096,
"diggCount": 1100000,
"playCount": 14900000,
"shareCount": 1945
},
"contents": [
{
"desc": "Remora - These weird fish stick to sharks and whales. I had no idea their heads look like that. #animals #science #learnontiktok",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1707409452,
"desc": "This is not a dragonfly. It’s a different insect that has unusual eyes and rests with its wings closed. #animals #science #learnontiktok ",
"id": "7333267537334930730",
"stats": {
"collectCount": 8692,
"commentCount": 655,
"diggCount": 124100,
"playCount": 850100,
"shareCount": 580
},
"contents": [
{
"desc": "This is not a dragonfly. It’s a different insect that has unusual eyes and rests with its wings closed. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1706200608,
"desc": "Crickets don’t make noise using their legs. Here’s how they actually make that chirping sound. #animals #science #learnontiktok Specimen use provided by the Chicago Academy of Sciences",
"id": "7328075754770746670",
"stats": {
"collectCount": 27800,
"commentCount": 1741,
"diggCount": 433900,
"playCount": 4600000,
"shareCount": 3325
},
"contents": [
{
"desc": "Crickets don’t make noise using their legs. Here’s how they actually make that chirping sound. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
},
{
"desc": "",
"textExtra": null
},
{
"desc": "Specimen use provided by the Chicago Academy of Sciences",
"textExtra": null
}
]
},
{
"createTime": 1705948825,
"desc": "Hermit crabs don’t make their own shells. So what animal makes them? #animals #science #learnontiktok ",
"id": "7326994210920500526",
"stats": {
"collectCount": 10700,
"commentCount": 916,
"diggCount": 180200,
"playCount": 2100000,
"shareCount": 1103
},
"contents": [
{
"desc": "Hermit crabs don’t make their own shells. So what animal makes them? #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1705676865,
"desc": "A substantial amount of fungi lives on our skin. It’s completely normal and part of everyone’s microbiome. Itch mites, aka scabies, are more uncommon and require medical attention. #animals #science #learnontiktok ",
"id": "7325826293101038894",
"stats": {
"collectCount": 9579,
"commentCount": 2100,
"diggCount": 114900,
"playCount": 950600,
"shareCount": 1658
},
"contents": [
{
"desc": "A substantial amount of fungi lives on our skin. It’s completely normal and part of everyone’s microbiome. Itch mites, aka scabies, are more uncommon and require medical attention. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1705335034,
"desc": "Hermit Crab - This is what a hermit crab looks like without a shell. Specimen use made possible by the Santa Barbara Museum of Natural History. #animals #science #learnontiktok ",
"id": "7324358114936081710",
"stats": {
"collectCount": 28900,
"commentCount": 3106,
"diggCount": 499000,
"playCount": 5400000,
"shareCount": 3059
},
"contents": [
{
"desc": "Hermit Crab - This is what a hermit crab looks like without a shell. Specimen use made possible by the Santa Barbara Museum of Natural History. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1704824340,
"desc": "There are thousands of mites burrowing into your face right now. How do you feel about this? They’re also known as eyelash mites, and in the genus Demodex. #animals #science #learnontiktok ",
"id": "7322164653826657582",
"stats": {
"collectCount": 58100,
"commentCount": 13200,
"diggCount": 739200,
"playCount": 6600000,
"shareCount": 22800
},
"contents": [
{
"desc": "There are thousands of mites burrowing into your face right now. How do you feel about this? They’re also known as eyelash mites, and in the genus Demodex. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1700049600,
"desc": "What is the world's largest beetle? In this video, we answer that question. #animals #science #learnontiktok",
"id": "7301525078527790379",
"stats": {
"collectCount": 16900,
"commentCount": 1548,
"diggCount": 187900,
"playCount": 1400000,
"shareCount": 1489
},
"contents": [
{
"desc": "What is the world's largest beetle? In this video, we answer that question. #animals #science #learnontiktok",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1697737467,
"desc": "Birds can breathe through their bones #animals #science #learnontiktok ",
"id": "7291726796935023914",
"stats": {
"collectCount": 5589,
"commentCount": 403,
"diggCount": 80000,
"playCount": 605700,
"shareCount": 1141
},
"contents": [
{
"desc": "Birds can breathe through their bones #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1695398154,
"desc": "Monarch butterfly mimic. #animals #science #learnontiktok ",
"id": "7281679579104709930",
"stats": {
"collectCount": 14500,
"commentCount": 757,
"diggCount": 181400,
"playCount": 1100000,
"shareCount": 4308
},
"contents": [
{
"desc": "Monarch butterfly mimic. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1695138922,
"desc": "Leafcutter ants use their leaves to farm fungus underground. I learned this during a visit to @San Diego Zoo #animals #science #learnontiktok #sandiegozoo ",
"id": "7280566198511602986",
"stats": {
"collectCount": 20600,
"commentCount": 1514,
"diggCount": 294900,
"playCount": 1900000,
"shareCount": 6554
},
"contents": [
{
"desc": "Leafcutter ants use their leaves to farm fungus underground. I learned this during a visit to @San Diego Zoo #animals #science #learnontiktok #sandiegozoo ",
"textExtra": [
{
"hashtagName": ""
},
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
},
{
"hashtagName": "sandiegozoo"
}
]
}
]
},
{
"createTime": 1694708453,
"desc": "Grasshoppers vs Crickets - They sound very different. #animals #science #learnontiktok ",
"id": "7278717337233149226",
"stats": {
"collectCount": 32000,
"commentCount": 2277,
"diggCount": 382800,
"playCount": 3100000,
"shareCount": 7770
},
"contents": [
{
"desc": "Grasshoppers vs Crickets - They sound very different. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1694108461,
"desc": "Pill Bugs, or roly polies, are not insects and they breathe through gills. #animals #science #learnontiktok ",
"id": "7276140346256428331",
"stats": {
"collectCount": 59500,
"commentCount": 6297,
"diggCount": 738000,
"playCount": 6100000,
"shareCount": 40200
},
"contents": [
{
"desc": "Pill Bugs, or roly polies, are not insects and they breathe through gills. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1693238337,
"desc": "The sneakiest bird on planet earth. #animals #science #learnontiktok ",
"id": "7272403168082939178",
"stats": {
"collectCount": 107200,
"commentCount": 11900,
"diggCount": 1600000,
"playCount": 10300000,
"shareCount": 64000
},
"contents": [
{
"desc": "The sneakiest bird on planet earth. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1692905165,
"desc": "Scallops have eyes and can swim. #animals #science #learnontiktok ",
"id": "7270972253477621034",
"stats": {
"collectCount": 176500,
"commentCount": 12200,
"diggCount": 2300000,
"playCount": 14500000,
"shareCount": 148200
},
"contents": [
{
"desc": "Scallops have eyes and can swim. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1685030578,
"desc": "Did you get it right? At what time? Should I post more skull ID speedruns? Specimen use made possible by University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7237151174086937898",
"stats": {
"collectCount": 8961,
"commentCount": 2114,
"diggCount": 182100,
"playCount": 2300000,
"shareCount": 1521
},
"contents": [
{
"desc": "Did you get it right? At what time? Should I post more skull ID speedruns? Specimen use made possible by University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1684510994,
"desc": "Snake - How do snakes breathe while swallowing prey? They have a tube in their mouth called a “glottis” that they can use like a snorkle. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"id": "7234919506089577774",
"stats": {
"collectCount": 2766,
"commentCount": 173,
"diggCount": 53400,
"playCount": 755000,
"shareCount": 517
},
"contents": [
{
"desc": "Snake - How do snakes breathe while swallowing prey? They have a tube in their mouth called a “glottis” that they can use like a snorkle. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1684251717,
"desc": "Snails - How do snails grow shells? Their mantle adds calcium carbonate to the opening edge of their shell. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7233805988598664494",
"stats": {
"collectCount": 15100,
"commentCount": 1454,
"diggCount": 296800,
"playCount": 2900000,
"shareCount": 16700
},
"contents": [
{
"desc": "Snails - How do snails grow shells? Their mantle adds calcium carbonate to the opening edge of their shell. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1683645981,
"desc": "Flying Fish- How do flying fish fly? They extend their oversized pectoral fins which catch air like wings. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"id": "7231204370669423914",
"stats": {
"collectCount": 6618,
"commentCount": 423,
"diggCount": 88900,
"playCount": 1200000,
"shareCount": 562
},
"contents": [
{
"desc": "Flying Fish- How do flying fish fly? They extend their oversized pectoral fins which catch air like wings. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1682609075,
"desc": "Slingjaw Wrasse - this fish can hyperextend its jaw to slurp up food. Specimen use provided by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7226750901695024430",
"stats": {
"collectCount": 6587,
"commentCount": 675,
"diggCount": 103800,
"playCount": 1100000,
"shareCount": 2478
},
"contents": [
{
"desc": "Slingjaw Wrasse - this fish can hyperextend its jaw to slurp up food. Specimen use provided by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1682437749,
"desc": "Gopher Tortoise Tick - the largest tick species in North America. What insects would you like to see next? Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7226015058332093742",
"stats": {
"collectCount": 3728,
"commentCount": 344,
"diggCount": 65300,
"playCount": 683700,
"shareCount": 1625
},
"contents": [
{
"desc": "Gopher Tortoise Tick - the largest tick species in North America. What insects would you like to see next? Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1678981882,
"desc": "Did you get it right? What time? Should I post more skull ID speedruns? #animals #science #learnontiktok ",
"id": "7211172219433553195",
"stats": {
"collectCount": 20000,
"commentCount": 1521,
"diggCount": 354600,
"playCount": 3600000,
"shareCount": 2199
},
"contents": [
{
"desc": "Did you get it right? What time? Should I post more skull ID speedruns? #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1678206420,
"desc": "Flying Squirrel - Here are my smallest and largest flying squirrels. Despite their difference in size, they all look pretty similar. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"id": "7207841595473857834",
"stats": {
"collectCount": 10400,
"commentCount": 560,
"diggCount": 130400,
"playCount": 1400000,
"shareCount": 1791
},
"contents": [
{
"desc": "Flying Squirrel - Here are my smallest and largest flying squirrels. Despite their difference in size, they all look pretty similar. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1676999562,
"desc": "Caterpillar - This caterpillar was infected by a parasitic fungus or zombie fungus. Cordyceps are a type of fungus that parasitizes insects like this. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7202658237848653102",
"stats": {
"collectCount": 26600,
"commentCount": 2146,
"diggCount": 531800,
"playCount": 5600000,
"shareCount": 14600
},
"contents": [
{
"desc": "Caterpillar - This caterpillar was infected by a parasitic fungus or zombie fungus. Cordyceps are a type of fungus that parasitizes insects like this. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1676565715,
"desc": "Flounder - These flatfish have weird eyes. They’re originally born with one on either side of their face, but one eye migrates to the other side as they grow. #animals #science #learnontiktok ",
"id": "7200794866689953070",
"stats": {
"collectCount": 83100,
"commentCount": 9228,
"diggCount": 1500000,
"playCount": 13400000,
"shareCount": 28000
},
"contents": [
{
"desc": "Flounder - These flatfish have weird eyes. They’re originally born with one on either side of their face, but one eye migrates to the other side as they grow. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1676393628,
"desc": "Did you get it? What time? Should I post more animal skull ID speedruns? #animals #science #learnontiktok ",
"id": "7200055670597750062",
"stats": {
"collectCount": 32500,
"commentCount": 4664,
"diggCount": 637000,
"playCount": 7600000,
"shareCount": 4367
},
"contents": [
{
"desc": "Did you get it? What time? Should I post more animal skull ID speedruns? #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1675793330,
"desc": "Seahorse - Do you know why this is? Male Seahorse vs Female Seahorse. To tell the difference, look at the shape of their torso. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"id": "7197477504804769070",
"stats": {
"collectCount": 31300,
"commentCount": 3269,
"diggCount": 475000,
"playCount": 5500000,
"shareCount": 5431
},
"contents": [
{
"desc": "Seahorse - Do you know why this is? Male Seahorse vs Female Seahorse. To tell the difference, look at the shape of their torso. Specimen use made possible by the University of Michigan Museum of Zoology #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1675182058,
"desc": "Squid Suckers vs Octopus Suckers - Did you know this? Although they look the same, they’re different. Octopus suckers are smooth but squid suction cups can have teeth and hooks. Specimen use provided by University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7194852106799435051",
"stats": {
"collectCount": 3262,
"commentCount": 284,
"diggCount": 53800,
"playCount": 632100,
"shareCount": 1204
},
"contents": [
{
"desc": "Squid Suckers vs Octopus Suckers - Did you know this? Although they look the same, they’re different. Octopus suckers are smooth but squid suction cups can have teeth and hooks. Specimen use provided by University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1674751977,
"desc": "Bison - Did you know this? I thought these were buffalo, but I was wrong. They’re actually an entirely different animal, American Bison. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7193004837456596270",
"stats": {
"collectCount": 12400,
"commentCount": 2178,
"diggCount": 179900,
"playCount": 1600000,
"shareCount": 886
},
"contents": [
{
"desc": "Bison - Did you know this? I thought these were buffalo, but I was wrong. They’re actually an entirely different animal, American Bison. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1674583154,
"desc": "Moth - Infected by a parasitic fungus. Many insects can be parasitized by fungi like this. Some people call them zombie fungi. Specimen use provided by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7192279775723949355",
"stats": {
"collectCount": 15300,
"commentCount": 1452,
"diggCount": 220000,
"playCount": 2100000,
"shareCount": 3435
},
"contents": [
{
"desc": "Moth - Infected by a parasitic fungus. Many insects can be parasitized by fungi like this. Some people call them zombie fungi. Specimen use provided by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1673541860,
"desc": "Octopus - This works for most octopus. If it has has a scoop at the end of one of its arms - it’s a male. If not, it’s a female. That scoop is called a hectocotylus. #animals #science #learnontiktok ",
"id": "7187807504133557550",
"stats": {
"collectCount": 49600,
"commentCount": 3422,
"diggCount": 841300,
"playCount": 7100000,
"shareCount": 16700
},
"contents": [
{
"desc": "Octopus - This works for most octopus. If it has has a scoop at the end of one of its arms - it’s a male. If not, it’s a female. That scoop is called a hectocotylus. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1673370011,
"desc": "Narwhal - I thought narwhals had horns, but I was wrong. Turns out, a narwhal horn is actually an extremely long tooth, or tusk. #animals #science #learnontiktok ",
"id": "7187069360224111915",
"stats": {
"collectCount": 20000,
"commentCount": 1325,
"diggCount": 366000,
"playCount": 3300000,
"shareCount": 4534
},
"contents": [
{
"desc": "Narwhal - I thought narwhals had horns, but I was wrong. Turns out, a narwhal horn is actually an extremely long tooth, or tusk. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1671122508,
"desc": "Squid - This is how squids move around. They suck water into their mantle and shoot it out of a siphon. #animals #science #learnontiktok ",
"id": "7177416477237136686",
"stats": {
"collectCount": 4547,
"commentCount": 440,
"diggCount": 83900,
"playCount": 859600,
"shareCount": 960
},
"contents": [
{
"desc": "Squid - This is how squids move around. They suck water into their mantle and shoot it out of a siphon. #animals #science #learnontiktok ",
"textExtra": [
{
"hashtagName": "animals"
},
{
"hashtagName": "science"
},
{
"hashtagName": "learnontiktok"
}
]
}
]
},
{
"createTime": 1675963028,
"desc": "Mouse to Whale Vertebrae - What bone should I do next? How big is a mouse vertebra? How big is a whale vertebrae? A lot bigger, but all vertebrae share the same shape. Specimen use made possible by the University of Michigan Museum of Zoology. #animals #science #learnontiktok ",
"id": "7198206283571285294",
"stats": {