-
Notifications
You must be signed in to change notification settings - Fork 0
/
prizesByYear.json
5478 lines (5478 loc) · 161 KB
/
prizesByYear.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
{
"prizes": [
{
"year": "2018",
"category": "physics",
"overallMotivation": "“for groundbreaking inventions in the field of laser physics”",
"laureates": [
{
"id": "960",
"firstname": "Arthur",
"surname": "Ashkin",
"motivation": "\"for the optical tweezers and their application to biological systems\"",
"share": "2"
},
{
"id": "961",
"firstname": "Gérard",
"surname": "Mourou",
"motivation": "\"for their method of generating high-intensity, ultra-short optical pulses\"",
"share": "4"
},
{
"id": "962",
"firstname": "Donna",
"surname": "Strickland",
"motivation": "\"for their method of generating high-intensity, ultra-short optical pulses\"",
"share": "4"
}
]
},
{
"year": "2018",
"category": "chemistry",
"laureates": [
{
"id": "963",
"firstname": "Frances H.",
"surname": "Arnold",
"motivation": "\"for the directed evolution of enzymes\"",
"share": "2"
},
{
"id": "964",
"firstname": "George P.",
"surname": "Smith",
"motivation": "\"for the phage display of peptides and antibodies\"",
"share": "4"
},
{
"id": "965",
"firstname": "Sir Gregory P.",
"surname": "Winter",
"motivation": "\"for the phage display of peptides and antibodies\"",
"share": "4"
}
]
},
{
"year": "2018",
"category": "medicine",
"laureates": [
{
"id": "958",
"firstname": "James P.",
"surname": "Allison",
"motivation": "\"for their discovery of cancer therapy by inhibition of negative immune regulation\"",
"share": "2"
},
{
"id": "959",
"firstname": "Tasuku",
"surname": "Honjo",
"motivation": "\"for their discovery of cancer therapy by inhibition of negative immune regulation\"",
"share": "2"
}
]
},
{
"year": "2018",
"category": "peace",
"laureates": [
{
"id": "966",
"firstname": "Denis",
"surname": "Mukwege",
"motivation": "\"for their efforts to end the use of sexual violence as a weapon of war and armed conflict\"",
"share": "2"
},
{
"id": "967",
"firstname": "Nadia",
"surname": "Murad",
"motivation": "\"for their efforts to end the use of sexual violence as a weapon of war and armed conflict\"",
"share": "2"
}
]
},
{
"year": "2018",
"category": "economics",
"laureates": [
{
"id": "968",
"firstname": "William D.",
"surname": "Nordhaus",
"motivation": "\"for integrating climate change into long-run macroeconomic analysis\"",
"share": "2"
},
{
"id": "969",
"firstname": "Paul M.",
"surname": "Romer",
"motivation": "\"for integrating technological innovations into long-run macroeconomic analysis\"",
"share": "2"
}
]
},
{
"year": "2017",
"category": "physics",
"laureates": [
{
"id": "941",
"firstname": "Rainer",
"surname": "Weiss",
"motivation": "\"for decisive contributions to the LIGO detector and the observation of gravitational waves\"",
"share": "2"
},
{
"id": "942",
"firstname": "Barry C.",
"surname": "Barish",
"motivation": "\"for decisive contributions to the LIGO detector and the observation of gravitational waves\"",
"share": "4"
},
{
"id": "943",
"firstname": "Kip S.",
"surname": "Thorne",
"motivation": "\"for decisive contributions to the LIGO detector and the observation of gravitational waves\"",
"share": "4"
}
]
},
{
"year": "2017",
"category": "chemistry",
"laureates": [
{
"id": "944",
"firstname": "Jacques",
"surname": "Dubochet",
"motivation": "\"for developing cryo-electron microscopy for the high-resolution structure determination of biomolecules in solution\"",
"share": "3"
},
{
"id": "945",
"firstname": "Joachim",
"surname": "Frank",
"motivation": "\"for developing cryo-electron microscopy for the high-resolution structure determination of biomolecules in solution\"",
"share": "3"
},
{
"id": "946",
"firstname": "Richard",
"surname": "Henderson",
"motivation": "\"for developing cryo-electron microscopy for the high-resolution structure determination of biomolecules in solution\"",
"share": "3"
}
]
},
{
"year": "2017",
"category": "medicine",
"laureates": [
{
"id": "938",
"firstname": "Jeffrey C.",
"surname": "Hall",
"motivation": "\"for their discoveries of molecular mechanisms controlling the circadian rhythm\"",
"share": "3"
},
{
"id": "939",
"firstname": "Michael",
"surname": "Rosbash",
"motivation": "\"for their discoveries of molecular mechanisms controlling the circadian rhythm\"",
"share": "3"
},
{
"id": "940",
"firstname": "Michael W.",
"surname": "Young",
"motivation": "\"for their discoveries of molecular mechanisms controlling the circadian rhythm\"",
"share": "3"
}
]
},
{
"year": "2017",
"category": "literature",
"laureates": [
{
"id": "947",
"firstname": "Kazuo",
"surname": "Ishiguro",
"motivation": "\"who, in novels of great emotional force, has uncovered the abyss beneath our illusory sense of connection with the world\"",
"share": "1"
}
]
},
{
"year": "2017",
"category": "peace",
"laureates": [
{
"id": "948",
"firstname": "International Campaign to Abolish Nuclear Weapons (ICAN)",
"motivation": "\"for its work to draw attention to the catastrophic humanitarian consequences of any use of nuclear weapons and for its ground-breaking efforts to achieve a treaty-based prohibition of such weapons\"",
"share": "1",
"surname": ""
}
]
},
{
"year": "2017",
"category": "economics",
"laureates": [
{
"id": "949",
"firstname": "Richard H.",
"surname": "Thaler",
"motivation": "\"for his contributions to behavioural economics\"",
"share": "1"
}
]
},
{
"year": "2016",
"category": "physics",
"laureates": [
{
"id": "928",
"firstname": "David J.",
"surname": "Thouless",
"motivation": "\"for theoretical discoveries of topological phase transitions and topological phases of matter\"",
"share": "2"
},
{
"id": "929",
"firstname": "F. Duncan M.",
"surname": "Haldane",
"motivation": "\"for theoretical discoveries of topological phase transitions and topological phases of matter\"",
"share": "4"
},
{
"id": "930",
"firstname": "J. Michael",
"surname": "Kosterlitz",
"motivation": "\"for theoretical discoveries of topological phase transitions and topological phases of matter\"",
"share": "4"
}
]
},
{
"year": "2016",
"category": "chemistry",
"laureates": [
{
"id": "931",
"firstname": "Jean-Pierre",
"surname": "Sauvage",
"motivation": "\"for the design and synthesis of molecular machines\"",
"share": "3"
},
{
"id": "932",
"firstname": "Sir J. Fraser",
"surname": "Stoddart",
"motivation": "\"for the design and synthesis of molecular machines\"",
"share": "3"
},
{
"id": "933",
"firstname": "Bernard L.",
"surname": "Feringa",
"motivation": "\"for the design and synthesis of molecular machines\"",
"share": "3"
}
]
},
{
"year": "2016",
"category": "medicine",
"laureates": [
{
"id": "927",
"firstname": "Yoshinori",
"surname": "Ohsumi",
"motivation": "\"for his discoveries of mechanisms for autophagy\"",
"share": "1"
}
]
},
{
"year": "2016",
"category": "literature",
"laureates": [
{
"id": "937",
"firstname": "Bob",
"surname": "Dylan",
"motivation": "\"for having created new poetic expressions within the great American song tradition\"",
"share": "1"
}
]
},
{
"year": "2016",
"category": "peace",
"laureates": [
{
"id": "934",
"firstname": "Juan Manuel",
"surname": "Santos",
"motivation": "\"for his resolute efforts to bring the country's more than 50-year-long civil war to an end\"",
"share": "1"
}
]
},
{
"year": "2016",
"category": "economics",
"laureates": [
{
"id": "935",
"firstname": "Oliver",
"surname": "Hart",
"motivation": "\"for their contributions to contract theory\"",
"share": "2"
},
{
"id": "936",
"firstname": "Bengt",
"surname": "Holmström",
"motivation": "\"for their contributions to contract theory\"",
"share": "2"
}
]
},
{
"year": "2015",
"category": "physics",
"laureates": [
{
"id": "919",
"firstname": "Takaaki",
"surname": "Kajita",
"motivation": "\"for the discovery of neutrino oscillations, which shows that neutrinos have mass\"",
"share": "2"
},
{
"id": "920",
"firstname": "Arthur B.",
"surname": "McDonald",
"motivation": "\"for the discovery of neutrino oscillations, which shows that neutrinos have mass\"",
"share": "2"
}
]
},
{
"year": "2015",
"category": "chemistry",
"laureates": [
{
"id": "921",
"firstname": "Tomas",
"surname": "Lindahl",
"motivation": "\"for mechanistic studies of DNA repair\"",
"share": "3"
},
{
"id": "922",
"firstname": "Paul",
"surname": "Modrich",
"motivation": "\"for mechanistic studies of DNA repair\"",
"share": "3"
},
{
"id": "923",
"firstname": "Aziz",
"surname": "Sancar",
"motivation": "\"for mechanistic studies of DNA repair\"",
"share": "3"
}
]
},
{
"year": "2015",
"category": "medicine",
"laureates": [
{
"id": "916",
"firstname": "William C.",
"surname": "Campbell",
"motivation": "\"for their discoveries concerning a novel therapy against infections caused by roundworm parasites\"",
"share": "4"
},
{
"id": "917",
"firstname": "Satoshi",
"surname": "Ōmura",
"motivation": "\"for their discoveries concerning a novel therapy against infections caused by roundworm parasites\"",
"share": "4"
},
{
"id": "918",
"firstname": "Youyou",
"surname": "Tu",
"motivation": "\"for her discoveries concerning a novel therapy against Malaria\"",
"share": "2"
}
]
},
{
"year": "2015",
"category": "literature",
"laureates": [
{
"id": "924",
"firstname": "Svetlana",
"surname": "Alexievich",
"motivation": "\"for her polyphonic writings, a monument to suffering and courage in our time\"",
"share": "1"
}
]
},
{
"year": "2015",
"category": "peace",
"laureates": [
{
"id": "925",
"firstname": "National Dialogue Quartet",
"motivation": "\"for its decisive contribution to the building of a pluralistic democracy in Tunisia in the wake of the Jasmine Revolution of 2011\"",
"share": "1",
"surname": ""
}
]
},
{
"year": "2015",
"category": "economics",
"laureates": [
{
"id": "926",
"firstname": "Angus",
"surname": "Deaton",
"motivation": "\"for his analysis of consumption, poverty, and welfare\"",
"share": "1"
}
]
},
{
"year": "2014",
"category": "physics",
"laureates": [
{
"id": "906",
"firstname": "Isamu",
"surname": "Akasaki",
"motivation": "\"for the invention of efficient blue light-emitting diodes which has enabled bright and energy-saving white light sources\"",
"share": "3"
},
{
"id": "907",
"firstname": "Hiroshi",
"surname": "Amano",
"motivation": "\"for the invention of efficient blue light-emitting diodes which has enabled bright and energy-saving white light sources\"",
"share": "3"
},
{
"id": "908",
"firstname": "Shuji",
"surname": "Nakamura",
"motivation": "\"for the invention of efficient blue light-emitting diodes which has enabled bright and energy-saving white light sources\"",
"share": "3"
}
]
},
{
"year": "2014",
"category": "chemistry",
"laureates": [
{
"id": "909",
"firstname": "Eric",
"surname": "Betzig",
"motivation": "\"for the development of super-resolved fluorescence microscopy\"",
"share": "3"
},
{
"id": "910",
"firstname": "Stefan W.",
"surname": "Hell",
"motivation": "\"for the development of super-resolved fluorescence microscopy\"",
"share": "3"
},
{
"id": "911",
"firstname": "William E.",
"surname": "Moerner",
"motivation": "\"for the development of super-resolved fluorescence microscopy\"",
"share": "3"
}
]
},
{
"year": "2014",
"category": "medicine",
"laureates": [
{
"id": "903",
"firstname": "John",
"surname": "O'Keefe",
"motivation": "\"for their discoveries of cells that constitute a positioning system in the brain\"",
"share": "2"
},
{
"id": "904",
"firstname": "May-Britt",
"surname": "Moser",
"motivation": "\"for their discoveries of cells that constitute a positioning system in the brain\"",
"share": "4"
},
{
"id": "905",
"firstname": "Edvard I.",
"surname": "Moser",
"motivation": "\"for their discoveries of cells that constitute a positioning system in the brain\"",
"share": "4"
}
]
},
{
"year": "2014",
"category": "literature",
"laureates": [
{
"id": "912",
"firstname": "Patrick",
"surname": "Modiano",
"motivation": "\"for the art of memory with which he has evoked the most ungraspable human destinies and\r\nuncovered the life-world of the occupation\"",
"share": "1"
}
]
},
{
"year": "2014",
"category": "peace",
"laureates": [
{
"id": "913",
"firstname": "Kailash",
"surname": "Satyarthi",
"motivation": "\"for their struggle against the suppression of children and young people and for the right of all children to education\"",
"share": "2"
},
{
"id": "914",
"firstname": "Malala",
"surname": "Yousafzai",
"motivation": "\"for their struggle against the suppression of children and young people and for the right of all children to education\"",
"share": "2"
}
]
},
{
"year": "2014",
"category": "economics",
"laureates": [
{
"id": "915",
"firstname": "Jean",
"surname": "Tirole",
"motivation": "\"for his analysis of market power and regulation\"",
"share": "1"
}
]
},
{
"year": "2013",
"category": "physics",
"laureates": [
{
"id": "887",
"firstname": "François",
"surname": "Englert",
"motivation": "\"for the theoretical discovery of a mechanism that contributes to our understanding of the origin of mass of subatomic particles, and which recently was confirmed through the discovery of the predicted fundamental particle, by the ATLAS and CMS experiments at CERN's Large Hadron Collider\"",
"share": "2"
},
{
"id": "888",
"firstname": "Peter W.",
"surname": "Higgs",
"motivation": "\"for the theoretical discovery of a mechanism that contributes to our understanding of the origin of mass of subatomic particles, and which recently was confirmed through the discovery of the predicted fundamental particle, by the ATLAS and CMS experiments at CERN's Large Hadron Collider\"",
"share": "2"
}
]
},
{
"year": "2013",
"category": "chemistry",
"laureates": [
{
"id": "889",
"firstname": "Martin",
"surname": "Karplus",
"motivation": "\"for the development of multiscale models for complex chemical systems\"",
"share": "3"
},
{
"id": "890",
"firstname": "Michael",
"surname": "Levitt",
"motivation": "\"for the development of multiscale models for complex chemical systems\"",
"share": "3"
},
{
"id": "891",
"firstname": "Arieh",
"surname": "Warshel",
"motivation": "\"for the development of multiscale models for complex chemical systems\"",
"share": "3"
}
]
},
{
"year": "2013",
"category": "medicine",
"laureates": [
{
"id": "884",
"firstname": "James E.",
"surname": "Rothman",
"motivation": "\"for their discoveries of machinery regulating vesicle traffic, a major transport system in our cells\"",
"share": "3"
},
{
"id": "885",
"firstname": "Randy W.",
"surname": "Schekman",
"motivation": "\"for their discoveries of machinery regulating vesicle traffic, a major transport system in our cells\"",
"share": "3"
},
{
"id": "886",
"firstname": "Thomas C.",
"surname": "Südhof",
"motivation": "\"for their discoveries of machinery regulating vesicle traffic, a major transport system in our cells\"",
"share": "3"
}
]
},
{
"year": "2013",
"category": "literature",
"laureates": [
{
"id": "892",
"firstname": "Alice",
"surname": "Munro",
"motivation": "\"master of the contemporary short story\"",
"share": "1"
}
]
},
{
"year": "2013",
"category": "peace",
"laureates": [
{
"id": "893",
"firstname": "Organisation for the Prohibition of Chemical Weapons (OPCW)",
"motivation": "\"for its extensive efforts to eliminate chemical weapons\"",
"share": "1",
"surname": ""
}
]
},
{
"year": "2013",
"category": "economics",
"laureates": [
{
"id": "894",
"firstname": "Eugene F.",
"surname": "Fama",
"motivation": "\"for their empirical analysis of asset prices\"",
"share": "3"
},
{
"id": "895",
"firstname": "Lars Peter",
"surname": "Hansen",
"motivation": "\"for their empirical analysis of asset prices\"",
"share": "3"
},
{
"id": "896",
"firstname": "Robert J.",
"surname": "Shiller",
"motivation": "\"for their empirical analysis of asset prices\"",
"share": "3"
}
]
},
{
"year": "2012",
"category": "physics",
"laureates": [
{
"id": "876",
"firstname": "Serge",
"surname": "Haroche",
"motivation": "\"for ground-breaking experimental methods that enable measuring and manipulation of individual quantum systems\"",
"share": "2"
},
{
"id": "877",
"firstname": "David J.",
"surname": "Wineland",
"motivation": "\"for ground-breaking experimental methods that enable measuring and manipulation of individual quantum systems\"",
"share": "2"
}
]
},
{
"year": "2012",
"category": "chemistry",
"laureates": [
{
"id": "878",
"firstname": "Robert J.",
"surname": "Lefkowitz",
"motivation": "\"for studies of G-protein-coupled receptors\"",
"share": "2"
},
{
"id": "879",
"firstname": "Brian K.",
"surname": "Kobilka",
"motivation": "\"for studies of G-protein-coupled receptors\"",
"share": "2"
}
]
},
{
"year": "2012",
"category": "medicine",
"laureates": [
{
"id": "874",
"firstname": "Sir John B.",
"surname": "Gurdon",
"motivation": "\"for the discovery that mature cells can be reprogrammed to become pluripotent\"",
"share": "2"
},
{
"id": "875",
"firstname": "Shinya",
"surname": "Yamanaka",
"motivation": "\"for the discovery that mature cells can be reprogrammed to become pluripotent\"",
"share": "2"
}
]
},
{
"year": "2012",
"category": "literature",
"laureates": [
{
"id": "880",
"firstname": "Mo",
"surname": "Yan",
"motivation": "\"who with hallucinatory realism merges folk tales, history and the contemporary\"",
"share": "1"
}
]
},
{
"year": "2012",
"category": "peace",
"laureates": [
{
"id": "881",
"firstname": "European Union (EU)",
"motivation": "\"for over six decades contributed to the advancement of peace and reconciliation, democracy and human rights in Europe\"",
"share": "1",
"surname": ""
}
]
},
{
"year": "2012",
"category": "economics",
"laureates": [
{
"id": "882",
"firstname": "Alvin E.",
"surname": "Roth",
"motivation": "\"for the theory of stable allocations and the practice of market design\"",
"share": "2"
},
{
"id": "883",
"firstname": "Lloyd S.",
"surname": "Shapley",
"motivation": "\"for the theory of stable allocations and the practice of market design\"",
"share": "2"
}
]
},
{
"year": "2011",
"category": "physics",
"laureates": [
{
"id": "864",
"firstname": "Saul",
"surname": "Perlmutter",
"motivation": "\"for the discovery of the accelerating expansion of the Universe through observations of distant supernovae\"",
"share": "2"
},
{
"id": "865",
"firstname": "Brian P.",
"surname": "Schmidt",
"motivation": "\"for the discovery of the accelerating expansion of the Universe through observations of distant supernovae\"",
"share": "4"
},
{
"id": "866",
"firstname": "Adam G.",
"surname": "Riess",
"motivation": "\"for the discovery of the accelerating expansion of the Universe through observations of distant supernovae\"",
"share": "4"
}
]
},
{
"year": "2011",
"category": "chemistry",
"laureates": [
{
"id": "867",
"firstname": "Dan",
"surname": "Shechtman",
"motivation": "\"for the discovery of quasicrystals\"",
"share": "1"
}
]
},
{
"year": "2011",
"category": "medicine",
"laureates": [
{
"id": "861",
"firstname": "Bruce A.",
"surname": "Beutler",
"motivation": "\"for their discoveries concerning the activation of innate immunity\"",
"share": "4"
},
{
"id": "862",
"firstname": "Jules A.",
"surname": "Hoffmann",
"motivation": "\"for their discoveries concerning the activation of innate immunity\"",
"share": "4"
},
{
"id": "863",
"firstname": "Ralph M.",
"surname": "Steinman",
"motivation": "\"for his discovery of the dendritic cell and its role in adaptive immunity\"",
"share": "2"
}
]
},
{
"year": "2011",
"category": "literature",
"laureates": [
{
"id": "868",
"firstname": "Tomas",
"surname": "Tranströmer",
"motivation": "\"because, through his condensed, translucent images, he gives us fresh access to reality\"",
"share": "1"
}
]
},
{
"year": "2011",
"category": "peace",
"laureates": [
{
"id": "869",
"firstname": "Ellen",
"surname": "Johnson Sirleaf",
"motivation": "\"for their non-violent struggle for the safety of women and for women's rights to full participation in peace-building work\"",
"share": "3"
},
{
"id": "870",
"firstname": "Leymah",
"surname": "Gbowee",
"motivation": "\"for their non-violent struggle for the safety of women and for women's rights to full participation in peace-building work\"",
"share": "3"
},
{
"id": "871",
"firstname": "Tawakkol",
"surname": "Karman",
"motivation": "\"for their non-violent struggle for the safety of women and for women's rights to full participation in peace-building work\"",
"share": "3"
}
]
},
{
"year": "2011",
"category": "economics",
"laureates": [
{
"id": "872",
"firstname": "Thomas J.",
"surname": "Sargent",
"motivation": "\"for their empirical research on cause and effect in the macroeconomy\"",
"share": "2"
},
{
"id": "873",
"firstname": "Christopher A.",
"surname": "Sims",
"motivation": "\"for their empirical research on cause and effect in the macroeconomy\"",
"share": "2"
}
]
},
{
"year": "2010",
"category": "physics",
"laureates": [
{
"id": "849",
"firstname": "Andre",
"surname": "Geim",
"motivation": "\"for groundbreaking experiments regarding the two-dimensional material graphene\"",
"share": "2"
},
{
"id": "850",
"firstname": "Konstantin",
"surname": "Novoselov",
"motivation": "\"for groundbreaking experiments regarding the two-dimensional material graphene\"",
"share": "2"
}
]
},
{
"year": "2010",
"category": "chemistry",
"laureates": [
{
"id": "851",
"firstname": "Richard F.",
"surname": "Heck",
"motivation": "\"for palladium-catalyzed cross couplings in organic synthesis\"",
"share": "3"
},
{
"id": "852",
"firstname": "Ei-ichi",
"surname": "Negishi",
"motivation": "\"for palladium-catalyzed cross couplings in organic synthesis\"",
"share": "3"
},
{
"id": "853",
"firstname": "Akira",
"surname": "Suzuki",
"motivation": "\"for palladium-catalyzed cross couplings in organic synthesis\"",
"share": "3"
}
]
},
{
"year": "2010",
"category": "medicine",