-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjama_links.json
9146 lines (9146 loc) · 306 KB
/
jama_links.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
[
{
"id": 0,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2811509",
"answer_idx": "D",
"answer": "Provide supportive care"
},
{
"id": 1,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2811315",
"answer_idx": "C",
"answer": "Emphysematous thyroiditis"
},
{
"id": 2,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2811083",
"answer_idx": "D",
"answer": "Mpox"
},
{
"id": 3,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2810596",
"answer_idx": "C",
"answer": "Repeat complete blood cell count with differential in 1 to 2 weeks"
},
{
"id": 4,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2810537",
"answer_idx": "C",
"answer": "Perineural spread of cutaneous malignancy"
},
{
"id": 5,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2810749",
"answer_idx": "D",
"answer": "Myeloid/lymphoid neoplasms with eosinophilia and tyrosine kinase gene fusions"
},
{
"id": 6,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2810850",
"answer_idx": "B",
"answer": "Kikuchi-Fujimoto disease"
},
{
"id": 7,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2810393",
"answer_idx": "A",
"answer": "Cardiac magnetic resonance imaging"
},
{
"id": 8,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2810455",
"answer_idx": "C",
"answer": "Diffuse-type neurofibroma"
},
{
"id": 9,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2810452",
"answer_idx": "D",
"answer": "Phaeohyphomycosis"
},
{
"id": 10,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2808316",
"answer_idx": "B",
"answer": "Meningioma"
},
{
"id": 11,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2808660",
"answer_idx": "A",
"answer": "Leishmaniasis"
},
{
"id": 12,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2808228",
"answer_idx": "C",
"answer": "Medication adverse effect"
},
{
"id": 13,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2809279",
"answer_idx": "B",
"answer": "Peripheral blood smear"
},
{
"id": 14,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2809480",
"answer_idx": "C",
"answer": "Observe with no additional testing or intervention"
},
{
"id": 15,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2808886",
"answer_idx": "D",
"answer": "Euthyroid pretibial mucinosis"
},
{
"id": 16,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2809085",
"answer_idx": "B",
"answer": "Familial cerebral cavernous malformations"
},
{
"id": 17,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2810142",
"answer_idx": "D",
"answer": "Observation"
},
{
"id": 18,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2809657",
"answer_idx": "C",
"answer": "Epidermolysis bullosa pruriginosa (EBP)"
},
{
"id": 19,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2809652",
"answer_idx": "D",
"answer": "Check blood pressure"
},
{
"id": 20,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2809348",
"answer_idx": "B",
"answer": "Rhabdomyoma"
},
{
"id": 21,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2809109",
"answer_idx": "C",
"answer": "Start topical steroids and perform a skin patch test"
},
{
"id": 22,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2807476",
"answer_idx": "A",
"answer": "Disseminated fusariosis"
},
{
"id": 23,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2807704",
"answer_idx": "D",
"answer": "Carcinoma hemorrhagiectoides"
},
{
"id": 24,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2808313",
"answer_idx": "C",
"answer": "Bullous pilomatricoma"
},
{
"id": 25,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2807444",
"answer_idx": "B",
"answer": "Order brain magnetic resonance imaging to look for associated central nervous system tumors"
},
{
"id": 26,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2807957",
"answer_idx": "B",
"answer": "Check an antisynthetase antibody panel"
},
{
"id": 27,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2806318",
"answer_idx": "C",
"answer": "Pediatric fibromyxoid soft tissue tumor"
},
{
"id": 28,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2806644",
"answer_idx": "C",
"answer": "Order anti-GQ1b antibody and start intravenous immune globulin"
},
{
"id": 29,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2806274",
"answer_idx": "C",
"answer": "Melanoma"
},
{
"id": 30,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2806495",
"answer_idx": "B",
"answer": "Stop prednisone and proceed with diagnostic vitrectomy"
},
{
"id": 31,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2807531",
"answer_idx": "A",
"answer": "Obtain MRI of the left shoulder"
},
{
"id": 32,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2806695",
"answer_idx": "C",
"answer": "Percutaneous coronary intervention"
},
{
"id": 33,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2806311",
"answer_idx": "B",
"answer": "VEXAS syndrome"
},
{
"id": 34,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2806818",
"answer_idx": "C",
"answer": "Pseudoxanthoma elasticum\u2013like disorder with coagulation deficiency"
},
{
"id": 35,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2807273",
"answer_idx": "B",
"answer": "Obtain serologic testing for E granulosus antibodies"
},
{
"id": 36,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2807108",
"answer_idx": "C",
"answer": "Send skin biopsy specimen to the US National Hansen\u2019s Disease Program for PCR testing"
},
{
"id": 37,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2806639",
"answer_idx": "B",
"answer": "Order genetic testing"
},
{
"id": 38,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2805070",
"answer_idx": "D",
"answer": "Magnetic resonance imaging with magnetic resonance angiography or digital subtraction angiography"
},
{
"id": 39,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2805396",
"answer_idx": "D",
"answer": "Schedule combined phacoemulsification-vitrectomy surgery"
},
{
"id": 40,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2805508",
"answer_idx": "C",
"answer": "Intravitreal steroid injection"
},
{
"id": 41,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2805263",
"answer_idx": "B",
"answer": "Venous malformation"
},
{
"id": 42,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2805264",
"answer_idx": "C",
"answer": "Invasive fungal sinusitis (mucormycosis) with perineural spread"
},
{
"id": 43,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2805459",
"answer_idx": "D",
"answer": "Localized amyloidosis (amyloidoma)"
},
{
"id": 44,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2805464",
"answer_idx": "B",
"answer": "Blastic plasmacytoid dendritic cell neoplasm"
},
{
"id": 45,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2805527",
"answer_idx": "C",
"answer": "Histiocytoid Sweet syndrome"
},
{
"id": 46,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2805562",
"answer_idx": "D",
"answer": "Takayasu arteritis"
},
{
"id": 47,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2806233",
"answer_idx": "B",
"answer": "Obtain skin biopsy with T-cell clonality studies"
},
{
"id": 48,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2805120",
"answer_idx": "C",
"answer": "Provide reassurance and prescribe oral care"
},
{
"id": 49,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2803833",
"answer_idx": "C",
"answer": "Hairy pharyngeal polyp"
},
{
"id": 50,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2803851",
"answer_idx": "C",
"answer": "Obtain a sample of the hypopyon through anterior chamber paracentesis and inject intravitreal antibiotics"
},
{
"id": 51,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2804363",
"answer_idx": "A",
"answer": "Review brain MRI and order electroretinogram"
},
{
"id": 52,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2803624",
"answer_idx": "B",
"answer": "Pyoderma gangrenosum"
},
{
"id": 53,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2804447",
"answer_idx": "B",
"answer": "Genetic testing"
},
{
"id": 54,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2803777",
"answer_idx": "D",
"answer": "Malignant myopericytoma"
},
{
"id": 55,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2804571",
"answer_idx": "D",
"answer": "Microvenular hemangioma"
},
{
"id": 56,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2803934",
"answer_idx": "B",
"answer": "Discontinue amiodarone and administer a corticosteroid"
},
{
"id": 57,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2805065",
"answer_idx": "A",
"answer": "Implant a defibrillator"
},
{
"id": 58,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2804367",
"answer_idx": "D",
"answer": "Plan for surgical intervention after intravenous fluid resuscitation in the intensive care unit (ICU)"
},
{
"id": 59,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2804051",
"answer_idx": "A",
"answer": "Check stool for ova and parasites"
},
{
"id": 60,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2803658",
"answer_idx": "B",
"answer": "Multivirus-specific cytotoxic T lymphocytes (CTLs)"
},
{
"id": 61,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2802569",
"answer_idx": "B",
"answer": "High-grade serous carcinoma of gynecological origin"
},
{
"id": 62,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2801610",
"answer_idx": "C",
"answer": "Cervical chondrocutaneous branchial remnant"
},
{
"id": 63,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2801970",
"answer_idx": "C",
"answer": "Soft tissue aneurysmal bone cyst"
},
{
"id": 64,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2802781",
"answer_idx": "A",
"answer": "Pilonidal sinus"
},
{
"id": 65,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2803025",
"answer_idx": "A",
"answer": "Aspirate the bullae with a sterile needle and cover with a clean dressing"
},
{
"id": 66,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2802378",
"answer_idx": "B",
"answer": "Commence high-dose corticosteroids"
},
{
"id": 67,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2802123",
"answer_idx": "C",
"answer": "Start corticosteroids"
},
{
"id": 68,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2802694",
"answer_idx": "D",
"answer": "Perform hemoglobin electrophoresis"
},
{
"id": 69,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2801593",
"answer_idx": "B",
"answer": "Inflammation of actinic keratoses"
},
{
"id": 70,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2801145",
"answer_idx": "C",
"answer": "Schwannoma"
},
{
"id": 71,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2801952",
"answer_idx": "A",
"answer": "Gorham-Stout disease"
},
{
"id": 72,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2801445",
"answer_idx": "B",
"answer": "Hydroxyurea-induced squamous dysplasia"
},
{
"id": 73,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2801708",
"answer_idx": "D",
"answer": "Juvenile hyaline fibromatosis"
},
{
"id": 74,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2800307",
"answer_idx": "C",
"answer": "Start intravenous magnesium"
},
{
"id": 75,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2802114",
"answer_idx": "D",
"answer": "100% Oxygen, intravenous fluid, and Trendelenburg position"
},
{
"id": 76,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2801307",
"answer_idx": "C",
"answer": "Obtain aqueous fluid for fungal polymerase chain reaction"
},
{
"id": 77,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2800245",
"answer_idx": "C",
"answer": "Angiosarcoma"
},
{
"id": 78,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2799810",
"answer_idx": "C",
"answer": "IgG4-related disease"
},
{
"id": 79,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2801146",
"answer_idx": "B",
"answer": "Immunotherapy-related inflammation"
},
{
"id": 80,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2800959",
"answer_idx": "B",
"answer": "Hemosiderotic fibrolipomatous tumor"
},
{
"id": 81,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2800960",
"answer_idx": "C",
"answer": "Eosinophilic, polymorphic, and pruritic eruption associated with radiotherapy (EPPER)"
},
{
"id": 82,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2799722",
"answer_idx": "B",
"answer": "Cardiac positron emission tomography"
},
{
"id": 83,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2799621",
"answer_idx": "D",
"answer": "Synovitis, acne, pustulosis, hyperostosis, and osteitis syndrome"
},
{
"id": 84,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2801221",
"answer_idx": "A",
"answer": "Obtain serologic test results for Treponema pallidum"
},
{
"id": 85,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2799739",
"answer_idx": "C",
"answer": "Positron emission tomography scan"
},
{
"id": 86,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2799986",
"answer_idx": "D",
"answer": "Observe with no additional testing or intervention"
},
{
"id": 87,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2800134",
"answer_idx": "C",
"answer": "Inflammatory breast cancer"
},
{
"id": 88,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2799630",
"answer_idx": "A",
"answer": "Madelung disease"
},
{
"id": 89,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2800122",
"answer_idx": "C",
"answer": "Porokeratotic eccrine ostial and dermal duct nevus"
},
{
"id": 90,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2800238",
"answer_idx": "C",
"answer": "Langerhans cell histiocytosis"
},
{
"id": 91,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2798977",
"answer_idx": "B",
"answer": "Pacemaker implantation"
},
{
"id": 92,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2799184",
"answer_idx": "D",
"answer": "Sporadic late-onset nemaline rod myopathy"
},
{
"id": 93,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2800201",
"answer_idx": "B",
"answer": "Initiate continuous positive airway pressure (CPAP) therapy."
},
{
"id": 94,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2798368",
"answer_idx": "B",
"answer": "Perform systemic workup, including chest imaging"
},
{
"id": 95,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2798780",
"answer_idx": "D",
"answer": "Perform an emergency orbital exploration with lesion biopsy"
},
{
"id": 96,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2798549",
"answer_idx": "A",
"answer": "Rosai-Dorfman disease"
},
{
"id": 97,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2799064",
"answer_idx": "C",
"answer": "Secondary syphilis"
},
{
"id": 98,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2799529",
"answer_idx": "C",
"answer": "Optical coherence tomography"
},
{
"id": 99,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2798500",
"answer_idx": "D",
"answer": "Hypotrichosis simplex of the scalp"
},
{
"id": 100,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2798922",
"answer_idx": "C",
"answer": "Eruptive pruritic papular porokeratosis"
},
{
"id": 101,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2798652",
"answer_idx": "C",
"answer": "Address all modifiable cardiovascular risk factors and initiate cascade screening and high-intensity statin therapy and aspirin, 81 mg, daily"
},
{
"id": 102,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2798382",
"answer_idx": "D",
"answer": "Mitochondrial ataxia"
},
{
"id": 103,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2799179",
"answer_idx": "C",
"answer": "Inject a local anesthetic into the area of maximal tenderness"
},
{
"id": 104,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2798991",
"answer_idx": "B",
"answer": "Obtain Mycoplasma pneumoniae IgM and IgG levels"
},
{
"id": 105,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2798670",
"answer_idx": "A",
"answer": "Administer empirical broad-spectrum intraperitoneal antibiotics"
},
{
"id": 106,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2797391",
"answer_idx": "D",
"answer": "Delayed iatrogenic bilateral vocal fold paralysis"
},
{
"id": 107,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2797837",
"answer_idx": "A",
"answer": "Observation"
},
{
"id": 108,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2797858",
"answer_idx": "D",
"answer": "Cutaneous angioimmunoblastic T-cell lymphoma"
},
{
"id": 109,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2797659",
"answer_idx": "D",
"answer": "Nodular colloid degeneration"
},
{
"id": 110,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2798020",
"answer_idx": "C",
"answer": "Cutaneous protothecosis"
},
{
"id": 111,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2798218",
"answer_idx": "C",
"answer": "Perform coronary angiography"
},
{
"id": 112,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2795316",
"answer_idx": "C",
"answer": "Additional imaging, including a computed tomography and positron emission tomography scan"
},
{
"id": 113,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2796320",
"answer_idx": "C",
"answer": "Consider treating the left eye with intra-arterial melphalan"
},
{
"id": 114,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2797009",
"answer_idx": "B",
"answer": "Neoadjuvant cemiplimab immunotherapy (anti\u2013PD-L1 antibody), globe sparing orbitotomy, and surgical excision of the mass"
},
{
"id": 115,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2797388",
"answer_idx": "C",
"answer": "Perform pars plana vitrectomy and excisional biopsy of the membrane"
},
{
"id": 116,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2796772",
"answer_idx": "B",
"answer": "Immunotherapy-related gastritis"
},
{
"id": 117,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2795922",
"answer_idx": "C",
"answer": "Tophaceous gout"
},
{
"id": 118,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2796305",
"answer_idx": "B",
"answer": "Foregut duplication cyst"
},
{
"id": 119,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2796435",
"answer_idx": "C",
"answer": "Type 1 first branchial cleft cyst"
},
{
"id": 120,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2797290",
"answer_idx": "B",
"answer": "Laryngeal sarcoidosis"
},
{
"id": 121,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2796851",
"answer_idx": "D",
"answer": "Pemphigoid nodularis"
},
{
"id": 122,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2797298",
"answer_idx": "D",
"answer": "Congenital disseminated pyogenic granuloma"
},
{
"id": 123,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2796659",
"answer_idx": "D",
"answer": "Neurovascular conflict of the oculomotor nerve"
},
{
"id": 124,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2796173",
"answer_idx": "A",
"answer": "Isolate the patient and notify public health authorities"
},
{
"id": 125,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2794194",
"answer_idx": "C",
"answer": "Request genetic testing and monitor"
},
{
"id": 126,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2794500",
"answer_idx": "B",
"answer": "Genetic testing to assess for ocular diseases"
},
{
"id": 127,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2795081",
"answer_idx": "C",
"answer": "Observation"
},
{
"id": 128,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2795082",
"answer_idx": "B",
"answer": "Injection of subconjunctival lidocaine followed by surgical removal of the lesion"
},
{
"id": 129,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2795334",
"answer_idx": "D",
"answer": "Solitary fibrous tumor"
},
{
"id": 130,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2795514",
"answer_idx": "C",
"answer": "Neuromuscular choristoma"
},
{
"id": 131,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2795727",
"answer_idx": "A",
"answer": "Pyoderma gangrenosum"
},
{
"id": 132,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2796096",
"answer_idx": "C",
"answer": "Start treatment with low-molecular-weight heparin and amiodarone"
},
{
"id": 133,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2795623",
"answer_idx": "D",
"answer": "Eosinophilic fasciitis"
},
{
"id": 134,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2795615",
"answer_idx": "C",
"answer": "Restart daily oral itraconazole"
},
{
"id": 135,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2793390",
"answer_idx": "D",
"answer": "Magnetic resonance imaging of the orbit"
},
{
"id": 136,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2793768",
"answer_idx": "C",
"answer": "Observation with close follow-up"
},
{
"id": 137,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2794139",
"answer_idx": "D",
"answer": "Oral sirolimus"
},
{
"id": 138,
"link": "https://jamanetwork.com/journals/jamaoncology/fullarticle/2794633",
"answer_idx": "A",
"answer": "Intravascular anaplastic large cell lymphoma"
},
{
"id": 139,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2794477",
"answer_idx": "C",
"answer": "Lepromatous leprosy"
},
{
"id": 140,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2794666",
"answer_idx": "B",
"answer": "Coccidioidomycosis"
},
{
"id": 141,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2794938",
"answer_idx": "B",
"answer": "Blastomycosis"
},
{
"id": 142,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2794830",
"answer_idx": "C",
"answer": "Farber disease (disseminated lipogranuloma)"
},
{
"id": 143,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2795015",
"answer_idx": "C",
"answer": "Keloidal scleroderma"
},
{
"id": 144,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2794294",
"answer_idx": "A",
"answer": "Giant cell arteritis"
},
{
"id": 145,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2792340",
"answer_idx": "D",
"answer": "Obtain serum protein electrophoresis and immunofixation test"
},
{
"id": 146,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2792856",
"answer_idx": "B",
"answer": "Genetic testing"
},
{
"id": 147,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2792662",
"answer_idx": "A",
"answer": "Eosinophilic sialodochitis"
},
{
"id": 148,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2792878",
"answer_idx": "A",
"answer": "Foregut duplication cyst"
},
{
"id": 149,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2793429",
"answer_idx": "A",
"answer": "Poikilodermatous plaque\u2013like hemangioma"
},
{
"id": 150,
"link": "https://jamanetwork.com/journals/jamacardiology/fullarticle/2793312",
"answer_idx": "C",
"answer": "Implantable cardioverter defibrillator"
},
{
"id": 151,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2793812",
"answer_idx": "A",
"answer": "Check blood lead concentration"
},
{
"id": 152,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2791595",
"answer_idx": "B",
"answer": "Serum vascular endothelial growth factor"
},
{
"id": 153,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2791896",
"answer_idx": "C",
"answer": "Biopsy the EOMs"
},
{
"id": 154,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2792086",
"answer_idx": "C",
"answer": "Refer to the health department for 4-drug antituberculous treatment"
},
{
"id": 155,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2792594",
"answer_idx": "C",
"answer": "Perform YAG capsulotomy"
},
{
"id": 156,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2793167",
"answer_idx": "B",
"answer": "Obtain information about the immunotherapy protocol initiated for her sarcoma"
},
{
"id": 157,
"link": "https://jamanetwork.com/journals/jamaotolaryngology/fullarticle/2792446",
"answer_idx": "B",
"answer": "Multicentric Castleman disease"
},
{
"id": 158,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2792869",
"answer_idx": "D",
"answer": "Primary cutaneous embryonal rhabdomyosarcoma"
},
{
"id": 159,
"link": "https://jamanetwork.com/journals/jamadermatology/fullarticle/2792870",
"answer_idx": "B",
"answer": "Epstein-Barr virus\u2013positive mucocutaneous ulcers"
},
{
"id": 160,
"link": "https://jamanetwork.com/journals/jamaneurology/fullarticle/2792807",
"answer_idx": "C",
"answer": "Pituitary apoplexy"
},
{
"id": 161,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2793518",
"answer_idx": "D",
"answer": "Order testing for hepatitis delta virus (HDV) IgM and IgG antibodies and, if positive, test for HDV RNA"
},
{
"id": 162,
"link": "https://jamanetwork.com/journals/jama/fullarticle/2793013",
"answer_idx": "C",
"answer": "Prescribe prednisone, 0.25 to 1 mg/kg orally daily"
},
{
"id": 163,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2790386",
"answer_idx": "D",
"answer": "Obtain orbital imaging with intravenous contrast"
},
{
"id": 164,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2790667",
"answer_idx": "C",
"answer": "Order urgent computed tomography scan and computed tomography angiography of the brain"
},
{
"id": 165,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2790987",
"answer_idx": "B",
"answer": "Order ultrasound biomicroscopy"
},
{
"id": 166,
"link": "https://jamanetwork.com/journals/jamaophthalmology/fullarticle/2791337",