forked from argotdev/deno-graphql
-
Notifications
You must be signed in to change notification settings - Fork 3
/
dinosaurs.json
3022 lines (3022 loc) · 81.7 KB
/
dinosaurs.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
[
{
"name": "Aardonyx",
"description": "An early stage in the evolution of sauropods."
},
{
"name": "Abelisaurus",
"description": "\"Abel's lizard\" has been reconstructed from a single skull."
},
{
"name": "Abrictosaurus",
"description": "An early relative of Heterodontosaurus."
},
{
"name": "Abrosaurus",
"description": "A close Asian relative of Camarasaurus."
},
{
"name": "Abydosaurus",
"description": "This sauropod's intact skull was discovered in 2010."
},
{
"name": "Acanthopholis",
"description": "No, it's not a city in Greece."
},
{
"name": "Achelousaurus",
"description": "Might this have been a growth stage of Pachyrhinosaurus?"
},
{
"name": "Achillobator",
"description": "This fierce raptor was discovered in modern-day Mongolia."
},
{
"name": "Acristavus",
"description": "This early hadrosaur lacked any ornamentation on its skull."
},
{
"name": "Acrocanthosaurus",
"description": "The largest meat-eating dinosaur of the early Cretaceous period."
},
{
"name": "Acrotholus",
"description": "North America's earliest bone-headed dinosaur."
},
{
"name": "Adamantisaurus",
"description": "This titanosaur was named 50 years after its discovery."
},
{
"name": "Adasaurus",
"description": "This raptor's hind claws were unusually small."
},
{
"name": "Adeopapposaurus",
"description": "A close relative of Massospondylus."
},
{
"name": "Aegyptosaurus",
"description": "Try and guess which country this dinosaur was found in."
},
{
"name": "Aeolosaurus",
"description": "Could this titanosaur have reared up on its hind legs?"
},
{
"name": "Aerosteon",
"description": "This air-boned dinosaur may have breathed like a bird."
},
{
"name": "Afrovenator",
"description": "One of the few carnivores ever to be dug up in northern Africa."
},
{
"name": "Agathaumas",
"description": "The first ceratopsian dinosaur ever discovered."
},
{
"name": "Agilisaurus",
"description": "This \"agile lizard\" was one of the earliest ornithopods."
},
{
"name": "Agujaceratops",
"description": "It was once classified as a species of Chasmosaurus."
},
{
"name": "Agustinia",
"description": "A large, spiny-backed sauropod."
},
{
"name": "Ajkaceratops",
"description": "The first ceratopsian ever to be discovered in Europe."
},
{
"name": "Alamosaurus",
"description": "No, it wasn't named after the Alamo, but it should have been."
},
{
"name": "Alaskacephale",
"description": "Can you guess which state this pachycephalosaur was found in?"
},
{
"name": "Albalophosaurus",
"description": "One of the few dinosaurs ever to be discovered in Japan."
},
{
"name": "Albertaceratops",
"description": "The most basal \"centrosaurine\" yet identified."
},
{
"name": "Albertadromeus",
"description": "This petite ornithopod was recently discovered in Canada."
},
{
"name": "Albertonykus",
"description": "A tiny, birdlike, North American dinosaur."
},
{
"name": "Albertosaurus",
"description": "This carnivorous dinosaur was a close relative of T. Rex."
},
{
"name": "Alectrosaurus",
"description": "Few specimens of this \"unmarried lizard\" have been found."
},
{
"name": "Aletopelta",
"description": "The first ankylosaur known to have lived in Mexico."
},
{
"name": "Alioramus",
"description": "Everything we know about this tyrannosaur is based on a single skull."
},
{
"name": "Allosaurus",
"description": "The apex predator of late Jurassic North America."
},
{
"name": "Altirhinus",
"description": "This \"high-nosed\" plant eater resembled an early hadrosaur."
},
{
"name": "Alvarezsaurus",
"description": "A bird-like dinosaur of the late Cretaceous."
},
{
"name": "Alwalkeria",
"description": "This Indian dinosaur was one of the earliest saurischians."
},
{
"name": "Alxasaurus",
"description": "An early relative of the bizarre Therizinosaurus."
},
{
"name": "Amargasaurus",
"description": "A bizarre, spined sauropod from South America."
},
{
"name": "Amazonsaurus",
"description": "One of the few dinosaurs to be found in the Amazon basin."
},
{
"name": "Ammosaurus",
"description": "This may (or may not) have been the same dinosaur as Anchisaurus."
},
{
"name": "Ampelosaurus",
"description": "One of the best-known of the armored titanosaurs."
},
{
"name": "Amphicoelias",
"description": "Could it have been the biggest dinosaur that ever lived?"
},
{
"name": "Amurosaurus",
"description": "The most complete hadrosaur to be discovered in Russia."
},
{
"name": "Anabisetia",
"description": "The best-attested South American ornithopod."
},
{
"name": "Anatosaurus",
"description": "This dinosaur is now known as either Anatotitan or Edmontosaurus."
},
{
"name": "Anatotitan",
"description": "This hadrosaur's name means \"giant duck\"."
},
{
"name": "Anchiceratops",
"description": "This dinosaur had a distinctively shaped frill."
},
{
"name": "Anchiornis",
"description": "A four-winged dino-bird that resembled Microraptor."
},
{
"name": "Anchisaurus",
"description": "One of the first dinosaurs ever to be dug up in the U.S."
},
{
"name": "Andesaurus",
"description": "This titanosaur rivaled Argentinosaurus in size."
},
{
"name": "Angaturama",
"description": "A Brazilian relative of Spinosaurus."
},
{
"name": "Angolatitan",
"description": "The first dinosaur ever to be discovered in Angola."
},
{
"name": "Angulomastacator",
"description": "This dinosaur had a strangely shaped upper jaw."
},
{
"name": "Animantarx",
"description": "This \"living fortress\" was discovered in an unusual way."
},
{
"name": "Ankylosaurus",
"description": "This dinosaur was the Cretaceous equivalent of a Sherman tank."
},
{
"name": "Anodontosaurus",
"description": "This \"toothless lizard\" actually had a full set of choppers."
},
{
"name": "Anserimimus",
"description": "This \"goose mimic\" didn’t bear much of a resemblance."
},
{
"name": "Antarctopelta",
"description": "The first dinosaur fossil ever discovered in Antarctica."
},
{
"name": "Antarctosaurus",
"description": "This titanosaur may or may not have lived in Antarctica."
},
{
"name": "Antetonitrus",
"description": "Either a very late prosauropod or a very early sauropod."
},
{
"name": "Anzu",
"description": "This Oviraptor relative was recently discovered in North America."
},
{
"name": "Aorun",
"description": "A small theropod of late Jurassic Asia."
},
{
"name": "Apatosaurus",
"description": "The dinosaur formerly known as Brontosaurus."
},
{
"name": "Appalachiosaurus",
"description": "One of the few dinosaurs ever to be found in Alabama."
},
{
"name": "Aquilops",
"description": "The earliest ceratopsian ever to be discovered in North America."
},
{
"name": "Aragosaurus",
"description": "Named after the Aragon region of Spain."
},
{
"name": "Aralosaurus",
"description": "Not much is known about this central Asian duck-billed dinosaur."
},
{
"name": "Archaeoceratops",
"description": "Possibly the smallest ceratopsian that ever lived."
},
{
"name": "Archaeopteryx",
"description": "This ancient dino-bird was about the size of a modern pigeon."
},
{
"name": "Archaeornithomimus",
"description": "A likely ancestor of Ornithomimus."
},
{
"name": "Arcovenator",
"description": "This fierce abelisaur was recently discovered in France."
},
{
"name": "Arcusaurus",
"description": "This prosauropod was recently discovered in South Africa."
},
{
"name": "Argentinosaurus",
"description": "Possibly the largest dinosaur that ever lived."
},
{
"name": "Argyrosaurus",
"description": "A plus-sized titanosaur from South America."
},
{
"name": "Aristosuchus",
"description": "This \"noble crocodile\" was actually a dinosaur."
},
{
"name": "Arrhinoceratops",
"description": "This ceratopsian was named for its \"missing\" nose horn."
},
{
"name": "Astrodon",
"description": "The official state dinosaur of Maryland."
},
{
"name": "Asylosaurus",
"description": "This \"unharmed lizard\" escaped destruction in World War II."
},
{
"name": "Atlasaurus",
"description": "This sauropod had unusually long legs."
},
{
"name": "Atlascopcosaurus",
"description": "Named after a manufacturer of digging equipment."
},
{
"name": "Atrociraptor",
"description": "This \"cruel thief\" wasn't as atrocious as its name implies."
},
{
"name": "Aublysodon",
"description": "This tyrannosaur was named after a single tooth."
},
{
"name": "Aucasaurus",
"description": "This predator was a close relative of Carnotaurus."
},
{
"name": "Auroraceratops",
"description": "A close relative of Archaeoceratops."
},
{
"name": "Australodocus",
"description": "This sauropod was found in modern-day Tanzania."
},
{
"name": "Australovenator",
"description": "A recently discovered carnivore from Australia."
},
{
"name": "Austroraptor",
"description": "The largest raptor from South America."
},
{
"name": "Austrosaurus",
"description": "This titanosaur was discovered near a train station."
},
{
"name": "Avaceratops",
"description": "This ceratopsian is represented by a single juvenile."
},
{
"name": "Aviatyrannis",
"description": "This \"grandmother tyrant\" was one of the first tyrannosaurs."
},
{
"name": "Avimimus",
"description": "A particularly bird-like cousin of Oviraptor."
},
{
"name": "Bactrosaurus",
"description": "One of the earliest of the duck-billed dinosaurs."
},
{
"name": "Bagaceratops",
"description": "A small ceratopsian from central Asia."
},
{
"name": "Bagaraatan",
"description": "No one is quite sure how to classify this theropod."
},
{
"name": "Bahariasaurus",
"description": "This obscure carnivore may have been the size of T. Rex."
},
{
"name": "Balaur",
"description": "This \"stocky dragon\" was recently discovered in Romania."
},
{
"name": "Bambiraptor",
"description": "Yes, this tiny raptor was named after you-know-who."
},
{
"name": "Barapasaurus",
"description": "Probably the first of the giant sauropods."
},
{
"name": "Barilium",
"description": "Yet another iguanodontid ornithopod of the British Isles."
},
{
"name": "Barosaurus",
"description": "An enormous plant-eater with a tiny head."
},
{
"name": "Barsboldia",
"description": "This hadrosaur was named after Rinchen Barsbold."
},
{
"name": "Baryonyx",
"description": "You wouldn't want to clip this dinosaur's claws."
},
{
"name": "Batyrosaurus",
"description": "One of the most basal hadrosaurs yet identified."
},
{
"name": "Becklespinax",
"description": "A strangely named theropod of the early Cretaceous period."
},
{
"name": "Beipiaosaurus",
"description": "The only known feathered therizinosaur."
},
{
"name": "Beishanlong",
"description": "This bird mimic weighed over half a ton."
},
{
"name": "Bellusaurus",
"description": "A herd of this sauropod drowned in a flash flood."
},
{
"name": "Berberosaurus",
"description": "This \"Berber lizard\" has proven difficult to classify."
},
{
"name": "Bicentenaria",
"description": "This dinosaur was named for Argentina's 200th anniversary."
},
{
"name": "Bistahieversor",
"description": "This tyrannosaur had more teeth than T. Rex."
},
{
"name": "Bonapartenykus",
"description": "This feathered dinosaur was found in close proximity to its eggs."
},
{
"name": "Bonitasaura",
"description": "This titanosaur wasn't as beautiful as its name implies."
},
{
"name": "Borogovia",
"description": "This theropod was named after a Lewis Carroll poem."
},
{
"name": "Bothriospondylus",
"description": "A case study in dinosaur confusion."
},
{
"name": "Brachiosaurus",
"description": "This dinosaur was a giant, gentle, long-necked plant-eater."
},
{
"name": "Brachyceratops",
"description": "A little-known ceratopsian from North America."
},
{
"name": "Brachylophosaurus",
"description": "This duck-billed dinosaur's beak looked more like a parrot's."
},
{
"name": "Brachytrachelopan",
"description": "This sauropod had an unusually short neck."
},
{
"name": "Bravoceratops",
"description": "This ceratopsian was recently discovered in Texas."
},
{
"name": "Brontomerus",
"description": "Its name is Greek for \"thunder thighs\"."
},
{
"name": "Bruhathkayosaurus",
"description": "Was this titanosaur bigger than Argentinosaurus?"
},
{
"name": "Buitreraptor",
"description": "The oldest raptor ever discovered in South America."
},
{
"name": "Byronosaurus",
"description": "This theropod was a close relative of Troodon."
},
{
"name": "Camarasaurus",
"description": "The most common sauropod of Jurassic North America."
},
{
"name": "Camarillasaurus",
"description": "A ceratosaur of early Cretaceous western Europe."
},
{
"name": "Camelotia",
"description": "An early member of the line that evolved into sauropods."
},
{
"name": "Camptosaurus",
"description": "A close relative of Iguanodon."
},
{
"name": "Carcharodontosaurus",
"description": "Its name means \"great white shark lizard.\" Impressed yet?"
},
{
"name": "Carnotaurus",
"description": "The shortest arms of any meat-eating dinosaur with horns to match."
},
{
"name": "Caudipteryx",
"description": "A birdlike dinosaur that changed the views of paleontologists."
},
{
"name": "Centrosaurus",
"description": "Like a unicorn, this ceratopsian only had one horn."
},
{
"name": "Cerasinops",
"description": "A small ceratopsian of the late Cretaceous."
},
{
"name": "Ceratonykus",
"description": "This dino-bird was discovered in Mongolia in 2009."
},
{
"name": "Ceratosaurus",
"description": "This primitive carnivore is hard to classify."
},
{
"name": "Cetiosauriscus",
"description": "Not to be confused with the more famous Cetiosaurus."
},
{
"name": "Cetiosaurus",
"description": "This \"whale lizard\" was once mistaken for the Loch Ness Monster."
},
{
"name": "Changyuraptor",
"description": "Was this feathered dinosaur capable of flight?"
},
{
"name": "Chaoyangsaurus",
"description": "An early ceratopsian of the late Jurassic period."
},
{
"name": "Charonosaurus",
"description": "This duck-billed dinosaur was much bigger than an elephant."
},
{
"name": "Chasmosaurus",
"description": "The only dinosaur that came with its own awning."
},
{
"name": "Chialingosaurus",
"description": "One of the earliest Asian stegosaurs."
},
{
"name": "Chilantaisaurus",
"description": "This large theropod may have been ancestral to Spinosaurus."
},
{
"name": "Chilesaurus",
"description": "This plant-eating theropod was recently discovered in Chile."
},
{
"name": "Chindesaurus",
"description": "This early dinosaur was a close relative of Herrerasaurus."
},
{
"name": "Chirostenotes",
"description": "This birdlike dinosaur has been known by three different names."
},
{
"name": "Chubutisaurus",
"description": "This titanosaur was on Tyrannotitan's lunch menu."
},
{
"name": "Chungkingosaurus",
"description": "This early stegosaur had some primitive characteristics."
},
{
"name": "Citipati",
"description": "This Mongolian theropod was a close relative of Oviraptor."
},
{
"name": "Claosaurus",
"description": "This \"broken lizard\" was a primitive hadrosaur."
},
{
"name": "Coahuilaceratops",
"description": "It had the longest horns of any known ceratopsian dinosaur."
},
{
"name": "Coelophysis",
"description": "One of the most ancient dinosaurs ever to roam the earth."
},
{
"name": "Coelurus",
"description": "This tiny dinosaur was a close relative of Compsognathus."
},
{
"name": "Colepiocephale",
"description": "This thick-skulled dinosaur's name is Greek for \"knucklehead\"."
},
{
"name": "Compsognathus",
"description": "This dinosaur was the size of a chicken, but much meaner."
},
{
"name": "Concavenator",
"description": "This large theropod had a bizarre hump on its back."
},
{
"name": "Conchoraptor",
"description": "This \"conch thief\" may have lunched on mollusks."
},
{
"name": "Condorraptor",
"description": "A small theropod of middle Jurassic South America."
},
{
"name": "Coronosaurus",
"description": "This \"crown lizard\" was once classified as a species of Centrosaurus."
},
{
"name": "Corythosaurus",
"description": "This \"Corinthian-helmeted\" dino had a distinctive mating call."
},
{
"name": "Crichtonsaurus",
"description": "This dinosaur was named after the author of Jurassic Park."
},
{
"name": "Cruxicheiros",
"description": "This \"cross-handed\" dinosaur was named in 2010."
},
{
"name": "Cryolophosaurus",
"description": "This crested dinosaur was once known as \"Elvisaurus\"."
},
{
"name": "Cryptovolans",
"description": "Was this the same dinosaur as Microraptor?"
},
{
"name": "Cumnoria",
"description": "It was once mistakenly classified as a species of Iguanodon."
},
{
"name": "Dacentrurus",
"description": "The first stegosaur ever to be described."
},
{
"name": "Daemonosauru 0s",
"description": "This \"evil lizard\" was a close relative of Coelophysis."
},
{
"name": "Dahalokely",
"description": "A rare theropod from the island of Madagascar."
},
{
"name": "Dakotaraptor",
"description": "This giant raptor was recently discovered in South Dakota."
},
{
"name": "Daspletosaurus",
"description": "This \"frightful lizard\" was a close cousin of T. Rex."
},
{
"name": "Datousaurus",
"description": "A medium-sized sauropod from middle Jurassic Asia."
},
{
"name": "Darwinsaurus",
"description": "\"Darwin's lizard\" may or may not be a valid dinosaur genus."
},
{
"name": "Deinocheirus",
"description": "All we know for sure about this dinosaur is the shape of its arms."
},
{
"name": "Deinodon",
"description": "This \"terrible tooth\" is important from a historical perspective."
},
{
"name": "Deinonychus",
"description": "One of the most fearsome raptors of the Cretaceous period."
},
{
"name": "Delapparentia",
"description": "This ornithopod was initially classified as a species of Iguanodon."
},
{
"name": "Deltadromeus",
"description": "An unusually speedy theropod of the middle Cretaceous."
},
{
"name": "Demandasaurus",
"description": "A poorly understood sauropod of early Cretaceous Europe."
},
{
"name": "Diabloceratops",
"description": "It looked like a cross between a Triceratops and a Centrosaurus."
},
{
"name": "Diamantinasaurus",
"description": "This titanosaur was recently discovered in Australia."
},
{
"name": "Diceratops",
"description": "Was this two-horned dinosaur really a specimen of Triceratops?"
},
{
"name": "Dicraeosaurus",
"description": "A medium-sized, spiny-necked sauropod."
},
{
"name": "Dilong",
"description": "This \"emperor dragon\" may have been an ancestor of T. Rex."
},
{
"name": "Dilophosaurus",
"description": "This dinosaur was distinguished by the bony crests on its noggin."
},
{
"name": "Dimetrodon",
"description": "This ancient synapsid had a huge sail on its back."
},
{
"name": "Diplodocus",
"description": "Thin at one end, much thicker in the middle, and thin again at the far end."
},
{
"name": "Dollodon",
"description": "Named after the Belgian paleontologist Louis Dollo."
},
{
"name": "Draconyx",
"description": "This \"dragon claw\" lived in late Jurassic Portugal."
},
{
"name": "Dracopelta",
"description": "This early ankylosaur was discovered in Portugal."
},
{
"name": "Dracorex",
"description": "The only dinosaur to be named after the \"Harry Potter\" books."
},
{
"name": "Dracovenator",
"description": "This \"dragon hunter\" was a close relative of Dilophosaurus."
},
{
"name": "Dravidosaurus",
"description": "This \"dinosaur\" may actually have been a marine reptile."
},
{
"name": "Dreadnoughtus",
"description": "This huge titanosaur was recently discovered in Argentina."
},
{
"name": "Drinker",
"description": "Named after the famous paleontologist Edward Drinker Cope."
},
{
"name": "Dromaeosauroides",
"description": "The only dinosaur ever to be discovered in Denmark."
},
{
"name": "Dromaeosaurus",
"description": "This \"running lizard\" was probably covered with feathers."
},
{
"name": "Dromiceiomimus",
"description": "Possibly the fastest dinosaur that ever lived."
},
{
"name": "Dryosaurus",
"description": "A typical ornithopod of the late Jurassic."
},
{
"name": "Dryptosaurus",
"description": "The first tyrannosaur to be discovered in the U.S."
},
{
"name": "Dubreuillosaurus",
"description": "This megalosaur had a long, low snout."
},
{
"name": "Duriavenator",
"description": "Yet another theropod that was once assigned to Megalosaurus."
},
{
"name": "Dyoplosaurus",
"description": "This ankylosaur was once confused with Euoplocephalus."
},
{
"name": "Dysalotosaurus",
"description": "We know a lot about this dinosaur's growth stages."
},
{
"name": "Dyslocosaurus",
"description": "Its name means \"hard-to-place lizard\"."
},
{
"name": "Dystrophaeus",
"description": "This Diplodocus-like sauropod was named by Edward Cope."
},
{
"name": "Echinodon",
"description": "One of the few ornithopods to sport a set of canines."
},
{
"name": "Edmarka",
"description": "This may have been a species of Torvosaurus."
},
{
"name": "Edmontonia",
"description": "This armored dinosaur never actually lived in Edmonton."
},
{
"name": "Edmontosaurus",
"description": "This large, duck-billed herbivore was a contemporary of T. Rex."
},
{
"name": "Efraasia",
"description": "This Triassic herbivore may have been ancestral to sauropods."
},
{
"name": "Einiosaurus",
"description": "This ceratopsian was a close relative of Centrosaurus."
},
{
"name": "Ekrixinatosaurus",
"description": "Its name means \"explosion-born lizard\"."
},
{
"name": "Elaphrosaurus",
"description": "A lightweight theropod from the late Jurassic."
},
{
"name": "Elmisaurus",
"description": "This \"foot lizard\" was a close relative of Oviraptor."
},
{
"name": "Elopteryx",
"description": "This Transylvanian dinosaur is almost as controversial as Dracula."
},
{
"name": "Elrhazosaurus",
"description": "Once classified as a species of Valdosaurus."
},
{
"name": "Enigmosaurus",
"description": "This \"puzzle lizard\" was closely related to Therizinosaurus."
},
{
"name": "Eoabelisaurus",
"description": "The earliest abelisaurid theropod yet identified."
},
{
"name": "Eobrontosaurus",
"description": "This \"dawn brontosaurus\" isn't accepted by most experts."
},
{
"name": "Eocarcharia",
"description": "This \"dawn shark\" prowled the woodlands of northern Africa."
},
{
"name": "Eocursor",
"description": "This late Triassic reptile was one of the earliest true dinosaurs."
},
{
"name": "Eodromaeus",
"description": "Yet another ancient theropod from South America."
},
{
"name": "Eolambia",
"description": "An early hadrosaur from North America."
},
{
"name": "Eoraptor",
"description": "This tiny dinosaur was among the first of its kind."
},
{
"name": "Eosinopteryx",
"description": "A tiny feathered dinosaur of the late Jurassic period."
},
{
"name": "Eotriceratops",
"description": "This \"dawn Triceratops\" was recently discovered in Canada."
},
{
"name": "Eotyrannus",
"description": "This early tyrannosaur looked more like a raptor."
},
{
"name": "Epachthosaurus",
"description": "This \"heavy lizard\" was relatively primitive for its time and place."
},
{
"name": "Epidendrosaurus",
"description": "Did this tiny dino-bird spend its life up a tree?"
},
{
"name": "Epidexipteryx",
"description": "This feathered dinosaur predated Archaeopteryx."
},
{
"name": "Equijubus",
"description": "Its name is Greek for \"horse mane\"."
},
{
"name": "Erectopus",
"description": "This \"upright-footed\" dinosaur is a 19th-century enigma."
},
{
"name": "Erketu",
"description": "This titanosaur had an unusually long neck."
},
{
"name": "Erliansaurus",
"description": "A basal therizinosaur from central Asia."
},
{
"name": "Erlikosaurus",
"description": "This late therizinosaur roamed the Mongolian forests."
},
{
"name": "Euhelopus",
"description": "The first sauropod to be discovered in China."
},
{
"name": "Euoplocephalus",
"description": "Even this ankylosaur's eyelids were armored."
},
{
"name": "Europasaurus",
"description": "The smallest sauropod ever discovered."
},
{
"name": "Europelta",
"description": "This early nodosaur was recently discovered in Spain."
},
{
"name": "Euskelosaurus",
"description": "The first dinosaur ever to be discovered in Africa."
},
{
"name": "Eustreptospondylus",
"description": "A close cousin of Megalosaurus."
},
{
"name": "Fabrosaurus",
"description": "This early ornithopod may have been a species of Lesothosaurus."
},
{
"name": "Falcarius",
"description": "A bizarre, feathered theropod from North America."
},
{
"name": "Ferganasaurus",
"description": "The first dinosaur ever to be discovered in the USSR."
},
{
"name": "Fruitadens",
"description": "One of the tiniest dinosaurs ever to live in North America."
},
{
"name": "Fukuiraptor",
"description": "One of the few carnivorous dinosaurs ever to be dug up in Japan."
},
{
"name": "Fukuisaurus",
"description": "This ornithopod was discovered in Japan."
},
{
"name": "Fulgurotherium",
"description": "Very little is known about this \"lightning beast\"."
},
{
"name": "Futalognkosaurus",
"description": "A very big, and very strangely named sauropod."
},
{
"name": "Gallimimus",
"description": "This \"chicken mimic\" roamed the plains of the late Cretaceous."